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

                         

                           
 



                                                                    

    
                                               











                                                                                        
                                

    
{ stdenv, fetchgit, boost, gtk, pkgconfig, python }:

stdenv.mkDerivation rec {
  name = "raul-git-${rev}";
  rev = "2016-09-20";

  src = fetchgit {
    url = "http://git.drobilla.net/cgit.cgi/raul.git";
    rev = "f8bf77d3c3b77830aedafb9ebb5cdadfea7ed07a";
    sha256 = "1lby508fb0n8ks6iz959sh18fc37br39d6pbapwvbcw5nckdrxwj";
  };

  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 ];
    platforms = platforms.linux;
  };
}