nixpkgs/pkgs/development/libraries/haskell/yesod-static/default.nix
Andres Löh fd258d6fe1 Added complete yesod.
Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
2011-08-07 22:51:22 +00:00

20 lines
650 B
Nix

{cabal, base64Bytestring, cereal, pureMD5, text, transformers,
waiAppStatic, yesodCore} :
cabal.mkDerivation (self : {
pname = "yesod-static";
version = "0.1.0.1";
sha256 = "0icb1wp0ndvl54shjyv0apmias60j2gjbcv7i92dxnl3fzx74d3p";
propagatedBuildInputs = [
base64Bytestring cereal pureMD5 text transformers 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.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})