nixpkgs/pkgs/tools/misc/mbuffer/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

35 lines
710 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 = [ ];
platforms = platforms.linux; # Maybe other non-darwin Unix
mainProgram = "mbuffer";
};
}