2015-05-29 20:10:36 +01:00
|
|
|
{ stdenv, fetchurl, libelf, txt2man }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bin_replace_string";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "0.2";
|
2015-05-29 20:10:36 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "1gnpddxwpsfrg4l76x5yplsvbcdbviybciqpn22yq3g3qgnr5c2a";
|
|
|
|
url = "ftp://ohnopub.net/mirror/bin_replace_string-0.2.tar.bz2";
|
|
|
|
};
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
buildInputs = [ libelf ];
|
|
|
|
nativeBuildInputs = [ txt2man ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-29 20:10:36 +01:00
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ohnopub.net/~ohnobinki/bin_replace_string/";
|
|
|
|
downloadPage = "ftp://ohnopub.net/mirror/";
|
2015-05-29 20:10:36 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2015-11-18 10:33:50 +00:00
|
|
|
platforms = platforms.linux;
|
2015-05-29 20:10:36 +01:00
|
|
|
};
|
|
|
|
}
|