nixpkgs/pkgs/games/openmw/default.nix

69 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2021-05-19 01:30:30 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, pkg-config
, wrapQtAppsHook
2021-05-19 01:30:30 +00:00
, openscenegraph
, mygui
, bullet
, ffmpeg
, boost
, SDL2
, unshield
, openal
, libXt
}:
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";
# commit does not exist on any branch on the target repository
2020-06-16 18:45:23 +00:00
rev = "1556cd7966ebc1c80b6626988d2b25fb43a744cf";
sha256 = "0d74hijzmj82nx3jkv5qmr3pkgvplra0b8fbjx1y3vmzxamb0axd";
};
});
2021-05-19 01:30:30 +00:00
in
mkDerivation rec {
2020-06-16 18:45:23 +00:00
version = "0.46.0";
pname = "openmw";
2015-09-26 18:00:36 +00:00
src = fetchFromGitHub {
owner = "OpenMW";
repo = "openmw";
rev = "${pname}-${version}";
2020-06-16 18:45:23 +00:00
sha256 = "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x";
2015-09-26 18:00:36 +00:00
};
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
2021-05-19 01:30:30 +00:00
buildInputs = [
SDL2
boost
bullet
ffmpeg
libXt
mygui
openal
openscenegraph_
unshield
];
2019-03-14 14:53:34 +00:00
2019-03-13 07:33:02 +00:00
cmakeFlags = [
2019-03-14 14:53:34 +00:00
"-DDESIRED_QT_VERSION:INT=5"
2021-05-19 01:30:30 +00:00
# as of 0.46, openmw is broken with GLVND
"-DOpenGL_GL_PREFERENCE=LEGACY"
2019-03-13 07:33:02 +00:00
];
2015-09-26 18:00:36 +00:00
meta = with lib; {
2015-09-26 18:00:36 +00:00
description = "An unofficial open source engine reimplementation of the game Morrowind";
homepage = "http://openmw.org";
license = licenses.gpl3Plus;
2016-07-23 10:04:53 +00:00
maintainers = with maintainers; [ abbradar ];
2021-05-19 01:30:30 +00:00
platforms = platforms.linux;
2015-09-26 18:00:36 +00:00
};
}