b439f9032b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdap/versions
23 lines
644 B
Nix
23 lines
644 B
Nix
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.20.2";
|
|
name = "libdap-${version}";
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
buildInputs = [ libuuid curl libxml2 ];
|
|
|
|
src = fetchurl {
|
|
url = "https://www.opendap.org/pub/source/${name}.tar.gz";
|
|
sha256 = "0kp35ghj48wqgy67xyplwhmw21r8r0p00y2hw0fv65g4yrsgvsk0";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A C++ SDK which contains an implementation of DAP";
|
|
homepage = https://www.opendap.org/software/libdap;
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.bzizou ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|