Skip to content
Merged
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
3 changes: 2 additions & 1 deletion pkgs/build-support/fetchnextcloudapp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
description ? null,
homepage ? null,
maintainers ? [ ],
teams ? [ ],
unpack ? false, # whether to use fetchzip rather than fetchurl
}:
applyPatches (
Expand All @@ -27,7 +28,7 @@ applyPatches (
{
license = lib.licenses.${license};
longDescription = description;
inherit homepage maintainers;
inherit homepage maintainers teams;
}
// lib.optionalAttrs (description != null) {
longDescription = description;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/varnish/digest.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Digest and HMAC vmod";
homepage = "https://github.com/varnish/libvmod-digest";
inherit (varnish.meta) license platforms maintainers;
inherit (varnish.meta) license platforms teams;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/varnish/dynamic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ stdenv.mkDerivation {
meta = with lib; {
description = "Dynamic director similar to the DNS director from Varnish 3";
homepage = "https://github.com/nigoroll/libvmod-dynamic";
inherit (varnish.meta) license platforms maintainers;
inherit (varnish.meta) license platforms teams;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/varnish/modules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let
meta = with lib; {
description = "Collection of Varnish Cache modules (vmods) by Varnish Software";
homepage = "https://github.com/varnish/varnish-modules";
inherit (varnish.meta) license platforms maintainers;
inherit (varnish.meta) license platforms teams;
};
};
in
Expand Down