1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/audio/raul/default.nix

29 lines
743 B
Nix
Raw Normal View History

{ stdenv, fetchsvn, boost, gtk, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "raul-svn-${rev}";
rev = "5205";
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/raul";
rev = rev;
sha256 = "1rkl7vxhwf6d0qfl2ymfd1qwmh9cl1xv6kkz893xg0blpvzcdmp3";
};
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;
};
}