libdap: 3.15.1 -> 3.18.3
This commit is contained in:
parent
2e72372c05
commit
3cecb95a9d
@ -1,21 +1,22 @@
|
|||||||
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "3.15.1";
|
version = "3.18.3";
|
||||||
name = "libdap-${version}";
|
name = "libdap-${version}";
|
||||||
|
|
||||||
buildInputs = [ bison libuuid curl libxml2 flex ];
|
nativeBuildInputs = [ bison flex ];
|
||||||
|
buildInputs = [ libuuid curl libxml2 ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
|
url = "http://www.opendap.org/pub/source/${name}.tar.gz";
|
||||||
sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f";
|
sha256 = "0azjf4gjqvp1fdf1wb3s98x52zfy4viq1m3j9lggaidldfinmv8c";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A C++ SDK which contains an implementation of DAP";
|
description = "A C++ SDK which contains an implementation of DAP";
|
||||||
homepage = http://www.opendap.org/download/libdap;
|
homepage = http://www.opendap.org/download/libdap;
|
||||||
license = stdenv.lib.licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.bzizou ];
|
maintainers = [ maintainers.bzizou ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user