From f8641384ab56a5c5666eba26fc505fe72e9b93a3 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sun, 1 Mar 2026 15:10:52 +0400 Subject: [PATCH] =?UTF-8?q?hareThirdParty.hare-compress:=200-unstable-2023?= =?UTF-8?q?-11-01=20=E2=86=92=200.25.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hare-third-party/hare-compress/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/hare-third-party/hare-compress/default.nix b/pkgs/development/hare-third-party/hare-compress/default.nix index 2d48370ed45d..124247b06e52 100644 --- a/pkgs/development/hare-third-party/hare-compress/default.nix +++ b/pkgs/development/hare-third-party/hare-compress/default.nix @@ -2,19 +2,18 @@ lib, stdenv, hareHook, - harec, fetchFromSourcehut, }: stdenv.mkDerivation (finalAttrs: { pname = "hare-compress"; - version = "0-unstable-2023-11-01"; + version = "0.25.2.0"; src = fetchFromSourcehut { owner = "~sircmpwn"; repo = "hare-compress"; - rev = "562706946871d1c994f60361883269916cbaa08e"; - hash = "sha256-sz8xPBZaUFye3HH4lkRnH52ye451e6seZXN/qvg87jE="; + tag = finalAttrs.version; + hash = "sha256-s5K6xnzQeQ/lncpfZpxHx1FBdrjgnuhOih/YGJXCjkc="; }; nativeBuildInputs = [ hareHook ]; @@ -28,6 +27,6 @@ stdenv.mkDerivation (finalAttrs: { description = "Compression algorithms for Hare"; license = with lib.licenses; [ mpl20 ]; maintainers = with lib.maintainers; [ starzation ]; - inherit (harec.meta) platforms badPlatforms; + inherit (hareHook.meta) platforms badPlatforms; }; })