Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-04 | Make flake input fetching lazy | Eelco Dolstra | |
As long as the flake input is locked, it is now only fetched when it is evaluated (e.g. "nixpkgs" is fetched when "inputs.nixpkgs.<something>" is evaluated). This required adding an "id" attribute to the members of "inputs" in lockfiles, e.g. "inputs": { "nixpkgs/release-19.03": { "id": "nixpkgs", "inputs": {}, "narHash": "sha256-eYtxncIMFVmOHaHBtTdPGcs/AnJqKqA6tHCm0UmPYQU=", "nonFlakeInputs": {}, "uri": "github:edolstra/nixpkgs/e9d5882bb861dc48f8d46960e7c820efdbe8f9c1" } } because the flake ID needs to be known beforehand to construct the "inputs" attrset. Fixes #2913. | |||
2019-04-19 | nlohmann-json: 3.5.0 -> 3.6.1 | Eelco Dolstra | |
https://github.com/nlohmann/json/releases/tag/v3.6.1 This fixes some clang warnings. | |||
2018-12-21 | nlohmann-json: 3.4.0 -> 3.5.0 | Will Dietz | |
https://github.com/nlohmann/json/releases/tag/v3.5.0 | |||
2018-12-21 | nlohmann: 3.0.1 -> 3.4.0 | Will Dietz | |
``` $ curl -L "https://github.com/nlohmann/json/releases/download/v3.4.0/json.hpp" -o src/nlohmann/json.hpp ``` | |||
2018-01-22 | nlohmann-json: 2.1.1 -> 3.0.1 | Will Dietz | |
2017-12-04 | Simplify build by including nlohmann/json.hpp | Eelco Dolstra | |