mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenvNoCC, buildEnv, writeShellScriptBin, fetchurl, jre }:
|
|
|
|
let
|
|
name = "legends-browser-${version}";
|
|
version = "1.17.1";
|
|
|
|
jar = fetchurl {
|
|
url = "https://github.com/robertjanetzko/LegendsBrowser/releases/download/${version}/legendsbrowser-${version}.jar";
|
|
sha256 = "05b4ksbl4481rh3ykfirbp6wvxhppcd5mvclhn9995gsrcaj8gx9";
|
|
};
|
|
|
|
script = writeShellScriptBin "legends-browser" ''
|
|
set -eu
|
|
BASE="$HOME/.local/share/df_linux/legends-browser/"
|
|
mkdir -p "$BASE"
|
|
cd "$BASE"
|
|
if [[ ! -e legendsbrowser.properties ]]; then
|
|
echo 'Creating initial configuration for legends-browser'
|
|
echo "last=$(cd ..; pwd)" > legendsbrowser.properties
|
|
fi
|
|
${jre}/bin/java -jar ${jar}
|
|
'';
|
|
in
|
|
|
|
buildEnv {
|
|
inherit name;
|
|
paths = [ script ];
|
|
|
|
meta = with stdenvNoCC.lib; {
|
|
description = "A multi-platform, open source, java-based legends viewer for dwarf fortress";
|
|
maintainers = with maintainers; [ Baughn ];
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
homepage = https://github.com/robertjanetzko/LegendsBrowser;
|
|
};
|
|
}
|