about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-07-22 13:40:18 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-07-22 13:40:18 +0200
commit8e0a49e3821ae642a27e8f60464c49d53f93e0bb (patch)
tree01d8003d0b2fdca0ab880a520535fd6266ed12af
parent62d2888f937bbea915463da55db520710fb5e3fb (diff)
fetch-humble-bundle: Fix path to ca-bundle.crt.
This has changed twice in upstream <nixpkgs>:

  * NixOS/nixpkgs@d6cbb061e3bb5d2a93196a4543cfbd7c2359bd84
    $out/etc/ca-bundle.crt -> $out/ca-bundle.crt
  * NixOS/nixpkgs@ffd0539eba473348f752fa8ab1f1f55388634f8f
    $out/ca-bundle.crt -> $out/etc/ssl/certs/ca-bundle.crt

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--humblebundle/fetch-humble-bundle/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/humblebundle/fetch-humble-bundle/default.nix b/humblebundle/fetch-humble-bundle/default.nix
index fb29cae6..36601bd1 100644
--- a/humblebundle/fetch-humble-bundle/default.nix
+++ b/humblebundle/fetch-humble-bundle/default.nix
@@ -5,7 +5,7 @@
 }:
 
 { machineName, downloadName ? "Download", suffix ? "humblebundle", md5 }: let
-  cafile = "${cacert}/etc/ca-bundle.crt";
+  cafile = "${cacert}/etc/ssl/certs/ca-bundle.crt";
 
   humbleAPI = buildPythonPackage rec {
     name = "humblebundle-${version}";