-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyesod-middleware-csp.nix
25 lines (25 loc) · 1.06 KB
/
yesod-middleware-csp.nix
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
{ mkDerivation, base, base64-bytestring, bytestring
, case-insensitive, classy-prelude, classy-prelude-yesod, conduit
, containers, directory, fast-logger, filepath, hspec, http-client
, http-types, lib, monad-logger, network-uri, template-haskell
, text, time, uuid, wai-extra, yesod, yesod-core, yesod-static
, yesod-test
}:
mkDerivation {
pname = "yesod-middleware-csp";
version = "1.1.0";
sha256 = "1jrfd8r7xvyc556q04qvrib1rwwlsy0rnbc7nxrnqpvn1wv1pb0q";
libraryHaskellDepends = [
base base64-bytestring bytestring classy-prelude conduit containers
directory filepath http-client network-uri template-haskell text
time uuid yesod yesod-core yesod-static
];
testHaskellDepends = [
base base64-bytestring bytestring case-insensitive classy-prelude
classy-prelude-yesod conduit containers directory fast-logger
filepath hspec http-types monad-logger network-uri template-haskell
text uuid wai-extra yesod yesod-core yesod-static yesod-test
];
description = "A middleware for building CSP headers on the fly";
license = lib.licenses.mit;
}