nixpkgs/pkgs/development/libraries/mdds/default.nix

24 lines
594 B
Nix
Raw Normal View History

2012-08-29 22:25:30 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "0.12.1";
2013-09-01 01:57:33 +02:00
name = "mdds-${version}";
2012-08-29 22:25:30 +02:00
src = fetchurl {
2014-06-30 16:50:55 +02:00
url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2";
sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
2012-08-29 22:25:30 +02:00
};
2014-06-27 14:11:49 +02:00
postInstall = ''
mkdir -p "$out/lib/pkgconfig"
cp "$out/share/pkgconfig/"* "$out/lib/pkgconfig"
'';
2012-08-29 22:25:30 +02:00
meta = {
2014-06-27 14:11:49 +02:00
inherit version;
homepage = "https://gitlab.com/mdds/mdds";
2012-08-29 22:25:30 +02:00
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;
};
}