mudlet: build with Qt 5.5

This commit is contained in:
Thomas Tuegel 2015-09-27 10:28:24 -05:00
parent 51496d6c6d
commit 5ecc06293a
2 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ fetchurl, pkgs, stdenv, makeWrapper, qt5, yajl, libzip, hunspell, boost, lua5_1, luafilesystem, luazip, lrexlib, luasqlite3 }:
{ fetchurl, pkgs, stdenv, makeWrapper, qtbase, yajl, libzip, hunspell
, boost, lua5_1, luafilesystem, luazip, lrexlib, luasqlite3 }:
stdenv.mkDerivation rec {
name = "mudlet-${version}";
@ -9,7 +10,10 @@ stdenv.mkDerivation rec {
sha256 = "08fhqd323kgz5s17ac5z9dhkjxcmwvcmvhzy0x1vw4rayhijfrd7";
};
buildInputs = [ pkgs.unzip qt5.base lua5_1 hunspell libzip yajl boost makeWrapper luafilesystem luazip lrexlib luasqlite3 ];
buildInputs = [
pkgs.unzip qtbase lua5_1 hunspell libzip yajl boost makeWrapper
luafilesystem luazip lrexlib luasqlite3
];
configurePhase = "cd src && qmake";

View file

@ -12136,7 +12136,7 @@ let
mrxvt = callPackage ../applications/misc/mrxvt { };
mudlet = callPackage ../games/mudlet {
mudlet = qt5Libs.callPackage ../games/mudlet {
inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3;
};