nixpkgs/pkgs/tools/misc/mbuffer/default.nix

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

35 lines
730 B
Nix
Raw Normal View History

2021-11-28 12:59:46 +03:00
{ lib
, stdenv
, fetchurl
, openssl
, which
}:
2015-10-31 04:23:54 +03:00
stdenv.mkDerivation rec {
pname = "mbuffer";
2024-01-23 18:02:43 +03:00
version = "20240107";
2015-10-31 04:23:54 +03:00
src = fetchurl {
2015-11-01 00:57:19 +03:00
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
2024-01-23 18:02:43 +03:00
sha256 = "sha256-14YG4X3ZAmpTI21ezAenAgLSZC0X49kHRxzbWKBFiBQ=";
2015-10-31 04:23:54 +03:00
};
2021-11-28 12:59:46 +03:00
buildInputs = [
openssl
2022-12-04 23:12:19 +03:00
];
nativeBuildInputs = [
2021-11-28 12:59:46 +03:00
which
];
doCheck = true;
2015-10-31 04:23:54 +03:00
2021-11-28 12:59:46 +03:00
meta = with lib; {
2017-08-27 17:15:39 +03:00
description = "A tool for buffering data streams with a large set of unique features";
2021-11-28 12:59:46 +03:00
homepage = "https://www.maier-komor.de/mbuffer.html";
license = licenses.gpl3Only;
2024-04-27 03:10:24 +03:00
maintainers = with maintainers; [ ];
2021-11-28 12:59:46 +03:00
platforms = platforms.linux; # Maybe other non-darwin Unix
2023-11-27 04:17:53 +03:00
mainProgram = "mbuffer";
2015-10-31 04:23:54 +03:00
};
}