raul: svn 5675 -> git 2016-09-20

This commit is contained in:
Bart Brouns 2016-11-01 01:17:18 +01:00
parent 87ffcedd31
commit 9e82d353e3

@ -1,16 +1,16 @@
{ stdenv, fetchsvn, boost, gtk2, pkgconfig, python }:
{ stdenv, fetchgit, boost, gtk, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "raul-svn-${rev}";
rev = "5675";
name = "raul-git-${rev}";
rev = "2016-09-20";
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/raul";
rev = rev;
sha256 = "0yvm3j57lch89dixx7zsip7pxsws0xxy1y6ck7a3l0534qc5kny4";
src = fetchgit {
url = "http://git.drobilla.net/cgit.cgi/raul.git";
rev = "f8bf77d3c3b77830aedafb9ebb5cdadfea7ed07a";
sha256 = "1lby508fb0n8ks6iz959sh18fc37br39d6pbapwvbcw5nckdrxwj";
};
buildInputs = [ boost gtk2 pkgconfig python ];
buildInputs = [ boost gtk pkgconfig python ];
configurePhase = "python waf configure --prefix=$out";