about summary refs log tree commit diff
path: root/pkgs/development/libraries/mdds
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-08-11 09:42:37 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-08-11 18:49:18 +0200
commit6536d6fe9c193ca25e440075ae84ac4efffae5da (patch)
treedd1ea0de5b614a26a85249ba2f0c37d7579b03c5 /pkgs/development/libraries/mdds
parent40d217b90ec1254f5b2d9652278a5fbb3ea929f5 (diff)
downloadnixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar.gz
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar.bz2
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar.lz
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar.xz
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.tar.zst
nixlib-6536d6fe9c193ca25e440075ae84ac4efffae5da.zip
mdds: 0.12.0 -> pinned 0.12.1, use it for libreoffice-still instead of freshest
Diffstat (limited to 'pkgs/development/libraries/mdds')
-rw-r--r--pkgs/development/libraries/mdds/0.12.1.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mdds/0.12.1.nix b/pkgs/development/libraries/mdds/0.12.1.nix
new file mode 100644
index 000000000000..3c3a874c8ad0
--- /dev/null
+++ b/pkgs/development/libraries/mdds/0.12.1.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "0.12.1";
+  name = "mdds-${version}";
+
+  src = fetchurl {
+    url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2";
+    sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
+  };
+
+  meta = {
+    homepage = https://code.google.com/p/multidimalgorithm/;
+    description = "A collection of multi-dimensional data structure and indexing algorithm";
+    platforms = stdenv.lib.platforms.all;
+  };
+}