2011-08-12 02:18:56 +02:00
|
|
|
{ cabal, bktrees, extensibleExceptions, fgl, graphviz, pandoc
|
|
|
|
, random, time
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2010-10-13 23:18:35 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-10-13 23:18:35 +02:00
|
|
|
pname = "Graphalyze";
|
2011-08-08 00:00:32 +02:00
|
|
|
version = "0.11.0.0";
|
|
|
|
sha256 = "1aplfd0qp7ypr9rh4v4x5g8f4b0d1w0dcgz7hgjm9haqcsv37a79";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-08-12 02:18:56 +02:00
|
|
|
bktrees extensibleExceptions fgl graphviz pandoc random time
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
2010-10-13 23:18:35 +02:00
|
|
|
meta = {
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Graph-Theoretic Analysis library";
|
2011-08-08 00:00:32 +02:00
|
|
|
license = "unknown";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-10-13 23:18:35 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|