flake: add a hack to fix build not finding libevdev/libevdev.h
This commit is contained in:
parent
df0c3657b4
commit
468c4bd474
11
flake.nix
11
flake.nix
@ -11,18 +11,23 @@
|
||||
version = "0.1";
|
||||
src = self;
|
||||
nativeBuildInputs = [zig.hook];
|
||||
buildInputs = [libevdev];
|
||||
buildInputs = [libevdev pkg-config];
|
||||
buildPhase = ''
|
||||
NIX_CFLAGS_COMPILE="-isystem $(pkg-config --variable=includedir libevdev)/libevdev-1.0 $NIX_CFLAGS_COMPILE"
|
||||
'';
|
||||
};
|
||||
|
||||
devShells.x86_64-linux.default = with import nixpkgs {system = "x86_64-linux";};
|
||||
mkShell {
|
||||
nativeBuildInputs = [zig];
|
||||
buildInputs = [
|
||||
libevdev
|
||||
zig
|
||||
pkg-config
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
echo "happy hacking!"
|
||||
NIX_CFLAGS_COMPILE="-isystem $(pkg-config --variable=includedir libevdev)/libevdev-1.0 $NIX_CFLAGS_COMPILE"
|
||||
echo "happy hacking!"
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user