lol
1{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python }:
2
3stdenv.mkDerivation rec {
4 name = "lv2-${version}";
5 version = "1.14.0";
6
7 src = fetchurl {
8 url = "http://lv2plug.in/spec/${name}.tar.bz2";
9 sha256 = "0chxwys3vnn3nxc9x2vchm74s9sx0vfra6y893byy12ci61jc1dq";
10 };
11
12 buildInputs = [ gtk2 libsndfile pkgconfig python ];
13
14 configurePhase = "${python.interpreter} waf configure --prefix=$out";
15
16 buildPhase = "${python.interpreter} waf";
17
18 installPhase = "${python.interpreter} waf install";
19
20 meta = with stdenv.lib; {
21 homepage = http://lv2plug.in;
22 description = "A plugin standard for audio systems";
23 license = licenses.mit;
24 maintainers = [ maintainers.goibhniu ];
25 platforms = platforms.linux;
26 };
27}