nixpkgs/pkgs/tools/security/spectre-meltdown-checker/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2018-01-21 14:53:35 +00:00
{ stdenv, fetchFromGitHub, makeWrapper, coreutils, binutils-unwrapped }:
2018-01-14 14:38:36 +00:00
stdenv.mkDerivation rec {
name = "spectre-meltdown-checker-${version}";
2019-05-27 13:46:23 +00:00
version = "0.42";
2018-01-14 14:38:36 +00:00
src = fetchFromGitHub {
owner = "speed47";
repo = "spectre-meltdown-checker";
rev = "v${version}";
2019-05-27 13:46:23 +00:00
sha256 = "0pppf844i7b72hqnmfvq72w5y7b6dxd16y29l6j84maf22zxbjni";
2018-01-14 14:38:36 +00:00
};
prePatch = ''
substituteInPlace spectre-meltdown-checker.sh \
2018-01-14 21:50:42 +00:00
--replace /bin/echo ${coreutils}/bin/echo
2018-01-14 14:38:36 +00:00
'';
nativeBuildInputs = [ makeWrapper ];
installPhase = with stdenv.lib; ''
runHook preInstall
install -Dm755 spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
2018-04-19 06:20:40 +00:00
wrapProgram $out/bin/spectre-meltdown-checker \
2018-01-14 14:38:36 +00:00
--prefix PATH : ${makeBinPath [ binutils-unwrapped ]}
runHook postInstall
2018-01-14 14:38:36 +00:00
'';
meta = with stdenv.lib; {
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
homepage = https://github.com/speed47/spectre-meltdown-checker;
license = licenses.gpl3;
maintainers = with maintainers; [ dotlambda ];
platforms = platforms.linux;
2018-01-14 14:38:36 +00:00
};
}