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

35 lines
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}";
2018-04-19 06:20:40 +00:00
version = "0.37";
2018-01-14 14:38:36 +00:00
src = fetchFromGitHub {
owner = "speed47";
repo = "spectre-meltdown-checker";
rev = "v${version}";
2018-04-19 06:20:40 +00:00
sha256 = "0g1p12jbraj0q5qpvqnbg5v1jwlcx6h04xz5s7jds51l7gf5f9np";
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; ''
2018-04-19 06:20:40 +00:00
install -D spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
wrapProgram $out/bin/spectre-meltdown-checker \
2018-01-14 14:38:36 +00:00
--prefix PATH : ${makeBinPath [ binutils-unwrapped ]}
'';
meta = with stdenv.lib; {
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
homepage = https://github.com/speed47/spectre-meltdown-checker;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ dotlambda ];
};
}