mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
b99389f02d
Co-authored-by: Yohann Boniface <edhyjox@gmail.com> Co-authored-by: Arne Keller <2012gdwu+github@posteo.de> Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
39 lines
777 B
Nix
39 lines
777 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libX11,
|
|
libXi,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xautocfg";
|
|
version = "1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SFTtech";
|
|
repo = "xautocfg";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-NxfuBknNRicmEAPBeMaNb57gpM0y0t+JmNMKpSNzlQM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXi
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"MANPREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/SFTtech/xautocfg";
|
|
description = "Automatic keyboard repeat rate configuration for new keyboards";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ jceb ];
|
|
mainProgram = "xautocfg";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|