haskell-SourceGraph: added version 0.7.0.1

svn path=/nixpkgs/trunk/; revision=30813
This commit is contained in:
Peter Simons 2011-12-09 18:07:29 +00:00
parent 3d72cfb211
commit b76db1c8ac
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,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
];
};
})

View File

@ -1426,6 +1426,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
hslogger = callPackage ../development/tools/haskell/hslogger {};
SourceGraph = callPackage ../development/tools/haskell/SourceGraph {};
tar = callPackage ../development/tools/haskell/tar {};
threadscope = callPackage ../development/tools/haskell/threadscope {};