packages/minio-console: 0.12.5 -> 0.13.2
This commit is contained in:
parent
40e4407466
commit
52883b964a
3 changed files with 7 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, tools, ... }:
|
{ config, inputs, lib, pkgs, tools, ... }:
|
||||||
with tools.nginx;
|
with tools.nginx;
|
||||||
let
|
let
|
||||||
addrSplit' = builtins.split ":" config.services.minio.listenAddress;
|
addrSplit' = builtins.split ":" config.services.minio.listenAddress;
|
||||||
|
@ -7,7 +7,7 @@ let
|
||||||
host = if host' == "" then "127.0.0.1" else host';
|
host = if host' == "" then "127.0.0.1" else host';
|
||||||
port = builtins.head (builtins.tail addrSplit);
|
port = builtins.head (builtins.tail addrSplit);
|
||||||
|
|
||||||
minioConsole = pkgs.callPackage ./console.nix {};
|
minioConsole = inputs.self.packages.${pkgs.system}.minio-console;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
reservePortsFor = [ "minioConsole" ];
|
reservePortsFor = [ "minioConsole" ];
|
||||||
|
|
|
@ -24,5 +24,7 @@ in
|
||||||
|
|
||||||
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
|
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
|
||||||
|
|
||||||
|
minio-console = pkgs.callPackage ./servers/minio-console { };
|
||||||
|
|
||||||
privatevoid-smart-card-ca-bundle = pkgs.callPackage ./data/privatevoid-smart-card-certificate-authority-bundle.nix { };
|
privatevoid-smart-card-ca-bundle = pkgs.callPackage ./data/privatevoid-smart-card-certificate-authority-bundle.nix { };
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "minio-console";
|
pname = "minio-console";
|
||||||
version = "0.12.5";
|
version = "0.13.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "minio";
|
owner = "minio";
|
||||||
repo = "console";
|
repo = "console";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-Lyji1V5K8n7NvIqDecbIp1iGPZM4E+XIvexppk5qOZI=";
|
sha256 = "sha256-Ku1k0bm2CIpUVyA7GWCDS76kAukITk1F561wG/cPVxc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-LhDrbkxOlSuYCboAwEZ1ePp2Dl6akxjMvCKFHfPInlU=";
|
vendorSha256 = "sha256-7YPTNzYq9xz+yYIy6ItBgRicBlENLJk2HDRXfVZ74z8=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
}
|
}
|
Loading…
Reference in a new issue