about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/bbe/default.nix
blob: ecff2459ef2634b22a175830386d2cfafd0af788 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv , fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
  name = "bbe-${version}";
  version = "0.2.2";

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

  nativeBuildInputs = [ autoreconfHook ];

  outputs = [ "out" "doc" ];

  meta = with stdenv.lib; {
    description = "A sed-like editor for binary files";
    homepage = "http://bbe-.sourceforge.net/";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.hhm ];
  };
}