Skip to content

Commit

Permalink
libdap: 3.15.1 -> 3.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and Mic92 committed Mar 16, 2017
1 parent 2e72372 commit 3cecb95
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkgs/development/libraries/libdap/default.nix
@@ -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;
};
}

0 comments on commit 3cecb95

Please sign in to comment.