1{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
2
3stdenv.mkDerivation rec {
4 version = "3.15.1";
5 name = "libdap-${version}";
6
7 buildInputs = [ bison libuuid curl libxml2 flex ];
8
9 src = fetchurl {
10 url = "http://www.opendap.org/pub/source/${name}.tar.gz";
11 sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f";
12 };
13
14 meta = {
15 description = "A C++ SDK which contains an implementation of DAP";
16 homepage = http://www.opendap.org/download/libdap;
17 license = stdenv.lib.licenses.lgpl2;
18 maintainers = [ stdenv.lib.maintainers.bzizou ];
19 platforms = stdenv.lib.platforms.linux;
20 };
21}