3
0
Fork 0
forked from mirrors/nixpkgs
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}";
version = "0.36";
2018-01-14 14:38:36 +00:00
src = fetchFromGitHub {
owner = "speed47";
repo = "spectre-meltdown-checker";
rev = "v${version}";
sha256 = "0pcw300hizzm130d0ip7j0ivf53sjlv6qzsdk9l68bj2lpx9n3kd";
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; ''
install -Dt $out/lib spectre-meltdown-checker.sh
makeWrapper $out/lib/spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker \
--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 ];
};
}