about summary refs log tree commit diff
path: root/pkgs/development/libraries/libdap/default.nix
blob: adb57f1ee77859dc702f2e2d945698d23d06d413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:

stdenv.mkDerivation rec {
  version = "3.15.1";
  name = "libdap";

  buildInputs = [ bison libuuid curl libxml2 flex ];

  src = fetchurl {
    url = "http://www.opendap.org/pub/source/${name}-${version}.tar.gz";
    sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f";
  };

  meta = { 
    description = "A C++ SDK which contains an implementation of DAP";
    homepage = http://www.opendap.org/download/libdap;
    license = stdenv.lib.licenses.lgpl2;
    maintainers = [ stdenv.lib.maintainers.bzizou ];
    platforms = stdenv.lib.platforms.linux;
  };
}