quartus: formatting fixes from review

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Kai Wohlfahrt 2021-05-30 11:07:31 +01:00 committed by GitHub
parent b1c5fd83bb
commit 778c776ab6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 9 deletions

View file

@ -1,6 +1,7 @@
{ stdenv, lib, buildFHSUserEnv, callPackage, makeDesktopItem, writeScript,
supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] ,
unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; } }:
{ stdenv, lib, buildFHSUserEnv, callPackage, makeDesktopItem, writeScript
, supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ]
, unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; }
}:
let
desktopItem = makeDesktopItem {

View file

@ -1,5 +1,6 @@
{ stdenv, lib, unstick, requireFile,
supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ] }:
{ stdenv, lib, unstick, requireFile
, supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ]
}:
let
deviceIds = {
@ -85,12 +86,12 @@ in stdenv.mkDerivation rec {
rm -r $out/uninstall $out/logs
'';
meta = {
meta = with lib; {
inherit homepage;
description = "FPGA design and simulation software";
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
license = licenses.unfree;
platforms = platforms.linux;
hydraPlatforms = [ ]; # requireFile srcs cannot be fetched by hydra, ignore
maintainers = with lib.maintainers; [ kwohlfahrt ];
maintainers = with maintainers; [ kwohlfahrt ];
};
}