chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / fu / fusuma / package.nix
blob0622ce699f8c29b92c11a4b35b07e02639d11314
1 { lib, bundlerApp, bundlerUpdateScript, makeWrapper, gnugrep, libinput }:
3 bundlerApp {
4   pname = "fusuma";
5   gemdir = ./.;
6   exes = [ "fusuma" ];
8   nativeBuildInputs = [ makeWrapper ];
10   postBuild = ''
11     wrapProgram "$out/bin/fusuma" \
12       --prefix PATH : ${lib.makeBinPath [ gnugrep libinput ]}
13   '';
15   passthru.updateScript = bundlerUpdateScript "fusuma";
17   meta = with lib; {
18     description = "Multitouch gestures with libinput driver on X11, Linux";
19     homepage = "https://github.com/iberianpig/fusuma";
20     license = licenses.mit;
21     maintainers = with maintainers; [ nicknovitski Br1ght0ne ];
22     platforms = platforms.linux;
23   };