forked from clckwrks/clckwrks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
32 lines (32 loc) · 1.54 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
28
29
30
31
32
{ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
, blaze-html, bytestring, cereal, containers, directory, filepath
, happstack-authenticate, happstack-hsp, happstack-jmacro
, happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs
, ixset, jmacro, lens, mtl, network, network-uri, old-locale
, openssl, process, random, reform, reform-happstack, reform-hsp
, safecopy, stdenv, stm, tagsoup, text, time, time-locale-compat
, unordered-containers, userid, utf8-string, uuid-orphans
, uuid-types, vector, web-plugins, web-routes, web-routes-happstack
, web-routes-hsp, web-routes-th, xss-sanitize, cabalsdist, nixpkgs
}:
mkDerivation {
pname = "clckwrks";
version = "0.23.10";
src = nixpkgs.haskellFilterSource [] ./.;
libraryHaskellDepends = [
acid-state aeson aeson-qq attoparsec base blaze-html bytestring
cereal containers directory filepath happstack-authenticate
happstack-hsp happstack-jmacro happstack-server
happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl
network network-uri old-locale process random reform
reform-happstack reform-hsp safecopy stm tagsoup text time
time-locale-compat unordered-containers userid utf8-string
uuid-orphans uuid-types vector web-plugins web-routes
web-routes-happstack web-routes-hsp web-routes-th xss-sanitize
];
librarySystemDepends = [ openssl ];
buildTools = [ hsx2hs ];
homepage = "http://www.clckwrks.com/";
description = "A secure, reliable content management system (CMS) and blogging platform";
license = stdenv.lib.licenses.bsd3;
}