diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-04T17·43+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-06T00·15+0000 |
commit | d42c3dd72f3294f2a5af9bd66858d36aedce32a8 (patch) | |
tree | 8e2ca7ae5c8f4fc0e1f00a6864c7ce2a1d1869e3 /third_party/nix/src | |
parent | 68b5306c562c30df5ede227b451eadbf92c5c311 (diff) |
chore(3p): Bump nixpkgs channels r/1604
Bumps both nixos-unstable and nixos-20.03 to today's versions, as per status.nixos.org Contains minor fixes to things that broke because of the update: * tazjin/frog: hardware.u2f is a deprecated setting * glittershark/system: modSha256 in Go modules is now vendorSha256 * glittershark/owothia: removed version constraint on relude Change-Id: Ib3e9612b1b06ed547b90e4f8b0ffe5ed7fe0a5c4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1642 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party/nix/src')
-rw-r--r-- | third_party/nix/src/libexpr/symbol-table.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/symbol-table.hh b/third_party/nix/src/libexpr/symbol-table.hh index 3542f0eadad1..c2599658859f 100644 --- a/third_party/nix/src/libexpr/symbol-table.hh +++ b/third_party/nix/src/libexpr/symbol-table.hh @@ -19,7 +19,7 @@ class Symbol { bool operator<(const Symbol& s2) const { return *s < *s2.s; } - operator const std::string &() const { return *s; } + operator const std::string&() const { return *s; } bool set() const { return s; } |