lol

spectre-meltdown-checker: minor cleanup

+6 -2
+6 -2
pkgs/tools/security/spectre-meltdown-checker/default.nix
··· 19 19 nativeBuildInputs = [ makeWrapper ]; 20 20 21 21 installPhase = with stdenv.lib; '' 22 - install -D spectre-meltdown-checker.sh $out/bin/spectre-meltdown-checker 22 + runHook preInstall 23 + 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 + 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 - platforms = platforms.linux; 32 35 maintainers = with maintainers; [ dotlambda ]; 36 + platforms = platforms.linux; 33 37 }; 34 38 }