nixpkgs/pkgs/applications/misc/fnott/default.nix

59 lines
958 B
Nix
Raw Normal View History

2021-08-07 05:50:19 +02:00
{ stdenv
, lib
, fetchFromGitea
2021-08-07 05:50:19 +02:00
, pkg-config
, meson
, ninja
, scdoc
, wayland-protocols
, tllist
, fontconfig
, freetype
, pixman
, libpng
, wayland
, wlroots
, dbus
, fcft
}:
stdenv.mkDerivation rec {
pname = "fnott";
2021-10-15 05:25:37 +02:00
version = "1.1.2";
2021-08-07 05:50:19 +02:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fnott";
2021-08-07 05:50:19 +02:00
rev = version;
2021-10-15 05:25:37 +02:00
sha256 = "sha256-+x3uN7Uj0fqO0kpHlOVnsshgEJA1z/6ZElKSTyLzfG4=";
2021-08-07 05:50:19 +02:00
};
nativeBuildInputs = [
pkg-config
meson
ninja
scdoc
wayland-protocols
tllist
];
buildInputs = [
fontconfig
freetype
pixman
libpng
wayland
wlroots
dbus
fcft
];
meta = with lib; {
homepage = "https://codeberg.org/dnkl/fnott";
description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors.";
license = licenses.mit;
maintainers = with maintainers; [ polykernel ];
platforms = platforms.linux;
};
}