python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fusuma / default.nix
blob7ed5bc99f46b93c227523008acded4bcfee5d2d5
1 { lib, bundlerApp, bundlerUpdateScript, makeWrapper, 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 [ 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; [ jfrankenau nicknovitski Br1ght0ne ];
22     platforms = platforms.linux;
23   };