09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
23 lines
643 B
Nix
23 lines
643 B
Nix
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.18.3";
|
|
name = "libdap-${version}";
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
buildInputs = [ libuuid curl libxml2 ];
|
|
|
|
src = fetchurl {
|
|
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
|
|
sha256 = "0azjf4gjqvp1fdf1wb3s98x52zfy4viq1m3j9lggaidldfinmv8c";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A C++ SDK which contains an implementation of DAP";
|
|
homepage = https://www.opendap.org/download/libdap;
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.bzizou ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|