nixpkgs/pkgs/games/opendungeons/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkg-config }:
2016-04-23 01:58:51 +00:00
stdenv.mkDerivation rec {
pname = "opendungeons";
version = "unstable-2021-11-06";
2016-04-23 01:58:51 +00:00
2016-12-28 22:09:14 +00:00
src = fetchFromGitHub {
owner = "OpenDungeons";
repo = "OpenDungeons";
rev = "c180ed1864eab5fbe847d1dd5c5c936c4e45444e";
sha256 = "0xf7gkpy8ll1h59wyaljf0hr8prg7p4ixz80mxqwcnm9cglpgn63";
2016-04-23 01:58:51 +00:00
};
2022-05-11 10:43:20 +00:00
patches = [
./cmakepaths.patch
./fix_link_date_time.patch
];
2016-04-23 01:58:51 +00:00
# source/utils/StackTraceUnix.cpp:122:2: error: #error Unsupported architecture.
postPatch = lib.optionalString (!stdenv.isx86_64) ''
cp source/utils/StackTrace{Stub,Unix}.cpp
'';
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ ogre cegui boost sfml openal ois ];
2016-04-23 01:58:51 +00:00
meta = with lib; {
description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius";
homepage = "https://opendungeons.github.io";
license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ];
2016-04-23 01:58:51 +00:00
platforms = platforms.linux;
};
}