Skip to content

Commit 061a735

Browse files
authored
lha: unstable-2021-01-07 -> unstable-2024-11-27 (NixOS#372014)
2 parents 5593fcc + fd1cc07 commit 061a735

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

pkgs/by-name/lh/lha/package.nix

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,31 @@
77

88
stdenv.mkDerivation {
99
pname = "lha";
10-
version = "unstable-2021-01-07";
10+
version = "1.14i-unstable-2024-11-27";
1111

1212
src = fetchFromGitHub {
1313
owner = "jca02266";
1414
repo = "lha";
15-
rev = "03475355bc6311f7f816ea9a88fb34a0029d975b";
16-
sha256 = "18w2x0g5yq89yxkxh1fmb05lz4hw7a3b4jmkk95gvh11mwbbr5lm";
15+
rev = "26b71be85a762098bdeb95f4533045c7dad86f31";
16+
hash = "sha256-jiYTBqDXvxTdrvHYaK+1eo4xIpl+B9ZljhBBYD0BGzQ=";
1717
};
1818

1919
nativeBuildInputs = [ autoreconfHook ];
2020

21-
meta = with lib; {
21+
meta = {
2222
description = "LHa is an archiver and compressor using the LZSS and Huffman encoding compression algorithms";
23-
platforms = platforms.unix;
24-
maintainers = [ maintainers.sander ];
25-
# Some of the original LhA code has been rewritten and the current author
23+
homepage = "https://github.com/jca02266/lha";
24+
platforms = lib.platforms.unix;
25+
maintainers = with lib.maintainers; [
26+
sander
27+
momeemt
28+
];
29+
# Some of the original LHa code has been rewritten and the current author
2630
# considers adopting a "true" free and open source license for it.
2731
# However, old code is still covered by the original LHa license, which is
2832
# not a free software license (it has additional requirements on commercial
2933
# use).
30-
license = licenses.unfree;
34+
license = lib.licenses.unfree;
3135
mainProgram = "lha";
3236
};
3337
}

0 commit comments

Comments
 (0)