nixpkgs/pkgs/development/libraries/haskell/yesod-form/default.nix
Andres Löh 6f43e422ba Added yesod-form and yesod-json.
svn path=/nixpkgs/trunk/; revision=27654
2011-07-07 21:40:46 +00:00

22 lines
697 B
Nix

{cabal, blazeBuilder, blazeHtml, dataDefault, emailValidate, hamlet,
network, persistent, text, transformers, wai, webRoutesQuasi,
xssSanitize, yesodCore, yesodPersistent}:
cabal.mkDerivation (self : {
pname = "yesod-form";
version = "0.2.0";
sha256 = "1dwwndrb09bqfzrarxpiw29xqvxk70iy8b2vcy0rl6g2wvrcm8an";
propagatedBuildInputs = [
blazeBuilder blazeHtml dataDefault emailValidate hamlet
network persistent text transformers wai webRoutesQuasi
xssSanitize yesodCore yesodPersistent
];
noHaddock = true;
meta = {
description = "Form handling support for Yesod Web Framework";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})