2007-11-11 09:16:23 +01:00
|
|
|
# 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}:
|
2006-05-11 14:36:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "cvs-export";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
buildInputs = [cvs nix];
|
|
|
|
|
2007-11-11 09:16:23 +01:00
|
|
|
inherit url module tag sha256;
|
2006-05-11 14:36:16 +02:00
|
|
|
}
|