nixpkgs/pkgs/build-support/fetchcvs/default.nix
Roy van den Broek 9ece10787e Added fetchcvs.
svn path=/nixpkgs/trunk/; revision=5295
2006-05-11 12:36:16 +00:00

17 lines
297 B
Nix

{stdenv, cvs, nix}: {url, module, tag, md5}:
stdenv.mkDerivation {
name = "cvs-export";
builder = ./builder.sh;
buildInputs = [cvs nix];
# Nix <= 0.7 compatibility.
id = md5;
outputHashAlgo = "md5";
outputHashMode = "recursive";
outputHash = md5;
inherit url module tag;
}