blob: d11e739cdd4ba6ff6731e0de42e2cd8d806c2671 (
plain) (
blame)
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
|
{ mkDerivation
, base
, Cabal
, containers
, directory
, dotgen
, filepath
, haskell-lexer
, lib
, pretty
}:
mkDerivation {
pname = "graphmod";
version = "1.4.5.1";
sha256 = "d72b70dd47ba85756e963681307d8dcf341e9d1f0c3b50bd34c33a4e429436cc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base
Cabal
containers
directory
dotgen
filepath
haskell-lexer
pretty
];
executableHaskellDepends = [ base ];
homepage = "http://github.com/yav/graphmod/wiki";
description = "Present the module dependencies of a program as a \"dot\" graph";
license = lib.licenses.bsd3;
mainProgram = "graphmod";
}
|