c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
23 lines
641 B
Nix
23 lines
641 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "airwindows-lv2";
|
|
version = "12.0";
|
|
src = fetchFromGitHub {
|
|
owner = "hannesbraun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-e5iMhkcIhQikPcDrMILqBkmBjh8Ngnr2odqyefnrekI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ 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;
|
|
};
|
|
}
|