2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, aeson, conduit, monadControl, persistent, text
|
2012-02-02 15:54:56 +01:00
|
|
|
, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "persistent-sqlite";
|
2012-05-09 13:25:59 +02:00
|
|
|
version = "0.9.0.2";
|
|
|
|
sha256 = "19wmz13k3qbpam2siykczgacgaj48yw4p7iz3y6v8a2z8wha73zb";
|
2012-02-02 15:54:56 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
aeson conduit monadControl persistent text transformers
|
2012-02-02 15:54:56 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
|
|
description = "Backend for the persistent library using sqlite3";
|
2012-04-09 14:37:39 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2012-02-02 15:54:56 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-02 15:54:56 +01:00
|
|
|
};
|
|
|
|
})
|