summary refs log blame commit diff
path: root/pkgs/development/libraries/mdds/0.12.1.nix
blob: 11bd437d377e224d6825e778c52729fa1168e45c (plain) (tree)
1
2
3
4
5
6
7
8






                           
                                                                    



                                                                    
                                            



                                                                                            
{ stdenv, fetchurl }:

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

  src = fetchurl {
    url = "https://kohei.us/files/mdds/src/mdds_${version}.tar.bz2";
    sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
  };

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