| 29 Aug 2025 |
| @drupol:matrix.org left the room. | 11:43:38 |
| 2 Sep 2025 |
K900 ⚡️ | Do we really not have a way to skip tests for a specific package | 17:11:49 |
K900 ⚡️ | https://github.com/NixOS/nixpkgs/pull/439646 | 17:23:06 |
K900 ⚡️ | If anyone has better ideas I'm all ears | 17:23:11 |
Sandro 🐧 | maybe this? https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/python-modules/wandb/default.nix#L158-L168 | 18:09:14 |
K900 ⚡️ | The problem is that the test names are weirdly generic | 18:11:37 |
K900 ⚡️ | So I don't want to skip them by name | 18:11:40 |
Sandro 🐧 | you could also change the code t.Skip("the test is broken") | 18:37:07 |
Sandro 🐧 | or you can do ``go test `go list ./... | grep -v this_is_broken``` | 18:38:09 |
Sandro 🐧 | * or you can do go test $(go list ./... | grep -v this\_is\_broken) | 18:38:22 |
Sandro 🐧 | * or you can do go test $(go list ./... | grep -v this_is_broken) | 18:38:28 |
| 3 Sep 2025 |
| ghpzin joined the room. | 18:27:08 |
| 7 Sep 2025 |
| nkl joined the room. | 15:54:10 |
| 8 Sep 2025 |
| inayet set a profile picture. | 02:17:16 |
| 10 Sep 2025 |
| @jolman:matrix.org joined the room. | 00:25:00 |
| 11 Sep 2025 |
| Ihar Hrachyshka joined the room. | 00:07:57 |
| 12 Sep 2025 |
antifuchs | I'm not sure if I asked this before, but I have a nix golang package that builds a javascript "frontend" to include as a set of static files that's copied to the go source tree before baking that into the build result. Is there a sane way to override that? the go derivation exposes the frontend package on passthru.frontend, but I don't see an obvious way to override that and have the changes take. | 14:14:10 |
loudgolem | you can use overrideAttrs on the package and use the new fronted obtained by overriding package.passthru.fronted. | 14:17:54 |
loudgolem | eg. https://github.com/NixOS/nixpkgs/blob/cda98a359c8ff5af6d425363e6c69ee9fedde899/pkgs/by-name/op/opengist/package.nix#L74
https://github.com/phanirithvij/system/blob/97de9c4ad2709fb49c3be17cdaf29137930d974b/nixos/applications/opengist.nix#L76-L88
don't know if it can help | 14:19:17 |
loudgolem | * eg. https://github.com/NixOS/nixpkgs/blob/cda98a359c8ff5af6d425363e6c69ee9fedde899/pkgs/by-name/op/opengist/package.nix#L74
https://github.com/phanirithvij/system/blob/97de9c4ad2709fb49c3be17cdaf29137930d974b/nixos/applications/opengist.nix#L76-L88
don't know if it can help but here is one | 14:19:30 |
antifuchs | hmmm, yeah, if the outer package used passthru.frontend in the patch phase, that would work (it does not); sounds like I have to file a PR, thanks! | 14:26:22 |
antifuchs | (and thanks for confirming I'm not going insane, phew) | 14:26:31 |
| 14 Sep 2025 |
| @emma:rory.gay joined the room. | 08:39:57 |
| 23 Sep 2025 |
| kenji changed their display name from a-kenji to kenji. | 10:37:34 |
| @jolman:matrix.org left the room. | 20:12:34 |
| 30 Sep 2025 |
| 17lifers (at mikuplushfarm) joined the room. | 16:05:29 |
| 17lifers (at mikuplushfarm) left the room. | 18:39:35 |
| 8 Oct 2025 |
| Andrew Zah joined the room. | 17:14:29 |
| 10 Oct 2025 |
qbit | blarg, getting different vendorHash values on stable vs unstable - anyone else seeing that? | 13:44:32 |
antifuchs | Different go toolchain versions, maybe? | 14:02:09 |