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

25 lines
670 B
Nix
Raw Normal View History

2015-10-31 02:23:54 +01:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
2020-05-22 09:22:24 +02:00
version = "20200505";
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";
2020-05-22 09:22:24 +02:00
sha256 = "02qzy3appah0llg6aa71isl2a5nc93bkzy5r4d682lcy2j1n216c";
2015-10-31 02:23:54 +01:00
};
buildInputs = [ openssl ];
doCheck = true;
2015-10-31 02:23:54 +01:00
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
};
}