Merge pull request #50191 from jfrankenau/init-fusuma
fusuma: init at 0.10.2
This commit is contained in:
commit
ab06622d86
2
pkgs/tools/inputmethods/fusuma/Gemfile
Normal file
2
pkgs/tools/inputmethods/fusuma/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem "fusuma"
|
13
pkgs/tools/inputmethods/fusuma/Gemfile.lock
Normal file
13
pkgs/tools/inputmethods/fusuma/Gemfile.lock
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
fusuma (0.10.2)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
fusuma
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.16.3
|
22
pkgs/tools/inputmethods/fusuma/default.nix
Normal file
22
pkgs/tools/inputmethods/fusuma/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
10
pkgs/tools/inputmethods/fusuma/gemset.nix
Normal file
10
pkgs/tools/inputmethods/fusuma/gemset.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
fusuma = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0hj64kafxj29gk53vj2syhs3vdywl3h9cpiknaqqm4srjx9g04a0";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.10.2";
|
||||||
|
};
|
||||||
|
}
|
@ -2761,6 +2761,8 @@ with pkgs;
|
|||||||
|
|
||||||
fuseiso = callPackage ../tools/filesystems/fuseiso { };
|
fuseiso = callPackage ../tools/filesystems/fuseiso { };
|
||||||
|
|
||||||
|
fusuma = callPackage ../tools/inputmethods/fusuma {};
|
||||||
|
|
||||||
fdbPackages = callPackage ../servers/foundationdb {
|
fdbPackages = callPackage ../servers/foundationdb {
|
||||||
stdenv49 = overrideCC stdenv gcc49;
|
stdenv49 = overrideCC stdenv gcc49;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user