Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-06 | Merge branch 'drv-outputs-map-allow-missing-namespace' of ↵ | Carlo Nucera | |
github.com:obsidiansystems/nix into templated-daemon-protocol | |||
2020-08-05 | Merge remote-tracking branch 'obsidian/drv-outputs-map-allow-missing' into ↵ | John Ericson | |
templated-daemon-protocol | |||
2020-08-05 | Merge remote-tracking branch 'obsidian/misc-ca' into ↵ | John Ericson | |
derivation-primop-floating-output | |||
2020-08-05 | Sed some names to perhaps avoid conflicts | John Ericson | |
2020-08-05 | Make names more consistent | John Ericson | |
2020-08-05 | Merge remote-tracking branch 'upstream/master' into misc-ca | John Ericson | |
2020-08-04 | WIP systematize more of the worker protocol | John Ericson | |
This refactor should *not* change the wire protocol. | |||
2020-07-28 | Merge branch 'ca-drv' of github.com:Ericson2314/nix into misc-ca | John Ericson | |
2020-07-28 | Use assert(false) instead of abort() | Carlo Nucera | |
2020-07-28 | Merge branch 'master' of github.com:NixOS/nix into ca-drv | Carlo Nucera | |
2020-07-27 | Require `ca-derivations` everywhere we create a CA derivation | John Ericson | |
"create" as in read one in from a serialized form, or build one from scratch in memory. | |||
2020-07-27 | Merge branch 'hash-always-has-type' of github.com:obsidiansystems/nix into ↵ | John Ericson | |
better-ca-parse-errors | |||
2020-07-27 | Merge branch 'ca-derivation-data-types' of github.com:obsidiansystems/nix ↵ | John Ericson | |
into misc-ca | |||
2020-07-27 | Merge branch 'optional-derivation-output-storepath' into ↵ | John Ericson | |
ca-derivation-data-types | |||
2020-07-27 | Merge remote-tracking branch 'upstream/master' into ↵ | John Ericson | |
optional-derivation-output-storepath | |||
2020-07-23 | Merge remote-tracking branch 'upstream/master' into misc-ca | John Ericson | |
2020-07-23 | Get rid of `basicDerivation::findOutput` | John Ericson | |
It's a tiny function which is: - hardly worth abstrating over, and also only used once. - doesn't work once we get CA drvs I rewrote the one callsite to be forwards compatable with CA derivations, and also potentially more performant: instead of reading in the derivation it can ust consult the SQLite DB in the common case. | |||
2020-07-17 | Add `DerivationType::CAFloating` | John Ericson | |
2020-07-17 | Revert "Don't anticipate hash algo without hash in derivation for now" | Carlo Nucera | |
This reverts commit 3804e3df9bb479fe1d399f29d16a1aabaf352c19. | |||
2020-07-17 | Merge branch 'ca-drv' of github.com:Ericson2314/nix into misc-ca | Carlo Nucera | |
2020-07-17 | Merge branch 'multi-output-hashDerivationModulo' of ↵ | Carlo Nucera | |
github.com:Ericson2314/nix into misc-ca | |||
2020-07-16 | Merge branch 'optional-derivation-output-storepath' of ↵ | Carlo Nucera | |
github.com:obsidiansystems/nix into ca-derivation-data-types | |||
2020-07-16 | Merge branch 'master' of github.com:NixOS/nix into ↵ | Carlo Nucera | |
optional-derivation-output-storepath | |||
2020-07-16 | Merge branch 'hash-always-has-type' of github.com:obsidiansystems/nix into ↵ | John Ericson | |
better-ca-parse-errors | |||
2020-07-13 | Remove istringstream_nocopy | Eelco Dolstra | |
2020-07-12 | Change types to prepare the way for CA derivations | John Ericson | |
We've added the variant to `DerivationOutput` to support them, but made `DerivationOutput::path` partial to avoid actually implementing them. With this chage, we can all collaborate on "just" removing `DerivationOutput::path` calls to implement CA derivations. | |||
2020-07-12 | Use more std::visit to prepare for new variant | John Ericson | |
N.B. not using `std::visit` for fetchurl because there is no attempt to handle all the cases (e.g. no `else`) and lambda complicates early return. | |||
2020-07-12 | Move C++17 "pattern matching" boilerplat to utils.hh | John Ericson | |
2020-07-12 | DerivationOutputExtensional -> DerivationOutputInputAddressed | John Ericson | |
Thanks @regnat for the great name. | |||
2020-07-12 | Undo erroneous indentation change | John Ericson | |
2020-07-12 | String .drv suffix to create derivation name | John Ericson | |
2020-07-12 | std::string_view for new derivation name parameters | John Ericson | |
2020-07-12 | BasicDerivation::findOutput cannot return reference anymore | John Ericson | |
2020-07-09 | Fix DerivationOutputExtensional name | Matthew Bauer | |
2020-07-08 | Only store hash of fixed derivation output | Matthew Bauer | |
we don’t need a full storepath for a fixedoutput derivation. So just putting the ingestion method + the hash is sufficient. | |||
2020-07-08 | Add name to BasicDerivation | Matthew Bauer | |
We always have a name for BasicDerivation, since we have a derivation store path that has a name. | |||
2020-07-02 | Tighten parsing for drv files and pathinfo | Carlo Nucera | |
2020-07-01 | Rename two hash constructors to proper functions | Carlo Nucera | |
2020-06-25 | Fix empty std::optional dereference in writeDerivation() | Eelco Dolstra | |
https://hydra.nixos.org/build/123017579 | |||
2020-06-24 | Merge remote-tracking branch 'upstream/master' into ca-drv | John Ericson | |
2020-06-21 | Merge remote-tracking branch 'upstream/master' into ca-drv | John Ericson | |
2020-06-21 | Don't anticipate hash algo without hash in derivation for now | John Ericson | |
When we merge with master, the new lack of string types make this case impossible (after parsing). Later, when we actually implemenent CA-derivations, we'll change the types to allow that. | |||
2020-06-21 | Tweak declaration | John Ericson | |
I think this is clearer | |||
2020-06-21 | Merge remote-tracking branch 'upstream/master' into ↵ | John Ericson | |
multi-output-hashDerivationModulo | |||
2020-06-19 | Merge remote-tracking branch 'upstream/master' into no-hash-type-unknown | John Ericson | |
2020-06-19 | Merge remote-tracking branch 'me/no-stringly-typed-derivation-output' into ↵ | John Ericson | |
validPathInfo-ca-proper-datatype | |||
2020-06-19 | Use designated initializers for `DerivationOutputHash` | John Ericson | |
2020-06-19 | FileSystemHash -> DerivationOutputHash | John Ericson | |
2020-06-19 | Remove some `Base::` that crept in | John Ericson | |
2020-06-18 | Merge branch 'validPathInfo-temp' into validPathInfo-ca-proper-datatype | John Ericson | |