Guillaume Maudoux
Guillaume Maudoux
In the current state, cc.nix is not compatible with crossPkgs and cross compilers. This PR makes some progress by using buildPackages instead of pkgs where needed (everywhere, except stdenv.cc). To...
This is linked to #28. It may be useful (but also potentially dangerous) to allow admins to submit as if they were any account. This would allow late submissions, and...
Inginious tabs do not play nicely with the browser history. It is very annoying in the "View submissions" view, with the two tabs "Individual results" and "Team results". If you...
**Describe the bug** Nix sometimes reports imprecise error location when a value has the wrong type for an operation. In this example, builtins.hasAttr expects a string and receives a boolean...
Add tons of helpful error messages in locations with poor error reporting. This includes mostly type errors. As these are runtime errors, the precise location of the faulty value is...
Hi, Tup and ldpreload does not mix with setuid tup installation. This should be detected by Tup to avoid strange errors like this: ``` $ tup [ tup ] [0.000s]...
After building firefox with Tup, I discovered that the database takes >800MB on disk. This is about 6% of my git checkout + build outputs. ``` 909M gecko-dev/.tup (tup internal...
I have tried to spare users a long debugging session searching for a .bazelrc line that was not applied. The main issue is in the client parser, which assumes that...
## Input ```nix foo test { a = 1; } // { b = 2; c = 3; } ``` ## Output ```nix foo test { a = 1; }...