nixpkgs/pkgs/development/libraries/getdata/default.nix
Vincent Laporte 94f20a542a 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/
2014-11-21 11:54:54 +00:00

17 lines
486 B
Nix

{ 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/;
};
}