2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, aeson, monadControl, persistent, text, transformers }:
|
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";
|
2012-05-15 13:50:48 +02:00
|
|
|
version = "0.9.0.2";
|
|
|
|
sha256 = "1x3xn5dxv41hbadb0riss046lcr3k0h4rg6cvk60x8zxblrswabw";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ aeson monadControl persistent text transformers ];
|
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";
|
2012-04-09 14:37:39 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 23:40:40 +02:00
|
|
|
};
|
|
|
|
})
|