nixpkgs/pkgs/development/libraries/haskell/persistent-template/default.nix

16 lines
580 B
Nix
Raw Normal View History

{ cabal, aeson, monadControl, persistent, text, transformers }:
cabal.mkDerivation (self: {
pname = "persistent-template";
version = "0.9.0.2";
sha256 = "1x3xn5dxv41hbadb0riss046lcr3k0h4rg6cvk60x8zxblrswabw";
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.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})