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