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

72 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitea
, pkg-config
, meson
, ninja
, wayland-scanner
, wayland
, pixman
, wayland-protocols
, libxkbcommon
, scdoc
, tllist
, fcft
, enableCairo ? true
, withPNGBackend ? "libpng"
, withSVGBackend ? "librsvg"
2021-11-14 20:17:37 +01:00
# Optional dependencies
, cairo
, librsvg
, libpng
}:
2020-07-06 02:10:40 +02:00
stdenv.mkDerivation rec {
pname = "fuzzel";
2021-11-14 20:17:37 +01:00
version = "1.6.5";
2020-07-06 02:10:40 +02:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fuzzel";
rev = version;
2021-11-14 20:17:37 +01:00
sha256 = "SWt46YSXI6Dsv0ed3H4sN8kbEzQDL4U6jxFSbMyspJ0=";
2020-07-06 02:10:40 +02:00
};
nativeBuildInputs = [
pkg-config
wayland-scanner
meson
ninja
scdoc
];
buildInputs = [
wayland
pixman
wayland-protocols
libxkbcommon
tllist
fcft
] ++ lib.optional enableCairo cairo
2021-11-14 20:17:37 +01:00
++ lib.optional (withPNGBackend == "libpng") libpng
++ lib.optional (withSVGBackend == "librsvg") librsvg;
mesonBuildType = "release";
mesonFlags = [
"-Denable-cairo=${if enableCairo then "enabled" else "disabled"}"
"-Dpng-backend=${withPNGBackend}"
"-Dsvg-backend=${withSVGBackend}"
];
2020-07-06 02:10:40 +02:00
meta = with lib; {
description = "Wayland-native application launcher, similar to rofis drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
license = licenses.mit;
maintainers = with maintainers; [ fionera polykernel ];
2020-07-06 02:10:40 +02:00
platforms = with platforms; linux;
2020-09-19 12:48:24 +02:00
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
2020-07-06 02:10:40 +02:00
};
}