using throw instead of abort to not make the buildfarm fail

svn path=/nixpkgs/trunk/; revision=11301
This commit is contained in:
Marc Weber 2008-03-27 12:23:27 +00:00
parent 9383efc9ba
commit 2a42a77223

View file

@ -1,5 +1,5 @@
args: with args;
if (!args.subversion.perlBindings) then abort "svn perl bindings required to install gitsvnwrapper"
if (!args.subversion.perlBindings) then throw "svn perl bindings required to install gitsvnwrapper"
else args.stdenv.mkDerivation {
inherit git perlLibs subversion;
name = "git-svn-wrapper";