summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/mdds/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/mdds/default.nix')
-rw-r--r--pkgs/development/libraries/mdds/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/libraries/mdds/default.nix b/pkgs/development/libraries/mdds/default.nix
index 8ff2cac539cc..296744e1d56c 100644
--- a/pkgs/development/libraries/mdds/default.nix
+++ b/pkgs/development/libraries/mdds/default.nix
@@ -1,15 +1,21 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- version = "0.8.1";
+ version = "0.10.3";
name = "mdds-${version}";
src = fetchurl {
- url = "http://multidimalgorithm.googlecode.com/files/mdds_${version}.tar.bz2";
- sha256 = "12w8rs8kb8yffndsw0g7qfjvy4gpnppkdzc7r7vvc9n800ixl1gn";
+ url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2";
+ sha256 = "1hp0472mcsgzrz1v60jpywxrrqmpb8bchfsi7ydmp6vypqnr646v";
};
+ postInstall = ''
+ mkdir -p "$out/lib/pkgconfig"
+ cp "$out/share/pkgconfig/"* "$out/lib/pkgconfig"
+ '';
+
meta = {
+ inherit version;
homepage = https://code.google.com/p/multidimalgorithm/;
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;