nixpkgs/pkgs/games/openmw/default.nix

40 lines
1.2 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
openscenegraph_ = openscenegraph.override {
inherit ffmpeg giflib;
withApps = false;
};
openscenegraph__ = openscenegraph_.overrideDerivation (self: {
src = fetchFromGitHub {
owner = "OpenMW";
repo = "osg";
2016-07-23 10:04:53 +00:00
rev = "c0adcc0b43f37931ccb70e3e2b4227c4a86cfaaf";
sha256 = "12nrpayms0jl2knkv4kax93si1510hjyl1g3i1b73ydnzhvr3x02";
};
});
in stdenv.mkDerivation rec {
2016-09-15 01:33:49 +00:00
version = "0.40.0";
2015-09-26 18:00:36 +00:00
name = "openmw-${version}";
src = fetchFromGitHub {
owner = "OpenMW";
repo = "openmw";
rev = name;
2016-09-15 01:33:49 +00:00
sha256 = "0mqd4gpwvczwqfkw5zvnw7cl1nzv9lkiqq2yc2a0qasaby8qv94w";
2015-09-26 18:00:36 +00:00
};
2016-04-11 12:39:09 +00:00
enableParallelBuilding = true;
2016-08-22 14:18:02 +00:00
buildInputs = [ cmake boost ffmpeg qt4 bullet mygui openscenegraph__ SDL2 unshield openal pkgconfig 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
};
}