nixpkgs/pkgs/build-support/fetchcvs/default.nix

17 lines
297 B
Nix
Raw Normal View History

{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;
}