Unverified Commit 5ec1699e authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #196142 from magnetophon/airwindows-lv2

airwindows-lv2: 5.0 -> 11.0
parents 75c13ec3 5743cf57
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, lv2 }:
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:

stdenv.mkDerivation rec {
  pname = "airwindows-lv2";
  version = "5.0";
  version = "11.0";
  src = fetchFromGitHub {
    owner = "hannesbraun";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-sLkcEEYez0Z3pkhMCC7raiwe/m9Tk/lFmOuybZvFqSk=";
    sha256 = "sha256-IMVcspdWotNbdIZ2IpsNhI0k3+ZdXHEHVxrgOMoROEQ=";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  nativeBuildInputs = [ meson ninja pkg-config ];
  buildInputs = [ lv2 ];

  cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/lv2" ];

  meta = with lib; {
    description = "Airwindows plugins (ported to LV2)";
    homepage = "https://github.com/hannesbraun/airwindows-lv2";