nixpkgs/pkgs/tools/misc/mbuffer/default.nix

24 lines
650 B
Nix
Raw Normal View History

2015-10-31 02:23:54 +01:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
version = "20190725";
pname = "mbuffer";
2015-10-31 02:23:54 +01:00
src = fetchurl {
2015-10-31 22:57:19 +01:00
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "1hjhyh3q0q22czq3s2wk5mcky1jrq9xw8fppw6r7cix1riq74m91";
2015-10-31 02:23:54 +01:00
};
buildInputs = [ openssl ];
meta = {
homepage = http://www.maier-komor.de/mbuffer.html;
2017-08-27 16:15:39 +02:00
description = "A tool for buffering data streams with a large set of unique features";
2015-10-31 02:23:54 +01:00
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ tokudan ];
platforms = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
2015-10-31 02:23:54 +01:00
};
}