This commit is contained in:
Lucy von Overheidt 2025-09-12 21:13:22 +02:00
parent 96a0525a9f
commit ffcba7c509
2 changed files with 16 additions and 4 deletions

View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
nixpkgs.overlays = [
(final: prev: {
libevdev = prev.libevdev.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ prev.pkg-config ];
});
})
];
}