about summary refs log tree commit diff
path: root/default.nix (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2020-06-08 r/886 chore: Add //net to local package treesVincent Ambo1-1/+2
2020-06-07 r/885 feat(ops/nixos/camden): Link to the TVL monorepo docVincent Ambo1-0/+2
2020-06-07 r/884 feat(3p/grpc): Build gRPC using LLVM10 & libcxxVincent Ambo2-2/+15
2020-06-07 r/883 feat(3p/protobuf): Check in derivation for proto 3.12 with libcxxVincent Ambo2-1/+14
2020-06-04 r/882 fix(web/tvl): s/The V/tazjin's v/Vincent Ambo1-5/+5
2020-06-04 r/881 chore(web/tvl): Remove people I don't know directlyVincent Ambo1-23/+0
Quoting myself from IRC, for those who missed it: ------------- Alright, some of you might be wondering what 'UNDERGOING CHANGES' means. The gist of it is that TVL has kind of departed from what it was originally (a place for friends of mine to hang out) by growing a little too fast, and I've decided to do a bit of a reboot. What this means is that for most people I don't know directly, I'll be asking you to leave (I'll +v/-v accordingly) and see if we can get the original TVL crowd back before opening it for a wider audience again. The "opening hours" (heh) will also be more restricted again. Some people will be a little unhappy about this, but the good news is that you can easily make your own Meet and use that! Some folks even started an alternative EU-daytime lounge already. But for now, with this particular one, it'll be s/The V/tazjin's V/. ----------------
2020-06-03 r/880 fix(web/tvl): Add self-reference to the TVL siteProfpatsch1-1/+1
Recursion go href=
2020-06-03 r/879 feat(3p/emacs): Check in derivation for explain-pause-modeVincent Ambo2-0/+21
This mode makes it possible to track down slowness in Emacs functions across the board. https://github.com/lastquestion/explain-pause-mode Very useful for some things I need to debug ...
2020-06-03 r/878 fix(3p/cgit): Fix compilation under ClangLuke Granger-Brown2-2/+2
Clang treats function-like macros "correctly", in that, per the C11 spec: "Each subsequent instance of the function-like macro name followed by a ( [...] is replaced by the replacement list [...]". Additionally, fprintf is also permitted to be defined as a function-like macro rather than as a true function: "Any function declared in a header may be additionally implemented as a function-like macro defined in the header [...]". The specification then suggests surrounding the name of the function in parens to avoid this, which is the technique we use here to avoid the function-like macro being invoked. The other fix here is to use uintptr_t for some arithmetic, since Git is expecting an int as the value here and not a pointer.
2020-05-31 r/877 fix(3p): Force all stdenvs to use LLVM10Vincent Ambo1-6/+8
2020-05-31 r/876 fix(3p/nix): passAsFile: leave out the hash prefixedef2-1/+2
Having a colon in the path may cause issues, and having the hash function indicated isn't actually necessary. We now verify the path format in the tests to prevent regressions. (cherry picked from commit c65a6fa86aef7bdf51fb4fba7bd31d265619ba3f)
2020-05-31 r/875 fix(3p/nix): passAsFile: hash the attribute name instead of numbering ↵Puck Meerburg1-2/+2
sequentially This makes the paths consistent without relying on ordering. Co-authored-by: edef &l