2020-05-20 03:19:00 +00:00
|
|
|
{ pkgs ? import ./nix {
|
2020-05-24 11:11:37 +00:00
|
|
|
overlays = [ (import ./nix/overlay.nix) ];
|
|
|
|
}
|
|
|
|
, ofborgCrates ? import ./Cargo.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
release = pkgs.stdenv.isDarwin;
|
|
|
|
}
|
2020-05-20 03:19:00 +00:00
|
|
|
}:
|
2018-12-04 20:35:33 +00:00
|
|
|
|
2020-05-24 11:11:37 +00:00
|
|
|
let
|
2021-05-16 16:44:18 +00:00
|
|
|
inherit (ofborgCrates.workspaceMembers) ofborg-simple-build ofborg;
|
2018-12-04 20:35:33 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2020-05-24 11:11:37 +00:00
|
|
|
inherit ofborgCrates;
|
|
|
|
|
|
|
|
ofborg.simple-build = ofborg-simple-build.build;
|
2020-04-25 12:32:42 +00:00
|
|
|
|
2021-05-16 16:44:18 +00:00
|
|
|
ofborg.rs = pkgs.runCommand "ofborg-rs-symlink-compat" { src = ofborg.build; } ''
|
2018-05-04 15:41:44 +00:00
|
|
|
mkdir -p $out/bin
|
|
|
|
for f in $(find $src -type f); do
|
|
|
|
bn=$(basename "$f")
|
|
|
|
ln -s "$f" "$out/bin/$bn"
|
|
|
|
|
|
|
|
# Rust 1.n? or Cargo starting outputting bins with dashes
|
|
|
|
# instead of underscores ... breaking all the callers.
|
|
|
|
if echo "$bn" | grep -q "-"; then
|
|
|
|
ln -s "$f" "$out/bin/$(echo "$bn" | tr '-' '_')"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
test -e $out/bin/builder
|
|
|
|
test -e $out/bin/github_comment_filter
|
|
|
|
test -e $out/bin/github_comment_poster
|
|
|
|
test -e $out/bin/log_message_collector
|
|
|
|
test -e $out/bin/evaluation_filter
|
2018-08-07 20:21:42 +00:00
|
|
|
|
|
|
|
# Verify that the outpath contains the version number matching the
|
|
|
|
# Cargo.toml
|
2020-05-24 11:11:37 +00:00
|
|
|
if ! grep -q 'version = "${ofborg.build.crateVersion}"' ${./ofborg/Cargo.toml}; then
|
2018-08-07 20:21:42 +00:00
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-04 20:35:33 +00:00
|
|
|
Build failed because you bumped the Cargo
|
2020-05-24 11:24:00 +00:00
|
|
|
version without regenerating the Cargo.nix.
|
2018-08-07 20:21:42 +00:00
|
|
|
|
2018-12-04 20:35:33 +00:00
|
|
|
Run:
|
2018-08-07 20:21:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-24 11:24:00 +00:00
|
|
|
nix-shell --run ./nix/update-crates.sh
|
2018-08-07 20:21:42 +00:00
|
|
|
|
|
|
|
|
2018-12-04 20:35:33 +00:00
|
|
|
and commit those changes.
|
2018-08-07 20:21:42 +00:00
|
|
|
|
|
|
|
|
2018-12-04 20:35:33 +00:00
|
|
|
EOF
|
2018-08-07 20:21:42 +00:00
|
|
|
fi
|
2018-05-04 15:41:44 +00:00
|
|
|
'';
|
2018-02-03 23:34:43 +00:00
|
|
|
|
2018-08-08 17:28:14 +00:00
|
|
|
ofborg.php = import ./php { inherit pkgs; };
|
2017-11-30 03:32:33 +00:00
|
|
|
}
|