File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments