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

authored by philiptaron.tngl.sh and committed by Valentin Gagarin 72f827ec 3faad463

+8 -2
+8 -2
pkgs/games/lugaru/default.nix
··· 1 { lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg, 2 libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }: 3 4 - with lib; 5 6 stdenv.mkDerivation rec { 7 ··· 27 homepage = "https://osslugaru.gitlab.io"; 28 maintainers = [ ]; 29 platforms = platforms.linux; 30 - license = lib.licenses.gpl2Plus; 31 }; 32 }
··· 1 { lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg, 2 libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }: 3 4 + let 5 + inherit (lib) 6 + licenses 7 + maintainers 8 + platforms 9 + ; 10 + in 11 12 stdenv.mkDerivation rec { 13 ··· 33 homepage = "https://osslugaru.gitlab.io"; 34 maintainers = [ ]; 35 platforms = platforms.linux; 36 + license = licenses.gpl2Plus; 37 }; 38 }