Commit 4a660d5b authored by Philip Taron's avatar Philip Taron Committed by Valentin Gagarin
Browse files

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

parent 8809c410
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -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";