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

24 lines
665 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
2016-02-22 14:13:34 +00:00
stdenv.mkDerivation rec {
2020-05-05 19:05:33 +00:00
version = "3.20.6";
pname = "libdap";
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/${pname}-${version}.tar.gz";
2020-05-05 19:05:33 +00:00
sha256 = "0jn5bi8k2lq6mmrsw7r1r5aviyf8gb39b2iy20v4kpkj5napzk1m";
2016-02-22 14:13:34 +00:00
};
meta = with lib; {
2016-02-22 14:13:34 +00:00
description = "A C++ SDK which contains an implementation of DAP";
homepage = "https://www.opendap.org/software/libdap";
2017-03-15 20:55:43 +00:00
license = licenses.lgpl2;
maintainers = [ maintainers.bzizou ];
platforms = platforms.linux;
broken = true;
2016-02-22 14:13:34 +00:00
};
}