nixpkgs/pkgs/development/libraries/haskell/yesod-static/default.nix
2013-11-26 21:09:23 +01:00

36 lines
1.4 KiB
Nix

{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
, cryptohashCryptoapi, dataDefault, fileEmbed, filepath, hjsmin
, hspec, httpTypes, HUnit, mimeTypes, processConduit, resourcet
, shakespeareCss, systemFileio, systemFilepath, text, transformers
, unixCompat, unorderedContainers, wai, waiAppStatic, waiTest
, yesodCore, yesodTest
}:
cabal.mkDerivation (self: {
pname = "yesod-static";
version = "1.2.1.1";
sha256 = "009p6hq6hwmvji40yqv97v1sfwdfh44pasp68cxw05czhcwwcacv";
buildDepends = [
base64Bytestring cereal conduit cryptoConduit cryptohashCryptoapi
dataDefault fileEmbed filepath hjsmin httpTypes mimeTypes
processConduit resourcet shakespeareCss systemFileio systemFilepath
text transformers unixCompat unorderedContainers wai waiAppStatic
yesodCore
];
testDepends = [
base64Bytestring cereal conduit cryptoConduit cryptohashCryptoapi
dataDefault fileEmbed filepath hjsmin hspec httpTypes HUnit
mimeTypes processConduit resourcet shakespeareCss systemFileio
systemFilepath text transformers unixCompat unorderedContainers wai
waiAppStatic waiTest yesodCore yesodTest
];
doCheck = false;
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 ];
};
})