!LemuOOvbWqRXodtSsw:nixos.org

NixOS Reproducible Builds

531 Members
Report: https://reproducible.nixos.org Project progress: https://github.com/orgs/NixOS/projects/30117 Servers

Load older messages


SenderMessageTime
10 Jan 2023
@winterqt:nixos.devWinter (she/her) joined the room.04:58:13
@winterqt:nixos.devWinter (she/her) I know r13y is out of date, but does anyone know what was causing the two issues there (cpython and cbindgen), assuming they're fixed that is? The Python one just looks like it's swapping some ds for fs in the hexdump in the resulting pycs somehow (even though the ASCII characters, when applicable, stayed the same...?) while the cbindgen one looks a bit more complex (reordering of .text)? 05:01:04
@winterqt:nixos.devWinter (she/her)* I know r13y is out of date, but does anyone know what was causing the two issues there (cpython and cbindgen), assuming they're fixed that is? The Python one just looks like it's swapping some ds for fs in the hexdump in the resulting pycs somehow (even though the ASCII characters, when applicable, stayed the same...?) while the cbindgen one looks a bit more complex (reordering of .text).05:01:11
@winterqt:nixos.devWinter (she/her) * I know r13y is out of date, but does anyone know what was causing the two issues there (cpython and cbindgen), assuming they're fixed that is? The Python one just looks like it's swapping some ds for fs in the hexdump in the resulting pycs somehow (even though the ASCII characters, when applicable, stayed the same...?) while the cbindgen one looks a bit more complex (reordering of .text). 05:01:23
@raboof:matrix.orgraboofa more recent report is at https://arnout.engelen.eu/nixos-iso-minimal-r13y/07:10:38
@raboof:matrix.orgraboofI can't find the issue for cbindgen right now (on mobile) but I don't think I've seen that for a while, that might be fixed. For python, I think there are some issues that are fixed in python 3.11 (update expected after 23.05), but there might be remaining problems07:15:51
@raboof:matrix.orgraboofah, the cbindgen issue is https://github.com/NixOS/nixpkgs/issues/188988 - we haven't really explained that one, so that might still be in there, but it's hard to trigger intentionally07:47:52
@raboof:matrix.orgraboofpython is tracked in https://github.com/NixOS/nixpkgs/issues/18897807:51:43
@artturin:matrix.orgArtturinhttps://github.com/NixOS/nixpkgs/pull/21010220:59:55
11 Jan 2023
@afontain:gnugen.chafontain left the room.19:44:28
12 Jan 2023
@srid:matrix.orgsrid changed their profile picture.06:36:34
14 Jan 2023
@srid:matrix.orgsrid changed their profile picture.02:09:35
15 Jan 2023
@motiejus:jakstys.lt@motiejus:jakstys.lt joined the room.09:33:06
@motiejus:jakstys.lt@motiejus:jakstys.lt left the room.09:51:07
@moke:matrix.creeper-it.de@moke:matrix.creeper-it.de joined the room.13:56:49
18 Jan 2023
@raboof:matrix.orgraboofran the iso-gnome report again: https://arnout.engelen.eu/nixos-iso-gnome-r13y/ . nice batch of things to look into. (note that this is the build closure, so it contains not only the things that are in the gnome iso, but also the things that are needed to build the gnome iso)08:59:43
19 Jan 2023
@salfurium:matrix.orgSalfurium joined the room.22:32:21
20 Jan 2023
@tpw_rules:matrix.orgtpw_ruleshttps://github.com/NixOS/nixpkgs/blob/7cf8f9bcee843560e454d66392c3e28ad850c893/nixos/modules/virtualisation/qemu-vm.nix#L228 this is not at all reproducible despite wanting to be. e.g. how the disk cache is flushed and systemd writing random seeds to the image05:55:29
@tpw_rules:matrix.orgtpw_rules(mostly putting it here so i don't forget about it, don't know when i'll have time to address it if someone else wishes to)05:56:08
@rick:matrix.ciphernetics.nl@rick:matrix.ciphernetics.nlI suggest opening an issue on nixpkgs to keep track of long-term things :)06:58:10
@atemu12:matrix.orgatemu12I also don't think that's a very high priority, is it? It's the VM for tests, it doesn't need to be bit-perfect.08:43:26
@raboof:matrix.orgraboof
In reply to @raboof:matrix.org
ran the iso-gnome report again: https://arnout.engelen.eu/nixos-iso-gnome-r13y/ . nice batch of things to look into. (note that this is the build closure, so it contains not only the things that are in the gnome iso, but also the things that are needed to build the gnome iso)
hmm, a lot of them are duplicates of https://github.com/NixOS/nixpkgs/issues/151347 . I wonder if there's any easy way to convert derivation paths back to nixpkgs attribute paths (for those that have one), should probably be doable
11:59:38
@raboof:matrix.orgraboof
In reply to @raboof:matrix.org
ran the iso-gnome report again: https://arnout.engelen.eu/nixos-iso-gnome-r13y/ . nice batch of things to look into. (note that this is the build closure, so it contains not only the things that are in the gnome iso, but also the things that are needed to build the gnome iso)
* hmm, a lot of them are instances of https://github.com/NixOS/nixpkgs/issues/151347 . I wonder if there's any easy way to convert derivation paths back to nixpkgs attribute paths (for those that have one), should probably be doable
11:59:59
@atemu12:matrix.orgatemu12 raboof: Not that I'm aware of. 12:41:06
@atemu12:matrix.orgatemu12You could take a look at the drvs and filter out everything that has GHC in it/uses it to compile12:41:31
@trofi:matrix.org@trofi:matrix.org If you have a nixpkgs tree it should be easy. nix-env -qaP will print you both .drv and attribute. 13:11:54
@raboof:matrix.orgraboof Neat! Had to add --drv-path to get the full path. Unfortunately it doesn't recurse into haskellPackages... 13:53:36
@trofi:matrix.org@trofi:matrix.org yeah, to fix the recursion you need to pass packages-config.nix that exposes hidden attributes: pkgs/top-level/make-tarball.nix: nix-env -f . -I nixpkgs=$src -qa --meta --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp 13:59:18
@trofi:matrix.org@trofi:matrix.orghttps://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/make-tarball.nix#L6714:00:04
@trofi:matrix.org@trofi:matrix.org I use a similar hack locally to map .drv files back to attribute names and to repology package names: https://github.com/trofi/nix-olde/ 14:01:19

Show newer messages


Back to Room ListRoom Version: 6