-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathhackage.nix
More file actions
50 lines (50 loc) · 2.44 KB
/
hackage.nix
File metadata and controls
50 lines (50 loc) · 2.44 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ mkDerivation, aeson, aeson-pretty, attoparsec, attoparsec-aeson
, base, base-compat, bytestring, containers, Decimal, deepseq
, dlist, exceptions, generic-lens, hashable, http-types, ieee754
, lens, lib, math-functions, MissingH, monad-loops, mtl
, numeric-limits, openapi3, parallel, regex-base
, regex-pcre-builtin, regex-tdfa, scientific, servant
, servant-openapi3, servant-server, split, string-conversions
, swagger2, tabular, tasty, tasty-golden, tasty-hspec, tasty-hunit
, template-haskell, text, time, vector, wai, wai-cors, warp, yaml
}:
mkDerivation {
pname = "Hastructure";
version = "0.45.1";
sha256 = "049f3a72455c8744caeb26f1ee0e7f15628a43107bc12706526ea9199f9921bb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty attoparsec attoparsec-aeson base base-compat
bytestring containers Decimal deepseq dlist exceptions generic-lens
hashable http-types ieee754 lens math-functions MissingH
monad-loops mtl numeric-limits openapi3 parallel regex-base
regex-pcre-builtin regex-tdfa scientific servant servant-openapi3
servant-server split string-conversions swagger2 tabular
template-haskell text time vector wai wai-cors warp yaml
];
executableHaskellDepends = [
aeson aeson-pretty attoparsec attoparsec-aeson base base-compat
bytestring containers Decimal deepseq dlist exceptions generic-lens
hashable http-types ieee754 lens math-functions MissingH
monad-loops mtl numeric-limits openapi3 parallel regex-base
regex-pcre-builtin regex-tdfa scientific servant servant-openapi3
servant-server split string-conversions swagger2 tabular tasty
tasty-golden tasty-hspec tasty-hunit template-haskell text time
vector wai wai-cors warp yaml
];
testHaskellDepends = [
aeson aeson-pretty attoparsec attoparsec-aeson base base-compat
bytestring containers Decimal deepseq dlist exceptions generic-lens
hashable http-types ieee754 lens math-functions MissingH
monad-loops mtl numeric-limits openapi3 parallel regex-base
regex-pcre-builtin regex-tdfa scientific servant servant-openapi3
servant-server split string-conversions swagger2 tabular tasty
tasty-golden tasty-hspec tasty-hunit template-haskell text time
vector wai wai-cors warp yaml
];
homepage = "https://github.com/yellowbean/Hastructure#readme";
description = "Cashflow modeling library for structured finance";
license = lib.licenses.bsd3;
mainProgram = "Hastructure-exe";
}