haskell-hakyll: update to version 4.4.1.0

This commit is contained in:
Peter Simons 2013-10-10 11:50:47 +02:00
parent 04440788ad
commit 308420d64d

View File

@ -1,38 +1,34 @@
{ cabal, binary, blazeHtml, blazeMarkup, pandocCiteproc, cmdargs { cabal, binary, blazeHtml, blazeMarkup, cmdargs, cryptohash
, cryptohash, dataDefault, deepseq, filepath, fsnotify, httpConduit , dataDefault, deepseq, filepath, fsnotify, httpConduit, httpTypes
, httpTypes, HUnit, lrucache, mtl, network, pandoc, parsec , HUnit, lrucache, mtl, network, pandoc, pandocCiteproc, parsec
, QuickCheck, random, regexBase, regexTdfa, snapCore, snapServer , QuickCheck, random, regexBase, regexTdfa, snapCore, snapServer
, systemFilepath, tagsoup, testFramework, testFrameworkHunit , systemFilepath, tagsoup, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, text, time, fetchurl , testFrameworkQuickcheck2, text, time
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "hakyll"; pname = "hakyll";
version = "4.3.3.0"; version = "4.4.1.0";
sha256 = "11zfz55a7dr5l7xzknphqninyrb2pw2qmrs7v7ajq2gvbl0lf37n"; sha256 = "17bns61l5d0h8qyhbz5gnc4j9yjjajk57whp0j4gfshaq0s2aif9";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
patches = [ (fetchurl { url = "https://github.com/jaspervdj/hakyll/pull/183.patch";
sha256 = "0vjrxvgyc05nnshapjhk65pcamj9rigqff5q6wjbssx3ggqggrz9";
name = "hakyll-pandoc-fix.patch";
}) ];
buildDepends = [ buildDepends = [
binary blazeHtml blazeMarkup pandocCiteproc cmdargs cryptohash binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
dataDefault deepseq filepath fsnotify httpConduit httpTypes filepath fsnotify httpConduit httpTypes lrucache mtl network pandoc
lrucache mtl network pandoc parsec random regexBase regexTdfa pandocCiteproc parsec random regexBase regexTdfa snapCore
snapCore snapServer systemFilepath tagsoup text time snapServer systemFilepath tagsoup text time
]; ];
testDepends = [ testDepends = [
binary blazeHtml blazeMarkup pandocCiteproc cmdargs cryptohash binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
dataDefault deepseq filepath fsnotify httpConduit httpTypes HUnit filepath fsnotify httpConduit httpTypes HUnit lrucache mtl network
lrucache mtl network pandoc parsec QuickCheck random regexBase pandoc pandocCiteproc parsec QuickCheck random regexBase regexTdfa
regexTdfa snapCore snapServer systemFilepath tagsoup testFramework snapCore snapServer systemFilepath tagsoup testFramework
testFrameworkHunit testFrameworkQuickcheck2 text time testFrameworkHunit testFrameworkQuickcheck2 text time
]; ];
doCheck = false;
postPatch = '' postPatch = ''
sed -i -e 's|cryptohash.*,|cryptohash,|' -e 's|tagsoup.*,|tagsoup,|' hakyll.cabal sed -i -e 's|cryptohash.*,|cryptohash,|' -e 's|tagsoup.*,|tagsoup,|' hakyll.cabal
''; '';
doCheck = false;
meta = { meta = {
homepage = "http://jaspervdj.be/hakyll"; homepage = "http://jaspervdj.be/hakyll";
description = "A static website compiler library"; description = "A static website compiler library";