forked from mirrors/nixpkgs
runelite: init at 1.6.0
This commit is contained in:
parent
0a5186a7cb
commit
bae01e0348
|
@ -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";
|
||||
|
|
53
pkgs/games/runelite/default.nix
Normal file
53
pkgs/games/runelite/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue