colmena/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

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
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
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 ./.;
};
cargoSha256 = "sha256-rJnPo8xmasRNOYttDuG80QqfKyeEcl7gn85dvYgeOpw=";
2021-02-11 20:55:45 +01:00
nativeBuildInputs = [ installShellFiles ];
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-02-11 20:55:45 +01:00
# 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";
2021-12-07 00:08:09 +01:00
homepage = "https://zhaofengli.github.io/colmena/${passthru.apiVersion}";
license = licenses.mit;
maintainers = with maintainers; [ zhaofengli ];
platforms = platforms.linux ++ platforms.darwin;
};
2020-12-18 10:57:32 +01:00
}