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

22 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.15.1";
name = "libdap-${version}";
2016-02-22 14:13:34 +00:00
buildInputs = [ bison libuuid curl libxml2 flex ];
src = fetchurl {
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
2016-02-22 14:13:34 +00:00
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;
};
}