mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
9ece10787e
svn path=/nixpkgs/trunk/; revision=5295
16 lines
297 B
Nix
16 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;
|
|
}
|