about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/factorio/mods.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/factorio/mods.nix')
-rw-r--r--nixpkgs/pkgs/games/factorio/mods.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/games/factorio/mods.nix b/nixpkgs/pkgs/games/factorio/mods.nix
index 5c9b4f0628a2..8d9976689cc4 100644
--- a/nixpkgs/pkgs/games/factorio/mods.nix
+++ b/nixpkgs/pkgs/games/factorio/mods.nix
@@ -2,12 +2,12 @@
 # mods. It will eventually be replaced by a nixos-channel that will provide
 # derivations for most or all of the mods tracked through the official mod
 # manager site.
-{ stdenv, fetchurl
+{ lib, stdenv, fetchurl
 , factorio-utils
 , allRecommendedMods ? true
 , allOptionalMods ? false
 }:
-with stdenv.lib;
+with lib;
 let
   modDrv = factorio-utils.modDrv { inherit allRecommendedMods allOptionalMods; };
 in