39 lines
808 B
Nix
39 lines
808 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, ninja
|
|
, meson
|
|
, scdoc
|
|
, wayland-protocols
|
|
, freetype
|
|
, harfbuzz
|
|
, cairo
|
|
, pango
|
|
, wayland
|
|
, libxkbcommon
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tofi";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "philj56";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KLHZrfoQ6x3EeKWo/TMp30rEIqdq16i8YLr4zFHbnSc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols ];
|
|
buildInputs = [ freetype harfbuzz cairo pango wayland libxkbcommon ];
|
|
|
|
meta = with lib; {
|
|
description = "Tiny dynamic menu for Wayland";
|
|
homepage = "https://github.com/philj56/tofi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fbergroth ];
|
|
platforms = platforms.linux;
|
|
broken = stdenv.isAarch64;
|
|
};
|
|
}
|