_0mp changed the topic of #freebsd-nix to: Adding Nix to FreeBSD ports | https://github.com/0mp/freebsd-ports-nix | https://logs.nix.samueldr.com/freebsd-nix
mikael has quit [Quit: No Ping reply in 180 seconds.]
koobs has quit [Ping timeout: 240 seconds]
mikael has joined #freebsd-nix
koobs has joined #freebsd-nix
<qyliss> I've figured out what Mic92's issue in https://github.com/NixOS/nixpkgs/pull/81459 was
<qyliss> Nix uses kill(-pid, ...) to kill a process group, which isn't POSIX
<qyliss> The POSIX way is to killpg(pid, ...)
<qyliss> so Nix just needs to be changed to do that instead, which should be very easy
<simpson> qyliss++
mikael has left #freebsd-nix ["Gone riding."]
<qyliss> oh no I'm wrong :(
<qyliss> FreeBSD does implement that
<Mic92> I was als surprised about that.