nixpkgs/pkgs/games/openmw/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qt4, openscenegraph, mygui, bullet, ffmpeg, boost, cmake, SDL2, unshield, openal
2016-08-22 14:18:02 +00:00
, giflib, libXt, pkgconfig }:
2015-09-26 18:00:36 +00:00
let
2016-09-16 16:29:03 +00:00
openscenegraph_ = openscenegraph.overrideDerivation (self: {
src = fetchFromGitHub {
owner = "OpenMW";
repo = "osg";
2017-09-01 01:18:27 +00:00
rev = "35f1a459a4ab6da9d70427e6539bdf4faae4cc91";
sha256 = "1s3a9dpbcc6v8d05pqin4xfv36i2031xpdja1vl8x11cw05fln91";
};
});
in stdenv.mkDerivation rec {
2017-09-01 01:18:27 +00:00
version = "0.42.0";
2015-09-26 18:00:36 +00:00
name = "openmw-${version}";
src = fetchFromGitHub {
owner = "OpenMW";
repo = "openmw";
rev = name;
2017-09-01 01:18:27 +00:00
sha256 = "0lj8v81hk807dy0wcdhfp0iyn4l5yag53hx1a6xm44gh2dpyil43";
2015-09-26 18:00:36 +00:00
};
2016-04-11 12:39:09 +00:00
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake boost ffmpeg qt4 bullet mygui openscenegraph_ SDL2 unshield openal libXt ];
2015-09-26 18:00:36 +00:00
2016-04-12 00:57:42 +00:00
meta = with stdenv.lib; {
2015-09-26 18:00:36 +00:00
description = "An unofficial open source engine reimplementation of the game Morrowind";
homepage = http://openmw.org;
2016-04-12 00:57:42 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
2016-07-23 10:04:53 +00:00
maintainers = with maintainers; [ abbradar ];
2015-09-26 18:00:36 +00:00
};
}