mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
lhasa: init at 0.3.1
This commit is contained in:
parent
e0ac20bb36
commit
b44e79e240
21
pkgs/tools/compression/lhasa/default.nix
Normal file
21
pkgs/tools/compression/lhasa/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "lhasa-0.3.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz;
|
||||||
|
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;
|
||||||
|
homepage = http://fragglet.github.io/lhasa;
|
||||||
|
maintainers = with stdenv.lib; [ maintainers.sander ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -2305,6 +2305,8 @@ in
|
|||||||
less = callPackage ../tools/misc/less { };
|
less = callPackage ../tools/misc/less { };
|
||||||
|
|
||||||
lf = callPackage ../tools/misc/lf {};
|
lf = callPackage ../tools/misc/lf {};
|
||||||
|
|
||||||
|
lhasa = callPackage ../tools/compression/lhasa {};
|
||||||
|
|
||||||
libcpuid = callPackage ../tools/misc/libcpuid { };
|
libcpuid = callPackage ../tools/misc/libcpuid { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user