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

24 lines
660 B
Nix
Raw Normal View History

2015-10-31 02:23:54 +01:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
version = "20181119";
2015-10-31 22:57:19 +01:00
name = "mbuffer-${version}";
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";
sha256 = "1pysnvq03g3w4npw15cykgd0n7nj7lmv655szav4802pz1dgywj7";
2015-10-31 02:23:54 +01:00
};
buildInputs = [ openssl ];
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
};
}