nixpkgs/pkgs/games/runelite/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

2018-07-16 02:12:17 +00:00
{ stdenv, fetchurl, makeWrapper, jre, makeDesktopItem, lib }:
stdenv.mkDerivation rec {
pname = "runelite";
version = "2.0.0";
2018-07-16 02:12:17 +00:00
src = fetchurl {
url = "https://github.com/runelite/launcher/releases/download/${version}/RuneLite.jar";
sha256 = "0q0x8g43ggkvp5fgnymgygx59xfhnyyrhpi6ha333gqg97rr0rvw";
2018-07-16 02:12:17 +00:00
};
icon = fetchurl {
url = "https://github.com/runelite/launcher/raw/${version}/appimage/runelite.png";
sha256 = "04fcjm7p546gr82g0jbh497j7rnh70lrvas0k171bff4v3knrjw1";
2018-07-16 02:12:17 +00:00
};
desktop = makeDesktopItem {
name = "RuneLite";
type = "Application";
exec = "runelite";
2019-09-08 23:38:31 +00:00
icon = icon;
2018-07-16 02:12:17 +00:00
comment = "Open source Old School RuneScape client";
terminal = "false";
desktopName = "RuneLite";
genericName = "Oldschool Runescape";
categories = "Game";
2018-07-16 02:12:17 +00:00
startupNotify = null;
};
nativeBuildInputs = [ makeWrapper ];
2018-07-16 02:12:17 +00:00
# colon is bash form of no-op (do nothing)
2019-06-19 15:45:34 +00:00
dontUnpack = true;
2018-07-16 02:12:17 +00:00
installPhase = ''
mkdir -p $out/share/runelite
mkdir -p $out/share/applications
ln -s ${src} $out/share/runelite/RuneLite.jar
ln -s ${desktop}/share/applications/* $out/share/applications
makeWrapper ${jre}/bin/java $out/bin/runelite \
--add-flags "-jar $out/share/runelite/RuneLite.jar"
'';
meta = with lib; {
2018-07-16 02:12:17 +00:00
description = "Open source Old School RuneScape client";
homepage = "https://runelite.net/";
license = licenses.bsd2;
maintainers = with maintainers; [ kmeakin ];
platforms = platforms.all;
2018-07-16 02:12:17 +00:00
};
}