mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
commit
933f77f10d
2 changed files with 33 additions and 0 deletions
31
pkgs/development/libraries/haskell/yesod-bin/default.nix
Normal file
31
pkgs/development/libraries/haskell/yesod-bin/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue