472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
34 lines
710 B
Nix
34 lines
710 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, openssl
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mbuffer";
|
|
version = "20240929";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
|
|
sha256 = "sha256-77bG3j4kWdI5h3TN1E7Apua4jEEy7eQ9PV4vbBjZpqc=";
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
nativeBuildInputs = [
|
|
which
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for buffering data streams with a large set of unique features";
|
|
homepage = "https://www.maier-komor.de/mbuffer.html";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
|
mainProgram = "mbuffer";
|
|
};
|
|
}
|