From c5c473b469191c6c49a35932a7633f960b7bc7c5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 19 Apr 2012 15:11:58 +0000 Subject: [PATCH] haskell-SourceGraph: updated to version 0.7.0.2 svn path=/nixpkgs/trunk/; revision=33843 --- .../tools/haskell/SourceGraph/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/haskell/SourceGraph/default.nix b/pkgs/development/tools/haskell/SourceGraph/default.nix index 80714727741..731722126ca 100644 --- a/pkgs/development/tools/haskell/SourceGraph/default.nix +++ b/pkgs/development/tools/haskell/SourceGraph/default.nix @@ -1,16 +1,16 @@ -{ cabal, Cabal, extensibleExceptions, fgl, filepath, Graphalyze -, graphviz, haskellSrcExts, mtl, multiset, random +{ cabal, Cabal, fgl, filepath, Graphalyze, graphviz, haskellSrcExts +, mtl, multiset, random }: cabal.mkDerivation (self: { pname = "SourceGraph"; - version = "0.7.0.1"; - sha256 = "0f6h240a72cxa65cwjrp34cx80c6frzhgl9dpv3krc8xzhxssk78"; + version = "0.7.0.2"; + sha256 = "0cdspzsz15r83fjry9467z67h6vvnjh31fip6gf64k74gdjkfisl"; isLibrary = false; isExecutable = true; buildDepends = [ - Cabal extensibleExceptions fgl filepath Graphalyze graphviz - haskellSrcExts mtl multiset random + Cabal fgl filepath Graphalyze graphviz haskellSrcExts mtl multiset + random ]; meta = { description = "Static code analysis using graph-theoretic techniques";