1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Merge pull request #16511 from tokudan/master

mbuffer: Disable build on Mac OS X and 20151002 -> 20160613
This commit is contained in:
Joachim Fasting 2016-06-26 13:23:59 +02:00 committed by GitHub
commit 47dbe49823

View file

@ -3,12 +3,12 @@
} :
stdenv.mkDerivation rec {
version = "20151002";
version = "20160613";
name = "mbuffer-${version}";
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "04pz70jr7fkdyax7b67g9jr0msl6ff2i8s6fl8zginqz5rrxckqk";
sha256 = "1za9yqfn23axnp4zymdsrjkqcci3wxywqw3bv4dxms57q1ljiab7";
};
buildInputs = [ openssl ];
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "mbuffer is a tool for buffering data streams with a large set of unique features";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ tokudan ];
platforms = with stdenv.lib.platforms; all;
platforms = with stdenv.lib.platforms; allBut darwin;
};
}