summary refs log blame commit diff
path: root/pkgs/development/libraries/audio/raul/default.nix
blob: a40bb0bf263945a48c337b9b4a8e15a20d7119e7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                    

                         

                           
 



                                                                    
















                                                                                        
{ 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 ];
  };
}