summary refs log tree commit diff
path: root/pkgs/development/libraries/mdds/default.nix
blob: 9c6c8e5e334086f87c9c731f0bebfb532dab4d52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "0.7.1";
  name = "mdds-${version}";

  src = fetchurl {
    url = "http://multidimalgorithm.googlecode.com/files/mdds_${version}.tar.bz2";
    sha256 = "0zhrx7m04pknc8i2cialmbna1hmwa0fzs8qphan4rdxibf0c4yzy";
  };

  meta = {
    homepage = https://code.google.com/p/multidimalgorithm/;
    description = "A collection of multi-dimensional data structure and indexing algorithm";
    platforms = stdenv.lib.platforms.all;
  };
}