summaryrefslogtreecommitdiff
path: root/customized/factorio-fetch.nix
diff options
context:
space:
mode:
Diffstat (limited to 'customized/factorio-fetch.nix')
-rw-r--r--customized/factorio-fetch.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/customized/factorio-fetch.nix b/customized/factorio-fetch.nix
index 04b31ac1..4b9b9995 100644
--- a/customized/factorio-fetch.nix
+++ b/customized/factorio-fetch.nix
@@ -13,14 +13,13 @@
13 13
14 # SHA256 of the fetched URL. 14 # SHA256 of the fetched URL.
15, sha256 ? "" 15, sha256 ? ""
16, name
16}: 17}:
17 18
18stdenv.mkDerivation { 19stdenv.mkDerivation {
19 name = "factorio.tar.gz";
20
21 buildInputs = [ curl xidel ]; 20 buildInputs = [ curl xidel ];
22 21
23 inherit url loginUrl username password cacert; 22 inherit name url loginUrl username password cacert;
24 23
25 builder = ./fetch.sh; 24 builder = ./fetch.sh;
26 25