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

24 lines
644 B
Nix
Raw Normal View History

2015-10-30 18:23:54 -07:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
2018-01-17 06:08:49 -08:00
version = "20171011";
2015-10-31 14:57:19 -07:00
name = "mbuffer-${version}";
2015-10-30 18:23:54 -07:00
src = fetchurl {
2015-10-31 14:57:19 -07:00
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
2018-01-17 06:08:49 -08:00
sha256 = "1z6is359dnlf61n6ida9ivghafzz5m8cf4hzdhma8nxv12brfbzb";
2015-10-30 18:23:54 -07:00
};
buildInputs = [ openssl ];
meta = {
homepage = http://www.maier-komor.de/mbuffer.html;
2017-08-27 07:15:39 -07:00
description = "A tool for buffering data streams with a large set of unique features";
2015-10-30 18:23:54 -07:00
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ tokudan ];
platforms = with stdenv.lib.platforms; allBut darwin;
2015-10-30 18:23:54 -07:00
};
}