summary refs log tree commit diff
path: root/pkgs/development/libraries/getdata
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-20 14:30:33 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-21 11:54:54 +0000
commit94f20a542a541413572686ad53c24c5e4c6fb278 (patch)
treee3f3bd482c612e83d75ac41a909dd87441a6c965 /pkgs/development/libraries/getdata
parentc9dff002a378a9b70e8b1de2e2a8beae9fc8b94e (diff)
downloadnixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar.gz
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar.bz2
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar.lz
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar.xz
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.tar.zst
nixpkgs-94f20a542a541413572686ad53c24c5e4c6fb278.zip
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/
Diffstat (limited to 'pkgs/development/libraries/getdata')
-rw-r--r--pkgs/development/libraries/getdata/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/getdata/default.nix b/pkgs/development/libraries/getdata/default.nix
new file mode 100644
index 00000000000..93ecb7c05e6
--- /dev/null
+++ b/pkgs/development/libraries/getdata/default.nix
@@ -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/;
+  };
+}