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