biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / X11 / xinput_calibrator / default.nix
blobaee42ac6a092260b888257ca6093a21786d63585
1 { lib, stdenv, fetchFromGitHub, libXi, xorgproto, autoconf, automake, libtool, m4, pkg-config, xorg }:
3 stdenv.mkDerivation rec {
4   pname = "xinput_calibrator";
5   version = "0.7.5";
7   src = fetchFromGitHub {
8     owner = "tias";
9     repo = "xinput_calibrator";
10     rev = "v${version}";
11     sha256 = "5ZkNw+CKNUcPt1PY5PLzB/OT2wcf5n3UcaQlmMcwRVE=";
12   };
14   preConfigure = "./autogen.sh --with-gui=X11";
16   nativeBuildInputs = [ pkg-config autoconf automake ];
17   buildInputs = [ xorgproto libXi libtool m4 xorg.libX11 xorg.libXext ];
19   meta = {
20     homepage = "https://github.com/tias/xinput_calibrator";
21     description = "Generic touchscreen calibration program for X.Org";
22     license = lib.licenses.mit;
23     maintainers = [ lib.maintainers.flosse ];
24     platforms = lib.platforms.linux;
25     mainProgram = "xinput_calibrator";
26   };