mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
Merge pull request #229324 from Atemu/init/xlibinput_calibrator
xlibinput_calibrator: init at 0.11
This commit is contained in:
commit
868f602ef3
42
pkgs/tools/inputmethods/xlibinput_calibrator/default.nix
Normal file
42
pkgs/tools/inputmethods/xlibinput_calibrator/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libX11
|
||||||
|
, libXi
|
||||||
|
, libXrandr
|
||||||
|
, txt2man
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "xlibinput-calibrator";
|
||||||
|
version = "0.11";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kreijack";
|
||||||
|
repo = "xlibinput_calibrator";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-MvlamN8WSER0zN9Ru3Kr2MFARD9s7PYKkRtyD8s6ZPI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
txt2man
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libX11
|
||||||
|
libXi
|
||||||
|
libXrandr
|
||||||
|
];
|
||||||
|
|
||||||
|
installFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Touch calibrator for libinput";
|
||||||
|
homepage = "https://github.com/kreijack/xlibinput_calibrator";
|
||||||
|
changelog = "https://github.com/kreijack/xlibinput_calibrator/blob/${src.rev}/Changelog";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ atemu ];
|
||||||
|
};
|
||||||
|
}
|
@ -39720,6 +39720,8 @@ with pkgs;
|
|||||||
|
|
||||||
xlayoutdisplay = callPackage ../tools/X11/xlayoutdisplay { };
|
xlayoutdisplay = callPackage ../tools/X11/xlayoutdisplay { };
|
||||||
|
|
||||||
|
xlibinput-calibrator = callPackage ../tools/inputmethods/xlibinput_calibrator { };
|
||||||
|
|
||||||
xlog = callPackage ../applications/radio/xlog { };
|
xlog = callPackage ../applications/radio/xlog { };
|
||||||
|
|
||||||
xmagnify = callPackage ../tools/X11/xmagnify { };
|
xmagnify = callPackage ../tools/X11/xmagnify { };
|
||||||
|
Loading…
Reference in New Issue
Block a user