aboutsummaryrefslogtreecommitdiff
path: root/corepkgs/fetchurl/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-04-07 14:35:44 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-04-07 14:35:44 +0000
commit7d876f8fa7b6c3ce120a66b59f69b70ae526538b (patch)
tree575968bbd3fd64b694b06dcb1f6e05aa80dea815 /corepkgs/fetchurl/default.nix
parent10c429c757625c4c36319751f6d87b8990677c1f (diff)
* Get rid of fetchurl, we don't need it anymore.
Diffstat (limited to 'corepkgs/fetchurl/default.nix')
-rw-r--r--corepkgs/fetchurl/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/corepkgs/fetchurl/default.nix b/corepkgs/fetchurl/default.nix
deleted file mode 100644
index 37f01b55e..000000000
--- a/corepkgs/fetchurl/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-# Argh, this thing is duplicated (more-or-less) in Nixpkgs. Need to
-# find a way to combine them.
-
-{system, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:
-
-assert (outputHash != "" && outputHashAlgo != "")
- || md5 != "" || sha1 != "" || sha256 != "";
-
-derivation {
- name = baseNameOf (toString url);
- builder = ./builder.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;
-}