From acde0c2cff99f11befe2c7640e60bcf9ca8a4540 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sun, 1 Mar 2026 15:17:45 +0400 Subject: [PATCH] =?UTF-8?q?hareThirdParty.hare-json:=200-unstable-2024-04-?= =?UTF-8?q?19=20=E2=86=92=200.26.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/hare-third-party/hare-json/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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; }; })