{ stdenv, fetchurl, openssl, } : stdenv.mkDerivation rec { version = "20171011"; name = "mbuffer-${version}"; src = fetchurl { url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz"; sha256 = "1z6is359dnlf61n6ida9ivghafzz5m8cf4hzdhma8nxv12brfbzb"; }; buildInputs = [ openssl ]; meta = { homepage = http://www.maier-komor.de/mbuffer.html; description = "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 = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix }; }