aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2012-07-08 10:19:17 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-09 15:29:49 -0400
commitc4df7472676cac9bf5243ee8bc7cd0017f91a28d (patch)
treed6d724b878fca138a9d287d6c40c8f5e5c8831b9
parent27f0c34390d6680a843e2d4fad527dc672ed35c6 (diff)
Resurrect old corepkgs fetchurl
-rw-r--r--corepkgs/fetchurl/Makefile.am11
-rw-r--r--corepkgs/fetchurl/builder.sh.in5
-rw-r--r--corepkgs/fetchurl/default.nix23
3 files changed, 39 insertions, 0 deletions
diff --git a/corepkgs/fetchurl/Makefile.am b/corepkgs/fetchurl/Makefile.am
new file mode 100644
index 000000000..3cb63e0ce
--- /dev/null
+++ b/corepkgs/fetchurl/Makefile.am
@@ -0,0 +1,11 @@
+all-local: builder.sh
+
+install-exec-local:
+ $(INSTALL) -d $(DESTDIR)$(datadir)/nix/corepkgs
+ $(INSTALL) -d $(DESTDIR)$(datadir)/nix/corepkgs/fetchurl
+ $(INSTALL_DATA) default.nix $(DESTDIR)$(datadir)/nix/corepkgs/fetchurl
+ $(INSTALL_PROGRAM) builder.sh $(DESTDIR)$(datadir)/nix/corepkgs/fetchurl
+
+include ../../substitute.mk
+
+EXTRA_DIST = default.nix builder.sh.in
diff --git a/corepkgs/fetchurl/builder.sh.in b/corepkgs/fetchurl/builder.sh.in
new file mode 100644
index 000000000..02abb18b4
--- /dev/null
+++ b/corepkgs/fetchurl/builder.sh.in
@@ -0,0 +1,5 @@
+#! @shell@ -e
+
+echo "downloading $url into $out"
+
+@curl@ --fail --location --max-redirs 20 "$url" > "$out"
diff --git a/corepkgs/fetchurl/default.nix b/corepkgs/fetchurl/default.nix
new file mode 100644
index 000000000..37f01b55e
--- /dev/null
+++ b/corepkgs/fetchurl/default.nix
@@ -0,0 +1,23 @@
+# 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;
+}