xautocfg: init at 1.2 (#335733)
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>
This commit is contained in:
parent
cbac36aa93
commit
b99389f02d
38
pkgs/by-name/xa/xautocfg/package.nix
Normal file
38
pkgs/by-name/xa/xautocfg/package.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user