2016-02-22 14:13:34 +00:00
|
|
|
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-27 22:18:30 +00:00
|
|
|
version = "3.20.3";
|
2016-02-23 14:19:25 +00:00
|
|
|
name = "libdap-${version}";
|
2016-02-22 14:13:34 +00:00
|
|
|
|
2017-03-15 20:55:43 +00:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
buildInputs = [ libuuid curl libxml2 ];
|
2016-02-22 14:13:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.opendap.org/pub/source/${name}.tar.gz";
|
2019-03-27 22:18:30 +00:00
|
|
|
sha256 = "0n6ciicaa7sn88gvg5sgcq0438i3vh6xbl9lxgafjqiznli1k5i9";
|
2016-02-22 14:13:34 +00:00
|
|
|
};
|
|
|
|
|
2017-03-15 20:55:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-22 14:13:34 +00:00
|
|
|
description = "A C++ SDK which contains an implementation of DAP";
|
2018-10-10 17:27:50 +01:00
|
|
|
homepage = https://www.opendap.org/software/libdap;
|
2017-03-15 20:55:43 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = [ maintainers.bzizou ];
|
|
|
|
platforms = platforms.linux;
|
2016-02-22 14:13:34 +00:00
|
|
|
};
|
|
|
|
}
|