-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
27 lines (27 loc) · 1.18 KB
/
default.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
26
27
{ mkDerivation, acid-state, aeson, authenticate, base
, base64-bytestring, boomerang, bytestring, containers
, data-default, email-validate, filepath, happstack-hsp
, happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs
, http-conduit, http-types, ixset-typed, jmacro, jwt, lens
, mime-mail, mtl, pwstore-purehaskell, random, safecopy
, shakespeare, stdenv, text, time, unordered-containers, userid
, web-routes, web-routes-boomerang, web-routes-happstack
, web-routes-hsp, web-routes-th
}:
mkDerivation {
pname = "happstack-authenticate";
version = "2.3.4.7";
src = ./.;
libraryHaskellDepends = [
acid-state aeson authenticate base base64-bytestring boomerang
bytestring containers data-default email-validate filepath
happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro
hsx2hs http-conduit http-types ixset-typed jmacro jwt lens
mime-mail mtl pwstore-purehaskell random safecopy shakespeare text
time unordered-containers userid web-routes web-routes-boomerang
web-routes-happstack web-routes-hsp web-routes-th
];
homepage = "http://www.happstack.com/";
description = "Happstack Authentication Library";
license = stdenv.lib.licenses.bsd3;
}