summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/SourceGraph/default.nix
blob: 0987989051f15d7b11cd28ec6983d17801df1e83 (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
{ cabal, extensibleExceptions, fgl, Graphalyze, graphviz
, haskellSrcExts, mtl, multiset, random
}:

cabal.mkDerivation (self: {
  pname = "SourceGraph";
  version = "0.7.0.1";
  sha256 = "0f6h240a72cxa65cwjrp34cx80c6frzhgl9dpv3krc8xzhxssk78";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [
    extensibleExceptions fgl Graphalyze graphviz haskellSrcExts mtl
    multiset random
  ];
  meta = {
    description = "Static code analysis using graph-theoretic techniques";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})