bin_replace_string: remove

This commit is contained in:
Ben Siraphob 2022-01-07 13:44:21 +07:00
parent e62da01a80
commit 05745bdae3
No known key found for this signature in database
GPG key ID: 45F0E5D788143267
3 changed files with 1 additions and 33 deletions

View file

@ -1,31 +0,0 @@
{ lib, stdenv, fetchurl, libelf, txt2man }:
stdenv.mkDerivation {
pname = "bin_replace_string";
version = "0.2";
src = fetchurl {
sha256 = "1gnpddxwpsfrg4l76x5yplsvbcdbviybciqpn22yq3g3qgnr5c2a";
url = "ftp://ohnopub.net/mirror/bin_replace_string-0.2.tar.bz2";
};
buildInputs = [ libelf ];
nativeBuildInputs = [ txt2man ];
enableParallelBuilding = true;
meta = with lib; {
description = "Edit precompiled binaries";
longDescription = ''
bin_replace_string edits C-style strings in precompiled binaries. This is
intended to be useful to replace arbitrary strings in binaries whose
source code is not available. However, because of the nature of compiled
binaries, bin_replace_string may only replace a given C-string with a
shorter C-string.
'';
homepage = "http://ohnopub.net/~ohnobinki/bin_replace_string/";
downloadPage = "ftp://ohnopub.net/mirror/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}

View file

@ -83,6 +83,7 @@ mapAliases ({
beret = throw "beret has been removed"; # added 2021-11-16
blastem = throw "blastem has been removed from nixpkgs as it would still require python2."; # added 2022-01-01
bluezFull = bluez; # Added 2019-12-03
bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # added 2022-01-07
bpftool = bpftools; # Added 2021-05-03
brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # added 2021-01-24
bridge_utils = bridge-utils; # added 2015-02-20

View file

@ -14231,8 +14231,6 @@ with pkgs;
stdenv;
};
bin_replace_string = callPackage ../development/tools/misc/bin_replace_string { };
bingrep = callPackage ../development/tools/analysis/bingrep { };
binutils-unwrapped = callPackage ../development/tools/misc/binutils {