Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pkgs/by-name/ty/typst/build-universe-package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ lib.extendMkDerivation {
RossSmyth
];
license = lib.map (lib.flip lib.getAttr lib.licensesSpdx) license;
generated = true;
}
// lib.optionalAttrs (homepage != null) { inherit homepage; };
};
Expand Down
1 change: 1 addition & 0 deletions pkgs/development/haskell-modules/generic-builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1094,6 +1094,7 @@ lib.fix (

meta = {
inherit homepage platforms;
generated = true;
}
// optionalAttrs (args ? broken) { inherit broken; }
// optionalAttrs (args ? description) { inherit description; }
Expand Down
1 change: 1 addition & 0 deletions pkgs/development/ruby-modules/gem/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ lib.makeOverridable (
# default to Ruby's platforms
platforms = ruby.meta.platforms;
mainProgram = gemName;
generated = true;
}
// meta;
}
Expand Down
5 changes: 5 additions & 0 deletions pkgs/stdenv/generic/check-meta.nix
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,11 @@ let
isIbusEngine = bool;
isGutenprint = bool;

# used to indicate that the package was generated by a script
# ex: haskellPackages, vimPlugins, etc.
# https://github.com/NixOS/nixpkgs/issues/513818
generated = bool;

# Used for the original location of the maintainer and team attributes to assist with pings.
maintainersPosition = any;
teamsPosition = any;
Expand Down
1 change: 1 addition & 0 deletions pkgs/tools/package-management/akku/akkuDerivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ stdenv.mkDerivation (
'';
meta = {
inherit (akku.meta) platforms;
generated = true;
}
// args.meta or { };
setupHook = ./setup-hook.sh;
Expand Down
Loading