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; }; })