mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
95 lines
3.1 KiB
Nix
95 lines
3.1 KiB
Nix
{ lib, stdenv, cmake, openmw, fetchFromGitHub, luajit, makeWrapper, mygui }:
|
|
|
|
# revisions are taken from https://github.com/GrimKriegor/TES3MP-deploy
|
|
|
|
let
|
|
# TES3MP_STABLE_VERSION_FILE
|
|
compatHash = "292536439eeda58becdb7e441fe2e61ebb74529e";
|
|
rakNet = fetchFromGitHub {
|
|
owner = "TES3MP";
|
|
repo = "CrabNet";
|
|
# usually fixed:
|
|
# https://github.com/GrimKriegor/TES3MP-deploy/blob/d2a4a5d3acb64b16d9b8ca85906780aeea8d311b/tes3mp-deploy.sh#L589
|
|
rev = "4eeeaad2f6c11aeb82070df35169694b4fb7b04b";
|
|
sha256 = "0p0li9l1i5lcliswm5w9jql0zff9i6fwhiq0bl130m4i7vpr4cr3";
|
|
};
|
|
rakNetLibrary = stdenv.mkDerivation {
|
|
name = "RakNetLibrary";
|
|
src = rakNet;
|
|
nativeBuildInputs = [ cmake ];
|
|
installPhase = ''
|
|
install -Dm755 lib/libRakNetLibStatic.a $out/lib/libRakNetLibStatic.a
|
|
'';
|
|
};
|
|
coreScripts = fetchFromGitHub {
|
|
owner = "TES3MP";
|
|
repo = "CoreScripts";
|
|
# usually latest in stable branch (e.g. 0.7.0)
|
|
rev = "24aae91d9ddad38cdb3b0e0a13af59f142803e94";
|
|
sha256 = "1rfmxxr9ircfagdpbdrzl26msdhx1i3g974cblbv69078cradfh3";
|
|
};
|
|
# https://github.com/TES3MP/openmw-tes3mp/issues/555
|
|
mygui_ = mygui.overrideAttrs (oldAttrs: rec {
|
|
version = "3.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MyGUI";
|
|
repo = "mygui";
|
|
rev = "MyGUI${version}";
|
|
sha256 = "1wk7jmwm55rhlqqcyvqsxdmwvl70bysl9azh4kd9n57qlmgk3zmw";
|
|
};
|
|
});
|
|
in openmw.overrideAttrs (oldAttrs: rec {
|
|
version = "2019-11-19";
|
|
name = "openmw-tes3mp-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TES3MP";
|
|
repo = "openmw-tes3mp";
|
|
# usually latest in stable branch (e.g. 0.7.0)
|
|
rev = "ad9ee80641a3e22d0780daca051df7f4e90f3615";
|
|
sha256 = "03a1vldiv5lk7yq6lhicx3qz8hjfxhind2dj0w9lg5839ljyk6jv";
|
|
};
|
|
|
|
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ makeWrapper ];
|
|
buildInputs = [ luajit mygui_ ] ++ oldAttrs.buildInputs;
|
|
|
|
cmakeFlags = oldAttrs.cmakeFlags ++ [
|
|
"-DBUILD_OPENCS=OFF"
|
|
"-DRakNet_INCLUDES=${rakNet}/include"
|
|
"-DRakNet_LIBRARY_RELEASE=${rakNetLibrary}/lib/libRakNetLibStatic.a"
|
|
"-DRakNet_LIBRARY_DEBUG=${rakNetLibrary}/lib/libRakNetLibStatic.a"
|
|
];
|
|
|
|
# https://github.com/TES3MP/openmw-tes3mp/issues/552
|
|
patches = [
|
|
./tes3mp.patch
|
|
];
|
|
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
|
|
preConfigure = ''
|
|
substituteInPlace files/version.in \
|
|
--subst-var-by OPENMW_VERSION_COMMITHASH ${compatHash}
|
|
'';
|
|
|
|
postInstall = ''
|
|
# components/process/processinvoker.cpp: path.prepend(QLatin1String("./"))
|
|
wrapProgram $out/bin/tes3mp-browser \
|
|
--run "cd $out/bin"
|
|
wrapProgram $out/bin/tes3mp-server \
|
|
--run "mkdir -p ~/.config/openmw" \
|
|
--run "cd ~/.config/openmw" \
|
|
--run "[ -d CoreScripts ] || cp --no-preserve=mode -r ${coreScripts} CoreScripts" \
|
|
--run "[ -f tes3mp-server.cfg ] || echo \"[Plugins] home = \$HOME/.config/openmw/CoreScripts\" > tes3mp-server.cfg" \
|
|
--run "cd $out/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Multiplayer for TES3:Morrowind based on OpenMW";
|
|
homepage = "https://tes3mp.com/";
|
|
license = licenses.gpl3;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
};
|
|
})
|