summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/bb/bbe/package.nix
blob: 5597c382b51b277695ce0628ca8cdc956a659e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  lib,
  stdenv,
  fetchurl,
  autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "bbe";
  version = "0.2.2";

  src = fetchurl {
    url = "mirror://sourceforge/bbe-/${finalAttrs.version}/bbe-${finalAttrs.version}.tar.gz";
    sha256 = "1nyxdqi4425sffjrylh7gl57lrssyk4018afb7mvrnd6fmbszbms";
  };

  nativeBuildInputs = [ autoreconfHook ];

  outputs = [
    "out"
    "doc"
  ];

  meta = {
    description = "Sed-like editor for binary files";
    homepage = "https://bbe-.sourceforge.net/";
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.hhm ];
    mainProgram = "bbe";
  };
})