2016-02-22 14:13:34 +00:00
|
|
|
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-15 21:10:39 +01:00
|
|
|
version = "3.20.4";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libdap";
|
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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.opendap.org/pub/source/${pname}-${version}.tar.gz";
|
2019-07-15 21:10:39 +01:00
|
|
|
sha256 = "0x44igs389b49nb2psd656wpvmbx9bwmla2l5ahfa09vxb314s5i";
|
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
|
|
|
};
|
|
|
|
}
|