2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, persistent, persistentTemplate, transformers, yesodCore }:
|
2011-07-07 23:40:40 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:40 +02:00
|
|
|
pname = "yesod-persistent";
|
2012-02-10 12:34:15 +01:00
|
|
|
version = "0.3.1";
|
|
|
|
sha256 = "0pxzwqrq4wr9hdnppi5ri0iip2a8gg2y7lplmhn2791jc001ll7m";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
persistent persistentTemplate transformers yesodCore
|
2011-07-07 23:40:40 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Some helpers for using Persistent from Yesod";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-07 23:40:40 +02:00
|
|
|
};
|
|
|
|
})
|