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

24 lines
795 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libXi, xorgproto, autoconf, automake, libtool, m4, xlibsWrapper, pkg-config }:
2014-08-24 20:16:24 +00:00
stdenv.mkDerivation rec {
2018-05-28 12:59:57 +00:00
pname = "xinput_calibrator";
2014-08-24 20:16:24 +00:00
version = "0.7.5";
src = fetchurl {
2018-05-28 12:59:57 +00:00
url = "https://github.com/tias/${pname}/archive/v${version}.tar.gz";
2014-08-24 20:16:24 +00:00
sha256 = "d8edbf84523d60f52311d086a1e3ad0f3536f448360063dd8029bf6290aa65e9";
};
preConfigure = "./autogen.sh --with-gui=X11";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xorgproto libXi autoconf automake libtool m4 xlibsWrapper ];
2014-08-24 20:16:24 +00:00
meta = {
homepage = "https://github.com/tias/xinput_calibrator";
2014-08-24 20:16:24 +00:00
description = "A generic touchscreen calibration program for X.Org";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.flosse ];
platforms = lib.platforms.linux;
2014-08-24 20:16:24 +00:00
};
}