hare-ev: init at unstable-2022-12-29

This commit is contained in:
Colin 2023-05-18 07:34:01 +00:00
parent dfc4ac2f86
commit 88f91bd2d4
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ stdenv
, lib
, fetchFromSourcehut
, hare
, unstableGitUpdater
}:
stdenv.mkDerivation rec {
pname = "hare-ev";
version = "unstable-2022-12-29";
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = pname;
rev = "c585f01f4d13a25edb62477c07fdf32451417fee";
hash = "sha256-lB+ZPKGeYASV9oCE5iyDUCCPu2V07hqMXEktIY4fn1E=";
};
nativeBuildInputs = [
hare
];
installFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "an event loop for Hare programs";
homepage = "https://sr.ht/~sircmpwn/hare-ev";
license = licenses.mpl20;
maintainers = with maintainers; [ colinsane ];
platforms = platforms.linux;
};
}

View File

@ -18,6 +18,7 @@ let
feeds = lib.recurseIntoAttrs (callPackage ./additional/feeds { });
gopass-native-messaging-host = callPackage ./additional/gopass-native-messaging-host { };
gpodder-configured = callPackage ./additional/gpodder-configured { };
hare-ev = callPackage ./additional/hare-ev { };
hare-json = callPackage ./additional/hare-json { };
lightdm-mobile-greeter = callPackage ./additional/lightdm-mobile-greeter { };
linux-megous = callPackage ./additional/linux-megous { };