76c27de286
svn path=/nixpkgs/trunk/; revision=32248
19 lines
632 B
Nix
19 lines
632 B
Nix
{ cabal, aeson, monadControl, persistent, text, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent-template";
|
|
version = "0.8.1.1";
|
|
sha256 = "1wl669h8az9wviaq04pwg7w3g5cc90hafn2f1p3jybbif0hpqhks";
|
|
buildDepends = [ aeson monadControl persistent text transformers ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
description = "Type-safe, non-relational, multi-backend persistence";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|