about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Graphalyze/default.nix
blob: 0eca1c7edfc128668143d6af819d3264e89ff3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, bktrees, fgl, graphviz, pandoc}:

cabal.mkDerivation (self : {
  pname = "Graphalyze";
  version = "0.10.0.1";
  sha256 = "8f273de41c7c340d2c7c8b4797d30535e4038616055099cc52bc5d21c10d9f22";
  propagatedBuildInputs = [bktrees fgl graphviz pandoc ];
  meta = {
    description = "A library to use graph theory analysis";
    license = "OtherLicene";
  };
})