2016-11-01 01:00:07 +00:00
|
|
|
{ stdenv, fetchgit, boost, gtk2, pkgconfig, python }:
|
2014-03-09 17:00:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-01 01:00:07 +00:00
|
|
|
name = "raul-unstable-${rev}";
|
2016-11-01 00:17:18 +00:00
|
|
|
rev = "2016-09-20";
|
2014-03-09 17:00:52 +00:00
|
|
|
|
2016-11-01 00:17:18 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "http://git.drobilla.net/cgit.cgi/raul.git";
|
|
|
|
rev = "f8bf77d3c3b77830aedafb9ebb5cdadfea7ed07a";
|
|
|
|
sha256 = "1lby508fb0n8ks6iz959sh18fc37br39d6pbapwvbcw5nckdrxwj";
|
2014-03-09 17:00:52 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ boost gtk2 python ];
|
2014-03-09 17:00:52 +00:00
|
|
|
|
2016-11-01 01:00:07 +00:00
|
|
|
configurePhase = "${python.interpreter} waf configure --prefix=$out";
|
2014-03-09 17:00:52 +00:00
|
|
|
|
2016-11-01 01:00:07 +00:00
|
|
|
buildPhase = "${python.interpreter} waf";
|
2014-03-09 17:00:52 +00:00
|
|
|
|
2016-11-01 01:00:07 +00:00
|
|
|
installPhase = "${python.interpreter} waf install";
|
2014-03-09 17:00:52 +00:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|