about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-04-28 19:17:58 +0200
committerPeter Simons <simons@cryp.to>2014-04-29 01:35:48 +0200
commitfa92bc88ca5777e3d11ecd5cc749c09e4c5716e4 (patch)
treef6d73c62501b2049f76229083cd12c7f4d1b6820
parent8884a80caf601d62cc2853b7576dccd26846f579 (diff)
haskell-shakespeare-text: update to version 1.1.0
-rw-r--r--pkgs/development/libraries/haskell/shakespeare-text/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/libraries/haskell/shakespeare-text/default.nix b/pkgs/development/libraries/haskell/shakespeare-text/default.nix
index fa5b91dd46932..924e4a9891fd2 100644
--- a/pkgs/development/libraries/haskell/shakespeare-text/default.nix
+++ b/pkgs/development/libraries/haskell/shakespeare-text/default.nix
@@ -1,14 +1,13 @@
-{ cabal, hspec, HUnit, shakespeare, text }:
+{ cabal, shakespeare }:
 
 cabal.mkDerivation (self: {
   pname = "shakespeare-text";
-  version = "1.0.2";
-  sha256 = "0vhk5g5pm3gz8gzr7cbvkp920x4lmb9pkb9k6yhlj8wfb93bg93q";
-  buildDepends = [ shakespeare text ];
-  testDepends = [ hspec HUnit text ];
+  version = "1.1.0";
+  sha256 = "18ixixb9aqn630s9wblxcki1gggm4i0fj9752c55p3b42q8h86rc";
+  buildDepends = [ shakespeare ];
   meta = {
     homepage = "http://www.yesodweb.com/book/shakespearean-templates";
-    description = "Interpolation with quasi-quotation: put variables strings";
+    description = "Interpolation with quasi-quotation: put variables strings (deprecated)";
     license = self.stdenv.lib.licenses.mit;
     platforms = self.ghc.meta.platforms;
     maintainers = [ self.stdenv.lib.maintainers.andres ];