summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-14 11:43:33 -0700
committerValentin Gagarin <valentin.gagarin@tweag.io>2024-03-31 00:42:56 +0100
commit4a660d5bb29c955bc776d59f88693a0d7772f3ad (patch)
treeb64d2417eea11087a7ca30115eab6c560e57553f /pkgs/games
parent8809c410214b5584a1a0efbc1c02723235349a1c (diff)
Avoid top-level `with ...;` in pkgs/games/tinyfugue/default.nix
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/tinyfugue/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/games/tinyfugue/default.nix b/pkgs/games/tinyfugue/default.nix
index d6b9647fcc02..e03364f4a1ad 100644
--- a/pkgs/games/tinyfugue/default.nix
+++ b/pkgs/games/tinyfugue/default.nix
@@ -3,10 +3,17 @@
, sslSupport ? true
}:
-with lib;
-
assert sslSupport -> openssl != null;
+let
+ inherit (lib)
+ licenses
+ maintainers
+ optional
+ platforms
+ ;
+in
+
stdenv.mkDerivation rec {
pname = "tinyfugue";
version = "50b8";