firectl: unstable-2022-07-12 -> 0.2.0

This commit is contained in:
xrelkd 2023-03-28 19:06:04 +08:00
parent 98f3b08f58
commit 85613c34bb
No known key found for this signature in database
GPG Key ID: BAB7A457C1D1D6B3

View File

@ -1,19 +1,20 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "firectl";
# The latest upstream 0.1.0 is incompatible with firecracker
# v0.1.0. See issue: https://github.com/firecracker-microvm/firectl/issues/82
version = "unstable-2022-07-12";
version = "0.2.0";
src = fetchFromGitHub {
owner = "firecracker-microvm";
repo = pname;
rev = "ec72798240c0561dea8341d828e8c72bb0cc36c5";
sha256 = "sha256-RAl1DaeMR7eYYwqVAvm6nib5gEGaM/t7TR8u1IpqOIM=";
rev = "v${version}";
hash = "sha256-3MNNgFRq4goWdHFyqWNMAl2K0eKfd03BF05i82FIzNE=";
};
vendorSha256 = "sha256-dXAJOifRtzcTyGzUTFu9+daGAlL/5dQSwcjerkZDuKA=";
vendorHash = "sha256-rD+QCQKgCZU5ktItV8NYqoyQPR7lk8sutvJwSJxFfZQ=";
doCheck = false;