summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-14 11:32:06 -0700
committerValentin Gagarin <valentin.gagarin@tweag.io>2024-03-31 00:42:56 +0100
commit81d3babe25249ee63d8061bd04b76647c543c06c (patch)
tree7eac427cefe318bd27b8fbb907c439f0a91f8586 /pkgs/games
parent10d7d08d3f79543a083772726983b8570098fc3c (diff)
Avoid top-level `with ...;` in pkgs/games/arx-libertatis/default.nix
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/arx-libertatis/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/games/arx-libertatis/default.nix b/pkgs/games/arx-libertatis/default.nix
index de597163a3d1..334219a28901 100644
--- a/pkgs/games/arx-libertatis/default.nix
+++ b/pkgs/games/arx-libertatis/default.nix
@@ -8,7 +8,15 @@
, gdb ? null
}:
-with lib;
+let
+ inherit (lib)
+ licenses
+ maintainers
+ optionals
+ optionalString
+ platforms
+ ;
+in
stdenv.mkDerivation rec {
pname = "arx-libertatis";