23 lines
780 B
Nix
23 lines
780 B
Nix
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
|
, cryptohash, fileEmbed, httpTypes, systemFilepath, text
|
|
, transformers, unixCompat, wai, waiAppStatic, yesodCore
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-static";
|
|
version = "1.1.2";
|
|
sha256 = "0rh5vdpiq1ryw7isyaqqw3sif833k8j32m47lvr0dj46lj2jz0a0";
|
|
buildDepends = [
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
|
httpTypes systemFilepath 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 ];
|
|
};
|
|
})
|