nixpkgs/pkgs/tools/misc/bbe/default.nix
2019-02-13 23:53:59 -05:00

23 lines
596 B
Nix

{ 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 ];
};
}