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

23 lines
646 B
Nix
Raw Normal View History

2016-02-22 15:13:34 +01:00
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
stdenv.mkDerivation rec {
version = "3.20.4";
pname = "libdap";
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 = "https://www.opendap.org/pub/source/${pname}-${version}.tar.gz";
sha256 = "0x44igs389b49nb2psd656wpvmbx9bwmla2l5ahfa09vxb314s5i";
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/software/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
};
}