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

23 lines
545 B
Nix
Raw Normal View History

2018-11-10 11:04:53 +00:00
{ lib, bundlerApp, makeWrapper, libinput }:
bundlerApp {
pname = "fusuma";
gemdir = ./.;
exes = [ "fusuma" ];
buildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/fusuma" \
--prefix PATH : ${lib.makeBinPath [ libinput ]}
'';
meta = with lib; {
description = "Multitouch gestures with libinput driver on X11, Linux";
homepage = https://github.com/iberianpig/fusuma;
license = licenses.mit;
maintainers = with maintainers; [ jfrankenau ];
platforms = platforms.linux;
};
}