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";
|
2012-08-30 13:02:00 +02:00
|
|
|
version = "0.7.0.3";
|
|
|
|
sha256 = "04bx7przxha38n9vckcxz3mbcxcws5ifbc1xfm0rg6bn8rym78yb";
|
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
|
|
|
};
|
|
|
|
})
|