nix-files/pkgs/additional/hare-json/default.nix

41 lines
818 B
Nix

{ stdenv
, lib
, fetchFromSourcehut
, hare
, unstableGitUpdater
}:
stdenv.mkDerivation rec {
pname = "hare-json";
version = "unstable-2023-09-21";
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = pname;
rev = "e24e5dceb8628ff569338e6c4fdba35a5017c5e2";
hash = "sha256-7QRieokqXarKwLfZynS8Rum9JV9hcxod00BWAUwwliM=";
};
nativeCheckInputs = [
hare
];
preCheck = ''
export HARECACHE=$(mktemp -d)
'';
installFlags = [ "PREFIX=$(out)" ];
doCheck = true;
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "JSON support for the Hare programming language";
homepage = "https://sr.ht/~sircmpwn/hare-json";
license = licenses.mpl20;
maintainers = with maintainers; [ colinsane ];
platforms = platforms.linux;
};
}