mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
hotpatch: init at 0.2
This commit is contained in:
parent
82af1cbf2c
commit
977c8e673c
37
pkgs/development/libraries/hotpatch/default.nix
Normal file
37
pkgs/development/libraries/hotpatch/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hotpatch-0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vikasnkumar";
|
||||
repo = "hotpatch";
|
||||
rev = "4b65e3f275739ea5aa798d4ad083c4cb10e29149";
|
||||
sha256 = "169vdh55wsbn6fl58lpzqx64v6ifzh7krykav33x1d9hsk98qjqh";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
doCheck = true;
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace test/loader.c \
|
||||
--replace \"/lib64/ld-linux-x86-64.so.2 \""$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||
--replace \"/lib/ld-linux-x86-64.so.2 \""$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||
--replace \"/lib/ld-linux.so.2 \""$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||
--replace \"/lib32/ld-linux.so.2 \""$(cat $NIX_CC/nix-support/dynamic-linker)"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
LD_LIBRARY_PATH=$(pwd)/src make test
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Hot patching executables on Linux using .so file injection";
|
||||
homepage = src.meta.homepage;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.gnidorah ];
|
||||
platforms = ["i686-linux" "x86_64-linux"];
|
||||
};
|
||||
}
|
@ -2593,6 +2593,8 @@ with pkgs;
|
||||
|
||||
host = bind.host;
|
||||
|
||||
hotpatch = callPackage ../development/libraries/hotpatch { };
|
||||
|
||||
hotspot = libsForQt56.callPackage ../development/tools/analysis/hotspot { };
|
||||
|
||||
hping = callPackage ../tools/networking/hping { };
|
||||
|
Loading…
Reference in New Issue
Block a user