2022-04-04 02:16:01 +02:00
|
|
|
{ lib, stdenv, rustPlatform, installShellFiles, nix-eval-jobs }:
|
2022-01-21 09:45:12 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "colmena";
|
2023-05-15 07:05:08 +02:00
|
|
|
version = "0.5.0-pre";
|
2022-01-21 09:45:12 +01:00
|
|
|
|
|
|
|
src = lib.cleanSourceWith {
|
|
|
|
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" "integration-tests" ]);
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
};
|
|
|
|
|
2022-06-02 10:57:17 +02:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
};
|
2022-01-21 09:45:12 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2022-04-04 02:16:01 +02:00
|
|
|
buildInputs = [ nix-eval-jobs ];
|
2022-01-23 02:50:53 +01:00
|
|
|
|
2022-04-04 02:16:01 +02:00
|
|
|
NIX_EVAL_JOBS = "${nix-eval-jobs}/bin/nix-eval-jobs";
|
2022-01-23 02:50:53 +01:00
|
|
|
|
2022-03-08 07:02:04 +01:00
|
|
|
preBuild = ''
|
|
|
|
if [[ -z "$NIX_EVAL_JOBS" ]]; then
|
|
|
|
unset NIX_EVAL_JOBS
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2022-01-21 09:45:12 +01:00
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
|
|
installShellCompletion --cmd colmena \
|
|
|
|
--bash <($out/bin/colmena gen-completions bash) \
|
|
|
|
--zsh <($out/bin/colmena gen-completions zsh) \
|
|
|
|
--fish <($out/bin/colmena gen-completions fish)
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Recursive Nix is not stable yet
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
# We guarantee CLI and Nix API stability for the same minor version
|
|
|
|
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A simple, stateless NixOS deployment tool";
|
2022-05-09 02:41:17 +02:00
|
|
|
homepage = "https://colmena.cli.rs/${passthru.apiVersion}";
|
2022-01-21 09:45:12 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zhaofengli ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|