mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
23 lines
909 B
Nix
23 lines
909 B
Nix
{ stdenv, lib, fetchzip, pkg-config, meson, ninja, wayland, pixman, cairo, librsvg, wayland-protocols, wlroots, libxkbcommon, scdoc, git, tllist, fcft}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "fuzzel";
|
||
version = "1.5.3";
|
||
|
||
src = fetchzip {
|
||
url = "https://codeberg.org/dnkl/fuzzel/archive/${version}.tar.gz";
|
||
sha256 = "sha256-n2eXS4NdOBgn48KOJ+0sQeNMKL7OxB8tUB99narQG0o=";
|
||
};
|
||
|
||
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;
|
||
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
||
};
|
||
}
|