2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, persistent, persistentTemplate, transformers, yesodCore }:
|
2011-07-07 14:40:40 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 14:40:40 -07:00
|
|
|
pname = "yesod-persistent";
|
2012-08-09 03:10:54 -07:00
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "0c8cvc2gy9ixa0h79ycnyi86indny2i86g5xcg30a2rvc4mjbaaj";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
persistent persistentTemplate transformers yesodCore
|
2011-07-07 14:40:40 -07:00
|
|
|
];
|
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Some helpers for using Persistent from Yesod";
|
2012-04-05 09:51:59 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 16:00:20 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 14:40:40 -07:00
|
|
|
};
|
|
|
|
})
|