nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 22 lines 612 B view raw
1{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python, wafHook }: 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 nativeBuildInputs = [ pkgconfig wafHook ]; 13 buildInputs = [ gtk2 libsndfile python ]; 14 15 meta = with stdenv.lib; { 16 homepage = http://lv2plug.in; 17 description = "A plugin standard for audio systems"; 18 license = licenses.mit; 19 maintainers = [ maintainers.goibhniu ]; 20 platforms = platforms.linux; 21 }; 22}