diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index f676e2235633..36afb31ffcd5 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -35,7 +35,7 @@ self: super: { binary = self.binary_0_7_4_0; # deepseq is not a core library for this compiler. - deepseq = self.deepseq_1_4_0_0; + deepseq = self.deepseq_1_4_1_0; # transformers is not a core library for this compiler. transformers = self.transformers_0_4_3_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index 6d18d8294d6d..23e939853afc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -32,7 +32,7 @@ self: super: { unix = null; # deepseq is not a core library for this compiler. - deepseq = self.deepseq_1_4_0_0; + deepseq = self.deepseq_1_4_1_0; # transformers is not a core library for this compiler. transformers = self.transformers_0_4_3_0; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 63aaa0a11cf0..b7413ec9aee4 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -4304,8 +4304,8 @@ self: { ({ mkDerivation, base, QuickCheck, template-haskell }: mkDerivation { pname = "FenwickTree"; - version = "0.1.2"; - sha256 = "0kxlz0x4lzkn7xkilpcwpphp5hwr7nq56wh9vmh5zmsyr4adg3zy"; + version = "0.1.2.1"; + sha256 = "0g7hhkim16wsjf8l79hqkiv1lain6jm8wpiml1iycra3n9i2s5ww"; buildDepends = [ base QuickCheck template-haskell ]; testDepends = [ base QuickCheck template-haskell ]; homepage = "https://github.com/mgajda/FenwickTree"; @@ -4801,8 +4801,8 @@ self: { }: mkDerivation { pname = "GLFW-b"; - version = "1.4.7.1"; - sha256 = "1dzqvlxif5vadyd6vl9q260hhfp1rhmab9jwy3y1xmai31ddhlbb"; + version = "1.4.7.2"; + sha256 = "1hjsv6yqkwqi18c1vha105jl56xjvb5dqwqs4bgjkk99qcqq70rd"; buildDepends = [ base bindings-GLFW ]; testDepends = [ base bindings-GLFW HUnit test-framework test-framework-hunit @@ -5221,6 +5221,7 @@ self: { pname = "Glob"; version = "0.7.5"; sha256 = "0hdyi49zp2yr4h4wgngl8ajrss1p309c3pn0alj543yrh33bnqq0"; + editedCabalFile = "219b9caf1aaf9c2ab69ac75242f6017f0cd804a3370e0d63ac48777888fd909b"; buildDepends = [ base containers directory dlist filepath transformers ]; @@ -11023,14 +11024,14 @@ self: { }: mkDerivation { pname = "OpenSCAD"; - version = "0.2.0.0"; - sha256 = "1gg5x50631piay35jifh70nq88av71ar896q9vci65isz9a51yvb"; + version = "0.2.1.0"; + sha256 = "0b451v2sa9gaslhg03y6nyvjwbhwlg2qxwahcj6qpyx4qlmiywnh"; buildDepends = [ base colour filepath ]; testDepends = [ base Cabal colour filepath HUnit test-framework test-framework-hunit ]; - homepage = "https://graphics-openscad.googlecode.com/"; + homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/"; description = "ADT wrapper and renderer for OpenSCAD models"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -11895,6 +11896,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "QuickCheck_2_8" = callPackage + ({ mkDerivation, base, containers, random, template-haskell + , test-framework, tf-random, transformers + }: + mkDerivation { + pname = "QuickCheck"; + version = "2.8"; + sha256 = "04xs6mq22bcnkpi616qrbm7jlivh9csnhmvjgp1ifq52an1wr4rx"; + buildDepends = [ + base containers random template-haskell tf-random transformers + ]; + testDepends = [ base containers template-haskell test-framework ]; + jailbreak = true; + homepage = "https://github.com/nick8325/quickcheck"; + description = "Automatic testing of Haskell programs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "QuickCheck-GenT" = callPackage ({ mkDerivation, base, mtl, QuickCheck, random }: mkDerivation { @@ -18415,8 +18434,8 @@ self: { }: mkDerivation { pname = "amqp"; - version = "0.12.1"; - sha256 = "0s1v64b0m7xv7nrjmfpamfj40vh7cl9l5z7ccilbry5y4qacpsv9"; + version = "0.12.2"; + sha256 = "07nk8xxpkdh9w19rwwc87h2vbhfam339czkvyrmx7jh2dp51pnag"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -19299,6 +19318,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "applicative-fail" = callPackage + ({ mkDerivation, base, bifunctors }: + mkDerivation { + pname = "applicative-fail"; + version = "0.0.3"; + sha256 = "057ii1519qwjhg64vahbg2z2a4ydb2ndd1bjzz6cb1cx3n7nigr8"; + buildDepends = [ base bifunctors ]; + homepage = "https://bitbucket.org/s9gf4ult/applicative-fail"; + description = "Applicative functor which collects all your fails"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "applicative-numbers" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -20909,8 +20940,8 @@ self: { }: mkDerivation { pname = "auto"; - version = "0.2.0.3"; - sha256 = "1aplwr8lgl3x0sskjwlp85zrqj13468r9ddn5rzbaqj4j3kbpvcx"; + version = "0.2.0.4"; + sha256 = "1a2sz8snlxc7jgqs33vgczi1k4m4ssixq5xxgzclv0sz050cigh9"; buildDepends = [ base bytestring cereal containers deepseq profunctors random semigroups transformers @@ -23288,23 +23319,25 @@ self: { }) { esound = null;}; "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXext - , libXfixes, libXi, libXrandr, libXxf86vm, mesa, test-framework - , test-framework-hunit + ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor + , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm + , mesa, test-framework, test-framework-hunit }: mkDerivation { pname = "bindings-GLFW"; - version = "3.1.1"; - sha256 = "17r6q72s3gfbcr1l9wlh4v0wd6r1lajaq6yqyd0r29qnz3ahpvs5"; + version = "3.1.1.2"; + sha256 = "1r9nny6873nzk8ij53byqad0hfni8f1ysrajm430867pizvyfj50"; buildDepends = [ base bindings-DSL ]; testDepends = [ base HUnit test-framework test-framework-hunit ]; extraLibraries = [ - libX11 libXext libXfixes libXi libXrandr libXxf86vm mesa + libX11 libXcursor libXext libXfixes libXi libXinerama libXrandr + libXxf86vm mesa ]; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; - }) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXext; - inherit (pkgs.xlibs) libXfixes; inherit (pkgs.xlibs) libXi; + }) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXcursor; + inherit (pkgs.xlibs) libXext; inherit (pkgs.xlibs) libXfixes; + inherit (pkgs.xlibs) libXi; inherit (pkgs.xlibs) libXinerama; inherit (pkgs.xlibs) libXrandr; inherit (pkgs.xlibs) libXxf86vm; inherit (pkgs) mesa;}; @@ -25969,6 +26002,7 @@ self: { pname = "bytes"; version = "0.15"; sha256 = "0898qlpf74ax33hm6hbla9kcjrldk26sc5yj3gdp99yb3qb5swz6"; + editedCabalFile = "94dc3ad697fbfd70c7cf77a2e0c9bf4307a0f396012738537b931fc3b4e58386"; buildDepends = [ base binary bytestring cereal containers mtl text time transformers transformers-compat void @@ -26719,6 +26753,7 @@ self: { pname = "cabal-install"; version = "1.22.0.1"; sha256 = "1j0h1m963kimkk07aag57bgalscly0mhcwgzm7zzxymzsbssibw7"; + editedCabalFile = "85c5296e1b0aff3717c9ce62e98a8b9b6d5509e55f76cd80ae7179269c46592c"; isLibrary = false; isExecutable = true; buildDepends = [ @@ -29564,20 +29599,19 @@ self: { }) {}; "clac" = callPackage - ({ mkDerivation, base, containers, optparse-applicative, plailude - , pretty-tree, safe, split + ({ mkDerivation, base, containers, dsp, optparse-applicative + , plailude, pretty-tree, safe, split }: mkDerivation { pname = "clac"; - version = "0.4.0"; - sha256 = "1p9gjdcwknls6p488bi00g1zfpbizg854c5636n0xzk8iapcap4x"; + version = "0.5.0"; + sha256 = "1ajah3ma4ms2y2kg4wkasjycsqz728n6chx1lm1r3xaiv17akya8"; isLibrary = false; isExecutable = true; buildDepends = [ - base containers optparse-applicative plailude pretty-tree safe + base containers dsp optparse-applicative plailude pretty-tree safe split ]; - jailbreak = true; description = "Simple CLI RPN calculator"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -30180,16 +30214,16 @@ self: { "cless" = callPackage ({ mkDerivation, base, highlighting-kate, optparse-applicative - , terminfo, wl-pprint-extras, wl-pprint-terminfo + , process, terminfo, wl-pprint-extras, wl-pprint-terminfo }: mkDerivation { pname = "cless"; - version = "0.1.0.0"; - sha256 = "1y5mah8x7r0lfc9b6vv69hj2hw6ka1gc9b9qp3bkxlw003rib484"; + version = "0.2.0.0"; + sha256 = "10q68rs85zxk9pqd5rkd1pndp2nsvxxdznil2jf1027r0bqyxjyn"; isLibrary = false; isExecutable = true; buildDepends = [ - base highlighting-kate optparse-applicative terminfo + base highlighting-kate optparse-applicative process terminfo wl-pprint-extras wl-pprint-terminfo ]; homepage = "https://github.com/tanakh/cless"; @@ -30614,8 +30648,8 @@ self: { ({ mkDerivation, base, mtl, syb, text }: mkDerivation { pname = "cmark"; - version = "0.2.0.2"; - sha256 = "0kjkqjyvkh4ppvmmbhjjdbhihz7ffsy6kn7dfms21si50qwciq4b"; + version = "0.3"; + sha256 = "0zhhcgcikixgnkblfqpf08did3ykjwb1pfg7dq3zndjic116xasm"; buildDepends = [ base mtl syb text ]; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; @@ -34440,8 +34474,8 @@ self: { ({ mkDerivation, base, bytestring, securemem, unix, vector }: mkDerivation { pname = "crypto-random"; - version = "0.0.8"; - sha256 = "058ilm05ni5ribggx25cfrhsv1z0abvgxzf3wd3d6qqq58p5wbkv"; + version = "0.0.9"; + sha256 = "0139kbbb2h7vshf68y3fvjda29lhj7jjwl4vq78w4y8k8hc7l2hp"; buildDepends = [ base bytestring securemem unix vector ]; homepage = "http://github.com/vincenthz/hs-crypto-random"; description = "Simple cryptographic random related types"; @@ -37524,14 +37558,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "deepseq_1_4_0_0" = callPackage + "deepseq_1_4_1_0" = callPackage ({ mkDerivation, array, base, ghc-prim, HUnit, test-framework , test-framework-hunit }: mkDerivation { pname = "deepseq"; - version = "1.4.0.0"; - sha256 = "0ns8njkigxa05z2mif9dz2r41j8c717q7f7lswvbp4wwfhr7vdk9"; + version = "1.4.1.0"; + sha256 = "1azyq3vralgqi3sl61xhx0r7q7bwjfjhgk8jrjmziq55ymfkssna"; buildDepends = [ array base ghc-prim ]; testDepends = [ array base HUnit test-framework test-framework-hunit @@ -39272,15 +39306,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "directory_1_2_1_0" = callPackage + "directory_1_2_2_0" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.1.0"; - sha256 = "110ch0nd2hh5fsq3whrvj85s0h27ch1q6xg7z9s6mqbd6k6p9yzs"; - editedCabalFile = "05fdf6015e1368e0da696dcd55b7283336d95257075a32c4a2768dd0dd27742f"; + version = "1.2.2.0"; + sha256 = "1dbn6d48gdqh0n2rkh02asxv94ikd8849659ndc7p3h93kgj1dy4"; buildDepends = [ base filepath time unix ]; - description = "library for directory handling"; + testDepends = [ base ]; + description = "Platform-agnostic library for filesystem operations"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40019,8 +40053,8 @@ self: { ({ mkDerivation, base, Cabal, deepseq, QuickCheck }: mkDerivation { pname = "dlist"; - version = "0.7.1"; - sha256 = "13ka30bn742ldacfgj2lhxvhwf769d0ziy2358vmd5xaq6fn1xfr"; + version = "0.7.1.1"; + sha256 = "1zayvxvkan2s2ixajdr3f5rn1gzhprzv6cww4cbpwjhzw0l7zc08"; buildDepends = [ base deepseq ]; testDepends = [ base Cabal QuickCheck ]; homepage = "https://github.com/spl/dlist"; @@ -41591,12 +41625,12 @@ self: { ({ mkDerivation, base, cmdargs, hint }: mkDerivation { pname = "eddie"; - version = "0.5"; - sha256 = "013fcf13pb771hkcfn0l1h57qczyn24s6d7hjszwgf9fazx713vd"; + version = "0.5.1"; + sha256 = "1kqrxv195r1dhrnizaml9v20jpwgxq66xdr7jfmri4ai0pvjpzmk"; isLibrary = false; isExecutable = true; buildDepends = [ base cmdargs hint ]; - homepage = "http://eddie.googlecode.com/"; + homepage = "http://chiselapp.com/user/mwm/repository/eddie/"; description = "Command line file filtering with haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -41766,8 +41800,8 @@ self: { }: mkDerivation { pname = "effect-handlers"; - version = "0.1.0.2"; - sha256 = "1g75qzsmwpcxs18ildnvy9df8fsns5ya8dparx7fdybjlr5wv5xd"; + version = "0.1.0.4"; + sha256 = "1qsr8xsv3hhk3m97zlzmpspjx9b4aghg0axyriwfy5mkbl3kqy93"; buildDepends = [ base free kan-extensions mtl ]; testDepends = [ base hspec hspec-discover HUnit QuickCheck ]; homepage = "https://github.com/edofic/effect-handlers"; @@ -42692,8 +42726,8 @@ self: { }: mkDerivation { pname = "engine-io"; - version = "1.2.3"; - sha256 = "05sc939x24f3na6nxywgbq0yx4wdamh6zk4spdclqgq65j7v0hxc"; + version = "1.2.4"; + sha256 = "08445vp6ma2jids99b21grw8pds086yvbcbh6iyr8x3z74020y1m"; buildDepends = [ aeson async attoparsec base base64-bytestring bytestring either free monad-loops mwc-random stm stm-delay text transformers @@ -45069,18 +45103,18 @@ self: { "feed-crawl" = callPackage ({ mkDerivation, base, bytestring, conduit, connection - , http-conduit, http-types, hxt, text, transformers + , http-conduit, http-types, hxt, network-uri, text, transformers }: mkDerivation { pname = "feed-crawl"; - version = "0.1.0.0"; - sha256 = "1q68z0288sl4il2i2mm94b51xgfdzxvljralqd6rr650qbgbbbgy"; + version = "0.1.1.0"; + sha256 = "0137b0bi24cdmwbvpz9cr3iavcyz95xvq48ydqdilazr6gl81m13"; buildDepends = [ - base bytestring conduit connection http-conduit http-types hxt text - transformers + base bytestring conduit connection http-conduit http-types hxt + network-uri text transformers ]; homepage = "https://github.com/danchoi/feed-crawl"; - description = "Feed crawling utilities"; + description = "Utility for fetching feeds with redirect info and HTML link detection"; license = stdenv.lib.licenses.mit; }) {}; @@ -45552,17 +45586,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "filepath_1_3_0_2" = callPackage - ({ mkDerivation, base, QuickCheck, random }: + "filepath_1_4_0_0" = callPackage + ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "filepath"; - version = "1.3.0.2"; - sha256 = "0wvvz6cs5fh4f04a87b9s7xrnzypmnzzkn149p6xk8xi7gcvcpy2"; - editedCabalFile = "42c2b0c550f4c73d044f186a58e34285632705b6936dc24fb6012eb10bf70cc7"; + version = "1.4.0.0"; + sha256 = "0a5hhgfxh91clkk6c9iipdd0y3wb9y6lx2hhraaaa73b8y83afx4"; buildDepends = [ base ]; - testDepends = [ base QuickCheck random ]; - jailbreak = true; - homepage = "http://www-users.cs.york.ac.uk/~ndm/filepath/"; + testDepends = [ base QuickCheck ]; + homepage = "https://github.com/haskell/filepath#readme"; description = "Library for manipulating FilePaths in a cross platform way"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46493,8 +46525,8 @@ self: { }: mkDerivation { pname = "fluent-logger"; - version = "0.2.1.0"; - sha256 = "0lzn1wrqq7mnxlf8axb4nj90mq9c4w299dilp9k4s4s9lzag2gib"; + version = "0.2.2.0"; + sha256 = "0gg9nhfmhi7qz79i4jbqixyw032sk394gmcjcb3hna09jqas71ab"; buildDepends = [ base bytestring cereal containers messagepack network network-socket-options random stm text time vector @@ -46585,8 +46617,8 @@ self: { }: mkDerivation { pname = "foldl"; - version = "1.0.7"; - sha256 = "0mqxibifrlfqnibzy9b2rncy4dyljdz35560ni3rwi8hkyix74a9"; + version = "1.0.8"; + sha256 = "1v8g1n17lwjwr2d1r3zam44qlm3jrr5j30d4cs4n4gf5pgxlrzvp"; buildDepends = [ base bytestring containers primitive text transformers vector ]; @@ -49845,12 +49877,13 @@ self: { , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, conduit, conduit-extra, containers, crypto-api , cryptohash, curl, data-default, dataenc, DAV, dbus, directory - , dlist, dns, edit-distance, exceptions, fdo-notify, feed, filepath - , git, gnupg1, gnutls, hamlet, hinotify, hslogger, http-client - , http-conduit, http-types, IfElse, json, lsof, MissingH - , monad-control, mtl, network, network-info, network-multicast - , network-protocol-xmpp, network-uri, old-locale, openssh - , optparse-applicative, path-pieces, perl, process, QuickCheck + , dlist, dns, edit-distance, esqueleto, exceptions, fdo-notify + , feed, filepath, git, gnupg1, gnutls, hamlet, hinotify, hslogger + , http-client, http-conduit, http-types, IfElse, json, lsof + , MissingH, monad-control, monad-logger, mtl, network, network-info + , network-multicast, network-protocol-xmpp, network-uri, old-locale + , openssh, optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck , random, regex-tdfa, resourcet, rsync, SafeSemaphore, securemem , SHA, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck , tasty-rerun, template-haskell, text, time, torrent, transformers @@ -49860,24 +49893,25 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20150219"; - sha256 = "0psx113vjb1wicaywknhn13x0la5hrggwf8b0rs4gxd472ix5ha6"; + version = "5.20150317"; + sha256 = "1n57h97z6jw1pqxmkgfy7s24f88ypskgvsw3gcfyah9inkx1rhr5"; isLibrary = false; isExecutable = true; buildDepends = [ aeson async aws base blaze-builder bloomfilter byteable bytestring case-insensitive clientsession conduit conduit-extra containers crypto-api cryptohash data-default dataenc DAV dbus directory dlist - dns edit-distance exceptions fdo-notify feed filepath gnutls hamlet - hinotify hslogger http-client http-conduit http-types IfElse json - MissingH monad-control mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces process QuickCheck random regex-tdfa resourcet - SafeSemaphore securemem SHA shakespeare stm tasty tasty-hunit - tasty-quickcheck tasty-rerun template-haskell text time torrent - transformers unix unix-compat utf8-string uuid wai wai-extra warp - warp-tls xml-types yesod yesod-core yesod-default yesod-form - yesod-static + dns edit-distance esqueleto exceptions fdo-notify feed filepath + gnutls hamlet hinotify hslogger http-client http-conduit http-types + IfElse json MissingH monad-control monad-logger mtl network + network-info network-multicast network-protocol-xmpp network-uri + old-locale optparse-applicative path-pieces persistent + persistent-sqlite persistent-template process QuickCheck random + regex-tdfa resourcet SafeSemaphore securemem SHA shakespeare stm + tasty tasty-hunit tasty-quickcheck tasty-rerun template-haskell + text time torrent transformers unix unix-compat utf8-string uuid + wai wai-extra warp warp-tls xml-types yesod yesod-core + yesod-default yesod-form yesod-static ]; buildTools = [ bup curl git gnupg1 lsof openssh perl rsync wget which @@ -50440,6 +50474,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gitrev" = callPackage + ({ mkDerivation, base, directory, filepath, process + , template-haskell + }: + mkDerivation { + pname = "gitrev"; + version = "1.0.0"; + sha256 = "05jxzhpjzd9n5sdaa8d9y2zczs2v5w4n9718wl411ghvx54jhnfd"; + buildDepends = [ + base directory filepath process template-haskell + ]; + homepage = "https://github.com/acfoltzer/gitrev"; + description = "Compile git revision info into Haskell projects"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gitson" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory , doctest, errors, filepath, flock, Glob, hspec, monad-control @@ -56514,30 +56564,28 @@ self: { "haskell-neo4j-client" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-default, hashable, HTTP, http-conduit, http-types, HUnit - , lifted-base, monad-control, mtl, QuickCheck, resourcet - , scientific, test-framework, test-framework-hunit - , test-framework-quickcheck2, test-framework-th, text, transformers - , transformers-base, transformers-compat, unordered-containers - , vector + , lifted-base, mtl, QuickCheck, resourcet, scientific + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , test-framework-th, text, transformers, transformers-base + , transformers-compat, unordered-containers, vector }: mkDerivation { pname = "haskell-neo4j-client"; - version = "0.3.0.12"; - sha256 = "1kh1xglqcz8yg1660ham0k4y0mxs63x75hv9xxjk2ms5386jpj6c"; + version = "0.3.0.13"; + sha256 = "1j2ka83s4fa8aqqnhvp83zqlp019ayznlkhd7pb6pqkd19npr78a"; buildDepends = [ aeson base bytestring containers data-default hashable HTTP - http-conduit http-types lifted-base monad-control mtl resourcet - scientific text transformers transformers-base transformers-compat + http-conduit http-types lifted-base mtl resourcet scientific text + transformers transformers-base transformers-compat unordered-containers vector ]; testDepends = [ aeson base bytestring Cabal data-default hashable HTTP http-conduit - http-types HUnit lifted-base monad-control mtl QuickCheck resourcet - scientific test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th text transformers - transformers-base transformers-compat unordered-containers vector + http-types HUnit lifted-base mtl QuickCheck resourcet scientific + test-framework test-framework-hunit test-framework-quickcheck2 + test-framework-th text transformers transformers-base + transformers-compat unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; @@ -59625,8 +59673,8 @@ self: { }: mkDerivation { pname = "hermit"; - version = "0.7.0.0"; - sha256 = "03k22rc5a3g9mq20q530h40j29k5pz5d9flamzb4svs3jamgz5hz"; + version = "0.7.1.0"; + sha256 = "0ckjh7ql2s6l09lbgdn9plfpvmdcx6b3yh9lbdih9l4lcf1k8f56"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -64886,8 +64934,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "hscolour"; - version = "1.21"; - sha256 = "1smzr83c3fk3fwfkp973j2nz985nbj9j9ps9fpwndsxxfyqj830d"; + version = "1.22"; + sha256 = "1iqmxvpvj3icg7mhx4450p2wqjsfx1xh3lwgrrmxvm339hksx3rw"; isLibrary = true; isExecutable = true; buildDepends = [ base containers ]; @@ -66670,21 +66718,20 @@ self: { }) {}; "hsx2hs" = callPackage - ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, mtl - , template-haskell, utf8-string + ({ mkDerivation, base, bytestring, haskell-src-exts + , haskell-src-meta, mtl, template-haskell, utf8-string }: mkDerivation { pname = "hsx2hs"; - version = "0.13.2"; - sha256 = "1xszshj94vwh9mxm1h4pvj7x0jivid065f1gqf1l4crd4d4488mc"; + version = "0.13.3.1"; + sha256 = "12hj4vqkz097kjf2gk40jj9r61sydfmlhm6b5r0z1q96ys9m82k9"; isLibrary = true; isExecutable = true; buildDepends = [ - base haskell-src-exts haskell-src-meta mtl template-haskell - utf8-string + base bytestring haskell-src-exts haskell-src-meta mtl + template-haskell utf8-string ]; - jailbreak = true; - homepage = "http://hub.darcs.net/nibro/hsx2hs"; + homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -67327,8 +67374,8 @@ self: { }: mkDerivation { pname = "http-date"; - version = "0.0.5"; - sha256 = "12vvv5vjwbmgsmrmkxs72z4qvkbb7gns749j7dmnf39sy7c5s93g"; + version = "0.0.6"; + sha256 = "0f1s4bfazckl016pi2nzrmmiv0f6pnr9mgvsdj33ysvknp0md3c9"; buildDepends = [ array attoparsec base bytestring ]; testDepends = [ base bytestring doctest hspec old-locale time ]; description = "HTTP Date parser/formatter"; @@ -72460,6 +72507,7 @@ self: { safe semigroups template-haskell text time unordered-containers vector x509 ]; + jailbreak = true; homepage = "https://github.com/frasertweedale/hs-jose"; description = "Javascript Object Signing and Encryption and JSON Web Token library"; license = stdenv.lib.licenses.asl20; @@ -72653,8 +72701,8 @@ self: { }: mkDerivation { pname = "json-autotype"; - version = "0.2.5.8"; - sha256 = "1p6pkhi50a81c4ldkqpvs8m2gmz1h3ayxhfshyy1dl06nrbfc0i0"; + version = "0.2.5.9"; + sha256 = "0ajsxg515484bqmg94l9gmg4jpfvv6ykcbnyglkh1j86phggxrf2"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -73412,14 +73460,13 @@ self: { }) {}; "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, pqueue - , QuickCheck + ({ mkDerivation, base, deepseq, deepseq-generics, heap, QuickCheck }: mkDerivation { pname = "kdt"; - version = "0.2.2"; - sha256 = "1kj914xya5msw9hb2lqa36jf68pna8dfq21jbylq2m68k0ydcivi"; - buildDepends = [ base deepseq deepseq-generics pqueue ]; + version = "0.2.3"; + sha256 = "0chxxl53jnnhfs02gxr2a3kzppmsnwrrfr1fjyx71lkvigwy71yk"; + buildDepends = [ base deepseq deepseq-generics heap ]; testDepends = [ base deepseq deepseq-generics QuickCheck ]; homepage = "https://github.com/giogadi/kdt"; description = "Fast and flexible k-d trees for various types of point queries"; @@ -73836,8 +73883,8 @@ self: { }: mkDerivation { pname = "koofr-client"; - version = "1.0.0.1"; - sha256 = "1kbdln4jyd9k9lsa4hzx5kjvjkajrf4b11fy6vj2k928gqv2vqmj"; + version = "1.0.0.2"; + sha256 = "094rhsf910ifzazy3j937hgdkibvwjc5x69yxvglmizc3xl6qqfv"; buildDepends = [ aeson base bytestring filepath http-client http-client-tls http-types mtl @@ -77082,8 +77129,8 @@ self: { }: mkDerivation { pname = "linear"; - version = "1.17.1"; - sha256 = "009bp2lv2fniq0pnn19xiapc9fc9pp6qi9rcnzw1a646gmmb9si6"; + version = "1.18.0.1"; + sha256 = "06gbrmr7yv9s6la14g22lwqfjyfr0xrlmkrffizy4n01xknmkbig"; buildDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -78027,8 +78074,8 @@ self: { }: mkDerivation { pname = "llvm-general"; - version = "3.4.4.4"; - sha256 = "1rx07pk6g46k4652mznga7v51pp6bi32h3wk0dnmihn8n4536m4x"; + version = "3.4.5.0"; + sha256 = "19rvpy7hfgkfjkijnasajrvzbw75ij7sfwg9z4w080x6w39rgppr"; buildDepends = [ array base bytestring containers llvm-general-pure mtl parsec setenv template-haskell transformers transformers-compat @@ -78053,8 +78100,8 @@ self: { }: mkDerivation { pname = "llvm-general-pure"; - version = "3.4.4.1"; - sha256 = "147s03km3gp4v5gk5fi179qrha962w3xm7rnaxia9xzvh1161j9g"; + version = "3.4.5.0"; + sha256 = "0gb06b8bb5d7fmkjpbi3smjssjxk5xgmf3lv5axhm0rbndi6y9vc"; buildDepends = [ base containers mtl parsec setenv template-haskell transformers transformers-compat @@ -80099,8 +80146,8 @@ self: { }: mkDerivation { pname = "mandrill"; - version = "0.2.0.0"; - sha256 = "1v110ji153gnr3rjlj6m3w9w30pmf6zc9z25d9l52rxggfd5pfy8"; + version = "0.2.1.0"; + sha256 = "0gmlf50hq9dh2xh74dvsyywrbrv7i31d6j7k4pgmfinn8pih03lz"; buildDepends = [ aeson base base64-bytestring blaze-html bytestring containers email-validate http-client http-client-tls http-types lens mtl @@ -80861,9 +80908,9 @@ self: { }: mkDerivation { pname = "mdcat"; - version = "0.1.0.0"; - sha256 = "0z3fgs2vsga8wr4ksaqqwx9bxminf9dw9a2kgr9k852r14m234sh"; - isLibrary = false; + version = "0.1.0.4"; + sha256 = "0jynmcawrxwv6xfbwvz3915rsp2ssx9s8h7i3pgd5adlzqpws19l"; + isLibrary = true; isExecutable = true; buildDepends = [ ansi-terminal base directory pandoc terminfo ]; homepage = "https://github.com/dorafmon/mdcat"; @@ -81674,8 +81721,8 @@ self: { ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "mime-types"; - version = "0.1.0.5"; - sha256 = "04ajhr0izfixhvz0c7m1zz3c7z2lnabyifn4flqv5d41gkkg0pr1"; + version = "0.1.0.6"; + sha256 = "090z3dp928243amnc6s8g10rk2h2bprk9y138q6wj3cpflzr72pw"; buildDepends = [ base bytestring containers text ]; homepage = "https://github.com/yesodweb/wai"; description = "Basic mime-type handling types and functions"; @@ -83028,8 +83075,8 @@ self: { ({ mkDerivation, array, base, stm, transformers }: mkDerivation { pname = "monadic-arrays"; - version = "0.2.1.3"; - sha256 = "0qqf640zzv4dn0b1mpz54pdirdz3scc8z72vz884x88gzvdpr025"; + version = "0.2.1.4"; + sha256 = "1vlqh0mqfkg1f47dhl5lw49b7xawlbyjmq7xpmmf16q3idxnkahh"; buildDepends = [ array base stm transformers ]; homepage = "http://github.com/ekmett/monadic-arrays/"; description = "Boxed and unboxed arrays for monad transformers"; @@ -86000,6 +86047,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "network-builder" = callPackage + ({ mkDerivation, aeson, base, bytestring, cabal-test-bin, hspec + , hspec-server, optparse-applicative, process, shelly, text, yaml + }: + mkDerivation { + pname = "network-builder"; + version = "0.1.0"; + sha256 = "0faa3clz80158m9cy4mblnszla6k9hbf8bdwp5cam05dwmvsdcyw"; + isLibrary = true; + isExecutable = true; + buildDepends = [ + aeson base bytestring optparse-applicative shelly text yaml + ]; + testDepends = [ base cabal-test-bin hspec hspec-server process ]; + description = "Linux NetworkNameSpace Builder"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "network-bytestring" = callPackage ({ mkDerivation, base, bytestring, network, unix }: mkDerivation { @@ -88360,8 +88425,8 @@ self: { }: mkDerivation { pname = "openssl-streams"; - version = "1.2.0.0"; - sha256 = "01hdrsdrp2x7i5zydn2b0blzir7vqvn63n9sf9pwcgnkk6s5j1wc"; + version = "1.2.1.0"; + sha256 = "1jqrc9wxvw196vgcbhpazi9vldqs31jb6jxc529iy9k7vh4mk5m9"; buildDepends = [ base bytestring HsOpenSSL io-streams network ]; testDepends = [ base bytestring HsOpenSSL HUnit io-streams network test-framework @@ -89119,6 +89184,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pagarme" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, lens, text + , wreq + }: + mkDerivation { + pname = "pagarme"; + version = "0.1.0.0"; + sha256 = "1zkh8cx4bdgsyra7x9kzzdcckg65y1hacwq90w36gdl6i4hs7nj0"; + isLibrary = true; + isExecutable = true; + buildDepends = [ aeson base bytestring containers lens text wreq ]; + homepage = "https://github.com/diogob/pagarme_haskell"; + description = "Pagarme API wrapper"; + license = stdenv.lib.licenses.mit; + }) {}; + "pagerduty" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring , bytestring-conversion, conduit, data-default-class, exceptions @@ -90847,8 +90928,8 @@ self: { }: mkDerivation { pname = "persistent"; - version = "2.1.1.7"; - sha256 = "1nj2nwjzg95k1xyhk31mpmyy0flw4hjjf8r0959i1x1makrfy32f"; + version = "2.1.2"; + sha256 = "17p81s1w7wqs2hm5zcwncvidd808gm4zlha7mqv9wwpf6ql1b359"; buildDepends = [ aeson attoparsec base base64-bytestring blaze-html blaze-markup bytestring conduit containers exceptions fast-logger lifted-base @@ -91028,6 +91109,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "persistent-ratelimit" = callPackage + ({ mkDerivation, base, time, yesod }: + mkDerivation { + pname = "persistent-ratelimit"; + version = "0.1.0.0"; + sha256 = "00kvmqisi6y8r8vpfa61kzxr0iyy6varj8920kjwsd2jk2i7q8wl"; + buildDepends = [ base time yesod ]; + homepage = "https://github.com/jprider63/persistent-ratelimit"; + description = "A library for rate limiting activities with a persistent backend"; + license = stdenv.lib.licenses.mit; + }) {}; + "persistent-redis" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, bytestring, hedis , monad-control, mtl, path-pieces, persistent, persistent-template @@ -94007,12 +94100,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pretty_1_1_3_1" = callPackage + "pretty_1_1_3_2" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck }: mkDerivation { pname = "pretty"; - version = "1.1.3.1"; - sha256 = "0v1g7gr8nki1bka5dxagayx9azj2gyyd5y23202pnk53synj2lzh"; + version = "1.1.3.2"; + sha256 = "0k61v71c40dy4whvy1q1n3hs0xnhscg4svp0prcihn7s57j2spvi"; buildDepends = [ base deepseq ghc-prim ]; testDepends = [ base deepseq ghc-prim QuickCheck ]; homepage = "http://github.com/haskell/pretty"; @@ -94380,8 +94473,8 @@ self: { }: mkDerivation { pname = "process-extras"; - version = "0.3.1"; - sha256 = "1lwjm402q92ibd66xiz5zwwqd8nkyvlhnrw60ja3zngq8z8dsk7g"; + version = "0.3.3.2"; + sha256 = "0kv4fpg5qndqf97c1znhibhzqd5z6mdk38ma72yk3ixkp45rvarh"; buildDepends = [ base bytestring deepseq ListLike process text ]; homepage = "https://github.com/seereason/process-extras"; description = "Process extras"; @@ -95554,19 +95647,19 @@ self: { }) {}; "purescript" = callPackage - ({ mkDerivation, base, containers, directory, file-embed, filepath - , haskeline, mtl, nodejs, optparse-applicative, parsec + ({ mkDerivation, base, boxes, containers, directory, file-embed + , filepath, haskeline, mtl, nodejs, optparse-applicative, parsec , pattern-arrows, process, time, transformers, unordered-containers , utf8-string }: mkDerivation { pname = "purescript"; - version = "0.6.8"; - sha256 = "02bcy8qfcsaxz0ygcajskj9dmpyl291vgvjp0jlrjsfcv8ym4izl"; + version = "0.6.9.3"; + sha256 = "1hdxj1qxxvkjacm8msfn1xjbgwhmg0kx5ha1fxv11nks0m0h4wcr"; isLibrary = true; isExecutable = true; buildDepends = [ - base containers directory file-embed filepath haskeline mtl + base boxes containers directory file-embed filepath haskeline mtl optparse-applicative parsec pattern-arrows process time transformers unordered-containers utf8-string ]; @@ -98706,8 +98799,8 @@ self: { }: mkDerivation { pname = "relational-schemas"; - version = "0.1.0.1"; - sha256 = "15fgh42j2fhgqxr2z6ayg7kwrdmsmakl5v1dkxyrp7k3iah3ak5d"; + version = "0.1.0.2"; + sha256 = "1267bv92z2k8s2cmn8sgw0i0vs3y2m8jyvnv969v15lrpsid1vvw"; buildDepends = [ base bytestring containers persistable-record relational-query template-haskell time @@ -102102,8 +102195,8 @@ self: { }: mkDerivation { pname = "scientific"; - version = "0.3.3.7"; - sha256 = "16976av2cag4gn06mfqqvj8knj64b966f6101cszxffk530q42y0"; + version = "0.3.3.8"; + sha256 = "0k6f9g3jpwhm52af4zayhdby8xibarn60mpxbb8xxgm78hmdw373"; buildDepends = [ array base bytestring deepseq ghc-prim hashable integer-gmp text ]; @@ -105456,8 +105549,8 @@ self: { }: mkDerivation { pname = "singletons"; - version = "1.1"; - sha256 = "183y9kj6f8ikrf1r4j24l1r1hnmw6n3aw77nlwqz24qfficdc7z8"; + version = "1.1.1"; + sha256 = "1pbz42i2vxmw3sf3f4sqvgyp9a1b1q5my7xq64h37a9g6jd2246a"; buildDepends = [ base containers mtl template-haskell th-desugar ]; testDepends = [ base Cabal constraints filepath process tasty tasty-golden @@ -105978,8 +106071,8 @@ self: { ({ mkDerivation, base, linear, vector }: mkDerivation { pname = "smoothie"; - version = "0.1.1"; - sha256 = "0v5bj96ggw2j4jqzj4k6rdzklr6j0bpjgvxryiyjjw97f9q8fiwx"; + version = "0.1.3"; + sha256 = "1326hqinlfipbxcynqfsskh4bq5136b48z3kjic8qnddkgkhgg1s"; buildDepends = [ base linear vector ]; homepage = "https://github.com/phaazon/smoothie"; description = "Smooth curves via several splines and polynomials"; @@ -107304,8 +107397,8 @@ self: { ({ mkDerivation, base, time }: mkDerivation { pname = "snowflake"; - version = "0.1.1.0"; - sha256 = "139chvzj0caxglid92njs8jaxyxmyqcvqnf6yi4d8vzpbcrly29w"; + version = "0.1.1.1"; + sha256 = "1pfd8lqwv0504hli6fhwiqckcca0x9pnfzmy3kz36w7138rclmpi"; buildDepends = [ base time ]; description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; license = stdenv.lib.licenses.asl20; @@ -108156,6 +108249,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "spir-v" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "spir-v"; + version = "0.0.0.1"; + sha256 = "1aazv418dd4kgpm8kq7n1cfm0gwcr0amsfdks0n1d9mn1rvz7b9p"; + buildDepends = [ base ]; + homepage = "https://github.com/expipiplus1/spir-v"; + description = "Some utilities for reading and writing SPIR-V files"; + license = stdenv.lib.licenses.mit; + }) {}; + "splaytree" = callPackage ({ mkDerivation, base, containers, deepseq, QuickCheck , test-framework, test-framework-quickcheck2 @@ -108873,9 +108978,9 @@ self: { "stackage" = callPackage ({ mkDerivation, aeson, async, base, bytestring, Cabal - , classy-prelude-conduit, conduit-extra, containers + , classy-prelude-conduit, conduit, conduit-extra, containers , data-default-class, directory, filepath, hspec, http-client - , http-client-tls, mono-traversable, mtl, old-locale + , http-client-tls, http-conduit, mono-traversable, mtl, old-locale , optparse-applicative, process, QuickCheck, semigroups, stm , streaming-commons, system-fileio, system-filepath, tar, temporary , text, time, transformers, unix-compat, utf8-string, xml-conduit @@ -108883,17 +108988,17 @@ self: { }: mkDerivation { pname = "stackage"; - version = "0.5.2"; - sha256 = "08rxph7xb0kcbcdhcvm3frmrcm5rsyvr8fr2pczd1xxlz37fwbh3"; + version = "0.6.0.1"; + sha256 = "0y785cc71rw5g6jlbrljabing0dpizqyid36hp97r3kwa1bc5x2m"; isLibrary = true; isExecutable = true; buildDepends = [ - aeson async base bytestring Cabal classy-prelude-conduit + aeson async base bytestring Cabal classy-prelude-conduit conduit conduit-extra containers data-default-class directory filepath - http-client http-client-tls mono-traversable mtl old-locale - optparse-applicative process semigroups stm streaming-commons - system-fileio system-filepath tar temporary text time transformers - unix-compat utf8-string xml-conduit yaml zlib + http-client http-client-tls http-conduit mono-traversable mtl + old-locale optparse-applicative process semigroups stm + streaming-commons system-fileio system-filepath tar temporary text + time transformers unix-compat utf8-string xml-conduit yaml zlib ]; testDepends = [ base Cabal classy-prelude-conduit containers hspec http-client @@ -111059,8 +111164,8 @@ self: { }: mkDerivation { pname = "swish"; - version = "0.9.1.2"; - sha256 = "0dg6m8p8w6razxcphz3nl0di59r46sya9c2x4iq21b3n96wj1n59"; + version = "0.9.1.3"; + sha256 = "07h5677d1liap81z3gvjab5yjib2vbmzvhfzqqmkjg7grk1dblld"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -111243,19 +111348,19 @@ self: { "syncthing-hs" = callPackage ({ mkDerivation, aeson, base, bytestring, connection, containers - , derive, either, http-client, http-client-tls, lens, old-locale - , quickcheck-instances, regex-posix, tasty, tasty-hunit + , derive, either, exceptions, http-client, http-client-tls, lens + , old-locale, quickcheck-instances, regex-posix, tasty, tasty-hunit , tasty-quickcheck, text, time, transformers, unordered-containers , wreq }: mkDerivation { pname = "syncthing-hs"; - version = "0.1.1.0"; - sha256 = "0377mykydnwdbwjbbfr56nrdh2c18ik5m9jj2wgw7qg2npnfyj2v"; + version = "0.1.2.0"; + sha256 = "15s2pz775bgygq2pnb6x546sf16vcr2dzyn5qnwf4wl7gg4hjalj"; buildDepends = [ - aeson base bytestring connection containers either http-client - http-client-tls lens old-locale regex-posix text time transformers - unordered-containers wreq + aeson base bytestring connection containers either exceptions + http-client http-client-tls lens old-locale regex-posix text time + transformers unordered-containers wreq ]; testDepends = [ aeson base bytestring containers derive either lens @@ -112689,8 +112794,8 @@ self: { ({ mkDerivation, base, tasty }: mkDerivation { pname = "tasty-hunit"; - version = "0.9.1"; - sha256 = "1sxha5m2kcxi16gi8xkg2zgyqilk8qdplj8fifd1qq9n2ak8qha7"; + version = "0.9.2"; + sha256 = "08qnxaw34wfnzi9irs1jd4d0zczqm3k5ffkd4zwhkz0dflmgq7mf"; buildDepends = [ base tasty ]; homepage = "http://documentup.com/feuerbach/tasty"; description = "HUnit support for the Tasty test framework"; @@ -113666,8 +113771,8 @@ self: { }: mkDerivation { pname = "test-sandbox-compose"; - version = "0.1.2"; - sha256 = "1hc23yxlf8mwd6rq44i7bbx1aa9p7d7d920625gwd7khcn5x9kyy"; + version = "0.1.3"; + sha256 = "1yqh5b3gzmwqf0wj491pmkvbn9jzpg36bh427vkl1w6yj5c4ha7x"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -114390,17 +114495,18 @@ self: { "th-desugar" = callPackage ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb - , template-haskell, th-lift + , template-haskell, th-lift, th-orphans }: mkDerivation { pname = "th-desugar"; - version = "1.5"; - sha256 = "18ailfvwiljscyzjxci6k9h05kf9wwb6dy3ms6q928cr80qnr4d5"; + version = "1.5.2"; + sha256 = "0kd5yn98nhji9yshnai4ffw7p8a1mn3xslbw57lvgmyln96sw096"; buildDepends = [ - base containers mtl syb template-haskell th-lift + base containers mtl syb template-haskell th-lift th-orphans ]; testDepends = [ base containers hspec HUnit mtl syb template-haskell th-lift + th-orphans ]; homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; @@ -116861,22 +116967,21 @@ self: { }) {}; "tttool" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring - , bytestring-builder, containers, directory, filepath, ghc-prim - , hashable, JuicyPixels, mtl, old-locale, parsec, process - , template-haskell, text, time, unordered-containers, vector, yaml + ({ mkDerivation, aeson, base, binary, bytestring, containers + , directory, filepath, ghc-prim, hashable, JuicyPixels, mtl + , old-locale, parsec, process, template-haskell, text, time + , unordered-containers, vector, yaml }: mkDerivation { pname = "tttool"; - version = "1.1"; - sha256 = "1qdsal3kn35npq4nd0vp5hj96cp316d5mbfr5gxrlwj12qf7kgzb"; + version = "1.3"; + sha256 = "03wb7ra4zk6x40z2h2i8rdlf53abd9lnj67c2438y2vk70ljmlny"; isLibrary = false; isExecutable = true; buildDepends = [ - aeson base binary bytestring bytestring-builder containers - directory filepath ghc-prim hashable JuicyPixels mtl old-locale - parsec process template-haskell text time unordered-containers - vector yaml + aeson base binary bytestring containers directory filepath ghc-prim + hashable JuicyPixels mtl old-locale parsec process template-haskell + text time unordered-containers vector yaml ]; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; @@ -121882,8 +121987,8 @@ self: { }: mkDerivation { pname = "wai-extra"; - version = "3.0.4.5"; - sha256 = "1d139jid65qf64607m79b6z5d8al888krypfpwzc7gbl1mlhyna4"; + version = "3.0.4.6"; + sha256 = "0vl6f2by245fg5sfbzj27zb5mmskqj2h4a68rhwdb8w7gsl2mxz5"; buildDepends = [ ansi-terminal base base64-bytestring blaze-builder bytestring case-insensitive containers data-default-class deepseq directory @@ -122475,8 +122580,8 @@ self: { }: mkDerivation { pname = "wai-session"; - version = "0.3"; - sha256 = "07b9d7ggsj662zya16g36bwczw72fw9z15xnkjrpgr6fl9b4kg0y"; + version = "0.3.1"; + sha256 = "1h2z1zahbrlw9r489vd6xjwra7nmy67lmv77gr912zls5fpf9aws"; buildDepends = [ base blaze-builder bytestring containers cookie http-types StateVar time transformers vault wai