Skip to content

Commit

Permalink
Merge pull request #13618 from cleverca22/multimc-release
Browse files Browse the repository at this point in the history
multimc: fix building under chroot
  • Loading branch information
domenkozar committed Mar 2, 2016
2 parents 31b5d57 + ff28655 commit 89d9159
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
chattered = "Phil Scott <me@philscotted.com>";
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";
codsl = "codsl <codsl@riseup.net>";
codyopel = "Cody Opel <codyopel@gmail.com>";
Expand Down
5 changes: 4 additions & 1 deletion pkgs/games/multimc/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, qt5Full, jdk7, zlib, file, makeWrapper, xorg, libpulseaudio }:
{ stdenv, fetchFromGitHub, cmake, qt5Full, jdk7, zlib, file, makeWrapper, xorg, libpulseaudio, qt5 }:

let
libnbt = fetchFromGitHub {
Expand All @@ -23,6 +23,8 @@ stdenv.mkDerivation {
rmdir $sourceRoot/depends/libnbtplusplus
cp -r ${libnbt} $sourceRoot/depends/libnbtplusplus
chmod 755 -R $sourceRoot/depends/libnbtplusplus
mkdir -pv $sourceRoot/build/
cp -v ${qt5.quazip.src} $sourceRoot/build/quazip-0.7.1.tar.gz
'';

patches = [ ./multimc.patch ];
Expand Down Expand Up @@ -51,5 +53,6 @@ stdenv.mkDerivation {
'';
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.lgpl21Plus;
maintainers = stdenv.lib.maintainers.cleverca22;
};
}

0 comments on commit 89d9159

Please sign in to comment.