Skip to content

Commit b99389f

Browse files
jcebSigmanificientFliegendeWurstAleksanaa
authored
xautocfg: init at 1.2 (#335733)
Co-authored-by: Yohann Boniface <[email protected]> Co-authored-by: Arne Keller <[email protected]> Co-authored-by: Aleksana <[email protected]>
1 parent cbac36a commit b99389f

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
lib,
3+
stdenv,
4+
fetchFromGitHub,
5+
libX11,
6+
libXi,
7+
}:
8+
9+
stdenv.mkDerivation (finalAttrs: {
10+
pname = "xautocfg";
11+
version = "1.2";
12+
13+
src = fetchFromGitHub {
14+
owner = "SFTtech";
15+
repo = "xautocfg";
16+
rev = "refs/tags/v${finalAttrs.version}";
17+
hash = "sha256-NxfuBknNRicmEAPBeMaNb57gpM0y0t+JmNMKpSNzlQM=";
18+
};
19+
20+
buildInputs = [
21+
libX11
22+
libXi
23+
];
24+
25+
makeFlags = [
26+
"PREFIX=${placeholder "out"}"
27+
"MANPREFIX=${placeholder "out"}"
28+
];
29+
30+
meta = {
31+
homepage = "https://github.com/SFTtech/xautocfg";
32+
description = "Automatic keyboard repeat rate configuration for new keyboards";
33+
license = lib.licenses.gpl3Only;
34+
maintainers = with lib.maintainers; [ jceb ];
35+
mainProgram = "xautocfg";
36+
platforms = lib.platforms.linux;
37+
};
38+
})

0 commit comments

Comments
 (0)