Unverified Commit 061a735d authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

lha: unstable-2021-01-07 -> unstable-2024-11-27 (#372014)

parents 5593fccd fd1cc074
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
@@ -7,27 +7,31 @@

stdenv.mkDerivation {
  pname = "lha";
  version = "unstable-2021-01-07";
  version = "1.14i-unstable-2024-11-27";

  src = fetchFromGitHub {
    owner = "jca02266";
    repo = "lha";
    rev = "03475355bc6311f7f816ea9a88fb34a0029d975b";
    sha256 = "18w2x0g5yq89yxkxh1fmb05lz4hw7a3b4jmkk95gvh11mwbbr5lm";
    rev = "26b71be85a762098bdeb95f4533045c7dad86f31";
    hash = "sha256-jiYTBqDXvxTdrvHYaK+1eo4xIpl+B9ZljhBBYD0BGzQ=";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with lib; {
  meta = {
    description = "LHa is an archiver and compressor using the LZSS and Huffman encoding compression algorithms";
    platforms = platforms.unix;
    maintainers = [ maintainers.sander ];
    # Some of the original LhA code has been rewritten and the current author
    homepage = "https://github.com/jca02266/lha";
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [
      sander
      momeemt
    ];
    # Some of the original LHa code has been rewritten and the current author
    # considers adopting a "true" free and open source license for it.
    # However, old code is still covered by the original LHa license, which is
    # not a free software license (it has additional requirements on commercial
    # use).
    license = licenses.unfree;
    license = lib.licenses.unfree;
    mainProgram = "lha";
  };
}