summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-08-30 00:25:30 +0400
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-08-31 12:03:24 +0400
commitd41c08ee5410f0e7435c85c4fb24113ac41c02cf (patch)
tree7c97f5e68ffdd54753bdc9383580821331f334fe /pkgs/development/libraries
parent30ba367d5a9450f57c71085061651abeac1dd191 (diff)
downloadnixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar.gz
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar.bz2
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar.lz
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar.xz
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.tar.zst
nixpkgs-d41c08ee5410f0e7435c85c4fb24113ac41c02cf.zip
Add mdds (libreoffice dependency)
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/mdds/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mdds/default.nix b/pkgs/development/libraries/mdds/default.nix
new file mode 100644
index 00000000000..484f878a55e
--- /dev/null
+++ b/pkgs/development/libraries/mdds/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "mdds-0.6.0";
+
+  src = fetchurl {
+    url = http://multidimalgorithm.googlecode.com/files/mdds_0.6.0.tar.bz2;
+    sha256 = "0yx6cx2cxk9wpmfpv6k3agkr1sjzxdgxrm3zfj34zwyxr3sh0ql4";
+  };
+
+  meta = {
+    homepage = https://code.google.com/p/multidimalgorithm/;
+    description = "A collection of multi-dimensional data structure and indexing algorithm";
+    platforms = stdenv.lib.platforms.all;
+  };
+}