Tristan Maat

Results 73 comments of Tristan Maat

> Ok. Unfortunately we cannot handle this usecase right now since we need to run before any additional mounts trigged by zfs or by systemd mount units are loaded. Why...

Something like this will set up a simple dev shell: ```nix { devShell = pkgs.mkShell { buildInputs = with pkgs; with nodePackages; [ nodejs node2nix nodeEnv.shell.nodeDependencies ]; shellHook = ''...

Sounds like this is where #678 is going :)

~~This was merged in https://github.com/bazelbuild/bazel/commit/00805727b867d33fd922e63ca82b0d9825ad79fe (and is present in 5.0.0 onwards, but missing in the release notes)~~ Nevermind, that's different. I guess the behavior just changed to the above for...

I've dug a bit more into this, and I'm convinced that is a regression by now. In a nutshell, we're building [this test](https://github.com/frc971/971-Robot-Code/blob/master/aos/util/BUILD#L327=) from the aos repository, and we're seeing...

I've been looking for such a feature too, would really like to see one. For the time being, if autoplay related is enabled, you can use the "next video" button...

The solution from @robintown makes sense to me, but this still requires overwriting the generated `default.nix`, which just doesn't seem like the right solution. If I'm trying to call my...

Ah, I see, overrides must be specified for the sub-component you will be using. I.e., for the example described in the readme: ```nix let nodeDependencies = (pkgs.callPackage ./default.nix {}).shell.nodeDependencies; in...

That is indeed unrelated; I ran into that too when I originally stumbled across this. Sharp is trying to download a statically compiled version of `libvips` that they are hosting...

Just in case you don't realize, `override.nix` will not magically override a `default.nix`. You will need to explicitly change any references to `default.nix` (or a directory containing a `default.nix` that...