summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yesod-static/default.nix
blob: 8fcaaf9627f2c2cdfb6719bc94cf10ea3c4edbba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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
    ];
  };
})