!VRULIdgoKmKPzJZzjj:nixos.org

Nix Hackers

900 Members
For people hacking on the Nix package manager itself191 Servers

Load older messages


SenderMessageTime
8 Jun 2021
@manveru:matrix.orgmanveru
❮ ~/github/nixos/nix/result/bin/nix build .#nixosConfigurations.alpha.config.system.build.toplevel
warning: Git tree '/home/manveru/nixos-conf' is dirty
error: attribute 'dc=iog' missing for call to 'getAttr'

       at /nix/store/zjmnwn76xzxw3j7v1p98fd0aywpvyylf-source/nixos/modules/services/databases/openldap.nix:281:41:

          280|         mkLoadScript = dn: let
          281|           dataDir = lib.escapeShellArg (getAttr dn dataDirs);
             |                                         ^
          282|         in  ''
(use '--show-trace' to show detailed location information)
08:22:29
@manveru:matrix.orgmanverumuch nicer :)08:22:31
@manveru:matrix.orgmanverunow... how do you write a test for this?08:29:02
@manveru:matrix.orgmanveru it seems like builtins.tryEval doesn't catch this still 08:31:03
@manveru:matrix.orgmanveru builtins.unsafeGetAttrPos "bar" (builtins.listToAttrs [ { name = "foo"; value = "bar"; } ]) returns null in both the fixed and unfixed version... 08:33:00
@theophane:hufschmitt.netRegnat
In reply to @manveru:matrix.org
now... how do you write a test for this?
That’s very good question. I fear the best solution is to grep stderr to ensure that there’s a proper error message and check the return code (should be different between a segfault and a proper exit)
08:37:49
@manveru:matrix.orgmanveruanyway, here's my PR: https://github.com/NixOS/nix/pull/489508:37:46
@manveru:matrix.orgmanveruhm, i see, most other tests are ad-hoc shell scripts as well08:40:00
@manveru:matrix.orgmanveruok, got a working test now as well :)09:03:14
@manveru:matrix.orgmanveruthanks a lot09:03:16
@theophane:hufschmitt.netRegnat niksnut Looking at the GC again, is it correct that Exprs are generally leaking? 17:09:09
@niksnut:matrix.orgniksnutIt's by design17:09:51
@niksnut:matrix.orgniksnutThere is basically no point in GC'ing ASTs17:11:08
@niksnut:matrix.orgniksnutSince they generally exist for the duration of the program17:11:30
@theophane:hufschmitt.netRegnatOh, do they? I kind-of assumed that once a thunk is evaluated, the underlying AST isn’t used anymore (and is unreachable anyways)17:29:18
@theophane:hufschmitt.netRegnatI’ll have to review my understanding of the evaluator then 🤔17:34:01
@niksnut:matrix.orgniksnutAST nodes are shared by all the thunks that refer to them17:46:32
@niksnut:matrix.orgniksnutAnd there is a file cache, so if you import a file twice you get the same AST17:47:00
@niksnut:matrix.orgniksnutBut the most important thing is that AST memory usage is bounded by the set of Nix expressions imported17:48:16
@niksnut:matrix.orgniksnutUnlike values, of which there can be arbitrarily many during an eval17:48:42
@theophane:hufschmitt.netRegnat
In reply to @niksnut:matrix.org
But the most important thing is that AST memory usage is bounded by the set of Nix expressions imported
Ahah, yes, that’s true
18:09:41
@theophane:hufschmitt.netRegnatI wonder though whether there’s something to gain from freeing them at the end of the eval… but given that there’s no clear point where we finish the eval, it probably doesn’t make much sense18:10:54
9 Jun 2021
@matto153:matrix.orgmatto153 joined the room.08:06:21
@matto153:matrix.orgmatto153Hello all08:17:41
@joerg:bethselamin.deMic92 (Old)I assume flakes cannot have git submodules?11:42:14
@manveru:matrix.orgmanveru Mic92: they can... but it's a major PITA 11:50:42
@manveru:matrix.orgmanveruyou basically have to import self with fetchGit and submodules11:51:11
@joerg:bethselamin.deMic92 (Old) manveru: do you have an example? 11:51:29
@manveru:matrix.orgmanveruand it only works if the dir isn't dirty :P11:51:33
@manveru:matrix.orgmanveru fullself = builtins.fetchGit { url = "https://whatever"; ref = "master"; rev = self.rev; submodules = true; }; 11:52:41

Show newer messages


Back to Room ListRoom Version: 6