summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-14 11:41:38 -0700
committerValentin Gagarin <valentin.gagarin@tweag.io>2024-03-31 00:42:56 +0100
commit3faad463744af05bb8136dea7fe596e70c0f70bd (patch)
treeb38653873612c360f16701c21e82c65bcd5fcbfa /pkgs/games
parent9be6e2203771aaa21f2eb373994aef7a0e130fed (diff)
Avoid top-level `with ...;` in pkgs/games/koboredux/default.nix
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/koboredux/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/games/koboredux/default.nix b/pkgs/games/koboredux/default.nix
index 46db8b1da57a..5eb482b09cb3 100644
--- a/pkgs/games/koboredux/default.nix
+++ b/pkgs/games/koboredux/default.nix
@@ -10,9 +10,16 @@
, useProprietaryAssets ? true
}:
-with lib;
-
let
+ inherit (lib)
+ and
+ licenses
+ maintainers
+ optional
+ optionalString
+ platforms
+ ;
+
pname = "koboredux";
version = "0.7.5.1";