nixpkgs/pkgs/tools/X11/xinput_calibrator/default.nix

25 lines
841 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libXi, inputproto, autoconf, automake, libtool, m4, xlibsWrapper, pkgconfig }:
2014-08-24 22:16:24 +02:00
stdenv.mkDerivation rec {
2018-05-28 14:59:57 +02:00
pname = "xinput_calibrator";
2014-08-24 22:16:24 +02:00
version = "0.7.5";
2018-05-28 14:59:57 +02:00
name = "${pname}-${version}";
2014-08-24 22:16:24 +02:00
src = fetchurl {
2018-05-28 14:59:57 +02:00
url = "https://github.com/tias/${pname}/archive/v${version}.tar.gz";
2014-08-24 22:16:24 +02:00
sha256 = "d8edbf84523d60f52311d086a1e3ad0f3536f448360063dd8029bf6290aa65e9";
};
preConfigure = "./autogen.sh --with-gui=X11";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ inputproto libXi autoconf automake libtool m4 xlibsWrapper ];
2014-08-24 22:16:24 +02:00
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 ];
platforms = stdenv.lib.platforms.linux;
2014-08-24 22:16:24 +02:00
};
}