lol

Merge pull request #130848 from svanderburg/add-lha

lha: init at 2021-01-07

authored by

Sander van der Burg and committed by
GitHub
d8208410 f4860dc7

+29
+27
pkgs/tools/archivers/lha/default.nix
··· 1 + {stdenv, lib, fetchFromGitHub, autoreconfHook}: 2 + 3 + stdenv.mkDerivation { 4 + pname = "lha"; 5 + version = "unstable-2021-01-07"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jca02266"; 9 + repo = "lha"; 10 + rev = "03475355bc6311f7f816ea9a88fb34a0029d975b"; 11 + sha256 = "18w2x0g5yq89yxkxh1fmb05lz4hw7a3b4jmkk95gvh11mwbbr5lm"; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook ]; 15 + 16 + meta = with lib; { 17 + description = "LHa is an archiver and compressor using the LZSS and Huffman encoding compression algorithms"; 18 + platforms = platforms.unix; 19 + maintainers = [ maintainers.sander ]; 20 + # Some of the original LhA code has been rewritten and the current author 21 + # considers adopting a "true" free and open source license for it. 22 + # However, old code is still covered by the original LHa license, which is 23 + # not a free software license (it has additional requirements on commercial 24 + # use). 25 + license = licenses.unfree; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 6355 6355 6356 6356 lf = callPackage ../tools/misc/lf {}; 6357 6357 6358 + lha = callPackage ../tools/archivers/lha { }; 6359 + 6358 6360 lhasa = callPackage ../tools/compression/lhasa {}; 6359 6361 6360 6362 libcpuid = callPackage ../tools/misc/libcpuid { };