2014-04-16 17:39:12 +02:00
|
|
|
{ cabal, aeson, digestiveFunctors, HUnit, lens, mtl, safe
|
|
|
|
, scientific, tasty, tastyHunit, text, vector
|
2014-01-11 23:16:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "digestive-functors-aeson";
|
2014-05-10 00:18:06 +02:00
|
|
|
version = "1.1.8";
|
|
|
|
sha256 = "0qvzr9s0vzgzh7mix6ncjn731krln9w47zrqb5jkj92rv7mf5sgz";
|
2014-02-10 11:05:57 +01:00
|
|
|
buildDepends = [ aeson digestiveFunctors lens safe text vector ];
|
2014-01-11 23:16:07 +01:00
|
|
|
testDepends = [
|
2014-04-16 17:39:12 +02:00
|
|
|
aeson digestiveFunctors HUnit mtl scientific tasty tastyHunit text
|
2014-01-11 23:16:07 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ocharles/digestive-functors-aeson";
|
|
|
|
description = "Run digestive-functors forms against JSON";
|
|
|
|
license = self.stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|