mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
unciv: init at 3.12.8
This commit is contained in:
parent
bf6fb7b58a
commit
52a7a2df15
2 changed files with 61 additions and 0 deletions
59
pkgs/games/unciv/default.nix
Normal file
59
pkgs/games/unciv/default.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
{ 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 = "3.12.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar";
|
||||
sha256 = "178lasa6ahwg2s2hamm13yysg42qm13v6a9pgs6nm66np93nskc7";
|
||||
};
|
||||
|
||||
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 ];
|
||||
license = licenses.mpl20;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -27077,6 +27077,8 @@ in
|
|||
ffmpeg = ffmpeg_2;
|
||||
};
|
||||
|
||||
unciv = callPackage ../games/unciv { };
|
||||
|
||||
unnethack = callPackage ../games/unnethack { };
|
||||
|
||||
uqm = callPackage ../games/uqm { };
|
||||
|
|
Loading…
Reference in a new issue