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

23 lines
644 B
Nix
Raw Normal View History

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