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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper, coreutils, binutils-unwrapped }:
2018-01-14 14:38:36 +00:00
stdenv.mkDerivation rec {
pname = "spectre-meltdown-checker";
2020-11-12 04:32:14 +00:00
version = "0.44";
2018-01-14 14:38:36 +00:00
src = fetchFromGitHub {
owner = "speed47";
repo = "spectre-meltdown-checker";
rev = "v${version}";
2020-11-12 04:32:14 +00:00
sha256 = "1b47wlc52jnp2d5c7kbqnxmlm4g3cfbv25q30llv5mlmzs6d7bam";
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 ];
2021-01-15 09:19:50 +00:00
installPhase = with 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 lib; {
2018-01-14 14:38:36 +00:00
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
homepage = "https://github.com/speed47/spectre-meltdown-checker";
2018-01-14 14:38:36 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ dotlambda ];
platforms = platforms.linux;
2018-01-14 14:38:36 +00:00
};
}