haskell-SourceGraph: added version 0.7.0.1
svn path=/nixpkgs/trunk/; revision=30813
This commit is contained in:
parent
3d72cfb211
commit
b76db1c8ac
24
pkgs/development/tools/haskell/SourceGraph/default.nix
Normal file
24
pkgs/development/tools/haskell/SourceGraph/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user