4bad71cdd6
svn path=/nixpkgs/trunk/; revision=30749
19 lines
619 B
Nix
19 lines
619 B
Nix
{ cabal, monadControl, persistent, text, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent-template";
|
|
version = "0.6.3.1";
|
|
sha256 = "0hppxd80q7bnxz9vm08i278d9k95w6z139y73dy53ncqkp72ahrg";
|
|
buildDepends = [ 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
|
|
];
|
|
};
|
|
})
|