nixpkgs/pkgs/tools/compression/lhasa/default.nix

25 lines
771 B
Nix
Raw Normal View History

2021-07-21 11:41:20 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "lhasa";
version = "0.3.1";
2016-10-10 20:48:00 +00:00
src = fetchurl {
2021-07-21 11:41:20 +00:00
url = "https://soulsphere.org/projects/lhasa/lhasa-${version}.tar.gz";
2016-10-10 20:48:00 +00:00
sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z";
};
2021-07-21 11:41:20 +00:00
meta = with lib; {
2016-10-10 20:48:00 +00:00
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.
'';
2021-07-21 11:41:20 +00:00
license = licenses.isc;
homepage = "http://fragglet.github.io/lhasa";
2021-07-21 11:41:20 +00:00
maintainers = [ maintainers.sander ];
platforms = platforms.unix;
2016-10-10 20:48:00 +00:00
};
}