summary refs log tree commit diff
path: root/pkgs/build-support/rust/default-crate-overrides.nix
blob: f4020ab30964fca97565b6509a79b476effc304e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
  openssl, sqlite, zlib, ... }:

let
  inherit (darwin.apple_sdk.frameworks) CoreFoundation;
in
{
  cargo = attrs: {
    buildInputs = [ openssl zlib curl ]
      ++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv ];
    # TODO: buildRustCrate seems to use incorrect default inference
    crateBin = [ {  name = "cargo"; path = "src/bin/cargo.rs"; } ];
  };
  cargo-vendor = attrs: {
    buildInputs = [ openssl zlib curl ];
    # TODO: this defaults to cargo_vendor; needs to be cargo-vendor to
    # be considered a cargo subcommand.
    crateBin = [ { name = "cargo-vendor"; path = "src/main.rs"; } ];
  };
  curl-sys = attrs: {
    buildInputs = [ pkgconfig curl ];
  };
  libgit2-sys = attrs: {
    LIBGIT2_SYS_USE_PKG_CONFIG = true;
    buildInputs = [ pkgconfig openssl zlib libgit2 ];
  };
  libsqlite3-sys = attrs: {
    buildInputs = [ pkgconfig sqlite ];
  };
  libssh2-sys = attrs: {
    buildInputs = [ pkgconfig openssl zlib libssh2 ];
  };
  openssl = attrs: {
    buildInputs = [ openssl ];
  };
  openssl-sys = attrs: {
    buildInputs = [ pkgconfig openssl ];
  };
}