forked from mirrors/nixpkgs
added xinput_calibrator v0.7.5
This commit is contained in:
parent
11345b7844
commit
2053c7d8be
21
pkgs/tools/X11/xinput_calibrator/default.nix
Normal file
21
pkgs/tools/X11/xinput_calibrator/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, libXi, inputproto, autoconf, automake, libtool, m4, x11, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.7.5";
|
||||
name = "xinput_calibrator";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/tias/${name}/archive/v${version}.tar.gz";
|
||||
sha256 = "d8edbf84523d60f52311d086a1e3ad0f3536f448360063dd8029bf6290aa65e9";
|
||||
};
|
||||
|
||||
preConfigure = "./autogen.sh --with-gui=X11";
|
||||
|
||||
buildInputs = [ inputproto libXi autoconf automake libtool m4 x11 pkgconfig ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/tias/xinput_calibrator;
|
||||
description = "A generic touchscreen calibration program for X.Org";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.flosse ];
|
||||
};
|
||||
}
|
|
@ -11474,6 +11474,10 @@ let
|
|||
|
||||
xboxdrv = callPackage ../misc/drivers/xboxdrv { };
|
||||
|
||||
xinput_calibrator = callPackage ../tools/X11/xinput_calibrator {
|
||||
inherit (xlibs) libXi inputproto;
|
||||
};
|
||||
|
||||
xosd = callPackage ../misc/xosd { };
|
||||
|
||||
xsane = callPackage ../applications/graphics/sane/xsane.nix {
|
||||
|
|
Loading…
Reference in a new issue