depot/third_party/nixpkgs/pkgs/by-name/ai/airwindows-lv2/package.nix

35 lines
663 B
Nix

{
lib,
stdenv,
fetchFromSourcehut,
meson,
ninja,
pkg-config,
lv2,
}:
stdenv.mkDerivation rec {
pname = "airwindows-lv2";
version = "28.0";
src = fetchFromSourcehut {
owner = "~hannes";
repo = pname;
rev = "v${version}";
sha256 = "sha256-1GWkdNCn98ttsF2rPLZE0+GJdatgkLewFQyx9Frr2sM=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [ lv2 ];
meta = with lib; {
description = "Airwindows plugins (ported to LV2)";
homepage = "https://sr.ht/~hannes/airwindows-lv2";
license = licenses.mit;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;
};
}