Bob van der Linden

Results 95 comments of Bob van der Linden

I think this is a duplicate of https://github.com/NixOS/nix/issues/10064. This already has an implementation here: https://github.com/NixOS/nix/pull/10198, but it isn't being picked up for review yet.

Having it behave the same for `nix run` and referring to nixpkgs inside a flake would be very welcome. How about making these configuration options part of the flake uri?...

3 of these issues can be resolved if we could refer to installed packages by name instead of by index: - [x] https://github.com/NixOS/nix/issues/7967

I'm also running into problems where gptcache tries to install dependencies at runtime. I'd very much like to avoid this on production. It delays the startup of the application and...

I also just ran into this issue. `tokenizers` -> `torchhub` -> `transformers` -> `openai-whisper`. I'm guessing poetry2nix currently cannot be used if you want to use openai-whisper. It specifically is...

I got a bit further by using this override: ``` tokenizers = super.tokenizers.overridePythonAttrs (oldAttrs: { nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ (with pkgs.rustPlatform; [ rust.rustc rust.cargo self.setuptools-rust ]); }); ```...

Lock files are now part of tokenizers releases. See https://github.com/huggingface/tokenizers/issues/1226#issuecomment-1875072477

You can use [overrideAttrs](https://nixos.org/manual/nixpkgs/stable/#sec-pkg-overrideAttrs). Something like: ```nix (mkRuby { inherit pkgs; rubyVersion = "1.2.3"; }).overrideAttrs { patches = [ ./mypatch.patch ]; } ``` That said, I'm interested in those patches....

This problem shouldn't happen anymore. In #23, overrides were introduced that allows making changes to the Ruby derivation based on version ranges. OpenSSL1.1 is now only applied to those versions...

> Could you clarify what you'd expect to be different now? I see what you mean. Older Ruby versions are expecting OpenSSL 1.0 and do not support OpenSSL 1.1 nor...