summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2021-01-31 19:06:36 +0100
committerGitHub <noreply@github.com>2021-01-31 19:06:36 +0100
commit93519c773652ee7d5300aae32b5d8aa6508b4e67 (patch)
tree78c791ab6c5dbe0789324a1bd835e71db3f6d7d0
parenta17a03e6a73861eb499f2496280b0ea1b1d6ddc0 (diff)
parent56bf82e8a149f5b5cb535845a78352e53e2afaa1 (diff)
Merge pull request #111484 from markuskowa/fix-molden
molden: fix outdated URLs
-rw-r--r--pkgs/applications/science/chemistry/molden/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/science/chemistry/molden/default.nix b/pkgs/applications/science/chemistry/molden/default.nix
index 32e8f6ee56e2..9595639d381e 100644
--- a/pkgs/applications/science/chemistry/molden/default.nix
+++ b/pkgs/applications/science/chemistry/molden/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
pname = "molden";
src = fetchurl {
- url = "ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden${version}.tar.gz";
+ url = "ftp://ftp.cmbi.umcn.nl/pub/molgraph/molden/molden${version}.tar.gz";
sha256 = "02qi16pz2wffn3cc47dpjqhfafzwfmb79waw4nnhfyir8a4h3cq1";
};
@@ -31,10 +31,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Display and manipulate molecular structures";
- homepage = "http://www.cmbi.ru.nl/molden/";
+ homepage = "http://www3.cmbi.umcn.nl/molden/";
license = {
fullName = "Free for academic/non-profit use";
- url = "http://www.cmbi.ru.nl/molden/CopyRight.html";
+ url = "http://www3.cmbi.umcn.nl/molden/CopyRight.html";
free = false;
};
platforms = platforms.linux;