Newer
Older
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
{ mkDerivation, ansi-wl-pprint, attoparsec, base, bytestring
, containers, double-conversion, hspec, hspec-discover, lib
, optparse-applicative, pipes, pipes-attoparsec, pipes-bytestring
, pipes-parse, pipes-safe, template-haskell, text, transformers
}:
mkDerivation {
pname = "gcodehs";
version = "0.1.2.0";
sha256 = "cd3f08a490e7ff8350f34899ba28c9d30fe9852caa6dabcea2d9442ada044024";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-wl-pprint attoparsec base bytestring containers
double-conversion pipes pipes-attoparsec pipes-bytestring
pipes-parse pipes-safe template-haskell text transformers
];
executableHaskellDepends = [
attoparsec base bytestring containers double-conversion
optparse-applicative pipes pipes-safe text transformers
];
testHaskellDepends = [
ansi-wl-pprint attoparsec base bytestring hspec hspec-discover text
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/distrap/gcodehs";
description = "GCode processor";
license = lib.licenses.bsd3;
broken = false;
}