1b51b70317
- fetchdarcs_2pre added - flapjax added - no longer used : annotatedDerivations - added bleeding edge repos with a tiny nix repository manager which dowloads and updates repostiries, then creates tar.gz dist files which are used by bleeding_edge_source (darcs tested only by now) - added experimental my_environment with example svn path=/nixpkgs/trunk/; revision=10974
18 lines
358 B
Nix
18 lines
358 B
Nix
{stdenv, darcs, nix}: {url, tag ? null, md5, partial ? true}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "fetchdarcs";
|
|
builder = ./builder.sh;
|
|
buildInputs = [darcs nix];
|
|
partial = if partial then "--partial" else "";
|
|
|
|
# Nix <= 0.7 compatibility.
|
|
id = md5;
|
|
|
|
outputHashAlgo = "md5";
|
|
outputHashMode = "recursive";
|
|
outputHash = md5;
|
|
|
|
inherit url tag;
|
|
}
|