nixpkgs/pkgs/tools/inputmethods/keyd/default.nix

79 lines
1.5 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, systemd
, runtimeShell
, python3
, nixosTests
}:
let
version = "2.4.3";
src = fetchFromGitHub {
owner = "rvaiya";
repo = "keyd";
rev = "v" + version;
hash = "sha256-NhZnFIdK0yHgFR+rJm4cW+uEhuQkOpCSLwlXNQy6jas=";
};
pypkgs = python3.pkgs;
appMap = pypkgs.buildPythonApplication rec {
pname = "keyd-application-mapper";
inherit version src;
format = "other";
postPatch = ''
substituteInPlace scripts/${pname} \
--replace /bin/sh ${runtimeShell}
'';
propagatedBuildInputs = with pypkgs; [ xlib ];
dontBuild = true;
installPhase = ''
install -Dm555 -t $out/bin scripts/${pname}
'';
meta.mainProgram = "keyd-application-mapper";
};
in
stdenv.mkDerivation {
pname = "keyd";
inherit version src;
postPatch = ''
substituteInPlace Makefile \
--replace /usr ""
substituteInPlace keyd.service \
--replace /usr/bin $out/bin
'';
installFlags = [ "DESTDIR=${placeholder "out"}" ];
buildInputs = [ systemd ];
enableParallelBuilding = true;
# post-2.4.2 may need this to unbreak the test
# makeFlags = [ "SOCKET_PATH/run/keyd/keyd.socket" ];
postInstall = ''
ln -sf ${lib.getExe appMap} $out/bin/${appMap.pname}
rm -rf $out/etc
'';
passthru.tests.keyd = nixosTests.keyd;
meta = with lib; {
description = "A key remapping daemon for Linux";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}