summary refs log tree commit diff
path: root/pkgs/games/factorio/fetch.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/factorio/fetch.nix')
-rw-r--r--pkgs/games/factorio/fetch.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/factorio/fetch.nix b/pkgs/games/factorio/fetch.nix
index 03dc786492a2..78c7faf018ce 100644
--- a/pkgs/games/factorio/fetch.nix
+++ b/pkgs/games/factorio/fetch.nix
@@ -1,4 +1,4 @@
-{ stdenv, curl
+{ stdenv, curl, cacert
 # Begin download parameters
 , username ? ""
 , password ? ""
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
 
   buildInputs = [ curl ];
 
-  inherit url loginUrl username password;
+  inherit url loginUrl username password cacert;
 
   builder = ./fetch.sh;