tofi: init at 0.5.0
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -31265,6 +31265,8 @@ with pkgs;
|
||||
|
||||
todoman = callPackage ../applications/office/todoman { };
|
||||
|
||||
tofi = callPackage ../applications/misc/tofi { };
|
||||
|
||||
topydo = callPackage ../applications/misc/topydo {};
|
||||
|
||||
torrential = callPackage ../applications/networking/p2p/torrential { };
|
||||
|
||||
Reference in New Issue
Block a user