python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / opendungeons / default.nix
blob9afcbd898785e672322a229a65fdeb4c7aeec856
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";
9     repo = "OpenDungeons";
10     rev = "c180ed1864eab5fbe847d1dd5c5c936c4e45444e";
11     sha256 = "0xf7gkpy8ll1h59wyaljf0hr8prg7p4ixz80mxqwcnm9cglpgn63";
12   };
14   patches = [
15     ./cmakepaths.patch
16     ./fix_link_date_time.patch
17   ];
19   nativeBuildInputs = [ cmake pkg-config ];
20   buildInputs = [ ogre cegui boost sfml openal ois ];
22   meta = with lib; {
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;
27   };