d85259178e
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.3.1 with grep in /nix/store/1jh7ran6gm77rksnm74kix37b44b1ni9-mdds-1.3.1 - directory tree listing: https://gist.github.com/bd00a4a5fa8495574a863ebf42d43a9a
24 lines
591 B
Nix
24 lines
591 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.3.1";
|
|
name = "mdds-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://kohei.us/files/mdds/src/mdds-${version}.tar.bz2";
|
|
sha256 = "18g511z1lgfxrga2ld9yr95phmyfbd3ymbv4q5g5lyjn4ljcvf6w";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/lib/pkgconfig"
|
|
cp "$out/share/pkgconfig/"* "$out/lib/pkgconfig"
|
|
'';
|
|
|
|
meta = {
|
|
inherit version;
|
|
homepage = https://gitlab.com/mdds/mdds;
|
|
description = "A collection of multi-dimensional data structure and indexing algorithm";
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|