mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
do not import nixpkgs with lookup path
This commit is contained in:
@@ -85,7 +85,7 @@ in {
|
|||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixi = "nix repl '<nixpkgs>'";
|
nixi = "nix repl nixpkgs";
|
||||||
take = "source ${take}";
|
take = "source ${take}";
|
||||||
wcd = "source ${wcd}";
|
wcd = "source ${wcd}";
|
||||||
where = "source ${where}";
|
where = "source ${where}";
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
{pkgs ? import <nixpkgs> {}}:
|
{
|
||||||
pkgs.writers.writeDashBin "jsesh" ''
|
writers,
|
||||||
${pkgs.jre}/bin/java -jar ${pkgs.fetchzip {
|
jre,
|
||||||
url = "https://github.com/rosmord/jsesh/releases/download/release-7.5.5/JSesh-7.5.5.zip";
|
fetchzip,
|
||||||
sha256 = "1z7ln51cil9pypz855x9a8p9ip2aflvknh566wcaah1kmz3fp57r";
|
}:
|
||||||
}}/lib/jseshAppli-7.5.5.jar
|
writers.writeDashBin "jsesh" ''
|
||||||
|
${jre}/bin/java -jar ${
|
||||||
|
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
|
||||||
''
|
''
|
||||||
|
|||||||
Reference in New Issue
Block a user