biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / airwindows-lv2 / default.nix
blobd392db72ca2defc7e6f1d562bee9b5be4634e4c9
1 { lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, lv2 }:
3 stdenv.mkDerivation rec {
4   pname = "airwindows-lv2";
5   version = "28.0";
6   src = fetchFromSourcehut {
7     owner = "~hannes";
8     repo = pname;
9     rev = "v${version}";
10     sha256 = "sha256-1GWkdNCn98ttsF2rPLZE0+GJdatgkLewFQyx9Frr2sM=";
11   };
13   nativeBuildInputs = [ meson ninja pkg-config ];
14   buildInputs = [ lv2 ];
16   meta = with lib; {
17     description = "Airwindows plugins (ported to LV2)";
18     homepage = "https://sr.ht/~hannes/airwindows-lv2";
19     license = licenses.mit;
20     maintainers = [ maintainers.magnetophon ];
21     platforms = platforms.unix;
22   };