summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-01-17 11:19:09 +0100
committerPeter Simons <simons@cryp.to>2013-01-17 11:19:09 +0100
commit3544f3223166583f1e5459822250f1821b258c1e (patch)
tree7e8e86f3959ae7b69e532f5bd50cb81077f6dd99 /pkgs/development
parent8150827219951e56f336f5bf90770fe4adc7927f (diff)
downloadnixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar.gz
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar.bz2
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar.lz
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar.xz
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.tar.zst
nixpkgs-3544f3223166583f1e5459822250f1821b258c1e.zip
haskell-hakyll: update to version 4.0.0.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/hakyll/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/libraries/haskell/hakyll/default.nix b/pkgs/development/libraries/haskell/hakyll/default.nix
index 944246ae234..9b708eff020 100644
--- a/pkgs/development/libraries/haskell/hakyll/default.nix
+++ b/pkgs/development/libraries/haskell/hakyll/default.nix
@@ -1,16 +1,19 @@
-{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash
-, filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase
-, regexTdfa, snapCore, snapServer, tagsoup, text, time
+{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
+, cryptohash, deepseq, filepath, httpConduit, httpTypes, lrucache
+, mtl, pandoc, parsec, random, regexBase, regexTdfa, snapCore
+, snapServer, tagsoup, text, time
 }:
 
 cabal.mkDerivation (self: {
   pname = "hakyll";
-  version = "3.5.3.0";
-  sha256 = "1r8vz42lxnnxx875jnf0ii9x99g7wz2fmknscxvm40prp2df1z6v";
+  version = "4.0.0.0";
+  sha256 = "165r9x158nnnwzd1cxymskkxvfhxsnpam8bi3gjy8bql8arsibzr";
+  isLibrary = true;
+  isExecutable = true;
   buildDepends = [
-    binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
-    lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
-    tagsoup text time
+    binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq
+    filepath httpConduit httpTypes lrucache mtl pandoc parsec random
+    regexBase regexTdfa snapCore snapServer tagsoup text time
   ];
   meta = {
     homepage = "http://jaspervdj.be/hakyll";