mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
haskell-yesod-default: added version 0.5.0
svn path=/nixpkgs/trunk/; revision=31982
This commit is contained in:
parent
0ff6866501
commit
e11c942238
23
pkgs/development/libraries/haskell/yesod-default/default.nix
Normal file
23
pkgs/development/libraries/haskell/yesod-default/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ cabal, cmdargs, dataObject, dataObjectYaml, shakespeareCss
|
||||
, shakespeareJs, text, transformers, wai, waiExtra, warp, yesodCore
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "yesod-default";
|
||||
version = "0.5.0";
|
||||
sha256 = "02j9567nmyxr68q8p8ihbig9b6f9p9ciif8nlp03mfkbq10hwrm3";
|
||||
buildDepends = [
|
||||
cmdargs dataObject dataObjectYaml shakespeareCss shakespeareJs text
|
||||
transformers wai waiExtra warp yesodCore
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://www.yesodweb.com/";
|
||||
description = "Default config and main functions for your yesod application";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
@ -1473,6 +1473,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
pathPieces = self.pathPieces_0_0_0;
|
||||
};
|
||||
|
||||
yesodDefault = callPackage ../development/libraries/haskell/yesod-default {};
|
||||
|
||||
yesodForm = callPackage ../development/libraries/haskell/yesod-form {};
|
||||
|
||||
yesodJson = callPackage ../development/libraries/haskell/yesod-json {};
|
||||
|
Loading…
Reference in New Issue
Block a user