1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/build-support/rust/default-crate-overrides.nix
2017-12-12 04:58:45 -06:00

11 lines
186 B
Nix

{ pkgconfig, sqlite, openssl, ... }:
{
libsqlite3-sys = attrs: {
buildInputs = [ pkgconfig sqlite ];
};
openssl-sys = attrs: {
buildInputs = [ pkgconfig openssl ];
};
}