summaryrefslogtreecommitdiffstats
path: root/pkgs/games/lugaru/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/lugaru/default.nix')
-rw-r--r--pkgs/games/lugaru/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/lugaru/default.nix b/pkgs/games/lugaru/default.nix
index 877a3880a00e..12e9cfc2d634 100644
--- a/pkgs/games/lugaru/default.nix
+++ b/pkgs/games/lugaru/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchFromGitLab, cmake, openal, pkgconfig, libogg,
+{ lib, stdenv, fetchFromGitLab, cmake, openal, pkgconfig, libogg,
libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:
-with stdenv.lib;
+with lib;
stdenv.mkDerivation rec {
@@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
homepage = "https://osslugaru.gitlab.io";
maintainers = [ ];
platforms = platforms.linux;
- license = stdenv.lib.licenses.gpl2Plus;
+ license = lib.licenses.gpl2Plus;
};
}