mdds: 0.12.0 -> pinned 0.12.1, use it for libreoffice-still instead of freshest

This commit is contained in:
Michael Raskin
2016-08-11 09:42:37 +02:00
parent 40d217b90e
commit 6536d6fe9c
2 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,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;
};
}