summary refs log tree commit diff
path: root/pkgs/development/libraries/mdds/default.nix
blob: 484f878a55ef1facae7d30d5ae0512a837fe87d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
  };
}