4e9175965c
- clientsession: updated to version 0.7.4.3 - data-default: updated to version 0.4.0 - hoogle: updated to version 4.2.11 - pandoc: updated to version 1.9.2 - yesod-core: updated to version 1.0.0.1 - yesod-form: updated to version 1.0.0.1 - yesod-static: updated to version 1.0.0.1 svn path=/nixpkgs/trunk/; revision=33636
22 lines
747 B
Nix
22 lines
747 B
Nix
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
|
, cryptohash, fileEmbed, httpTypes, text, transformers, unixCompat
|
|
, wai, waiAppStatic, yesodCore
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-static";
|
|
version = "1.0.0.1";
|
|
sha256 = "1zrpwd9dfqw5bzmrcsny4xkrw3y71ki8xhdfcyznf1bkmbnbim5n";
|
|
buildDepends = [
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
|
httpTypes text transformers unixCompat wai waiAppStatic yesodCore
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Static file serving subsite for Yesod Web Framework";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|