65bc378de8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from mbuffer
24 lines
660 B
Nix
24 lines
660 B
Nix
{ stdenv, fetchurl,
|
|
openssl,
|
|
} :
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20180625";
|
|
name = "mbuffer-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
|
|
sha256 = "174m3zbm0qb68p1qng1vldcs23s7qjhyf7d39sw3r03m7y7f5g5p";
|
|
};
|
|
|
|
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
|
|
};
|
|
}
|