1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/mdds/default.nix

17 lines
457 B
Nix
Raw Normal View History

2012-08-29 21:25:30 +01:00
{ 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;
};
}