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

23 lines
643 B
Nix
Raw Normal View History

2016-02-22 15:13:34 +01:00
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
stdenv.mkDerivation rec {
2017-03-15 21:55:43 +01:00
version = "3.18.3";
name = "libdap-${version}";
2016-02-22 15:13:34 +01:00
2017-03-15 21:55:43 +01:00
nativeBuildInputs = [ bison flex ];
buildInputs = [ libuuid curl libxml2 ];
2016-02-22 15:13:34 +01:00
src = fetchurl {
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
2017-03-15 21:55:43 +01:00
sha256 = "0azjf4gjqvp1fdf1wb3s98x52zfy4viq1m3j9lggaidldfinmv8c";
2016-02-22 15:13:34 +01:00
};
2017-03-15 21:55:43 +01:00
meta = with stdenv.lib; {
2016-02-22 15:13:34 +01:00
description = "A C++ SDK which contains an implementation of DAP";
homepage = https://www.opendap.org/download/libdap;
2017-03-15 21:55:43 +01:00
license = licenses.lgpl2;
maintainers = [ maintainers.bzizou ];
platforms = platforms.linux;
2016-02-22 15:13:34 +01:00
};
}