mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, bash, coreutils, gdb, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "procdump";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Microsoft";
|
|
repo = "ProcDump-for-Linux";
|
|
rev = version;
|
|
sha256 = "1pcf6cpslpazla0na0q680dih9wb811q5irr7d2zmw0qmxm33jw2";
|
|
};
|
|
|
|
nativeBuildInputs = [ zlib ];
|
|
buildInputs = [ bash coreutils gdb ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/CoreDumpWriter.c \
|
|
--replace '"gcore ' '"${gdb}/bin/gcore ' \
|
|
--replace '"rm ' '"${coreutils}/bin/rm ' \
|
|
--replace '/bin/bash' '${bash}/bin/bash'
|
|
'';
|
|
|
|
makeFlags = [
|
|
"DESTDIR=${placeholder "out"}"
|
|
"INSTALLDIR=/bin"
|
|
"MANDIR=/share/man/man1"
|
|
];
|
|
|
|
doCheck = false; # needs sudo root
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
set +o pipefail
|
|
($out/bin/procdump -h | grep "ProcDump v${version}") ||
|
|
(echo "ERROR: ProcDump is not the expected version or does not run properly" ; exit 1)
|
|
set -o pipefail
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Linux version of the ProcDump Sysinternals tool";
|
|
homepage = "https://github.com/Microsoft/ProcDump-for-Linux";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ c0bw3b ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|