forked from mirrors/nixpkgs
commented out avrdude which is using unstable lib functions,
missing fetchhg expression added svn path=/nixpkgs/trunk/; revision=9249
This commit is contained in:
parent
af7da7f19d
commit
04bd6b0607
16
pkgs/build-support/fetchhg/default.nix
Normal file
16
pkgs/build-support/fetchhg/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{stdenv, mercurial, nix}: {url, tag ? null, md5}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fetchdarcs";
|
||||
builder = ./builder.sh;
|
||||
buildInputs = [mercurial nix];
|
||||
|
||||
# Nix <= 0.7 compatibility.
|
||||
id = md5;
|
||||
|
||||
outputHashAlgo = "md5";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = md5;
|
||||
|
||||
inherit url tag;
|
||||
}
|
Loading…
Reference in a new issue