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

24 lines
660 B
Nix
Raw Normal View History

2015-10-31 01:23:54 +00:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
version = "20180318";
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";
sha256 = "1sh0ipf77aav1k17dgl9dcjlb17zygs07x01g0nn0cg7yw5y5hfk";
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 = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
2015-10-31 01:23:54 +00:00
};
}