Skip to content

Commit

Permalink
lha: unstable-2021-01-07 -> unstable-2024-11-27 (#372014)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Jan 14, 2025
2 parents 5593fcc + fd1cc07 commit 061a735
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions pkgs/by-name/lh/lha/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,31 @@

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

src = fetchFromGitHub {
owner = "jca02266";
repo = "lha";
rev = "03475355bc6311f7f816ea9a88fb34a0029d975b";
sha256 = "18w2x0g5yq89yxkxh1fmb05lz4hw7a3b4jmkk95gvh11mwbbr5lm";
rev = "26b71be85a762098bdeb95f4533045c7dad86f31";
hash = "sha256-jiYTBqDXvxTdrvHYaK+1eo4xIpl+B9ZljhBBYD0BGzQ=";
};

nativeBuildInputs = [ autoreconfHook ];

meta = with lib; {
meta = {
description = "LHa is an archiver and compressor using the LZSS and Huffman encoding compression algorithms";
platforms = platforms.unix;
maintainers = [ maintainers.sander ];
# Some of the original LhA code has been rewritten and the current author
homepage = "https://github.com/jca02266/lha";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
sander
momeemt
];
# Some of the original LHa code has been rewritten and the current author
# considers adopting a "true" free and open source license for it.
# However, old code is still covered by the original LHa license, which is
# not a free software license (it has additional requirements on commercial
# use).
license = licenses.unfree;
license = lib.licenses.unfree;
mainProgram = "lha";
};
}

0 comments on commit 061a735

Please sign in to comment.