about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-06-04 16:55:27 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-06-04 16:56:32 +0200
commit48e1e4fe3b89460086d2939bf790eea12455ef4d (patch)
tree24a0dc2aead0f9c30f96ebc8049005d15582ad26 /pkgs
parentf965d675ff49503c90aaff66ae082dcfbf1070bb (diff)
games/fetch-humble-bundle: Fix path to curl
Since the merge of the closure-size branch, the curl binary now is in a
dedicated output ".bin".

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/humblebundle/fetch-humble-bundle/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/humblebundle/fetch-humble-bundle/default.nix b/pkgs/games/humblebundle/fetch-humble-bundle/default.nix
index fbabaa8c..3b8a722e 100644
--- a/pkgs/games/humblebundle/fetch-humble-bundle/default.nix
+++ b/pkgs/games/humblebundle/fetch-humble-bundle/default.nix
@@ -81,7 +81,7 @@ in stdenv.mkDerivation {
   buildCommand = ''
     url="$(python "${getDownloadURL}")"
     header "downloading $name from $url"
-    ${curl}/bin/curl --cacert "${cafile}" --fail --output "$out" "$url"
+    ${curl.bin}/bin/curl --cacert "${cafile}" --fail --output "$out" "$url"
     stopNest
   '';
 }