mdds: add license

This commit is contained in:
Markus Kowalewski 2018-10-23 19:58:06 +02:00
parent 81342af39d
commit a46d0efd03
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
3 changed files with 9 additions and 6 deletions

View File

@ -9,9 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
};
meta = {
meta = with stdenv.lib; {
homepage = https://gitlab.com/mdds/mdds;
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.mit;
};
}

View File

@ -9,9 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "0zhrx7m04pknc8i2cialmbna1hmwa0fzs8qphan4rdxibf0c4yzy";
};
meta = {
meta = with stdenv.lib; {
homepage = https://gitlab.com/mdds/mdds/;
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.mit;
};
}

View File

@ -16,10 +16,11 @@ stdenv.mkDerivation rec {
checkInputs = [ boost ];
meta = {
meta = with stdenv.lib; {
inherit version;
homepage = https://gitlab.com/mdds/mdds;
description = "A collection of multi-dimensional data structure and indexing algorithm";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.mit;
};
}