Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 autoreconfHook, 6}: 7stdenv.mkDerivation rec { 8 pname = "bbe"; 9 version = "0.2.2"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/bbe-/${version}/bbe-${version}.tar.gz"; 13 sha256 = "1nyxdqi4425sffjrylh7gl57lrssyk4018afb7mvrnd6fmbszbms"; 14 }; 15 16 nativeBuildInputs = [ autoreconfHook ]; 17 18 outputs = [ 19 "out" 20 "doc" 21 ]; 22 23 meta = with lib; { 24 description = "Sed-like editor for binary files"; 25 homepage = "https://bbe-.sourceforge.net/"; 26 license = licenses.gpl2Plus; 27 platforms = platforms.all; 28 maintainers = [ maintainers.hhm ]; 29 mainProgram = "bbe"; 30 }; 31}