2022-10-15 16:10:32 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:
|
2022-04-27 19:04:09 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "airwindows-lv2";
|
2022-12-12 02:00:31 +01:00
|
|
|
version = "14.0";
|
2022-04-27 19:04:09 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hannesbraun";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-12-12 02:00:31 +01:00
|
|
|
sha256 = "sha256-urlj9XwMqKt5JvvsA1f7YpuLhQXMGxp0V1pGv+LTroE=";
|
2022-04-27 19:04:09 +02:00
|
|
|
};
|
|
|
|
|
2022-10-15 16:10:32 +02:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2022-04-27 19:04:09 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|