cabbage
cabbage copied to clipboard
A tool for caching cabal builds in a Nix store
Rather than the current business of passing `-framework` flags directly to GHC in the generated `default.nix` files, we should add `with pkgs.darwin.apple_sdk.frameworks; [$frameworks]` to `systemDeps`.
I have a project that requires c2hs. I tried making a `cabbage.config` containing ``` systemDeps: c2hs: c2hs ``` but this results in a warning and a possibly unrelated error from...
Sometimes you want to depend on a system library that is not yet on nixpkgs. That would require writing a .nix file for it, but I am not sure how...
When I try to build a [toyproject](https://github.com/cocreature/trccbot-hs) I'm getting the following error on `nix-shell --command 'sh $setup'`. I run `cabbage -a` before. I also tried deleting `.cabbages`, `cabal.config`, `cabal clean`...
I'm trying to run the demos from acowley/Frames. ``` shell cd ~/sources/Frames cabbage nix-shell --pure -p haskellngPackages.cabal-install haskellngPackages.ghc cabal repl *Frames> :l demo/Main.hs demo/Main.hs:6:8: Could not find module `Lens.Family' It...