From bd99640902957abd034dda2be7e64b2ae3af46fd Mon Sep 17 00:00:00 2001 From: Mutsuha Asada Date: Thu, 9 Jan 2025 17:02:16 +0900 Subject: [PATCH 1/2] lha: unstable-2021-01-07 -> 1.14i-unstable-2024-11-27 --- pkgs/by-name/lh/lha/package.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/lh/lha/package.nix b/pkgs/by-name/lh/lha/package.nix index c786bcb2861d..0c63f8418c6f 100644 --- a/pkgs/by-name/lh/lha/package.nix +++ b/pkgs/by-name/lh/lha/package.nix @@ -7,27 +7,30 @@ 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 + ]; + # 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"; }; } From fd1cc0746a81d9dbf5804f7c53dccaa54a7b2fb5 Mon Sep 17 00:00:00 2001 From: Mutsuha Asada Date: Sun, 12 Jan 2025 22:33:48 +0900 Subject: [PATCH 2/2] lha: add @momeemt to the maintainers --- pkgs/by-name/lh/lha/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/lh/lha/package.nix b/pkgs/by-name/lh/lha/package.nix index 0c63f8418c6f..ad3da2237676 100644 --- a/pkgs/by-name/lh/lha/package.nix +++ b/pkgs/by-name/lh/lha/package.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation { 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.