nixpkgs/pkgs/development/libraries/libdap/default.nix

23 lines
644 B
Nix
Raw Normal View History

2016-02-22 14:13:34 +00:00
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
stdenv.mkDerivation rec {
version = "3.19.1";
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 {
url = "https://www.opendap.org/pub/source/${name}.tar.gz";
sha256 = "0gnki93z3kkzp65x7n1kancy7bd503j4qja5fhzvm1gkmi5l65aj";
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";
homepage = https://www.opendap.org/download/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
};
}