lhasa: init at 0.3.1

+23
+21
pkgs/tools/compression/lhasa/default.nix
··· 1 + {stdenv, fetchurl}: 2 + 3 + stdenv.mkDerivation { 4 + name = "lhasa-0.3.1"; 5 + src = fetchurl { 6 + url = https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz; 7 + sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z"; 8 + }; 9 + meta = { 10 + description = "Free Software replacement for the Unix LHA tool"; 11 + longDescription = '' 12 + Lhasa is a Free Software replacement for the Unix LHA tool, for 13 + decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for 14 + the tool is a library, so that it can be reused for other purposes. 15 + ''; 16 + license = stdenv.lib.licenses.isc; 17 + homepage = http://fragglet.github.io/lhasa; 18 + maintainers = with stdenv.lib; [ maintainers.sander ]; 19 + platforms = stdenv.lib.platforms.linux; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 2305 2305 less = callPackage ../tools/misc/less { }; 2306 2306 2307 2307 lf = callPackage ../tools/misc/lf {}; 2308 + 2309 + lhasa = callPackage ../tools/compression/lhasa {}; 2308 2310 2309 2311 libcpuid = callPackage ../tools/misc/libcpuid { }; 2310 2312