mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
7a9d92486f
svn path=/nixpkgs/trunk/; revision=9624
14 lines
332 B
Nix
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;
|
|
}
|