2012-04-19 17:11:58 +02:00
|
|
|
{ cabal, Cabal, fgl, filepath, Graphalyze, graphviz, haskellSrcExts
|
|
|
|
, mtl, multiset, random
|
2011-12-09 19:07:29 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "SourceGraph";
|
2013-01-04 19:17:23 +01:00
|
|
|
version = "0.7.0.4";
|
|
|
|
sha256 = "1rxbanvw1dpdnpmrf5gpl12gn9796yq89dnmdxy56mb9qzsm7nm6";
|
2011-12-09 19:07:29 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-04-19 17:11:58 +02:00
|
|
|
Cabal fgl filepath Graphalyze graphviz haskellSrcExts mtl multiset
|
|
|
|
random
|
2011-12-09 19:07:29 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "Static code analysis using graph-theoretic techniques";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-09 19:07:29 +01:00
|
|
|
};
|
|
|
|
})
|