2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkg-config }:
|
2016-04-23 02:58:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opendungeons";
|
2016-12-28 22:09:14 +00:00
|
|
|
version = "0.7.1";
|
2016-04-23 02:58:51 +01:00
|
|
|
|
2016-12-28 22:09:14 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenDungeons";
|
|
|
|
repo = "OpenDungeons";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0nipb2h0gn628yxlahjgnfhmpfqa19mjdbj3aqabimdfqds9pryh";
|
2016-04-23 02:58:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./cmakepaths.patch ];
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ ogre cegui boost sfml openal ois ];
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_LDFLAGS = "-lpthread";
|
2016-04-23 02:58:51 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://opendungeons.github.io";
|
2020-12-31 07:48:55 +00:00
|
|
|
license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ];
|
2016-04-23 02:58:51 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|