23 lines
782 B
Nix
23 lines
782 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.0.1";
|
|
sha256 = "1hlg32bhmhc5npd0bm317mssrddf7jzhwr0z3ns0dpiynz9mh0vy";
|
|
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 ];
|
|
};
|
|
})
|