libdap: 3.15.1 -> 3.18.3

This commit is contained in:
ndowens 2017-03-15 15:55:43 -05:00 committed by Jörg Thalheim
parent 2e72372c05
commit 3cecb95a9d
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,21 +1,22 @@
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
stdenv.mkDerivation rec {
version = "3.15.1";
version = "3.18.3";
name = "libdap-${version}";
buildInputs = [ bison libuuid curl libxml2 flex ];
nativeBuildInputs = [ bison flex ];
buildInputs = [ libuuid curl libxml2 ];
src = fetchurl {
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f";
sha256 = "0azjf4gjqvp1fdf1wb3s98x52zfy4viq1m3j9lggaidldfinmv8c";
};
meta = {
meta = with stdenv.lib; {
description = "A C++ SDK which contains an implementation of DAP";
homepage = http://www.opendap.org/download/libdap;
license = stdenv.lib.licenses.lgpl2;
maintainers = [ stdenv.lib.maintainers.bzizou ];
platforms = stdenv.lib.platforms.linux;
license = licenses.lgpl2;
maintainers = [ maintainers.bzizou ];
platforms = platforms.linux;
};
}