3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/yesod/default.nix
2012-11-08 14:57:37 +01:00

37 lines
1.5 KiB
Nix

{ cabal, attoparsec, base64Bytestring, blazeBuilder, blazeHtml
, blazeMarkup, Cabal, conduit, fileEmbed, filepath, fsnotify
, ghcPaths, hamlet, httpConduit, httpReverseProxy, httpTypes
, liftedBase, monadControl, network, optparseApplicative, parsec
, projectTemplate, resourcet, shakespeare, shakespeareCss
, shakespeareJs, shakespeareText, split, systemFileio
, systemFilepath, tar, text, time, transformers, unixCompat
, unorderedContainers, wai, waiExtra, warp, yaml, yesodAuth
, yesodCore, yesodDefault, yesodForm, yesodJson, yesodPersistent
, zlib
}:
cabal.mkDerivation (self: {
pname = "yesod";
version = "1.1.3";
sha256 = "18yc8ri3kjim9kr41i286if9ahq8avk90zigvbmnb82rnz4nn9ls";
isLibrary = true;
isExecutable = true;
buildDepends = [
attoparsec base64Bytestring blazeBuilder blazeHtml blazeMarkup
Cabal conduit fileEmbed filepath fsnotify ghcPaths hamlet
httpConduit httpReverseProxy httpTypes liftedBase monadControl
network optparseApplicative parsec projectTemplate resourcet
shakespeare shakespeareCss shakespeareJs shakespeareText split
systemFileio systemFilepath tar text time transformers unixCompat
unorderedContainers wai waiExtra warp yaml yesodAuth yesodCore
yesodDefault yesodForm yesodJson yesodPersistent zlib
];
meta = {
homepage = "http://www.yesodweb.com/";
description = "Creation of type-safe, RESTful web applications";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})