Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 05f8b1f5bb9a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e79bc5953210
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 28, 2019

  1. Copy the full SHA
    3abe87d View commit details
  2. Merge pull request #72024 from bachp/minio-2019-10-12

    minio: 2019-02-26T19-51-46Z -> 2019-10-12T01-39-57Z
    mmahut authored Oct 28, 2019
    Copy the full SHA
    e79bc59 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/servers/minio/default.nix
10 changes: 5 additions & 5 deletions pkgs/servers/minio/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "minio";
version = "2019-02-26T19-51-46Z";
version = "2019-10-12T01-39-57Z";

src = fetchFromGitHub {
owner = "minio";
repo = "minio";
rev = "RELEASE.${version}";
sha256 = "1f2c7wzcb47msb0iqrcc0idz39wdm9fz61q835ks1nx4qs6hi2db";
sha256 = "14rqwdhk2awdpcavkaqndf85c6aww5saarbfa2skc9z76ccq6114";
};

goPackagePath = "github.com/minio/minio";
modSha256 = "1cnccmmqb63l78rnjwh9bivyfr79ixjg106fbgcrn3pwghfag7ma";

subPackages = [ "." ];