summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-09-06 13:13:30 +0200
committerPeter Simons <simons@cryp.to>2013-09-06 23:35:11 +0200
commitb94cf8c733f0620d06281b6cc071fc27759148ae (patch)
treeee75433e5d7b55e318a6c081054901c6b1e57d45 /pkgs/development/tools
parenteedc69957a506929179a053401c0fe8ba7140f86 (diff)
downloadnixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar.gz
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar.bz2
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar.lz
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar.xz
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.tar.zst
nixlib-b94cf8c733f0620d06281b6cc071fc27759148ae.zip
haskell-HaRe: update to version 0.7.0.1
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/haskell/HaRe/default.nix22
1 files changed, 17 insertions, 5 deletions
diff --git a/pkgs/development/tools/haskell/HaRe/default.nix b/pkgs/development/tools/haskell/HaRe/default.nix
index 88f5d0baee67..bb2a13411285 100644
--- a/pkgs/development/tools/haskell/HaRe/default.nix
+++ b/pkgs/development/tools/haskell/HaRe/default.nix
@@ -1,12 +1,24 @@
-{ cabal, filepath, hint, mtl, network, syb }:
+{ cabal, cmdtheline, deepseq, Diff, filepath, ghcMod, ghcPaths
+, ghcSybUtils, hslogger, hspec, HUnit, mtl, parsec, QuickCheck
+, rosezipper, silently, StrafunskiStrategyLib, stringbuilder, syb
+, syz, time, transformers
+}:
 
 cabal.mkDerivation (self: {
   pname = "HaRe";
-  version = "0.6.0.2";
-  sha256 = "13mi6z37fszrl97mll4injhq8dyhqzm344x7y2vw8krr5xjj3kw2";
-  isLibrary = false;
+  version = "0.7.0.1";
+  sha256 = "1ykbyc6p71k6rs85vcsjgk47cxd2lda3iw78jzs0fx43qr1dywnl";
+  isLibrary = true;
   isExecutable = true;
-  buildDepends = [ filepath hint mtl network syb ];
+  buildDepends = [
+    cmdtheline filepath ghcMod ghcPaths ghcSybUtils hslogger mtl parsec
+    rosezipper StrafunskiStrategyLib syb syz time transformers
+  ];
+  testDepends = [
+    deepseq Diff filepath ghcMod ghcPaths ghcSybUtils hslogger hspec
+    HUnit mtl QuickCheck rosezipper silently StrafunskiStrategyLib
+    stringbuilder syb syz time transformers
+  ];
   meta = {
     homepage = "http://www.cs.kent.ac.uk/projects/refactor-fp";
     description = "the Haskell Refactorer";