depot/hosts/VEGAS/services/object-storage/console.nix

18 lines
374 B
Nix
Raw Normal View History

2021-10-16 20:59:06 +03:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "minio-console";
version = "0.12.5";
2021-10-16 20:59:06 +03:00
src = fetchFromGitHub {
owner = "minio";
repo = "console";
rev = "v${version}";
sha256 = "sha256-Lyji1V5K8n7NvIqDecbIp1iGPZM4E+XIvexppk5qOZI=";
2021-10-16 20:59:06 +03:00
};
vendorSha256 = "sha256-LhDrbkxOlSuYCboAwEZ1ePp2Dl6akxjMvCKFHfPInlU=";
2021-10-16 20:59:06 +03:00
doCheck = false;
}