mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
24 lines
468 B
Nix
24 lines
468 B
Nix
{stdenvNoCC, darcs, cacert, lib}:
|
|
|
|
lib.makeOverridable (
|
|
lib.fetchers.withNormalizedHash { } (
|
|
{ url
|
|
, rev ? null
|
|
, context ? null
|
|
, outputHash ? lib.fakeHash
|
|
, outputHashAlgo ? null
|
|
, name ? "fetchdarcs"
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
builder = ./builder.sh;
|
|
nativeBuildInputs = [cacert darcs];
|
|
|
|
inherit outputHash outputHashAlgo;
|
|
outputHashMode = "recursive";
|
|
|
|
inherit url rev context name;
|
|
}
|
|
)
|
|
)
|