-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs-generated.nix
36 lines (36 loc) · 1.62 KB
/
docs-generated.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
33
34
35
36
{ mkDerivation, ansi-terminal, base, bytestring, concurrent-extra
, configurator, containers, cryptohash, data-default-class
, directory, dlist, docopt, download, filelock, filepath, Glob
, haskeline, hspec, logging, MissingH, mtl, neat-interpolation
, OrthoLang, parsec, path, path-io, posix-escape, pretty, process
, progress-meter, QuickCheck, random, random-shuffle
, raw-strings-qq, regex-compat, regex-posix, retry, safe-exceptions
, scientific, setlocale, shake, silently, split, stdenv, strict
, tasty, tasty-golden, tasty-hspec, tasty-hunit, tasty-quickcheck
, temporary, terminal-size, text, time, transformers
, unbounded-delays, unix, utility-ht, zlib
}:
mkDerivation {
pname = "Docs";
version = "0.1";
src = ./.;
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
executableHaskellDepends = [
ansi-terminal base bytestring concurrent-extra configurator
containers cryptohash data-default-class directory dlist docopt
download filelock filepath Glob haskeline hspec logging MissingH
mtl neat-interpolation OrthoLang parsec path path-io posix-escape
pretty process progress-meter QuickCheck random random-shuffle
raw-strings-qq regex-compat regex-posix retry safe-exceptions
scientific setlocale shake silently split strict tasty tasty-golden
tasty-hspec tasty-hunit tasty-quickcheck temporary terminal-size
text time transformers unbounded-delays unix utility-ht zlib
];
# TODO remove?
executablePkgconfigDepends = [ zlib ];
description = "Partial automation for updating the ortholang-demo docs";
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}