Merge pull request #189468 from fbergroth/tofi

This commit is contained in:
Sandro 2022-09-11 19:23:06 +02:00 committed by GitHub
commit 54db1b3596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 47 additions and 0 deletions

View File

@ -4316,6 +4316,12 @@
githubId = 7670450;
name = "Federico Beffa";
};
fbergroth = {
email = "fbergroth@gmail.com";
github = "fbergroth";
githubId = 1211003;
name = "Fredrik Bergroth";
};
fbrs = {
email = "yuuki@protonmail.com";
github = "cideM";

View File

@ -0,0 +1,39 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, ninja
, meson
, scdoc
, wayland-protocols
, freetype
, harfbuzz
, cairo
, pango
, wayland
, libxkbcommon
}:
stdenv.mkDerivation rec {
pname = "tofi";
version = "0.5.0";
src = fetchFromGitHub {
owner = "philj56";
repo = pname;
rev = "v${version}";
sha256 = "sha256-mSW6o/yvqj3nqkdA9C4waB+b+YcFcEXDPAdRHqYXXhY=";
};
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;
};
}

View File

@ -31403,6 +31403,8 @@ with pkgs;
todoman = callPackage ../applications/office/todoman { };
tofi = callPackage ../applications/misc/tofi { };
topydo = callPackage ../applications/misc/topydo {};
torrential = callPackage ../applications/networking/p2p/torrential { };