Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "lha";
|
|
version = "1.14i-unstable-2024-11-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jca02266";
|
|
repo = "lha";
|
|
rev = "26b71be85a762098bdeb95f4533045c7dad86f31";
|
|
hash = "sha256-jiYTBqDXvxTdrvHYaK+1eo4xIpl+B9ZljhBBYD0BGzQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = {
|
|
description = "Archiver and compressor using the LZSS and Huffman encoding compression algorithms";
|
|
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 = lib.licenses.unfree;
|
|
mainProgram = "lha";
|
|
};
|
|
}
|