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

25 lines
903 B
Nix
Raw Normal View History

2020-07-06 00:10:40 +00:00
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, wayland, pixman, cairo, librsvg, wayland-protocols, wlroots, libxkbcommon, scdoc, git, tllist, fcft}:
stdenv.mkDerivation rec {
pname = "fuzzel";
2020-09-19 10:48:24 +00:00
version = "1.4.2";
2020-07-06 00:10:40 +00:00
src = fetchgit {
url = "https://codeberg.org/dnkl/fuzzel";
rev = version;
2020-09-19 10:48:24 +00:00
sha256 = "0c0p9spklzmy9f7abz3mvw0vp6zgnk3ns1i6ks95ljjb3kqy9vs2";
2020-07-06 00:10:40 +00:00
};
nativeBuildInputs = [ pkg-config meson ninja scdoc git ];
buildInputs = [ wayland pixman cairo librsvg wayland-protocols wlroots libxkbcommon tllist fcft ];
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 ];
platforms = with platforms; linux;
2020-09-19 10:48:24 +00:00
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
2020-07-06 00:10:40 +00:00
};
}