nixpkgs/pkgs/development/libraries/haskell/yesod-bin/default.nix

33 lines
1.3 KiB
Nix
Raw Normal View History

{ cabal, attoparsec, base64Bytestring, blazeBuilder, Cabal, conduit
, dataDefaultClass, 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.6.1";
sha256 = "0w3qar315w96139j16fq4py4qs83bhm6pab9pzjbx8h451sqjarh";
isLibrary = false;
isExecutable = true;
buildDepends = [
attoparsec base64Bytestring blazeBuilder Cabal conduit
dataDefaultClass 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;
};
})