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

16 lines
578 B
Nix

{ cabal, aeson, monadControl, persistent, text, transformers }:
cabal.mkDerivation (self: {
pname = "persistent-template";
version = "1.1.2";
sha256 = "1hz8cxx2a84c93x364vgahmv4xd3cbpjx4j7si5n0pasyq3clbvr";
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 ];
};
})