From e0c204a940b9c0ee77baa883f52041eca9904814 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Aug 2012 11:54:22 +0200 Subject: [PATCH] haskell-hakyll: patch to allow building with latest version of 'hamlet' --- pkgs/development/libraries/haskell/hakyll/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/hakyll/default.nix b/pkgs/development/libraries/haskell/hakyll/default.nix index 8dfeb9413d3..8908597d488 100644 --- a/pkgs/development/libraries/haskell/hakyll/default.nix +++ b/pkgs/development/libraries/haskell/hakyll/default.nix @@ -12,6 +12,9 @@ cabal.mkDerivation (self: { mtl pandoc parsec regexBase regexTdfa snapCore snapServer tagsoup text time ]; + patchPhase = '' + sed -i hakyll.cabal -e 's|hamlet.*,|hamlet,|' + ''; meta = { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library";