nixpkgs/pkgs/tools/inputmethods/fusuma/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
662 B
Nix
Raw Normal View History

2023-09-20 08:20:51 +00:00
{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, gnugrep, libinput }:
2018-11-10 11:04:53 +00:00
bundlerApp {
pname = "fusuma";
gemdir = ./.;
exes = [ "fusuma" ];
nativeBuildInputs = [ makeWrapper ];
2018-11-10 11:04:53 +00:00
postBuild = ''
wrapProgram "$out/bin/fusuma" \
2023-09-20 08:20:51 +00:00
--prefix PATH : ${lib.makeBinPath [ gnugrep libinput ]}
2018-11-10 11:04:53 +00:00
'';
passthru.updateScript = bundlerUpdateScript "fusuma";
2018-11-10 11:04:53 +00:00
meta = with lib; {
description = "Multitouch gestures with libinput driver on X11, Linux";
2019-12-09 23:20:47 +00:00
homepage = "https://github.com/iberianpig/fusuma";
license = licenses.mit;
maintainers = with maintainers; [ jfrankenau nicknovitski Br1ght0ne ];
2019-12-09 23:20:47 +00:00
platforms = platforms.linux;
2018-11-10 11:04:53 +00:00
};
}