mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
8 lines
309 B
Nix
8 lines
309 B
Nix
|
|
{pkgs ? import <nixpkgs> {}}:
|
||
|
|
pkgs.writers.writeDashBin "jsesh" ''
|
||
|
|
${pkgs.jre}/bin/java -jar ${pkgs.fetchzip {
|
||
|
|
url = "https://github.com/rosmord/jsesh/releases/download/release-7.5.5/JSesh-7.5.5.zip";
|
||
|
|
sha256 = "1z7ln51cil9pypz855x9a8p9ip2aflvknh566wcaah1kmz3fp57r";
|
||
|
|
}}/lib/jseshAppli-7.5.5.jar
|
||
|
|
''
|