mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
11 lines
186 B
Nix
11 lines
186 B
Nix
{ pkgconfig, sqlite, openssl, ... }:
|
|
|
|
{
|
|
libsqlite3-sys = attrs: {
|
|
buildInputs = [ pkgconfig sqlite ];
|
|
};
|
|
openssl-sys = attrs: {
|
|
buildInputs = [ pkgconfig openssl ];
|
|
};
|
|
}
|