| 14 Jan 2025 |
Waldemar Tomme | :/ i tried earlier and now as well but it only appends the /lib sub paths to LD_LIBRARY_PATH it seems | 14:29:52 |
Waldemar Tomme | otherwise I will wrap it but would like it if I can manage it with a single package | 14:31:16 |
Waldemar Tomme | or more like: I assumed it would be possible to just do it with buildDotnetModule | 14:32:09 |
Emma [it/its] | huh... thats odd | 14:33:14 |
Emma [it/its] | bins should be on PATH... i use runtimeDeps for yt-dlp (and transitively, ffmpeg) in a project | 14:34:01 |
Emma [it/its] | seems is misunderstood what runtimeDeps does | 14:36:29 |
Waldemar Tomme | in the source of buildDotnetModule runtimeDeps is only used to get libraries (https://github.com/NixOS/nixpkgs/blob/635e887b48521e912a516625eee7df6cf0eba9c1/pkgs/build-support/dotnet/build-dotnet-module/default.nix#L124) | 14:36:36 |
Waldemar Tomme | In the manual it also says that it's only for libraries | 14:37:04 |
Waldemar Tomme | guess I will make a wrapper | 14:37:14 |
GGG | You can use `makeWrapperArgs` to add stuff to path | 14:38:12 |
GGG | `buildDotnetModule` already makes a wrapper, so don't make a wrapper out of a wrapper | 14:50:18 |
Waldemar Tomme | It works now. thanks ^^ but small question for clarification: what are the default arguments for makeWrapper for?
# "--prefix"
# "LD_LIBRARY_PATH"
# ":"
# "${dotnet-sdk.icu}/lib"
| 14:58:26 |
GGG | .NET needs ICU for globalization features | 15:09:45 |