mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
26 lines
815 B
Nix
26 lines
815 B
Nix
{ cabal, base64Bytestring, Cabal, cereal, conduit, cryptoConduit
|
|
, cryptohash, fileEmbed, httpTypes, text, transformers, unixCompat
|
|
, wai, waiAppStatic, yesodCore
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-static";
|
|
version = "0.10.1";
|
|
sha256 = "07dapygk2n6d7sk39gwi06w96b13dqhxgx3l7ac198nil5x2m68m";
|
|
buildDepends = [
|
|
base64Bytestring Cabal cereal conduit cryptoConduit cryptohash
|
|
fileEmbed httpTypes 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.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|