default-crate-overrides.nix: add graphene-sys

This commit is contained in:
Adam Joseph 2023-01-13 16:43:39 +00:00 committed by GitHub
parent e40de94c42
commit 9297b5382f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@
, libsodium
, postgresql
, gmp
, gobject-introspection
, foundationdb
, capnproto
, nettle
@ -33,6 +34,7 @@
, udev
, libevdev
, alsa-lib
, graphene
, ...
}:
@ -171,6 +173,11 @@ in
buildInputs = [ udev ];
};
graphene-sys = attrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ graphene gobject-introspection ];
};
nettle-sys = attrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ nettle clang ];