2021-10-04 16:27:57 +00:00
|
|
|
{
|
|
|
|
system ? builtins.currentSystem,
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import ./nix/common.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
pkgs = import pkgsSrc {
|
2021-10-25 15:19:24 +00:00
|
|
|
inherit system;
|
|
|
|
overlays = [ cargo2nixOverlay ];
|
2021-10-04 16:27:57 +00:00
|
|
|
};
|
|
|
|
kaniko = (import ./nix/kaniko.nix) pkgs;
|
2022-03-03 12:34:20 +00:00
|
|
|
winscp = (import ./nix/winscp.nix) pkgs;
|
2021-10-04 16:27:57 +00:00
|
|
|
|
|
|
|
in
|
2022-07-20 12:44:30 +00:00
|
|
|
{
|
2021-10-04 16:27:57 +00:00
|
|
|
|
2022-07-20 12:44:30 +00:00
|
|
|
/* --- Rust Shell ---
|
|
|
|
* Use it to compile Garage
|
|
|
|
*/
|
|
|
|
rust = pkgs.mkShell {
|
|
|
|
shellHook = ''
|
|
|
|
function refresh_toolchain {
|
|
|
|
nix copy \
|
|
|
|
--to 's3://nix?endpoint=garage.deuxfleurs.fr®ion=garage&secret-key=/etc/nix/signing-key.sec' \
|
|
|
|
$(nix-store -qR \
|
|
|
|
$(nix-build --quiet --no-build-output --no-out-link nix/toolchain.nix))
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2022-07-25 16:10:34 +00:00
|
|
|
#pkgs.rustPlatform.rust.rustc
|
2022-07-20 12:44:30 +00:00
|
|
|
pkgs.rustPlatform.rust.cargo
|
2022-07-25 16:10:34 +00:00
|
|
|
#pkgs.clippy
|
2022-07-20 12:44:30 +00:00
|
|
|
pkgs.rustfmt
|
2022-07-25 16:10:34 +00:00
|
|
|
#pkgs.perl
|
|
|
|
#pkgs.protobuf
|
|
|
|
#pkgs.pkg-config
|
|
|
|
#pkgs.openssl
|
2022-07-20 12:44:30 +00:00
|
|
|
pkgs.file
|
2022-07-25 16:10:34 +00:00
|
|
|
#cargo2nix.packages.x86_64-linux.cargo2nix
|
2022-07-20 12:44:30 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* --- Integration shell ---
|
|
|
|
* Use it to test Garage with common S3 clients
|
|
|
|
*/
|
|
|
|
integration = pkgs.mkShell {
|
|
|
|
nativeBuildInputs = [
|
|
|
|
winscp
|
|
|
|
pkgs.s3cmd
|
|
|
|
pkgs.awscli2
|
|
|
|
pkgs.minio-client
|
|
|
|
pkgs.rclone
|
|
|
|
pkgs.socat
|
|
|
|
pkgs.psmisc
|
|
|
|
pkgs.which
|
|
|
|
pkgs.openssl
|
|
|
|
pkgs.curl
|
|
|
|
pkgs.jq
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* --- Release shell ---
|
|
|
|
* A shell built to make releasing easier
|
|
|
|
*/
|
|
|
|
release = pkgs.mkShell {
|
|
|
|
shellHook = ''
|
2021-10-04 16:27:57 +00:00
|
|
|
function to_s3 {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
./result/bin/garage \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/''${DRONE_TAG:-$DRONE_COMMIT}/''${TARGET}/garage
|
|
|
|
}
|
|
|
|
|
|
|
|
function to_docker {
|
|
|
|
executor \
|
|
|
|
--force \
|
|
|
|
--customPlatform="''${DOCKER_PLATFORM}" \
|
|
|
|
--destination "''${CONTAINER_NAME}:''${CONTAINER_TAG}" \
|
|
|
|
--context dir://`pwd` \
|
|
|
|
--verbosity=debug
|
|
|
|
}
|
|
|
|
|
|
|
|
function refresh_index {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 ls \
|
|
|
|
--recursive \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/ \
|
|
|
|
> aws-list.txt
|
|
|
|
|
|
|
|
nix-build nix/build_index.nix
|
|
|
|
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
2022-02-05 18:08:10 +00:00
|
|
|
result/share/_releases.json \
|
|
|
|
s3://garagehq.deuxfleurs.fr/
|
|
|
|
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
result/share/_releases.html \
|
|
|
|
s3://garagehq.deuxfleurs.fr/
|
2021-10-04 16:27:57 +00:00
|
|
|
}
|
2022-07-20 12:44:30 +00:00
|
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgs.awscli2
|
|
|
|
kaniko
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
2021-10-28 08:04:14 +00:00
|
|
|
|
2021-10-04 16:27:57 +00:00
|
|
|
|