fyi: init at 1.0.4 (#332964)
This commit is contained in:
commit
9d9c3b1b13
@ -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";
|
||||
|
43
pkgs/by-name/fy/fyi/package.nix
Normal file
43
pkgs/by-name/fy/fyi/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user