Avoid top-level `with ...;` in pkgs/games/tinyfugue/default.nix

This commit is contained in:
Philip Taron 2024-03-14 11:43:33 -07:00 committed by Valentin Gagarin
parent 8809c41021
commit 4a660d5bb2
1 changed files with 9 additions and 2 deletions

View File

@ -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";