haskell-graphmod: new package

This commit is contained in:
Mateusz Kowalczyk 2014-10-04 07:54:12 +01:00
parent 817ebe24ab
commit 5bb8260bfb
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, dotgen, filepath, haskellLexer }:
cabal.mkDerivation (self: {
pname = "graphmod";
version = "1.2.5";
sha256 = "1rmrsfvajzrak7jlhwnvhrgszgyg1b6z5wp21k0d7pv2cbfdkp8s";
isLibrary = false;
isExecutable = true;
buildDepends = [ dotgen filepath haskellLexer ];
meta = {
homepage = "http://github.com/yav/graphmod/wiki";
description = "Present the module dependencies of a program as a \"dot\" graph";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1024,6 +1024,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
Graphalyze = callPackage ../development/libraries/haskell/Graphalyze {};
graphmod = callPackage ../development/tools/haskell/graphmod {};
graphviz = callPackage ../development/libraries/haskell/graphviz {};
graphSCC = callPackage ../development/libraries/haskell/graphscc {};