* fetchcvs: cleanup, use nix-store --add-fixed like fetchurl/svn.
Argument "url" renamed to "cvsRoot" (it's not a URL). svn path=/nixpkgs/trunk/; revision=10889
This commit is contained in:
@@ -9,9 +9,9 @@ stdenv.mkDerivation {
|
||||
# Nix <= 0.7 compatibility.
|
||||
/*id = if sha256 == "" then md5 else sha256;*/
|
||||
|
||||
outputHashAlgo = if sha256=="" then "md5" else "sha256";
|
||||
outputHashAlgo = if sha256 == "" then "md5" else "sha256";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = if sha256 =="" then md5 else sha256;
|
||||
outputHash = if sha256 == "" then md5 else sha256;
|
||||
|
||||
inherit url rev sshSupport openssh;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user