2022-05-26 22:56:59 +03:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib, pins }:
|
2021-10-16 20:59:06 +03:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "minio-console";
|
2022-05-26 22:56:59 +03:00
|
|
|
version = builtins.substring 1 (-1) pins.minio-console.version;
|
2021-10-16 20:59:06 +03:00
|
|
|
|
2022-05-26 22:56:59 +03:00
|
|
|
src = pins.minio-console;
|
2021-10-16 20:59:06 +03:00
|
|
|
|
2022-03-08 21:40:55 +02:00
|
|
|
vendorSha256 = "sha256-h1yIpn5XF7+UeSr1hZEUcKro634zrObvE1ies8yVeGE=";
|
2021-10-16 20:59:06 +03:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|