26 lines
702 B
Nix
26 lines
702 B
Nix
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, lv2 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "airwindows-lv2";
|
||
|
version = "1.0";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hannesbraun";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-xokV4Af0evdo73D9JObzAmY1wD0aUyXiI0Z7BUN0m+M=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake 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";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ maintainers.magnetophon ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|