crc: 2.13.1 -> 2.14.0

This commit is contained in:
Matthew Penner 2023-02-21 10:32:27 -07:00
parent ffdae3d386
commit a65c82e332
No known key found for this signature in database

View file

@ -10,22 +10,22 @@
}: }:
let let
openShiftVersion = "4.12.0"; openShiftVersion = "4.12.1";
okdVersion = "4.11.0-0.okd-2022-11-05-030711"; okdVersion = "4.11.0-0.okd-2022-11-05-030711";
podmanVersion = "4.3.1"; podmanVersion = "4.3.1";
writeKey = "cvpHsNcmGCJqVzf6YxrSnVlwFSAZaYtp"; writeKey = "cvpHsNcmGCJqVzf6YxrSnVlwFSAZaYtp";
in in
buildGoModule rec { buildGoModule rec {
version = "2.13.1"; version = "2.14.0";
pname = "crc"; pname = "crc";
gitCommit = "b5b864fdd4ed047027f439db96c2658aa194d2bc"; gitCommit = "868d96cd4f73dad72df54475c52c65f9741dc240";
modRoot = "cmd/crc"; modRoot = "cmd/crc";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "crc-org"; owner = "crc-org";
repo = "crc"; repo = "crc";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-0e62mQ01pt0kClrEx4ss2T8BN1+0aQiCFPyDg5agbTU"; sha256 = "sha256-q1OJJTveXoNzW9lohQOY7LVR3jOyiQZX5nHBgRupxTM=";
}; };
vendorSha256 = null; vendorSha256 = null;
@ -55,7 +55,6 @@ buildGoModule rec {
export HOME=$(mktemp -d) export HOME=$(mktemp -d)
''; '';
passthru.tests.version = testers.testVersion { passthru.tests.version = testers.testVersion {
package = crc; package = crc;
command = '' command = ''
@ -69,6 +68,6 @@ buildGoModule rec {
description = "Manages a local OpenShift 4.x cluster or a Podman VM optimized for testing and development purposes"; description = "Manages a local OpenShift 4.x cluster or a Podman VM optimized for testing and development purposes";
homepage = "https://crc.dev"; homepage = "https://crc.dev";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ shikanime tricktron ]; maintainers = with maintainers; [ matthewpi shikanime tricktron ];
}; };
} }