2011-08-29 22:27:28 +02:00
|
|
|
{ cabal, monadControl, persistent, text }:
|
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 = "persistent-template";
|
2011-10-03 22:21:07 +02:00
|
|
|
version = "0.6.3";
|
|
|
|
sha256 = "1vcjvfjxmv9c0wg7pbx0lw73128f5y0r4sfdsyq3jrkkiq1bgsxa";
|
2011-08-29 22:27:28 +02:00
|
|
|
buildDepends = [ monadControl persistent text ];
|
2011-07-07 23:40:40 +02:00
|
|
|
meta = {
|
2011-08-29 22:27:28 +02:00
|
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Type-safe, non-relational, multi-backend persistence";
|
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
|
|
|
};
|
|
|
|
})
|