Edward Amsden

Results 51 comments of Edward Amsden

After further investigation, this appears to be a bug in the wrapped pcap library.

It turns out that the issue is in treating the definition of `struct sockaddr` literally. `struct sockaddr` is just something to cast individual types of addresses, such as `struct sockaddr_in`...

The structure that the pcap library presents as a sockaddr structure isn't really a sockaddr structure, but a sockaddr_in structure, or a sockaddr_in6 structure, or a sockaddr_ll structure. So its...

@owickstrom I'm interested in implementing this but it definitely requires discussion and your sign-off on the design before I can start working on it.

The idea of a model underlying a widget recurs in GTK, for instance, `GtkMenu` and `GtkMenuBar`, as subclasses of `GtkMenuShell`, can take `GMenuModel` (defined in the `gio` lib with a...

One subtle thing here is that the widget itself can update the model. Users can drag-and-drop to reorder rows, rows can be editable, etc. We need some way to feed...

@owickstrom Have you gotten a chance to look at this more closely? I'd really like to start implementing it.

I was just investigating this in our builds. `$ grep -oa '/nix/store/9ygpwbg32bc5689hwbzsjx6x58d1l6q7-gcc-9.2.0/.*' path/to/exe` I get a large number of `.h` files that appear to live in a copy of a...

As expected, setting `{ dontStrip = false; enableShared = false; }` for the executable I tested eliminates the GCC dependency.

> The following change seems to have resolved the issue @roberth has been seeing: > > ``` > packages.ghc.flags.ghci = pkgs.lib.mkForce true; > packages.ghci.flags.ghci = pkgs.lib.mkForce true; > ``` I...