lol

spectre-meltdown-checker: minor cleanup

+6 -2
+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 23 wrapProgram $out/bin/spectre-meltdown-checker \ 24 --prefix PATH : ${makeBinPath [ binutils-unwrapped ]} 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 ]; 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; 35 maintainers = with maintainers; [ dotlambda ]; 36 + platforms = platforms.linux; 37 }; 38 }