tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
mudlet: 4.1.2 -> 4.3
authored by
Philipp
and committed by
Lassulus
6 years ago
fc473f38
0b2d9ab5
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
games
mudlet
default.nix
+6
-5
pkgs/games/mudlet/default.nix
···
1
1
-
{ fetchFromGitHub, fetchpatch, stdenv, wrapQtAppsHook, pcre, pugixml, qtbase, qtmultimedia, qttools, yajl, libzip, hunspell
1
1
+
{ fetchFromGitHub, fetchpatch, stdenv, wrapQtAppsHook, git, pcre, pugixml, qtbase, libsForQt5, qtmultimedia, qttools, yajl, libzip, hunspell
2
2
, boost, libGLU, lua, cmake, which, }:
3
3
4
4
let
···
6
6
in
7
7
stdenv.mkDerivation rec {
8
8
pname = "mudlet";
9
9
-
version = "4.1.2";
9
9
+
version = "4.3";
10
10
11
11
src = fetchFromGitHub {
12
12
owner = "Mudlet";
13
13
repo = "Mudlet";
14
14
rev = "Mudlet-${version}";
15
15
fetchSubmodules = true;
16
16
-
sha256 = "1d6r51cj8a71hmhzsayd2far4hliwz5pnrsaj3dn39m7c0iikgdn";
16
16
+
sha256 = "0qqdmivfwf9jmv5yx90z1fj99nlhnq762lfw6bcxgv74y4l4b4c0";
17
17
};
18
18
19
19
-
nativeBuildInputs = [ cmake wrapQtAppsHook qttools which ];
19
19
+
nativeBuildInputs = [ cmake wrapQtAppsHook git qttools which ];
20
20
buildInputs = [
21
21
-
pcre pugixml qtbase qtmultimedia luaEnv libzip libGLU yajl boost hunspell
21
21
+
pcre pugixml qtbase libsForQt5.qtkeychain qtmultimedia luaEnv libzip libGLU yajl boost hunspell
22
22
];
23
23
24
24
WITH_FONTS = "NO";
···
43
43
makeQtWrapper $out/mudlet $out/bin/mudlet \
44
44
--set LUA_CPATH "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \
45
45
--prefix LUA_PATH : "$NIX_LUA_PATH" \
46
46
+
--prefix LD_LIBRARY_PATH : "${libsForQt5.qtkeychain}/lib/" \
46
47
--run "cd $out";
47
48
'';
48
49