ea7e4b3486
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
33 lines
889 B
Nix
33 lines
889 B
Nix
{ stdenv, lib, fetchFromGitLab, pkg-config, libyamlcpp, libevdev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dual-function-keys";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "interception/linux/plugins";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "07hksca4g7v4zsvhmhc9j725j3n63fzrkx9sb4a0wrd7rwgr25rz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libevdev libyamlcpp ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace config.mk --replace \
|
|
'/usr/include/libevdev-1.0' \
|
|
"$(pkg-config --cflags libevdev | cut -c 3-)"
|
|
'';
|
|
|
|
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/interception/linux/plugins/dual-function-keys";
|
|
description = "Tap for one key, hold for another.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ svend ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|