hareThirdParty.hare-ev: init at unstable-2023-10-31
* hareThirdParty.hare-ev: init at unstable-2023-10-30 (#274505) --------- Co-authored-by: Janik <80165193+Janik-Haag@users.noreply.github.com>
This commit is contained in:
parent
0ddc907228
commit
64121103ec
39
pkgs/development/hare-third-party/hare-ev/default.nix
vendored
Normal file
39
pkgs/development/hare-third-party/hare-ev/default.nix
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromSourcehut
|
||||
, hare
|
||||
, unstableGitUpdater
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "hare-ev";
|
||||
version = "unstable-2023-10-31";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~sircmpwn";
|
||||
repo = "hare-ev";
|
||||
rev = "9bdbd02401334b7d762131a46e64ca2cd24846dc";
|
||||
hash = "sha256-VY8nsy5kLDMScA2ig3Rgbkf6VQlCTnGWjzGvsI9OcaQ=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
hare
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"HARECACHE=.harecache"
|
||||
"PREFIX=${builtins.placeholder "out"}"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { };
|
||||
|
||||
meta = with lib; {
|
||||
description = "Event loop for Hare programs";
|
||||
homepage = "https://sr.ht/~sircmpwn/hare-ev";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ colinsane ];
|
||||
inherit (hare.meta) platforms badPlatforms;
|
||||
};
|
||||
}
|
@ -7,5 +7,6 @@ in
|
||||
{
|
||||
|
||||
hare-compress = callPackage ../development/hare-third-party/hare-compress { };
|
||||
hare-ev = callPackage ../development/hare-third-party/hare-ev { };
|
||||
hare-json = callPackage ../development/hare-third-party/hare-json { };
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user