2021-09-26 05:06:30 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libevdev, udev, acl }:
|
2020-12-17 15:08:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "joycond";
|
2021-09-26 05:06:30 +01:00
|
|
|
version = "unstable-2021-07-30";
|
2020-12-17 15:08:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DanielOgorchock";
|
|
|
|
repo = "joycond";
|
2021-09-26 05:06:30 +01:00
|
|
|
rev = "f9a66914622514c13997c2bf7ec20fa98e9dfc1d";
|
|
|
|
sha256 = "sha256-quw7yBHDDZk1+6uHthsfMCej7g5uP0nIAqzvI6436B8=";
|
2020-12-17 15:08:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ libevdev udev ];
|
|
|
|
|
|
|
|
# CMake has hardcoded install paths
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/{bin,etc/{systemd/system,udev/rules.d},lib/modules-load.d}
|
|
|
|
|
|
|
|
cp ./joycond $out/bin
|
|
|
|
cp $src/udev/{89,72}-joycond.rules $out/etc/udev/rules.d
|
|
|
|
cp $src/systemd/joycond.service $out/etc/systemd/system
|
|
|
|
cp $src/systemd/joycond.conf $out/lib/modules-load.d
|
|
|
|
|
|
|
|
substituteInPlace $out/etc/systemd/system/joycond.service --replace \
|
|
|
|
"ExecStart=/usr/bin/joycond" "ExecStart=$out/bin/joycond"
|
2021-09-26 05:06:30 +01:00
|
|
|
|
|
|
|
substituteInPlace $out/etc/udev/rules.d/89-joycond.rules --replace \
|
|
|
|
"/bin/setfacl" "${acl}/bin/setfacl"
|
2020-12-17 15:08:36 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/DanielOgorchock/joycond";
|
|
|
|
description = "Userspace daemon to combine joy-cons from the hid-nintendo kernel driver";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = [ maintainers.ivar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|