Adds getdata-0.8.5

The GetData Project is the reference implementation of the Dirfile
Standards, a filesystem-based, column-oriented database format for
time-ordered binary data. The Dirfile database format is designed to
provide a fast, simple format for storing and reading data.

Homepage: http://getdata.sourceforge.net/
This commit is contained in:
Vincent Laporte 2014-11-20 14:30:33 +00:00
parent c9dff002a3
commit 94f20a542a
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "getdata-0.8.5";
src = fetchurl {
url = "mirror://sourceforge/getdata/${name}.tar.bz2";
sha256 = "0km6hbv18m9g8fxdqfcmk3bjr47w856v4hbrxpd609m6rk0j40zf";
};
meta = with stdenv.lib; {
description = "Reference implementation of the Dirfile Standards";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = [ maintainers.vbgl ];
homepage = http://getdata.sourceforge.net/;
};
}

View file

@ -5169,6 +5169,8 @@ let
geos = callPackage ../development/libraries/geos { };
getdata = callPackage ../development/libraries/getdata { };
gettext = gettext_0_18;
gettext_0_17 = callPackage ../development/libraries/gettext/0.17.nix { };