2019-07-24 20:26:13 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, file, findutils
|
|
|
|
, binutils-unwrapped, glibc, coreutils, sysctl, openssl
|
|
|
|
}:
|
2014-02-19 11:48:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-24 20:26:13 +01:00
|
|
|
pname = "checksec";
|
2019-08-17 21:09:21 +01:00
|
|
|
version = "2.1.0";
|
2016-02-26 17:26:03 +00:00
|
|
|
|
2019-07-24 20:26:13 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "slimm609";
|
|
|
|
repo = "checksec.sh";
|
|
|
|
rev = version;
|
2019-08-17 21:09:21 +01:00
|
|
|
sha256 = "00s4qg4h9s9vi46jyw7lz36lb5i8h3s9cmicnngp17764xgkr916";
|
2014-02-19 11:48:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./0001-attempt-to-modprobe-config-before-checking-kernel.patch ];
|
2019-07-24 20:26:13 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2014-02-19 11:48:46 +00:00
|
|
|
|
2019-07-24 20:26:13 +01:00
|
|
|
installPhase = let
|
|
|
|
path = stdenv.lib.makeBinPath [
|
|
|
|
findutils file binutils-unwrapped sysctl openssl
|
|
|
|
];
|
|
|
|
in ''
|
2014-02-19 11:48:46 +00:00
|
|
|
mkdir -p $out/bin
|
2019-07-24 20:26:13 +01:00
|
|
|
install checksec $out/bin
|
2015-04-26 18:54:51 +01:00
|
|
|
substituteInPlace $out/bin/checksec --replace /lib/libc.so.6 ${glibc.out}/lib/libc.so.6
|
2015-04-05 20:13:26 +01:00
|
|
|
substituteInPlace $out/bin/checksec --replace "/usr/bin/id -" "${coreutils}/bin/id -"
|
2019-07-24 20:26:13 +01:00
|
|
|
wrapProgram $out/bin/checksec \
|
|
|
|
--prefix PATH : ${path}
|
2014-02-19 11:48:46 +00:00
|
|
|
'';
|
|
|
|
|
2019-07-24 20:26:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-19 11:48:46 +00:00
|
|
|
description = "A tool for checking security bits on executables";
|
2014-03-02 11:51:49 +00:00
|
|
|
homepage = "http://www.trapkit.de/tools/checksec.html";
|
2019-07-24 20:26:13 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice globin ];
|
2014-02-19 11:48:46 +00:00
|
|
|
};
|
|
|
|
}
|