2012-10-05 22:11:46 +01:00
|
|
|
{ stdenv, fetchurl, gtk, lv2, pkgconfig, python, serd, sord, sratom, qt4 }:
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "suil-${version}";
|
2014-08-30 18:58:12 +01:00
|
|
|
version = "0.8.2";
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.drobilla.net/${name}.tar.bz2";
|
2014-08-30 18:58:12 +01:00
|
|
|
sha256 = "1s3adyiw7sa5gfvm5wasa61qa23629kprxyv6w8hbxdiwp0hhxkq";
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
|
2012-10-05 22:11:46 +01:00
|
|
|
buildInputs = [ gtk lv2 pkgconfig python qt4 serd sord sratom ];
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
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 ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
}
|