2016-09-11 23:24:51 +02:00
|
|
|
{ stdenv, fetchsvn, boost, gtk2, pkgconfig, python }:
|
2014-03-09 18:00:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-09 20:16:47 +01:00
|
|
|
name = "raul-svn-${rev}";
|
2015-05-03 17:45:52 +02:00
|
|
|
rev = "5675";
|
2014-03-09 18:00:52 +01:00
|
|
|
|
2014-03-09 20:16:47 +01:00
|
|
|
src = fetchsvn {
|
|
|
|
url = "http://svn.drobilla.net/lad/trunk/raul";
|
|
|
|
rev = rev;
|
2015-05-03 17:45:52 +02:00
|
|
|
sha256 = "0yvm3j57lch89dixx7zsip7pxsws0xxy1y6ck7a3l0534qc5kny4";
|
2014-03-09 18:00:52 +01:00
|
|
|
};
|
|
|
|
|
2016-09-11 23:24:51 +02:00
|
|
|
buildInputs = [ boost gtk2 pkgconfig python ];
|
2014-03-09 18:00:52 +01:00
|
|
|
|
|
|
|
configurePhase = "python waf configure --prefix=$out";
|
|
|
|
|
|
|
|
buildPhase = "python waf";
|
|
|
|
|
|
|
|
installPhase = "python waf install";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A C++ utility library primarily aimed at audio/musical applications";
|
|
|
|
homepage = http://drobilla.net/software/raul;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-09 20:33:35 +01:00
|
|
|
platforms = platforms.linux;
|
2014-03-09 18:00:52 +01:00
|
|
|
};
|
|
|
|
}
|