diff --git a/pkgs/development/hare-third-party/hare-json/default.nix b/pkgs/development/hare-third-party/hare-json/default.nix index 09608c170de7..397e826a6a29 100644 --- a/pkgs/development/hare-third-party/hare-json/default.nix +++ b/pkgs/development/hare-third-party/hare-json/default.nix @@ -1,20 +1,19 @@ { fetchFromSourcehut, hareHook, - harec, lib, stdenv, }: stdenv.mkDerivation (finalAttrs: { pname = "hare-json"; - version = "0-unstable-2024-04-19"; + version = "0.26.0.0"; src = fetchFromSourcehut { owner = "~sircmpwn"; repo = "hare-json"; - rev = "b6aeae96199607a1f3b4d437d5c99f821bd6a6b6"; - hash = "sha256-mgUzHGXbaJdWm7qUn7mWdDUQBgbEjh42O+Lo0ok80Wo="; + tag = finalAttrs.version; + hash = "sha256-vAT10QGFwazM5PYLQpW0ebFGa2sScXWM87jzI+m4/eM="; }; nativeBuildInputs = [ hareHook ]; @@ -28,6 +27,6 @@ stdenv.mkDerivation (finalAttrs: { description = "This package provides JSON support for Hare"; license = with lib.licenses; [ mpl20 ]; maintainers = with lib.maintainers; [ starzation ]; - inherit (harec.meta) platforms badPlatforms; + inherit (hareHook.meta) platforms badPlatforms; }; })