about summary refs log blame commit diff
path: root/corepkgs/fetchurl.nix
blob: 3d467fe187b03ef9b3e94c366a0a892ebb60813a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                             


                                                                    
                                                                                                               





                                                 

                                









                                                                              
                          
 
with import <nix/config.nix>;

# Argh, this thing is duplicated (more-or-less) in Nixpkgs.  Need to
# find a way to combine them.

{system ? builtins.currentSystem, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:

assert (outputHash != "" && outputHashAlgo != "")
    || md5 != "" || sha1 != "" || sha256 != "";

derivation {
  name = baseNameOf (toString url);
  builder = shell;
  args = [ "-e" ./fetchurl.sh ];

  # Compatibility with Nix <= 0.7.
  id = md5;

  # New-style output content requirements.
  outputHashAlgo = if outputHashAlgo != "" then outputHashAlgo else
      if sha256 != "" then "sha256" else if sha1 != "" then "sha1" else "md5";
  outputHash = if outputHash != "" then outputHash else
      if sha256 != "" then sha256 else if sha1 != "" then sha1 else md5;
  
  inherit system url curl;
}