summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-06-02 10:38:18 +0200
committerPeter Simons <simons@cryp.to>2015-06-04 17:42:02 +0200
commit80e98ba00a308c5f5d0e212c07b82e889264f3d5 (patch)
treeee82830b81fed0c04280c8001343be6e39d8dbd6 /pkgs
parentf1d465f429252d7c58a920ad9d7ee93e34e7fad9 (diff)
downloadnixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar.gz
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar.bz2
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar.lz
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar.xz
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.tar.zst
nixlib-80e98ba00a308c5f5d0e212c07b82e889264f3d5.zip
hackage-packages.nix: update to https://github.com/commercialhaskell/all-cabal-files/commit/25f7b30351dfe1a8403f70bb5b9d1abebd6ac2fc with hackage2nix revision d8b7e62373ad16bdc2a5a93d0870bc05b814ac39
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/hackage-packages.nix1028
1 files changed, 723 insertions, 305 deletions
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 934fc10fc067..e049946d44a5 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -8,8 +8,8 @@ self: {
     ({ mkDerivation, base, GLUT, OpenGL, random }:
      mkDerivation {
        pname = "3d-graphics-examples";
-       version = "0.0.0.0";
-       sha256 = "1v2zv94npviggqfqabfzp7ab54nnw9wdb60y20f1lzw13an0a14q";
+       version = "0.0.0.1";
+       sha256 = "13b7n9mdx7f6a2ghikc7xvscbj8wp0dxcbm5alinnic433sandy5";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [ base GLUT OpenGL random ];
@@ -3202,8 +3202,8 @@ self: {
      }:
      mkDerivation {
        pname = "DSH";
-       version = "0.12.0.0";
-       sha256 = "0rv7jn6h5w2naz7h4psz258684rc2p2wyaqp1f6kqvk294mlmvrv";
+       version = "0.12.0.1";
+       sha256 = "1m69phqjrb4wg6fji5plw1mghyz7jzzqixljaa5gb5s0cy5gfkfy";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -3958,12 +3958,17 @@ self: {
      }) {};
 
   "Earley" = callPackage
-    ({ mkDerivation, base, containers, ListLike }:
+    ({ mkDerivation, base, containers, ListLike, tasty, tasty-hunit
+     , tasty-quickcheck, unordered-containers
+     }:
      mkDerivation {
        pname = "Earley";
-       version = "0.8.0";
-       sha256 = "0vg672jfj9a814pcbx19hkb2nsy0zndm1a98z5ygssy7m098cvgh";
-       buildDepends = [ base containers ListLike ];
+       version = "0.8.1";
+       sha256 = "0bzm6pwim3fv0d1fv6k3078661vlpc0pcrds4ywsqvgc4hd91myk";
+       isLibrary = true;
+       isExecutable = true;
+       buildDepends = [ base containers ListLike unordered-containers ];
+       testDepends = [ base tasty tasty-hunit tasty-quickcheck ];
        description = "Parsing all context-free grammars using Earley's algorithm";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -6755,8 +6760,8 @@ self: {
     ({ mkDerivation, base, hashable, mtl, unordered-containers }:
      mkDerivation {
        pname = "HMap";
-       version = "1.2.3";
-       sha256 = "0gxs0l5v2kzgy8lfyz0l3ivv1w6cb8sm30h6yv91np1nvj231nf3";
+       version = "1.2.4";
+       sha256 = "087a7ykk84lxa0c75wid6bkjmd89krgyrilxgps1fzl142hyvl13";
        buildDepends = [ base hashable mtl unordered-containers ];
        homepage = "https://github.com/atzeus/HMap";
        description = "Fast heterogeneous maps and unconstrained typeable like functionality";
@@ -10078,6 +10083,18 @@ self: {
        license = stdenv.lib.licenses.bsd3;
      }) {};
 
+  "MissingK" = callPackage
+    ({ mkDerivation, base, glib, template-haskell }:
+     mkDerivation {
+       pname = "MissingK";
+       version = "0.0.0.2";
+       sha256 = "0cynzg5piy14g5j576kf79dh4zqa5pcpwnpfl0fdkyy1rqm50q03";
+       buildDepends = [ base glib template-haskell ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Useful types and definitions missing from other libraries";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
   "MissingM" = callPackage
     ({ mkDerivation, base, HUnit, QuickCheck, test-framework
      , test-framework-hunit, test-framework-quickcheck2, transformers
@@ -17051,6 +17068,7 @@ self: {
          transformers
        ];
        testDepends = [ base directory doctest filepath ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/ad";
        description = "Automatic Differentiation";
        license = stdenv.lib.licenses.bsd3;
@@ -18536,14 +18554,15 @@ self: {
      }:
      mkDerivation {
        pname = "amazonka";
-       version = "0.3.4";
-       sha256 = "19fzhsrlsqrncngcmdl8wr0rbv8ff0k8y91dn6j1hacz0dv1whhk";
+       version = "0.3.5";
+       sha256 = "0i4wpkvf0yrgcdgz1pfmnig61d16lywh2mggf6xanp6pcrafh0xr";
        buildDepends = [
          amazonka-core base bytestring conduit conduit-extra cryptohash
          cryptohash-conduit exceptions http-conduit lens mmorph
          monad-control mtl resourcet retry text time transformers
          transformers-base transformers-compat
        ];
+       jailbreak = true;
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Comprehensive Amazon Web Services SDK";
        license = "unknown";
@@ -18553,8 +18572,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-autoscaling";
-       version = "0.3.4";
-       sha256 = "0kndkj4x7wmmxpsr3a42ck2zq7amm33axxlhwzlgi1gnv8v2v4y4";
+       version = "0.3.5";
+       sha256 = "0xbvviy5rvwiq0nj3wd420bl9zrb3625sils5y6y4zg9qzy3a7vx";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Auto Scaling SDK";
@@ -18565,8 +18584,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudformation";
-       version = "0.3.4";
-       sha256 = "0nhy1qn8abhnmr85n1ddshwjwns0gc0l1syznfg6g6cmazwq7809";
+       version = "0.3.5";
+       sha256 = "0xhm9lkm80v7i5my8vz6dz1g7zvm0b7kgzsl4swk20359p3fcs84";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudFormation SDK";
@@ -18577,8 +18596,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudfront";
-       version = "0.3.4";
-       sha256 = "1yp59hdxnnvjsdpaw4c311p30bg9xyj231hn2r1zis3awck8jlkk";
+       version = "0.3.5";
+       sha256 = "0aln5gk3gj2ma6s51rp4x3ygjsj6zn3abzns4qlb2r5cqcf7r9sb";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudFront SDK";
@@ -18589,8 +18608,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudhsm";
-       version = "0.3.4";
-       sha256 = "1f26vpfxqkkm1yli42xhbhhzya07gvg9kjhq5p51p32500aax4my";
+       version = "0.3.5";
+       sha256 = "00n8bchifihhijzacs0dmw4bxgl1xb1avbvzk9ic7a025vyp2vh3";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudHSM SDK";
@@ -18601,8 +18620,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudsearch";
-       version = "0.3.4";
-       sha256 = "0lp09i3h527g8l7xcxqk6n1pjlbdhxncpgdsrd8bv91an39cnj12";
+       version = "0.3.5";
+       sha256 = "0jz5ibr170592mz94zimvan7pwli4sp6qimv6hxiqlz3p78qy492";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudSearch SDK";
@@ -18613,8 +18632,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudsearch-domains";
-       version = "0.3.4";
-       sha256 = "06sb1zmgvsbshndix9gdx8vq4378p8sgwnnkwhzm1sr92yzfv4is";
+       version = "0.3.5";
+       sha256 = "1yv1q8bkwl1vmvyis2zj4ayy5lwvr5c0waaanaam640v8gnn7qli";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudSearch Domain SDK";
@@ -18625,8 +18644,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudtrail";
-       version = "0.3.4";
-       sha256 = "125vn9vk4mk61r4r5c3parhrqdxkmlvqprly1x0chd044nx5ai80";
+       version = "0.3.5";
+       sha256 = "1k5hmd6vbfm9wndz6ycd8cipds2npdqcfiwi67hq6g8lnvwm3p82";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudTrail SDK";
@@ -18637,8 +18656,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudwatch";
-       version = "0.3.4";
-       sha256 = "1lsdy65cg3wrhpzsaiir0mq510dilia1m0lqwg1fnrcl62xlcsd9";
+       version = "0.3.5";
+       sha256 = "1hmckxa3bv1hdrmd097fljfjdpmg1w18bjarppbr1fxd86hdzfr8";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudWatch SDK";
@@ -18649,8 +18668,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cloudwatch-logs";
-       version = "0.3.4";
-       sha256 = "1wxrxak7l8drba6hckhx0idqj26fbppnxw5hj4cnmjrg4pvjpnmn";
+       version = "0.3.5";
+       sha256 = "0b4s87p1d8zhj7fwi29cca472wynqa4nxiskvw3d1dvf37xbzasi";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CloudWatch Logs SDK";
@@ -18661,8 +18680,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-codedeploy";
-       version = "0.3.4";
-       sha256 = "1sws6d2a21r7wwd2dyf4k7g2n2f0r5azydj7pg6g5a2sjfazimi0";
+       version = "0.3.5";
+       sha256 = "03rcyqvsdc63sq9122s5a14gz210kbywv1jx9pqmdifmr2flap6c";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon CodeDeploy SDK";
@@ -18673,8 +18692,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cognito-identity";
-       version = "0.3.4";
-       sha256 = "0vp1r171myahkx8n5mndjabggy219mzbzxyfz93mwpnyf1z7cdvm";
+       version = "0.3.5";
+       sha256 = "0l3izdln529kavybflf544xak510g336lzpkr6n323qjb8b6gjzc";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Cognito Identity SDK";
@@ -18685,8 +18704,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-cognito-sync";
-       version = "0.3.4";
-       sha256 = "04mc8cjn1hdprki0hvbbyb7gzsdxdr7lci41vnmhw6ic3gcy2mhv";
+       version = "0.3.5";
+       sha256 = "12agwj1jhbb5dad2niycx8yahxhng02clfdpqakbyq7jqbdhrwlk";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Cognito Sync SDK";
@@ -18697,8 +18716,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-config";
-       version = "0.3.4";
-       sha256 = "1qxkzqvfid2g7hcc427zhy8llfa25wpimi7cfdzl9dqmmkqlxinm";
+       version = "0.3.5";
+       sha256 = "1h4037sbfxkf66z47rizyqbjwhy3c6ny993qcalpdy1lji3m86sp";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Config SDK";
@@ -18716,8 +18735,8 @@ self: {
      }:
      mkDerivation {
        pname = "amazonka-core";
-       version = "0.3.4";
-       sha256 = "0sih0wvncrz6v4xcn34ckhxc7b15bx87qbr7icwk1w6zs08809jz";
+       version = "0.3.5";
+       sha256 = "1m1nk4575ccdhx6ysw9n3x2xx6k8z1f0mqifccmry3fjc8nh90z7";
        buildDepends = [
          aeson attoparsec base base16-bytestring base64-bytestring
          bifunctors bytestring case-insensitive conduit conduit-extra
@@ -18738,8 +18757,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-datapipeline";
-       version = "0.3.4";
-       sha256 = "0f7y3wb9ijd8hjxbzav63zdwrjhzh000xqc4n2cnx0lrcrssvs2i";
+       version = "0.3.5";
+       sha256 = "180h89gzmszwqylibjxb7wmsilwfqwazanjcspwl6zf4wh3dy4hv";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Data Pipeline SDK";
@@ -18750,8 +18769,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-directconnect";
-       version = "0.3.4";
-       sha256 = "1y6nyjf8m2py5wnk3cbypi0ckqv7nyr2la3h8nm1wj8njwh359jn";
+       version = "0.3.5";
+       sha256 = "1icdc2nhp9fqslv96if5k30xjy60mj7hfidmfqy8126y7f9xg9ip";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Direct Connect SDK";
@@ -18762,8 +18781,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-dynamodb";
-       version = "0.3.4";
-       sha256 = "160nk75112sdnf834gpc0y1fzsbb0lrp98g9zim38rd4v7pz2ax9";
+       version = "0.3.5";
+       sha256 = "0qywmfhxjda55002pbcg23l187jnch23lrpdi0bkpm2r9m7f3jz1";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon DynamoDB SDK";
@@ -18774,8 +18793,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-ec2";
-       version = "0.3.4";
-       sha256 = "0chfyyryyk8vd1783021awvwwla5fdm04x3w500157xvazhk286m";
+       version = "0.3.5";
+       sha256 = "1qydhrld9zwjvcz1bcc12i1bxy34sg25q4czb2qg6vas4q17hd7r";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Elastic Compute Cloud SDK";
@@ -18786,8 +18805,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-ecs";
-       version = "0.3.4";
-       sha256 = "1pv79b0865gqpf89abjjk4y24d6nr2lk45xpn0n7ckri0b54dga4";
+       version = "0.3.5";
+       sha256 = "06v24ii7w0fs3b10lrjdqm4ij06h160vk10db0w7r69s5bcx97wd";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon EC2 Container Service SDK";
@@ -18798,8 +18817,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-elasticache";
-       version = "0.3.4";
-       sha256 = "01mg116sqxa4z7ss0fwzvsgkmxrqs52ac9z6mrsfymjspyd9fbli";
+       version = "0.3.5";
+       sha256 = "12acby04a090p11g40awhz2rln187vqlnsk347dapkh42pgjnd1f";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon ElastiCache SDK";
@@ -18810,8 +18829,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-elasticbeanstalk";
-       version = "0.3.4";
-       sha256 = "13lzdnwg9x2jrhk251b0vrg4y2avg77ppq4wdgjzmbb2myp618ll";
+       version = "0.3.5";
+       sha256 = "16msbdxqgpf4hwym1jh2zdhsla50w3293m4rgjixgd6bbg3clrdl";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Elastic Beanstalk SDK";
@@ -18822,8 +18841,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-elastictranscoder";
-       version = "0.3.4";
-       sha256 = "1wi1h07pp8n45ynn9lqvjfz265k0bp7qqxk5qmqlg93yajgjfkcl";
+       version = "0.3.5";
+       sha256 = "1cv6kvfbwswmlhds26xgxcf3gh7k8lrjw9gvrqckri4jbmksxmsv";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Elastic Transcoder SDK";
@@ -18834,8 +18853,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-elb";
-       version = "0.3.4";
-       sha256 = "11ky0g8cgnd6lcjdc6a9087ka5f6hc3x08xnvjjfwipmdhps4k9r";
+       version = "0.3.5";
+       sha256 = "1yhmsmm2f2s1s4pziqyadl8wzygpdb0y0f1qdjajshd33pff4462";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Elastic Load Balancing SDK";
@@ -18846,8 +18865,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-emr";
-       version = "0.3.4";
-       sha256 = "1dq1xs7simxcag3c2bcr22k1595avl69jz6zv3nrsn1rvzj9milv";
+       version = "0.3.5";
+       sha256 = "0xlb9nry7a0grn9d3qwl135lgl7r5kxqidx9jq67v6sdjh5y0v7y";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Elastic MapReduce SDK";
@@ -18858,8 +18877,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-glacier";
-       version = "0.3.4";
-       sha256 = "1dd635s0i9imj62dg9rqvfrx2aqw6593z61ckqixlb247jii82i6";
+       version = "0.3.5";
+       sha256 = "19dgjkggjirz9pbyzjw61ni3gkgbj2fl8y6cbdkazq2h9gg4dgbv";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Glacier SDK";
@@ -18870,8 +18889,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-iam";
-       version = "0.3.4";
-       sha256 = "1snh7xs2f2mjr3ln24xj73y5idmb45in1ykaz3v5wbqdb19m4w94";
+       version = "0.3.5";
+       sha256 = "0jr7wgs1hhbr4bara8q5xp1k40ffxjfrd79ncf2l6kzlh3vnsgcb";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Identity and Access Management SDK";
@@ -18882,8 +18901,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-importexport";
-       version = "0.3.4";
-       sha256 = "15xgfxlrjhn8inl5a0rfsyyy8sp0rinlwll9snpdl7nrnqvmn00s";
+       version = "0.3.5";
+       sha256 = "1ymlxs0icxlqb23jwx9wp3k6n3pld5n7ykzl7fp77c8pnyzq52ia";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Import/Export SDK";
@@ -18894,8 +18913,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-kinesis";
-       version = "0.3.4";
-       sha256 = "0fag3xr9w2gi038hh9kiqmqgbsn53x48h9jwj49cr1r9qrrs86wa";
+       version = "0.3.5";
+       sha256 = "0cqazzfcy1inhnb0g5nf2cqkglc4c9yvd3s1xiz2ihc2rfqanxyf";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Kinesis SDK";
@@ -18906,8 +18925,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-kms";
-       version = "0.3.4";
-       sha256 = "0ds97lk5ifc529199lmvijs5gif4bzh8lwczpz1xspin37bjiz62";
+       version = "0.3.5";
+       sha256 = "1lx7d5zdj6gqvmcrdmr6rbyj7wmh43d9dnmr755vzwgjk5y47pq5";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Key Management Service SDK";
@@ -18918,8 +18937,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-lambda";
-       version = "0.3.4";
-       sha256 = "1njdwml6mp8phd323cgyfw7v2iv8l4k7r6pi4vq4mygpa2gx0dn1";
+       version = "0.3.5";
+       sha256 = "15x8y41bjxg2jk6jajnax7nnjy247128zwwzp4j0lqcy3jx0djf2";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Lambda SDK";
@@ -18930,8 +18949,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-ml";
-       version = "0.3.4";
-       sha256 = "1sv6a74gk30rhsh98j2f6xsad6hfcr3cjyi8ahz1qjh4nqjrrssc";
+       version = "0.3.5";
+       sha256 = "1ysrlff1mqww5nxm5hlrphafnfisrifqd0czl3slpg0wq4jijpd1";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Machine Learning SDK";
@@ -18942,8 +18961,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-opsworks";
-       version = "0.3.4";
-       sha256 = "07l7a4v7s380vj8348bgv1m1hk1ldc41aphl67f17v2cndys3ml0";
+       version = "0.3.5";
+       sha256 = "1m47ymzakcnyjgg9fp6f0k270r6785z3q64g5qn3321sya8rfahz";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon OpsWorks SDK";
@@ -18954,8 +18973,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-rds";
-       version = "0.3.4";
-       sha256 = "1ji80nn9k10l9w5k5dqwhc0i2aaxa4l6bl995im5lrihilmazqgw";
+       version = "0.3.5";
+       sha256 = "196z77al765mxrjnilz6ph20nmvdks5mfaqdnfwgk8mvhcigbiwp";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Relational Database Service SDK";
@@ -18966,8 +18985,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-redshift";
-       version = "0.3.4";
-       sha256 = "18sd3abhpifwb4ylz35bnxzappgslpvzkrv9wh3hxqzs4mvxdj1n";
+       version = "0.3.5";
+       sha256 = "1kh5497azy2qyc6zbh4gznvmrf5hp6rpz5ksbbi78fngcanvfwn9";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Redshift SDK";
@@ -18978,8 +18997,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-route53";
-       version = "0.3.4";
-       sha256 = "05a77qcjlkjk0mv2ry25dlci43h5b9hh50f32ngqccjqmg4128ky";
+       version = "0.3.5";
+       sha256 = "0gl0xygsq6vn2xw0ibpmqc2n3c7650756ldv8nxyfmwrxyv37vrv";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Route 53 SDK";
@@ -18990,8 +19009,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-route53-domains";
-       version = "0.3.4";
-       sha256 = "15qvmw6fgfcqgkqafywpai5i1in9iibl1r8m8pfxfdckmrbzaxz2";
+       version = "0.3.5";
+       sha256 = "0mawgxdvlhhvb2jzgsc5w62gfaf1wd0yiy2xzmk10vcrwawhfhig";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Route 53 Domains SDK";
@@ -19002,8 +19021,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-s3";
-       version = "0.3.4";
-       sha256 = "0miyf7nnkxwybps3yg5fyqpxq5hkz4kllks5w4r7c62hd7sjq9dn";
+       version = "0.3.5";
+       sha256 = "09fc51c3zsbpr9b9dbachhyr5v9f1b02w47yv382f70vdk7m7lky";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Storage Service SDK";
@@ -19014,8 +19033,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-sdb";
-       version = "0.3.4";
-       sha256 = "0jsg4g911qm3r8saxwax4rhdmg1kgfmagnnyzjv4rb02jkdfr7i1";
+       version = "0.3.5";
+       sha256 = "0x5v734q7srn8y7kfk5rrlbhvr1a51z2ak0dqd8qwjhpdam7wigb";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon SimpleDB SDK";
@@ -19026,8 +19045,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-ses";
-       version = "0.3.4";
-       sha256 = "0s0aa3fryvqwmp0zzmlzd0mk591i1c63qds0si3svf85zgl3slr4";
+       version = "0.3.5";
+       sha256 = "0vk5hygw8z8cckmv5b95x265c8jkhnaz33n2dvrnyh29q3a5ag6d";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Email Service SDK";
@@ -19038,8 +19057,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-sns";
-       version = "0.3.4";
-       sha256 = "1plrzqlvfn2aa0c4l2dh4nlygnv0biykz414yblcrj53w03yhqs2";
+       version = "0.3.5";
+       sha256 = "0hfl4fwf777l49r7sx85dkp34yy5xijry5z114pbf2mbf7v8pxvn";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Notification Service SDK";
@@ -19050,8 +19069,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-sqs";
-       version = "0.3.4";
-       sha256 = "0bc0n71vhmcirij5agxy7h0zvqvm4psw5h3kzrnbib9wa2hkq8m4";
+       version = "0.3.5";
+       sha256 = "0jback1zw7n72pcrwv8d074xygk9hqlzpwfi2m905jz36f1jw889";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Queue Service SDK";
@@ -19062,8 +19081,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-ssm";
-       version = "0.3.4";
-       sha256 = "03p76rska5gl2ic7vjyhhdb89ikl17n8xkiwcb4184jzsvnscqzi";
+       version = "0.3.5";
+       sha256 = "172wvhlk054wvp30f7vsfb6l94m0hbjsiwhnfxamnk7nwv8qzprr";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Systems Management Service SDK";
@@ -19074,8 +19093,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-storagegateway";
-       version = "0.3.4";
-       sha256 = "016wi9cq86z0giv68kzfdg2ia0m4kvlcsl6dj9d3cnvbcsg7s6xy";
+       version = "0.3.5";
+       sha256 = "0nxyc8bzphw1pdg9vz55fm9x9p57qd501112p5zykd08pgwaxzna";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Storage Gateway SDK";
@@ -19086,8 +19105,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-sts";
-       version = "0.3.4";
-       sha256 = "1fmjsvcxjrls98jd3vcldjy9wvsdkyi614rzs1d5bi11b6db202z";
+       version = "0.3.5";
+       sha256 = "03gphzl87qrvi57sncng08sdqlxbxlm3z9q4yz7zwqdigy2r2aic";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Security Token Service SDK";
@@ -19098,8 +19117,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-support";
-       version = "0.3.4";
-       sha256 = "1kzy3nbc17dbbhi2k60da7rl6k2zbahzd9rjshvmn1fdsb61piq5";
+       version = "0.3.5";
+       sha256 = "1z9r6v1nvx5d6kda9kxgypwh4y90waxv7ybm6iknp19xqw7y2daz";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Support SDK";
@@ -19110,8 +19129,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-swf";
-       version = "0.3.4";
-       sha256 = "1w7ac4d7gj53hjvlk0sldww67gkgsbi8vmqhbcbqrbg2mrqr6l9d";
+       version = "0.3.5";
+       sha256 = "0hl9crncqs8sijzyppl3q54isq1w3205q716bwqi09g97zi0hik3";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon Simple Workflow Service SDK";
@@ -19122,8 +19141,8 @@ self: {
     ({ mkDerivation, amazonka-core, base }:
      mkDerivation {
        pname = "amazonka-workspaces";
-       version = "0.3.4";
-       sha256 = "00gdahix24cm3qan11a9n2l1n9x0cnnxgid2gf4zhjqmvc3342sa";
+       version = "0.3.5";
+       sha256 = "0afl7xwb45i70j025kmfh7s3v5my86h52zb55h4cxxdcnj9yvca5";
        buildDepends = [ amazonka-core base ];
        homepage = "https://github.com/brendanhay/amazonka";
        description = "Amazon WorkSpaces SDK";
@@ -21324,11 +21343,11 @@ self: {
     ({ mkDerivation, base, bimap, containers, mtl, process, syb }:
      mkDerivation {
        pname = "atom";
-       version = "1.0.12";
-       sha256 = "0mavmgaw9wb7sjrmr49h2xw4xvzywgbflvvxym0l9wc91dd3zhrp";
+       version = "1.0.13";
+       sha256 = "111lz39q12rvh2iigxakcnf2firxgbgm462id805n3z7rmg8f807";
        buildDepends = [ base bimap containers mtl process syb ];
        homepage = "http://tomahawkins.org";
-       description = "A DSL for embedded hard realtime applications";
+       description = "An EDSL for embedded hard realtime applications";
        license = stdenv.lib.licenses.bsd3;
        hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
@@ -24941,8 +24960,8 @@ self: {
      }:
      mkDerivation {
        pname = "bindings-nettle";
-       version = "0.2";
-       sha256 = "1pk2gwd5wbs1bhna5npwrzrvd6cxss8sbigsa8lsqsarh8mbd5sr";
+       version = "0.4";
+       sha256 = "11fnyjxb6gvl2mfnsahzadd5xj0y1p25n98qbhrkzziaihsf01ph";
        buildDepends = [ base bindings-DSL ];
        testDepends = [
          base bytestring hspec HUnit QuickCheck quickcheck-io
@@ -26691,6 +26710,7 @@ self: {
        testDepends = [
          base directory doctest filepath prelude-extras transformers vector
        ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/bound/";
        description = "Making de Bruijn Succ Less";
        license = stdenv.lib.licenses.bsd3;
@@ -27321,22 +27341,22 @@ self: {
 
   "bustle" = callPackage
     ({ mkDerivation, base, bytestring, cairo, containers, dbus
-     , directory, filepath, glib, gtk, hgettext, HUnit, mtl, pango
+     , directory, filepath, gio, glib, gtk3, hgettext, HUnit, mtl, pango
      , parsec, pcap, process, QuickCheck, setlocale, test-framework
      , test-framework-hunit, text, time
      }:
      mkDerivation {
        pname = "bustle";
-       version = "0.4.8";
-       sha256 = "0ra4hvym5f4w8hy7p11apb5n0pdsq5iv56wab513dhb75562ipcq";
+       version = "0.5.0";
+       sha256 = "0wj3abvkpalr40zyqwxi2bwgrfzmnjjg7y577qj2fzv8l5bl2mn0";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [
-         base bytestring cairo containers dbus directory filepath glib gtk
-         hgettext mtl pango parsec pcap process setlocale text time
+         base bytestring cairo containers dbus directory filepath gio glib
+         gtk3 hgettext mtl pango parsec pcap process setlocale text time
        ];
        testDepends = [
-         base bytestring cairo containers dbus directory filepath gtk
+         base bytestring cairo containers dbus directory filepath gtk3
          hgettext HUnit mtl pango pcap QuickCheck setlocale test-framework
          test-framework-hunit text
        ];
@@ -27664,6 +27684,7 @@ self: {
        sha256 = "19bq478066chy35fnfjq5bg2f196zl6qi2dssqwlr9bivgvk434g";
        buildDepends = [ base bytestring types-compat ];
        testDepends = [ base bytestring doctest tasty tasty-quickcheck ];
+       jailbreak = true;
        homepage = "https://github.com/philopon/bytestring-read";
        description = "fast ByteString to number converting library";
        license = stdenv.lib.licenses.mit;
@@ -29617,20 +29638,22 @@ self: {
 
   "cassava" = callPackage
     ({ mkDerivation, array, attoparsec, base, blaze-builder, bytestring
-     , containers, deepseq, HUnit, QuickCheck, test-framework
+     , containers, deepseq, hashable, HUnit, QuickCheck, test-framework
      , test-framework-hunit, test-framework-quickcheck2, text
      , unordered-containers, vector
      }:
      mkDerivation {
        pname = "cassava";
-       version = "0.4.2.4";
-       sha256 = "1vf42v4n55i39zk5dimzk9z0l0jzyp9w9vhgrvzmi0f7nhfbv08a";
+       version = "0.4.3.0";
+       revision = "1";
+       sha256 = "0pwcxv1mdn0p6hw2w5fiw4w75mnxphngzj62jw3nbd80bswdp2x3";
+       editedCabalFile = "6410ddebd594ccd8c068cbfb6b064ac43bcebb48fb74cbc25078c89f55e051a7";
        buildDepends = [
          array attoparsec base blaze-builder bytestring containers deepseq
-         text unordered-containers vector
+         hashable text unordered-containers vector
        ];
        testDepends = [
-         attoparsec base bytestring HUnit QuickCheck test-framework
+         attoparsec base bytestring hashable HUnit QuickCheck test-framework
          test-framework-hunit test-framework-quickcheck2 text
          unordered-containers vector
        ];
@@ -29677,6 +29700,7 @@ self: {
        homepage = "https://github.com/pjones/cassava-streams";
        description = "io-streams interface for the cassava CSV library";
        license = stdenv.lib.licenses.bsd3;
+       hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
   "cassette" = callPackage
@@ -29758,10 +29782,10 @@ self: {
     ({ mkDerivation, base, template-haskell }:
      mkDerivation {
        pname = "catamorphism";
-       version = "0.5.0.1";
-       sha256 = "1zdjsd6dqkcpnm8w6macn0v5y48nycc4g2i4rz3gg57v1hlyqrh6";
+       version = "0.5.1.0";
+       sha256 = "1lhqdr0l3wc59ms1i1xmwp6iy4n4xrd8pi0an0n0jgxw5j2sfbkq";
        buildDepends = [ base template-haskell ];
-       homepage = "http://github.com/frerich/catamorphism";
+       homepage = "https://github.com/frerich/catamorphism";
        description = "A package exposing a helper function for generating catamorphisms";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -31378,22 +31402,23 @@ self: {
 
   "clash-ghc" = callPackage
     ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib
-     , clash-prelude, clash-systemverilog, clash-vhdl, containers
-     , directory, filepath, ghc, ghc-typelits-natnormalise, hashable
-     , haskeline, lens, mtl, process, text, transformers
+     , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl
+     , containers, directory, filepath, ghc, ghc-typelits-natnormalise
+     , hashable, haskeline, lens, mtl, process, text, transformers
      , unbound-generics, unix, unordered-containers
      }:
      mkDerivation {
        pname = "clash-ghc";
-       version = "0.5.6";
-       sha256 = "0x538nxibz4hiyij1s9ljrgjvsmizha4nacszil1530qh7ss34n9";
+       version = "0.5.7";
+       sha256 = "0bia1yqww40prj2n6x4chvfkx05la73056mlpsgilakxwqsab2m7";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [
          array base bifunctors bytestring clash-lib clash-prelude
-         clash-systemverilog clash-vhdl containers directory filepath ghc
-         ghc-typelits-natnormalise hashable haskeline lens mtl process text
-         transformers unbound-generics unix unordered-containers
+         clash-systemverilog clash-verilog clash-vhdl containers directory
+         filepath ghc ghc-typelits-natnormalise hashable haskeline lens mtl
+         process text transformers unbound-generics unix
+         unordered-containers
        ];
        jailbreak = true;
        homepage = "http://www.clash-lang.org/";
@@ -31411,8 +31436,8 @@ self: {
      }:
      mkDerivation {
        pname = "clash-lib";
-       version = "0.5.5";
-       sha256 = "0k6k45fhkwrr3azqhp278abf4kr7is67zsqyabf71hdyp68242dx";
+       version = "0.5.6";
+       sha256 = "1dgcnxzk7l7hywv1p268xrm2dfbgfgcvjs5w14vmsfxv1rfzkad0";
        buildDepends = [
          aeson attoparsec base bytestring clash-prelude concurrent-supply
          containers deepseq directory errors fgl filepath hashable lens mtl
@@ -31426,16 +31451,18 @@ self: {
 
   "clash-prelude" = callPackage
     ({ mkDerivation, base, data-default, doctest, ghc-prim
-     , ghc-typelits-natnormalise, Glob, integer-gmp, singletons
-     , template-haskell, th-lift
+     , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck
+     , singletons, template-haskell, th-lift
      }:
      mkDerivation {
        pname = "clash-prelude";
-       version = "0.7.5";
-       sha256 = "0li9y6cb56yf28yrma2c1japhl6c4rk0x9d8wnf3wq9n499bj6iv";
+       version = "0.8";
+       revision = "1";
+       sha256 = "0hd8faq69wvm679gyplbzccz3k4iyp1108xm0hc4x7cdrkmg01r1";
+       editedCabalFile = "e549747128c6452eca30da937a03b8d0ff2577466a5a242f50754db3d3f6a648";
        buildDepends = [
          base data-default ghc-prim ghc-typelits-natnormalise integer-gmp
-         singletons template-haskell th-lift
+         lens QuickCheck singletons template-haskell th-lift
        ];
        testDepends = [ base doctest Glob ];
        homepage = "http://www.clash-lang.org/";
@@ -31451,6 +31478,7 @@ self: {
        version = "0.1.2.1";
        sha256 = "1fn5wlg2lmxl6rs2ygnf0m88bgcjf62jpprbp425pqbq6lvhw70w";
        buildDepends = [ base clash-prelude QuickCheck ];
+       jailbreak = true;
        description = "QuickCheck instances for various types in the CλaSH Prelude";
        license = "unknown";
        hydraPlatforms = stdenv.lib.platforms.none;
@@ -31462,8 +31490,8 @@ self: {
      }:
      mkDerivation {
        pname = "clash-systemverilog";
-       version = "0.5.4";
-       sha256 = "1n35k6mmwf8ky99kc22nw5zwkp75pasjs1yx175h46ln3cqlm289";
+       version = "0.5.5";
+       sha256 = "1dks6saxp24xm478bgx2bkzx4qq6yv79f92z8kw6a2y29c3bjfrg";
        buildDepends = [
          base clash-lib clash-prelude fgl lens mtl text unordered-containers
          wl-pprint-text
@@ -31474,14 +31502,31 @@ self: {
        hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
+  "clash-verilog" = callPackage
+    ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
+     , text, unordered-containers, wl-pprint-text
+     }:
+     mkDerivation {
+       pname = "clash-verilog";
+       version = "0.5.5";
+       sha256 = "0wjnjdl9slcrxnd0vz7m6y5jhs6gcaij7f9jjrgfcljq4wmk05rf";
+       buildDepends = [
+         base clash-lib clash-prelude fgl lens mtl text unordered-containers
+         wl-pprint-text
+       ];
+       homepage = "http://www.clash-lang.org/";
+       description = "CAES Language for Synchronous Hardware - Verilog backend";
+       license = stdenv.lib.licenses.bsd2;
+     }) {};
+
   "clash-vhdl" = callPackage
     ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
      , text, unordered-containers, wl-pprint-text
      }:
      mkDerivation {
        pname = "clash-vhdl";
-       version = "0.5.4";
-       sha256 = "1zmbgsvqa6mgz3aj6xpv3daiic57rccbav1c5dnsfjbsp8x2jgnc";
+       version = "0.5.5";
+       sha256 = "0mwzp12ag98sfspjlh2w9hd1zgsx2bi7bv0lx55x6nmn8gawn0mk";
        buildDepends = [
          base clash-lib clash-prelude fgl lens mtl text unordered-containers
          wl-pprint-text
@@ -31619,8 +31664,8 @@ self: {
      }:
      mkDerivation {
        pname = "clckwrks";
-       version = "0.23.7";
-       sha256 = "0bs7gcbb3xsq4b444jybilfvpxqm9xdwn135fdn1wchbiykqnwba";
+       version = "0.23.8";
+       sha256 = "0inhxyjs12990mngfx2n3m107wxnamgi4gby5lnvai5nz913qgzd";
        buildDepends = [
          acid-state aeson aeson-qq attoparsec base blaze-html bytestring
          cereal containers directory filepath happstack-authenticate
@@ -31634,7 +31679,6 @@ self: {
        ];
        buildTools = [ hsx2hs ];
        extraLibraries = [ openssl ];
-       jailbreak = true;
        homepage = "http://www.clckwrks.com/";
        description = "A secure, reliable content management system (CMS) and blogging platform";
        license = stdenv.lib.licenses.bsd3;
@@ -31677,6 +31721,7 @@ self: {
          text web-plugins
        ];
        buildTools = [ hsx2hs ];
+       jailbreak = true;
        homepage = "http://www.clckwrks.com/";
        description = "clckwrks.com";
        license = stdenv.lib.licenses.bsd3;
@@ -31719,8 +31764,8 @@ self: {
      }:
      mkDerivation {
        pname = "clckwrks-plugin-ircbot";
-       version = "0.6.12";
-       sha256 = "1pi8qrm71zdszc1fkwyvdx0qnlj4gzsyajw70w4s6sgmn7mgny69";
+       version = "0.6.14";
+       sha256 = "1lrh2929ia6326vf9lyd5jy1a3nnavl8f27f9faw35871p1my1r2";
        buildDepends = [
          acid-state attoparsec base blaze-html bytestring clckwrks
          containers directory filepath happstack-hsp happstack-server hsp
@@ -31728,7 +31773,6 @@ self: {
          safecopy text web-plugins web-routes web-routes-th
        ];
        buildTools = [ hsx2hs ];
-       jailbreak = true;
        homepage = "http://clckwrks.com/";
        description = "ircbot plugin for clckwrks";
        license = stdenv.lib.licenses.bsd3;
@@ -31769,8 +31813,8 @@ self: {
      }:
      mkDerivation {
        pname = "clckwrks-plugin-page";
-       version = "0.3.10";
-       sha256 = "0871fz0h3vqwsjrk7pz69nm8gi5ycxnfv1pip8nnf11wfqfcqlgb";
+       version = "0.4.0";
+       sha256 = "0j82xzdgpy97s4xf6vx3an5ssbybcixhasmh0ca9bjmv9iqkjkws";
        buildDepends = [
          acid-state aeson attoparsec base clckwrks containers directory
          filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl
@@ -31779,7 +31823,6 @@ self: {
          web-plugins web-routes web-routes-happstack web-routes-th
        ];
        buildTools = [ hsx2hs ];
-       jailbreak = true;
        homepage = "http://www.clckwrks.com/";
        description = "support for CMS/Blogging in clckwrks";
        license = stdenv.lib.licenses.bsd3;
@@ -32553,6 +32596,28 @@ self: {
        license = stdenv.lib.licenses.bsd3;
      }) {};
 
+  "codec" = callPackage
+    ({ mkDerivation, aeson, base, binary, binary-bits, bytestring
+     , data-default-class, mtl, template-haskell, text, transformers
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "codec";
+       version = "0.1.1";
+       sha256 = "0fkcbdas270gad7d3k40q96w68iwfb8jgi866x3dp4mf8wvsll9k";
+       buildDepends = [
+         aeson base binary binary-bits bytestring data-default-class mtl
+         template-haskell text transformers unordered-containers
+       ];
+       testDepends = [
+         aeson base binary binary-bits bytestring data-default-class mtl
+         template-haskell text transformers unordered-containers
+       ];
+       homepage = "https://github.com/chpatrick/codec";
+       description = "First-class record construction and bidirectional serialization";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
   "codec-libevent" = callPackage
     ({ mkDerivation, array, base, binary, binary-strict, bytestring
      , containers, parsec, QuickCheck, regex-compat
@@ -33163,15 +33228,16 @@ self: {
      }:
      mkDerivation {
        pname = "comonad";
-       version = "4.2.6";
+       version = "4.2.7";
        revision = "1";
-       sha256 = "1dspysfyjk74di2wvv7xj8r92acqsynjl5gi3sh8m7hqb122m60i";
-       editedCabalFile = "7a617c03c1147d1955930ac77cf2395f853195c2331468822aa58a5813b49556";
+       sha256 = "03h36hr7vgxxyxfp9yc87vahbm3d6chvrkcrjh5abxg6i42aflma";
+       editedCabalFile = "70542238a847c5b973832fa7e5623a76a485df25b36d511bfd5f5116e4014619";
        buildDepends = [
          base containers contravariant distributive semigroups tagged
          transformers transformers-compat
        ];
        testDepends = [ base directory doctest filepath ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/comonad/";
        description = "Comonads";
        license = stdenv.lib.licenses.bsd3;
@@ -34172,6 +34238,25 @@ self: {
        hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
+  "conduit-parse" = callPackage
+    ({ mkDerivation, base, conduit, exceptions, hlint, parsers
+     , resourcet, tasty, tasty-hunit, text, transformers
+     }:
+     mkDerivation {
+       pname = "conduit-parse";
+       version = "0.1.0.0";
+       sha256 = "093qc82nrn8ziza1bfp4xnz8k0cpm39k868a3rq4dhah3s40gsv3";
+       buildDepends = [
+         base conduit exceptions parsers text transformers
+       ];
+       testDepends = [
+         base conduit exceptions hlint parsers resourcet tasty tasty-hunit
+       ];
+       homepage = "https://github.com/k0ral/conduit-parse";
+       description = "Parsing framework based on conduit";
+       license = "unknown";
+     }) {};
+
   "conduit-resumablesink" = callPackage
     ({ mkDerivation, base, bytestring, conduit, hspec, transformers
      , void
@@ -34554,18 +34639,22 @@ self: {
 
   "consul-haskell" = callPackage
     ({ mkDerivation, aeson, base, base64-bytestring, bytestring
-     , http-client, HUnit, network, tasty, tasty-hunit, text
+     , http-client, http-types, HUnit, lifted-async, lifted-base
+     , monad-control, network, stm, tasty, tasty-hunit, text
      , transformers
      }:
      mkDerivation {
        pname = "consul-haskell";
-       version = "0.1";
-       sha256 = "0i6xq7xd4bikb46mrcabiwwfga25wqcg7z45bh2hbqhf7yq8xjm6";
+       version = "0.2.1";
+       sha256 = "13c3yqn5nsx7r0hkgdwka6fis2ypg54k4damv3c22rdjyids17x7";
        buildDepends = [
-         aeson base base64-bytestring bytestring http-client network text
+         aeson base base64-bytestring bytestring http-client http-types
+         lifted-async lifted-base monad-control network stm text
          transformers
        ];
-       testDepends = [ base http-client HUnit network tasty tasty-hunit ];
+       testDepends = [
+         base http-client HUnit network tasty tasty-hunit text transformers
+       ];
        homepage = "https://github.com/alphaHeavy/consul-haskell";
        description = "A consul client for Haskell";
        license = stdenv.lib.licenses.bsd3;
@@ -36680,8 +36769,8 @@ self: {
      }:
      mkDerivation {
        pname = "cryptol";
-       version = "2.2.3";
-       sha256 = "0g8xf65v255z8qm30n3d1h4fval763lns14vb36cyrp1gp48rf2i";
+       version = "2.2.4";
+       sha256 = "07aai72kg66skdnbydy25a07124znvrixbw91gk4n9430gsvv26z";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -42550,8 +42639,8 @@ self: {
      }:
      mkDerivation {
        pname = "dns";
-       version = "1.4.5";
-       sha256 = "13s9ysa5hkjjc2a5290mbpnrk2mjg3w01mib62p65rywz26yc7g5";
+       version = "2.0.0";
+       sha256 = "1jq12jdidgz9nrcpnr362n6rwvxywd5v7j4fi18bqaq2f67ybjay";
        buildDepends = [
          attoparsec base binary blaze-builder bytestring conduit
          conduit-extra containers iproute mtl network random resourcet
@@ -42753,10 +42842,8 @@ self: {
      }:
      mkDerivation {
        pname = "doctest";
-       version = "0.9.13";
-       revision = "1";
-       sha256 = "0xl570ay5bw1rpd1aw59c092rnwjbp9qykh2rhpxyvl333p8mg00";
-       editedCabalFile = "592ab6d62eca8a0b43930f15c8fb653c54d60983bd232ecc505bd5a5aebe6f7f";
+       version = "0.10.0";
+       sha256 = "161k9brapz6hbwl3naar07kpfsgqp4b52i5nfsbxsqa2a9al40kb";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -45032,8 +45119,8 @@ self: {
      }:
      mkDerivation {
        pname = "elm-init";
-       version = "0.1.2.0";
-       sha256 = "0s80x6r2h5cwng6x15xmwgpnjv0qgp360g11g2k3hsc5y8fvgmkd";
+       version = "0.1.2.1";
+       sha256 = "0x5p5jwxz07m515421xpcw777lgc3bx40mnl0y9fdw2gz4f3svs2";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [
@@ -45042,6 +45129,7 @@ self: {
        ];
        description = "Set up basic structure for an elm project";
        license = stdenv.lib.licenses.mit;
+       hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
   "elm-make" = callPackage
@@ -49005,6 +49093,7 @@ self: {
        sha256 = "1hlg0rbi2phk7qr7nvjnazg344jqp5p13c3m8v5n01vw9bvjbnir";
        buildDepends = [ base deepseq primitive ];
        testDepends = [ base doctest filemanip primitive ];
+       jailbreak = true;
        description = "Generic vectors with statically known size";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -49400,10 +49489,8 @@ self: {
     ({ mkDerivation, base, doctest, QuickCheck, template-haskell }:
      mkDerivation {
        pname = "flow";
-       version = "1.0.0";
-       revision = "1";
-       sha256 = "15vr7d1fyabr9v9r9vnh9m2x0r2i0ggg714cc7r6zxhjbrrc9rbn";
-       editedCabalFile = "acf5b2b49db56bf047774bc90e57e6c81c5c4d413849d4cdff9dfaf4c71246ab";
+       version = "1.0.1";
+       sha256 = "11i0p2f8zxpcpssga279hx8vy6a14xykmb8qxyfrrpvd6qg42i8y";
        buildDepends = [ base ];
        testDepends = [ base doctest QuickCheck template-haskell ];
        homepage = "http://taylor.fausak.me/flow/";
@@ -49661,15 +49748,15 @@ self: {
 
   "foldl" = callPackage
     ({ mkDerivation, base, bytestring, containers, mwc-random
-     , primitive, text, transformers, vector
+     , primitive, profunctors, text, transformers, vector
      }:
      mkDerivation {
        pname = "foldl";
-       version = "1.0.10";
-       sha256 = "04ghbn78hsqp92k9mljpa5xgjrmddwrhj90wb1f1v4lliw1inn9q";
+       version = "1.0.11";
+       sha256 = "0czavxjbf8vafkizw6sdvp2a19qdgpjvjb10f1f52jmd5z8k3rxr";
        buildDepends = [
-         base bytestring containers mwc-random primitive text transformers
-         vector
+         base bytestring containers mwc-random primitive profunctors text
+         transformers vector
        ];
        description = "Composable, streaming, and efficient left folds";
        license = stdenv.lib.licenses.bsd3;
@@ -50230,10 +50317,9 @@ self: {
     ({ mkDerivation, base, semigroups }:
      mkDerivation {
        pname = "fraction";
-       version = "0.1.0.3";
-       sha256 = "0kjpfqy528s11kfigp27kr5a4xw8kn11mpgjzb6fapdbip6y9579";
+       version = "0.1.0.4";
+       sha256 = "0blvvsc1rbn45nwgmkhd28bdz0awi5mk6h48yqbqy3ajm2gvpvdf";
        buildDepends = [ base semigroups ];
-       jailbreak = true;
        homepage = "http://darcs.wolfgang.jeltsch.info/haskell/fraction";
        description = "Fractions";
        license = stdenv.lib.licenses.bsd3;
@@ -50592,15 +50678,14 @@ self: {
      }:
      mkDerivation {
        pname = "friday";
-       version = "0.2.1.2";
-       sha256 = "08w97jbcg5641brd0pf1bnj6mk0lf7xa57v88y686mx6lsl80i3q";
+       version = "0.2.2.0";
+       sha256 = "0cw8mghygbd76l2nf0s1n0n1a7ymh2hv4dfm11hkv0gcdrqrp9fr";
        buildDepends = [
          base convertible deepseq primitive ratio-int transformers vector
        ];
        testDepends = [
          base QuickCheck test-framework test-framework-quickcheck2 vector
        ];
-       jailbreak = true;
        homepage = "https://github.com/RaphaelJ/friday";
        description = "A functional image processing library for Haskell";
        license = stdenv.lib.licenses.gpl3;
@@ -51991,8 +52076,8 @@ self: {
     ({ mkDerivation, base, mtl, template-haskell }:
      mkDerivation {
        pname = "geniplate-mirror";
-       version = "0.6.0.7";
-       sha256 = "0az8q9jjakbi891ypzm4qg8ys78102zqxqpznk6mm08ng2hzb0wz";
+       version = "0.7.1";
+       sha256 = "0wz7fp0cgf7xn37mmy91scacihnr0fcd6lpbi28yx4qss2hb1m30";
        buildDepends = [ base mtl template-haskell ];
        homepage = "https://github.com/danr/geniplate";
        description = "Use Template Haskell to generate Uniplate-like functions";
@@ -52144,6 +52229,20 @@ self: {
        hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
+  "geom2d" = callPackage
+    ({ mkDerivation, base, ieee754, QuickCheck }:
+     mkDerivation {
+       pname = "geom2d";
+       version = "0.1.2.1";
+       sha256 = "0235p0gjwsklxynr84ak6zirbxirhwm9f2z7d6b31y5hc9pnrznj";
+       buildDepends = [ base ieee754 QuickCheck ];
+       testDepends = [ base ieee754 QuickCheck ];
+       jailbreak = true;
+       description = "package for geometry in euklidean 2d space";
+       license = stdenv.lib.licenses.gpl3;
+       hydraPlatforms = stdenv.lib.platforms.none;
+     }) {};
+
   "getemx" = callPackage
     ({ mkDerivation, base, curl, directory, filepath, haskell98, hxt
      , mtl, old-locale, process, time
@@ -52183,8 +52282,8 @@ self: {
      }:
      mkDerivation {
        pname = "getopt-generics";
-       version = "0.6.3";
-       sha256 = "18d9cbk87gx31fk1bdylllicbnxj2xmb5xzss27amy8xcmlb3qds";
+       version = "0.7";
+       sha256 = "1r1z13n0s5vxxcxwwfmk8dplah12qdyb0jnjx2hx239hvy2l1bzc";
        buildDepends = [
          base base-compat base-orphans generics-sop tagged
        ];
@@ -52192,6 +52291,7 @@ self: {
          base base-compat base-orphans generics-sop hspec hspec-expectations
          markdown-unlit QuickCheck silently tagged
        ];
+       homepage = "https://github.com/zalora/getopt-generics#readme";
        description = "Simple command line argument parsing";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -52707,6 +52807,19 @@ self: {
        license = stdenv.lib.licenses.bsd3;
      }) {};
 
+  "ghc-tcplugins-extra" = callPackage
+    ({ mkDerivation, base, ghc }:
+     mkDerivation {
+       pname = "ghc-tcplugins-extra";
+       version = "0.1";
+       sha256 = "1lr3x3vg5aw8fjwz7skcisqg2hsls16abxp8p4w4940qnw5zznkf";
+       buildDepends = [ base ghc ];
+       jailbreak = true;
+       homepage = "http://www.clash-lang.org/";
+       description = "Utilities for writing GHC type-checker plugins";
+       license = stdenv.lib.licenses.bsd2;
+     }) {};
+
   "ghc-time-alloc-prof" = callPackage
     ({ mkDerivation, attoparsec, base, containers, text, time }:
      mkDerivation {
@@ -52722,12 +52835,13 @@ self: {
      }) {};
 
   "ghc-typelits-natnormalise" = callPackage
-    ({ mkDerivation, base, ghc, tasty, tasty-hunit }:
+    ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
+     }:
      mkDerivation {
        pname = "ghc-typelits-natnormalise";
-       version = "0.2.1";
-       sha256 = "0dflzqhqax06nx4qc5xw6k1aihny7d2pxg1ldyw1y57mjg44clah";
-       buildDepends = [ base ghc ];
+       version = "0.3";
+       sha256 = "169imqq6hch4lamsgz8s3cnszysvxvw9xlgd5bjldq09zvpy7i8r";
+       buildDepends = [ base ghc ghc-tcplugins-extra ];
        testDepends = [ base tasty tasty-hunit ];
        jailbreak = true;
        homepage = "http://www.clash-lang.org/";
@@ -53550,8 +53664,8 @@ self: {
      }:
      mkDerivation {
        pname = "gitit";
-       version = "0.10.6.3";
-       sha256 = "1pzxk4zsk1992gsgyi0pfj8x0dggf56v78345jl282hvb2psm371";
+       version = "0.10.7";
+       sha256 = "1gj94z2c2jpdm9bkfnc6wbyhipgbss0j70ql26hn8g3fh1ykcpbj";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -53563,7 +53677,6 @@ self: {
          random recaptcha safe SHA split syb tagsoup text time uri url
          utf8-string uuid xhtml xml xss-sanitize zlib
        ];
-       jailbreak = true;
        homepage = "http://gitit.net";
        description = "Wiki using happstack, git or darcs, and pandoc";
        license = "GPL";
@@ -53934,12 +54047,12 @@ self: {
      }) {};
 
   "gll" = callPackage
-    ({ mkDerivation, array, base, containers }:
+    ({ mkDerivation, array, base, containers, TypeCompose }:
      mkDerivation {
        pname = "gll";
-       version = "0.1.0.1";
-       sha256 = "09f5clmvn8icgsw73ysyalspy07llbg6lbiqidb4lvmznhg38rvv";
-       buildDepends = [ array base containers ];
+       version = "0.2.0.1";
+       sha256 = "0f5hiklia5fkddzahq0cjpwdjjk2d5sfs0hd7wwcylylsh0xicd7";
+       buildDepends = [ array base containers TypeCompose ];
        description = "GLL parser with simple combinator interface";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -55769,6 +55882,22 @@ self: {
        license = stdenv.lib.licenses.lgpl21;
      }) { inherit (pkgs.gnome) gtk;};
 
+  "gtk-helpers" = callPackage
+    ({ mkDerivation, array, base, gio, glib, gtk, mtl, process
+     , template-haskell
+     }:
+     mkDerivation {
+       pname = "gtk-helpers";
+       version = "0.0.7";
+       sha256 = "0cx43z79r77ksicgz4ajg8b4hhllyfadcb46zdh6lg088zsgc6v7";
+       buildDepends = [
+         array base gio glib gtk mtl process template-haskell
+       ];
+       homepage = "http://keera.es/blog/community";
+       description = "A collection of auxiliary operations and widgets related to Gtk";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
   "gtk-jsinput" = callPackage
     ({ mkDerivation, base, gtk, json, transformers }:
      mkDerivation {
@@ -56470,8 +56599,8 @@ self: {
      }:
      mkDerivation {
        pname = "hPDB";
-       version = "1.2.0.3";
-       sha256 = "1lciijgn137gmi190if41akj4pv9030rbbvys5lfh4q5kk8p2dsp";
+       version = "1.2.0.4";
+       sha256 = "0fzr6y19x7c47y3jl68zcrjnlc8j3b0xnvvrpmqm15qznlrdh41s";
        buildDepends = [
          AC-Vector base bytestring containers deepseq directory ghc-prim
          iterable mmap mtl Octree parallel QuickCheck tagged
@@ -62717,6 +62846,7 @@ self: {
        sha256 = "1g4nf361qfjyymwpyiiq0qk5brrsr4wz1pncij69pwda919b3j6b";
        buildDepends = [ base ];
        testDepends = [ base directory doctest filepath ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/heaps/";
        description = "Asymptotically optimal Brodal/Okasaki heaps";
        license = stdenv.lib.licenses.bsd3;
@@ -65411,8 +65541,8 @@ self: {
     ({ mkDerivation, base, hspec, sass }:
      mkDerivation {
        pname = "hlibsass";
-       version = "0.1.2.0";
-       sha256 = "18hby3vjnzfis2ixbkkrk1zwky4rymx5ai00wza9yx4ijnxrzc3z";
+       version = "0.1.2.1";
+       sha256 = "1fipgxpzzc0jbb2xc2dslhc94xjvd1vkq564g4a1i7axnq90b6dv";
        buildDepends = [ base ];
        testDepends = [ base hspec ];
        extraLibraries = [ sass ];
@@ -66368,6 +66498,27 @@ self: {
        hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
+  "homplexity" = callPackage
+    ({ mkDerivation, base, containers, cpphs, deepseq, directory
+     , filepath, happy, haskell-src-exts, hflags, template-haskell
+     , uniplate
+     }:
+     mkDerivation {
+       pname = "homplexity";
+       version = "0.4.2.0";
+       sha256 = "1jxq8fgm1ja0y3h5jj9d4wr96fpb6496xc9sb3q562bxssx6giay";
+       isLibrary = false;
+       isExecutable = true;
+       buildDepends = [
+         base containers cpphs deepseq directory filepath haskell-src-exts
+         hflags template-haskell uniplate
+       ];
+       buildTools = [ happy ];
+       homepage = "https://github.com/mgajda/homplexity";
+       description = "Haskell code quality tool";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
   "honi" = callPackage
     ({ mkDerivation, base, bytestring, freenect, hspec, HUnit, OpenNI2
      , text
@@ -67027,6 +67178,7 @@ self: {
        homepage = "https://github.com/yihuang/hosts-server";
        description = "An dns server which is extremely easy to config";
        license = stdenv.lib.licenses.gpl3;
+       hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
   "hothasktags" = callPackage
@@ -67990,8 +68142,8 @@ self: {
      }:
      mkDerivation {
        pname = "hs-mesos";
-       version = "0.20.2.0";
-       sha256 = "1vnfmb5mnp3wsbd7s1ls6rz0ywlirykdx7dclkxcc3rh1y0mxp1n";
+       version = "0.20.3.0";
+       sha256 = "1d9mf35i5nwpnr5l5v75rrcwihfkpfy3ji9jwhk9k0g285bfr5dh";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [ base bytestring lens managed template-haskell ];
@@ -72682,8 +72834,8 @@ self: {
      }:
      mkDerivation {
        pname = "hyakko";
-       version = "0.6.6";
-       sha256 = "1y0b5rxgiaygy0y42s2rnnw87br4d73nbjii9gpbf80rlvhdjagw";
+       version = "0.6.7";
+       sha256 = "1k81whay05mp9jb39gmb64l2xqxa90yrb7svbphj1cnsz0b76qwk";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [
@@ -73103,6 +73255,7 @@ self: {
        testDepends = [
          base containers directory doctest filepath unordered-containers
        ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/hyphenation";
        description = "Configurable Knuth-Liang hyphenation";
        license = stdenv.lib.licenses.bsd3;
@@ -74420,12 +74573,9 @@ self: {
     ({ mkDerivation, base }:
      mkDerivation {
        pname = "index-core";
-       version = "1.0.1";
-       revision = "1";
-       sha256 = "01d7025js5a3373a8ixl3clvmd0blpkly6js3ggnp26p4h5ilhv4";
-       editedCabalFile = "dbc4c7390f6664ca0ad083bb005897e6f3ca5dca5e95709621c131d7a1a0f09f";
+       version = "1.0.2";
+       sha256 = "0sj69r9mavw1s17lhh7af9n5vrb60gk5lm6v593sp0rs77canldw";
        buildDepends = [ base ];
-       jailbreak = true;
        description = "Indexed Types";
        license = stdenv.lib.licenses.bsd3;
        hydraPlatforms = stdenv.lib.platforms.none;
@@ -74627,8 +74777,8 @@ self: {
      }:
      mkDerivation {
        pname = "influxdb";
-       version = "0.9.1.2";
-       sha256 = "1nn1vflzb4c8xvvnnxl3ph947nxy5ibyh8bzrp2ddwjb62xm2l00";
+       version = "0.9.1.3";
+       sha256 = "0v092i592j5n31fl0vc5750pqjbgaj10n3dm314bkll6ld0gdbwx";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -74640,7 +74790,6 @@ self: {
          base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck
          tasty-th text vector
        ];
-       jailbreak = true;
        homepage = "https://github.com/maoe/influxdb-haskell";
        description = "Haskell client library for InfluxDB";
        license = stdenv.lib.licenses.bsd3;
@@ -74720,8 +74869,8 @@ self: {
      }:
      mkDerivation {
        pname = "inline-c";
-       version = "0.5.3.1";
-       sha256 = "1n4w1lr3jwx4dwcks0c7rc79hdf4jwsgl3famivrdls01fqv9dhi";
+       version = "0.5.3.2";
+       sha256 = "0sihzjscdrk02z2d22j0fcqgk05nhpg16zy2cdkxjj4cp09nbaac";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -75682,18 +75831,16 @@ self: {
 
   "ircbot" = callPackage
     ({ mkDerivation, base, bytestring, containers, directory, filepath
-     , irc, mtl, network, old-locale, parsec, random, SafeSemaphore, stm
-     , time, unix
+     , irc, mtl, network, parsec, random, SafeSemaphore, stm, time, unix
      }:
      mkDerivation {
        pname = "ircbot";
-       version = "0.6.2";
-       sha256 = "0jl6sgm7bk4yi1l4s6j3yir3rpbxx8r4ri267xcw77b2vzbxq7l0";
+       version = "0.6.4";
+       sha256 = "024wmkp08rni9frflpjl0p30ql6k1kj956j5dysz40xygajk8fmd";
        buildDepends = [
          base bytestring containers directory filepath irc mtl network
-         old-locale parsec random SafeSemaphore stm time unix
+         parsec random SafeSemaphore stm time unix
        ];
-       jailbreak = true;
        homepage = "http://hub.darcs.net/stepcut/ircbot";
        description = "A library for writing irc bots";
        license = stdenv.lib.licenses.bsd3;
@@ -77955,6 +78102,242 @@ self: {
        license = stdenv.lib.licenses.mit;
      }) {};
 
+  "keera-callbacks" = callPackage
+    ({ mkDerivation, base, mtl }:
+     mkDerivation {
+       pname = "keera-callbacks";
+       version = "0.1";
+       sha256 = "1xgxg30za69nfk8y83bmskjq2w3r3afg4gc507wkn91xdah93niq";
+       buildDepends = [ base mtl ];
+       description = "Mutable memory locations with callbacks";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-i18n" = callPackage
+    ({ mkDerivation, base, directory, filepath, glib, hgettext
+     , MissingK, setlocale, utf8-string
+     }:
+     mkDerivation {
+       pname = "keera-hails-i18n";
+       version = "0.0.3.3";
+       sha256 = "0aih2mxgyfnrfnvqqsdv5g7r4jgjg5cfqykgalcsb9wqv0gq6d4i";
+       buildDepends = [
+         base directory filepath glib hgettext MissingK setlocale
+         utf8-string
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Rapid Gtk Application Development - I18N";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-controller" = callPackage
+    ({ mkDerivation, base }:
+     mkDerivation {
+       pname = "keera-hails-mvc-controller";
+       version = "0.0.3.3";
+       sha256 = "00qr5czm0hq3jxwp42fc50v6r458rm9qq9fpri4rhnc41il79nzb";
+       buildDepends = [ base ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Gtk-based controller for MVC applications";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-environment-gtk" = callPackage
+    ({ mkDerivation, base, keera-hails-mvc-model-protectedmodel
+     , keera-hails-mvc-view, keera-hails-mvc-view-gtk
+     }:
+     mkDerivation {
+       pname = "keera-hails-mvc-environment-gtk";
+       version = "0.0.3.3";
+       sha256 = "0bk3191x8bsvmmnqyf7jzmrlg71q26z2kn4xfahdnpgxw3qskwmr";
+       buildDepends = [
+         base keera-hails-mvc-model-protectedmodel keera-hails-mvc-view
+         keera-hails-mvc-view-gtk
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-model-lightmodel" = callPackage
+    ({ mkDerivation, base, containers, keera-hails-reactivevalues
+     , MissingK, stm, template-haskell
+     }:
+     mkDerivation {
+       pname = "keera-hails-mvc-model-lightmodel";
+       version = "0.0.3.4";
+       sha256 = "085qppi68qf8jbkp674ldikhr5z4nrffzqa9kgdm1dngrgsib190";
+       buildDepends = [
+         base containers keera-hails-reactivevalues MissingK stm
+         template-haskell
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Rapid Gtk Application Development - Reactive Protected Light Models";
+       license = stdenv.lib.licenses.bsd3;
+       hydraPlatforms = stdenv.lib.platforms.none;
+     }) {};
+
+  "keera-hails-mvc-model-protectedmodel" = callPackage
+    ({ mkDerivation, base, containers, keera-hails-reactivevalues
+     , MissingK, stm, template-haskell
+     }:
+     mkDerivation {
+       pname = "keera-hails-mvc-model-protectedmodel";
+       version = "0.0.3.5";
+       sha256 = "14jm1116j3plzglxygjdymfy8z3p5k8zinnh8wazkxgc5y9kkcsx";
+       buildDepends = [
+         base containers keera-hails-reactivevalues MissingK stm
+         template-haskell
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Rapid Gtk Application Development - Protected Reactive Models";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-solutions-config" = callPackage
+    ({ mkDerivation, base, directory, filepath, MissingK }:
+     mkDerivation {
+       pname = "keera-hails-mvc-solutions-config";
+       version = "0.0.3.3";
+       sha256 = "16c6nh5fqw2r42nxs3x27rqbpscypjzgqnprl99241giwcvy98x1";
+       buildDepends = [ base directory filepath MissingK ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Easy handling of configuration files";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-solutions-gtk" = callPackage
+    ({ mkDerivation, base, gtk, hslogger, HTTP
+     , keera-hails-mvc-environment-gtk
+     , keera-hails-mvc-model-protectedmodel, keera-hails-mvc-view
+     , keera-hails-mvc-view-gtk, keera-hails-reactivevalues, MissingK
+     , mtl, network, network-uri, template-haskell
+     }:
+     mkDerivation {
+       pname = "keera-hails-mvc-solutions-gtk";
+       version = "0.0.3.3";
+       sha256 = "1j0821aysvzpa8qnnz9066gwxk1bwn0sykihb5p5br62n7xzhgkf";
+       buildDepends = [
+         base gtk hslogger HTTP keera-hails-mvc-environment-gtk
+         keera-hails-mvc-model-protectedmodel keera-hails-mvc-view
+         keera-hails-mvc-view-gtk keera-hails-reactivevalues MissingK mtl
+         network network-uri template-haskell
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Common solutions to recurrent problems in Gtk applications";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-view" = callPackage
+    ({ mkDerivation, base }:
+     mkDerivation {
+       pname = "keera-hails-mvc-view";
+       version = "0.0.3.3";
+       sha256 = "0jkwbpw23ba5z83nfk51hp8wsfkrbbiwr0f6bvx39wzz1v81n58p";
+       buildDepends = [ base ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Generic View for MVC applications";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-mvc-view-gtk" = callPackage
+    ({ mkDerivation, base, gtk, gtk-helpers, keera-hails-mvc-view }:
+     mkDerivation {
+       pname = "keera-hails-mvc-view-gtk";
+       version = "0.0.3.3";
+       sha256 = "1yz4drm0r1831acg9y8glg7hgiqwgc5nqkz4hfgqgfngqs94jx4z";
+       buildDepends = [ base gtk gtk-helpers keera-hails-mvc-view ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Gtk-based View for MVC applications";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-reactive-fs" = callPackage
+    ({ mkDerivation, base, directory, fsnotify
+     , keera-hails-reactivevalues, system-filepath
+     }:
+     mkDerivation {
+       pname = "keera-hails-reactive-fs";
+       version = "0.0.3.3";
+       sha256 = "1j8nlzaalmf82jhri8m12hl6vmg6y4amwvb1gv5dld41cz6sdv08";
+       buildDepends = [
+         base directory fsnotify keera-hails-reactivevalues system-filepath
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Rails - Files as Reactive Values";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-reactive-gtk" = callPackage
+    ({ mkDerivation, base, gtk, gtk-helpers, keera-hails-reactivevalues
+     , mtl, transformers
+     }:
+     mkDerivation {
+       pname = "keera-hails-reactive-gtk";
+       version = "0.0.3.5";
+       sha256 = "01hvakmxjm9vpfwp4s7c1s3jqiy21yqb9rgjs2drf2kb66ndvsq9";
+       buildDepends = [
+         base gtk gtk-helpers keera-hails-reactivevalues mtl transformers
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets";
+       license = stdenv.lib.licenses.bsd3;
+       hydraPlatforms = stdenv.lib.platforms.none;
+     }) {};
+
+  "keera-hails-reactive-network" = callPackage
+    ({ mkDerivation, base, keera-hails-reactivevalues, network }:
+     mkDerivation {
+       pname = "keera-hails-reactive-network";
+       version = "0.0.3.3";
+       sha256 = "1379djvy5nn6k67ds7mk9jjh03zd6sj0v8sf5agmk3pf5cyp0xa3";
+       buildDepends = [ base keera-hails-reactivevalues network ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Rails - Sockets as Reactive Values";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-reactive-polling" = callPackage
+    ({ mkDerivation, base, keera-callbacks, keera-hails-reactivevalues
+     }:
+     mkDerivation {
+       pname = "keera-hails-reactive-polling";
+       version = "0.0.3.3";
+       sha256 = "1khkbhj94y6y5s2d56h718c8kh3y698wdryi2369mrw755dy6qh8";
+       buildDepends = [ base keera-callbacks keera-hails-reactivevalues ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Rails - Polling based Readable RVs";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-reactive-wx" = callPackage
+    ({ mkDerivation, base, keera-hails-reactivevalues, wx, wxcore }:
+     mkDerivation {
+       pname = "keera-hails-reactive-wx";
+       version = "0.0.3.3";
+       sha256 = "02ikqqfgwr3nrr18qdd1jshqm0dlnwbybqpzpj2ba7zbwpabd5bw";
+       buildDepends = [ base keera-hails-reactivevalues wx wxcore ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Rails - Reactive Fields for WX widgets";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
+  "keera-hails-reactive-yampa" = callPackage
+    ({ mkDerivation, base, keera-callbacks, keera-hails-reactivevalues
+     , time, Yampa
+     }:
+     mkDerivation {
+       pname = "keera-hails-reactive-yampa";
+       version = "0.0.3.3";
+       sha256 = "1n1xyr9pc1sw9gypwhh1rfdjshg7x1kvwr6v3hp0837zvdcz8gw1";
+       buildDepends = [
+         base keera-callbacks keera-hails-reactivevalues time Yampa
+       ];
+       homepage = "http://www.keera.es/blog/community/";
+       description = "Haskell on Rails - FRP Yampa Signal Functions as RVs";
+       license = stdenv.lib.licenses.bsd3;
+     }) {};
+
   "keera-hails-reactivevalues" = callPackage
     ({ mkDerivation, base, contravariant }:
      mkDerivation {
@@ -79422,8 +79805,8 @@ self: {
      }:
      mkDerivation {
        pname = "language-c-quote";
-       version = "0.10.2.1";
-       sha256 = "0klr7b4sdi8bsln9hw3xa56d3s1h869zkyqnm97fiyvzar91g532";
+       version = "0.10.2.2";
+       sha256 = "0y65mlx4zx1n7n6y3gjvzqzr2k8bxbbjn4wsjr8mzpib0gqfqpss";
        buildDepends = [
          array base bytestring containers exception-mtl
          exception-transformers filepath haskell-src-meta mainland-pretty
@@ -81840,6 +82223,7 @@ self: {
          base binary bytestring directory doctest filepath HUnit lens
          simple-reflect test-framework test-framework-hunit
        ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/linear/";
        description = "Linear Algebra";
        license = stdenv.lib.licenses.bsd3;
@@ -83230,8 +83614,8 @@ self: {
      }:
      mkDerivation {
        pname = "log";
-       version = "0.2.0";
-       sha256 = "1mm41m8vg7n6hnnrg47qy2pbhsxgykclz3wypjsf1zj5wbqdd2w0";
+       version = "0.2.1";
+       sha256 = "0jply63w04pnkfv3s8lpnwvjf43sfhf3mk72p3wva4p28c6mql31";
        buildDepends = [
          aeson aeson-pretty base bytestring deepseq exceptions hpqtypes
          monad-control monad-time mtl old-locale split stm text time
@@ -84287,6 +84671,7 @@ self: {
          transformers void
        ];
        testDepends = [ base directory doctest filepath ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/machines/";
        description = "Networked stream transducers";
        license = stdenv.lib.licenses.bsd3;
@@ -86185,8 +86570,8 @@ self: {
      }:
      mkDerivation {
        pname = "memory";
-       version = "0.6";
-       sha256 = "18r0rnh2x5sazn2i23v222vxrgsgyyzbfvasg21r2kh42i0vh2bw";
+       version = "0.7";
+       sha256 = "1yj1v4xr3y3inrn1rzlh1lfmgxi8p15k4qm48bac76qg3a2wh8z1";
        buildDepends = [ base bytestring deepseq ghc-prim ];
        testDepends = [ base tasty tasty-hunit tasty-quickcheck ];
        homepage = "https://github.com/vincenthz/hs-memory";
@@ -86392,8 +86777,8 @@ self: {
      }:
      mkDerivation {
        pname = "metrics";
-       version = "0.3.0.0";
-       sha256 = "1g1nxb7q834nslrmgmqarbbq3ah60k2fqj71k55z9dj4waqgx2sg";
+       version = "0.3.0.1";
+       sha256 = "1mj4x5pq9mch71vk5cqi2wjaqjhgsllvjbsz7yyv6sg4cps63d8l";
        buildDepends = [
          ansi-terminal base bytestring containers lens mtl mwc-random
          primitive text time unix unordered-containers vector
@@ -86802,8 +87187,8 @@ self: {
      }:
      mkDerivation {
        pname = "mime-mail";
-       version = "0.4.8.2";
-       sha256 = "19f2q4x8b19sc7y1yyxvl3fsyggjs07yhf1zjw42a875lp4mnvia";
+       version = "0.4.9";
+       sha256 = "1l638jr7914227mg8854i6xgyhq403kb1zc2py77yb0xifm20534";
        buildDepends = [
          base base64-bytestring blaze-builder bytestring filepath process
          random text
@@ -87403,6 +87788,7 @@ self: {
        sha256 = "005pbkrszgkbm0qx9hzn1f72l9z07qhqypmcw72fi5i5hppr45av";
        buildDepends = [ base ];
        testDepends = [ base doctest Glob ];
+       jailbreak = true;
        homepage = "https://github.com/TikhonJelvis/modular-arithmetic";
        description = "A type for integers modulo some constant";
        license = stdenv.lib.licenses.bsd3;
@@ -88219,8 +88605,11 @@ self: {
      mkDerivation {
        pname = "monad-unify";
        version = "0.2.2";
+       revision = "1";
        sha256 = "1icl4jaa4vc4lb75m6wv4vjvf8b2xx7aziqhsg2pshizdkfxmgwp";
+       editedCabalFile = "7d585b29bfa558cf59d169421d1ec3363b6ef56b88cf6a9a082192d609676ce2";
        buildDepends = [ base mtl unordered-containers ];
+       jailbreak = true;
        description = "Generic first-order unification";
        license = stdenv.lib.licenses.mit;
        hydraPlatforms = stdenv.lib.platforms.none;
@@ -91334,8 +91723,8 @@ self: {
      }:
      mkDerivation {
        pname = "nettle";
-       version = "0.1.0";
-       sha256 = "1ms96laa9d2ns39ymw6mlwm0mj03vss7855cs9npymhb4fmqkcas";
+       version = "0.1.1";
+       sha256 = "1l9515ks41b9rkcxv91d391lwl87k2ipl3j5qfjcdz1qaxrnjkyr";
        buildDepends = [
          base byteable bytestring crypto-cipher-types securemem tagged
        ];
@@ -91516,17 +91905,18 @@ self: {
     ({ mkDerivation, attoparsec, base, base32string, bytestring
      , exceptions, hexstring, hspec, hspec-attoparsec
      , hspec-expectations, network, network-attoparsec, network-simple
-     , socks, text, transformers
+     , socks, splice, text, transformers
      }:
      mkDerivation {
        pname = "network-anonymous-tor";
-       version = "0.9.1";
-       sha256 = "1p78xsi1i59z9jkyf182gvfx7qpiqs0l60mp2xl1d4jjwgdnni50";
+       version = "0.9.2";
+       sha256 = "1zssb8npwnzj8mra8pkvshni7h36wqhddva9rrwbq480492sck1w";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
          attoparsec base base32string bytestring exceptions hexstring
-         network network-attoparsec network-simple socks text transformers
+         network network-attoparsec network-simple socks splice text
+         transformers
        ];
        testDepends = [
          attoparsec base base32string bytestring exceptions hspec
@@ -94678,15 +95068,21 @@ self: {
      }) {};
 
   "order-maintenance" = callPackage
-    ({ mkDerivation, base, containers, transformers }:
+    ({ mkDerivation, base, Cabal, cabal-test-quickcheck, containers
+     , QuickCheck, transformers
+     }:
      mkDerivation {
        pname = "order-maintenance";
-       version = "0.0.0.0";
-       sha256 = "1d416a277fcchcgyn4n5m7kpn0aky8gsi8fkk0gh3a4lcap18h2d";
+       version = "0.0.1.0";
+       sha256 = "01j8caxlmzz04qabinq5kcjdsr1855lmcdsi9sqn9zf79s16q97k";
        buildDepends = [ base containers transformers ];
+       testDepends = [
+         base Cabal cabal-test-quickcheck containers QuickCheck transformers
+       ];
        homepage = "http://darcs.wolfgang.jeltsch.info/haskell/order-maintenance";
        description = "Algorithms for the order maintenance problem with a safe interface";
        license = stdenv.lib.licenses.bsd3;
+       hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
   "order-statistics" = callPackage
@@ -94928,6 +95324,7 @@ self: {
        sha256 = "0mv9iakq1yjawf7f0zckmxbzlcv2rlqngsllfsrcydi6lxazznzw";
        buildDepends = [ base ];
        testDepends = [ base doctest ];
+       jailbreak = true;
        description = "An alternative to some of the Prelude";
        license = stdenv.lib.licenses.mit;
      }) {};
@@ -95005,8 +95402,8 @@ self: {
      }:
      mkDerivation {
        pname = "packed-dawg";
-       version = "0.2.0.5";
-       sha256 = "1b8lhigpzj1zvah6f4ra7pczhpm8dxcwaqna8p1ifbbx2ys6x59p";
+       version = "0.2.0.7";
+       sha256 = "03wf6pnv2l7aydxzv0gx073324iy5j7pbfh5nl3p5xdpr8y8il7y";
        buildDepends = [
          base binary deepseq mtl unordered-containers vector
          vector-binary-instances
@@ -95242,8 +95639,8 @@ self: {
      }:
      mkDerivation {
        pname = "pandoc";
-       version = "1.14.0.3";
-       sha256 = "1nbicmngsdx9v4kvsswipf8w1l8rvfsll8fnp2ar5v65b0aba3ic";
+       version = "1.14.0.4";
+       sha256 = "1pzs4ysf7q3sxd8vyydzi5r4n8gjnkvjs3p1phmw4zir3zxmp581";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -95322,10 +95719,8 @@ self: {
     ({ mkDerivation, base, csv, pandoc, pandoc-types, text }:
      mkDerivation {
        pname = "pandoc-csv2table";
-       version = "1.0.0";
-       revision = "1";
-       sha256 = "0jr18sa5apvy8jckb5cxvsyr6c2drii6652ipwpd4xkdwrabwp5r";
-       editedCabalFile = "49799682e063ffa396f94dd2f91e9b252f0224544d2e7a9d1dc5b41a909efd3d";
+       version = "1.0.1";
+       sha256 = "0b4xszf9bzfhrjgy2cymryab58zhh4jwv9p8g2hiqgrxix8jr1qb";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [ base csv pandoc pandoc-types text ];
@@ -98937,6 +99332,7 @@ self: {
        ];
        description = "Multi-backend (zookeeper and sqlite) DNS Server using persistent-library";
        license = stdenv.lib.licenses.bsd3;
+       hydraPlatforms = stdenv.lib.platforms.none;
      }) {};
 
   "pointed" = callPackage
@@ -99155,16 +99551,16 @@ self: {
      }) {};
 
   "poly-arity" = callPackage
-    ({ mkDerivation, base, constraints, hspec, QuickCheck
+    ({ mkDerivation, base, constraints, HList, hspec, QuickCheck
      , quickcheck-instances
      }:
      mkDerivation {
        pname = "poly-arity";
-       version = "0.0.4";
-       revision = "1";
-       sha256 = "0cg312hlfylablw4h840xhm72cs70xk9rla4wrmzpqm45g91fhyq";
-       editedCabalFile = "e099e3cdd06f5ab832bfc920265cd97304f92c2e89126306f7e1d9bff98cbe86";
-       buildDepends = [ base constraints ];
+       version = "0.0.4.1";
+       revision = "2";
+       sha256 = "15yl8mqwahbrwl0hmz6lb4k7i48qgnxhav7xalj4q541ghd7cnwp";
+       editedCabalFile = "0bce1ff7388433830c7824530bb9c4fe3f4545bad44683dec2a5780028d870af";
+       buildDepends = [ base constraints HList ];
        testDepends = [ base hspec QuickCheck quickcheck-instances ];
        description = "Tools for working with functions of undetermined arity";
        license = stdenv.lib.licenses.bsd3;
@@ -99957,8 +100353,8 @@ self: {
      }:
      mkDerivation {
        pname = "postgrest";
-       version = "0.2.9.1";
-       sha256 = "0rgvqhhpg6q99q1bdbk3dhnlad8nfrl3xihcg3c0j55dlx3q1860";
+       version = "0.2.10.0";
+       sha256 = "0s1nmdpdjylqb6lmb9ijh83pfjyf8j6dkagl3rzl4dxc97w6fbpy";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -104204,6 +104600,7 @@ self: {
          attoparsec base base-prelude template-haskell text transformers
        ];
        testDepends = [ base base-prelude directory doctest filepath ];
+       jailbreak = true;
        homepage = "https://github.com/nikita-volkov/record";
        description = "First class records implemented with quasi-quotation";
        license = stdenv.lib.licenses.mit;
@@ -104284,8 +104681,8 @@ self: {
     ({ mkDerivation, base, comonad, free, transformers }:
      mkDerivation {
        pname = "recursion-schemes";
-       version = "4.1.1";
-       sha256 = "00izjknk7g2546p35hrha413nji6013wfbjic8jgmlzzjlr1cjwl";
+       version = "4.1.2";
+       sha256 = "1z64r20qgf7n5c2529cpwhklb3nkmw01p2llq903dqkplmbi7z9n";
        buildDepends = [ base comonad free transformers ];
        homepage = "http://github.com/ekmett/recursion-schemes/";
        description = "Generalized bananas, lenses and barbed wire";
@@ -109675,8 +110072,8 @@ self: {
      }:
      mkDerivation {
        pname = "sdr";
-       version = "0.1.0.2";
-       sha256 = "17i16f9pgd8a2l9ywl516zh29mmk5z08j964blajl46wr38g320j";
+       version = "0.1.0.3";
+       sha256 = "1whw45vnns0f5iw9vlmfxw90y3l0gp0q5yar6p6dp1dn57gyrdkc";
        buildDepends = [
          array base bytestring cairo cereal Chart Chart-cairo colour
          containers Decimal dynamic-graph either fftwRaw GLFW-b OpenGL
@@ -109890,8 +110287,8 @@ self: {
     ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory }:
      mkDerivation {
        pname = "securemem";
-       version = "0.1.8";
-       sha256 = "14q5p464vks942k4q5dl4gyi9asg3d8rl8kd84qgbrvvr3ymhxb2";
+       version = "0.1.9";
+       sha256 = "0dkhhjxa7njc3qbgvd5a23rkvr39vj2kn2a9nk6yjg7a8b2hvdpy";
        buildDepends = [ base byteable bytestring ghc-prim memory ];
        homepage = "http://github.com/vincenthz/hs-securemem";
        description = "abstraction to an auto scrubbing and const time eq, memory chunk";
@@ -110051,15 +110448,14 @@ self: {
      }:
      mkDerivation {
        pname = "semigroupoids";
-       version = "5.0.0.1";
-       revision = "1";
-       sha256 = "0njand5df3ri7pr0jd12z7dfvcfw6xdm7z5ap0b4xcpy47ndcw8l";
-       editedCabalFile = "30bb2d94a228945d3d719a7004d79c218479dbdf31f1e92f730378af57fd6575";
+       version = "5.0.0.2";
+       sha256 = "14q7284gq44h86j6jxi7pz1hxwfal0jgv6i2j1v2hdzqfnd8z5sw";
        buildDepends = [
          base base-orphans bifunctors comonad containers contravariant
          distributive semigroups tagged transformers transformers-compat
        ];
        testDepends = [ base directory doctest filepath ];
+       jailbreak = true;
        homepage = "http://github.com/ekmett/semigroupoids";
        description = "Semigroupoids: Category sans id";
        license = stdenv.lib.licenses.bsd3;
@@ -110526,6 +110922,7 @@ self: {
          filepath hspec parsec QuickCheck quickcheck-instances
          string-conversions text url
        ];
+       jailbreak = true;
        homepage = "http://haskell-servant.github.io/";
        description = "A family of combinators for defining webservices APIs";
        license = stdenv.lib.licenses.bsd3;
@@ -110598,8 +110995,8 @@ self: {
      }:
      mkDerivation {
        pname = "servant-ede";
-       version = "0.4";
-       sha256 = "0h1kvgp0hzn5zmvc5gys3n3w20gmjmsgdw4lmpk7qwg16x2kriwd";
+       version = "0.4.0.1";
+       sha256 = "1yxqjd6dk5bhh6qwjshm1fcizsm1vd5nk8sdbfdasgsfw6ynlgfp";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -110783,18 +111180,16 @@ self: {
 
   "ses-html" = callPackage
     ({ mkDerivation, base, base64-bytestring, blaze-html, byteable
-     , bytestring, cryptohash, HsOpenSSL, http-streams, old-locale
-     , tagsoup, time
+     , bytestring, cryptohash, HsOpenSSL, http-streams, tagsoup, time
      }:
      mkDerivation {
        pname = "ses-html";
-       version = "0.2.0.2";
-       sha256 = "0dfrhsn6scwid7ycnq4j21nkq64s59hkc05ygcg4qsf7vcizgs0d";
+       version = "0.2.1.2";
+       sha256 = "0ndw2w8b8zkwsa3qgwr27k2qvv9zrcd6zb1ygf54wzw79v2zpg5f";
        buildDepends = [
          base base64-bytestring blaze-html byteable bytestring cryptohash
-         HsOpenSSL http-streams old-locale tagsoup time
+         HsOpenSSL http-streams tagsoup time
        ];
-       jailbreak = true;
        description = "Send HTML formatted emails using Amazon's SES REST API with blaze";
        license = stdenv.lib.licenses.bsd3;
        hydraPlatforms = stdenv.lib.platforms.none;
@@ -113426,14 +113821,14 @@ self: {
      , clientsession, comonad, configurator, containers, directory
      , directory-tree, dlist, errors, filepath, hashable, heist, lens
      , logict, MonadCatchIO-transformers, mtl, mwc-random, old-time
-     , pwstore-fast, regex-posix, snap-core, snap-server, stm, syb
+     , pwstore-fast, regex-posix, snap-core, snap-server, stm
      , template-haskell, text, time, transformers, unordered-containers
      , vector, vector-algorithms, xmlhtml
      }:
      mkDerivation {
        pname = "snap";
-       version = "0.14.0.4";
-       sha256 = "0z0w6dig658cbl6adwq738dr9z56a3sj8lfhh5zfnmmy7x1794xs";
+       version = "0.14.0.5";
+       sha256 = "0wifww6mry2lxj572j9gwjxpjz4z7z9hd9jzhfyfwv2c67b39iyr";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -113441,8 +113836,8 @@ self: {
          configurator containers directory directory-tree dlist errors
          filepath hashable heist lens logict MonadCatchIO-transformers mtl
          mwc-random old-time pwstore-fast regex-posix snap-core snap-server
-         stm syb template-haskell text time transformers
-         unordered-containers vector vector-algorithms xmlhtml
+         stm template-haskell text time transformers unordered-containers
+         vector vector-algorithms xmlhtml
        ];
        jailbreak = true;
        homepage = "http://snapframework.com/";
@@ -117990,8 +118385,8 @@ self: {
     ({ mkDerivation, base, bytestring, text, utf8-string }:
      mkDerivation {
        pname = "string-conversions";
-       version = "0.3.0.3";
-       sha256 = "0n2ifim9n5vm305r989lh5xlbd8qc6byip2nfavf6gd2bcscs84p";
+       version = "0.4";
+       sha256 = "1bi4mjnz0srb01n0k73asizp5h2ir7j3whxai9wprqvz7kdscr0s";
        buildDepends = [ base bytestring text utf8-string ];
        description = "Simplifies dealing with different types for strings";
        license = stdenv.lib.licenses.bsd3;
@@ -118358,8 +118753,8 @@ self: {
      }:
      mkDerivation {
        pname = "stylish-haskell";
-       version = "0.5.13.0";
-       sha256 = "1284x4g6k24v3k2ii5jfyly6b788477qih3lq81x72x22d36d168";
+       version = "0.5.14.0";
+       sha256 = "1z8fya123cldakf15fc4p9vp0gp9gxql4x7faz12gfp9d6ffj4f5";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -125350,6 +125745,7 @@ self: {
          system-filepath temporary text time transformers unix
        ];
        testDepends = [ base doctest ];
+       jailbreak = true;
        description = "Shell programming, Haskell-style";
        license = stdenv.lib.licenses.bsd3;
      }) {};
@@ -131577,8 +131973,8 @@ self: {
     ({ mkDerivation, base, containers, mtl, stm, text }:
      mkDerivation {
        pname = "web-plugins";
-       version = "0.2.7";
-       sha256 = "0pvwhr5mr960lramlnz7sffxrr7mxqskqk5pqbspck7cabzwzsxd";
+       version = "0.2.8";
+       sha256 = "00w0v0q2i0jxwlav1qb967nf35bxbr6vwacs5mqficzg2d4pz969";
        buildDepends = [ base containers mtl stm text ];
        homepage = "http://www.happstack.com/";
        description = "dynamic plugin system for web applications";
@@ -131741,6 +132137,7 @@ self: {
          base bytestring primitive text types-compat unordered-containers
        ];
        testDepends = [ base doctest ];
+       jailbreak = true;
        homepage = "https://github.com/philopon/web-routing";
        description = "simple routing library";
        license = stdenv.lib.licenses.mit;
@@ -133046,6 +133443,7 @@ self: {
        sha256 = "1nv8mkfbgfnlmni0rzlzq7ir27ya3lnhkksfbkywjkbwz2k3yykc";
        buildDepends = [ base bytestring connection network websockets ];
        testDepends = [ base doctest ];
+       jailbreak = true;
        homepage = "http://taylor.fausak.me/wuss/";
        description = "Secure WebSocket (WSS) clients";
        license = stdenv.lib.licenses.mit;
@@ -133424,8 +133822,8 @@ self: {
      }:
      mkDerivation {
        pname = "xcffib";
-       version = "0.3.0";
-       sha256 = "1ih7wnsy38p7s14fnyg3pnm3hyp3nd6fprl2m66l09cj7ibvnxyc";
+       version = "0.3.2";
+       sha256 = "0njsflaxz2l01vbwndsmqmq37i6nl4cfczy776jdpnv7043b1ynv";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
@@ -133886,6 +134284,28 @@ self: {
        license = stdenv.lib.licenses.bsd3;
      }) {};
 
+  "xml-conduit-parse" = callPackage
+    ({ mkDerivation, base, conduit, conduit-parse, containers
+     , data-default, exceptions, hlint, parsers, resourcet, tasty
+     , tasty-hunit, text, xml-conduit, xml-types
+     }:
+     mkDerivation {
+       pname = "xml-conduit-parse";
+       version = "0.1.0.0";
+       sha256 = "1vf8yxnfw3mr7sphj69y2yds6k5bj9cycflk6dzbx367j1cihc0v";
+       buildDepends = [
+         base conduit conduit-parse containers exceptions parsers text
+         xml-conduit xml-types
+       ];
+       testDepends = [
+         base conduit conduit-parse data-default hlint parsers resourcet
+         tasty tasty-hunit
+       ];
+       homepage = "https://github.com/k0ral/xml-conduit-parse";
+       description = "Streaming XML parser based on conduits";
+       license = "unknown";
+     }) {};
+
   "xml-conduit-writer" = callPackage
     ({ mkDerivation, base, containers, dlist, mtl, text, xml-conduit
      , xml-types
@@ -135774,8 +136194,8 @@ self: {
      }:
      mkDerivation {
        pname = "yesod-core";
-       version = "1.4.9.1";
-       sha256 = "1fqla2cahqr51jgr0l8pl2wq4rai2dq6yky75qjg5a4xrxcdq6sc";
+       version = "1.4.10";
+       sha256 = "0wkicd71r87rnfiyx3264a1836mv8asnq2rvmp23qkjdp453ac7w";
        buildDepends = [
          aeson auto-update base blaze-builder blaze-html blaze-markup
          bytestring case-insensitive cereal clientsession conduit
@@ -135859,23 +136279,22 @@ self: {
      }) {};
 
   "yesod-dsl" = callPackage
-    ({ mkDerivation, alex, array, base, Cabal, containers, directory
-     , filepath, happy, MissingH, mtl, shakespeare, shakespeare-text
-     , strict, syb, text, transformers, uniplate
+    ({ mkDerivation, aeson, aeson-pretty, alex, array, base, bytestring
+     , Cabal, containers, directory, filepath, happy, MissingH, mtl
+     , shakespeare, strict, syb, text, transformers, uniplate, vector
      }:
      mkDerivation {
        pname = "yesod-dsl";
-       version = "0.1.1.23";
-       sha256 = "01rafa5klq1qjrl5w7ii4h27kiqhnacn95x7f2f7b1gxxp26psrx";
+       version = "0.1.1.24";
+       sha256 = "0pr5z3kg27j4fgyzs7ac263wd0qxfa3m45b6fn9hg18lwjb0fgd7";
        isLibrary = true;
        isExecutable = true;
        buildDepends = [
-         array base Cabal containers directory filepath MissingH mtl
-         shakespeare shakespeare-text strict syb text transformers uniplate
+         aeson aeson-pretty array base bytestring Cabal containers directory
+         filepath MissingH mtl shakespeare strict syb text transformers
+         uniplate vector
        ];
        buildTools = [ alex happy ];
-       jailbreak = true;
-       homepage = "https://github.com/tlaitinen/yesod-dsl";
        description = "DSL for generating Yesod subsite to manage an RDBMS;";
        license = stdenv.lib.licenses.bsd3;
        hydraPlatforms = stdenv.lib.platforms.none;
@@ -137194,8 +137613,8 @@ self: {
      }:
      mkDerivation {
        pname = "yst";
-       version = "0.5.0.2";
-       sha256 = "0spia0dma6ppqyns2g9ywd3pci87xzi1zkg03nxzbh8mxayq7js3";
+       version = "0.5.0.3";
+       sha256 = "15r381vsffqyzvgksipik0y9f41sy8ylsmvzw7hih4nrzp0w32ch";
        isLibrary = false;
        isExecutable = true;
        buildDepends = [
@@ -137203,7 +137622,6 @@ self: {
          HStringTemplate lucid old-locale old-time pandoc parsec scientific
          split text time unordered-containers yaml
        ];
-       jailbreak = true;
        homepage = "http://github.com/jgm/yst";
        description = "Builds a static website from templates and data in YAML or CSV files";
        license = "GPL";