nixpkgs/pkgs/development/libraries/audio/suil/default.nix

28 lines
745 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gtk, lv2, pkgconfig, python, serd, sord, sratom, qt4 }:
stdenv.mkDerivation rec {
name = "suil-${version}";
2013-02-23 11:53:34 +01:00
version = "0.6.10";
src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
2013-02-23 11:53:34 +01:00
sha256 = "1y7zgfciphr3icamikdfv2gh8xwix5blpq4npl426399i8f4ya5y";
};
buildInputs = [ gtk lv2 pkgconfig python qt4 serd sord sratom ];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
meta = with stdenv.lib; {
homepage = http://drobilla.net/software/suil;
description = "A lightweight C library for loading and wrapping LV2 plugin UIs";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
};
}