30 lines
870 B
Nix
30 lines
870 B
Nix
{ stdenv, fetchgit, boost, gtk2, pkgconfig, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "raul-unstable-${rev}";
|
|
rev = "2017-07-23";
|
|
|
|
src = fetchgit {
|
|
url = "http://git.drobilla.net/cgit.cgi/raul.git";
|
|
rev = "4db870b2b20b0a608ec0283139056b836c5b1624";
|
|
sha256 = "04fajrass3ymr72flx5js5vxc601ccrmx8ny8scp0rw7j0igyjdr";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ boost gtk2 python ];
|
|
|
|
configurePhase = "${python.interpreter} waf configure --prefix=$out";
|
|
|
|
buildPhase = "${python.interpreter} waf";
|
|
|
|
installPhase = "${python.interpreter} 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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|