mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #189468 from fbergroth/tofi
This commit is contained in:
commit
54db1b3596
@ -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";
|
||||
|
39
pkgs/applications/misc/tofi/default.nix
Normal file
39
pkgs/applications/misc/tofi/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user