mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
35 lines
728 B
Nix
35 lines
728 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, openssl
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mbuffer";
|
|
version = "20240707";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
|
|
sha256 = "sha256-fzkm6S+qgblqMkIPgCiLVfGFBIDyoDLBbtYbUyZ8rgk=";
|
|
};
|
|
|
|
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 = with maintainers; [ ];
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
|
mainProgram = "mbuffer";
|
|
};
|
|
}
|