2021-08-07 20:38:31 +02:00
|
|
|
|
{ stdenv, lib, fetchFromGitea, pkg-config, meson, ninja, wayland, pixman, cairo, librsvg, wayland-protocols, wlroots, libxkbcommon, scdoc, git, tllist, fcft}:
|
2020-07-06 02:10:40 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "fuzzel";
|
2021-07-08 15:35:31 +02:00
|
|
|
|
version = "1.6.1";
|
2020-07-06 02:10:40 +02:00
|
|
|
|
|
2021-08-07 20:38:31 +02:00
|
|
|
|
src = fetchFromGitea {
|
|
|
|
|
domain = "codeberg.org";
|
|
|
|
|
owner = "dnkl";
|
|
|
|
|
repo = "fuzzel";
|
|
|
|
|
rev = version;
|
2021-07-08 15:35:31 +02:00
|
|
|
|
sha256 = "sha256-JW5sAlTprSRIdFbmSaUreGtNccERgQMGEW+WCSscYQk=";
|
2020-07-06 02:10:40 +02: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 rofi’s drun mode";
|
|
|
|
|
homepage = "https://codeberg.org/dnkl/fuzzel";
|
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ fionera ];
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|