Merge pull request #662 from rnons/yesod-bin

yesod-bin: as of yesod 1.2, binaries are kept in yesod-bin.
This commit is contained in:
Peter Simons 2013-06-22 05:09:35 -07:00
commit 933f77f10d
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ cabal, attoparsec, base64Bytestring, blazeBuilder, Cabal, conduit
, fileEmbed, filepath, fsnotify, ghcPaths, httpConduit
, httpReverseProxy, httpTypes, liftedBase, network, networkConduit
, optparseApplicative, parsec, projectTemplate, resourcet
, shakespeare, shakespeareCss, shakespeareJs, shakespeareText
, split, systemFileio, systemFilepath, tar, text, time
, transformers, unixCompat, unorderedContainers, wai, warp, yaml
, zlib
}:
cabal.mkDerivation (self: {
pname = "yesod-bin";
version = "1.2.0.1";
sha256 = "0dikjxs1wdqv87ng6iqnnc3pwi3hzgqfwnnj3bb1fpz4plv4bnbc";
isLibrary = false;
isExecutable = true;
buildDepends = [
attoparsec base64Bytestring blazeBuilder Cabal conduit fileEmbed
filepath fsnotify ghcPaths httpConduit httpReverseProxy httpTypes
liftedBase network networkConduit optparseApplicative parsec
projectTemplate resourcet shakespeare shakespeareCss shakespeareJs
shakespeareText split systemFileio systemFilepath tar text time
transformers unixCompat unorderedContainers wai warp yaml zlib
];
meta = {
homepage = "http://www.yesodweb.com/";
description = "The yesod helper executable";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2117,6 +2117,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
yesodAuth = callPackage ../development/libraries/haskell/yesod-auth {};
yesodBin = callPackage ../development/libraries/haskell/yesod-bin {};
yesodCore = callPackage ../development/libraries/haskell/yesod-core {};
yesodDefault = callPackage ../development/libraries/haskell/yesod-default {};