ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / build-support / fetchipfs / default.nix
blob0cbb094d6003a93030dc18317893ce654953af0d
1 { stdenv
2 , curl
3 }:
5 { ipfs
6 , url            ? ""
7 , curlOpts       ? ""
8 , outputHash     ? ""
9 , outputHashAlgo ? ""
10 , md5            ? ""
11 , sha1           ? ""
12 , sha256         ? ""
13 , sha512         ? ""
14 , meta           ? {}
15 , port           ? "8080"
16 , postFetch      ? ""
17 , preferLocalBuild ? true
20 let
22   hasHash = (outputHash != "" && outputHashAlgo != "")
23     || md5 != "" || sha1 != "" || sha256 != "" || sha512 != "";
27 if (!hasHash) then throw "Specify sha for fetchipfs fixed-output derivation" else stdenv.mkDerivation {
28   name = ipfs;
29   builder = ./builder.sh;
30   nativeBuildInputs = [ curl ];
32   # New-style output content requirements.
33   outputHashAlgo = if outputHashAlgo != "" then outputHashAlgo else
34       if sha512 != "" then "sha512" else if sha256 != "" then "sha256" else if sha1 != "" then "sha1" else "md5";
35   outputHash = if outputHash != "" then outputHash else
36       if sha512 != "" then sha512 else if sha256 != "" then sha256 else if sha1 != "" then sha1 else md5;
38   outputHashMode = "recursive";
40   inherit curlOpts
41           postFetch
42           ipfs
43           url
44           port
45           meta;
47   # Doing the download on a remote machine just duplicates network
48   # traffic, so don't do that.
49   inherit preferLocalBuild;