mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
44 lines
921 B
Nix
44 lines
921 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromSourcehut,
|
|
gitUpdater,
|
|
hareHook,
|
|
hareThirdParty,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bonsai";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~stacyharper";
|
|
repo = "bonsai";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Wsr76OQOIqRPCx/8GK9NovxxPZ3dEP8pSo8wgMK1Hfo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hareHook
|
|
hareThirdParty.hare-ev
|
|
hareThirdParty.hare-json
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
meta = with lib; {
|
|
description = "Finite State Machine structured as a tree";
|
|
homepage = "https://git.sr.ht/~stacyharper/bonsai";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ colinsane ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "bonsaictl";
|
|
};
|
|
})
|