nixpkgs/pkgs/by-name/fn/fnott/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-07 03:50:19 +00:00
{ stdenv
, lib
2023-11-26 16:09:47 +00:00
, gitUpdater
, fetchFromGitea
2021-08-07 03:50:19 +00:00
, pkg-config
, meson
, ninja
, scdoc
2023-04-22 11:40:24 +00:00
, wayland-scanner
2021-08-07 03:50:19 +00:00
, fontconfig
, freetype
, pixman
, libpng
2023-04-22 11:40:24 +00:00
, tllist
2021-08-07 03:50:19 +00:00
, wayland
2023-04-22 11:40:24 +00:00
, wayland-protocols
2021-08-07 03:50:19 +00:00
, dbus
, fcft
}:
stdenv.mkDerivation rec {
pname = "fnott";
2023-08-12 18:36:17 +00:00
version = "1.4.1";
2021-08-07 03:50:19 +00:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fnott";
2021-08-07 03:50:19 +00:00
rev = version;
2023-11-26 16:09:47 +00:00
hash = "sha256-8SKInlj54BP3Gn/DNVoLN62+Dfa8G5d/q2xGUXXdsjo=";
2021-08-07 03:50:19 +00:00
};
2023-11-26 16:10:17 +00:00
strictDeps = true;
2023-04-22 11:40:24 +00:00
depsBuildBuild = [
pkg-config
];
2021-08-07 03:50:19 +00:00
nativeBuildInputs = [
pkg-config
meson
ninja
scdoc
2023-04-22 11:40:24 +00:00
wayland-scanner
2021-08-07 03:50:19 +00:00
];
buildInputs = [
fontconfig
freetype
pixman
libpng
2023-04-22 11:40:24 +00:00
tllist
2021-08-07 03:50:19 +00:00
wayland
2023-04-22 11:40:24 +00:00
wayland-protocols
2021-08-07 03:50:19 +00:00
dbus
fcft
];
2023-11-26 16:09:47 +00:00
passthru.updateScript = gitUpdater { };
2023-11-26 16:09:17 +00:00
meta = {
2021-08-07 03:50:19 +00:00
homepage = "https://codeberg.org/dnkl/fnott";
description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors";
2023-11-26 16:09:17 +00:00
license = with lib.licenses; [ mit zlib ];
maintainers = with lib.maintainers; [ polykernel ];
2023-11-26 16:08:36 +00:00
mainProgram = "fnott";
2023-11-26 16:09:17 +00:00
platforms = lib.platforms.linux;
2021-08-07 03:50:19 +00:00
};
}