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