tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
spectre-meltdown-checker: minor cleanup
Peter Hoeg
7 years ago
cd951e39
1d07d8ec
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
spectre-meltdown-checker
default.nix
+6
-2
pkgs/tools/security/spectre-meltdown-checker/default.nix
···
19
19
nativeBuildInputs = [ makeWrapper ];
20
20
21
21
installPhase = with stdenv.lib; ''
22
22
-
install -D spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
22
22
+
runHook preInstall
23
23
+
24
24
+
install -Dm755 spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
23
25
wrapProgram $out/bin/spectre-meltdown-checker \
24
26
--prefix PATH : ${makeBinPath [ binutils-unwrapped ]}
27
27
+
28
28
+
runHook postInstall
25
29
'';
26
30
27
31
meta = with stdenv.lib; {
28
32
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
29
33
homepage = https://github.com/speed47/spectre-meltdown-checker;
30
34
license = licenses.gpl3;
31
31
-
platforms = platforms.linux;
32
35
maintainers = with maintainers; [ dotlambda ];
36
36
+
platforms = platforms.linux;
33
37
};
34
38
}