Evan Laforge

Results 11 issues of Evan Laforge

startServer starts a new thread, and if that thread can't get the given port, it throws an exception back to the main process. This means that there seems to be...

**Describe the bug** When enabling `ca-derivations`, if I build a bunch of drvs that use it or are downstream from one that does, I frequently get a crash like: ```...

bug
ca-derivations

This is a question more than an issue, please let me know if there's a more appropriate place to ask. To make it an actionable issue maybe we could say...

A-enhance
E-helpwanted
question

Zsh has a binding called push-line, which I bind to ^e. It pushes the current contents of the command line onto a stack, which is popped when you next hit...

This is an attempt to to see if a drv's output is present in in the the given cache: > nix store verify --verbose --no-contents --no-trust --store http://some.cache /nix/store/8xgabwx29ahpqv5ry3bsmd7nhzajc269-name.drv I'd...

bug

Here is a process that has been hung for 6 days: `elaforge 2909 0.0 0.1 514780 17684 ? Sl Jul25 0:00 /nix/store/zg66y04g2bvmw41cgrywysr86s40g5cc-nix-2.2/bin/nix copy --from https://cache.nixos.org /nix/store/jxw2sxagx9smpjklb00qzgiqgqv1zvl6-Groq.Util.Exceptions --option allowed-impure-host-deps /groq /etc/hostname...

```haskell module BadError where {- I get: Couldn't match expected type ‘() -> Either String Int’ with actual type ‘Either String Int’ ... | 6 | x

tool:GHC
type:error-message
status:Composing error message

This may be the same issue as #224, but it's on mac OS so I thought I'd mention it separately. I tried to test out the fix at https://github.com/haskell/process/pull/232, but...

Looking at the source there doesn't seem to be any particular reason to omit Show. My best guess is that it's since some details are platform dependent, but since Show...

The idiomatic way to shadow a variable in nix is vie nested lets: ``` let x = 10; in let x_ = x; in let x = x_ + 1;...