tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xlibinput_calibrator: init at 0.11
Atemu
2 years ago
e7f2aff5
937a9d1e
+44
2 changed files
expand all
collapse all
unified
split
pkgs
tools
inputmethods
xlibinput_calibrator
default.nix
top-level
all-packages.nix
+42
pkgs/tools/inputmethods/xlibinput_calibrator/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, libX11
5
5
+
, libXi
6
6
+
, libXrandr
7
7
+
, txt2man
8
8
+
}:
9
9
+
10
10
+
stdenv.mkDerivation rec {
11
11
+
pname = "xlibinput-calibrator";
12
12
+
version = "0.11";
13
13
+
14
14
+
src = fetchFromGitHub {
15
15
+
owner = "kreijack";
16
16
+
repo = "xlibinput_calibrator";
17
17
+
rev = "v${version}";
18
18
+
hash = "sha256-MvlamN8WSER0zN9Ru3Kr2MFARD9s7PYKkRtyD8s6ZPI=";
19
19
+
};
20
20
+
21
21
+
nativeBuildInputs = [
22
22
+
txt2man
23
23
+
];
24
24
+
25
25
+
buildInputs = [
26
26
+
libX11
27
27
+
libXi
28
28
+
libXrandr
29
29
+
];
30
30
+
31
31
+
installFlags = [ "prefix=$(out)" ];
32
32
+
33
33
+
enableParallelBuilding = true;
34
34
+
35
35
+
meta = with lib; {
36
36
+
description = "Touch calibrator for libinput";
37
37
+
homepage = "https://github.com/kreijack/xlibinput_calibrator";
38
38
+
changelog = "https://github.com/kreijack/xlibinput_calibrator/blob/${src.rev}/Changelog";
39
39
+
license = with licenses; [ mit ];
40
40
+
maintainers = with maintainers; [ atemu ];
41
41
+
};
42
42
+
}
+2
pkgs/top-level/all-packages.nix
···
39612
39612
39613
39613
xlayoutdisplay = callPackage ../tools/X11/xlayoutdisplay { };
39614
39614
39615
39615
+
xlibinput-calibrator = callPackage ../tools/inputmethods/xlibinput_calibrator { };
39616
39616
+
39615
39617
xlog = callPackage ../applications/radio/xlog { };
39616
39618
39617
39619
xmagnify = callPackage ../tools/X11/xmagnify { };