depot/third_party/nixpkgs/pkgs/applications/audio/airwindows-lv2/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

23 lines
634 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;
};
}