2021-05-19 02:30:30 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
2021-07-31 01:40:22 +01:00
|
|
|
, wrapQtAppsHook
|
2021-05-19 02:30:30 +01:00
|
|
|
, openscenegraph
|
|
|
|
, mygui
|
|
|
|
, bullet
|
|
|
|
, ffmpeg
|
|
|
|
, boost
|
|
|
|
, SDL2
|
|
|
|
, unshield
|
|
|
|
, openal
|
|
|
|
, libXt
|
|
|
|
}:
|
2015-09-26 19:00:36 +01:00
|
|
|
|
2016-04-13 02:35:23 +01:00
|
|
|
let
|
2016-09-16 17:29:03 +01:00
|
|
|
openscenegraph_ = openscenegraph.overrideDerivation (self: {
|
2016-04-13 02:35:23 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenMW";
|
|
|
|
repo = "osg";
|
2021-01-26 13:35:52 +00:00
|
|
|
# commit does not exist on any branch on the target repository
|
2020-06-16 19:45:23 +01:00
|
|
|
rev = "1556cd7966ebc1c80b6626988d2b25fb43a744cf";
|
|
|
|
sha256 = "0d74hijzmj82nx3jkv5qmr3pkgvplra0b8fbjx1y3vmzxamb0axd";
|
2016-04-13 02:35:23 +01:00
|
|
|
};
|
|
|
|
});
|
2020-12-31 07:48:55 +00:00
|
|
|
|
2021-05-19 02:30:30 +01:00
|
|
|
in
|
|
|
|
mkDerivation rec {
|
2020-06-16 19:45:23 +01:00
|
|
|
version = "0.46.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openmw";
|
2015-09-26 19:00:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenMW";
|
|
|
|
repo = "openmw";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2020-06-16 19:45:23 +01:00
|
|
|
sha256 = "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x";
|
2015-09-26 19:00:36 +01:00
|
|
|
};
|
|
|
|
|
2021-07-31 01:40:22 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
2021-05-19 02:30:30 +01: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 02:30:30 +01: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 19:00:36 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-09-26 19:00:36 +01:00
|
|
|
description = "An unofficial open source engine reimplementation of the game Morrowind";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://openmw.org";
|
2020-12-31 07:48:55 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2016-07-23 11:04:53 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2021-05-19 02:30:30 +01:00
|
|
|
platforms = platforms.linux;
|
2015-09-26 19:00:36 +01:00
|
|
|
};
|
|
|
|
}
|