From 8abdc92c8c0b44e1ea4a4e58cd15448473fe9dd5 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Sun, 14 May 2023 23:27:01 -0600 Subject: [PATCH] colmena: 0.3.2 -> 0.4.0 --- pkgs/tools/admin/colmena/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/admin/colmena/default.nix b/pkgs/tools/admin/colmena/default.nix index aed2febd702..ceb544753b2 100644 --- a/pkgs/tools/admin/colmena/default.nix +++ b/pkgs/tools/admin/colmena/default.nix @@ -3,16 +3,16 @@ rustPlatform.buildRustPackage rec { pname = "colmena"; - version = "0.3.2"; + version = "0.4.0"; src = fetchFromGitHub { owner = "zhaofengli"; repo = "colmena"; rev = "v${version}"; - sha256 = "sha256-F/Jl1GqSp08fw7PCHiv/ijn/pAP1YOStIhHws291s7A="; + sha256 = "sha256-01bfuSY4gnshhtqA1EJCw2CMsKkAx+dHS+sEpQ2+EAQ="; }; - cargoSha256 = "sha256-9HQLSbzHNJRHhGffE0JC9e+CLuUV/xreiv5qc8dH+rU="; + cargoSha256 = "sha256-rk2atWWJIR95duUXxAiARegjeCyfAsqTDwEr5P0eIr8="; nativeBuildInputs = [ installShellFiles ]; @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "A simple, stateless NixOS deployment tool"; - homepage = "https://zhaofengli.github.io/colmena/${passthru.apiVersion}"; + homepage = "https://colmena.cli.rs/${passthru.apiVersion}"; license = licenses.mit; maintainers = with maintainers; [ zhaofengli ]; platforms = platforms.linux ++ platforms.darwin;