tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
mdds: add license
Markus Kowalewski
7 years ago
a46d0efd
81342af3
+9
-6
3 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
mdds
0.12.1.nix
0.7.1.nix
default.nix
+3
-2
pkgs/development/libraries/mdds/0.12.1.nix
···
9
sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
10
};
11
12
-
meta = {
13
homepage = https://gitlab.com/mdds/mdds;
14
description = "A collection of multi-dimensional data structure and indexing algorithm";
15
-
platforms = stdenv.lib.platforms.all;
0
16
};
17
}
···
9
sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3";
10
};
11
12
+
meta = with stdenv.lib; {
13
homepage = https://gitlab.com/mdds/mdds;
14
description = "A collection of multi-dimensional data structure and indexing algorithm";
15
+
platforms = platforms.all;
16
+
license = licenses.mit;
17
};
18
}
+3
-2
pkgs/development/libraries/mdds/0.7.1.nix
···
9
sha256 = "0zhrx7m04pknc8i2cialmbna1hmwa0fzs8qphan4rdxibf0c4yzy";
10
};
11
12
-
meta = {
13
homepage = https://gitlab.com/mdds/mdds/;
14
description = "A collection of multi-dimensional data structure and indexing algorithm";
15
-
platforms = stdenv.lib.platforms.all;
0
16
};
17
}
···
9
sha256 = "0zhrx7m04pknc8i2cialmbna1hmwa0fzs8qphan4rdxibf0c4yzy";
10
};
11
12
+
meta = with stdenv.lib; {
13
homepage = https://gitlab.com/mdds/mdds/;
14
description = "A collection of multi-dimensional data structure and indexing algorithm";
15
+
platforms = platforms.all;
16
+
license = licenses.mit;
17
};
18
}
+3
-2
pkgs/development/libraries/mdds/default.nix
···
16
17
checkInputs = [ boost ];
18
19
-
meta = {
20
inherit version;
21
homepage = https://gitlab.com/mdds/mdds;
22
description = "A collection of multi-dimensional data structure and indexing algorithm";
23
-
platforms = stdenv.lib.platforms.all;
0
24
};
25
}
···
16
17
checkInputs = [ boost ];
18
19
+
meta = with stdenv.lib; {
20
inherit version;
21
homepage = https://gitlab.com/mdds/mdds;
22
description = "A collection of multi-dimensional data structure and indexing algorithm";
23
+
platforms = platforms.all;
24
+
license = licenses.mit;
25
};
26
}