mbuffer: 20240929 -> 20241007

- Move to pkgs/by-name
- Add maintainer
- Split man output
This commit is contained in:
Emery Hemingway 2024-10-30 08:31:56 +00:00
parent c2bdda7b60
commit e5acd64a30
2 changed files with 10 additions and 11 deletions

View File

@ -5,13 +5,14 @@
, which
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "mbuffer";
version = "20240929";
version = "20241007";
outputs = [ "out" "man" ];
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "sha256-77bG3j4kWdI5h3TN1E7Apua4jEEy7eQ9PV4vbBjZpqc=";
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${finalAttrs.version}.tgz";
sha256 = "sha256-nXNjAQtO9FsWRva19QJ7SbtqIJxQL7hOKBx713HVa+0=";
};
buildInputs = [
@ -23,12 +24,12 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with lib; {
meta = {
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
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux; # Maybe other non-darwin Unix
mainProgram = "mbuffer";
};
}
})

View File

@ -9956,8 +9956,6 @@ with pkgs;
mb2md = callPackage ../tools/text/mb2md { };
mbuffer = callPackage ../tools/misc/mbuffer { };
mecab =
let
mecab-nodic = callPackage ../tools/text/mecab/nodic.nix { };