nixpkgs/pkgs/by-name/g8/g810-led/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

55 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, hidapi
, profile ? "/etc/g810-led/profile"
}:
stdenv.mkDerivation (finalAttrs: {
pname = "g810-led";
version = "0.4.3";
src = fetchFromGitHub {
owner = "MatMoul";
repo = "g810-led";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-GKHtQ7DinqfhclDdPO94KtTLQhhonAoWS4VOvs6CMhY=";
};
postPatch = ''
substituteInPlace udev/g810-led.rules \
--replace "/usr" $out \
--replace "/etc/g810-led/profile" "${profile}"
'';
# GCC 13 cannot find `uint16_t` and other similar types by default anymore
env.CXXFLAGS = "-include cstdint";
buildInputs = [
hidapi
];
installPhase = ''
runHook preInstall
install -D bin/g810-led $out/bin/g810-led
# See https://github.com/MatMoul/g810-led#compatible-keyboards-
for keyboard in {g213,g410,g413,g512,g513,g610,g815,g910,gpro}; do
ln -s \./g810-led $out/bin/$keyboard-led
done
install -D udev/g810-led.rules $out/etc/udev/rules.d/90-g810-led.rules
runHook postInstall
'';
meta = with lib; {
description = "Linux LED controller for some Logitech G Keyboards";
homepage = "https://github.com/MatMoul/g810-led";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
};
})