svn path=/nixpkgs/trunk/; revision=9861

This commit is contained in:
Michael Raskin
2007-12-04 22:06:13 +00:00
parent 800634501b
commit 41ecc6941b
7 changed files with 39 additions and 21 deletions
+5 -4
View File
@@ -1,4 +1,5 @@
{stdenv, subversion, nix, sshSupport ? false, openssh ? null}: {url, rev ? "HEAD", md5}:
{stdenv, subversion, nix, sshSupport ? false, openssh ? null}:
{url, rev ? "HEAD", md5 ? "", sha256 ? ""}:
stdenv.mkDerivation {
name = "svn-export";
@@ -6,11 +7,11 @@ stdenv.mkDerivation {
buildInputs = [subversion nix];
# Nix <= 0.7 compatibility.
id = md5;
/*id = if sha256 == "" then md5 else sha256;*/
outputHashAlgo = "md5";
outputHashAlgo = if sha256=="" then "md5" else "sha256";
outputHashMode = "recursive";
outputHash = md5;
outputHash = if sha256 =="" then md5 else sha256;
inherit url rev sshSupport openssh;
}