Merge pull request #50191 from jfrankenau/init-fusuma

fusuma: init at 0.10.2
This commit is contained in:
Renaud 2018-11-18 19:37:26 +01:00 committed by GitHub
commit ab06622d86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem "fusuma"

View File

@ -0,0 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
fusuma (0.10.2)
PLATFORMS
ruby
DEPENDENCIES
fusuma
BUNDLED WITH
1.16.3

View File

@ -0,0 +1,22 @@
{ 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;
};
}

View File

@ -0,0 +1,10 @@
{
fusuma = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0hj64kafxj29gk53vj2syhs3vdywl3h9cpiknaqqm4srjx9g04a0";
type = "gem";
};
version = "0.10.2";
};
}

View File

@ -2761,6 +2761,8 @@ with pkgs;
fuseiso = callPackage ../tools/filesystems/fuseiso { };
fusuma = callPackage ../tools/inputmethods/fusuma {};
fdbPackages = callPackage ../servers/foundationdb {
stdenv49 = overrideCC stdenv gcc49;
};