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

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

34 lines
709 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";
2022-07-31 22:41:14 +00:00
version = "20220418";
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";
2022-07-31 22:41:14 +00:00
sha256 = "sha256-blgB+fX/EURdHQMCi1oDzQivVAhpe3+UxCeDMiijAMc=";
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;
maintainers = with maintainers; [ tokudan ];
platforms = platforms.linux; # Maybe other non-darwin Unix
2015-10-31 01:23:54 +00:00
};
}