about summary refs log tree commit diff
path: root/pkgs/development/libraries/libdap
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-10-10 09:27:50 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2018-10-10 18:27:50 +0200
commite79623115f1ad5736154f7ef36b21cac84eab29b (patch)
treee0317fcc9b655e3c210cbf761f3d3dbfd42bdc3f /pkgs/development/libraries/libdap
parent29d0eec15faa315b45bbae08f43ac40e7cb2b4aa (diff)
libdap: 3.19.1 -> 3.20.0
* libdap: 3.19.1 -> 3.20.0 (#47785)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libdap/versions

* libdap: homepage has moved
Diffstat (limited to 'pkgs/development/libraries/libdap')
-rw-r--r--pkgs/development/libraries/libdap/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libdap/default.nix b/pkgs/development/libraries/libdap/default.nix
index 5a0006ad6c6e3..d399998455e12 100644
--- a/pkgs/development/libraries/libdap/default.nix
+++ b/pkgs/development/libraries/libdap/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
 
 stdenv.mkDerivation rec {
-  version = "3.19.1";
+  version = "3.20.0";
   name = "libdap-${version}";
 
   nativeBuildInputs = [ bison flex ];
@@ -9,12 +9,12 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://www.opendap.org/pub/source/${name}.tar.gz";
-    sha256 = "0gnki93z3kkzp65x7n1kancy7bd503j4qja5fhzvm1gkmi5l65aj";
+    sha256 = "0cr3d7dlzq583dqqrkbs1bkcrwag4hp7hwrx5c0mjk7q4vrslh92";
   };
 
   meta = with stdenv.lib; {
     description = "A C++ SDK which contains an implementation of DAP";
-    homepage = https://www.opendap.org/download/libdap;
+    homepage = https://www.opendap.org/software/libdap;
     license = licenses.lgpl2;
     maintainers = [ maintainers.bzizou ];
     platforms = platforms.linux;