albert: 0.26.11 -> 0.26.13 (#373351)
[NixPkgs.git] / pkgs / by-name / ai / airwindows-lv2 / package.nix
blobea906cb3a2177fb553ddd82dd98e576728005167
2   lib,
3   stdenv,
4   fetchFromSourcehut,
5   meson,
6   ninja,
7   pkg-config,
8   lv2,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "airwindows-lv2";
13   version = "28.0";
14   src = fetchFromSourcehut {
15     owner = "~hannes";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "sha256-1GWkdNCn98ttsF2rPLZE0+GJdatgkLewFQyx9Frr2sM=";
19   };
21   nativeBuildInputs = [
22     meson
23     ninja
24     pkg-config
25   ];
26   buildInputs = [ lv2 ];
28   meta = with lib; {
29     description = "Airwindows plugins (ported to LV2)";
30     homepage = "https://sr.ht/~hannes/airwindows-lv2";
31     license = licenses.mit;
32     maintainers = [ maintainers.magnetophon ];
33     platforms = platforms.unix;
34   };