Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mdds: add license

+9 -6
+3 -2
pkgs/development/libraries/mdds/0.12.1.nix
··· 9 9 sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3"; 10 10 }; 11 11 12 - meta = { 12 + meta = with stdenv.lib; { 13 13 homepage = https://gitlab.com/mdds/mdds; 14 14 description = "A collection of multi-dimensional data structure and indexing algorithm"; 15 - platforms = stdenv.lib.platforms.all; 15 + platforms = platforms.all; 16 + license = licenses.mit; 16 17 }; 17 18 }
+3 -2
pkgs/development/libraries/mdds/0.7.1.nix
··· 9 9 sha256 = "0zhrx7m04pknc8i2cialmbna1hmwa0fzs8qphan4rdxibf0c4yzy"; 10 10 }; 11 11 12 - meta = { 12 + meta = with stdenv.lib; { 13 13 homepage = https://gitlab.com/mdds/mdds/; 14 14 description = "A collection of multi-dimensional data structure and indexing algorithm"; 15 - platforms = stdenv.lib.platforms.all; 15 + platforms = platforms.all; 16 + license = licenses.mit; 16 17 }; 17 18 }
+3 -2
pkgs/development/libraries/mdds/default.nix
··· 16 16 17 17 checkInputs = [ boost ]; 18 18 19 - meta = { 19 + meta = with stdenv.lib; { 20 20 inherit version; 21 21 homepage = https://gitlab.com/mdds/mdds; 22 22 description = "A collection of multi-dimensional data structure and indexing algorithm"; 23 - platforms = stdenv.lib.platforms.all; 23 + platforms = platforms.all; 24 + license = licenses.mit; 24 25 }; 25 26 }