24 lines
623 B
Nix
24 lines
623 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.10.3";
|
|
name = "mdds-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://multidimalgorithm.googlecode.com/files/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;
|
|
};
|
|
}
|