haskell-hakyll: update to version 4.3.1.0

This commit is contained in:
Peter Simons 2013-06-19 09:27:55 +02:00
parent 5e5b04d00a
commit f14d6839b1

View File

@ -1,28 +1,28 @@
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs { cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
, cryptohash, dataDefault, deepseq, filepath, fsnotify, httpConduit , cryptohash, dataDefault, deepseq, filepath, fsnotify, httpConduit
, httpTypes, HUnit, lrucache, mtl, pandoc, parsec, QuickCheck , httpTypes, HUnit, lrucache, mtl, network, pandoc, parsec
, random, regexBase, regexTdfa, snapCore, snapServer , QuickCheck, random, regexBase, regexTdfa, snapCore, snapServer
, systemFilepath, tagsoup, testFramework, testFrameworkHunit , systemFilepath, tagsoup, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, text, time , testFrameworkQuickcheck2, text, time
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "hakyll"; pname = "hakyll";
version = "4.3.0.0"; version = "4.3.1.0";
sha256 = "188j3spdi2mivx5a10whpb09fm8yhg54ddfwc6x0k040c7q3aq0q"; sha256 = "1cx5pf0wf49cylbcgy1di218qk0fw8rgzqri9lx1v8jfl31zvsg5";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash
dataDefault deepseq filepath fsnotify httpConduit httpTypes dataDefault deepseq filepath fsnotify httpConduit httpTypes
lrucache mtl pandoc parsec random regexBase regexTdfa snapCore lrucache mtl network pandoc parsec random regexBase regexTdfa
snapServer systemFilepath tagsoup text time snapCore snapServer systemFilepath tagsoup text time
]; ];
testDepends = [ testDepends = [
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash
dataDefault deepseq filepath fsnotify httpConduit httpTypes HUnit dataDefault deepseq filepath fsnotify httpConduit httpTypes HUnit
lrucache mtl pandoc parsec QuickCheck random regexBase regexTdfa lrucache mtl network pandoc parsec QuickCheck random regexBase
snapCore snapServer systemFilepath tagsoup testFramework regexTdfa snapCore snapServer systemFilepath tagsoup testFramework
testFrameworkHunit testFrameworkQuickcheck2 text time testFrameworkHunit testFrameworkQuickcheck2 text time
]; ];
doCheck = false; doCheck = false;
@ -31,9 +31,6 @@ cabal.mkDerivation (self: {
description = "A static website compiler library"; description = "A static website compiler library";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [ maintainers = [ self.stdenv.lib.maintainers.andres ];
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
}; };
}) })