Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
76 lines
1.4 KiB
Nix
76 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
gitUpdater,
|
|
fetchFromGitea,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
scdoc,
|
|
wayland-scanner,
|
|
fontconfig,
|
|
freetype,
|
|
pixman,
|
|
libpng,
|
|
tllist,
|
|
wayland,
|
|
wayland-protocols,
|
|
dbus,
|
|
fcft,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fnott";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "dnkl";
|
|
repo = "fnott";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-II8fij64ufwXg71VoSayVpSFim9+2w3j4gdTRDBrYQE=";
|
|
};
|
|
|
|
PKG_CONFIG_DBUS_1_SESSION_BUS_SERVICES_DIR = "${placeholder "out"}/share/dbus-1/services";
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
scdoc
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
fontconfig
|
|
freetype
|
|
pixman
|
|
libpng
|
|
tllist
|
|
wayland
|
|
wayland-protocols
|
|
dbus
|
|
fcft
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = {
|
|
homepage = "https://codeberg.org/dnkl/fnott";
|
|
changelog = "https://codeberg.org/dnkl/fnott/src/tag/${finalAttrs.src.rev}/CHANGELOG.md";
|
|
description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors";
|
|
license = with lib.licenses; [
|
|
mit
|
|
zlib
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
jmbaur
|
|
];
|
|
mainProgram = "fnott";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|