nixpkgs/pkgs/tools/misc/mbuffer/default.nix
R. RyanTM aa8ca80e36 mbuffer: 20190725 -> 20191016 (#71691)
* mbuffer: 20190725 -> 20191016

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mbuffer/versions

* mbuffer: run check phase
2019-10-23 17:45:45 +02:00

25 lines
670 B
Nix

{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
version = "20191016";
pname = "mbuffer";
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "05xyvmbs2x5gbj2njgg7hsj3alb5dh96xhab0w0qkhb58x2i1hld";
};
buildInputs = [ openssl ];
doCheck = true;
meta = {
homepage = "http://www.maier-komor.de/mbuffer.html";
description = "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 = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
};
}