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

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

77 lines
1.5 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
, svgSupport ? true
, pngSupport ? true
# Optional dependencies
, cairo
, libpng
}:
2020-07-06 00:10:40 +00:00
assert svgSupport -> enableCairo;
2020-07-06 00:10:40 +00:00
stdenv.mkDerivation rec {
pname = "fuzzel";
2023-08-01 05:54:05 +00:00
version = "1.9.2";
2020-07-06 00:10:40 +00:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
2023-03-28 03:06:12 +00:00
repo = pname;
rev = version;
2023-08-01 05:54:05 +00:00
hash = "sha256-X1P/ghX97KCQcrNk44Cy2IAGuZ8DDwHBWzh1AHLDvd4=";
2020-07-06 00:10:40 +00:00
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
pkg-config
wayland-scanner
meson
ninja
scdoc
];
buildInputs = [
wayland
pixman
wayland-protocols
libxkbcommon
tllist
fcft
] ++ lib.optional enableCairo cairo
++ lib.optional pngSupport libpng;
mesonBuildType = "release";
mesonFlags = [
"-Denable-cairo=${if enableCairo then "enabled" else "disabled"}"
"-Dpng-backend=${if pngSupport then "libpng" else "none"}"
"-Dsvg-backend=${if svgSupport then "nanosvg" else "none"}"
];
2020-07-06 00:10:40 +00:00
meta = with lib; {
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
2020-07-06 00:10:40 +00:00
description = "Wayland-native application launcher, similar to rofis drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
license = with licenses; [ mit zlib ];
mainProgram = "fuzzel";
maintainers = with maintainers; [ fionera polykernel rodrgz ];
2020-07-06 00:10:40 +00:00
platforms = with platforms; linux;
};
}