anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / build-support / fetchdarcs / default.nix
blob320b201f2853c842f8bdba06ae0355b074bc7c20
1 {stdenvNoCC, darcs, cacert, lib}:
3 lib.makeOverridable (
4   lib.fetchers.withNormalizedHash { } (
5     { url
6     , rev ? null
7     , context ? null
8     , outputHash ? lib.fakeHash
9     , outputHashAlgo ? null
10     , name ? "fetchdarcs"
11     }:
13     stdenvNoCC.mkDerivation {
14       builder = ./builder.sh;
15       nativeBuildInputs = [cacert darcs];
17       inherit outputHash outputHashAlgo;
18       outputHashMode = "recursive";
20       inherit url rev context name;
21     }
22   )