2014-03-09 19:16:47 +00:00
|
|
|
{ stdenv, fetchsvn, boost, gtk, pkgconfig, python }:
|
2014-03-09 17:00:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-09 19:16:47 +00:00
|
|
|
name = "raul-svn-${rev}";
|
2015-05-03 15:45:52 +00:00
|
|
|
rev = "5675";
|
2014-03-09 17:00:52 +00:00
|
|
|
|
2014-03-09 19:16:47 +00:00
|
|
|
src = fetchsvn {
|
|
|
|
url = "http://svn.drobilla.net/lad/trunk/raul";
|
|
|
|
rev = rev;
|
2015-05-03 15:45:52 +00:00
|
|
|
sha256 = "0yvm3j57lch89dixx7zsip7pxsws0xxy1y6ck7a3l0534qc5kny4";
|
2014-03-09 17:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ boost gtk pkgconfig python ];
|
|
|
|
|
|
|
|
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 19:33:35 +00:00
|
|
|
platforms = platforms.linux;
|
2014-03-09 17:00:52 +00:00
|
|
|
};
|
|
|
|
}
|