Enable expressions for 'important' parts of the rest framework from Silk.co

This commit is contained in:
Daniel Austin
2014-07-17 07:36:46 +02:00
parent d518ef91c0
commit 62f01119f3
17 changed files with 303 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ cabal, aeson, attoparsec, scientific, text }:
cabal.mkDerivation (self: {
pname = "aeson-utils";
version = "0.2.2.1";
sha256 = "0sj4kdcxcj2wnf3s109yxq8gghz976hkiqs19bjcp6qkzdf5w6sd";
buildDepends = [ aeson attoparsec scientific text ];
meta = {
description = "Utilities for working with Aeson";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})