depot/third_party/nixpkgs/pkgs/tools/misc/mbuffer/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

34 lines
730 B
Nix

{ lib
, stdenv
, fetchurl
, openssl
, which
}:
stdenv.mkDerivation rec {
pname = "mbuffer";
version = "20240107";
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "sha256-14YG4X3ZAmpTI21ezAenAgLSZC0X49kHRxzbWKBFiBQ=";
};
buildInputs = [
openssl
];
nativeBuildInputs = [
which
];
doCheck = true;
meta = with lib; {
description = "A tool for buffering data streams with a large set of unique features";
homepage = "https://www.maier-komor.de/mbuffer.html";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ];
platforms = platforms.linux; # Maybe other non-darwin Unix
mainProgram = "mbuffer";
};
}