1 { lib, stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkg-config }:
3 stdenv.mkDerivation rec {
4 pname = "opendungeons";
5 version = "unstable-2021-11-06";
7 src = fetchFromGitHub {
8 owner = "OpenDungeons";
10 rev = "c180ed1864eab5fbe847d1dd5c5c936c4e45444e";
11 sha256 = "0xf7gkpy8ll1h59wyaljf0hr8prg7p4ixz80mxqwcnm9cglpgn63";
16 ./fix_link_date_time.patch
19 nativeBuildInputs = [ cmake pkg-config ];
20 buildInputs = [ ogre cegui boost sfml openal ois ];
23 description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius";
24 homepage = "https://opendungeons.github.io";
25 license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ];
26 platforms = platforms.linux;