summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-12-30 20:40:25 +0000
committerGitHub <noreply@github.com>2016-12-30 20:40:25 +0000
commit868147420de67ed01bef270d99f23cf3d0c5c2ec (patch)
tree9375c6ed9f5da323b3e610950142a652ddc0ffa6 /pkgs/games
parent96aca6ccbf1fa34ac22a0292d424465dd117fc61 (diff)
parent3705b1a429cff4047f6e4dd98c085fe86263e76a (diff)
downloadnixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar.gz
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar.bz2
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar.lz
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar.xz
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.tar.zst
nixlib-868147420de67ed01bef270d99f23cf3d0c5c2ec.zip
Merge pull request #21496 from rardiol/opendungeons
opendungeons: 0.6.0 -> 0.7.1
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/opendungeons/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/games/opendungeons/default.nix b/pkgs/games/opendungeons/default.nix
index fe3a381c7f5b..94a44446b6cd 100644
--- a/pkgs/games/opendungeons/default.nix
+++ b/pkgs/games/opendungeons/default.nix
@@ -1,17 +1,19 @@
-{ stdenv, fetchurl, ogre, cegui, boost, sfml, openal, cmake, ois }:
+{ stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkgconfig }:
 
 stdenv.mkDerivation rec {
   name = "opendungeons-${version}";
-  version = "0.6.0";
+  version = "0.7.1";
 
-  src = fetchurl {
-    url = "ftp://download.tuxfamily.org/opendungeons/${version}/${name}.tar.xz";
-    sha256 = "1g0sjh732794h26cbkr0p96i3c0avm0mx9ip5zbvb2y3sbpjcbib";
+  src = fetchFromGitHub {
+    owner = "OpenDungeons";
+    repo = "OpenDungeons";
+    rev = version;
+    sha256 = "0nipb2h0gn628yxlahjgnfhmpfqa19mjdbj3aqabimdfqds9pryh";
   };
 
   patches = [ ./cmakepaths.patch ];
 
-  buildInputs = [ cmake ogre cegui boost sfml openal ois ];
+  buildInputs = [ cmake ogre cegui boost sfml openal ois pkgconfig ];
 
   meta = with stdenv.lib; {
     description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius.";