solarus{,-quest-editor}: use qt's mkDerivation, fix

This commit is contained in:
Will Dietz 2019-08-21 18:19:24 -05:00
parent 4b9f0774bf
commit a986f7d46c
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
2 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,9 @@
{ stdenv, fetchFromGitLab, cmake, luajit,
{ lib, mkDerivation, fetchFromGitLab, cmake, luajit,
SDL2, SDL2_image, SDL2_ttf, physfs,
openal, libmodplug, libvorbis, solarus,
qtbase, qttools, glm }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "solarus-quest-editor";
version = "1.6.2";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
openal libmodplug libvorbis
solarus qtbase qttools glm ];
meta = with stdenv.lib; {
meta = with lib; {
description = "The editor for the Zelda-like ARPG game engine, Solarus";
longDescription = ''
Solarus is a game engine for Zelda-like ARPG games written in lua.

View file

@ -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.