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

25 lines
639 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, libinput }:
2018-11-10 11:04:53 +00:00
bundlerApp {
pname = "fusuma";
gemdir = ./.;
exes = [ "fusuma" ];
buildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/fusuma" \
--prefix PATH : ${lib.makeBinPath [ libinput ]}
'';
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
};
}