fd258d6fe1
Some downgrades were necessary. svn path=/nixpkgs/trunk/; revision=28364
20 lines
650 B
Nix
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 ];
|
|
};
|
|
})
|