deliciouslytyped

Results 207 comments of deliciouslytyped

Is this what causes `Error while creating repo for /build/src/some.domain/go/some-project: Unable to retrieve local repo information`? Though I'm a bit confused by that message because I'm pretty sure my package...

Ok I'm trying to use `go2nix save` on a repository acquired via `fetchgit` and the `.git` looks kind of odd. Edit: fetchgit results in some kind of strange `.git`. Also...

https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/fetchgit/nix-prefetch-git

My script currently looks horrific but I can confirm that having patched the `nix-store --add` line out of `nix-prefetch-git`, this *appears* to work.

I'm not sure what it means to continue after getting an exit code, but in the case where I just want an exit code and the data, but still using...

**Edit:** consider the content of this post moved to https://github.com/deliciouslytyped/make-groupedtargets This post is going to be a bit off topic, but it seems as good a place as any to...

Usage example: ``` $ cat Makefile define make-dir $1/.dum: $(dir $1) mkdir $(dir $@) touch $(dir $@)/.dum endef $(trace $(call make-dir,test)) all: $ remake -r test/.dum: ./ mkdir touch /.dum...