runelite: init at 1.6.0

This commit is contained in:
Karl Meakin 2018-07-16 03:12:17 +01:00
parent 0a5186a7cb
commit bae01e0348
3 changed files with 62 additions and 0 deletions

View file

@ -1997,6 +1997,13 @@
email = "tierpluspluslists@gmail.com";
name = "Karn Kallio";
};
kmeakin = {
email = "karlwfmeakin@gmail.com";
name = "Karl Meakin";
github = "Kmeakin";
};
knedlsepp = {
email = "josef.kemetmueller@gmail.com";
github = "knedlsepp";

View file

@ -0,0 +1,53 @@
{ stdenv, fetchurl, makeWrapper, jre, makeDesktopItem, lib }:
stdenv.mkDerivation rec {
name = "runelite-${version}";
version = "1.6.0";
src = fetchurl {
url = "https://github.com/runelite/launcher/releases/download/${version}/RuneLite.jar";
sha256 = "0q2xx0wrnlg5mrv8nnmnh300r8mqfm8k2p028m7mr09kn18xvkzx";
};
icon = fetchurl {
url = "https://github.com/runelite/runelite/raw/master/runelite-client/src/main/resources/runelite.png";
sha256 = "0fxzkpsin09giqp7h8z0plxznk5d5j60sv34v1lw61p7d5y2izvr";
};
desktop = makeDesktopItem {
name = "RuneLite";
type = "Application";
exec = "runelite";
icon = "${icon}";
comment = "Open source Old School RuneScape client";
terminal = "false";
desktopName = "RuneLite";
genericName = "Oldschool Runescape";
categories = "Application;Game";
startupNotify = null;
};
buildInputs = [ makeWrapper ];
# colon is bash form of no-op (do nothing)
unpackPhase = ":";
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 = {
description = "Open source Old School RuneScape client";
homepage = "https://runelite.net/";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.kmeakin ];
platforms = lib.platforms.all;
};
}

View file

@ -4898,6 +4898,8 @@ with pkgs;
rubocop = callPackage ../development/tools/rubocop { };
runelite = callPackages ../games/runelite { };
runningx = callPackage ../tools/X11/runningx { };
runzip = callPackage ../tools/archivers/runzip { };