211fdaa087
the docs for bundlerApp used to have makeWrapper in buildInputs but it has been corrected already
25 lines
645 B
Nix
25 lines
645 B
Nix
{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, libinput }:
|
|
|
|
bundlerApp {
|
|
pname = "fusuma";
|
|
gemdir = ./.;
|
|
exes = [ "fusuma" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram "$out/bin/fusuma" \
|
|
--prefix PATH : ${lib.makeBinPath [ libinput ]}
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "fusuma";
|
|
|
|
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 nicknovitski Br1ght0ne ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|