nixpkgs/pkgs/development/tools/haskell/SourceGraph/default.nix
Peter Simons c5c473b469 haskell-SourceGraph: updated to version 0.7.0.2
svn path=/nixpkgs/trunk/; revision=33843
2012-04-19 15:11:58 +00:00

22 lines
603 B
Nix

{ cabal, Cabal, fgl, filepath, Graphalyze, graphviz, haskellSrcExts
, mtl, multiset, random
}:
cabal.mkDerivation (self: {
pname = "SourceGraph";
version = "0.7.0.2";
sha256 = "0cdspzsz15r83fjry9467z67h6vvnjh31fip6gf64k74gdjkfisl";
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})