cb28766341
svn path=/nixpkgs/trunk/; revision=32327
25 lines
798 B
Nix
25 lines
798 B
Nix
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
|
, cryptohash, fileEmbed, httpTypes, text, transformers, unixCompat
|
|
, wai, waiAppStatic, yesodCore
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-static";
|
|
version = "0.10.1";
|
|
sha256 = "07dapygk2n6d7sk39gwi06w96b13dqhxgx3l7ac198nil5x2m68m";
|
|
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.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|