61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, copyDesktopItems
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, jre
|
|
, libpulseaudio
|
|
, libXxf86vm
|
|
}:
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "unciv";
|
|
exec = "unciv";
|
|
comment = "An open-source Android/Desktop remake of Civ V";
|
|
desktopName = "Unciv";
|
|
categories = [ "Game" ];
|
|
};
|
|
|
|
envLibPath = lib.makeLibraryPath [
|
|
libpulseaudio
|
|
libXxf86vm
|
|
];
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "unciv";
|
|
version = "4.7.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar";
|
|
hash = "sha256-KvRDPu2FZY+iZ2vNi/tly/7/Tpg/EN8jHTKizYV5jeY=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ copyDesktopItems makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/unciv \
|
|
--prefix LD_LIBRARY_PATH : ${envLibPath} \
|
|
--prefix PATH : ${lib.makeBinPath [ jre ]} \
|
|
--add-flags "-jar ${src}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [ desktopItem ];
|
|
|
|
meta = with lib; {
|
|
description = "An open-source Android/Desktop remake of Civ V";
|
|
homepage = "https://github.com/yairm210/Unciv";
|
|
maintainers = with maintainers; [ tex ];
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.mpl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|