2017-08-05 14:38:48 +00:00
|
|
|
{ fetchurl, stdenv, path, cacert, git, rust }:
|
2017-06-15 21:12:31 +00:00
|
|
|
let
|
2017-08-05 14:38:48 +00:00
|
|
|
cargoVendor = import ./cargo-vendor.nix {
|
|
|
|
inherit fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
fetchcargo = import ./fetchcargo.nix {
|
|
|
|
inherit stdenv cacert git rust cargoVendor;
|
|
|
|
};
|
2017-06-15 21:12:31 +00:00
|
|
|
in
|
2017-08-05 14:38:48 +00:00
|
|
|
{ name, cargoSha256
|
2015-05-29 17:35:31 +00:00
|
|
|
, src ? null
|
|
|
|
, srcs ? null
|
|
|
|
, sourceRoot ? null
|
2016-05-28 13:03:59 +00:00
|
|
|
, logLevel ? ""
|
2015-05-29 17:35:31 +00:00
|
|
|
, buildInputs ? []
|
|
|
|
, cargoUpdateHook ? ""
|
2016-12-03 22:36:48 +00:00
|
|
|
, cargoDepsHook ? ""
|
2017-04-15 09:14:55 +00:00
|
|
|
, cargoBuildFlags ? []
|
2015-05-29 17:35:31 +00:00
|
|
|
, ... } @ args:
|
2014-10-10 14:59:37 +00:00
|
|
|
|
|
|
|
let
|
2017-06-14 21:36:27 +00:00
|
|
|
lib = stdenv.lib;
|
|
|
|
|
2017-08-05 14:38:48 +00:00
|
|
|
cargoDeps = fetchcargo {
|
2015-05-29 17:35:31 +00:00
|
|
|
inherit name src srcs sourceRoot cargoUpdateHook;
|
2017-08-05 14:38:48 +00:00
|
|
|
sha256 = cargoSha256;
|
2014-10-10 14:59:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation (args // {
|
2017-08-05 14:38:48 +00:00
|
|
|
inherit cargoDeps;
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2015-04-23 14:37:52 +00:00
|
|
|
patchRegistryDeps = ./patch-registry-deps;
|
|
|
|
|
2016-06-14 10:49:48 +00:00
|
|
|
buildInputs = [ git rust.cargo rust.rustc ] ++ buildInputs;
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2017-04-15 10:42:09 +00:00
|
|
|
configurePhase = args.configurePhase or ''
|
|
|
|
runHook preConfigure
|
|
|
|
# noop
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
2014-10-10 14:59:37 +00:00
|
|
|
|
|
|
|
postUnpack = ''
|
2016-12-03 22:36:48 +00:00
|
|
|
eval "$cargoDepsHook"
|
|
|
|
|
2017-08-05 14:38:48 +00:00
|
|
|
mkdir .cargo
|
|
|
|
cat >.cargo/config <<-EOF
|
|
|
|
[source.crates-io]
|
|
|
|
registry = 'https://github.com/rust-lang/crates.io-index'
|
|
|
|
replace-with = 'vendored-sources'
|
2015-04-23 18:15:47 +00:00
|
|
|
|
2017-08-05 14:38:48 +00:00
|
|
|
[source.vendored-sources]
|
|
|
|
directory = '$cargoDeps'
|
2015-04-23 18:15:47 +00:00
|
|
|
EOF
|
2015-04-23 13:14:34 +00:00
|
|
|
|
2016-05-28 10:46:16 +00:00
|
|
|
export RUST_LOG=${logLevel}
|
2016-05-31 18:30:19 +00:00
|
|
|
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
|
2014-10-10 14:59:37 +00:00
|
|
|
'' + (args.postUnpack or "");
|
|
|
|
|
2017-04-15 09:14:55 +00:00
|
|
|
buildPhase = with builtins; args.buildPhase or ''
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preBuild
|
2017-04-15 09:14:55 +00:00
|
|
|
echo "Running cargo build --release ${concatStringsSep " " cargoBuildFlags}"
|
2017-08-05 14:38:48 +00:00
|
|
|
cargo build --release --frozen ${concatStringsSep " " cargoBuildFlags}
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postBuild
|
2014-10-10 14:59:37 +00:00
|
|
|
'';
|
|
|
|
|
2015-04-21 18:34:26 +00:00
|
|
|
checkPhase = args.checkPhase or ''
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preCheck
|
2015-04-21 18:34:26 +00:00
|
|
|
echo "Running cargo test"
|
|
|
|
cargo test
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postCheck
|
2015-04-21 18:34:26 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = args.doCheck or true;
|
|
|
|
|
2014-10-10 14:59:37 +00:00
|
|
|
installPhase = args.installPhase or ''
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preInstall
|
2014-10-10 14:59:37 +00:00
|
|
|
mkdir -p $out/bin
|
2017-04-15 11:10:29 +00:00
|
|
|
find target/release -maxdepth 1 -executable -exec cp "{}" $out/bin \;
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postInstall
|
2014-10-10 14:59:37 +00:00
|
|
|
'';
|
2017-08-05 14:38:48 +00:00
|
|
|
|
2017-10-26 16:43:17 +00:00
|
|
|
passthru = { inherit cargoDeps; } // (args.passthru or {});
|
2014-10-10 14:59:37 +00:00
|
|
|
})
|