Merge pull request #237950 from bcdarwin/bppsuite-fix-homepage

bppsuite: fix homepage
This commit is contained in:
Mario Rodas
2023-06-16 18:28:27 -05:00
committed by GitHub
5 changed files with 5 additions and 1 deletions
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ bpp-core bpp-seq bpp-phyl bpp-popgen ];
meta = bpp-core.meta // {
homepage = "https://github.com/BioPP/bppsuite";
changelog = "https://github.com/BioPP/bppsuite/blob/master/ChangeLog";
};
}
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;
meta = with lib; {
homepage = "http://biopp.univ-montp2.fr/wiki/index.php/Main_Page";
homepage = "https://github.com/BioPP/bpp-core";
changelog = "https://github.com/BioPP/bpp-core/blob/master/ChangeLog";
description = "C++ bioinformatics libraries and tools";
maintainers = with maintainers; [ bcdarwin ];
@@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;
meta = bpp-core.meta // {
homepage = "https://github.com/BioPP/bpp-phyl";
changelog = "https://github.com/BioPP/bpp-phyl/blob/master/ChangeLog";
};
}
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;
meta = bpp-core.meta // {
homepage = "https://github.com/BioPP/bpp-popgen";
changelog = "https://github.com/BioPP/bpp-popgen/blob/master/ChangeLog";
};
}
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;
meta = bpp-core.meta // {
homepage = "https://github.com/BioPP/bpp-seq";
changelog = "https://github.com/BioPP/bpp-seq/blob/master/ChangeLog";
};
}