1{
2 mkDerivation,
3 array,
4 base,
5 bytestring,
6 directory,
7 fetchgit,
8 filepath,
9 lib,
10 mtl,
11 pooled-io,
12 process,
13 relude,
14 tasty,
15 tasty-discover,
16 tasty-hunit,
17 text,
18}:
19mkDerivation {
20 pname = "avh4-lib";
21 version = "0.0.0.1";
22 src = fetchgit {
23 url = "https://github.com/avh4/elm-format";
24 sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l";
25 rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796";
26 fetchSubmodules = true;
27 };
28 postUnpack = "sourceRoot+=/avh4-lib; echo source root reset to $sourceRoot";
29 libraryHaskellDepends = [
30 array
31 base
32 bytestring
33 directory
34 filepath
35 mtl
36 pooled-io
37 process
38 relude
39 text
40 ];
41 testHaskellDepends = [
42 array
43 base
44 bytestring
45 directory
46 filepath
47 mtl
48 pooled-io
49 process
50 relude
51 tasty
52 tasty-hunit
53 text
54 ];
55 testToolDepends = [ tasty-discover ];
56 doHaddock = false;
57 description = "Common code for haskell projects";
58 license = lib.licenses.bsd3;
59}