Commit 72f827ec authored by Philip Taron's avatar Philip Taron Committed by Valentin Gagarin
Browse files

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

parent 3faad463
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg,
  libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:

with lib;
let
  inherit (lib)
    licenses
    maintainers
    platforms
    ;
in

stdenv.mkDerivation rec {

@@ -27,6 +33,6 @@ stdenv.mkDerivation rec {
    homepage = "https://osslugaru.gitlab.io";
    maintainers = [ ];
    platforms = platforms.linux;
    license = lib.licenses.gpl2Plus;
    license = licenses.gpl2Plus;
  };
}