Merge pull request #3520 from pavelkogan/SourceGraph

new packages: SourceGraph + dependency
This commit is contained in:
Peter Simons 2014-08-10 22:42:56 +02:00
commit 43fd39de43
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, bktrees, fgl, filepath, graphviz, pandoc, random, text
, time
}:
cabal.mkDerivation (self: {
pname = "Graphalyze";
version = "0.14.1.0";
sha256 = "0pyrhpl06lsppr8ch21crinkax7fh0k18wfvgjinc8phkk6j5hz3";
buildDepends = [
bktrees fgl filepath graphviz pandoc random text time
];
meta = {
description = "Graph-Theoretic Analysis library";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -0,0 +1,22 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, Cabal, fgl, filepath, Graphalyze, graphviz, haskellSrcExts
, mtl, multiset, random
}:
cabal.mkDerivation (self: {
pname = "SourceGraph";
version = "0.7.0.6";
sha256 = "03psglm6xyqvcgnbimidafy51kwpipk5q6s8ip5vhjm2d5makkhm";
isLibrary = false;
isExecutable = true;
buildDepends = [
Cabal fgl filepath Graphalyze graphviz haskellSrcExts mtl multiset
random
];
meta = {
description = "Static code analysis using graph-theoretic techniques";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -992,6 +992,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
gtkTraymanager = callPackage ../development/libraries/haskell/gtk-traymanager {};
Graphalyze = callPackage ../development/libraries/haskell/Graphalyze {};
graphviz = callPackage ../development/libraries/haskell/graphviz {};
graphSCC = callPackage ../development/libraries/haskell/graphscc {};
@ -2863,6 +2865,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
ShellCheck = callPackage ../development/tools/misc/ShellCheck { };
SourceGraph = callPackage ../development/tools/haskell/SourceGraph {};
tar = callPackage ../development/libraries/haskell/tar {};
threadscope = callPackage ../development/tools/haskell/threadscope {};