Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pkgs/development/haskell-modules/generic-builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ in
libraryFrameworkDepends ? [ ],
executableFrameworkDepends ? [ ],
homepage ? "https://hackage.haskell.org/package/${pname}",
platforms ? with lib.platforms; all, # GHC can cross-compile
platforms ? lib.platforms.all, # GHC can cross-compile
badPlatforms ? lib.platforms.none,
hydraPlatforms ? null,
hyperlinkSource ? true,
isExecutable ? false,
isLibrary ? !isExecutable,
jailbreak ? false,
license,
license ? null,
enableParallelBuilding ? true,
maintainers ? null,
teams ? null,
Expand Down Expand Up @@ -1031,10 +1031,11 @@ lib.fix (
};

meta = {
inherit homepage license platforms;
inherit homepage platforms;
}
// optionalAttrs (args ? broken) { inherit broken; }
// optionalAttrs (args ? description) { inherit description; }
// optionalAttrs (args ? license) { inherit license; }
// optionalAttrs (args ? maintainers) { inherit maintainers; }
// optionalAttrs (args ? teams) { inherit teams; }
// optionalAttrs (args ? hydraPlatforms) { inherit hydraPlatforms; }
Expand Down
Loading