Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
813 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
openssl,
which,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mbuffer";
version = "20250809";
outputs = [
"out"
"man"
];
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${finalAttrs.version}.tgz";
sha256 = "sha256-mGXa5CRSQ3oZrkSEZ4EKA6pG1PJeKZlettbU85xnzR4=";
};
buildInputs = [
openssl
];
nativeBuildInputs = [
which
];
nativeCheckInputs = [
openssl
];
doCheck = true;
strictDeps = true;
meta = {
description = "Tool for buffering data streams with a large set of unique features";
homepage = "https://www.maier-komor.de/mbuffer.html";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.linux; # Maybe other non-darwin Unix
mainProgram = "mbuffer";
};
})