mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
Avoid top-level with ...;
in pkgs/games/openra_2019/common.nix
This commit is contained in:
parent
72f827ec28
commit
8809c41021
|
@ -7,9 +7,16 @@
|
|||
, zenity
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
licenses
|
||||
maintainers
|
||||
makeBinPath
|
||||
makeLibraryPath
|
||||
optional
|
||||
platforms
|
||||
;
|
||||
|
||||
path = makeBinPath ([ mono python3 ] ++ optional (zenity != null) zenity);
|
||||
rpath = makeLibraryPath [ lua freetype openal SDL2 ];
|
||||
mkdirp = makeSetupHook {
|
||||
|
|
Loading…
Reference in a new issue