2021-06-29 10:02:43 +02:00
|
|
|
let
|
|
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
|
|
lockedPkgs = import (fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
|
|
|
|
sha256 = lock.nodes.nixpkgs.locked.narHash;
|
|
|
|
}) {};
|
|
|
|
in {
|
|
|
|
pkgs ? lockedPkgs,
|
2020-12-16 05:58:39 +01:00
|
|
|
}: let
|
2021-12-06 21:26:19 +01:00
|
|
|
inherit (pkgs) lib stdenv rustPlatform installShellFiles;
|
2021-11-18 22:15:20 +01:00
|
|
|
in rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "colmena";
|
2021-11-19 00:41:39 +01:00
|
|
|
version = "0.3.0-pre";
|
2020-12-18 10:57:32 +01:00
|
|
|
|
2021-01-24 23:08:48 +01:00
|
|
|
src = lib.cleanSourceWith {
|
2021-11-22 10:52:35 +01:00
|
|
|
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" "integration-tests" ]);
|
2021-11-18 07:33:30 +01:00
|
|
|
src = lib.cleanSource ./.;
|
2021-01-24 23:08:48 +01:00
|
|
|
};
|
2021-08-26 22:21:18 +02:00
|
|
|
|
2022-01-03 19:37:03 +01:00
|
|
|
cargoSha256 = "sha256-rJnPo8xmasRNOYttDuG80QqfKyeEcl7gn85dvYgeOpw=";
|
2021-02-11 20:55:45 +01:00
|
|
|
|
2021-12-06 21:26:19 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-03-23 22:14:04 +01:00
|
|
|
|
2021-12-06 21:26:19 +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)
|
2021-03-23 22:14:04 +01:00
|
|
|
'';
|
|
|
|
|
2021-02-11 20:55:45 +01:00
|
|
|
# Recursive Nix is not stable yet
|
|
|
|
doCheck = false;
|
2021-11-19 00:41:02 +01:00
|
|
|
|
2021-12-06 21:26:19 +01:00
|
|
|
passthru = {
|
|
|
|
# We guarantee CLI and Nix API stability for the same minor version
|
|
|
|
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
|
|
|
};
|
|
|
|
|
2021-11-19 00:41:02 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A simple, stateless NixOS deployment tool";
|
2021-12-07 00:08:09 +01:00
|
|
|
homepage = "https://zhaofengli.github.io/colmena/${passthru.apiVersion}";
|
2021-11-19 00:41:02 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zhaofengli ];
|
2022-01-02 01:41:35 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-11-19 00:41:02 +01:00
|
|
|
};
|
2020-12-18 10:57:32 +01:00
|
|
|
}
|