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
nativeBuildInputs = [ makeWrapper ];
20
21
installPhase = with stdenv.lib; ''
22
-
install -D spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
0
0
23
wrapProgram $out/bin/spectre-meltdown-checker \
24
--prefix PATH : ${makeBinPath [ binutils-unwrapped ]}
0
0
25
'';
26
27
meta = with stdenv.lib; {
28
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
29
homepage = https://github.com/speed47/spectre-meltdown-checker;
30
license = licenses.gpl3;
31
-
platforms = platforms.linux;
32
maintainers = with maintainers; [ dotlambda ];
0
33
};
34
}
···
19
nativeBuildInputs = [ makeWrapper ];
20
21
installPhase = with stdenv.lib; ''
22
+
runHook preInstall
23
+
24
+
install -Dm755 spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker
25
wrapProgram $out/bin/spectre-meltdown-checker \
26
--prefix PATH : ${makeBinPath [ binutils-unwrapped ]}
27
+
28
+
runHook postInstall
29
'';
30
31
meta = with stdenv.lib; {
32
description = "Spectre & Meltdown vulnerability/mitigation checker for Linux";
33
homepage = https://github.com/speed47/spectre-meltdown-checker;
34
license = licenses.gpl3;
0
35
maintainers = with maintainers; [ dotlambda ];
36
+
platforms = platforms.linux;
37
};
38
}