lha: 1.14i-unstable-2024-11-27 -> 1.14i-unstable-2026-01-01

This commit is contained in:
Chris McDonough
2026-05-05 08:59:38 -04:00
parent cadd3b008c
commit 3cc50f4867

View File

@@ -3,21 +3,28 @@
lib,
fetchFromGitHub,
autoreconfHook,
testers,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "lha";
version = "1.14i-unstable-2024-11-27";
version = "1.14i-unstable-2026-01-01";
src = fetchFromGitHub {
owner = "jca02266";
repo = "lha";
rev = "26b71be85a762098bdeb95f4533045c7dad86f31";
hash = "sha256-jiYTBqDXvxTdrvHYaK+1eo4xIpl+B9ZljhBBYD0BGzQ=";
rev = "86094cb56aba34de45668f39f74fcfb61e9d7fb6";
hash = "sha256-ckzcCvt5v6rBcp9n8XXzgS2XkURbO8bsqTURGLRzpAU=";
};
nativeBuildInputs = [ autoreconfHook ];
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "lha --help";
version = "1.14i";
};
meta = {
description = "Archiver and compressor using the LZSS and Huffman encoding compression algorithms";
homepage = "https://github.com/jca02266/lha";
@@ -33,4 +40,4 @@ stdenv.mkDerivation {
license = lib.licenses.unfree;
mainProgram = "lha";
};
}
})