nixpkgs/pkgs/games/opendungeons/default.nix

26 lines
856 B
Nix
Raw Normal View History

2016-12-28 22:09:14 +00:00
{ stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkgconfig }:
2016-04-23 01:58:51 +00:00
stdenv.mkDerivation rec {
name = "opendungeons-${version}";
2016-12-28 22:09:14 +00:00
version = "0.7.1";
2016-04-23 01:58:51 +00:00
2016-12-28 22:09:14 +00:00
src = fetchFromGitHub {
owner = "OpenDungeons";
repo = "OpenDungeons";
rev = version;
sha256 = "0nipb2h0gn628yxlahjgnfhmpfqa19mjdbj3aqabimdfqds9pryh";
2016-04-23 01:58:51 +00:00
};
patches = [ ./cmakepaths.patch ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake ogre cegui boost sfml openal ois ];
2016-04-23 01:58:51 +00:00
meta = with stdenv.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;
2016-04-23 01:58:51 +00:00
license = [ licenses.gpl3Plus licenses.zlib licenses.mit licenses.cc-by-sa-30 licenses.cc0 licenses.ofl licenses.cc-by-30 ];
platforms = platforms.linux;
};
}