opendungeons: 0.6.0 -> 0.7.1
This commit is contained in:
parent
1c50bdd928
commit
3705b1a429
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "opendungeons-${version}";
|
name = "opendungeons-${version}";
|
||||||
version = "0.6.0";
|
version = "0.7.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "ftp://download.tuxfamily.org/opendungeons/${version}/${name}.tar.xz";
|
owner = "OpenDungeons";
|
||||||
sha256 = "1g0sjh732794h26cbkr0p96i3c0avm0mx9ip5zbvb2y3sbpjcbib";
|
repo = "OpenDungeons";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0nipb2h0gn628yxlahjgnfhmpfqa19mjdbj3aqabimdfqds9pryh";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./cmakepaths.patch ];
|
patches = [ ./cmakepaths.patch ];
|
||||||
|
|
||||||
buildInputs = [ cmake ogre cegui boost sfml openal ois ];
|
buildInputs = [ cmake ogre cegui boost sfml openal ois pkgconfig ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius.";
|
description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius.";
|
||||||
|
Loading…
Reference in New Issue
Block a user