Add bin_replace_string: edit precompiled binaries
This commit is contained in:
parent
d904b54c0e
commit
21015ea82f
33
pkgs/development/tools/misc/bin_replace_string/default.nix
Normal file
33
pkgs/development/tools/misc/bin_replace_string/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchurl, libelf, txt2man }:
|
||||
|
||||
let version = "0.2"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bin_replace_string-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "1gnpddxwpsfrg4l76x5yplsvbcdbviybciqpn22yq3g3qgnr5c2a";
|
||||
url = "ftp://ohnopub.net/mirror/bin_replace_string-0.2.tar.bz2";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
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 = with platforms; linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
||||
buildInputs = [ libelf ];
|
||||
nativeBuildInputs = [ txt2man ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
}
|
@ -5109,6 +5109,8 @@ let
|
||||
|
||||
bazel = callPackage ../development/tools/build-managers/bazel { jdk = oraclejdk8; };
|
||||
|
||||
bin_replace_string = callPackage ../development/tools/misc/bin_replace_string { };
|
||||
|
||||
binutils = if stdenv.isDarwin
|
||||
then import ../build-support/native-darwin-cctools-wrapper {inherit stdenv;}
|
||||
else callPackage ../development/tools/misc/binutils {
|
||||
|
Loading…
Reference in New Issue
Block a user