mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
090c2e489a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/checksec/versions
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, file, findutils
|
|
, binutils-unwrapped, glibc, coreutils, sysctl, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "checksec";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slimm609";
|
|
repo = "checksec.sh";
|
|
rev = version;
|
|
sha256 = "00s4qg4h9s9vi46jyw7lz36lb5i8h3s9cmicnngp17764xgkr916";
|
|
};
|
|
|
|
patches = [ ./0001-attempt-to-modprobe-config-before-checking-kernel.patch ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = let
|
|
path = stdenv.lib.makeBinPath [
|
|
findutils file binutils-unwrapped sysctl openssl
|
|
];
|
|
in ''
|
|
mkdir -p $out/bin
|
|
install checksec $out/bin
|
|
substituteInPlace $out/bin/checksec --replace /lib/libc.so.6 ${glibc.out}/lib/libc.so.6
|
|
substituteInPlace $out/bin/checksec --replace "/usr/bin/id -" "${coreutils}/bin/id -"
|
|
wrapProgram $out/bin/checksec \
|
|
--prefix PATH : ${path}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool for checking security bits on executables";
|
|
homepage = "http://www.trapkit.de/tools/checksec.html";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ thoughtpolice globin ];
|
|
};
|
|
}
|