Merge pull request #190613 from amjoseph-nixpkgs/pr/build-rust-crate/atk

This commit is contained in:
Artturi 2022-12-27 19:49:40 +02:00 committed by GitHub
commit f93a244d7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{ lib { lib
, stdenv , stdenv
, atk
, pkg-config , pkg-config
, curl , curl
, darwin , darwin
@ -263,4 +264,10 @@ in
xcb = attrs: { xcb = attrs: {
buildInputs = [ python3 ]; buildInputs = [ python3 ];
}; };
atk-sys = attrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ atk ];
};
} }