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
30 lines
802 B
Nix
30 lines
802 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lhasa";
|
|
version = "0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://soulsphere.org/projects/lhasa/lhasa-${version}.tar.gz";
|
|
sha256 = "sha256-v4eFxwYJ0h62K32ueJTxOIiPiJ086Xho1QL24Tp5Kxw=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Free Software replacement for the Unix LHA tool";
|
|
longDescription = ''
|
|
Lhasa is a Free Software replacement for the Unix LHA tool, for
|
|
decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for
|
|
the tool is a library, so that it can be reused for other purposes.
|
|
'';
|
|
license = licenses.isc;
|
|
homepage = "http://fragglet.github.io/lhasa";
|
|
maintainers = [ maintainers.sander ];
|
|
mainProgram = "lha";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|