haskell-Graphalyze: updated to version 0.12.0.0

This update obsoletes the requirement on Pandoc 1.6, which has
subsequently been removed from the repository.

svn path=/nixpkgs/trunk/; revision=28630
This commit is contained in:
Peter Simons 2011-08-16 23:23:49 +00:00
parent 8d20464e27
commit 7f9f3672a4
4 changed files with 6 additions and 37 deletions

View File

@ -1,13 +1,13 @@
{ cabal, bktrees, extensibleExceptions, fgl, graphviz, pandoc
, random, time
, random, text, time
}:
cabal.mkDerivation (self: {
pname = "Graphalyze";
version = "0.11.0.0";
sha256 = "1aplfd0qp7ypr9rh4v4x5g8f4b0d1w0dcgz7hgjm9haqcsv37a79";
version = "0.12.0.0";
sha256 = "0lsbwf08flaifdddbg6d3ndrb2d1wzs943hk7n0m316bvahq6kgx";
buildDepends = [
bktrees extensibleExceptions fgl graphviz pandoc random time
bktrees extensibleExceptions fgl graphviz pandoc random text time
];
meta = {
description = "Graph-Theoretic Analysis library";

View File

@ -1,25 +0,0 @@
{ cabal, extensibleExceptions, HTTP, mtl, network, parsec, random
, syb, texmath, utf8String, xhtml, xml, zipArchive
}:
cabal.mkDerivation (self: {
pname = "pandoc";
version = "1.6.0.1";
sha256 = "1imi6xkqzdy9y8kab04x8pn11r55j699apwrqvcz99j6f5g7xs9x";
isLibrary = true;
isExecutable = true;
buildDepends = [
extensibleExceptions HTTP mtl network parsec random syb texmath
utf8String xhtml xml zipArchive
];
meta = {
homepage = "http://johnmacfarlane.net/pandoc";
description = "Conversion between markup formats";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View File

@ -635,9 +635,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
gtkC = pkgs.gtkLibs.gtk;
};
Graphalyze = callPackage ../development/libraries/haskell/Graphalyze {
pandoc = self.pandoc_1_6_0_1;
};
Graphalyze = callPackage ../development/libraries/haskell/Graphalyze {};
graphviz = callPackage ../development/libraries/haskell/graphviz {};
@ -913,11 +911,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
pandoc_1_6_0_1 = callPackage ../development/libraries/haskell/pandoc/1.6.0.1.nix {
texmath = self.texmath_0_4;
};
pandoc_1_8_2_1 = callPackage ../development/libraries/haskell/pandoc/1.8.2.1.nix {};
pandoc = self.pandoc_1_8_2_1;
pandoc = callPackage ../development/libraries/haskell/pandoc/default.nix {};
pandocTypes = callPackage ../development/libraries/haskell/pandoc-types {};