nixpkgs/pkgs/games/openmw/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2019-08-13 19:25:19 +02:00
{ stdenv, mkDerivation, fetchFromGitHub, qtbase, openscenegraph, mygui, bullet, ffmpeg
2019-03-14 15:53:34 +01:00
, boost, cmake, SDL2, unshield, openal, libXt, pkgconfig }:
2015-09-26 20:00:36 +02:00
let
2016-09-16 18:29:03 +02:00
openscenegraph_ = openscenegraph.overrideDerivation (self: {
src = fetchFromGitHub {
owner = "OpenMW";
repo = "osg";
2018-02-25 18:15:11 +01:00
rev = "2b4c8e37268e595b82da4b9aadd5507852569b87";
sha256 = "0admnllxic6dcpic0h100927yw766ab55dix002vvdx36i6994jb";
};
});
2019-08-13 19:25:19 +02:00
in mkDerivation rec {
2019-03-30 02:59:34 +01:00
version = "0.45.0";
pname = "openmw";
2015-09-26 20:00:36 +02:00
src = fetchFromGitHub {
owner = "OpenMW";
repo = "openmw";
rev = "${pname}-${version}";
2019-03-30 02:59:34 +01:00
sha256 = "1r87zrsnza2v9brksh809zzqj6zhk5xj15qs8iq11v1bscm2a2j4";
2015-09-26 20:00:36 +02:00
};
2016-04-11 14:39:09 +02:00
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ];
2019-03-14 15:53:34 +01:00
buildInputs = [ cmake boost ffmpeg bullet mygui openscenegraph_ SDL2 unshield openal libXt qtbase ];
2019-03-13 08:33:02 +01:00
cmakeFlags = [
2019-03-14 15:53:34 +01:00
"-DDESIRED_QT_VERSION:INT=5"
2019-03-13 08:33:02 +01:00
];
2015-09-26 20:00:36 +02:00
2016-04-12 02:57:42 +02:00
meta = with stdenv.lib; {
2015-09-26 20:00:36 +02:00
description = "An unofficial open source engine reimplementation of the game Morrowind";
homepage = http://openmw.org;
2016-04-12 02:57:42 +02:00
license = licenses.gpl3;
platforms = platforms.linux;
2016-07-23 12:04:53 +02:00
maintainers = with maintainers; [ abbradar ];
2015-09-26 20:00:36 +02:00
};
}