meow
This commit is contained in:
parent
96a0525a9f
commit
ffcba7c509
2 changed files with 16 additions and 4 deletions
10
packages/fix-pkg-config.nix
Normal file
10
packages/fix-pkg-config.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
libevdev = prev.libevdev.overrideAttrs (old: {
|
||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ prev.pkg-config ];
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue