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