git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
606 B
Nix
23 lines
606 B
Nix
{ lib, stdenv , fetchurl, autoreconfHook }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "bbe";
|
|
version = "0.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bbe-/${version}/bbe-${version}.tar.gz";
|
|
sha256 = "1nyxdqi4425sffjrylh7gl57lrssyk4018afb7mvrnd6fmbszbms";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
meta = with lib; {
|
|
description = "Sed-like editor for binary files";
|
|
homepage = "https://bbe-.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.hhm ];
|
|
mainProgram = "bbe";
|
|
};
|
|
}
|