fyi: init at 1.0.4 (#332964)

This commit is contained in:
Aleksana 2024-11-13 23:01:03 +08:00 committed by GitHub
commit 9d9c3b1b13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 49 additions and 0 deletions

View File

@ -13474,6 +13474,12 @@
githubId = 1709273;
name = "Robin Hack";
};
marnym = {
email = "markus@nyman.dev";
github = "marnym";
githubId = 56825922;
name = "Markus Nyman";
};
marsupialgutz = {
email = "mars@possums.xyz";
github = "pupbrained";

View File

@ -0,0 +1,43 @@
{
stdenv,
lib,
fetchFromGitea,
pkg-config,
meson,
ninja,
dbus,
scdoc,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fyi";
version = "1.0.4";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fyi";
rev = finalAttrs.version;
hash = "sha256-UGkShHziREQTkQUlbFXT1144BiBApFVbCvu5A1DuoMI=";
};
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
pkg-config
meson
ninja
scdoc
];
buildInputs = [ dbus ];
meta = {
changelog = "https://codeberg.org/dnkl/fyi/releases/tag/${finalAttrs.version}";
description = "Command line utility to create desktop notifications";
homepage = "https://codeberg.org/dnkl/fyi";
license = [ lib.licenses.mit ];
mainProgram = "fyi";
maintainers = with lib.maintainers; [ marnym ];
platforms = lib.platforms.linux;
};
})