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-09-11 12:33:23 +02:00
|
|
|
version = "0.6.2";
|
|
|
|
sha256 = "1gnqryn701b97fwzjhkk4x4k7p1w5w8cdn5x9hz8sb68vkgrplfx";
|
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
|
|
|
};
|
|
|
|
})
|