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: 16a43e45874f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 62922af2084e
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 8, 2017

  1. minio: 20170613 -> 2017-09-29T19-16-56Z

    The test was updated as minio now needs at least 1 GiB of free disk,
    otherwise it won't start.
    bachp committed Oct 8, 2017
    Copy the full SHA
    1983e6c View commit details
  2. Merge pull request #29994 from bachp/minio-update

    minio: 20170613 -> 2017-09-29T19-16-56Z
    Mic92 authored Oct 8, 2017
    Copy the full SHA
    62922af View commit details
Showing with 9 additions and 8 deletions.
  1. +3 −1 nixos/tests/minio.nix
  2. +6 −7 pkgs/servers/minio/default.nix
4 changes: 3 additions & 1 deletion nixos/tests/minio.nix
Original file line number Diff line number Diff line change
@@ -12,6 +12,9 @@ import ./make-test.nix ({ pkgs, ...} : {
secretKey = "V7f1CwQqAcwo80UEIJEjc5gVQUSSx5ohQ9GSrr12";
};
environment.systemPackages = [ pkgs.minio-client ];

# Minio requires at least 1GiB of free disk space to run.
virtualisation.diskSize = 4 * 1024;
};
};

@@ -20,7 +23,6 @@ import ./make-test.nix ({ pkgs, ...} : {
startAll;
$machine->waitForUnit("minio.service");
$machine->waitForOpenPort(9000);
$machine->succeed("curl --fail http://localhost:9000/minio/index.html");
# Create a test bucket on the server
$machine->succeed("mc config host add minio http://localhost:9000 BKIKJAA5BMMU2RHO6IBB V7f1CwQqAcwo80UEIJEjc5gVQUSSx5ohQ9GSrr12 S3v4");
13 changes: 6 additions & 7 deletions pkgs/servers/minio/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{ lib, stdenv, fetchurl, go }:

stdenv.mkDerivation rec {
name = "minio-${shortVersion}";
name = "minio-${version}";

shortVersion = "20170613";
longVersion = "2017-06-13T19-01-01Z";
version = "2017-09-29T19-16-56Z";

src = fetchurl {
url = "https://github.com/minio/minio/archive/RELEASE.${lib.replaceStrings [":"] ["-"] longVersion}.tar.gz";
sha256 = "1rrlgn0nsvfn0lr9ffihjdb96n4znsvjlz1h7bwvz8nwhbn0lfsf";
url = "https://github.com/minio/minio/archive/RELEASE.${version}.tar.gz";
sha256 = "1h028gyfvyh5x6k4fsj4s64sgzqy7jgln6kvs27bnxzigj6dp2wx";
};

buildInputs = [ go ];
@@ -24,15 +23,15 @@ stdenv.mkDerivation rec {
buildPhase = ''
mkdir -p $out/bin
go build -o $out/bin/minio \
--ldflags "-X github.com/minio/minio/cmd.Version=${longVersion}"
--ldflags "-X github.com/minio/minio/cmd.Version=${version}"
'';

installPhase = "true";

meta = {
homepage = https://www.minio.io/;
description = "An S3-compatible object storage server";
maintainers = [ lib.maintainers.eelco ];
maintainers = with lib.maintainers; [ eelco bachp ];
platforms = lib.platforms.x86_64;
license = lib.licenses.asl20;
};