summary refs log tree commit diff
path: root/pkgs/tools/misc/mbuffer/default.nix
blob: 356818369311a02851d98a91dc93f3f947c13c53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl,
	openssl,
 } :

stdenv.mkDerivation rec {
  name = "mbuffer-20151012";

  src = fetchurl {
    url = "http://www.maier-komor.de/software/mbuffer/mbuffer-20151002.tgz";
    sha256 = "04pz70jr7fkdyax7b67g9jr0msl6ff2i8s6fl8zginqz5rrxckqk";
  };

  buildInputs = [ openssl ];

  meta = {
    homepage = http://www.maier-komor.de/mbuffer.html;
    description  = "mbuffer is 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 = with stdenv.lib.platforms; all;
  };
}