| 23 Nov 2024 |
nebucatnetzer13 | If someone would like to have a look at a small PR: https://github.com/NixOS/nixpkgs/pull/351666 | 08:39:44 |
| Koen (SynQ) de Jonge joined the room. | 09:45:09 |
| Weijia joined the room. | 09:45:12 |
infinisil | My presentation: https://docs.google.com/presentation/d/1qwIU_qe9nTJL3csTETDhLrz3rC7EjPqxFPl_Gpsx6No/edit?usp=sharing :) | 09:45:35 |
Koen (SynQ) de Jonge | let's start out with just upgrading my laptop to nixos-24.11
sound=true; should be removed from your configuration. | 09:50:47 |
| Georgiy Shevoroshkin joined the room. | 09:53:59 |
matthewcroughan | Robert Hensing (roberth): https://github.com/ALT-F4-LLC/vorpal | 09:56:41 |
| majfontana joined the room. | 09:57:17 |
| tfc joined the room. | 09:57:21 |
| robinha joined the room. | 09:58:09 |
| lpzimmermann joined the room. | 10:02:17 |
elikoga | https://github.com/NixOS/nixpkgs/pull/358371 | 10:39:33 |
Marc Jakobi | does someone here have a commit bit on the nix-community/infra repo?
(trying to get the community builders working)
https://github.com/nix-community/infra/pull/1581 | 10:49:04 |
tfc | please have a look at these relevant PRs:
- https://github.com/NixOS/nixpkgs/pull/358365
- https://github.com/NixOS/nixpkgs/pull/358363
| 10:57:33 |
Lorenz | Small PR for etesync-dav: https://github.com/NixOS/nixpkgs/pull/358373 | 11:14:31 |
elikoga | ON https://zh.fail/
What is up with python3.12-celery-5.4.0-dist ? As far as I can see this test is somehow flaky (not reliable) but it works on trunk | 11:14:41 |
Lorenz | * Small PR for etesync-dav: https://github.com/NixOS/nixpkgs/pull/358373 Please tell me if I did something wrong | 11:20:35 |
| @maralorn:maralorn.de joined the room. | 11:21:10 |
@maralorn:maralorn.de | 👋 If anyone has Haskell packaging related questions hit me up. | 11:22:19 |
@johannes.kirschbauer:scs.ems.host | Can sb build this on darwin for me ?
https://github.com/NixOS/nixpkgs/pull/358398 | 11:23:30 |
tricktron | @Anyone with a darwin machine: https://github.com/NixOS/nixpkgs/pull/358392
Make sure to build with sandbox, e.g. nix-build -A python312Packages.amqp --option sandbox true
| 11:24:24 |
tricktron | Johannes Kirschbauer @hsjobeki: I'll have a look at it. | 11:25:21 |
infinisil | Ivan Mincik (imincik):
let
pkgs = import <nixpkgs> {};
inherit (pkgs) lib;
recurse = path: attrs:
let
isDerivation = builtins.tryEval (lib.isDerivation attrs);
in
if ! isDerivation.success then
"<failure>"
else if isDerivation.value then
path
#attrs.name or "<unknown name>"
else if lib.isAttrs attrs && (attrs.recurseForDerivations or false) then
lib.mapAttrs (n: recurse (path ++ [n])) attrs
else
null;
in lib.mapAttrs (n: recurse [n]) pkgs
| 11:28:05 |
Jeremy Stucki | https://github.com/NixOS/nixpkgs/pull/358399 | 11:30:31 |
Kerstin (she/her) | I maintain python3Packages.python-redis-test und it fails to build on darwin. I have no access to the platform. Should I just restrict the platforms then, even though upstream doesn't explicitly not support darwin? Or should I wait until end of ZHF for it? | 11:30:36 |
matthewcroughan | Anyone got experience with fortran/medfile/ints ? | 11:47:17 |
matthewcroughan | I wanted to upstream https://github.com/MatthewCroughan/codedisaster into nixpkgs, but need some help making it happen, if anyone is interested in finite-element-analysis, but this is not related to reducing hydra failures, so only if you're interested :) | 11:48:09 |
@johannes.kirschbauer:scs.ems.host | In reply to @erictapen:chat.ccc-p.org I maintain python3Packages.python-redis-test und it fails to build on darwin. I have no access to the platform. Should I just restrict the platforms then, even though upstream doesn't explicitly not support darwin? Or should I wait until end of ZHF for it? Did you look at the build log. Sometimes it is trivial to fix even if you dont have a builder | 11:56:26 |
Weijia | https://hydra.nixos.org/build/278421390/nixlog/2 | 11:57:52 |
Weijia | Probably shouldn't run the tests on darwin... | 11:57:56 |