nixpkgs/pkgs/build-support/fetchcvs/default.nix
Marc Weber 7a9d92486f Synergy added and fetchcvs modified (see mailinglist post)
svn path=/nixpkgs/trunk/; revision=9624
2007-11-11 08:16:23 +00:00

14 lines
332 B
Nix

# example tags:
# "-DNOW" (get current version)
# "-D2007-20-10" (get the last version before given date)
# "-r <tagname>" (get version by tag name)
{stdenv, cvs, nix}: {url, module, tag, sha256}:
stdenv.mkDerivation {
name = "cvs-export";
builder = ./builder.sh;
buildInputs = [cvs nix];
inherit url module tag sha256;
}