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