python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bbe / default.nix
blob5cd7326d7b17c119636892ddaae3e76517c3a435
1 { lib, stdenv , fetchurl, autoreconfHook }:
2 stdenv.mkDerivation rec {
3   pname = "bbe";
4   version = "0.2.2";
6   src = fetchurl {
7     url = "mirror://sourceforge/bbe-/${version}/bbe-${version}.tar.gz";
8     sha256 = "1nyxdqi4425sffjrylh7gl57lrssyk4018afb7mvrnd6fmbszbms";
9   };
11   nativeBuildInputs = [ autoreconfHook ];
13   outputs = [ "out" "doc" ];
15   meta = with lib; {
16     description = "A sed-like editor for binary files";
17     homepage = "http://bbe-.sourceforge.net/";
18     license = licenses.gpl2Plus;
19     platforms = platforms.all;
20     maintainers = [ maintainers.hhm ];
21   };