1: { callCabal2nixWithPlan }:
2: {
3: can-build-json-to-msgpack =
4: with {
5: # Try to build some Haskell project; this one's nice and small
6: src = fetchGit {
7: url = "http://chriswarbo.net/git/json-to-msgpack.git";
8: ref = "master";
9: rev = "cc98560d2c4dae2f9d8ba5ea4e2966233a5d5327";
10: };
11: };
12: callCabal2nixWithPlan {
13: inherit src;
14: name = "json-to-msgpack";
15: };
16: }