raul: update to svn version, 0.8.5+ is required by ingen

This commit is contained in:
Cillian de Róiste 2014-03-09 20:16:47 +01:00
parent f6104c8882
commit 061b489f10

View File

@ -1,12 +1,13 @@
{ stdenv, fetchurl, boost, gtk, pkgconfig, python }: { stdenv, fetchsvn, boost, gtk, pkgconfig, python }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "raul-${version}"; name = "raul-svn-${rev}";
version = "0.8.0"; rev = "5205";
src = fetchurl { src = fetchsvn {
url = "http://download.drobilla.net/${name}.tar.bz2"; url = "http://svn.drobilla.net/lad/trunk/raul";
sha256 = "09ms40xc1x6qli6lxkwn5ibqh62nl9w7dq0b6jh1q2zvnrxwsd8b"; rev = rev;
sha256 = "1rkl7vxhwf6d0qfl2ymfd1qwmh9cl1xv6kkz893xg0blpvzcdmp3";
}; };
buildInputs = [ boost gtk pkgconfig python ]; buildInputs = [ boost gtk pkgconfig python ];