mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
24 lines
651 B
Nix
24 lines
651 B
Nix
{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, gnugrep, libinput }:
|
|
|
|
bundlerApp {
|
|
pname = "fusuma";
|
|
gemdir = ./.;
|
|
exes = [ "fusuma" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram "$out/bin/fusuma" \
|
|
--prefix PATH : ${lib.makeBinPath [ gnugrep 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; [ nicknovitski Br1ght0ne ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|