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

24 lines
644 B
Nix
Raw Normal View History

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