Skip to content

Commit cb44e8f

Browse files
committed
rPackages: fix meta.homepage for packages in BiocAnn and BiocExp
1 parent 851c8b9 commit cb44e8f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/development/r-modules/default.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ let
9191
];
9292
};
9393
deriveBiocAnn = mkDerive {
94-
mkHomepage = { name, ... }: "http://www.bioconductor.org/packages/${name}.html";
94+
mkHomepage =
95+
{ name, biocVersion }:
96+
"https://www.bioconductor.org/packages/${biocVersion}/data/annotation/html/${name}.html";
9597
mkUrls =
9698
{
9799
name,
@@ -104,7 +106,9 @@ let
104106
hydraPlatforms = [ ];
105107
};
106108
deriveBiocExp = mkDerive {
107-
mkHomepage = { name, ... }: "http://www.bioconductor.org/packages/${name}.html";
109+
mkHomepage =
110+
{ name, biocVersion }:
111+
"https://www.bioconductor.org/packages/${biocVersion}/data/experiment/html/${name}.html";
108112
mkUrls =
109113
{
110114
name,

0 commit comments

Comments
 (0)