nim_lk: 20240210 -> 20240510

Bugfix update.
This commit is contained in:
Emery Hemingway
2024-05-10 12:09:47 +02:00
parent 3708b2a1e4
commit 26ea5b58aa
+22 -13
View File
@@ -1,23 +1,26 @@
{ lib
, buildNimPackage
, fetchFromSourcehut
, nim
, nix-prefetch
, nix-prefetch-git
, openssl
, makeWrapper
{
lib,
buildNimPackage,
fetchFromSourcehut,
nim,
nix-prefetch,
nix-prefetch-git,
openssl,
makeWrapper,
}:
let nim' = nim.passthru.nim;
in buildNimPackage (finalAttrs: {
let
nim' = nim.passthru.nim;
in
buildNimPackage (finalAttrs: {
pname = "nim_lk";
version = "20240210";
version = "20240510";
src = fetchFromSourcehut {
owner = "~ehmry";
repo = "nim_lk";
rev = finalAttrs.version;
hash = "sha256-LLOf8HNee0Mol+e7/dvu9hQUCmpaVBNggTxaAl/wV6Y=";
hash = "sha256-fwoGyYkbGstWG0qw15dOq1gmr3GyIn6ZEBeBmEivHlA=";
};
lockFile = ./lock.json;
@@ -29,7 +32,13 @@ in buildNimPackage (finalAttrs: {
postFixup = ''
wrapProgram $out/bin/nim_lk \
--suffix PATH : ${lib.makeBinPath [ nim' nix-prefetch nix-prefetch-git ]}
--suffix PATH : ${
lib.makeBinPath [
nim'
nix-prefetch
nix-prefetch-git
]
}
'';
meta = finalAttrs.src.meta // {