2016-10-10 21:48:00 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "lhasa-0.3.1";
|
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz";
|
2016-10-10 21:48:00 +01:00
|
|
|
sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
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 = stdenv.lib.licenses.isc;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://fragglet.github.io/lhasa";
|
2016-10-10 21:48:00 +01:00
|
|
|
maintainers = with stdenv.lib; [ maintainers.sander ];
|
2017-04-21 01:32:41 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2016-10-10 21:48:00 +01:00
|
|
|
};
|
|
|
|
}
|