Anthony Cowley
Anthony Cowley
Example code: ``` testPlot :: IO () testPlot = do env
It's from [`diagrams-rasterific`](http://hackage.haskell.org/package/diagrams-rasterific-0.1.0.5/docs/Diagrams-Backend-Rasterific.html) Here are more imports for the test program ``` import Diagrams.Backend.Rasterific import Diagrams.TwoD.Size (sizeSpec2D) import Graphics.Rendering.Chart.Backend.Diagrams (defaultEnv, runBackendR) import Graphics.Rendering.Chart.Easy ```
Thanks for digging in to it. Unfortunately, I'm not going to be able to write a new backend soon, either. Who should we pull in to see if an easier...
Thanks @bergey! I've been running with ``` diagrams-lib-1.2.0.7 diagrams-rasterific-0.1.0.5 ```
@bergey `FontyFruity` was updated to expose more bounding box information, but when I looked into this, I found that `Chart-diagrams` uses an [SVG path](https://github.com/timbod7/haskell-chart/blob/master/chart-diagrams/Graphics/Rendering/Chart/Backend/Diagrams.hs#L351) for figuring out text metrics. Doesn't...
I don't think you need that `cabbage.config` file. The warning message is awful, and most likely due to an existing directory with `c2hs`'s source. What happens is that the script...
Weird. So the way it should work is that the generated `default.nix` defines a function, one of whose parameters is `c2hs` because it's listed as a build-tool. That seems to...
I'll have to run this down. The `shell.nix` should be calling `c2hs` explicitly, so something's gone wrong there.
Yeah, I lucked out in that there is already support for OS X frameworks. I'm pretty new to Nix, but I think this would be referred to as adding an...
Oh, sorry, I misunderstood. I thought you wanted to avoid writing the Nix file and just wanted to pull in a `.a` from somewhere. Okay, right, this is definitely solveable....