2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, file, findutils
|
2019-07-24 20:26:13 +01:00
|
|
|
, 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";
|
2020-10-29 11:12:50 +00:00
|
|
|
version = "2.4.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;
|
2020-10-29 11:12:50 +00:00
|
|
|
sha256 = "1gbbq85d3g3mnm3xvgvi2085aba7qc3cmsbwn76al50ax1518j2q";
|
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
|
2021-01-15 14:45:37 +00:00
|
|
|
path = lib.makeBinPath [
|
2019-07-24 20:26:13 +01:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-02-19 11:48:46 +00:00
|
|
|
description = "A tool for checking security bits on executables";
|
2021-01-17 11:46:56 +00:00
|
|
|
homepage = "https://www.trapkit.de/tools/checksec/";
|
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
|
|
|
};
|
|
|
|
}
|