quartus: formatting fixes from review

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Kai Wohlfahrt
Sandro
and committed by
GitHub
778c776a b1c5fd83

+11 -9
+4 -3
pkgs/applications/editors/quartus-prime/default.nix
··· 1 - { stdenv, lib, buildFHSUserEnv, callPackage, makeDesktopItem, writeScript, 2 - supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] , 3 - unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; } }: 4 5 let 6 desktopItem = makeDesktopItem {
··· 1 + { stdenv, lib, buildFHSUserEnv, callPackage, makeDesktopItem, writeScript 2 + , supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] 3 + , unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; } 4 + }: 5 6 let 7 desktopItem = makeDesktopItem {
+7 -6
pkgs/applications/editors/quartus-prime/quartus.nix
··· 1 - { stdenv, lib, unstick, requireFile, 2 - supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] }: 3 4 let 5 deviceIds = { ··· 85 rm -r $out/uninstall $out/logs 86 ''; 87 88 - meta = { 89 inherit homepage; 90 description = "FPGA design and simulation software"; 91 - license = lib.licenses.unfree; 92 - platforms = lib.platforms.linux; 93 hydraPlatforms = [ ]; # requireFile srcs cannot be fetched by hydra, ignore 94 - maintainers = with lib.maintainers; [ kwohlfahrt ]; 95 }; 96 }
··· 1 + { stdenv, lib, unstick, requireFile 2 + , supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] 3 + }: 4 5 let 6 deviceIds = { ··· 86 rm -r $out/uninstall $out/logs 87 ''; 88 89 + meta = with lib; { 90 inherit homepage; 91 description = "FPGA design and simulation software"; 92 + license = licenses.unfree; 93 + platforms = platforms.linux; 94 hydraPlatforms = [ ]; # requireFile srcs cannot be fetched by hydra, ignore 95 + maintainers = with maintainers; [ kwohlfahrt ]; 96 }; 97 }