Skip to content

Commit

Permalink
solarus: 1.4.5 -> 1.5.3
Browse files Browse the repository at this point in the history
(cherry picked from commit 83a0d5d)
  • Loading branch information
samueldr authored and xeji committed Sep 5, 2018
1 parent f8585bb commit 508608d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions pkgs/games/solarus/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, luajit,
{ stdenv, fetchFromGitLab, cmake, luajit,
SDL2, SDL2_image, SDL2_ttf, physfs,
openal, libmodplug, libvorbis}:
openal, libmodplug, libvorbis,
qtbase, qttools }:

stdenv.mkDerivation rec {
name = "solarus-${version}";
version = "1.4.5";
version = "1.5.3";

src = fetchFromGitHub {
owner = "christopho";
src = fetchFromGitLab {
owner = "solarus-games";
repo = "solarus";
rev = "d9fdb9fdb4e1b9fc384730a9279d134ae9f2c70e";
sha256 = "0xjx789d6crm322wmkqyq9r288vddsha59yavhy78c4r01gs1p5v";
rev = "v1.5.3";
sha256 = "035hkdw3a1ryasj5wfa1xla1xmpnc3hjp4s20sl9ywip41675vaz";
};

buildInputs = [ cmake luajit SDL2
SDL2_image SDL2_ttf physfs
openal libmodplug libvorbis ];
openal libmodplug libvorbis
qtbase qttools ];

enableParallelBuilding = true;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20161,7 +20161,7 @@ with pkgs;
lua = lua5_1;
};

solarus = callPackage ../games/solarus { };
solarus = libsForQt5.callPackage ../games/solarus { };

solarus-quest-editor = libsForQt5.callPackage ../development/tools/solarus-quest-editor { };

Expand Down

0 comments on commit 508608d

Please sign in to comment.