1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00
nixpkgs/pkgs/development/libraries/mdds/default.nix

24 lines
608 B
Nix
Raw Normal View History

2012-08-29 21:25:30 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-11-03 21:36:48 +00:00
version = "0.11.1";
2013-09-01 00:57:33 +01:00
name = "mdds-${version}";
2012-08-29 21:25:30 +01:00
src = fetchurl {
2014-06-30 15:50:55 +01:00
url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2";
2014-11-03 21:36:48 +00:00
sha256 = "1xr74ss8vr67nmwxls4a54hgljwrc8fs485ablh0bxykf6dyr0j1";
2012-08-29 21:25:30 +01:00
};
2014-06-27 13:11:49 +01:00
postInstall = ''
mkdir -p "$out/lib/pkgconfig"
cp "$out/share/pkgconfig/"* "$out/lib/pkgconfig"
'';
2012-08-29 21:25:30 +01:00
meta = {
2014-06-27 13:11:49 +01:00
inherit version;
2012-08-29 21:25:30 +01:00
homepage = https://code.google.com/p/multidimalgorithm/;
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;
};
}