-
Notifications
You must be signed in to change notification settings - Fork 1
/
pkg.nix
23 lines (23 loc) · 951 Bytes
/
pkg.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, aeson, aeson-generic-shorthand, base, binary
, binary-instances, blaze-html, blaze-markup, bytestring
, containers, coordinate, directory, either, exceptions, filepath
, formatting, lens, lens-aeson, modern-uri, mtl, mustache, pandoc
, pretty-simple, req, shake, slick, stdenv, taggy-lens, tagsoup
, tagsoup-navigate, text, time, unordered-containers, validation
}:
mkDerivation {
pname = "acthpa-website";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson aeson-generic-shorthand base binary binary-instances
blaze-html blaze-markup bytestring containers coordinate directory
either exceptions filepath formatting lens lens-aeson modern-uri
mtl mustache pandoc pretty-simple req shake slick taggy-lens
tagsoup tagsoup-navigate text time unordered-containers validation
];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}