* svn2git -> svn2git-kde to distinguish it from the other svn2git.

svn path=/nixpkgs/trunk/; revision=34071
This commit is contained in:
Eelco Dolstra 2012-05-12 19:45:55 +00:00
parent b64a1dac46
commit 7c1612d6f2

View file

@ -1,7 +1,7 @@
{ stdenv, fetchgit, qt47, subversion, apr}:
{ stdenv, fetchgit, qt4, subversion, apr}:
stdenv.mkDerivation rec {
name = "svn2git";
name = "svn2git-kde";
src = fetchgit {
url = http://git.gitorious.org/svn2git/svn2git.git;
@ -20,6 +20,5 @@ stdenv.mkDerivation rec {
cp svn-all-fast-export $out/bin
'';
buildInputs = [subversion apr qt47];
buildInputs = [ subversion apr qt4 ];
}