summary refs log tree commit diff
path: root/pkgs/games/solarus
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-08-21 18:19:24 -0500
committerWill Dietz <w@wdtz.org>2019-08-22 13:10:53 -0500
commita986f7d46c605d248b6bcc20978a149442325120 (patch)
tree21356bc02d7235c8078bfdad644cd4f41f52fe78 /pkgs/games/solarus
parent4b9f0774bf2074cae5a0d6f8f6b07b2394e866a5 (diff)
downloadnixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar.gz
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar.bz2
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar.lz
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar.xz
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.tar.zst
nixpkgs-a986f7d46c605d248b6bcc20978a149442325120.zip
solarus{,-quest-editor}: use qt's mkDerivation, fix
Diffstat (limited to 'pkgs/games/solarus')
-rw-r--r--pkgs/games/solarus/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/solarus/default.nix b/pkgs/games/solarus/default.nix
index a2d0975ab08..68d0f642aef 100644
--- a/pkgs/games/solarus/default.nix
+++ b/pkgs/games/solarus/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchFromGitLab, cmake, luajit,
+{ lib, mkDerivation, fetchFromGitLab, cmake, luajit,
   SDL2, SDL2_image, SDL2_ttf, physfs,
   openal, libmodplug, libvorbis,
   qtbase, qttools }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "solarus";
   version = "1.6.2";
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A Zelda-like ARPG game engine";
     longDescription = ''
       Solarus is a game engine for Zelda-like ARPG games written in lua.