about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-09-08 22:05:41 +0200
committerPeter Simons <simons@cryp.to>2013-09-08 22:56:28 +0200
commitcd9728173187b3078f283d59a9363285092e7977 (patch)
tree07537b9c11cce1d7d24c9b381204540f932fca97
parentbe6549a4bf3671b117109e37a40bd77d0423d943 (diff)
downloadnixlib-cd9728173187b3078f283d59a9363285092e7977.tar
nixlib-cd9728173187b3078f283d59a9363285092e7977.tar.gz
nixlib-cd9728173187b3078f283d59a9363285092e7977.tar.bz2
nixlib-cd9728173187b3078f283d59a9363285092e7977.tar.lz
nixlib-cd9728173187b3078f283d59a9363285092e7977.tar.xz
nixlib-cd9728173187b3078f283d59a9363285092e7977.tar.zst
nixlib-cd9728173187b3078f283d59a9363285092e7977.zip
haskell-yaml: update to version 0.8.5
-rw-r--r--pkgs/development/libraries/haskell/yaml/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/libraries/haskell/yaml/default.nix b/pkgs/development/libraries/haskell/yaml/default.nix
index 1e22f1ae4bac..7e2bd368c7e2 100644
--- a/pkgs/development/libraries/haskell/yaml/default.nix
+++ b/pkgs/development/libraries/haskell/yaml/default.nix
@@ -4,14 +4,17 @@
 
 cabal.mkDerivation (self: {
   pname = "yaml";
-  version = "0.8.4.1";
-  sha256 = "0zbnyf5hp206ywqkdd7c1hsdbn4wxwk7p3rzn53m7rzxvfshlbbx";
+  version = "0.8.5";
+  sha256 = "12jj785gzcnrif460cx2k69pc2h9h956g0w1gp8pcr5hawrvd6rg";
+  isLibrary = true;
+  isExecutable = true;
   buildDepends = [
     aeson attoparsec conduit resourcet text transformers
     unorderedContainers vector
   ];
   testDepends = [
-    conduit hspec HUnit text transformers unorderedContainers
+    aeson conduit hspec HUnit text transformers unorderedContainers
+    vector
   ];
   meta = {
     homepage = "http://github.com/snoyberg/yaml/";