nixpkgs/pkgs/tools/misc/mbuffer/default.nix
R. RyanTM dc98a1a61b mbuffer: 20190127 -> 20190725
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
2019-08-04 12:07:10 -07:00

24 lines
660 B
Nix

{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
version = "20190725";
name = "mbuffer-${version}";
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "1hjhyh3q0q22czq3s2wk5mcky1jrq9xw8fppw6r7cix1riq74m91";
};
buildInputs = [ openssl ];
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
};
}