aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/haskell-modules
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/haskell-modules')
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-common.nix60
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix1
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix2
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix10
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml260
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix18
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/generic-builder.nix150
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix6185
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/make-package-set.nix82
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/with-packages-wrapper.nix14
10 files changed, 4943 insertions, 1839 deletions
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
index 7b06628dbc7..64a15e39689 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
@@ -74,7 +74,7 @@ self: super: {
name = "git-annex-${super.git-annex.version}-src";
url = "git://git-annex.branchable.com/";
rev = "refs/tags/" + super.git-annex.version;
- sha256 = "1i4arhwbc05iz8hl7kk843m2f49i3ysby1kxcm9qfhpk7z9nyzj4";
+ sha256 = "0s8sv6h90l2a9xdabj0nirhpr6d2k8s5cddjdkm50x395i014w31";
};
}).override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
@@ -1052,17 +1052,17 @@ self: super: {
# This raises the lower bound on prettyprinter to 1.5.1 since
# `removeTrailingWhitespace` is buggy in earlier versions.
# This will probably be able to be removed when we update to LTS-15.
- dhall_1_28_0 =
- dontCheck (super.dhall_1_28_0.override {
- prettyprinter = self.prettyprinter_1_5_1;
+ dhall_1_29_0 =
+ dontCheck (super.dhall_1_29_0.override {
+ prettyprinter = self.prettyprinter_1_6_0;
prettyprinter-ansi-terminal =
self.prettyprinter-ansi-terminal.override {
- prettyprinter = self.prettyprinter_1_5_1;
+ prettyprinter = self.prettyprinter_1_6_0;
};
});
- dhall-bash_1_0_25 = super.dhall-bash_1_0_25.override { dhall = self.dhall_1_28_0; };
- dhall-json_1_6_0 = super.dhall-json_1_6_0.override {
- dhall = self.dhall_1_28_0;
+ dhall-bash_1_0_27 = super.dhall-bash_1_0_27.override { dhall = self.dhall_1_29_0; };
+ dhall-json_1_6_1 = super.dhall-json_1_6_1.override {
+ dhall = self.dhall_1_29_0;
prettyprinter = self.prettyprinter_1_5_1;
prettyprinter-ansi-terminal =
self.prettyprinter-ansi-terminal.override {
@@ -1228,8 +1228,7 @@ self: super: {
temporary-resourcet = doJailbreak super.temporary-resourcet;
# Requires dhall >= 1.23.0
- ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_28_0; };
- dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_28_0; };
+ ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_29_0; };
# Test suite doesn't work with current QuickCheck
# https://github.com/pruvisto/heap/issues/11
@@ -1238,8 +1237,8 @@ self: super: {
# Test suite won't link for no apparent reason.
constraints-deriving = dontCheck super.constraints-deriving;
- # need newer version of ghc-libparser
- hlint = super.hlint.override { ghc-lib-parser = self.ghc-lib-parser_8_8_1_20191204; };
+ # Use a matching version of ghc-lib-parser.
+ ghc-lib-parser-ex = super.ghc-lib-parser-ex.override { ghc-lib-parser = self.ghc-lib-parser_8_8_2; };
# https://github.com/sol/hpack/issues/366
hpack = self.hpack_0_33_0;
@@ -1261,7 +1260,7 @@ self: super: {
# The LTS-14.x version of their dependencies are too old.
cabal-plan = super.cabal-plan.overrideScope (self: super: { optparse-applicative = self.optparse-applicative_0_15_1_0; ansi-terminal = self.ansi-terminal_0_10_2; base-compat = self.base-compat_0_11_0; semialign = self.semialign_1_1; time-compat = doJailbreak super.time-compat; });
- hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_22_0; };
+ hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_23_0; };
# Version bounds for http-client are too strict:
# https://github.com/bitnomial/prometheus/issues/34
@@ -1325,7 +1324,7 @@ self: super: {
});
# Needs the corresponding version of haskell-src-exts.
- haskell-src-exts-simple = super.haskell-src-exts-simple.override { haskell-src-exts = self.haskell-src-exts_1_22_0; };
+ haskell-src-exts-simple = super.haskell-src-exts-simple.override { haskell-src-exts = self.haskell-src-exts_1_23_0; };
# https://github.com/Daniel-Diaz/HaTeX/issues/144
HaTeX = dontCheck super.HaTeX;
@@ -1338,7 +1337,27 @@ self: super: {
# 2019-12-19 - glirc wants regex-tdfa >=1.3 which results in errors with regex-base which errors more
# hoping to make a proper derivation with plugins enabled and more reliable building -- kiwi
- glirc = doJailbreak super.glirc;
+ # 2020-01-17 - as of recently the basic doJailbreak is not enough and have to override regex-tdfa which needs an override for regex-base
+
+ glirc = doJailbreak (super.glirc.override {
+ regex-tdfa = self.regex-tdfa_1_3_1_0;
+ });
+
+ regex-tdfa_1_3_1_0 = doJailbreak (super.regex-tdfa_1_3_1_0.override {
+ regex-base = self.regex-base_0_94_0_0;
+ });
+
+ # 2020-01-19 - there were conflicting versions of brick, vty, and brick-skylighting;
+ # multiple versions of them were being pulled in by the others which is not allowed.
+ # There are more complicated ways of doing this but I was able to make it fairly simple -- kiwi
+ matterhorn = doJailbreak (super.matterhorn.override {
+ brick-skylighting = self.brick-skylighting.override {
+ brick = self.brick_0_50_1;
+ };
+ });
+
+ # 2020-01-19 - because of QuickCheck bounds | was broken anyway and is needed for matterhorn -- kiwi
+ Unique = doJailbreak super.Unique;
# apply patches from https://github.com/snapframework/snap-server/pull/126
# manually until they are accepted upstream
@@ -1361,4 +1380,15 @@ self: super: {
# https://github.com/haskell-servant/servant-ekg/issues/15
servant-ekg = doJailbreak super.servant-ekg;
+ # Needs ghc-lib-parser 8.8.1 (does not build with 8.8.0)
+ ormolu = doJailbreak (super.ormolu.override {
+ ghc-lib-parser = self.ghc-lib-parser_8_8_2;
+ });
+
+ # krank-0.1.0 does not accept PyF-0.9.0.0.
+ krank = doJailbreak super.krank;
+
+ # prettyprinter-1.6.0 fails its doctest suite.
+ prettyprinter_1_6_0 = dontCheck super.prettyprinter_1_6_0;
+
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
index e2164f8686f..5fc85101d4c 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
@@ -16,6 +16,7 @@ self: super: {
containers = null;
deepseq = null;
directory = null;
+ exceptions = null;
filepath = null;
ghc-boot = null;
ghc-boot-th = null;
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index 8e796aa3f1f..045c5dc1e5b 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -5,7 +5,7 @@ with haskellLib;
self: super: {
# Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_39;
+ llvmPackages = pkgs.llvmPackages;
# Disable GHC 8.2.x core libraries.
array = null;
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 02f2f67462d..be852679c9a 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -91,9 +91,9 @@ self: super: {
microlens-th = self.microlens-th_0_4_3_2;
network = self.network_3_1_1_1;
optparse-applicative = self.optparse-applicative_0_15_1_0;
- pandoc = self.pandoc_2_9_1;
+ pandoc = dontCheck super.pandoc_2_9_1_1; # https://github.com/jgm/pandoc/issues/6086
pandoc-types = self.pandoc-types_1_20;
- prettyprinter = self.prettyprinter_1_5_1;
+ prettyprinter = self.prettyprinter_1_6_0;
primitive = dontCheck super.primitive_0_7_0_0; # evaluating the test suite gives an infinite recursion
regex-base = self.regex-base_0_94_0_0;
regex-compat = self.regex-compat_0_95_2_0;
@@ -102,12 +102,12 @@ self: super: {
regex-tdfa = self.regex-tdfa_1_3_1_0;
shelly = self.shelly_1_9_0;
singletons = self.singletons_2_6;
- skylighting = self.skylighting_0_8_3;
- skylighting-core = self.skylighting-core_0_8_3;
+ skylighting = self.skylighting_0_8_3_2;
+ skylighting-core = self.skylighting-core_0_8_3_2;
sop-core = self.sop-core_0_5_0_0;
texmath = self.texmath_0_12;
th-desugar = self.th-desugar_1_10;
- tls = self.tls_1_5_2;
+ tls = self.tls_1_5_3;
trifecta = self.trifecta_2_1;
vty = self.vty_5_26;
xml-conduit = overrideCabal super.xml-conduit (drv: { version = "1.9.0.0"; sha256 = "1p57v127882rxvvmwjmvnqdmk3x2wg1z4d8y03849h0xaz1vid0w"; });
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index ef6eada4c2d..5eddabd8934 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -42,8 +42,34 @@ core-packages:
# of this library are marked as "broken".
- ghcjs-base-0
+# This is a list of packages with versions from the latest Stackage LTS release.
+#
+# The packages and versions in this list cause the `hackage2nix` tool to
+# generate the package at the given version.
+#
+# For instance, with a line like the following:
+#
+# - aeson ==1.4.6.0
+#
+# `hackage2nix` will generate the `aeson` package at version 1.4.6.0 in the
+# ./hackage-packages.nix file.
+#
+# Since the packages in the LTS package set are sometimes older than the latest
+# on Hackage, `hackage2nix` is smart enough to also generate the latest version
+# of a given package.
+#
+# In the above example with aeson, if there was version 1.5.0.0 of aeson
+# available on Hackage, `hackage2nix` would generate two packages, `aeson`
+# at version 1.4.6.0 and `aeson_1_5_0_0` at version 1.5.0.0.
+#
+# WARNING: This list is generated semiautomatically based on the most recent
+# LTS package set. If you want to add entries to it, you must do so before the
+# comment saying "# LTS Haskell x.y". Any changes after that commend will be
+# lost the next time `update-stackage.sh` runs.
default-package-overrides:
- # LTS Haskell 14.18
+ # pandoc-2.9 does not accept the 0.3 version yet
+ - doclayout < 0.3
+ # LTS Haskell 14.21
- abstract-deque ==0.3
- abstract-deque-tests ==0.3
- abstract-par ==0.3.3
@@ -73,7 +99,7 @@ default-package-overrides:
- alarmclock ==0.7.0.2
- alerts ==0.1.2.0
- alex ==3.2.5
- - alg ==0.2.13.0
+ - alg ==0.2.13.1
- algebraic-graphs ==0.4
- Allure ==0.9.5.0
- almost-fix ==0.0.2
@@ -139,10 +165,10 @@ default-package-overrides:
- avers ==0.0.17.1
- avers-api ==0.1.0
- avers-server ==0.1.0.1
- - avro ==0.4.5.4
+ - avro ==0.4.6.0
- avwx ==0.3.0.2
- aws-cloudfront-signed-cookies ==0.2.0.1
- - aws-lambda-haskell-runtime ==2.0.2
+ - aws-lambda-haskell-runtime ==2.0.3
- backprop ==0.2.6.3
- bank-holidays-england ==0.2.0.2
- barbies ==1.1.3.0
@@ -150,7 +176,7 @@ default-package-overrides:
- base16-bytestring ==0.1.1.6
- base32string ==0.9.1
- base58string ==0.10.0
- - base64-bytestring ==1.0.0.2
+ - base64-bytestring ==1.0.0.3
- base64-bytestring-type ==1.0.1
- base64-string ==0.2
- base-compat ==0.10.5
@@ -171,7 +197,7 @@ default-package-overrides:
- beam-sqlite ==0.4.0.0
- bench ==1.0.12
- benchpress ==0.2.2.12
- - bench-show ==0.3.0
+ - bench-show ==0.3.1
- bencode ==0.6.0.0
- bencoding ==0.4.5.2
- between ==0.11.0.0
@@ -263,10 +289,9 @@ default-package-overrides:
- bzlib-conduit ==0.3.0.2
- c2hs ==0.28.6
- Cabal ==2.4.1.0
- - cabal2spec ==2.2.2.1
- cabal-doctest ==1.0.8
- cabal-file-th ==0.2.6
- - cabal-rpm ==1.0.2
+ - cabal-rpm ==1.0.3
- cache ==0.1.3.0
- cacophony ==0.10.1
- calendar-recycling ==0.0.0.1
@@ -283,10 +308,10 @@ default-package-overrides:
- cassava-records ==0.1.0.4
- cast ==0.1.0.2
- caster ==0.0.3.0
- - category ==0.2.4.2
+ - category ==0.2.5.0
- cayley-client ==0.4.9
- - cborg ==0.2.2.0
- - cborg-json ==0.2.1.0
+ - cborg ==0.2.2.1
+ - cborg-json ==0.2.2.0
- cereal ==0.5.8.1
- cereal-conduit ==0.8.0
- cereal-text ==0.1.0.2
@@ -298,8 +323,8 @@ default-package-overrides:
- ChannelT ==0.0.0.7
- charset ==0.3.7.1
- charsetdetect-ae ==1.1.0.4
- - Chart ==1.9.1
- - Chart-diagrams ==1.9.2
+ - Chart ==1.9.3
+ - Chart-diagrams ==1.9.3
- chaselev-deque ==0.5.0.5
- cheapskate ==0.1.1.1
- cheapskate-highlight ==0.1.0.0
@@ -315,7 +340,7 @@ default-package-overrides:
- chronos-bench ==0.2.0.2
- chunked-data ==0.3.1
- cipher-aes ==0.2.11
- - cipher-aes128 ==0.7.0.4
+ - cipher-aes128 ==0.7.0.5
- cipher-blowfish ==0.0.3
- cipher-camellia ==0.0.2
- cipher-des ==0.0.6
@@ -345,7 +370,7 @@ default-package-overrides:
- codo-notation ==0.5.2
- coercible-utils ==0.0.0
- co-log ==0.3.0.0
- - co-log-core ==0.2.0.0
+ - co-log-core ==0.2.1.0
- colonnade ==1.2.0.2
- colorful-monoids ==0.2.1.2
- colorize-haskell ==1.0.1
@@ -399,7 +424,7 @@ default-package-overrides:
- convertible ==1.1.1.0
- cookie ==0.4.5
- core-data ==0.2.1.4
- - core-text ==0.2.2.4
+ - core-text ==0.2.2.6
- countable ==1.0
- country ==0.1.6
- courier ==0.1.1.5
@@ -415,7 +440,7 @@ default-package-overrides:
- credential-store ==0.1.2
- criterion ==1.5.6.1
- criterion-measurement ==0.1.2.0
- - cron ==0.6.1
+ - cron ==0.6.2
- crypto-api ==0.13.3
- crypto-api-tests ==0.3
- cryptocipher ==0.6.2
@@ -456,7 +481,7 @@ default-package-overrides:
- currency ==0.2.0.0
- cusparse ==0.2.0.0
- cutter ==0.0
- - cyclotomic ==1.0
+ - cyclotomic ==1.0.1
- czipwith ==1.0.1.2
- data-accessor ==0.2.2.8
- data-accessor-mtl ==0.2.0.4
@@ -492,7 +517,7 @@ default-package-overrides:
- data-textual ==0.3.0.3
- data-tree-print ==0.1.0.2
- dataurl ==0.1.0.0
- - DAV ==1.3.3
+ - DAV ==1.3.4
- dbcleaner ==0.1.3
- DBFunctor ==0.1.1.1
- dbus ==1.2.7
@@ -537,7 +562,7 @@ default-package-overrides:
- direct-sqlite ==2.3.24
- discount ==0.1.1
- disk-free-space ==0.1.0.1
- - distributed-closure ==0.4.1.1
+ - distributed-closure ==0.4.2.0
- distribution-opensuse ==1.1.1
- distributive ==0.6.1
- dl-fedora ==0.5
@@ -562,7 +587,7 @@ default-package-overrides:
- download ==0.3.2.7
- drinkery ==0.4
- dsp ==0.2.5
- - dual ==0.1.0.2
+ - dual ==0.1.0.3
- dual-tree ==0.2.2.1
- dublincore-xml-conduit ==0.1.0.2
- dunai ==0.5.1
@@ -630,7 +655,7 @@ default-package-overrides:
- exact-pi ==0.5.0.1
- exceptional ==0.3.0.0
- exception-mtl ==0.4.0.1
- - exceptions ==0.10.3
+ - exceptions ==0.10.4
- exception-transformers ==0.4.0.8
- executable-hash ==0.2.0.4
- executable-path ==0.0.3.1
@@ -698,8 +723,8 @@ default-package-overrides:
- focuslist ==0.1.0.2
- foldable1 ==0.1.0.0
- fold-debounce ==0.2.0.9
- - fold-debounce-conduit ==0.2.0.3
- - foldl ==1.4.5
+ - fold-debounce-conduit ==0.2.0.4
+ - foldl ==1.4.6
- folds ==0.7.5
- follow-file ==0.0.3
- FontyFruity ==0.5.3.5
@@ -756,7 +781,7 @@ default-package-overrides:
- genvalidity-hspec-cereal ==0.2.0.3
- genvalidity-hspec-hashable ==0.2.0.4
- genvalidity-hspec-optics ==0.1.1.1
- - genvalidity-path ==0.3.0.2
+ - genvalidity-path ==0.3.0.3
- genvalidity-property ==0.4.0.0
- genvalidity-scientific ==0.2.1.0
- genvalidity-text ==0.6.0.0
@@ -778,8 +803,8 @@ default-package-overrides:
- ghc-paths ==0.1.0.12
- ghc-prof ==1.4.1.6
- ghc-syntax-highlighter ==0.0.4.1
- - ghc-tcplugins-extra ==0.3
- - ghc-typelits-extra ==0.3.1
+ - ghc-tcplugins-extra ==0.3.2
+ - ghc-typelits-extra ==0.3.2
- ghc-typelits-knownnat ==0.6
- ghc-typelits-natnormalise ==0.6.2
- ghost-buster ==0.1.1.0
@@ -804,7 +829,7 @@ default-package-overrides:
- gitrev ==1.3.1
- gi-vte ==2.91.25
- gl ==0.9
- - glabrous ==2.0.0
+ - glabrous ==2.0.1
- glaze ==0.3.0.1
- glazier ==1.0.0.0
- GLFW-b ==3.2.1.1
@@ -816,9 +841,9 @@ default-package-overrides:
- gloss-rendering ==1.13.1.1
- GLURaw ==2.0.0.4
- GLUT ==2.7.0.15
- - gnuplot ==0.5.6
+ - gnuplot ==0.5.6.1
- google-isbn ==1.0.3
- - google-oauth2-jwt ==0.3.1
+ - google-oauth2-jwt ==0.3.2
- gpolyline ==0.1.0.1
- graph-core ==0.3.0.0
- graphite ==0.10.0.1
@@ -828,8 +853,8 @@ default-package-overrides:
- gravatar ==0.8.0
- graylog ==0.1.0.1
- greskell ==0.2.3.1
- - greskell-core ==0.1.2.7
- - greskell-websocket ==0.1.1.2
+ - greskell-core ==0.1.3.1
+ - greskell-websocket ==0.1.2.1
- groom ==0.1.2.1
- groundhog ==0.10.0
- groundhog-inspector ==0.10.0
@@ -853,7 +878,7 @@ default-package-overrides:
- HandsomeSoup ==0.4.2
- hapistrano ==0.3.10.0
- happy ==1.19.12
- - hasbolt ==0.1.4.0
+ - hasbolt ==0.1.4.1
- hashable ==1.2.7.0
- hashable-time ==0.2.0.2
- hashids ==1.0.2.4
@@ -874,7 +899,7 @@ default-package-overrides:
- haskell-src-meta ==0.8.3
- haskey-btree ==0.3.0.1
- haskintex ==0.8.0.0
- - haskoin-core ==0.9.7
+ - haskoin-core ==0.9.8
- hasql ==1.4.0.1
- hasql-optparse-applicative ==0.3.0.5
- hasql-pool ==0.5.1
@@ -891,7 +916,7 @@ default-package-overrides:
- heap ==1.0.4
- heaps ==0.3.6.1
- hebrew-time ==0.1.2
- - hedgehog ==1.0.1
+ - hedgehog ==1.0.2
- hedgehog-corpus ==0.1.0
- hedgehog-fn ==1.0
- hedis ==0.12.11
@@ -958,7 +983,7 @@ default-package-overrides:
- HSet ==0.0.1
- hset ==2.2.0
- hsexif ==0.6.1.6
- - hs-functors ==0.1.4.0
+ - hs-functors ==0.1.5.0
- hs-GeoIP ==0.3
- hsini ==0.5.1.2
- hsinstall ==2.2
@@ -984,7 +1009,7 @@ default-package-overrides:
- hspec-leancheck ==0.0.3
- hspec-megaparsec ==2.0.1
- hspec-meta ==2.6.0
- - hspec-need-env ==0.1.0.3
+ - hspec-need-env ==0.1.0.4
- hspec-pg-transact ==0.1.0.2
- hspec-smallcheck ==0.5.2
- hspec-wai ==0.9.2
@@ -1013,7 +1038,7 @@ default-package-overrides:
- http-conduit ==2.3.7.3
- http-date ==0.0.8
- http-directory ==0.1.5
- - http-download ==0.1.0.0
+ - http-download ==0.1.0.1
- httpd-shed ==0.4.1.1
- http-link-header ==1.0.3.1
- http-media ==0.8.0.0
@@ -1122,9 +1147,9 @@ default-package-overrides:
- io-streams ==1.5.1.0
- io-streams-haproxy ==1.0.1.0
- ip ==1.5.1
- - ip6addr ==1.0.0
+ - ip6addr ==1.0.1
- iproute ==1.7.8
- - IPv6Addr ==1.1.2
+ - IPv6Addr ==1.1.3
- ipynb ==0.1
- ipython-kernel ==0.10.1.0
- irc ==0.6.1.0
@@ -1148,7 +1173,7 @@ default-package-overrides:
- json-alt ==1.0.0
- json-feed ==1.0.7
- jsonpath ==0.1.0.2
- - json-rpc ==1.0.0
+ - json-rpc ==1.0.1
- json-rpc-client ==0.2.5.0
- json-rpc-generic ==0.2.1.5
- json-rpc-server ==0.2.6.0
@@ -1175,6 +1200,8 @@ default-package-overrides:
- l10n ==0.1.0.1
- labels ==0.3.3
- lackey ==1.0.10
+ - lambdabot-core ==5.2
+ - lambdabot-irc-plugins ==5.2
- LambdaHack ==0.9.5.0
- lame ==0.2.0
- language-c ==0.8.3
@@ -1184,7 +1211,7 @@ default-package-overrides:
- language-haskell-extract ==0.2.4
- language-java ==0.2.9
- language-javascript ==0.6.0.14
- - language-puppet ==1.4.6
+ - language-puppet ==1.4.6.1
- lapack ==0.3.1
- lapack-carray ==0.0.3
- lapack-comfort-array ==0.0.0.1
@@ -1200,7 +1227,7 @@ default-package-overrides:
- leancheck ==0.9.1
- leancheck-instances ==0.0.3
- leapseconds-announced ==2017.1.0.1
- - learn-physics ==0.6.4
+ - learn-physics ==0.6.5
- lens ==4.17.1
- lens-action ==0.2.4
- lens-aeson ==1.0.2
@@ -1285,7 +1312,7 @@ default-package-overrides:
- matplotlib ==0.7.5
- matrices ==0.5.0
- matrix ==0.3.6.1
- - matrix-market-attoparsec ==0.1.0.8
+ - matrix-market-attoparsec ==0.1.1.3
- matrix-static ==0.2.1
- maximal-cliques ==0.1.1
- mbox ==0.3.4
@@ -1323,7 +1350,7 @@ default-package-overrides:
- mime-mail-ses ==0.4.1
- mime-types ==0.1.0.9
- minimorph ==0.2.1.0
- - minio-hs ==1.5.1
+ - minio-hs ==1.5.2
- miniutter ==0.5.0.0
- mintty ==0.1.2
- miso ==1.2.0.0
@@ -1360,7 +1387,7 @@ default-package-overrides:
- monad-peel ==0.2.1.2
- monad-products ==4.0.1
- MonadPrompt ==1.0.0.5
- - MonadRandom ==0.5.1.1
+ - MonadRandom ==0.5.1.2
- monad-skeleton ==0.1.5
- monad-st ==0.2.4.1
- monads-tf ==0.1.0.3
@@ -1372,11 +1399,10 @@ default-package-overrides:
- monoid-extras ==0.5.1
- monoid-subclasses ==0.4.6.1
- monoid-transformer ==0.0.4
- - mono-traversable ==1.0.13.0
+ - mono-traversable ==1.0.15.1
- mono-traversable-instances ==0.1.0.0
- mono-traversable-keys ==0.1.0
- more-containers ==0.2.2.0
- - morpheus-graphql ==0.8.0
- mountpoints ==1.0.2
- mpi-hs ==0.5.3.0
- msgpack ==1.0.1.0
@@ -1497,7 +1523,7 @@ default-package-overrides:
- options ==1.2.1.1
- optparse-applicative ==0.14.3.0
- optparse-enum ==1.0.0.0
- - optparse-generic ==1.3.0
+ - optparse-generic ==1.3.1
- optparse-simple ==0.1.1.2
- optparse-text ==0.1.1.0
- ordered-containers ==0.2.2
@@ -1530,8 +1556,8 @@ default-package-overrides:
- partial-handler ==1.0.3
- partial-isomorphisms ==0.2.2.1
- partial-semigroup ==0.5.1.1
- - password ==0.1.0.0
- - password-instances ==0.3.0.0
+ - password ==0.1.0.1
+ - password-instances ==0.3.0.1
- path ==0.6.1
- path-extra ==0.2.0
- path-io ==1.4.2
@@ -1618,7 +1644,7 @@ default-package-overrides:
- postgresql-orm ==0.5.1
- postgresql-schema ==0.1.14
- postgresql-simple ==0.6.2
- - postgresql-simple-migration ==0.1.14.0
+ - postgresql-simple-migration ==0.1.15.0
- postgresql-simple-queue ==1.0.1
- postgresql-simple-url ==0.2.1.0
- postgresql-transactional ==1.1.1
@@ -1678,10 +1704,9 @@ default-package-overrides:
- psqueues ==0.2.7.2
- pureMD5 ==2.1.3
- purescript-bridge ==0.13.0.0
- - pure-zlib ==0.6.6
+ - pure-zlib ==0.6.7
- pushbullet-types ==0.4.1.0
- pusher-http-haskell ==1.5.1.11
- - PyF ==0.8.1.2
- qchas ==1.1.0.1
- qm-interpolated-string ==0.3.0.0
- qnap-decrypt ==0.3.5
@@ -1702,7 +1727,7 @@ default-package-overrides:
- quickcheck-text ==0.1.2.1
- quickcheck-transformer ==0.3.1
- quickcheck-unicode ==1.0.1.0
- - radius ==0.6.0.3
+ - radius ==0.6.1.0
- rainbow ==0.30.0.2
- rainbox ==0.20.0.0
- ramus ==0.1.2
@@ -1790,7 +1815,7 @@ default-package-overrides:
- rhine ==0.5.1.0
- rhine-gloss ==0.5.1.0
- rigel-viz ==0.2.0.0
- - rio ==0.1.12.0
+ - rio ==0.1.13.0
- rio-orphans ==0.1.1.0
- rio-prettyprint ==0.1.0.0
- roc-id ==0.1.0.0
@@ -1826,8 +1851,8 @@ default-package-overrides:
- say ==0.1.0.1
- sbp ==2.6.3
- sbv ==8.3
- - scalpel ==0.6.0
- - scalpel-core ==0.6.0
+ - scalpel ==0.6.1
+ - scalpel-core ==0.6.1
- scanf ==0.1.0.0
- scanner ==0.3.1
- scheduler ==1.4.2.1
@@ -1839,7 +1864,7 @@ default-package-overrides:
- sdl2-image ==2.0.0
- sdl2-mixer ==1.1.0
- sdl2-ttf ==2.1.0
- - secp256k1-haskell ==0.1.5
+ - secp256k1-haskell ==0.1.8
- securemem ==0.1.10
- selda ==0.4.0.0
- selda-json ==0.1.1.0
@@ -1856,11 +1881,11 @@ default-package-overrides:
- sendfile ==0.7.11.1
- seqalign ==0.2.0.4
- serf ==0.1.1.0
- - serialise ==0.2.1.0
+ - serialise ==0.2.2.0
- servant ==0.16.2
- servant-auth ==0.3.2.0
- servant-auth-docs ==0.2.10.0
- - servant-auth-server ==0.4.4.0
+ - servant-auth-server ==0.4.5.0
- servant-auth-swagger ==0.2.10.0
- servant-auth-wordpress ==1.0.0.1
- servant-blaze ==0.9
@@ -1985,7 +2010,7 @@ default-package-overrides:
- statestack ==0.2.0.5
- StateVar ==1.2
- static-text ==0.2.0.4
- - statistics ==0.15.1.1
+ - statistics ==0.15.2.0
- stb-image-redux ==0.2.1.3
- step-function ==0.2
- stm-chans ==3.0.0.4
@@ -2006,7 +2031,7 @@ default-package-overrides:
- streaming-attoparsec ==1.0.0.1
- streaming-bytestring ==0.1.6
- streaming-cassava ==0.1.0.1
- - streaming-commons ==0.2.1.1
+ - streaming-commons ==0.2.1.2
- streaming-wai ==0.1.1
- streamly ==0.6.1
- streamproc ==1.6.2
@@ -2030,7 +2055,7 @@ default-package-overrides:
- stripe-wreq ==1.0.1.0
- strive ==5.0.9
- structs ==0.1.2
- - structured-cli ==2.5.1.0
+ - structured-cli ==2.5.2.0
- summoner ==1.3.0.1
- sum-type-boilerplate ==0.1.1
- sundown ==0.6
@@ -2072,7 +2097,7 @@ default-package-overrides:
- tasty-discover ==4.2.1
- tasty-expected-failure ==0.11.1.2
- tasty-golden ==2.3.2
- - tasty-hedgehog ==1.0.0.1
+ - tasty-hedgehog ==1.0.0.2
- tasty-hspec ==1.1.5.1
- tasty-hunit ==0.10.0.2
- tasty-kat ==0.0.3
@@ -2139,7 +2164,7 @@ default-package-overrides:
- thread-hierarchy ==0.3.0.1
- thread-local-storage ==0.2
- threads ==0.5.1.6
- - threepenny-gui ==0.8.3.0
+ - threepenny-gui ==0.8.3.1
- th-reify-compat ==0.0.1.5
- th-reify-many ==0.1.9
- throttle-io-stream ==0.2.0.1
@@ -2148,7 +2173,6 @@ default-package-overrides:
- th-test-utils ==1.0.1
- th-utilities ==0.2.3.1
- thyme ==0.3.5.5
- - tidal ==1.4.5
- tile ==0.3.0.0
- time-compat ==1.9.2.2
- timeit ==2.0
@@ -2169,7 +2193,7 @@ default-package-overrides:
- tldr ==0.4.0.2
- tls ==1.4.1
- tls-debug ==0.4.5
- - tls-session-manager ==0.0.3
+ - tls-session-manager ==0.0.4
- tmapchan ==0.0.3
- tmapmvar ==0.0.4
- tmp-postgres ==0.2.0.0
@@ -2177,11 +2201,11 @@ default-package-overrides:
- tomland ==1.1.0.1
- tonalude ==0.1.1.0
- tonaparser ==0.1.0.0
- - tonatona ==0.1.0.1
+ - tonatona ==0.1.1.0
- tonatona-logger ==0.2.0.0
- tonatona-persistent-postgresql ==0.1.0.1
- tonatona-persistent-sqlite ==0.1.0.1
- - tonatona-servant ==0.1.0.2
+ - tonatona-servant ==0.1.0.3
- torsor ==0.1
- tostring ==0.2.1.1
- TotalMap ==0.1.1.1
@@ -2224,7 +2248,7 @@ default-package-overrides:
- typerep-map ==0.3.2
- type-spec ==0.4.0.0
- tz ==0.1.3.3
- - tzdata ==0.1.20190325.0
+ - tzdata ==0.1.20190911.0
- ua-parser ==0.7.5.1
- ucam-webauth ==0.1.0.0
- ucam-webauth-types ==0.1.0.0
@@ -2237,7 +2261,7 @@ default-package-overrides:
- uncertain ==0.3.1.0
- unconstrained ==0.1.0.2
- unicode ==0.0.1.1
- - unicode-show ==0.1.0.3
+ - unicode-show ==0.1.0.4
- unicode-transforms ==0.3.6
- unification-fd ==0.10.0.1
- union ==0.1.2
@@ -2279,7 +2303,7 @@ default-package-overrides:
- users-test ==0.5.0.1
- utf8-light ==0.4.2
- utf8-string ==1.0.1.1
- - util ==0.1.15.0
+ - util ==0.1.17.0
- utility-ht ==0.0.14
- uuid ==1.3.13
- uuid-types ==1.0.3
@@ -2311,7 +2335,7 @@ default-package-overrides:
- vector-split ==1.0.0.2
- vector-th-unbox ==0.2.1.7
- verbosity ==0.3.0.0
- - versions ==3.5.1.1
+ - versions ==3.5.2
- ViennaRNAParser ==1.3.3
- viewprof ==0.0.0.32
- vinyl ==0.11.0
@@ -2321,14 +2345,14 @@ default-package-overrides:
- void ==0.7.3
- vty ==5.25.1
- wai ==3.2.2.1
- - wai-app-static ==3.1.6.3
+ - wai-app-static ==3.1.7.1
- wai-cli ==0.2.1
- wai-conduit ==3.0.0.4
- wai-cors ==0.2.7
- wai-enforce-https ==0.0.1
- wai-eventsource ==3.0.0
- - wai-extra ==3.0.28
- - wai-handler-launch ==3.0.2.4
+ - wai-extra ==3.0.29
+ - wai-handler-launch ==3.0.3.1
- wai-logger ==2.3.5
- wai-middleware-auth ==0.1.2.1
- wai-middleware-caching ==0.1.0.2
@@ -2356,13 +2380,13 @@ default-package-overrides:
- web-routes-hsp ==0.24.6.1
- web-routes-wai ==0.24.3.1
- webrtc-vad ==0.1.0.3
- - websockets ==0.12.6.1
+ - websockets ==0.12.7.0
- websockets-snap ==0.10.3.1
- weigh ==0.0.16
- wide-word ==0.1.0.9
- wikicfp-scraper ==0.1.0.11
- - wild-bind ==0.1.2.4
- - wild-bind-x11 ==0.2.0.8
+ - wild-bind ==0.1.2.5
+ - wild-bind-x11 ==0.2.0.9
- Win32 ==2.6.1.0
- Win32-notify ==0.3.0.3
- windns ==0.1.0.1
@@ -2431,7 +2455,7 @@ default-package-overrides:
- yesod ==1.6.0
- yesod-alerts ==0.1.3.0
- yesod-auth ==1.6.8
- - yesod-auth-hashdb ==1.7.1.1
+ - yesod-auth-hashdb ==1.7.1.2
- yesod-auth-oauth2 ==0.6.1.2
- yesod-bin ==1.6.0.4
- yesod-core ==1.6.17
@@ -2444,7 +2468,7 @@ default-package-overrides:
- yesod-gitrev ==0.2.1
- yesod-newsfeed ==1.6.1.0
- yesod-paginator ==1.1.0.2
- - yesod-persistent ==1.6.0.3
+ - yesod-persistent ==1.6.0.4
- yesod-recaptcha2 ==0.3.0
- yesod-sitemap ==1.6.0
- yesod-static ==1.6.0.1
@@ -2490,6 +2514,7 @@ extra-packages:
- dbus <1 # for xmonad-0.26
- deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3
- dhall == 1.27.0 # required for spago 0.13.0. Probably can be removed when next version of spago is available.
+ - doctemplates == 0.8 # required by pandoc-2.9.x
- generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x
- gloss < 1.9.3 # new versions don't compile with GHC 7.8.x
- haddock == 2.22.* # required on GHC 8.0.x
@@ -2578,6 +2603,8 @@ package-maintainers:
- streaming-wai
kiwi:
- glirc
+ - matterhorn
+ - Unique
psibi:
- path-pieces
- persistent
@@ -2755,6 +2782,8 @@ broken-packages:
- accelerate-arithmetic
- accelerate-fftw
- accelerate-fourier
+ - accelerate-kullback-liebler
+ - accelerate-llvm
- accelerate-llvm-native
- accelerate-random
- accelerate-typelits
@@ -2861,6 +2890,7 @@ broken-packages:
- algebra
- algebra-sql
- algebraic
+ - algebraic-classes
- algebraic-graphs
- algebraic-prelude
- algo-s
@@ -2889,6 +2919,7 @@ broken-packages:
- AMI
- ampersand
- amqp-conduit
+ - amqp-utils
- analyze
- analyze-client
- anansi-pandoc
@@ -2991,6 +3022,7 @@ broken-packages:
- ariadne
- arion
- arith-encode
+ - arithmetic-circuits
- armada
- armor
- arpa
@@ -3084,6 +3116,7 @@ broken-packages:
- avl-static
- AvlTree
- avr-shake
+ - avro-piper
- awesome-prelude
- awesomium
- awesomium-glut
@@ -3351,6 +3384,7 @@ broken-packages:
- boolexpr
- boombox
- boomslang
+ - boopadoop
- boots-app
- boots-cloud
- boots-web
@@ -4219,6 +4253,7 @@ broken-packages:
- dictionaries
- dictparser
- diet
+ - diff
- diffcabal
- difference-monoid
- DifferenceLogic
@@ -4438,6 +4473,7 @@ broken-packages:
- elevator
- elision
- elliptic-curve
+ - elm-street
- elm-websocket
- elsa
- elynx-seq
@@ -4474,6 +4510,7 @@ broken-packages:
- EnumMap
- enummapmap
- enummapset-th
+ - env-extra
- env-parser
- envstatus
- epanet-haskell
@@ -4550,6 +4587,7 @@ broken-packages:
- exact-real
- exact-real-positional
- except-exceptions
+ - exception-hierarchy
- exception-monads-fd
- exchangerates
- execs
@@ -4580,6 +4618,7 @@ broken-packages:
- extended-categories
- extensible-data
- extensible-effects-concurrent
+ - extensible-skeleton
- Extra
- extract-dependencies
- extractelf
@@ -4815,6 +4854,7 @@ broken-packages:
- freddy
- free-category
- free-concurrent
+ - free-functors
- free-game
- free-http
- free-operational
@@ -5017,6 +5057,7 @@ broken-packages:
- ghci-lib
- ghci-ng
- ghci-pretty
+ - ghcide
- ghcjs-base-stub
- ghcjs-dom-jsffi
- ghcjs-fetch
@@ -5027,6 +5068,7 @@ broken-packages:
- ghcprofview
- ght
- gi-cairo-again
+ - gi-gdkx11
- gi-graphene
- gi-gsk
- gi-gstpbutils
@@ -5052,6 +5094,7 @@ broken-packages:
- git-fmt
- git-gpush
- git-jump
+ - git-mediate
- git-object
- git-remote-ipfs
- git-repair
@@ -5225,6 +5268,7 @@ broken-packages:
- gstreamer
- GTALib
- gtfs
+ - gtfs-realtime
- gtk-serialized-event
- gtk-toy
- gtk2hs-hello
@@ -5318,7 +5362,6 @@ broken-packages:
- hakyll-filestore
- hakyll-ogmarkup
- hakyll-R
- - hakyll-sass
- hakyll-series
- hakyll-shakespeare
- hakyll-shortcode
@@ -5472,6 +5515,7 @@ broken-packages:
- haskell-src-exts-prisms
- haskell-src-exts-qq
- haskell-src-exts-sc
+ - haskell-src-exts-simple
- haskell-src-meta-mwotton
- haskell-stack-trace-plugin
- haskell-token-utils
@@ -5652,6 +5696,7 @@ broken-packages:
- hdr-histogram
- HDRUtils
- headergen
+ - heart-app
- heartbeat-streams
- heatitup
- heatitup-complete
@@ -5762,6 +5807,7 @@ broken-packages:
- hiccup
- hichi
- hid-examples
+ - hie-bios
- hie-core
- hieraclus
- hierarchical-clustering
@@ -5947,6 +5993,7 @@ broken-packages:
- hpaste
- hpasteit
- HPath
+ - hpath-io
- hpc-tracer
- hPDB
- hPDB-examples
@@ -6199,6 +6246,8 @@ broken-packages:
- http-shed
- http-streams
- http-wget
+ - http2-client
+ - http2-client-exe
- http2-client-grpc
- http2-grpc-proto3-wire
- https-everywhere-rules
@@ -6226,6 +6275,7 @@ broken-packages:
- hunt-searchengine
- hunt-server
- hurdle
+ - hurl
- hurriyet
- husk-scheme
- husk-scheme-libs
@@ -6389,6 +6439,7 @@ broken-packages:
- indieweb-algorithms
- inf-interval
- infer-upstream
+ - infernal
- infernu
- infinity
- infix
@@ -6411,6 +6462,7 @@ broken-packages:
- instapaper-sender
- instinct
- int-multimap
+ - intcode
- integer-pure
- integreat
- intel-aes
@@ -6561,6 +6613,7 @@ broken-packages:
- json-pointer-hasql
- json-python
- json-schema
+ - json-syntax
- json-togo
- json-tokens
- json-tools
@@ -6812,6 +6865,7 @@ broken-packages:
- legion-extra
- leksah-server
- lendingclub
+ - lens-core
- lens-filesystem
- lens-prelude
- lens-text-encoding
@@ -6823,6 +6877,7 @@ broken-packages:
- Level0
- levmar
- levmar-chart
+ - lex-applicative
- lfst
- lgtk
- lha
@@ -6932,11 +6987,13 @@ broken-packages:
- llvm-base-types
- llvm-base-util
- llvm-data-interop
+ - llvm-extension
- llvm-extra
- llvm-ffi
- llvm-general
- llvm-general-pure
- llvm-general-quote
+ - llvm-hs
- llvm-hs-pretty
- llvm-ht
- llvm-pkg-config
@@ -7118,7 +7175,6 @@ broken-packages:
- mathlink
- matrix-as-xyz
- matsuri
- - matterhorn
- maude
- maxent
- maxent-learner-hw
@@ -7252,6 +7308,8 @@ broken-packages:
- mmsyn4
- mmsyn6ukr
- mmsyn7h
+ - mmsyn7l
+ - mmsyn7s
- mmsyn7ukr
- mmtf
- mmtl
@@ -7386,6 +7444,9 @@ broken-packages:
- mtl-tf
- mtlx
- mtp
+ - mu-grpc-client
+ - mu-grpc-server
+ - mu-protobuf
- MuCheck
- MuCheck-Hspec
- MuCheck-HUnit
@@ -7429,6 +7490,7 @@ broken-packages:
- musicxml
- musicxml2
- mustache-haskell
+ - mutable
- mutable-iter
- MutationOrder
- mute-unmute
@@ -7522,6 +7584,7 @@ broken-packages:
- network-anonymous-tor
- network-api-support
- network-arbitrary
+ - network-bitcoin
- network-builder
- network-bytestring
- network-connection
@@ -7731,7 +7794,6 @@ broken-packages:
- orgstat
- origami
- orizentic
- - ormolu
- OrPatterns
- osc
- oscpacking
@@ -7766,6 +7828,7 @@ broken-packages:
- Paillier
- pairing
- pam
+ - pan-os-syslog
- panda
- pandoc-citeproc-preamble
- pandoc-crossref
@@ -7806,6 +7869,7 @@ broken-packages:
- parco-parsec
- parconc-examples
- pareto
+ - parquet-hs
- Parry
- parse-help
- parseargs
@@ -8069,7 +8133,6 @@ broken-packages:
- postgresql-simple-queue
- postgresql-simple-sop
- postgresql-simple-typed
- - postgresql-typed
- postgresql-typed-lifted
- postgrest
- postgrest-ws
@@ -8112,6 +8175,7 @@ broken-packages:
- presto-hdbc
- pretty-ncols
- pretty-relative-time
+ - prettyprinter-graphviz
- prettyprinter-vty
- preview
- prim-array
@@ -8275,6 +8339,7 @@ broken-packages:
- quicktest
- quickwebapp
- quipper
+ - quipper-all
- quipper-core
- quipper-rendering
- quiver-binary
@@ -8362,6 +8427,7 @@ broken-packages:
- reactive-glut
- reactive-thread
- reactor
+ - read-ctags
- read-io
- reader-soup
- readline-statevar
@@ -8405,10 +8471,13 @@ broken-packages:
- reflex-basic-host
- reflex-dom-retractable
- reflex-dom-svg
+ - reflex-fsnotify
+ - reflex-ghci
- reflex-gloss
- reflex-gloss-scene
- reflex-libtelnet
- reflex-orphans
+ - reflex-process
- reflex-sdl2
- reflex-transformers
- reflex-vty
@@ -8418,8 +8487,10 @@ broken-packages:
- refresht
- refurb
- reg-alloc
+ - reg-alloc-graph-color
- regex-deriv
- regex-dfa
+ - regex-do
- regex-generator
- regex-parsec
- regex-pderiv
@@ -8735,6 +8806,7 @@ broken-packages:
- seclib
- second-transfer
- secp256k1
+ - secp256k1-haskell
- secp256k1-legacy
- secret-santa
- secret-sharing
@@ -8899,6 +8971,7 @@ broken-packages:
- shellmate-extras
- shh
- shh-extras
+ - shine-examples
- shivers-cfg
- shoap
- shopify
@@ -8954,6 +9027,7 @@ broken-packages:
- simplenote
- simpleprelude
- SimpleServer
+ - simplest-sqlite
- simseq
- singleton-dict
- singleton-typelits
@@ -9288,6 +9362,7 @@ broken-packages:
- streaming-postgresql-simple
- streaming-process
- streaming-sort
+ - streamly-fsnotify
- strelka
- strict-data
- StrictBench
@@ -9410,6 +9485,7 @@ broken-packages:
- Tablify
- tabloid
- tabs
+ - taffybar
- tag-bits
- tag-stream
- tagged-exception-core
@@ -9433,6 +9509,7 @@ broken-packages:
- tamarin-prover-utils
- tamper
- Tape
+ - tar-bytestring
- target
- tart
- task
@@ -9575,6 +9652,7 @@ broken-packages:
- thumbnail-plus
- thumbnail-polish
- tic-tac-toe
+ - ticker
- tickle
- TicTacToe
- tictactoe3d
@@ -9620,6 +9698,8 @@ broken-packages:
- tip-haskell-frontend
- tip-lib
- titan
+ - titan-debug-yampa
+ - titan-record-yampa
- Titim
- tkhs
- tkyprof
@@ -9634,6 +9714,7 @@ broken-packages:
- todos
- tofromxml
- toilet
+ - token-search
- tokenify
- tokstyle
- toktok
@@ -9723,6 +9804,7 @@ broken-packages:
- tripLL
- trivia
- tropical
+ - tropical-geometry
- truelevel
- trurl
- tsession
@@ -9807,6 +9889,7 @@ broken-packages:
- typedquery
- typehash
- TypeIlluminator
+ - typelevel-rewrite-rules
- typelevel-tensor
- TypeNat
- typeparams
@@ -9847,7 +9930,6 @@ broken-packages:
- uniform-io
- union
- union-map
- - Unique
- uniqueid
- uniquely-represented-sets
- units-attoparsec
@@ -9955,7 +10037,9 @@ broken-packages:
- vcsgui
- vcswrapper
- Vec-Boolean
+ - vec-lens
- Vec-OpenGLRaw
+ - vec-optics
- Vec-Transform
- vect-floating
- vect-floating-accelerate
@@ -10076,6 +10160,7 @@ broken-packages:
- warp-dynamic
- warp-grpc
- warp-static
+ - warp-systemd
- WashNGo
- wasm
- watcher
@@ -10107,7 +10192,6 @@ broken-packages:
- WebBits
- WebBits-Html
- WebBits-multiplate
- - webby
- webcloud
- WebCont
- webcrank
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
index 9eedb0fed85..b2c65b7f03a 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
@@ -282,20 +282,6 @@ self: super: builtins.intersectAttrs super {
# Uses OpenGL in testing
caramia = dontCheck super.caramia;
- llvm-general =
- # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142
- let base = super.llvm-general.override { llvm-config = pkgs.llvm_35; };
- in if !pkgs.stdenv.isDarwin then base else overrideCabal base (
- drv: {
- preConfigure = ''
- sed -i llvm-general.cabal \
- -e 's,extra-libraries: stdc++,extra-libraries: c++,'
- '';
- configureFlags = (drv.configureFlags or []) ++ ["--extra-include-dirs=${pkgs.libcxx}/include/c++/v1"];
- librarySystemDepends = [ pkgs.libcxx ] ++ drv.librarySystemDepends or [];
- }
- );
-
llvm-hs =
let llvmHsWithLlvm8 = super.llvm-hs.override { llvm-config = pkgs.llvm_8; };
in
@@ -695,4 +681,8 @@ self: super: builtins.intersectAttrs super {
spagoWithoutChecks = dontCheck spagoFixHpack;
in
spagoWithoutChecks;
+
+ # checks SQL statements at compile time, and so requires a running PostgreSQL
+ # database to run it's test suite
+ postgresql-typed = dontCheck super.postgresql-typed;
}
diff --git a/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix b/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
index 2ae33138696..c93fc5b7e45 100644
--- a/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
@@ -1,5 +1,6 @@
{ stdenv, buildPackages, buildHaskellPackages, ghc
-, jailbreak-cabal, hscolour, cpphs, nodejs, shellFor
+, jailbreak-cabal, hscolour, cpphs, nodejs
+, ghcWithHoogle, ghcWithPackages
}:
let
@@ -24,6 +25,7 @@ in
, doCheck ? !isCross && stdenv.lib.versionOlder "7.4" ghc.version
, doBenchmark ? false
, doHoogle ? true
+, doHaddockQuickjump ? doHoogle && stdenv.lib.versionAtLeast ghc.version "8.6"
, editedCabalFile ? null
, enableLibraryProfiling ? !(ghc.isGhcjs or false)
, enableExecutableProfiling ? false
@@ -205,21 +207,28 @@ let
optionals doCheck testPkgconfigDepends ++ optionals doBenchmark benchmarkPkgconfigDepends;
depsBuildBuild = [ nativeGhc ];
- nativeBuildInputs = [ ghc removeReferencesTo ] ++ optional (allPkgconfigDepends != []) pkgconfig ++
- setupHaskellDepends ++
- buildTools ++ libraryToolDepends ++ executableToolDepends ++
- optionals doCheck testToolDepends ++
- optionals doBenchmark benchmarkToolDepends;
+ collectedToolDepends =
+ buildTools ++ libraryToolDepends ++ executableToolDepends ++
+ optionals doCheck testToolDepends ++
+ optionals doBenchmark benchmarkToolDepends;
+ nativeBuildInputs =
+ [ ghc removeReferencesTo ] ++ optional (allPkgconfigDepends != []) pkgconfig ++
+ setupHaskellDepends ++ collectedToolDepends;
propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends ++ libraryFrameworkDepends;
- otherBuildInputs = extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ executableFrameworkDepends ++
- allPkgconfigDepends ++
- optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testFrameworkDepends) ++
- optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkFrameworkDepends);
-
-
- allBuildInputs = propagatedBuildInputs ++ otherBuildInputs ++ depsBuildBuild ++ nativeBuildInputs;
- isHaskellPartition =
- stdenv.lib.partition isHaskellPkg allBuildInputs;
+ otherBuildInputsHaskell =
+ optionals doCheck (testDepends ++ testHaskellDepends) ++
+ optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends);
+ otherBuildInputsSystem =
+ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ executableFrameworkDepends ++
+ allPkgconfigDepends ++
+ optionals doCheck (testSystemDepends ++ testFrameworkDepends) ++
+ optionals doBenchmark (benchmarkSystemDepends ++ benchmarkFrameworkDepends);
+ # TODO next rebuild just define as `otherBuildInputsHaskell ++ otherBuildInputsSystem`
+ otherBuildInputs =
+ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ executableFrameworkDepends ++
+ allPkgconfigDepends ++
+ optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testFrameworkDepends) ++
+ optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkFrameworkDepends);
setupCommand = "./Setup";
@@ -402,6 +411,7 @@ stdenv.mkDerivation ({
${optionalString (doHaddock && isLibrary) ''
${setupCommand} haddock --html \
${optionalString doHoogle "--hoogle"} \
+ ${optionalString doHaddockQuickjump "--quickjump"} \
${optionalString (isLibrary && hyperlinkSource) "--hyperlink-source"} \
${stdenv.lib.concatStringsSep " " haddockFlags}
''}
@@ -460,17 +470,61 @@ stdenv.mkDerivation ({
runHook postInstall
'';
- passthru = passthru // {
+ passthru = passthru // rec {
inherit pname version;
compiler = ghc;
+ # All this information is intended just for `shellFor`. It should be
+ # considered unstable and indeed we knew how to keep it private we would.
+ getCabalDeps = {
+ inherit
+ buildDepends
+ buildTools
+ executableFrameworkDepends
+ executableHaskellDepends
+ executablePkgconfigDepends
+ executableSystemDepends
+ executableToolDepends
+ extraLibraries
+ libraryFrameworkDepends
+ libraryHaskellDepends
+ libraryPkgconfigDepends
+ librarySystemDepends
+ libraryToolDepends
+ pkgconfigDepends
+ setupHaskellDepends
+ ;
+ } // stdenv.lib.optionalAttrs doCheck {
+ inherit
+ testDepends
+ testFrameworkDepends
+ testHaskellDepends
+ testPkgconfigDepends
+ testSystemDepends
+ testToolDepends
+ ;
+ } // stdenv.lib.optionalAttrs doBenchmark {
+ inherit
+ benchmarkDepends
+ benchmarkFrameworkDepends
+ benchmarkHaskellDepends
+ benchmarkPkgconfigDepends
+ benchmarkSystemDepends
+ benchmarkToolDepends
+ ;
+ };
- getBuildInputs = {
+ # Attributes for the old definition of `shellFor`. Should be removed but
+ # this predates the warning at the top of `getCabalDeps`.
+ getBuildInputs = rec {
inherit propagatedBuildInputs otherBuildInputs allPkgconfigDepends;
haskellBuildInputs = isHaskellPartition.right;
systemBuildInputs = isHaskellPartition.wrong;
+ isHaskellPartition = stdenv.lib.partition
+ isHaskellPkg
+ (propagatedBuildInputs ++ otherBuildInputs ++ depsBuildBuild ++ nativeBuildInputs);
};
isHaskellLibrary = isLibrary;
@@ -483,10 +537,64 @@ stdenv.mkDerivation ({
# TODO: fetch the self from the fixpoint instead
haddockDir = self: if doHaddock then "${docdir self.doc}/html" else null;
- env = shellFor {
- packages = p: [ drv ];
- inherit shellHook;
- };
+ # Creates a derivation containing all of the necessary dependencies for building the
+ # parent derivation. The attribute set that it takes as input can be viewed as:
+ #
+ # { withHoogle }
+ #
+ # The derivation that it builds contains no outpaths because it is meant for use
+ # as an environment
+ #
+ # # Example use
+ # # Creates a shell with all of the dependencies required to build the "hello" package,
+ # # and with python:
+ #
+ # > nix-shell -E 'with (import <nixpkgs> {}); \
+ # > haskell.packages.ghc865.hello.envFunc { buildInputs = [ python ]; }'
+ envFunc = { withHoogle ? false }:
+ let
+ name = "ghc-shell-for-${drv.name}";
+
+ withPackages = if withHoogle then ghcWithHoogle else ghcWithPackages;
+
+ # We use the `ghcWithPackages` function from `buildHaskellPackages` if we
+ # want a shell for the sake of cross compiling a package. In the native case
+ # we don't use this at all, and instead put the setupDepends in the main
+ # `ghcWithPackages`. This way we don't have two wrapper scripts called `ghc`
+ # shadowing each other on the PATH.
+ ghcEnvForBuild =
+ assert isCross;
+ buildHaskellPackages.ghcWithPackages (_: setupHaskellDepends);
+
+ ghcEnv = withPackages (_:
+ otherBuildInputsHaskell ++
+ propagatedBuildInputs ++
+ stdenv.lib.optionals (!isCross) setupHaskellDepends);
+
+ ghcCommandCaps = stdenv.lib.toUpper ghcCommand';
+ in stdenv.mkDerivation ({
+ inherit name shellHook;
+
+ depsBuildBuild = stdenv.lib.optional isCross ghcEnvForBuild;
+ nativeBuildInputs =
+ [ ghcEnv ] ++ optional (allPkgconfigDepends != []) pkgconfig ++
+ collectedToolDepends;
+ buildInputs =
+ otherBuildInputsSystem;
+ phases = ["installPhase"];
+ installPhase = "echo $nativeBuildInputs $buildInputs > $out";
+ LANG = "en_US.UTF-8";
+ LOCALE_ARCHIVE = stdenv.lib.optionalString (stdenv.hostPlatform.libc == "glibc") "${buildPackages.glibcLocales}/lib/locale/locale-archive";
+ "NIX_${ghcCommandCaps}" = "${ghcEnv}/bin/${ghcCommand}";
+ "NIX_${ghcCommandCaps}PKG" = "${ghcEnv}/bin/${ghcCommand}-pkg";
+ # TODO: is this still valid?
+ "NIX_${ghcCommandCaps}_DOCDIR" = "${ghcEnv}/share/doc/ghc/html";
+ "NIX_${ghcCommandCaps}_LIBDIR" = if ghc.isHaLVM or false
+ then "${ghcEnv}/lib/HaLVM-${ghc.version}"
+ else "${ghcEnv}/lib/${ghcCommand}-${ghc.version}";
+ });
+
+ env = envFunc { };
};
diff --git a/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix b/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
index ccd570427ca..dd8d563e42e 100644
--- a/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
@@ -1611,8 +1611,8 @@ self: {
}:
mkDerivation {
pname = "BiobaseEnsembl";
- version = "0.2.0.0";
- sha256 = "0nfgadp5708rb3yzsq0cgiqkpv0rnh3fqil118zlw8akq61rd1m3";
+ version = "0.2.0.1";
+ sha256 = "0mypz8q4cj8fjma3pjgp6klhsnlbc6xzvbajhh85c3q3q41cn95w";
libraryHaskellDepends = [
aeson attoparsec base binary bytestring cereal containers deepseq
directory either-unwrap text vector word8
@@ -2913,10 +2913,8 @@ self: {
}:
mkDerivation {
pname = "Chart";
- version = "1.9.1";
- sha256 = "1pn735k9ifxlb9mdh8xy7wi22cxni8xyr28n8zx9w0j6vprcg89l";
- revision = "1";
- editedCabalFile = "1v7qip375kzn9k9k0c79jj55xigi05s5dl318smqazjdlyj55q55";
+ version = "1.9.3";
+ sha256 = "0p69kq5kh40gd4y8wqabypmw67pqh42vaaw64zv9sf8j075g85ry";
libraryHaskellDepends = [
array base colour data-default-class lens mtl old-locale
operational time vector
@@ -2931,10 +2929,8 @@ self: {
}:
mkDerivation {
pname = "Chart-cairo";
- version = "1.9.1";
- sha256 = "0hknj4rsjf2m8p5pyq5zff8ai7v80yvmxb5c6n0bkgxs4317nbl9";
- revision = "1";
- editedCabalFile = "1c1m0vk4rnx3myv43kag17nf1j1w9kjc226jpf1f86gkcd35lq45";
+ version = "1.9.3";
+ sha256 = "0clm68alzsakkn5m4h49dgx33crajacsykb4hry2fh9zxp9j743f";
libraryHaskellDepends = [
array base cairo Chart colour data-default-class lens mtl
old-locale operational time
@@ -2951,10 +2947,8 @@ self: {
}:
mkDerivation {
pname = "Chart-diagrams";
- version = "1.9.2";
- sha256 = "0am51ck84apijwwvpkwhnpmsr4047svzdi7g5nbf5yprsb8vzd4n";
- revision = "1";
- editedCabalFile = "0h57ds1j43h4knnwb75dgsgw90mz7lf8k590dkfdrgsszpb9as50";
+ version = "1.9.3";
+ sha256 = "075yzq50jpakgq6lb3anr660jydm68ry0di33icdacbdymq8avwn";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base blaze-markup bytestring Chart colour containers
@@ -2972,8 +2966,8 @@ self: {
}:
mkDerivation {
pname = "Chart-gtk";
- version = "1.9.1";
- sha256 = "1lhl7ayyydg5z5zwpr3k4313565p4za3z2f3ngd4hpicp7zbmhx0";
+ version = "1.9.3";
+ sha256 = "0wdv193wsadzrkpxl6lzw2r11bvr4fnfhmzqcmpqns3psqpgk43f";
libraryHaskellDepends = [
array base cairo Chart Chart-cairo colour data-default-class gtk
mtl old-locale time
@@ -2982,6 +2976,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Chart-gtk3" = callPackage
+ ({ mkDerivation, array, base, cairo, Chart, Chart-cairo, colour
+ , data-default-class, gtk3, mtl, old-locale, time
+ }:
+ mkDerivation {
+ pname = "Chart-gtk3";
+ version = "1.9.3";
+ sha256 = "0lldchq419fivczas2sbbz45b1xlf2chd7a2af66mbigdbld3xka";
+ libraryHaskellDepends = [
+ array base cairo Chart Chart-cairo colour data-default-class gtk3
+ mtl old-locale time
+ ];
+ description = "Utility functions for using the chart library with GTK";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"Chart-simple" = callPackage
({ mkDerivation, array, base, cairo, Chart, Chart-cairo, Chart-gtk
, colour, data-default-class, gtk, mtl, old-locale, time
@@ -3000,6 +3010,30 @@ self: {
broken = true;
}) {};
+ "Chart-tests" = callPackage
+ ({ mkDerivation, array, base, bytestring, cairo, Chart, Chart-cairo
+ , Chart-diagrams, Chart-gtk, colour, containers, data-default-class
+ , diagrams-cairo, diagrams-core, diagrams-lib, diagrams-postscript
+ , diagrams-svg, doctest, gtk, lens, mtl, old-locale, old-time
+ , random, svg-builder, time
+ }:
+ mkDerivation {
+ pname = "Chart-tests";
+ version = "1.9.3";
+ sha256 = "1xhjd400xf235m345mhn98hjrvvv5qdr90paq4kixh2g0aswnhrd";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ array base bytestring cairo Chart Chart-cairo Chart-diagrams
+ Chart-gtk colour containers data-default-class diagrams-cairo
+ diagrams-core diagrams-lib diagrams-postscript diagrams-svg gtk
+ lens mtl old-locale old-time random svg-builder time
+ ];
+ testHaskellDepends = [ base doctest ];
+ description = "Tests of the Charts library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ChasingBottoms" = callPackage
({ mkDerivation, array, base, containers, mtl, QuickCheck, random
, syb
@@ -3226,6 +3260,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) libdevil;};
+ "Color" = callPackage
+ ({ mkDerivation, base, Cabal, cabal-doctest, colour, criterion
+ , data-default-class, deepseq, doctest, hspec, HUnit, QuickCheck
+ , random, template-haskell, vector
+ }:
+ mkDerivation {
+ pname = "Color";
+ version = "0.1.1";
+ sha256 = "0jwqyvch7mpg83q57c50qc0visgc0nav6ihb8gr81wdp8i3f680k";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [ base data-default-class deepseq vector ];
+ testHaskellDepends = [
+ base colour doctest hspec HUnit QuickCheck random template-haskell
+ vector
+ ];
+ benchmarkHaskellDepends = [ base colour criterion deepseq random ];
+ description = "Color spaces and conversions between them";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"Combinatorrent" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, cereal
, containers, deepseq, directory, filepath, hopenssl, hslogger
@@ -3776,8 +3830,8 @@ self: {
}:
mkDerivation {
pname = "DAV";
- version = "1.3.3";
- sha256 = "149rdrbjx59a2rbx2r6fzhmyl3f35a2gbh4sarbpffv0pmirrx14";
+ version = "1.3.4";
+ sha256 = "1isvi4fahq70lzxfz23as7qzkc01g7kba568l6flrgd0j1984fsy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -5886,8 +5940,8 @@ self: {
}:
mkDerivation {
pname = "Fin";
- version = "0.2.7.0";
- sha256 = "0w29dc2mdy0q3y5v6mkc0m51vp1bmbx8bswvr1khby63vb5zwcf3";
+ version = "0.2.8.0";
+ sha256 = "1smzghfifiqakbv9308bz5b4mkzmrfvgs6zpry5nw2lbqh7crcc7";
libraryHaskellDepends = [
alg base foldable1 natural-induction peano universe-base
];
@@ -6321,8 +6375,8 @@ self: {
}:
mkDerivation {
pname = "Frames-dsv";
- version = "0.1.1";
- sha256 = "0932k8aqn9c08ijbs29g04gcka441gg424g90cqd4ky9b3yxzm7w";
+ version = "0.1.2";
+ sha256 = "0zdcbysiai7lskm8lmf454022ad0kgwl0v0kzj9596fvbdx0gdi2";
libraryHaskellDepends = [
base bytestring Frames hw-dsv pipes template-haskell text vector
vinyl
@@ -6336,17 +6390,20 @@ self: {
"Frames-map-reduce" = callPackage
({ mkDerivation, base, containers, foldl, Frames, hashable
- , map-reduce-folds, newtype, profunctors, random, text, vinyl
+ , map-reduce-folds, newtype, profunctors, random, text, vector
+ , vinyl
}:
mkDerivation {
pname = "Frames-map-reduce";
- version = "0.2.0.0";
- sha256 = "1gdp4xi90vq6rdcvwk2b18ip6ba4rhkn8cv737w0m8j77vvb5plx";
+ version = "0.3.0.0";
+ sha256 = "0rkxx09m63dqzz597d81r88xgr53ap78gc6kmjvw0ph7i0f43yp8";
libraryHaskellDepends = [
base containers foldl Frames hashable map-reduce-folds newtype
profunctors vinyl
];
- testHaskellDepends = [ base foldl Frames random text vinyl ];
+ testHaskellDepends = [
+ base foldl Frames random text vector vinyl
+ ];
description = "Frames wrapper for map-reduce-folds and some extra folds helpers";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -11027,8 +11084,8 @@ self: {
}:
mkDerivation {
pname = "IPv6Addr";
- version = "1.1.2";
- sha256 = "0zpjji441ys2x6zmndyg7203w3j4j8flhwrl4593a6bz6vqzkwwb";
+ version = "1.1.3";
+ sha256 = "1kbas95ggmjwhc2xj542jkl0jdkq61b6d76182sp1ifcvk7qr6v9";
libraryHaskellDepends = [
aeson attoparsec base iproute network network-info random text
];
@@ -11047,8 +11104,8 @@ self: {
}:
mkDerivation {
pname = "IPv6DB";
- version = "0.3.1";
- sha256 = "06240z3nbjkf0rgwhvajjw28lckgpsfz5nbzzdqyfzgyg2r4wdcn";
+ version = "0.3.2";
+ sha256 = "1nhgbrfwabnxgbjwjyksaazb08awlhf7m8w7dx3xhm32m1dkkm6f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -13471,10 +13528,8 @@ self: {
}:
mkDerivation {
pname = "MonadRandom";
- version = "0.5.1.1";
- sha256 = "0w44jl1n3kqvqaflh82l1wj3xxbhzfs3kf4m8rk7w6fgg8llmnmb";
- revision = "3";
- editedCabalFile = "0fiblwmwk48d1g9j99qrcg1ak904csgfb86y80d1nl2vr782cq6w";
+ version = "0.5.1.2";
+ sha256 = "0j1lwg3pp77cf87bk0c1gipzrdvpjcj7bkgi37lcjc7avmlhwvvp";
libraryHaskellDepends = [
base mtl primitive random transformers transformers-compat
];
@@ -14909,8 +14964,8 @@ self: {
({ mkDerivation, base, hashable, syb }:
mkDerivation {
pname = "OptDir";
- version = "0.0.3";
- sha256 = "1bb5s57d3wyr9rd275jl0sk85yisl1dpbz042yg7pksv5l0xal0q";
+ version = "0.0.4";
+ sha256 = "07l2fagp60ykhsr3dxclkfgg1pxawj2xf0wxrn3dksjdlx0hg5j5";
libraryHaskellDepends = [ base hashable syb ];
description = "The OptDir type for representing optimization directions";
license = stdenv.lib.licenses.bsd3;
@@ -15988,8 +16043,8 @@ self: {
}:
mkDerivation {
pname = "PyF";
- version = "0.8.1.2";
- sha256 = "00rvzfv2xa9ibcsx6y3cpmckl2mlsmck519mp4zqllxwn1nzbb52";
+ version = "0.9.0.0";
+ sha256 = "0jf8nzdq8jpw8pkcvy31fjg44bdlrbjl7ssj9kcqcn314yszanhw";
libraryHaskellDepends = [
base containers haskell-src-exts haskell-src-meta megaparsec mtl
template-haskell text
@@ -17789,6 +17844,19 @@ self: {
broken = true;
}) {};
+ "Set" = callPackage
+ ({ mkDerivation, base, containers, gauge, util }:
+ mkDerivation {
+ pname = "Set";
+ version = "0.0.2.0";
+ sha256 = "1kll1gdc4mg8sh483qj67yagcmgbbwz31xbinid0cpkcl93gccdb";
+ libraryHaskellDepends = [ base containers util ];
+ testHaskellDepends = [ base containers util ];
+ benchmarkHaskellDepends = [ base containers gauge util ];
+ description = "See README for more info";
+ license = stdenv.lib.licenses.mpl20;
+ }) {};
+
"ShellCheck" = callPackage
({ mkDerivation, aeson, array, base, bytestring, Cabal, containers
, deepseq, Diff, directory, filepath, mtl, parsec, process
@@ -19781,8 +19849,7 @@ self: {
];
description = "It provides the functionality like unix \"uniq\" utility";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ maintainers = with stdenv.lib.maintainers; [ kiwi ];
}) {};
"Unixutils" = callPackage
@@ -20405,12 +20472,12 @@ self: {
platforms = stdenv.lib.platforms.none;
}) {};
- "Win32_2_8_4_0" = callPackage
+ "Win32_2_8_5_0" = callPackage
({ mkDerivation }:
mkDerivation {
pname = "Win32";
- version = "2.8.4.0";
- sha256 = "0l6hiwxgv2g72k47g2cc7s704flmwkxbg6hj79jq2idvn6zg2gxg";
+ version = "2.8.5.0";
+ sha256 = "1hvbb9zwp84y5s5hxz7a3g3xqlgcbwrlhhxdprj5qqhkizzb3vai";
description = "A binding to Windows Win32 API";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.none;
@@ -21849,6 +21916,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-kullback-liebler" = callPackage
+ ({ mkDerivation, accelerate, accelerate-llvm-native
+ , accelerate-llvm-ptx, base, composition-prelude, cpphs, criterion
+ , mwc-random-accelerate, tasty, tasty-hedgehog, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "accelerate-kullback-liebler";
+ version = "0.1.1.0";
+ sha256 = "1dkhbv6nmay7mh52y4d5mw5pvxznz802hhx33bcjxgn2ws8nwzhy";
+ libraryHaskellDepends = [ accelerate base mwc-random-accelerate ];
+ testHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base
+ composition-prelude tasty tasty-hedgehog tasty-hunit
+ ];
+ benchmarkHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base
+ criterion
+ ];
+ benchmarkToolDepends = [ cpphs ];
+ doHaddock = false;
+ description = "Kullback-Liebler divergence";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"accelerate-llvm" = callPackage
({ mkDerivation, abstract-deque, accelerate, base, bytestring
, chaselev-deque, containers, data-default-class, deepseq
@@ -21868,6 +21961,8 @@ self: {
];
description = "Accelerate backend component generating LLVM IR";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"accelerate-llvm-native" = callPackage
@@ -23664,6 +23759,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "aeson-match-qq" = callPackage
+ ({ mkDerivation, aeson, aeson-qq, attoparsec, base, bytestring
+ , either, haskell-src-meta, hspec, scientific, template-haskell
+ , text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "aeson-match-qq";
+ version = "1.0.0";
+ sha256 = "0py6h62a9h7wmrgcc79inbpx5b3jv660jlf5hqc1hdnvmf96prkr";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring either haskell-src-meta scientific
+ template-haskell text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson aeson-qq base hspec unordered-containers
+ ];
+ description = "Matching Aeson values with a quasiquoter";
+ license = stdenv.lib.licenses.bsd2;
+ }) {};
+
"aeson-native" = callPackage
({ mkDerivation, attoparsec, base, blaze-builder
, blaze-textual-native, bytestring, containers, deepseq, hashable
@@ -24866,19 +24981,6 @@ self: {
({ mkDerivation, base, dual, util }:
mkDerivation {
pname = "alg";
- version = "0.2.13.0";
- sha256 = "1xv9nr21jvgk94d0cdc3xlp0fs7v3h4gcrx45aaqm6d2203lshz0";
- libraryHaskellDepends = [ base dual util ];
- description = "Algebraic structures";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "alg_0_2_13_1" = callPackage
- ({ mkDerivation, base, dual, util }:
- mkDerivation {
- pname = "alg";
version = "0.2.13.1";
sha256 = "0764j2njb86qdskck3nvbrh61v99hqdhf8aj9irblm6smdlrv4l3";
libraryHaskellDepends = [ base dual util ];
@@ -25002,11 +25104,13 @@ self: {
({ mkDerivation, base, syb, template-haskell }:
mkDerivation {
pname = "algebraic-classes";
- version = "0.9.2";
- sha256 = "131rd3liqkdp146fyc8b0mcbkn08mib9iljyjj3mp40fs64sy1c9";
+ version = "0.9.4";
+ sha256 = "06q0vzixc5dz98ia5ii862ryd9nlfinnmly2l5br8rixsbnks82s";
libraryHaskellDepends = [ base syb template-haskell ];
description = "Conversions between algebraic classes and F-algebras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"algebraic-graphs" = callPackage
@@ -28157,7 +28261,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "amqp_0_19_0" = callPackage
+ "amqp_0_19_1" = callPackage
({ mkDerivation, base, binary, bytestring, clock, connection
, containers, data-binary-ieee754, hspec, hspec-expectations
, monad-control, network, network-uri, split, stm, text, vector
@@ -28165,8 +28269,8 @@ self: {
}:
mkDerivation {
pname = "amqp";
- version = "0.19.0";
- sha256 = "1v2jwf9y6mw9f89a9ca66p42da8g5n1ain89gjr7sv6v6r2jxinj";
+ version = "0.19.1";
+ sha256 = "1802gngl74niszw355caf6x41ayfvyg2hpbckgshp7rlhfqdjabj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -28225,6 +28329,8 @@ self: {
];
description = "Generic Haskell AMQP tools";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"amqp-worker" = callPackage
@@ -28259,8 +28365,8 @@ self: {
({ mkDerivation, base, deepseq, parsec }:
mkDerivation {
pname = "amrun";
- version = "0.0.0.6";
- sha256 = "01hnjzlww282hjlc6vbn51qps577hx4ll3pz4g5kn0r4h2bylad9";
+ version = "0.0.0.7";
+ sha256 = "13mc0vq51nhg3n7ff1k2045a9zkg3l5a3hr3wnz7ybfw8j457g78";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base deepseq parsec ];
@@ -29597,8 +29703,8 @@ self: {
}:
mkDerivation {
pname = "api-builder";
- version = "0.16.0.0";
- sha256 = "1va2h0sbmx15a29ffmnqqidwzj1kk6dbcgdlcx2lpfk3cwwnpj8m";
+ version = "0.17.0.0";
+ sha256 = "0mks971svg5m7h7bxgai33b8ksbgbvri3lw9cp7q8mycvmgslssh";
libraryHaskellDepends = [
aeson base bifunctors bytestring HTTP http-client http-client-tls
http-types text tls transformers
@@ -29702,13 +29808,18 @@ self: {
}:
mkDerivation {
pname = "api-rpc-pegnet";
- version = "0.1.0.0";
- sha256 = "14jb78bkdd8ywwnks3pvi8ynagsri938znyh9ylvyr5mph9ngmnc";
+ version = "0.1.1.2";
+ sha256 = "16f7849awll42w58zznf11dri3p2snd4p7cb87ygsrdx1f96gxp6";
libraryHaskellDepends = [
aeson aeson-casing base bytestring http-client http-client-tls
http-conduit json-alt network remote-json remote-json-client
remote-monad text time transformers
];
+ testHaskellDepends = [
+ aeson aeson-casing base bytestring http-client http-client-tls
+ http-conduit json-alt network remote-json remote-json-client
+ remote-monad text time transformers
+ ];
description = "simple json-rpc client for PegNet";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -30096,8 +30207,8 @@ self: {
}:
mkDerivation {
pname = "apns-http2";
- version = "0.1.0.0";
- sha256 = "1mbsvv202h6vh1gkv4rhx369wagil111qbphb502v02v2g5yibdb";
+ version = "0.1.1.0";
+ sha256 = "1hwybh3c6drqji34x7zwr68l642018ajrdzs4711dxws0ib63jrw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -30387,6 +30498,38 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "apply-refact_0_7_0_0" = callPackage
+ ({ mkDerivation, base, containers, directory, filemanip, filepath
+ , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact
+ , silently, syb, tasty, tasty-expected-failure, tasty-golden
+ , temporary, transformers, unix-compat
+ }:
+ mkDerivation {
+ pname = "apply-refact";
+ version = "0.7.0.0";
+ sha256 = "1facic5lbc9xih6w1kfr3inwvada6y98n9xgc6iv6r057zr8jfp0";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers directory filemanip ghc ghc-exactprint mtl process
+ refact syb temporary transformers unix-compat
+ ];
+ executableHaskellDepends = [
+ base containers directory filemanip filepath ghc ghc-exactprint mtl
+ optparse-applicative process refact syb temporary transformers
+ unix-compat
+ ];
+ testHaskellDepends = [
+ base containers directory filemanip filepath ghc ghc-exactprint mtl
+ optparse-applicative process refact silently syb tasty
+ tasty-expected-failure tasty-golden temporary transformers
+ unix-compat
+ ];
+ description = "Perform refactorings specified by the refact library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"apportionment" = callPackage
({ mkDerivation, base, containers, utility-ht }:
mkDerivation {
@@ -30789,15 +30932,17 @@ self: {
}) {debian-mirror = null; help = null;};
"archive-libarchive" = callPackage
- ({ mkDerivation, base, bytestring, composition-prelude, libarchive
+ ({ mkDerivation, base, bytestring, composition-prelude, cpphs
+ , libarchive
}:
mkDerivation {
pname = "archive-libarchive";
- version = "0.2.0.0";
- sha256 = "0gy52dw00b110f5nc6gbnfgs5nssv7r8az1vy8xr1xj1dnpjwb74";
+ version = "0.2.2.1";
+ sha256 = "1rwvz196m837h5vxm7aqlyzc07h2y2q0czgpn8kwx2gjngpnmmdn";
libraryHaskellDepends = [
base bytestring composition-prelude libarchive
];
+ libraryToolDepends = [ cpphs ];
description = "Common interface using libarchive";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -30810,8 +30955,8 @@ self: {
}:
mkDerivation {
pname = "archive-sig";
- version = "0.2.1.2";
- sha256 = "03fwzl7pkb025adzv1jzh96k0h91b1w7arxza7q53i492n96qg8i";
+ version = "0.2.3.0";
+ sha256 = "0zpi4kqd4g298xlcmsk30kpahmlfgmxany3mny1zpzd8968qn5za";
libraryHaskellDepends = [
base bytestring composition-prelude dir-traverse
];
@@ -30820,14 +30965,16 @@ self: {
}) {};
"archive-tar" = callPackage
- ({ mkDerivation, base, bytestring, composition-prelude, tar }:
+ ({ mkDerivation, base, bytestring, composition-prelude, cpphs, tar
+ }:
mkDerivation {
pname = "archive-tar";
- version = "0.2.0.0";
- sha256 = "0svbxr9734ysskilv5kvhfd7s436spn149pb5bcsq3hjz1zq5xq7";
+ version = "0.2.2.1";
+ sha256 = "0pwdjx2f78cs3z81hr9ax0iaq6fk6bdvywdp2q8vpjagrfbjcn8k";
libraryHaskellDepends = [
base bytestring composition-prelude tar
];
+ libraryToolDepends = [ cpphs ];
description = "Common interface using the tar package";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -31196,6 +31343,42 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "arithmetic-circuits" = callPackage
+ ({ mkDerivation, aeson, base, bulletproofs, containers, criterion
+ , elliptic-curve, filepath, galois-fft, galois-field
+ , markdown-unlit, MonadRandom, pairing, poly, process-extras
+ , protolude, QuickCheck, quickcheck-instances, semirings, tasty
+ , tasty-discover, tasty-hunit, tasty-quickcheck, text, vector
+ , wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "arithmetic-circuits";
+ version = "0.2.0";
+ sha256 = "09fqcg8302dklzlr3fqlac09zzfws3li45nri4cd886cx8b1vzzq";
+ libraryHaskellDepends = [
+ aeson base bulletproofs containers elliptic-curve filepath
+ galois-fft galois-field MonadRandom poly process-extras protolude
+ semirings text vector wl-pprint-text
+ ];
+ testHaskellDepends = [
+ aeson base bulletproofs containers elliptic-curve filepath
+ galois-fft galois-field markdown-unlit MonadRandom pairing poly
+ process-extras protolude QuickCheck quickcheck-instances semirings
+ tasty tasty-discover tasty-hunit tasty-quickcheck text vector
+ wl-pprint-text
+ ];
+ testToolDepends = [ markdown-unlit tasty-discover ];
+ benchmarkHaskellDepends = [
+ aeson base bulletproofs containers criterion elliptic-curve
+ filepath galois-fft galois-field MonadRandom pairing poly
+ process-extras protolude semirings text vector wl-pprint-text
+ ];
+ description = "Arithmetic circuits for zkSNARKs";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"arithmoi" = callPackage
({ mkDerivation, array, base, containers, deepseq, exact-pi, gauge
, ghc-prim, integer-gmp, integer-logarithms, QuickCheck, random
@@ -31584,8 +31767,8 @@ self: {
}:
mkDerivation {
pname = "arrowp-qq";
- version = "0.2.1.1";
- sha256 = "0sxcsjag31m773l9c02gq879rh0hllsjns2cl3pkazbj2jgf53i5";
+ version = "0.3.0";
+ sha256 = "0szbl8yjz24r12q6wmi8j0f7aj2f9gbzaajna2cgaq9d33pyazvq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -31971,6 +32154,50 @@ self: {
broken = true;
}) {};
+ "asif_6_0_4" = callPackage
+ ({ mkDerivation, attoparsec, base, binary, bytestring, conduit
+ , conduit-combinators, conduit-extra, containers, cpu, directory
+ , doctest, doctest-discover, either, exceptions, foldl
+ , generic-lens, hedgehog, hspec, hspec-discover, hw-bits
+ , hw-hspec-hedgehog, hw-ip, lens, network, old-locale
+ , optparse-applicative, profunctors, resourcet, temporary-resourcet
+ , text, thyme, transformers, vector
+ }:
+ mkDerivation {
+ pname = "asif";
+ version = "6.0.4";
+ sha256 = "1613r90sfw7q0gsiyjd8j9s1gcjmwj4lsngx3qqpykcivy2ggs03";
+ revision = "1";
+ editedCabalFile = "02gz317ivpmb5yzifm3fv62cik4fh77j7ilb027z6dpx4r041p9w";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base binary bytestring conduit conduit-combinators
+ conduit-extra containers cpu either exceptions foldl generic-lens
+ hw-bits hw-ip lens network old-locale profunctors resourcet
+ temporary-resourcet text thyme transformers vector
+ ];
+ executableHaskellDepends = [
+ attoparsec base binary bytestring conduit conduit-combinators
+ conduit-extra containers cpu directory either exceptions foldl
+ generic-lens hw-bits hw-ip lens network old-locale
+ optparse-applicative profunctors resourcet temporary-resourcet text
+ thyme transformers vector
+ ];
+ testHaskellDepends = [
+ attoparsec base binary bytestring conduit conduit-combinators
+ conduit-extra containers cpu doctest doctest-discover either
+ exceptions foldl generic-lens hedgehog hspec hw-bits
+ hw-hspec-hedgehog hw-ip lens network old-locale profunctors
+ resourcet temporary-resourcet text thyme transformers vector
+ ];
+ testToolDepends = [ doctest-discover hspec-discover ];
+ description = "Library for creating and querying segmented feeds";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"asil" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, data-binary-ieee754, directory, filepath, haskell-src-exts, mtl
@@ -32532,10 +32759,8 @@ self: {
}:
mkDerivation {
pname = "async-pool";
- version = "0.9.0.2";
- sha256 = "1wg78y80zd7qyizyis073dmmvq4s67ni1pkaq31jl5klr49rs5g0";
- revision = "2";
- editedCabalFile = "1nqqjsgc44fpnsf3v37n0c866s733inssljw7wmd0fdqlxhmijis";
+ version = "0.9.1";
+ sha256 = "11nig4p5m916ffnbhkawglm7r2kl5b8090xv9cyr849l7q7mrcm8";
libraryHaskellDepends = [
async base containers fgl monad-control stm transformers
transformers-base
@@ -33016,27 +33241,27 @@ self: {
}) {};
"ats-pkg" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring, bzlib
- , Cabal, cli-setup, composition-prelude, containers, cpphs
- , dependency, dhall, directory, file-embed, filemanip, filepath
- , http-client, http-client-tls, language-ats, lzma, microlens, mtl
+ ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring, Cabal
+ , cli-setup, composition-prelude, containers, cpphs, dependency
+ , dhall, directory, file-embed, filemanip, filepath, http-client
+ , http-client-tls, language-ats, lzma, microlens, mtl
, optparse-applicative, parallel-io, process, shake, shake-ats
, shake-c, shake-ext, tar, temporary, text, unix, unix-compat
, zip-archive, zlib
}:
mkDerivation {
pname = "ats-pkg";
- version = "3.4.0.5";
- sha256 = "1hqaz5sybj9cyd17k1883nq936jf6815sprxdgbdrbw7rsfx39al";
+ version = "3.4.0.8";
+ sha256 = "1mm3zvy85lmfw5zkix1ymjgfn9wywnvlf5r0ln5cqr63h3x620b7";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- ansi-wl-pprint base binary bytestring bzlib Cabal
- composition-prelude containers dependency dhall directory
- file-embed filemanip filepath http-client http-client-tls lzma
- microlens mtl parallel-io process shake shake-ats shake-c shake-ext
- tar text unix unix-compat zip-archive zlib
+ ansi-wl-pprint base binary bytestring Cabal composition-prelude
+ containers dependency dhall directory file-embed filemanip filepath
+ http-client http-client-tls lzma microlens mtl parallel-io process
+ shake shake-ats shake-c shake-ext tar text unix unix-compat
+ zip-archive zlib
];
libraryToolDepends = [ cpphs ];
executableHaskellDepends = [
@@ -33608,6 +33833,26 @@ self: {
broken = true;
}) {};
+ "aur_6_3_0" = callPackage
+ ({ mkDerivation, aeson, base, http-client, http-client-tls, servant
+ , servant-client, tasty, tasty-hunit, text
+ }:
+ mkDerivation {
+ pname = "aur";
+ version = "6.3.0";
+ sha256 = "0q8sirx52hm6yh09383r1li5l4jra8vscnzs7nz44q8nd89rq22i";
+ libraryHaskellDepends = [
+ aeson base http-client servant servant-client text
+ ];
+ testHaskellDepends = [
+ base http-client http-client-tls tasty tasty-hunit
+ ];
+ description = "Access metadata from the Arch Linux User Repository";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"aur-api" = callPackage
({ mkDerivation, aeson, base, bytestring, exceptions, hspec
, http-client, http-client-tls, mtl, text
@@ -34144,15 +34389,16 @@ self: {
"avro" = callPackage
({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors
, binary, bytestring, containers, data-binary-ieee754, deepseq
- , directory, extra, fail, gauge, hashable, hspec, hspec-discover
- , lens, lens-aeson, mtl, pure-zlib, QuickCheck, random
- , raw-strings-qq, scientific, semigroups, tagged, template-haskell
- , text, tf-random, transformers, unordered-containers, vector, zlib
+ , directory, doctest, doctest-discover, extra, fail, gauge
+ , hashable, hspec, hspec-discover, lens, lens-aeson, mtl
+ , QuickCheck, random, raw-strings-qq, scientific, semigroups
+ , tagged, template-haskell, text, tf-random, transformers
+ , unordered-containers, vector, zlib
}:
mkDerivation {
pname = "avro";
- version = "0.4.5.4";
- sha256 = "0syf968w8vvb5x18znnzc36w5i4ab1fsdpwsph31sxz3rvsv9sr6";
+ version = "0.4.6.0";
+ sha256 = "127w8pny2ah05wa44khqs53vdyh54jlxvihxhpqk94wx8ggg00vx";
libraryHaskellDepends = [
aeson array base base16-bytestring bifunctors binary bytestring
containers data-binary-ieee754 deepseq fail hashable mtl scientific
@@ -34161,11 +34407,12 @@ self: {
];
testHaskellDepends = [
aeson array base base16-bytestring bifunctors binary bytestring
- containers directory extra fail hashable hspec lens lens-aeson mtl
- pure-zlib QuickCheck raw-strings-qq scientific semigroups tagged
- text tf-random transformers unordered-containers vector
+ containers directory doctest doctest-discover extra fail hashable
+ hspec lens lens-aeson mtl QuickCheck raw-strings-qq scientific
+ semigroups tagged template-haskell text tf-random transformers
+ unordered-containers vector zlib
];
- testToolDepends = [ hspec-discover ];
+ testToolDepends = [ doctest-discover hspec-discover ];
benchmarkHaskellDepends = [
aeson base bytestring containers gauge hashable mtl random
raw-strings-qq template-haskell text transformers
@@ -34183,8 +34430,8 @@ self: {
}:
mkDerivation {
pname = "avro-piper";
- version = "1.0.1";
- sha256 = "0py25d3y7jx9amcydfnkwipq3rhqpimh18qjvfj1jls8yi9jkvp0";
+ version = "1.0.3";
+ sha256 = "1vi0mgpqpr74ankl8418npklyfxacxg001vppps22p2da97s3pk1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -34205,6 +34452,8 @@ self: {
];
description = "Tool for decoding avro";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"avwx" = callPackage
@@ -34713,8 +34962,8 @@ self: {
}:
mkDerivation {
pname = "aws-lambda-haskell-runtime";
- version = "2.0.2";
- sha256 = "11pkvq3d5w56bsqdha9cfsbqw0rhfda9bh7zipik1b0lc3mk8p0a";
+ version = "2.0.3";
+ sha256 = "1ycqwmpgqzdb8kz3w6yzf44id32pc3vin1w3j0klzzg2k51l4nnr";
libraryHaskellDepends = [
aeson base bytestring http-client http-types path path-io
safe-exceptions-checked template-haskell text
@@ -34727,18 +34976,18 @@ self: {
"aws-lambda-runtime" = callPackage
({ mkDerivation, aeson, async, base, base-compat, bytestring
, containers, deepseq, filepath, http-client, http-media
- , http-types, lens, lens-aeson, parsec, process, text, time
+ , http-types, lens, lens-aeson, parsec, process, text, time-compat
, zip-archive
}:
mkDerivation {
pname = "aws-lambda-runtime";
- version = "0";
- sha256 = "1wnpck1cy7bc3g7g3z210n9sgiplsxqbli0xgpxi2wxmhcf5dpjq";
+ version = "0.0.0.1";
+ sha256 = "1yzqqlgi7yb9b5imh6zfmwbc097bj7r0zi8mkk82c81cv5rcjy08";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson async base base-compat bytestring containers deepseq filepath
- http-client http-media http-types parsec process text time
+ http-client http-media http-types parsec process text time-compat
zip-archive
];
executableHaskellDepends = [ aeson base lens lens-aeson text ];
@@ -35746,6 +35995,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "barbies_2_0_0_0" = callPackage
+ ({ mkDerivation, base, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, transformers
+ }:
+ mkDerivation {
+ pname = "barbies";
+ version = "2.0.0.0";
+ sha256 = "0rbwdx9s940wfrlkay772i0q11rbywnhzigh5wy8sppx19pgfq9z";
+ libraryHaskellDepends = [ base transformers ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-hunit tasty-quickcheck
+ ];
+ description = "Classes for working with types that can change clothes";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"barbies-th" = callPackage
({ mkDerivation, barbies, base, template-haskell }:
mkDerivation {
@@ -36246,6 +36512,26 @@ self: {
broken = true;
}) {};
+ "base64" = callPackage
+ ({ mkDerivation, base, base64-bytestring, bytestring, criterion
+ , deepseq, memory, random-bytestring, tasty, tasty-hunit, text
+ }:
+ mkDerivation {
+ pname = "base64";
+ version = "0.3.1.1";
+ sha256 = "0g812lfql9agbdmrqvwc42sb91sibdd6w50mw3kvfz0fflskkiip";
+ libraryHaskellDepends = [ base bytestring deepseq text ];
+ testHaskellDepends = [
+ base base64-bytestring random-bytestring tasty tasty-hunit text
+ ];
+ benchmarkHaskellDepends = [
+ base base64-bytestring bytestring criterion deepseq memory
+ random-bytestring text
+ ];
+ description = "RFC 4648-compliant padded and unpadded base64 and base64url encodings";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"base64-bytestring" = callPackage
({ mkDerivation, base, bytestring, containers, criterion, deepseq
, HUnit, QuickCheck, split, test-framework, test-framework-hunit
@@ -36253,8 +36539,8 @@ self: {
}:
mkDerivation {
pname = "base64-bytestring";
- version = "1.0.0.2";
- sha256 = "13305brzlac24pifiqd5a2z10c6k6amhpdy9cc0z5ryrkgnm8dhr";
+ version = "1.0.0.3";
+ sha256 = "1iwg03z1w9n3n3q68siwk0dmwkb3sygmravbwbrs7h0lxih9s5gg";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base bytestring containers HUnit QuickCheck split test-framework
@@ -36311,6 +36597,21 @@ self: {
broken = true;
}) {};
+ "base64-lens" = callPackage
+ ({ mkDerivation, base, base64, bytestring, Cabal, cabal-doctest
+ , doctest, lens, text
+ }:
+ mkDerivation {
+ pname = "base64-lens";
+ version = "0.1.0.3";
+ sha256 = "1qc0hqk647liw13l65r8pk86m9g12xwvdf7imk54idxy2xp1rp77";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [ base base64 bytestring lens text ];
+ testHaskellDepends = [ base doctest lens ];
+ description = "Optics for the Base64 library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"base64-string" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -37149,8 +37450,8 @@ self: {
({ mkDerivation, base, dunai, MonadRandom, mtl, transformers }:
mkDerivation {
pname = "bearriver";
- version = "0.10.4.6";
- sha256 = "1m038d6brzp2h2fbwmxvwazm9d59sf5r2nlnw2csmdkck11zzw3j";
+ version = "0.13.1";
+ sha256 = "1mkvn05gdazg8inc61vzswwcm53m6xpv7ly4gs5ms6bfqh406xm5";
libraryHaskellDepends = [
base dunai MonadRandom mtl transformers
];
@@ -37336,8 +37637,8 @@ self: {
}:
mkDerivation {
pname = "bench-show";
- version = "0.3.0";
- sha256 = "0c690w96iyj6idikcwl75ci5sqvfh4fdd8mvb4z24x3xb24kirh5";
+ version = "0.3.1";
+ sha256 = "0z1fdcdl9chwia9kd5pa9572mc5pmy5bld72axkzg20r7v53sr7k";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38070,7 +38371,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary_0_8_7_0" = callPackage
+ "binary_0_8_8_0" = callPackage
({ mkDerivation, array, attoparsec, base, base-orphans, bytestring
, Cabal, cereal, containers, criterion, deepseq, directory
, filepath, generic-deriving, HUnit, mtl, QuickCheck, random
@@ -38079,8 +38380,8 @@ self: {
}:
mkDerivation {
pname = "binary";
- version = "0.8.7.0";
- sha256 = "1r29yg94imhrbzjsv8ghf3217rhlas7945cp9i3dxzskzviyz78x";
+ version = "0.8.8.0";
+ sha256 = "01dwxak6j4499599r22c422js68gn6irxfa3hplzhn7rrx82r6h5";
libraryHaskellDepends = [ array base bytestring containers ];
testHaskellDepends = [
array base base-orphans bytestring Cabal containers directory
@@ -38737,15 +39038,15 @@ self: {
inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrandr;
inherit (pkgs.xorg) libXxf86vm;};
- "bindings-GLFW_3_3_0_0" = callPackage
+ "bindings-GLFW_3_3_1_0" = callPackage
({ mkDerivation, base, bindings-DSL, HUnit, libGL, libX11
, libXcursor, libXext, libXfixes, libXi, libXinerama, libXrandr
, libXxf86vm, test-framework, test-framework-hunit
}:
mkDerivation {
pname = "bindings-GLFW";
- version = "3.3.0.0";
- sha256 = "0ns5dhww9s4sbss57jlys9wmjik2i0xa1b4g6i0k15r7mhrnanx7";
+ version = "3.3.1.0";
+ sha256 = "14np6l61q9nglyailixsajngd6d799xa1xd6nzw0kjiqiqznn43a";
libraryHaskellDepends = [ base bindings-DSL ];
librarySystemDepends = [
libGL libX11 libXcursor libXext libXfixes libXi libXinerama
@@ -39684,18 +39985,21 @@ self: {
}) {};
"biohazard" = callPackage
- ({ mkDerivation, attoparsec, base, base-prelude, bytestring
- , containers, directory, exceptions, hashable, primitive, stm
- , streaming, text, transformers, unix, unordered-containers, vector
- , vector-algorithms, zlib
+ ({ mkDerivation, attoparsec, base, base-prelude, bytestring, Cabal
+ , containers, directory, exceptions, hashable, monad-control
+ , optparse-applicative, primitive, stm, streaming, text
+ , transformers, transformers-base, unix, unordered-containers
+ , vector, vector-algorithms, zlib
}:
mkDerivation {
pname = "biohazard";
- version = "2.0";
- sha256 = "0aq884bl3p4sr0lldwhmgqdhvmr6mxmcvnghli472jrrnijgbrxh";
+ version = "2.1";
+ sha256 = "1z837bb61wggqnbkh7hfs22hjxqh6z6z6w2whl1kq6lj0hif05c1";
+ setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
attoparsec base base-prelude bytestring containers directory
- exceptions hashable primitive stm streaming text transformers unix
+ exceptions hashable monad-control optparse-applicative primitive
+ stm streaming text transformers transformers-base unix
unordered-containers vector vector-algorithms zlib
];
description = "bioinformatics support library";
@@ -39716,8 +40020,8 @@ self: {
}:
mkDerivation {
pname = "bioinformatics-toolkit";
- version = "0.9.0";
- sha256 = "035j0f3ay16ndqv7vcmq8rc6ah1ia56w6axglh9v4yk3n0cd2zvj";
+ version = "0.9.1";
+ sha256 = "1blx00zkmw85c4pp36fp6jig8yy1qsc68vn40pglm0j3lgwagv9w";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson aeson-pretty attoparsec base bytestring bytestring-lexing
@@ -40608,6 +40912,29 @@ self: {
broken = true;
}) {};
+ "bitwise-enum" = callPackage
+ ({ mkDerivation, aeson, array, base, deepseq, gauge
+ , mono-traversable, QuickCheck, test-framework
+ , test-framework-quickcheck2, vector, wide-word
+ }:
+ mkDerivation {
+ pname = "bitwise-enum";
+ version = "0.1.0.3";
+ sha256 = "192hv1ln2jb2ms36vrk110j79wsxgqgdwbq47slyq3fcd77l908i";
+ libraryHaskellDepends = [
+ aeson array base deepseq mono-traversable vector
+ ];
+ testHaskellDepends = [
+ aeson base deepseq mono-traversable QuickCheck test-framework
+ test-framework-quickcheck2 vector
+ ];
+ benchmarkHaskellDepends = [
+ aeson base deepseq gauge mono-traversable vector wide-word
+ ];
+ description = "Bitwise operations on bounded enumerations";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bitx-bitcoin" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, directory
, doctest, exceptions, hspec, http-client, http-client-tls
@@ -40875,6 +41202,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "blanks" = callPackage
+ ({ mkDerivation, adjunctions, base, containers, distributive, mtl
+ , tasty, tasty-discover, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "blanks";
+ version = "0.3.0";
+ sha256 = "1k2lyfmr0q30rcmhxgcagzf7far2k2qbm4249x296mdn1xzcijxq";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ adjunctions base containers distributive mtl
+ ];
+ executableHaskellDepends = [
+ adjunctions base containers distributive mtl
+ ];
+ testHaskellDepends = [
+ adjunctions base containers distributive mtl tasty tasty-discover
+ tasty-hunit
+ ];
+ testToolDepends = [ tasty-discover ];
+ description = "Fill-in-the-blanks - A library factoring out substitution from ASTs";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"blas" = callPackage
({ mkDerivation, base, ieee, QuickCheck, storable-complex }:
mkDerivation {
@@ -42049,8 +42401,8 @@ self: {
}:
mkDerivation {
pname = "bookkeeping-jp";
- version = "0.1.1.3";
- sha256 = "06zfq2153p6dnrmrp3vdq27xij38l5cnx46y3qpzifrpsady6lgd";
+ version = "0.1.1.4";
+ sha256 = "109bxawdh7a21mws1vv9hsdhm35f3air90c8wx2adlsj5sv7qdin";
libraryHaskellDepends = [
base bookkeeping mono-traversable text time
];
@@ -42131,8 +42483,8 @@ self: {
}:
mkDerivation {
pname = "boolector";
- version = "0.0.0.9";
- sha256 = "1f4lnshc4b3r9qyc6y476qpkcl3hkripqsd2vfyg9q0xbyg9pxq6";
+ version = "0.0.0.10";
+ sha256 = "0lssarfp05v6mnwn1qkgj8gjzszb43dhbs3025b60cmwsbnhfx2w";
libraryHaskellDepends = [
base containers directory mtl temporary time
];
@@ -42263,6 +42615,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "boopadoop" = callPackage
+ ({ mkDerivation, base, bytestring, containers, primes, semialign
+ , split, vector, WAVE
+ }:
+ mkDerivation {
+ pname = "boopadoop";
+ version = "0.0.0.2";
+ sha256 = "09m5gbyyzvqrzhcam83ki29cvrgwi46pqxczsayq7bsf6kbfc89q";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers primes semialign split vector WAVE
+ ];
+ executableHaskellDepends = [
+ base bytestring containers primes semialign split vector WAVE
+ ];
+ testHaskellDepends = [
+ base bytestring containers primes semialign split vector WAVE
+ ];
+ description = "Mathematically sound sound synthesis";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"boots" = callPackage
({ mkDerivation, base, exceptions, hspec, mtl }:
mkDerivation {
@@ -43278,8 +43655,8 @@ self: {
}:
mkDerivation {
pname = "brok";
- version = "0.1.6.0";
- sha256 = "15gvlkhb349328w9fngs2k87qpp2r6g9ilxv64df8mzx5y9nrx0k";
+ version = "0.1.7.0";
+ sha256 = "1961s6ccr5x81jym34y1437pa7ml4jsxnw4gd1r496h8mh9lcm99";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -43857,6 +44234,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "bugsnag-hs" = callPackage
+ ({ mkDerivation, aeson, auto-update, base, bytestring, hedgehog
+ , http-client, stm, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "bugsnag-hs";
+ version = "0.1.0.0";
+ sha256 = "1p27q90k39rch3sy7m5n65qkqkn5f5jnrrk5sq182v2dfl1x2j36";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson auto-update base bytestring http-client stm text time
+ unordered-containers
+ ];
+ testHaskellDepends = [ aeson base bytestring hedgehog stm ];
+ description = "A Bugsnag client for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bugzilla" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring, connection
, containers, data-default, http-conduit, http-types, iso8601-time
@@ -44456,8 +44851,8 @@ self: {
({ mkDerivation, base, primitive, primitive-unaligned }:
mkDerivation {
pname = "byte-order";
- version = "0.1.1.0";
- sha256 = "09j6gkvg1nv05dga46cyxsgnf5ksqbnnsz9nf36xg0vw6c352w7s";
+ version = "0.1.2.0";
+ sha256 = "1nnq4qmqmkv61xcyxrh14s6hg7rbnjkna6mwlrqh1rr59pikn45w";
libraryHaskellDepends = [ base primitive primitive-unaligned ];
testHaskellDepends = [ base primitive ];
description = "Portable big-endian and little-endian conversions";
@@ -44572,15 +44967,19 @@ self: {
"byteslice" = callPackage
({ mkDerivation, base, bytestring, primitive, primitive-addr
- , run-st, tasty, tasty-hunit, tasty-quickcheck
+ , primitive-unlifted, quickcheck-classes, run-st, tasty
+ , tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "byteslice";
- version = "0.1.4.0";
- sha256 = "0kpamfmbgc31xha3p3rm2mqgngmdivkxl4z8lr0rjbil16r02nqr";
- libraryHaskellDepends = [ base primitive primitive-addr run-st ];
+ version = "0.2.1.0";
+ sha256 = "0dwvxj0rxk7jfb4yjwrr7jwxwv0f5bz8h21wrr4hw7max2wfanll";
+ libraryHaskellDepends = [
+ base primitive primitive-addr primitive-unlifted run-st
+ ];
testHaskellDepends = [
- base bytestring primitive tasty tasty-hunit tasty-quickcheck
+ base bytestring primitive quickcheck-classes tasty tasty-hunit
+ tasty-quickcheck
];
description = "Slicing managed and unmanaged memory";
license = stdenv.lib.licenses.bsd3;
@@ -44595,10 +44994,8 @@ self: {
}:
mkDerivation {
pname = "bytesmith";
- version = "0.3.1.0";
- sha256 = "1wkwxb9ygc6hii90jr7cjbv4s5d0l4wv0197p9jn4lj7h4i79iqd";
- revision = "1";
- editedCabalFile = "13maddwkl9ajczvnrsnsa9f7w20fzq8il09xh9lqhwyrz9yak4ii";
+ version = "0.3.3.0";
+ sha256 = "08q2wpdj3na06n7k1ig27i67csby6yy2vhrgcdpmsi1jx8as9nwh";
libraryHaskellDepends = [
base byteslice bytestring contiguous primitive run-st text-short
wide-word
@@ -45127,6 +45524,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bz2" = callPackage
+ ({ mkDerivation, base, bytestring, c2hs }:
+ mkDerivation {
+ pname = "bz2";
+ version = "0.1.0.1";
+ sha256 = "07ry2y8xlm6m54qqriwmrcw2m9dal5mr728y3gzsfy104f1w80bf";
+ revision = "1";
+ editedCabalFile = "0wbhhcmi7wjyjp82sj0ifi3i5hblzdda66jyzcb66rdwi2547jd2";
+ libraryHaskellDepends = [ base bytestring ];
+ libraryToolDepends = [ c2hs ];
+ description = "Bindings to libbz2";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "bzip-signature" = callPackage
+ ({ mkDerivation, base, bytestring, composition-prelude }:
+ mkDerivation {
+ pname = "bzip-signature";
+ version = "0.1.1.0";
+ sha256 = "154birx50dzgpiz3x34lmd2flmwv41y5b6kvx6imskzqf3nwmcv2";
+ libraryHaskellDepends = [ base bytestring composition-prelude ];
+ description = "Backpack signature for BZip compression";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bzlib" = callPackage
({ mkDerivation, base, bytestring, bzip2 }:
mkDerivation {
@@ -45469,6 +45891,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cabal-build-programs" = callPackage
+ ({ mkDerivation, base, Cabal }:
+ mkDerivation {
+ pname = "cabal-build-programs";
+ version = "0.1.0.1";
+ sha256 = "004xr0f59fg6h6rxlf7sf6m2mi6p32h2z3vs9b56hddmxp3gn4vl";
+ libraryHaskellDepends = [ base Cabal ];
+ description = "Adds executable dependencies to the Cabal build";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cabal-bundle-clib" = callPackage
({ mkDerivation, base, bytestring, Cabal, directory, filepath
, process, temporary, text, time
@@ -45797,37 +46230,35 @@ self: {
}) {};
"cabal-helper" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cabal-install, cabal-plan
+ ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock
, containers, directory, filepath, ghc, ghc-paths, mtl, pretty-show
- , process, semigroupoids, template-haskell, temporary, text
- , transformers, unix, unix-compat, utf8-string
+ , process, semigroupoids, semigroups, SHA, template-haskell
+ , temporary, text, time, transformers, unix, unix-compat
+ , utf8-string
}:
mkDerivation {
pname = "cabal-helper";
- version = "0.8.2.0";
- sha256 = "1j3h28w9sva1kj410irysl4lbwbar0nbddb9w5gv6jn82ca2dl93";
+ version = "1.0.0.0";
+ sha256 = "1lgr2ys50vb8gsn0rwswjbyb4x87ylcfan9qr8qa7a64m6rs5wjl";
+ revision = "1";
+ editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9";
isLibrary = true;
isExecutable = true;
- setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
- base Cabal cabal-plan containers directory filepath mtl process
- semigroupoids transformers unix unix-compat
- ];
- executableHaskellDepends = [
- base bytestring Cabal cabal-plan containers directory filepath mtl
- pretty-show process template-haskell temporary text transformers
- unix unix-compat utf8-string
+ base bytestring Cabal cabal-plan clock containers directory
+ filepath mtl process semigroupoids semigroups SHA template-haskell
+ temporary text time transformers unix unix-compat utf8-string
];
- executableToolDepends = [ cabal-install ];
testHaskellDepends = [
- base bytestring Cabal cabal-plan containers directory filepath ghc
- ghc-paths mtl pretty-show process template-haskell temporary text
- transformers unix unix-compat utf8-string
+ base bytestring Cabal cabal-plan clock containers directory
+ filepath ghc ghc-paths mtl pretty-show process semigroupoids
+ semigroups SHA template-haskell temporary text time transformers
+ unix unix-compat utf8-string
];
- testToolDepends = [ cabal-install ];
+ doHaddock = false;
doCheck = false;
- description = "Simple interface to some of Cabal's configuration state, mainly used by ghc-mod";
- license = stdenv.lib.licenses.gpl3;
+ description = "Give Haskell development tools access to Cabal project environment";
+ license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -46145,8 +46576,30 @@ self: {
}:
mkDerivation {
pname = "cabal-rpm";
- version = "1.0.2";
- sha256 = "03315wka46mqz090cijz1rk69i861nm6yc0jm6xjlgrbhi4ngmri";
+ version = "1.0.3";
+ sha256 = "1j0m5x3bgr5krjqfdmllsplhw4vh1vbmiq89v1x87zi1mgn3yf6m";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bytestring Cabal directory filepath http-client
+ http-client-tls http-conduit optparse-applicative process
+ simple-cabal simple-cmd simple-cmd-args time unix
+ ];
+ description = "RPM packaging tool for Haskell Cabal-based packages";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "cabal-rpm_2_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, directory, filepath
+ , http-client, http-client-tls, http-conduit, optparse-applicative
+ , process, simple-cabal, simple-cmd, simple-cmd-args, time, unix
+ }:
+ mkDerivation {
+ pname = "cabal-rpm";
+ version = "2.0.0";
+ sha256 = "1gr68l5bg2mfl6b8nbfzcinibldk271psxp5wkiw14mclyx7ln8g";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -46315,8 +46768,8 @@ self: {
}:
mkDerivation {
pname = "cabal-toolkit";
- version = "0.0.5";
- sha256 = "1w3c75avp12ig1bmakgjsp10rb8bnnibxi1sbg96y6gx4g3krbcq";
+ version = "0.0.6";
+ sha256 = "0r42hvlzykmas03smsxz8484gnc1r1pan66rcv8ihibj0zw42qb4";
libraryHaskellDepends = [
base binary bytestring Cabal containers ghc template-haskell
];
@@ -46471,30 +46924,8 @@ self: {
}:
mkDerivation {
pname = "cabal2spec";
- version = "2.2.2.1";
- sha256 = "0jv335b6vz1y6jp381hhrb2miniyqzkn18ansc67as04yf3ngmay";
- revision = "1";
- editedCabalFile = "09bkjwnr01mgn1yf861p3dai18kgpm5mvw8nmh5zvdr8sgqi207v";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base Cabal filepath time ];
- executableHaskellDepends = [
- base Cabal filepath optparse-applicative
- ];
- testHaskellDepends = [ base Cabal filepath tasty tasty-golden ];
- description = "Convert Cabal files into rpm spec files";
- license = stdenv.lib.licenses.gpl3;
- maintainers = with stdenv.lib.maintainers; [ peti ];
- }) {};
-
- "cabal2spec_2_4" = callPackage
- ({ mkDerivation, base, Cabal, filepath, optparse-applicative, tasty
- , tasty-golden, time
- }:
- mkDerivation {
- pname = "cabal2spec";
- version = "2.4";
- sha256 = "0i227x2ybm4p40r0k4vdq4sbadc1sv11p1pbzw9cr0abqlv2mi78";
+ version = "2.4.1";
+ sha256 = "14p53cg8x3d6ja5n1qf9f1hzxb7dvlscwwwhk5l8k531jmlhpqkb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base Cabal filepath time ];
@@ -46504,7 +46935,6 @@ self: {
testHaskellDepends = [ base Cabal filepath tasty tasty-golden ];
description = "Convert Cabal files into rpm spec files";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
@@ -46743,8 +47173,8 @@ self: {
}:
mkDerivation {
pname = "cachix";
- version = "0.3.4";
- sha256 = "1zafbwy0pbdnaybf7q9izrwi6w1l0df6l5628i6m9j9d82k75iqx";
+ version = "0.3.5";
+ sha256 = "1f67bchd5cnb777iz13xc6r7r9aw4r6pz6fdi5nnwjpsia3k42mc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -46771,7 +47201,7 @@ self: {
"cachix-api" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
, conduit, cookie, cryptonite, deepseq, exceptions, hspec
- , hspec-discover, http-api-data, http-media, lens, memory
+ , hspec-discover, http-api-data, http-media, jose, lens, memory
, protolude, resourcet, servant, servant-auth, servant-auth-server
, servant-auth-swagger, servant-client, servant-swagger
, servant-swagger-ui-core, string-conv, swagger2, text
@@ -46779,18 +47209,18 @@ self: {
}:
mkDerivation {
pname = "cachix-api";
- version = "0.3.0";
- sha256 = "0lkmdgqvwx6cy1hbrx130yqbcq6ln1i9kr8s9r75g6lnv539lazq";
+ version = "0.4.0";
+ sha256 = "14hwn9nrnaypwzgy70l4kcscq7fcw1z5rs3a46cm2v5qqj72r2jx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base base16-bytestring bytestring conduit cookie cryptonite
- deepseq exceptions http-api-data http-media lens memory resourcet
- servant servant-auth servant-auth-server servant-auth-swagger
- servant-client servant-swagger string-conv swagger2 text
- transformers
+ deepseq exceptions http-api-data http-media jose lens memory
+ protolude resourcet servant servant-auth servant-auth-server
+ servant-auth-swagger servant-client servant-swagger string-conv
+ swagger2 text transformers
];
- executableHaskellDepends = [ aeson base ];
+ executableHaskellDepends = [ aeson base protolude ];
testHaskellDepends = [
aeson base base16-bytestring bytestring conduit cookie cryptonite
hspec http-api-data http-media lens memory protolude servant
@@ -47213,20 +47643,21 @@ self: {
}) {};
"call-alloy" = callPackage
- ({ mkDerivation, base, bytestring, directory, file-embed, filepath
- , hashable, hspec, process, split, unix
+ ({ mkDerivation, base, bytestring, containers, directory
+ , file-embed, filepath, hashable, hspec, lens, mtl, process, split
+ , trifecta, unix
}:
mkDerivation {
pname = "call-alloy";
- version = "0.1.0.2";
- sha256 = "0blimzaambck8z4sy24s7d0l4v4hcaqxfbkidj2sjvgm0xidd2gb";
+ version = "0.2.0.4";
+ sha256 = "0j1vvnjvgjs11ffy7r5h87vsxywyp51cs8kvqlgi5vnlwb2zfxg9";
libraryHaskellDepends = [
- base bytestring directory file-embed filepath hashable process
- split unix
+ base bytestring containers directory file-embed filepath hashable
+ lens mtl process split trifecta unix
];
testHaskellDepends = [
- base bytestring directory file-embed filepath hashable hspec
- process split unix
+ base bytestring containers directory file-embed filepath hashable
+ hspec lens mtl process split trifecta unix
];
description = "A simple library to call Alloy given a specification";
license = stdenv.lib.licenses.mit;
@@ -47540,10 +47971,8 @@ self: {
}:
mkDerivation {
pname = "cantor-pairing";
- version = "0.1.1.0";
- sha256 = "03vl7qd5962kr0mi4ymgmh667948rzqiq9f1ixcvycyjz8hz0yqw";
- revision = "3";
- editedCabalFile = "0rcjz2r4l4crxxda3hjpi5kkxrh4pgdrcbw29bj5w9a4jph0d0ld";
+ version = "0.2.0.0";
+ sha256 = "0szdmfwaaqnipxjvlzblk1lwyw573d3p659njwi18w0iydsf56js";
libraryHaskellDepends = [
arithmoi base containers integer-gmp integer-logarithms
];
@@ -48697,19 +49126,6 @@ self: {
({ mkDerivation, alg, base, dual, transformers }:
mkDerivation {
pname = "category";
- version = "0.2.4.2";
- sha256 = "112cipa7bnjaj8k9grhxzw7ffkhillgf09qsrp62p1aqsvcrlmf8";
- libraryHaskellDepends = [ alg base dual transformers ];
- description = "Categorical types and classes";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "category_0_2_5_0" = callPackage
- ({ mkDerivation, alg, base, dual, transformers }:
- mkDerivation {
- pname = "category";
version = "0.2.5.0";
sha256 = "0iya7q3b1z1bxv4amsibmc1lrmf7dng76nzcnanwy300jm1n42w7";
libraryHaskellDepends = [ alg base dual transformers ];
@@ -48877,6 +49293,27 @@ self: {
broken = true;
}) {};
+ "cayley-client_0_4_11" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, binary, bytestring
+ , exceptions, hspec, http-client, http-conduit, lens, lens-aeson
+ , mtl, text, transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "cayley-client";
+ version = "0.4.11";
+ sha256 = "0acsrb2dawcrc088497b3480z3v5ilb2qvgwrxyy13ri36khadgf";
+ libraryHaskellDepends = [
+ aeson attoparsec base binary bytestring exceptions http-client
+ http-conduit lens lens-aeson mtl text transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [ aeson base hspec unordered-containers ];
+ description = "A Haskell client for the Cayley graph database";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"cayley-dickson" = callPackage
({ mkDerivation, base, random }:
mkDerivation {
@@ -48919,8 +49356,8 @@ self: {
}:
mkDerivation {
pname = "cbor-tool";
- version = "0.2.1.0";
- sha256 = "0cjgkl8az6qnq0b48ljw5yshkzq7lb7c6mb0gm07z2dpaxsk0rwm";
+ version = "0.2.2.0";
+ sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -48934,21 +49371,21 @@ self: {
"cborg" = callPackage
({ mkDerivation, aeson, array, base, base-orphans
, base16-bytestring, base64-bytestring, bytestring, containers
- , deepseq, fail, ghc-prim, half, integer-gmp, primitive, QuickCheck
+ , deepseq, ghc-prim, half, integer-gmp, primitive, QuickCheck
, random, scientific, tasty, tasty-hunit, tasty-quickcheck, text
, vector
}:
mkDerivation {
pname = "cborg";
- version = "0.2.2.0";
- sha256 = "1rdnvy0w17s70ikmbyrnwax5rvqh19l95sh8i7ipgxi23z1r0bp1";
+ version = "0.2.2.1";
+ sha256 = "10v1dip11zlpbj69k95n1zm1msp41hkw8snd93h19zlji0v0v4ms";
libraryHaskellDepends = [
array base bytestring containers deepseq ghc-prim half integer-gmp
primitive text
];
testHaskellDepends = [
aeson array base base-orphans base16-bytestring base64-bytestring
- bytestring deepseq fail half QuickCheck random scientific tasty
+ bytestring deepseq half QuickCheck random scientific tasty
tasty-hunit tasty-quickcheck text vector
];
description = "Concise Binary Object Representation (CBOR)";
@@ -48956,17 +49393,22 @@ self: {
}) {};
"cborg-json" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific, text
- , unordered-containers, vector
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cborg
+ , criterion, deepseq, directory, process, scientific, text
+ , unordered-containers, vector, zlib
}:
mkDerivation {
pname = "cborg-json";
- version = "0.2.1.0";
- sha256 = "01i0npbwf6cnjkwwk0l4fnwlbjhsj7vn3d4zd202hcnxdm7bbdiz";
+ version = "0.2.2.0";
+ sha256 = "0ysilz7rrjk94sqr3a61s98hr9qfi1xg13bskmlpc6mpgi2s4s5b";
libraryHaskellDepends = [
aeson aeson-pretty base cborg scientific text unordered-containers
vector
];
+ benchmarkHaskellDepends = [
+ aeson base bytestring cborg criterion deepseq directory process
+ zlib
+ ];
description = "A library for encoding JSON as CBOR";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -50125,6 +50567,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cheapskate_0_1_1_2" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, containers
+ , data-default, deepseq, mtl, syb, text, uniplate, xss-sanitize
+ }:
+ mkDerivation {
+ pname = "cheapskate";
+ version = "0.1.1.2";
+ sha256 = "17n6laihqrjn62l8qw4565nf77zkvrl68bjmc3vzr4ckqfblhdzd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-html containers data-default deepseq mtl syb text
+ uniplate xss-sanitize
+ ];
+ executableHaskellDepends = [ base blaze-html bytestring text ];
+ description = "Experimental markdown processor";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cheapskate-highlight" = callPackage
({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate
, text
@@ -50445,6 +50907,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "chimera_0_3_0_0" = callPackage
+ ({ mkDerivation, base, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, tasty-smallcheck, vector
+ }:
+ mkDerivation {
+ pname = "chimera";
+ version = "0.3.0.0";
+ sha256 = "0zdfh9vmhy006n6vkpkvycl5m90z1w8060dzvi0p28z7lhffb2ld";
+ libraryHaskellDepends = [ base vector ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck
+ vector
+ ];
+ description = "Lazy infinite streams with O(1) indexing";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"chiphunk" = callPackage
({ mkDerivation, base, c2hs, hashable, safe-exceptions, StateVar
, vector-space
@@ -51123,8 +51603,8 @@ self: {
}:
mkDerivation {
pname = "cipher-aes128";
- version = "0.7.0.4";
- sha256 = "1182s7984zjxz53nnjyki5afhfq8h5wjfmg6cqy9z0x1q63qk3fd";
+ version = "0.7.0.5";
+ sha256 = "1bafr5aa9mjfzdgc6gwapvb9g04pyh4lwhv2x2m1v3ljjglg9d1w";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal process ];
@@ -52630,6 +53110,28 @@ self: {
broken = true;
}) {};
+ "climb" = callPackage
+ ({ mkDerivation, base, bytestring, containers, exceptions
+ , linenoise, mtl, text, unliftio-core
+ }:
+ mkDerivation {
+ pname = "climb";
+ version = "0.3.1";
+ sha256 = "0d9f0h0zk9ga349bvdaq6ch9xi3hynadi6r4mcmy7hcigckk2j7r";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers exceptions linenoise mtl text
+ unliftio-core
+ ];
+ executableHaskellDepends = [
+ base bytestring containers exceptions linenoise mtl text
+ unliftio-core
+ ];
+ description = "Building blocks for a GHCi-like REPL with colon-commands";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"clingo" = callPackage
({ mkDerivation, base, bifunctors, clingo, deepseq, exceptions
, hashable, mtl, StateVar, text, transformers, wl-pprint-text
@@ -53688,12 +54190,40 @@ self: {
broken = true;
}) {};
+ "co-log_0_4_0_0" = callPackage
+ ({ mkDerivation, ansi-terminal, base, bytestring, chronos
+ , co-log-core, containers, contravariant, directory, filepath
+ , hedgehog, markdown-unlit, mtl, stm, text, transformers
+ , typerep-map, vector
+ }:
+ mkDerivation {
+ pname = "co-log";
+ version = "0.4.0.0";
+ sha256 = "1ayxsxw96yy72h6bsy6vwi4xwdawcq1hgsyc0s626bp84is7fm5c";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-terminal base bytestring chronos co-log-core containers
+ contravariant directory filepath mtl stm text transformers
+ typerep-map vector
+ ];
+ executableHaskellDepends = [
+ base bytestring co-log-core mtl text typerep-map
+ ];
+ executableToolDepends = [ markdown-unlit ];
+ testHaskellDepends = [ base co-log-core hedgehog ];
+ description = "Composable Contravariant Comonadic Logging Library";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"co-log-core" = callPackage
({ mkDerivation, base, doctest, Glob }:
mkDerivation {
pname = "co-log-core";
- version = "0.2.0.0";
- sha256 = "0q0vhk100qm6dfdfnbgg1mr07d1lzwbfkpkm0ivinfhaz2vnsr2j";
+ version = "0.2.1.0";
+ sha256 = "1jfdjcbhd4mjj00fr2xk7g220kxz4jzbv84j32sqkjnrx49cziz0";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base doctest Glob ];
description = "Composable Contravariant Comonadic Logging Library";
@@ -53704,10 +54234,8 @@ self: {
({ mkDerivation, base, co-log-core, polysemy }:
mkDerivation {
pname = "co-log-polysemy";
- version = "0.0.0.0";
- sha256 = "02kv0r3ijv410lv9wz40mw4vgv4fmhgrxwppz4l0p50wyra5vq04";
- revision = "1";
- editedCabalFile = "1ig0giws954lsrhkw4frwmh01fsghvhpkwpj975n5fxrnzy46xy5";
+ version = "0.0.1.0";
+ sha256 = "1l2ihpi0h704abk1b9nqg1pwch447yhs8g6h29yd4igyy7c6gh9b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base co-log-core polysemy ];
@@ -53793,8 +54321,8 @@ self: {
}:
mkDerivation {
pname = "cobot-io";
- version = "0.1.2.5";
- sha256 = "1md3dyfaybhmfprw3qdwqvlh0r73wy8smf8j8jkdrlkxqw6vhd1f";
+ version = "0.1.2.6";
+ sha256 = "1p76m7qgvcl01zyvb8zmbp5064dp2qjd3rr3mjcai55pk5xcm35r";
libraryHaskellDepends = [
array attoparsec base binary bytestring containers data-msgpack
deepseq http-conduit hyraxAbif lens linear mtl split text vector
@@ -53817,8 +54345,8 @@ self: {
}:
mkDerivation {
pname = "cobot-tools";
- version = "0.1.2.2";
- sha256 = "07vazc4k8y867ba0m3pd177087cwdkdjmd5zkj39ravg44yx6hhm";
+ version = "0.1.2.3";
+ sha256 = "1yvmxbh6si4k3ah5iikjx1fcx5vmsv3b2cvrnw3737d874g880nj";
libraryHaskellDepends = [
array base bytestring cobot containers data-default data-msgpack
deepseq lens mtl regex-tdfa text
@@ -54156,33 +54684,33 @@ self: {
"coformat" = callPackage
({ mkDerivation, aeson, async, async-pool, base, bytestring
- , can-i-haz, command-qq, containers, dom-selector, extra
+ , can-i-haz, command, command-qq, containers, dom-selector, extra
, fast-logger, generic-data, hashable, html-conduit, interpolate
, lens, lens-aeson, monad-logger, mtl, optparse-generic, scientific
, temporary, text, unordered-containers, xml-conduit, yaml
}:
mkDerivation {
pname = "coformat";
- version = "0.2.1.0";
- sha256 = "1s6nh389d6p8ll1v32hifamb1a8vhd194v86ff8r0in7bzc54kfj";
+ version = "0.3.0.0";
+ sha256 = "0bx7h5lbcyba3nwrif7b6rcpqskxqn81ana74ra8f43bjdvps4nw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson async async-pool base bytestring can-i-haz command-qq
+ aeson async async-pool base bytestring can-i-haz command command-qq
containers dom-selector extra fast-logger generic-data hashable
html-conduit interpolate lens lens-aeson monad-logger mtl
optparse-generic scientific temporary text unordered-containers
xml-conduit yaml
];
executableHaskellDepends = [
- aeson async async-pool base bytestring can-i-haz command-qq
+ aeson async async-pool base bytestring can-i-haz command command-qq
containers dom-selector extra fast-logger generic-data hashable
html-conduit interpolate lens lens-aeson monad-logger mtl
optparse-generic scientific temporary text unordered-containers
xml-conduit yaml
];
testHaskellDepends = [
- aeson async async-pool base bytestring can-i-haz command-qq
+ aeson async async-pool base bytestring can-i-haz command command-qq
containers dom-selector extra fast-logger generic-data hashable
html-conduit interpolate lens lens-aeson monad-logger mtl
optparse-generic scientific temporary text unordered-containers
@@ -54305,8 +54833,8 @@ self: {
}:
mkDerivation {
pname = "coinbase-pro";
- version = "0.7.1.0";
- sha256 = "1fghz3wjlx5wariry4z9fsj15rrx5shzrzw1315b6f1fqj4y7q0b";
+ version = "0.7.2.0";
+ sha256 = "1vkw9pda8pn5kljpv6hx0mdml5yjgz354dvfv02akl81ds3r0lhq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -55148,16 +55676,18 @@ self: {
"command-qq" = callPackage
({ mkDerivation, base, doctest, hspec, process, template-haskell
- , text
+ , text, transformers
}:
mkDerivation {
pname = "command-qq";
- version = "0.3.0.0";
- sha256 = "1bqfb4gc5ja9d9jygijqpf6014bmfcxnsvpv7c5n4f1z2aj07jy5";
+ version = "0.3.1.0";
+ sha256 = "1f5mm12bs65b8v2k10b4jxkqdpkdi6q2nncxcqsxwl0wndgbnlpz";
libraryHaskellDepends = [ base process template-haskell text ];
- testHaskellDepends = [ base doctest hspec template-haskell text ];
+ testHaskellDepends = [
+ base doctest hspec template-haskell text transformers
+ ];
description = "Quasiquoters for external commands";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.bsd2;
}) {};
"commander" = callPackage
@@ -55606,6 +56136,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "compendium-client" = callPackage
+ ({ mkDerivation, aeson, base, http-client, language-protobuf
+ , megaparsec, servant, servant-client, text
+ }:
+ mkDerivation {
+ pname = "compendium-client";
+ version = "0.1.0.1";
+ sha256 = "09j71sjqpzhmzkmr1439qqwc8nizgc5ag7fmbd8z51wnkmw1wmky";
+ libraryHaskellDepends = [
+ aeson base http-client language-protobuf megaparsec servant
+ servant-client text
+ ];
+ description = "Client for the Compendium schema server";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"compensated" = callPackage
({ mkDerivation, base, bifunctors, binary, bytes, Cabal
, cabal-doctest, cereal, comonad, deepseq, distributive, doctest
@@ -55835,8 +56381,8 @@ self: {
}:
mkDerivation {
pname = "composite-aeson";
- version = "0.6.0.0";
- sha256 = "0r15hc6kwg0dibxix2f5afg91qwc6fd5m9sijn0k0mq62f0ln7ki";
+ version = "0.6.1.0";
+ sha256 = "1a5h03h46ahighdqqxfa22mnhbik9bqzm0cxnpgxyjksbagj3x5x";
libraryHaskellDepends = [
aeson aeson-better-errors base composite-base containers
contravariant generic-deriving hashable lens mmorph mtl profunctors
@@ -55861,8 +56407,8 @@ self: {
}:
mkDerivation {
pname = "composite-aeson-refined";
- version = "0.6.0.0";
- sha256 = "1plhqx0k0xab8fkip6v96rqnrdjq02ph1gmrk4r5zq5x4gc7gpps";
+ version = "0.6.1.0";
+ sha256 = "1z03ncjabcph9vwwhzmqp7wmhznr7jz188xpnl2lsdw0fzxlir3q";
libraryHaskellDepends = [
aeson-better-errors base composite-aeson mtl refined
];
@@ -55879,8 +56425,8 @@ self: {
}:
mkDerivation {
pname = "composite-base";
- version = "0.6.0.0";
- sha256 = "188za7x9069ah8sgf8laqwkg3yfzl7cm23iacbcnbw25jd7k6vy3";
+ version = "0.6.1.0";
+ sha256 = "0qnxchx5dr2bgi8wdi4a1x2z20lw61zfxlmjkr1m7ggzz3f7py3k";
libraryHaskellDepends = [
base exceptions lens monad-control mtl profunctors template-haskell
text transformers transformers-base unliftio-core vinyl
@@ -55901,8 +56447,8 @@ self: {
}:
mkDerivation {
pname = "composite-ekg";
- version = "0.6.0.0";
- sha256 = "065aah2jx6r8i8qgwfql90nc6avhrrhc3aq3zlrqimqwv4772pvj";
+ version = "0.6.1.0";
+ sha256 = "14pa5bcr0ip43vn6wpxd4pf7lcc83f2xscri05kdf4h4d1nnwscj";
libraryHaskellDepends = [
base composite-base ekg-core lens text vinyl
];
@@ -55919,8 +56465,8 @@ self: {
}:
mkDerivation {
pname = "composite-opaleye";
- version = "0.6.0.0";
- sha256 = "13hpvk6wx7yiz7klay7da8lllvszddlixk9xxyc8w9kqq48b4k92";
+ version = "0.6.1.0";
+ sha256 = "1vqj7pwb0wkz7c4clqj7kmc0asg74i7xb92g0g0qmwavwwc9flq1";
libraryHaskellDepends = [
base bytestring composite-base lens opaleye postgresql-simple
product-profunctors profunctors template-haskell text vinyl
@@ -55943,8 +56489,8 @@ self: {
}:
mkDerivation {
pname = "composite-swagger";
- version = "0.6.0.0";
- sha256 = "1m0a77imgrs55vmzvfx7hy74siwnxpcgjg7cawsmsnarkymb1c5c";
+ version = "0.6.1.0";
+ sha256 = "1ysp297b2nrwq6dx3bv9q44f69hlym4yvbimzj1hqc3mz63qjpaz";
libraryHaskellDepends = [
base composite-base insert-ordered-containers lens swagger2
template-haskell text vinyl
@@ -56859,15 +57405,16 @@ self: {
}) {};
"conduino" = callPackage
- ({ mkDerivation, base, bytestring, containers, free
+ ({ mkDerivation, base, bytestring, containers, exceptions, free
, list-transformer, mtl, transformers
}:
mkDerivation {
pname = "conduino";
- version = "0.2.0.0";
- sha256 = "11l5gb28z3pp9g5wnlys8f0ffpfg7kd55gkrhqvq11lj9andipac";
+ version = "0.2.2.0";
+ sha256 = "0jdhj71nva9v8f40wzkd2wzikpgwlzqid0inyfdlj4wnn83qwwk2";
libraryHaskellDepends = [
- base bytestring containers free list-transformer mtl transformers
+ base bytestring containers exceptions free list-transformer mtl
+ transformers
];
description = "Lightweight composable continuation-based stream processors";
license = stdenv.lib.licenses.bsd3;
@@ -57024,10 +57571,8 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-sndfile";
- version = "0.1.2.1";
- sha256 = "0b326pdvqpiawqnjkmwfgf5ghvg9jn1afini0ihw8cpc7znx846z";
- revision = "2";
- editedCabalFile = "00c628bx1j8p342pc03p884illajqsgi47yplfxvdywxcijnwbn3";
+ version = "0.1.2.2";
+ sha256 = "1pfvsq0jz9j66ajzc0avnhchn77l22clp71kf2p7dnrib05xc757";
libraryHaskellDepends = [
base conduit conduit-audio hsndfile hsndfile-vector resourcet
transformers
@@ -57453,18 +57998,18 @@ self: {
}) {};
"conferer" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, hspec
- , text
+ ({ mkDerivation, base, bytestring, containers, deepseq, directory
+ , hspec, text
}:
mkDerivation {
pname = "conferer";
- version = "0.1.0.4";
- sha256 = "0zzc6m52a3rsd6cs7ns95rk1bl1gf9dyrz7lx0kakibxpb11sgsy";
+ version = "0.2.0.0";
+ sha256 = "0r666jc016pcpsflxh9lvkxv6fmhnb7agn96gixy8fq3hbksri1v";
libraryHaskellDepends = [
base bytestring containers directory text
];
testHaskellDepends = [
- base bytestring containers directory hspec text
+ base bytestring containers deepseq directory hspec text
];
description = "Configuration management library";
license = stdenv.lib.licenses.bsd3;
@@ -57474,22 +58019,42 @@ self: {
({ mkDerivation, base, conferer, hspec, hspec-core, text }:
mkDerivation {
pname = "conferer-hspec";
- version = "0.1.0.2";
- sha256 = "1hbvqnp1cdhxg3hcywyygby7z56q2xq1c7qgqhi8n7v89dsza27x";
+ version = "0.2.0.0";
+ sha256 = "1gqll6ag2bgf05z1jsh5z5m8srz5zq6j9c29zbrdbk2smpp5qgz8";
libraryHaskellDepends = [ base conferer hspec-core text ];
testHaskellDepends = [ base conferer hspec hspec-core text ];
description = "conferer's FromConfig instances for hspec Config";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "conferer-provider-dhall" = callPackage
+ ({ mkDerivation, base, bytestring, conferer, conferer-provider-json
+ , dhall, dhall-json, directory, hspec, text
+ }:
+ mkDerivation {
+ pname = "conferer-provider-dhall";
+ version = "0.2.0.0";
+ sha256 = "0d0zwx4cqihvv09i45b6c7vhbxp9iiagqx417ikmhan9pki6ykq5";
+ libraryHaskellDepends = [
+ base bytestring conferer conferer-provider-json dhall dhall-json
+ directory text
+ ];
+ testHaskellDepends = [
+ base bytestring conferer conferer-provider-json dhall dhall-json
+ directory hspec text
+ ];
+ description = "Configuration for reading dhall files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"conferer-provider-json" = callPackage
({ mkDerivation, aeson, aeson-qq, base, bytestring, conferer
, directory, hspec, text, unordered-containers, vector
}:
mkDerivation {
pname = "conferer-provider-json";
- version = "0.1.0.5";
- sha256 = "1fsqmp48809fygxg1gz9g9ihm46zr98bbqihw72xr938cq0hazbf";
+ version = "0.2.0.0";
+ sha256 = "1lb1933r852jm8rf8fn7srhsrggibdissrsnwq7ffbk5l64kcd2v";
libraryHaskellDepends = [
aeson base bytestring conferer directory text unordered-containers
vector
@@ -57502,14 +58067,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "conferer-provider-yaml" = callPackage
+ ({ mkDerivation, base, conferer, conferer-provider-json, hspec
+ , yaml
+ }:
+ mkDerivation {
+ pname = "conferer-provider-yaml";
+ version = "0.2.0.0";
+ sha256 = "19h18374jkcbhj90f0sbz5fq9h35b4pi6wx0hf4h2n46k0gffq12";
+ libraryHaskellDepends = [
+ base conferer conferer-provider-json yaml
+ ];
+ testHaskellDepends = [
+ base conferer conferer-provider-json hspec yaml
+ ];
+ description = "Configuration for reading yaml files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"conferer-snap" = callPackage
({ mkDerivation, base, conferer, hspec, snap-core, snap-server
, text
}:
mkDerivation {
pname = "conferer-snap";
- version = "0.1.0.4";
- sha256 = "1928k3h6sfgyjs56xvwzkx7fax5larwv7a130gqng8q12w5pblns";
+ version = "0.2.0.0";
+ sha256 = "0kvg31i2ffs9ppky8kqszqpq5xaf01zy7k09ifsywmnm96cri9g4";
libraryHaskellDepends = [
base conferer snap-core snap-server text
];
@@ -57525,8 +58108,8 @@ self: {
}:
mkDerivation {
pname = "conferer-warp";
- version = "0.1.0.2";
- sha256 = "16i84kyhhwy3nm863zf3ap9kv800r8hmn277r5y8gxx7jcqa6caq";
+ version = "0.2.0.0";
+ sha256 = "1ajymzh3jz0ffkaviacl4qdm7n7i8lswkk158vhrhqabpyqpxy6r";
libraryHaskellDepends = [ base conferer http-types text wai warp ];
testHaskellDepends = [
base conferer hspec http-types text wai warp
@@ -58022,16 +58605,16 @@ self: {
}) {};
"connections" = callPackage
- ({ mkDerivation, base, containers, hedgehog, property
+ ({ mkDerivation, base, containers, hedgehog, lawz, property
, semigroupoids
}:
mkDerivation {
pname = "connections";
- version = "0.0.2.1";
- sha256 = "0pjvxy0167gl6yki2cvjlynzw7biifng82ybnxjmp1b4w7il2qdm";
- libraryHaskellDepends = [ base containers property semigroupoids ];
+ version = "0.0.2.2";
+ sha256 = "1ykfxixlkpw490dxjy5bbj2ykypvp8031x98001vzsklm1avkhvw";
+ libraryHaskellDepends = [ base containers lawz semigroupoids ];
testHaskellDepends = [ base hedgehog property ];
- description = "Partial orders & Galois connections";
+ description = "Partial orders, lattices, & Galois connections";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -58411,6 +58994,32 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "construct" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, Cabal, cabal-doctest
+ , cereal, directory, doctest, filepath, incremental-parser
+ , markdown-unlit, monoid-subclasses, parsers, rank2classes, tasty
+ , tasty-hunit, text
+ }:
+ mkDerivation {
+ pname = "construct";
+ version = "0.1";
+ sha256 = "0gwpks2nrw4hmvw0m9bs23djjcv7ijjrvp14bdi13lv195c3f3af";
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ attoparsec base bytestring cereal incremental-parser
+ monoid-subclasses parsers rank2classes text
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring cereal directory doctest filepath
+ incremental-parser monoid-subclasses rank2classes tasty tasty-hunit
+ text
+ ];
+ testToolDepends = [ markdown-unlit ];
+ description = "Haskell version of the Construct library for easy specification of file formats";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"constructible" = callPackage
({ mkDerivation, arithmoi, base, binary-search, complex-generic }:
mkDerivation {
@@ -58440,23 +59049,22 @@ self: {
"consul-haskell" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, bytestring
, connection, either, exceptions, http-client, http-client-tls
- , http-types, HUnit, lifted-async, lifted-base, monad-control
- , network, random, retry, stm, tasty, tasty-hunit, text
- , transformers, unordered-containers, uuid, vector
+ , http-types, HUnit, network, random, retry, stm, tasty
+ , tasty-hunit, text, transformers, typed-process, unliftio
+ , unordered-containers, uuid, vector
}:
mkDerivation {
pname = "consul-haskell";
- version = "0.4.2";
- sha256 = "02nq60nm49pj00ydd6rhxnbzr9igz9qxlgpjz4vp1kpv1nvi425i";
+ version = "0.5.0";
+ sha256 = "1axwkrqkhiaich7swibx9b6fvxbq1sphzxrwzc1q6fqznp568zzl";
libraryHaskellDepends = [
aeson base base64-bytestring bytestring connection either
- exceptions http-client http-client-tls http-types lifted-async
- lifted-base monad-control network retry stm text transformers
- unordered-containers vector
+ exceptions http-client http-client-tls http-types network retry stm
+ text transformers unliftio unordered-containers vector
];
testHaskellDepends = [
- base http-client HUnit network random tasty tasty-hunit text
- transformers uuid
+ base bytestring http-client HUnit network random retry tasty
+ tasty-hunit text transformers typed-process unliftio uuid
];
description = "A consul client for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -58856,6 +59464,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "contravariant-extras_0_3_5_1" = callPackage
+ ({ mkDerivation, base, contravariant, template-haskell
+ , template-haskell-compat-v0208
+ }:
+ mkDerivation {
+ pname = "contravariant-extras";
+ version = "0.3.5.1";
+ sha256 = "0r9bg6mrm5whv7inpp9m2agwbnk70vg0v7nrflpxkif81scpq0z9";
+ libraryHaskellDepends = [
+ base contravariant template-haskell template-haskell-compat-v0208
+ ];
+ description = "Extras for the \"contravariant\" package";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"control" = callPackage
({ mkDerivation, base, basic, stm, template-haskell, transformers
}:
@@ -59572,6 +60196,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "core-data_0_2_1_5" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, core-text
+ , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific
+ , text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "core-data";
+ version = "0.2.1.5";
+ sha256 = "17lvpbyrr9wm93qprk45n5gf3f6k47f9wf7ays0bfk0hx23chc1n";
+ libraryHaskellDepends = [
+ aeson base bytestring containers core-text hashable prettyprinter
+ prettyprinter-ansi-terminal scientific text unordered-containers
+ vector
+ ];
+ description = "Convenience wrappers around common data structures and encodings";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"core-haskell" = callPackage
({ mkDerivation, base, haskeline, haskell-src-exts, hint }:
mkDerivation {
@@ -59591,18 +60234,18 @@ self: {
"core-program" = callPackage
({ mkDerivation, async, base, bytestring, chronologique, core-data
- , core-text, directory, exceptions, filepath, hashable, hinotify
+ , core-text, directory, exceptions, filepath, fsnotify, hashable
, hourglass, mtl, prettyprinter, prettyprinter-ansi-terminal
, safe-exceptions, stm, template-haskell, terminal-size, text
, text-short, transformers, unix
}:
mkDerivation {
pname = "core-program";
- version = "0.2.2.4";
- sha256 = "0l30qvn118bb6vj39ca6wl7ynhf7hkwq7pbh60vhcmwcr20rj4b1";
+ version = "0.2.4.1";
+ sha256 = "0ji0vnk7k4rgib6zpid7fjqy1ggf3m88cm6j23bg0lvmj5rvml5c";
libraryHaskellDepends = [
async base bytestring chronologique core-data core-text directory
- exceptions filepath hashable hinotify hourglass mtl prettyprinter
+ exceptions filepath fsnotify hashable hourglass mtl prettyprinter
prettyprinter-ansi-terminal safe-exceptions stm template-haskell
terminal-size text text-short transformers unix
];
@@ -59619,14 +60262,32 @@ self: {
}:
mkDerivation {
pname = "core-text";
- version = "0.2.2.4";
- sha256 = "1lfxphm5y9irrs225vr0gbvb129lxzfr0xjxy23dz6d0cc3pr1ph";
+ version = "0.2.2.6";
+ sha256 = "0yywrgcm2g8p93kklckj258l89cmg0li3aikil1rsgrqrnawwc87";
+ libraryHaskellDepends = [
+ base bytestring deepseq fingertree hashable prettyprinter
+ prettyprinter-ansi-terminal template-haskell text text-short
+ ];
+ description = "A rope type based on a finger tree over UTF-8 fragments";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "core-text_0_2_3_3" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable
+ , prettyprinter, prettyprinter-ansi-terminal, template-haskell
+ , text, text-short
+ }:
+ mkDerivation {
+ pname = "core-text";
+ version = "0.2.3.3";
+ sha256 = "0bnbl34fzy497a8ljgcydp490j3684yw8r32jijqyix7y9q2cl2d";
libraryHaskellDepends = [
base bytestring deepseq fingertree hashable prettyprinter
prettyprinter-ansi-terminal template-haskell text text-short
];
description = "A rope type based on a finger tree over UTF-8 fragments";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"corebot-bliki" = callPackage
@@ -60096,20 +60757,20 @@ self: {
, directory, filemanip, filepath, hashable, hspec, hspec-megaparsec
, http-client, http-client-tls, libarchive, lzlib, lzma, megaparsec
, microlens, mtl, network-uri, optparse-applicative, prettyprinter
- , process, recursion, tar, temporary, text, zip-archive, zlib
+ , process, recursion, temporary, text, zip-archive, zlib, zstd
}:
mkDerivation {
pname = "cpkg";
- version = "0.2.3.7";
- sha256 = "12hpi46p8fh36jq7xbgv16xihxx6hgpcn0bssc97zv3il4b5zk9m";
+ version = "0.2.4.1";
+ sha256 = "0amv5kwba1amh6nsqfh6bb2gm7a3ky5lrjjr9c88w0qfyk8rr3am";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base binary bytestring bzlib composition-prelude containers dhall
dir-traverse directory filemanip filepath hashable http-client
http-client-tls libarchive lzlib lzma megaparsec microlens mtl
- network-uri prettyprinter process recursion tar temporary text
- zip-archive zlib
+ network-uri prettyprinter process recursion temporary text
+ zip-archive zlib zstd
];
libraryToolDepends = [ cpphs ];
executableHaskellDepends = [
@@ -61210,21 +61871,20 @@ self: {
"cron" = callPackage
({ mkDerivation, attoparsec, base, criterion, data-default-class
- , generics-sop, mtl, mtl-compat, old-locale, quickcheck-instances
- , semigroups, tasty, tasty-hunit, tasty-quickcheck, text, time
- , transformers-compat
+ , hedgehog, mtl, mtl-compat, old-locale, semigroups, tasty
+ , tasty-hedgehog, tasty-hunit, text, time, transformers-compat
}:
mkDerivation {
pname = "cron";
- version = "0.6.1";
- sha256 = "0l9jigxr271gyf8a69igag5rckvcngv6h93jkf02d43jvqxza6lc";
+ version = "0.6.2";
+ sha256 = "14g4vndj5i1gjg6nbd6h04rzajijflwxzkgnjalsjjfd6fmrny5h";
libraryHaskellDepends = [
attoparsec base data-default-class mtl mtl-compat old-locale
semigroups text time
];
testHaskellDepends = [
- attoparsec base generics-sop quickcheck-instances semigroups tasty
- tasty-hunit tasty-quickcheck text time transformers-compat
+ attoparsec base hedgehog semigroups tasty tasty-hedgehog
+ tasty-hunit text time transformers-compat
];
benchmarkHaskellDepends = [ attoparsec base criterion text time ];
description = "Cron datatypes and Attoparsec parser";
@@ -63142,6 +63802,36 @@ self: {
broken = true;
}) {};
+ "cut-the-crap" = callPackage
+ ({ mkDerivation, base, exceptions, generic-lens, hspec, hspec-core
+ , lens, optparse-applicative, optparse-generic, regex-tdfa, shelly
+ , system-filepath, temporary, text, unliftio-core
+ }:
+ mkDerivation {
+ pname = "cut-the-crap";
+ version = "1.0.0";
+ sha256 = "0mq6hzv48ry3n8y0b60qbf3ddkfk2aqny4c1hzn92mqffhg4r0zr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base exceptions generic-lens lens optparse-applicative
+ optparse-generic regex-tdfa shelly system-filepath temporary text
+ unliftio-core
+ ];
+ executableHaskellDepends = [
+ base exceptions generic-lens lens optparse-applicative
+ optparse-generic regex-tdfa shelly system-filepath temporary text
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ base exceptions generic-lens hspec hspec-core lens
+ optparse-applicative optparse-generic regex-tdfa shelly
+ system-filepath temporary text unliftio-core
+ ];
+ description = "Cuts out uninteresting parts of videos by detecting silences";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"cutter" = callPackage
({ mkDerivation, base, bytestring, explicit-exception, spreadsheet
, utility-ht
@@ -63196,8 +63886,8 @@ self: {
}:
mkDerivation {
pname = "cyclotomic";
- version = "1.0";
- sha256 = "15mp9wi83anv1vxc6649agak4zn4fqyh2vik5f983269h4xsv12j";
+ version = "1.0.1";
+ sha256 = "0d2jnpgal88j05jk62p3xwfkarigclgw2hy77ph0lii360wijljh";
libraryHaskellDepends = [ arithmoi base containers ];
testHaskellDepends = [
base HUnit QuickCheck test-framework test-framework-hunit
@@ -65218,18 +65908,18 @@ self: {
}) {};
"data-r-tree" = callPackage
- ({ mkDerivation, base, binary, containers, deepseq, HUnit
- , QuickCheck, test-framework, test-framework-hunit
+ ({ mkDerivation, base, binary, containers, deepseq, ghc-heap-view
+ , HUnit, QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "data-r-tree";
- version = "0.0.5.0";
- sha256 = "1zgwm020zxfhb70llch4y075rd6klwwnv9yn8mpgh0rm0ib7jvyy";
+ version = "0.6.0";
+ sha256 = "07s35yavzcfv6mhyj0cfhgsv1h10k5cq4sb875hb7l2c8jif91nl";
libraryHaskellDepends = [ base binary deepseq ];
testHaskellDepends = [
- base binary containers HUnit QuickCheck test-framework
- test-framework-hunit test-framework-quickcheck2
+ base binary containers deepseq ghc-heap-view HUnit QuickCheck
+ test-framework test-framework-hunit test-framework-quickcheck2
];
description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees";
license = stdenv.lib.licenses.mit;
@@ -68393,15 +69083,21 @@ self: {
}) {};
"describe" = callPackage
- ({ mkDerivation, base, bytestring, cereal, fixed-vector, QuickCheck
+ ({ mkDerivation, base, bytestring, cereal, fixed-vector, lens
+ , mmorph, monad-control, mtl, profunctors, QuickCheck, text
+ , transformers
}:
mkDerivation {
pname = "describe";
- version = "0.2.0.6";
- sha256 = "01g3wa8wzb7aary9mskgljak2cgn7wk0bycwil5g32510hpwvfbv";
- libraryHaskellDepends = [ base bytestring cereal fixed-vector ];
+ version = "0.4.0.1";
+ sha256 = "13lnp0yaz18s161d7d2a4cnv2q2kqfm44xqr0jlxcvrmhvr65qdc";
+ libraryHaskellDepends = [
+ base bytestring cereal fixed-vector lens mmorph monad-control mtl
+ profunctors text transformers
+ ];
testHaskellDepends = [
- base bytestring cereal fixed-vector QuickCheck
+ base bytestring cereal fixed-vector lens mmorph monad-control mtl
+ profunctors QuickCheck text transformers
];
description = "Combinators for describing binary data structures";
license = stdenv.lib.licenses.bsd3;
@@ -68844,7 +69540,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dhall_1_28_0" = callPackage
+ "dhall_1_29_0" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write
, base, bytestring, case-insensitive, cborg, cborg-json, containers
, contravariant, cryptonite, data-fix, deepseq, Diff, directory
@@ -68861,8 +69557,10 @@ self: {
}:
mkDerivation {
pname = "dhall";
- version = "1.28.0";
- sha256 = "0kiw8a9im768j304s80pv90vp1hh38v7fxfh2bb4hmglh3a8kc21";
+ version = "1.29.0";
+ sha256 = "1xp76wv36rfffym71gwdqsmwg3znmpsq5x9zgz3hfmzigxqmjgn7";
+ revision = "2";
+ editedCabalFile = "1qksvk63vmypqcd9hasacmqw7gsqcggs5lk85x7w2731mh3c3sa8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -68914,14 +69612,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "dhall-bash_1_0_25" = callPackage
+ "dhall-bash_1_0_27" = callPackage
({ mkDerivation, base, bytestring, containers, dhall
, neat-interpolation, optparse-generic, shell-escape, text
}:
mkDerivation {
pname = "dhall-bash";
- version = "1.0.25";
- sha256 = "0bxfx2hj06q1w1372zc7cfibsqw2hckz5116zz447mz5zmcfkjv3";
+ version = "1.0.27";
+ sha256 = "0mmf53fqgf8g6s80g6wss86lcfkrpjc51w5givy7kg9js00d48px";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -69019,7 +69717,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "dhall-json_1_6_0" = callPackage
+ "dhall-json_1_6_1" = callPackage
({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal
, base, bytestring, containers, dhall, exceptions, filepath
, optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
@@ -69028,8 +69726,10 @@ self: {
}:
mkDerivation {
pname = "dhall-json";
- version = "1.6.0";
- sha256 = "1fb3w7p2blnxqc6q3q620vpr0fpqs2my7hh33ykh7jpzs7p031h5";
+ version = "1.6.1";
+ sha256 = "1j89a75rqr90y6yya17iym6c9d6f4sa5hhmv46qbwim9sflv1s9w";
+ revision = "1";
+ editedCabalFile = "07h7vldqd623y7jf15j87mhs3nnbwl3a0121ajqc56qc0vvpgywp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -69078,8 +69778,8 @@ self: {
}:
mkDerivation {
pname = "dhall-lsp-server";
- version = "1.0.3";
- sha256 = "1ym7v3blgj4ccchg6cpyxpllp6xz6fh8kfyy3i0b1kd5lzm90s0n";
+ version = "1.0.4";
+ sha256 = "0w8xql6hxchgs77ik2fgnhb2llp6138jyiynwvhsfkjijmqj5qrl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -69105,8 +69805,8 @@ self: {
}:
mkDerivation {
pname = "dhall-nix";
- version = "1.1.10";
- sha256 = "04fb8l9qh70fqa50ck0hz8134s1bmcyscbf5xg5ylnxpdrs3n7as";
+ version = "1.1.11";
+ sha256 = "0af8nbakaznw8wvrdgslrqk7fnmv2425f67xv3cx1jlf51drphpk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -69176,8 +69876,8 @@ self: {
}:
mkDerivation {
pname = "dhall-yaml";
- version = "1.0.0";
- sha256 = "05jhcvikm3rbcf9jzw747x70c3dsslcij977yhqks0c59nr9pqn6";
+ version = "1.0.1";
+ sha256 = "1pm36mwq6llnys9ac3b5nisw7d9xjxgh6nh2xl3kcdjh30f3bm2f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -69433,8 +70133,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-builder";
- version = "0.8.0.4";
- sha256 = "11vyybx6hia6s32skrykxr4d6s8yy93m2326945p07qmqwmwmr4w";
+ version = "0.8.0.5";
+ sha256 = "0dz617kfkvjf3f2zbphkdx1scglcjj162qsfk9xj7slbapnj918m";
configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ];
isLibrary = true;
isExecutable = true;
@@ -69462,10 +70162,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-cairo";
- version = "1.4.1";
- sha256 = "0n368gv7jjnynp7gfbnaywnd4x65956qqifcxpi3gsy8yi0zsr6z";
- revision = "1";
- editedCabalFile = "0irrv1mf7lz3n4dy5pz9y6kw00v1rly47g2g6hi95nj6a6hib3z0";
+ version = "1.4.1.1";
+ sha256 = "0vyd2yr55n7x71194i18lnbcshdjpnqw4qyq7vj5zx377rsz711k";
libraryHaskellDepends = [
array base bytestring cairo colour containers data-default-class
diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl
@@ -69562,8 +70260,8 @@ self: {
pname = "diagrams-gtk";
version = "1.4";
sha256 = "1sga2wwkircjgryd4pn9i0wvvcnh3qnhpxas32crpdq939idwsxn";
- revision = "2";
- editedCabalFile = "0hblrqvwk1pbssaci97v36r71kpm7kkcghh5ijmq52lmjfq72jqm";
+ revision = "3";
+ editedCabalFile = "0k0i3nm5zpdmrqh8wmd8y5xhw7drd67hifdva5a7dih8w5sab4ra";
libraryHaskellDepends = [
base cairo diagrams-cairo diagrams-lib gtk
];
@@ -70127,6 +70825,8 @@ self: {
libraryHaskellDepends = [ base Enum util ];
description = "Diff and patch";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diff-gestalt" = callPackage
@@ -71196,8 +71896,8 @@ self: {
}:
mkDerivation {
pname = "discord-haskell";
- version = "1.1.3";
- sha256 = "0q04qh6ia7rlrg0mlbch3n7ai81jn20avrgxlyn9xggdryi5vkb6";
+ version = "1.2.0";
+ sha256 = "0qqhzvv3ilylmpg6bn0pgg0ww6biqikfardpsqn4b78vqqp7pxjd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -71540,8 +72240,8 @@ self: {
}:
mkDerivation {
pname = "distributed-closure";
- version = "0.4.1.1";
- sha256 = "0w3n13a0rdi6cw5h3sivrfnr96qizd2hk0gma7b9c7hdh0sxw89r";
+ version = "0.4.2.0";
+ sha256 = "0l2pm3b3g539p0ll30x5csyzx51q7ydmdl9m94yx988sx9dv7l0n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -72913,6 +73613,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "doclayout_0_3" = callPackage
+ ({ mkDerivation, base, criterion, mtl, safe, tasty, tasty-golden
+ , tasty-hunit, text
+ }:
+ mkDerivation {
+ pname = "doclayout";
+ version = "0.3";
+ sha256 = "1wmnwq28jcyd6c80srivsnd5znmyl9sgmwwnlk2crwiiwqadbal7";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base mtl safe text ];
+ testHaskellDepends = [
+ base mtl tasty tasty-golden tasty-hunit text
+ ];
+ benchmarkHaskellDepends = [ base criterion mtl text ];
+ description = "A prettyprinting library for laying out text documents";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"docopt" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers
, HUnit, parsec, split, template-haskell, text, th-lift
@@ -73014,6 +73733,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "doctemplates_0_8_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, criterion
+ , doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific
+ , tasty, tasty-golden, tasty-hunit, temporary, text
+ , text-conversions, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "doctemplates";
+ version = "0.8.1";
+ sha256 = "02xysm510m3hbifwb7ngx39wj1ycxjrws4ngnm0d7ywqm9cv1hbb";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson base containers doclayout filepath HsYAML mtl parsec safe
+ scientific text text-conversions unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers doclayout filepath Glob tasty
+ tasty-golden tasty-hunit temporary text
+ ];
+ benchmarkHaskellDepends = [
+ aeson base containers criterion doclayout filepath mtl text
+ ];
+ description = "Pandoc-style document templates";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"doctest" = callPackage
({ mkDerivation, base, base-compat, code-page, deepseq, directory
, filepath, ghc, ghc-paths, hspec, HUnit, mockery, process
@@ -74460,8 +75206,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "dual";
- version = "0.1.0.2";
- sha256 = "08daga1lh267vj2y98z730zlrqxp7f8yqkrnpwbz3gfci7qzd8pa";
+ version = "0.1.0.3";
+ sha256 = "1w8haw9q7cljiq58nh7fmywbgcxnx8xz33zx8gr9imkagh56gwv3";
libraryHaskellDepends = [ base ];
description = "Dual category";
license = stdenv.lib.licenses.bsd3;
@@ -74469,12 +75215,12 @@ self: {
broken = true;
}) {};
- "dual_0_1_0_3" = callPackage
+ "dual_0_1_1_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "dual";
- version = "0.1.0.3";
- sha256 = "1w8haw9q7cljiq58nh7fmywbgcxnx8xz33zx8gr9imkagh56gwv3";
+ version = "0.1.1.1";
+ sha256 = "0rf7vywr342llc0p7rmd4l0r8gsaxza0mh6cdb5mg13m9jfb4125";
libraryHaskellDepends = [ base ];
description = "Dual category";
license = stdenv.lib.licenses.bsd3;
@@ -75916,6 +76662,17 @@ self: {
broken = true;
}) {};
+ "edf" = callPackage
+ ({ mkDerivation, base, binary, bytestring, text }:
+ mkDerivation {
+ pname = "edf";
+ version = "1.0.0.0";
+ sha256 = "0zxg57381wi23r17mgzl16ajgg61icxyy25kxyxyji9hw5aw22nw";
+ libraryHaskellDepends = [ base binary bytestring text ];
+ description = "EDF parsing library";
+ license = stdenv.lib.licenses.bsd2;
+ }) {};
+
"edge" = callPackage
({ mkDerivation, ALUT, base, cmdtheline, containers, gloss, OpenAL
, random, wraparound
@@ -77267,6 +78024,8 @@ self: {
doHaddock = false;
description = "Crossing the road between Haskell and Elm";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"elm-syntax" = callPackage
@@ -77275,8 +78034,8 @@ self: {
}:
mkDerivation {
pname = "elm-syntax";
- version = "0.1.0.0";
- sha256 = "1c8dg5kd0h36j030ig59n1gg1g7y569k92nxg416w4y18z7gir72";
+ version = "0.2.0.0";
+ sha256 = "1fqfsk3xnvl8j49rarchabvw8lq8mflzyzawq5myi74w1gd6ril8";
libraryHaskellDepends = [
base bound deriving-compat prettyprinter protolude text
unordered-containers
@@ -77360,6 +78119,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "elm2nix_0_2" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, async, base, binary
+ , bytestring, containers, data-default, directory, filepath, here
+ , mtl, optparse-applicative, process, req, text, transformers
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "elm2nix";
+ version = "0.2";
+ sha256 = "1bv2sid1adrg3327h9611kspfxkhgwcawjq59iapp776n74x2iq4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base binary bytestring containers data-default
+ directory filepath here mtl process req text transformers
+ unordered-containers
+ ];
+ executableHaskellDepends = [
+ ansi-wl-pprint base directory here optparse-applicative
+ ];
+ testHaskellDepends = [ base ];
+ description = "Turn your Elm project into buildable Nix project";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"elminator" = callPackage
({ mkDerivation, aeson, base, containers, mtl, template-haskell
, text
@@ -78468,6 +79253,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "env-extra" = callPackage
+ ({ mkDerivation, base, exceptions, tasty, tasty-hunit, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "env-extra";
+ version = "1.0.0.0";
+ sha256 = "13xfgx7whwc28106myqj276mb9820z97jl82mw2ndysn36hxnn7l";
+ revision = "1";
+ editedCabalFile = "03fhrb738lbznq1bjqhbibhbhah81f93hmrgdjazkvbdfpsmhprb";
+ libraryHaskellDepends = [ base exceptions text transformers ];
+ testHaskellDepends = [
+ base exceptions tasty tasty-hunit text transformers
+ ];
+ description = "Safe helpers for accessing and modifying environment variables";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"env-locale" = callPackage
({ mkDerivation, base, old-locale, time }:
mkDerivation {
@@ -78567,6 +79372,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "envy-extensible" = callPackage
+ ({ mkDerivation, base, doctest, envy, extensible, hspec
+ , hspec-discover, main-tester, QuickCheck
+ }:
+ mkDerivation {
+ pname = "envy-extensible";
+ version = "0.1.0.0";
+ sha256 = "1m5qly9la0b3rxp8amni7nhgisg5vmp3zi76hc1586c202cnsl70";
+ libraryHaskellDepends = [ base envy extensible ];
+ testHaskellDepends = [
+ base doctest envy extensible hspec main-tester QuickCheck
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Provides FromEnv in envy instance for Record of extensible";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"epanet-haskell" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -78787,6 +79609,8 @@ self: {
pname = "equeue";
version = "0";
sha256 = "14risb13sv4mz5scyhcvg6knb791lx4b9jm3k9189fhxkr5a28cc";
+ revision = "1";
+ editedCabalFile = "0i8gjfmi6jbfbmqs9yckzg694mp7v92b1m99r1hn1yw3xbizvf2j";
libraryHaskellDepends = [
base containers contravariant mtl semigroups stm
];
@@ -79404,7 +80228,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "esqueleto_3_3_0" = callPackage
+ "esqueleto_3_3_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring
, conduit, containers, exceptions, hspec, monad-logger, mtl, mysql
, mysql-simple, persistent, persistent-mysql, persistent-postgresql
@@ -79414,8 +80238,8 @@ self: {
}:
mkDerivation {
pname = "esqueleto";
- version = "3.3.0";
- sha256 = "0qscm9b4zqb0w78xpf1yhmjlbapvghmvsqxqwx2x0grb4yvv7cwq";
+ version = "3.3.1";
+ sha256 = "19s7grwdjh39w13c34wg8kkcc0r17a9vbriz9g4z0hcz6yv7ajx2";
libraryHaskellDepends = [
aeson attoparsec base blaze-html bytestring conduit containers
monad-logger persistent resourcet tagged text time transformers
@@ -80636,11 +81460,13 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "exception-hierarchy";
- version = "0.1.0.2";
- sha256 = "1srzc1dz3cpplxsqjiw3iiy0jnwyc57qxmdgibkkymjlaksi721i";
+ version = "0.1.0.3";
+ sha256 = "178rf1fwqi9mnw7n313sma2wqih791zc66g1y89dxbch69i52dp9";
libraryHaskellDepends = [ base template-haskell ];
description = "Exception type hierarchy with TemplateHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"exception-mailer" = callPackage
@@ -80732,19 +81558,18 @@ self: {
"exceptions" = callPackage
({ mkDerivation, base, mtl, QuickCheck, stm, template-haskell
, test-framework, test-framework-hunit, test-framework-quickcheck2
- , transformers, transformers-compat
+ , transformers
}:
mkDerivation {
pname = "exceptions";
- version = "0.10.3";
- sha256 = "1w25j4ys5s6v239vbqlbipm9fdwxl1j2ap2lzms7f7rgnik5ir24";
+ version = "0.10.4";
+ sha256 = "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd";
libraryHaskellDepends = [
- base mtl stm template-haskell transformers transformers-compat
+ base mtl stm template-haskell transformers
];
testHaskellDepends = [
base mtl QuickCheck stm template-haskell test-framework
test-framework-hunit test-framework-quickcheck2 transformers
- transformers-compat
];
description = "Extensible optionally-pure exceptions";
license = stdenv.lib.licenses.bsd3;
@@ -81188,14 +82013,12 @@ self: {
}) {};
"exp-extended" = callPackage
- ({ mkDerivation, base, compensated, log-domain }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "exp-extended";
- version = "0.1.1.2";
- sha256 = "0ymfnwq103n1paj6wl2cj6szi5nx2h2j1azy3wy4kkw6sk07m00r";
- revision = "3";
- editedCabalFile = "0gd1jwhhj5qjvfysvrm41zywx3cq6n131ym2x94z68cpswdmv0qn";
- libraryHaskellDepends = [ base compensated log-domain ];
+ version = "0.2";
+ sha256 = "14bz6wfzd8b51s09d2psg5hv5zq4f8lplgx0yvd3n0z704x3mcy6";
+ libraryHaskellDepends = [ base ];
description = "floating point with extended exponent range";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -81759,6 +82582,8 @@ self: {
testHaskellDepends = [ base extensible ];
description = "Operational-based extensible effect library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"extensible-sp" = callPackage
@@ -82061,8 +82886,8 @@ self: {
}:
mkDerivation {
pname = "fadno";
- version = "1.1.0";
- sha256 = "02qg4gd1f1cldh6bg5nrds67vrmhcxnkn8c57gj7400l60ab3yak";
+ version = "1.1.3";
+ sha256 = "0yd4dc6imcp9lf7m0q4ah5z6c47m83302wagps821n8285qvr6zc";
libraryHaskellDepends = [
base comonad containers data-default Decimal deepseq event-list
fadno-braids fadno-xml HUnit lens midi mtl process safe split text
@@ -82083,8 +82908,8 @@ self: {
}:
mkDerivation {
pname = "fadno-braids";
- version = "0.1.1";
- sha256 = "1d8ca0lnvkpqbrfmvk8mash0kgkxwzlzzspsp35n7csp6iyll543";
+ version = "0.1.3";
+ sha256 = "021rm7kdpcgdch57pm9jr6hc220zn9d644wlsbv54z9ll5jj3mlg";
libraryHaskellDepends = [
base containers data-default diagrams diagrams-lib
diagrams-rasterific lens random
@@ -82100,8 +82925,8 @@ self: {
}:
mkDerivation {
pname = "fadno-xml";
- version = "1.1.1";
- sha256 = "0xsklyavmgi0b2qn7758i3ph7ifnkkjyz0yczw5zj4586q184am5";
+ version = "1.1.3";
+ sha256 = "1kydl4nj4j0q4s3sq6r0l42f4ikxq7cdmzkcsavla0fcm0jvj359";
libraryHaskellDepends = [
base containers Decimal lens mtl parsec xml
];
@@ -82133,6 +82958,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "failable_1_2_4_0" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "failable";
+ version = "1.2.4.0";
+ sha256 = "1vffrjywaxwfpzb6a34il772mkkaqwv9372aibijnvwf82rnglwg";
+ libraryHaskellDepends = [ base mtl transformers ];
+ description = "A 'Failable' error monad class to unify failure across monads that can fail";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"failable-list" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -82674,10 +83511,8 @@ self: {
({ mkDerivation, base, bytestring, cgi, fcgi }:
mkDerivation {
pname = "fastcgi";
- version = "3001.0.2.4";
- sha256 = "0lp17w098043xczwkah7h1x47wzrym7vv5adgla0aq9iybqay7xr";
- revision = "1";
- editedCabalFile = "12p963nf6375sh1k7dd1m9l0nzq4xwsc099gh1qj2jch59lqgkbl";
+ version = "3001.0.2.5";
+ sha256 = "03y2h3snx23v7i1jgvnayvzk4c1v80qsh9n5dskl7mqhzm2hbygi";
libraryHaskellDepends = [ base bytestring cgi ];
librarySystemDepends = [ fcgi ];
description = "A Haskell library for writing FastCGI programs";
@@ -82841,8 +83676,8 @@ self: {
}:
mkDerivation {
pname = "fay";
- version = "0.24.0.3";
- sha256 = "07ys208iiy28hmhc098yx2vj3rzwwxqi0q7l4xx4q61albmryf08";
+ version = "0.24.0.4";
+ sha256 = "1jpqc48a7h9x64wv77g7bdnhvfjgbabp4n3qcbqsfz9v92j46j0a";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -83361,12 +84196,12 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "fedora-dists_1_1_1" = callPackage
+ "fedora-dists_1_1_2" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "fedora-dists";
- version = "1.1.1";
- sha256 = "10yf8hjbrwjwdsfys87cysim8zfknqp1vv336ym8b5qlx700b2ji";
+ version = "1.1.2";
+ sha256 = "0hynmwic940vmna0czavbp1wx856ad9am7i6r0d2hq8jynrsin5w";
libraryHaskellDepends = [ base ];
description = "Library for Fedora distribution versions";
license = stdenv.lib.licenses.gpl3;
@@ -84053,6 +84888,8 @@ self: {
pname = "ffmpeg-light";
version = "0.12.2.2";
sha256 = "0yn1qhj2kzicxpjmy09lb660psjavbrfib29q0m1b8zx0fvn5xzk";
+ revision = "1";
+ editedCabalFile = "1wwfbrpr5hz1a9lppn73j2gpal3l2jnn554k6w9n181fbk67xvjd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -84563,8 +85400,8 @@ self: {
({ mkDerivation, base, bytestring, filepath, QuickCheck, unix }:
mkDerivation {
pname = "filepath-bytestring";
- version = "1.4.2.1.1";
- sha256 = "06shdskjj391hb9295slm9gg2rbn5fdq5v6fg0mgn3yl5dv8q5dx";
+ version = "1.4.2.1.6";
+ sha256 = "11xrrzdkm5i96dazbz0gi1qp8nnj2lwbnxzwy7f4cnahskz4f4g7";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [ base bytestring filepath QuickCheck ];
description = "Library for manipulating RawFilePaths in a cross platform way";
@@ -84680,6 +85517,8 @@ self: {
pname = "filesystem-abstractions";
version = "0";
sha256 = "1qrxc8q10fqd7b0ss84nykz8vmyjwwxw5ywxp11xabad966shl18";
+ revision = "1";
+ editedCabalFile = "0qfkiify5jgclzdz2gyml5d7rn0vinilwxgfvk0h7743lj2vj167";
libraryHaskellDepends = [
base bytestring list-tries posix-paths semigroups
];
@@ -86936,8 +87775,8 @@ self: {
}:
mkDerivation {
pname = "fold-debounce-conduit";
- version = "0.2.0.3";
- sha256 = "0rzgaxqv3q0s848bk3hm0mq14sxa1szpxvi9k19n0hpqlx60rj4p";
+ version = "0.2.0.4";
+ sha256 = "0mhnc5j8jnmf4rnb5cj75jlyj9xc4gj3dawywcw26zz189j540fj";
libraryHaskellDepends = [
base conduit fold-debounce resourcet stm transformers
transformers-base
@@ -86962,21 +87801,20 @@ self: {
"foldl" = callPackage
({ mkDerivation, base, bytestring, comonad, containers
- , contravariant, criterion, hashable, mwc-random, primitive
- , profunctors, semigroupoids, semigroups, text, transformers
- , unordered-containers, vector, vector-builder
+ , contravariant, criterion, doctest, hashable, mwc-random
+ , primitive, profunctors, semigroupoids, semigroups, text
+ , transformers, unordered-containers, vector, vector-builder
}:
mkDerivation {
pname = "foldl";
- version = "1.4.5";
- sha256 = "19qjmzc7gaxfwgqbgy0kq4vhbxvh3qjnwsxnc7pzwws2if5bv80b";
- revision = "4";
- editedCabalFile = "12qrmlazijyz5dn73p50klyny7x4vx8yw2isfmjikmrr12nhc5g0";
+ version = "1.4.6";
+ sha256 = "1ah4i8w0ybdkkqsfjl990jbx16ar5q67x85qhg4l80xkkvlsl51a";
libraryHaskellDepends = [
base bytestring comonad containers contravariant hashable
mwc-random primitive profunctors semigroupoids semigroups text
transformers unordered-containers vector vector-builder
];
+ testHaskellDepends = [ base doctest ];
benchmarkHaskellDepends = [ base criterion ];
description = "Composable, streaming, and efficient left folds";
license = stdenv.lib.licenses.bsd3;
@@ -88357,6 +89195,8 @@ self: {
];
description = "Free functors, adjoint to functors that forget class constraints";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"free-game" = callPackage
@@ -89069,8 +89909,8 @@ self: {
({ mkDerivation, base, bytestring, process-extras, text }:
mkDerivation {
pname = "fromhtml";
- version = "1.0.1";
- sha256 = "173rbbnn62mb7kxlv7g9r52gjqi07pj3kqd7h2qr8mhk4xlbbagy";
+ version = "1.0.4";
+ sha256 = "1pavyjpda8x5dc7g018yipz6hc329n6yfi5lbvnvc7fa3r77dvs9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring process-extras text ];
@@ -90318,8 +91158,8 @@ self: {
({ mkDerivation, base, fused-effects, hspec, microlens }:
mkDerivation {
pname = "fused-effects-lens";
- version = "1.1.0.0";
- sha256 = "0812yfzy784mr1wdbfd7yi249pgdf5ndm7qsy6vk8rs09arpwwxh";
+ version = "1.2.0.0";
+ sha256 = "1g9shz0fi0maflgdj9lng27424jm3swgl6jl97d3v0k8syybdha6";
libraryHaskellDepends = [ base fused-effects microlens ];
testHaskellDepends = [ base fused-effects hspec microlens ];
description = "Monadic lens combinators for fused-effects";
@@ -90391,8 +91231,8 @@ self: {
}:
mkDerivation {
pname = "futhark";
- version = "0.13.2";
- sha256 = "0wxhymhwfny03n15g29ydrnqblq23szw6l622ifwxz0mk9h71z1d";
+ version = "0.14.1";
+ sha256 = "1bg0r9b0jg9j12lcc6wa684yjm58l020m9x5abpc54cghigywswj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -90510,6 +91350,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fuzzy-parse" = callPackage
+ ({ mkDerivation, attoparsec, base, containers, hspec
+ , hspec-discover, interpolatedstring-perl6, mtl, text, time
+ }:
+ mkDerivation {
+ pname = "fuzzy-parse";
+ version = "0.1.0.0";
+ sha256 = "0sy5006m6ylvf01b8bnimql6ragmkdigcgiylxdm6y40a7wz34km";
+ libraryHaskellDepends = [
+ attoparsec base containers mtl text time
+ ];
+ testHaskellDepends = [
+ base hspec hspec-discover interpolatedstring-perl6 text
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Tools for processing unstructured text data";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"fuzzy-timings" = callPackage
({ mkDerivation, base, containers, glpk-hs, HUnit, mtl, QuickCheck
, random, test-framework, test-framework-hunit
@@ -91986,6 +92845,18 @@ self: {
broken = true;
}) {};
+ "generic-lens-lite" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "generic-lens-lite";
+ version = "0.1";
+ sha256 = "07z00phy6h50bb4axlr57kin9l5fygi4q4j33rj5180ai2cbcpc6";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ description = "Monomorphic field lens like with generic-lens";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"generic-lucid-scaffold" = callPackage
({ mkDerivation, base, lucid, text }:
mkDerivation {
@@ -92035,6 +92906,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "generic-optics-lite" = callPackage
+ ({ mkDerivation, base, generic-lens-lite, optics-core }:
+ mkDerivation {
+ pname = "generic-optics-lite";
+ version = "0.1";
+ sha256 = "0vf5sk1narj69pdhjqxjj0w3w3i5lxjxn8p98xp8dj0jws4mx9xi";
+ libraryHaskellDepends = [ base generic-lens-lite optics-core ];
+ testHaskellDepends = [ base optics-core ];
+ description = "Monomorphic field opics like with generic-lens";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"generic-pretty" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, containers
, tasty, tasty-hunit, text, vector
@@ -92655,21 +93538,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "genvalidity-hspec_0_7_0_2" = callPackage
- ({ mkDerivation, base, doctest, genvalidity, genvalidity-property
- , hspec, hspec-core, QuickCheck, transformers, validity
+ "genvalidity-hspec_0_7_0_3" = callPackage
+ ({ mkDerivation, base, genvalidity, genvalidity-property, hspec
+ , hspec-core, QuickCheck, transformers, validity
}:
mkDerivation {
pname = "genvalidity-hspec";
- version = "0.7.0.2";
- sha256 = "0xdp8wr5l4hhqa7p50i37jd9sgns9vlwsivz5ds6x4b86wnw8h4v";
+ version = "0.7.0.3";
+ sha256 = "0mxi1d005xdys4gznm0swqiryw5rmxvy8hll5mjka56vvlb2w6dw";
libraryHaskellDepends = [
base genvalidity genvalidity-property hspec hspec-core QuickCheck
transformers validity
];
testHaskellDepends = [
- base doctest genvalidity genvalidity-property hspec hspec-core
- QuickCheck validity
+ base genvalidity hspec hspec-core QuickCheck
];
description = "Standard spec's for GenValidity instances";
license = stdenv.lib.licenses.mit;
@@ -92823,23 +93705,26 @@ self: {
}) {};
"genvalidity-path" = callPackage
- ({ mkDerivation, base, criterion, genvalidity, genvalidity-hspec
- , hspec, path, QuickCheck, validity-path
+ ({ mkDerivation, base, criterion, genvalidity
+ , genvalidity-criterion, genvalidity-hspec, hspec, path, QuickCheck
+ , validity-path
}:
mkDerivation {
pname = "genvalidity-path";
- version = "0.3.0.2";
- sha256 = "1fj0lc1il2yjlj6wmczvnk505c1dlvz4xw2aml0agkal9lpnvz00";
+ version = "0.3.0.3";
+ sha256 = "10vlhkr75xjdvz9s6b6m3dwi0b7h3vnwvyqwdzp96njl5l6i3944";
libraryHaskellDepends = [
base genvalidity path QuickCheck validity-path
];
testHaskellDepends = [ base genvalidity-hspec hspec path ];
benchmarkHaskellDepends = [
- base criterion genvalidity path QuickCheck
+ base criterion genvalidity genvalidity-criterion path QuickCheck
];
description = "GenValidity support for Path";
license = stdenv.lib.licenses.mit;
- }) {};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {genvalidity-criterion = null;};
"genvalidity-property" = callPackage
({ mkDerivation, base, directory, doctest, filepath, genvalidity
@@ -93247,13 +94132,15 @@ self: {
}:
mkDerivation {
pname = "geos";
- version = "0.2.2";
- sha256 = "15mmgn5c2ls87ajpz11zybv5i3nzva60snws2gxjh19prkhydl5c";
+ version = "0.3.0";
+ sha256 = "1nv4x881ds6492lq1r14fd6isfb65b0cpxvgh6gpy5l0wyyap1gp";
libraryHaskellDepends = [
base bytestring mtl transformers vector
];
librarySystemDepends = [ geos_c ];
- testHaskellDepends = [ base bytestring cassava hspec mtl vector ];
+ testHaskellDepends = [
+ base bytestring cassava hspec mtl transformers vector
+ ];
testSystemDepends = [ geos_c ];
description = "Bindings for GEOS";
license = stdenv.lib.licenses.mit;
@@ -93653,8 +94540,8 @@ self: {
}:
mkDerivation {
pname = "ghc-events-analyze";
- version = "0.2.6";
- sha256 = "1xsr6wa00n2vj7bwb0sgmqrp2v45dfcindwpkf67h8inrvqydkhw";
+ version = "0.2.7";
+ sha256 = "01395ncya596fw6il2ddlziwcygvahswx0q9fjy7j7v7jqgzva3x";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -93896,15 +94783,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghc-lib_8_8_1_20191204" = callPackage
+ "ghc-lib_8_8_2" = callPackage
({ mkDerivation, alex, array, base, binary, bytestring, containers
, deepseq, directory, filepath, ghc-lib-parser, ghc-prim, happy
, hpc, pretty, process, time, transformers, unix
}:
mkDerivation {
pname = "ghc-lib";
- version = "8.8.1.20191204";
- sha256 = "1xj2l9w4jmwxavs5s6p50wciracqlvkx9mg015m8gv1s8sxn6sqh";
+ version = "8.8.2";
+ sha256 = "0dsb41vk9agywzw7nayraq9hhi95vz6aw9yz8jgggh1an4vkg833";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array base binary bytestring containers deepseq directory filepath
@@ -93935,15 +94822,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghc-lib-parser_8_8_1_20191204" = callPackage
+ "ghc-lib-parser_8_8_2" = callPackage
({ mkDerivation, alex, array, base, binary, bytestring, containers
, deepseq, directory, filepath, ghc-prim, happy, hpc, pretty
, process, time, transformers, unix
}:
mkDerivation {
pname = "ghc-lib-parser";
- version = "8.8.1.20191204";
- sha256 = "0acfq70mhhb76v0fhgqnijb4yp4njzxwc3c6d53r594cix3grvdp";
+ version = "8.8.2";
+ sha256 = "0q9pxdwmzm5hr6snpbkn1d3165h0lrdncgid5aqffqwz2hc1d2z0";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array base binary bytestring containers deepseq directory filepath
@@ -93955,6 +94842,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ghc-lib-parser-ex" = callPackage
+ ({ mkDerivation, base, bytestring, directory, extra, filepath
+ , ghc-lib-parser, tasty, tasty-hunit, uniplate
+ }:
+ mkDerivation {
+ pname = "ghc-lib-parser-ex";
+ version = "8.8.2";
+ sha256 = "1651nwlja2n2z03js0plhiihms52j1663lx4wcvzm33synh6xa4j";
+ libraryHaskellDepends = [
+ base bytestring ghc-lib-parser uniplate
+ ];
+ testHaskellDepends = [
+ base directory extra filepath ghc-lib-parser tasty tasty-hunit
+ ];
+ description = "Algorithms on GHC parse trees";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ghc-make" = callPackage
({ mkDerivation, base, process, shake, unordered-containers }:
mkDerivation {
@@ -94376,8 +95281,8 @@ self: {
pname = "ghc-syntax-highlighter";
version = "0.0.5.0";
sha256 = "09h911wqja56b9j9dwjqv7dlim9rm50vra1bkp8zhnlw9fa2s127";
- revision = "1";
- editedCabalFile = "15ykgzk8f1kslvwl645saz7q1d6iv3fk5xyri65v2gaiaih0r640";
+ revision = "2";
+ editedCabalFile = "1l95cyk6cb2bwpy4whm3kgrm7jv3kbygsssip8jj9f683lrm5gf1";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base ghc-lib-parser text ];
testHaskellDepends = [ base hspec text ];
@@ -94391,10 +95296,8 @@ self: {
({ mkDerivation, base, ghc }:
mkDerivation {
pname = "ghc-tcplugins-extra";
- version = "0.3";
- sha256 = "0k1ph8za52mx6f146xhaakn630xrzk42ylchv4b9r04hslhzvb1h";
- revision = "2";
- editedCabalFile = "1hrbvixm25x1dx1ljy9x7f63kcan4ffz885xj6qsl8l070wj96s1";
+ version = "0.3.2";
+ sha256 = "13qhwjbhyi3nrjdvc0fdgxf4kz55my541mz2j3sndpxsmbymqs3m";
libraryHaskellDepends = [ base ghc ];
description = "Utilities for writing GHC type-checker plugins";
license = stdenv.lib.licenses.bsd2;
@@ -94454,8 +95357,8 @@ self: {
}:
mkDerivation {
pname = "ghc-typelits-extra";
- version = "0.3.1";
- sha256 = "0v29lqz6q6wsdrhbcljyvcfdz1i7bvrp341816m2n5kbrkrk48ha";
+ version = "0.3.2";
+ sha256 = "0swb3gil4760dlwyj8vrsrbwsr3jkxxyam7yy4xcih37zbk91qhv";
libraryHaskellDepends = [
base containers ghc ghc-prim ghc-tcplugins-extra
ghc-typelits-knownnat ghc-typelits-natnormalise integer-gmp
@@ -94631,19 +95534,24 @@ self: {
"ghci-dap" = callPackage
({ mkDerivation, array, base, bytestring, containers, deepseq
- , directory, filepath, ghc, ghc-boot, ghc-paths, ghci, haskeline
- , haskell-dap, process, text, time, transformers, unix
+ , directory, filepath, ghc, ghc-boot, ghc-paths, ghc-prim, ghci
+ , haskeline, haskell-dap, process, text, time, transformers, unix
}:
mkDerivation {
pname = "ghci-dap";
- version = "0.0.12.0";
- sha256 = "1a5jcwvxw7fsjdn3p8lrn3ww24bwdjj6x09zi0pc6fzwwjrjkk2d";
- isLibrary = false;
+ version = "0.0.13.0";
+ sha256 = "1zmj5hqc1iqmpi6993snbpbdw9zyg9k2v1kpr31766pnkbynbqp4";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq directory filepath ghc
+ ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap process text
+ time transformers
+ ];
executableHaskellDepends = [
array base bytestring containers deepseq directory filepath ghc
- ghc-boot ghc-paths ghci haskeline haskell-dap process text time
- transformers unix
+ ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap process text
+ time transformers unix
];
description = "ghci-dap is a GHCi having DAP interface";
license = stdenv.lib.licenses.bsd3;
@@ -94799,15 +95707,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghcid_0_8" = callPackage
+ "ghcid_0_8_1" = callPackage
({ mkDerivation, ansi-terminal, base, cmdargs, containers
, directory, extra, filepath, fsnotify, process, tasty, tasty-hunit
, terminal-size, time, unix
}:
mkDerivation {
pname = "ghcid";
- version = "0.8";
- sha256 = "1vyjsxxp0jqqfkxp9r8by9qg794g0nj3k5zg7vlvh5v8xzigv8qg";
+ version = "0.8.1";
+ sha256 = "1k5yk9ba6g2x0wsqx1zb9zviqp9p7myd628fxi2rf4wjh0kkjc4c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -94828,42 +95736,44 @@ self: {
"ghcide" = callPackage
({ mkDerivation, aeson, async, base, binary, bytestring, containers
- , data-default, deepseq, directory, extra, filepath, ghc, ghc-boot
- , ghc-boot-th, ghc-paths, ghc-typelits-knownnat, hashable
- , haskell-lsp, haskell-lsp-types, hie-bios, hslogger, lens
- , lsp-test, mtl, network-uri, optparse-applicative
- , parser-combinators, prettyprinter, prettyprinter-ansi-terminal
- , rope-utf16-splay, safe-exceptions, shake, sorted-list, stm, syb
- , tasty, tasty-expected-failure, tasty-hunit, text, time
- , transformers, unix, unordered-containers, utf8-string
+ , data-default, deepseq, directory, extra, filepath, fuzzy, ghc
+ , ghc-boot, ghc-boot-th, ghc-paths, ghc-typelits-knownnat, gitrev
+ , haddock-library, hashable, haskell-lsp, haskell-lsp-types
+ , hie-bios, hslogger, lens, lsp-test, mtl, network-uri
+ , optparse-applicative, parser-combinators, prettyprinter
+ , prettyprinter-ansi-terminal, regex-tdfa, rope-utf16-splay
+ , safe-exceptions, shake, sorted-list, stm, syb, tasty
+ , tasty-expected-failure, tasty-hunit, text, time, transformers
+ , unix, unordered-containers, utf8-string
}:
mkDerivation {
pname = "ghcide";
- version = "0.0.5";
- sha256 = "014l2gg7ln2q9c7qpga45iicxi5mcyjzllvyiwb4vd8rmbkvr1bm";
- revision = "2";
- editedCabalFile = "157ch1bk9r66pca8fiywwj1brpg2mbnarvlzic3yl829v6kcmrvj";
+ version = "0.0.6";
+ sha256 = "1vp0x4z0444zz8zaibk1r8lb0xjymdqpagm87xsf3csbzkqfhsjb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson async base binary bytestring containers data-default deepseq
- directory extra filepath ghc ghc-boot ghc-boot-th hashable
- haskell-lsp haskell-lsp-types hslogger mtl network-uri
- prettyprinter prettyprinter-ansi-terminal rope-utf16-splay
- safe-exceptions shake sorted-list stm syb text time transformers
- unix unordered-containers utf8-string
+ directory extra filepath fuzzy ghc ghc-boot ghc-boot-th
+ haddock-library hashable haskell-lsp haskell-lsp-types hslogger mtl
+ network-uri prettyprinter prettyprinter-ansi-terminal regex-tdfa
+ rope-utf16-splay safe-exceptions shake sorted-list stm syb text
+ time transformers unix unordered-containers utf8-string
];
executableHaskellDepends = [
base containers data-default directory extra filepath ghc ghc-paths
- haskell-lsp hie-bios hslogger optparse-applicative shake text
+ gitrev haskell-lsp hie-bios hslogger optparse-applicative shake
+ text
];
testHaskellDepends = [
- base bytestring containers directory extra filepath ghc
+ aeson base bytestring containers directory extra filepath ghc
ghc-typelits-knownnat haskell-lsp-types lens lsp-test
parser-combinators tasty tasty-expected-failure tasty-hunit text
];
description = "The core of an IDE";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ghcjs-ajax" = callPackage
@@ -95429,13 +96339,13 @@ self: {
"gi-gdkx11" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
- , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk3, haskell-gi
+ , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk4-x11, haskell-gi
, haskell-gi-base, haskell-gi-overloading, text, transformers
}:
mkDerivation {
pname = "gi-gdkx11";
- version = "3.0.9";
- sha256 = "0z3vwwpv8a85nvg2bc4cdaa8w4jmdl5mm5bxfpwmssyxcnm1xdnc";
+ version = "4.0.1";
+ sha256 = "1z7d8vs4l1gzm0nbi0ir2q76jcc9s685s2nhbfflyjsvclr91spm";
setupHaskellDepends = [
base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi
];
@@ -95444,10 +96354,12 @@ self: {
gi-xlib haskell-gi haskell-gi-base haskell-gi-overloading text
transformers
];
- libraryPkgconfigDepends = [ gtk3 ];
+ libraryPkgconfigDepends = [ gtk4-x11 ];
description = "GdkX11 bindings";
license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) gtk3;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {gtk4-x11 = null;};
"gi-ggit" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-gio
@@ -95774,23 +96686,24 @@ self: {
}) {gtk4 = null;};
"gi-gtk-declarative" = callPackage
- ({ mkDerivation, async, base, data-default-class, gi-gdk, gi-glib
- , gi-gobject, gi-gtk, haskell-gi, haskell-gi-base
+ ({ mkDerivation, async, base, containers, data-default-class
+ , gi-gdk, gi-glib, gi-gobject, gi-gtk, haskell-gi, haskell-gi-base
, haskell-gi-overloading, hedgehog, mtl, safe-exceptions, stm, text
, unordered-containers, vector
}:
mkDerivation {
pname = "gi-gtk-declarative";
- version = "0.6.0";
- sha256 = "1637w7vfzjxwqgwfan793j03h7g39xci4v1vg54y9ar05pp0ggv8";
+ version = "0.6.3";
+ sha256 = "1cxh1r7ylj6d13nyjxdkvgp7h6fqzbi4zndl95lykki129jhfwkk";
libraryHaskellDepends = [
- base data-default-class gi-glib gi-gobject gi-gtk haskell-gi
- haskell-gi-base haskell-gi-overloading mtl text
+ base containers data-default-class gi-glib gi-gobject gi-gtk
+ haskell-gi haskell-gi-base haskell-gi-overloading mtl text
unordered-containers vector
];
testHaskellDepends = [
- async base gi-gdk gi-glib gi-gobject gi-gtk hedgehog
- safe-exceptions stm text unordered-containers vector
+ async base containers gi-gdk gi-glib gi-gobject gi-gtk
+ haskell-gi-base hedgehog mtl safe-exceptions stm text
+ unordered-containers vector
];
description = "Declarative GTK+ programming in Haskell";
license = stdenv.lib.licenses.mpl20;
@@ -95805,8 +96718,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk-declarative-app-simple";
- version = "0.6.0";
- sha256 = "0szfmpgsslq5cs5q8574gpmm897vvs51g4wvdinnkglbf70254kf";
+ version = "0.6.3";
+ sha256 = "1dyz6sfj352lacs3bk4lxbv9dmlpqp27kzl9vz8bq4321d5nfav9";
libraryHaskellDepends = [
async base gi-gdk gi-glib gi-gobject gi-gtk gi-gtk-declarative
haskell-gi haskell-gi-base haskell-gi-overloading pipes
@@ -96472,29 +97385,29 @@ self: {
"git-annex" = callPackage
({ mkDerivation, aeson, async, attoparsec, aws, base, blaze-builder
- , bloomfilter, byteable, bytestring, Cabal, case-insensitive
+ , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive
, clientsession, concurrent-output, conduit, connection, containers
, crypto-api, cryptonite, curl, data-default, DAV, dbus, deepseq
, directory, disk-free-space, dlist, edit-distance, exceptions
- , fdo-notify, feed, filepath, free, git, gnupg, hinotify, hslogger
- , http-client, http-client-tls, http-conduit, http-types, IfElse
- , lsof, magic, memory, microlens, monad-control, monad-logger
- , mountpoints, mtl, network, network-info, network-multicast
- , network-uri, old-locale, openssh, optparse-applicative
- , path-pieces, perl, persistent, persistent-sqlite
- , persistent-template, process, QuickCheck, random, regex-tdfa
- , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare
- , socks, split, stm, stm-chans, tagsoup, tasty, tasty-hunit
- , tasty-quickcheck, tasty-rerun, template-haskell, text, time
- , torrent, transformers, unix, unix-compat, unliftio-core
- , unordered-containers, utf8-string, uuid, vector, wai, wai-extra
- , warp, warp-tls, wget, which, yesod, yesod-core, yesod-form
- , yesod-static
+ , fdo-notify, feed, filepath, filepath-bytestring, free, git, gnupg
+ , hinotify, hslogger, http-client, http-client-tls, http-conduit
+ , http-types, IfElse, lsof, magic, memory, microlens, monad-control
+ , monad-logger, mountpoints, mtl, network, network-info
+ , network-multicast, network-uri, old-locale, openssh
+ , optparse-applicative, path-pieces, perl, persistent
+ , persistent-sqlite, persistent-template, process, QuickCheck
+ , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi
+ , securemem, shakespeare, socks, split, stm, stm-chans, tagsoup
+ , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun
+ , template-haskell, text, time, torrent, transformers, unix
+ , unix-compat, unliftio-core, unordered-containers, utf8-string
+ , uuid, vector, wai, wai-extra, warp, warp-tls, wget, which, yesod
+ , yesod-core, yesod-form, yesod-static
}:
mkDerivation {
pname = "git-annex";
- version = "7.20191218";
- sha256 = "1dy5255x2cx68313p6vchqy5q1l0na8ckf5mkfi080hkhq8vj2q6";
+ version = "7.20191230";
+ sha256 = "1xsd4vhiv3zkcqjh2pxhbkjx75hcalcc9bpdlfc27wzxsxyrwz12";
configureFlags = [
"-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime"
"-f-networkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser"
@@ -96504,16 +97417,17 @@ self: {
isExecutable = true;
setupHaskellDepends = [
base bytestring Cabal data-default directory exceptions filepath
- hslogger IfElse process split transformers unix-compat utf8-string
+ filepath-bytestring hslogger IfElse process split transformers
+ unix-compat utf8-string
];
executableHaskellDepends = [
aeson async attoparsec aws base blaze-builder bloomfilter byteable
bytestring case-insensitive clientsession concurrent-output conduit
connection containers crypto-api cryptonite data-default DAV dbus
deepseq directory disk-free-space dlist edit-distance exceptions
- fdo-notify feed filepath free hinotify hslogger http-client
- http-client-tls http-conduit http-types IfElse magic memory
- microlens monad-control monad-logger mountpoints mtl network
+ fdo-notify feed filepath filepath-bytestring free hinotify hslogger
+ http-client http-client-tls http-conduit http-types IfElse magic
+ memory microlens monad-control monad-logger mountpoints mtl network
network-info network-multicast network-uri old-locale
optparse-applicative path-pieces persistent persistent-sqlite
persistent-template process QuickCheck random regex-tdfa resourcet
@@ -96524,7 +97438,7 @@ self: {
wai-extra warp warp-tls yesod yesod-core yesod-form yesod-static
];
executableSystemDepends = [
- curl git gnupg lsof openssh perl rsync wget which
+ bup curl git gnupg lsof openssh perl rsync wget which
];
preConfigure = "export HOME=$TEMPDIR; patchShebangs .";
postBuild = ''
@@ -96537,7 +97451,7 @@ self: {
description = "manage files with git, without checking their contents into git";
license = stdenv.lib.licenses.agpl3;
maintainers = with stdenv.lib.maintainers; [ peti ];
- }) {inherit (pkgs) curl; inherit (pkgs) git;
+ }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git;
inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh;
inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget;
inherit (pkgs) which;};
@@ -96548,20 +97462,16 @@ self: {
}:
mkDerivation {
pname = "git-brunch";
- version = "1.0.6.0";
- sha256 = "1zhmzw1vhdxcx69l97xlm8ylfk79f95g83c3nhp39g2lj7z0wqi0";
+ version = "1.1.0.0";
+ sha256 = "0nkyq5bgq6mc27j4qrydwjyb8zhhgiyjdbpk9d1xfb0z4c817131";
isLibrary = false;
isExecutable = true;
- libraryHaskellDepends = [
- base brick microlens process vector vty
- ];
executableHaskellDepends = [
base brick microlens process vector vty
];
testHaskellDepends = [
base brick hspec microlens process vector vty
];
- doHaddock = false;
description = "git checkout command-line tool";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -96751,8 +97661,8 @@ self: {
}:
mkDerivation {
pname = "git-mediate";
- version = "1.0.5";
- sha256 = "1g5q66z47vrkygvaqwlr15xlkav93ax0f6qk6fcaixg74ny1mw53";
+ version = "1.0.8";
+ sha256 = "0g81v358vqlfsz5bx8arnzjn0bnjd9k835mn8z0kp4d341z0y8l1";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -96761,6 +97671,8 @@ self: {
];
description = "Tool to help resolving git conflicts";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"git-monitor" = callPackage
@@ -96838,16 +97750,16 @@ self: {
}) {};
"git-repair" = callPackage
- ({ mkDerivation, async, base, bytestring, Cabal, containers
- , data-default, directory, exceptions, filepath, hslogger, IfElse
- , mtl, network, network-uri, optparse-applicative, process
- , QuickCheck, split, text, time, transformers, unix, unix-compat
- , utf8-string
+ ({ mkDerivation, async, attoparsec, base, bytestring, Cabal
+ , containers, data-default, deepseq, directory, exceptions
+ , filepath, filepath-bytestring, hslogger, IfElse, mtl, network
+ , network-uri, optparse-applicative, process, QuickCheck, split
+ , text, time, transformers, unix, unix-compat, utf8-string
}:
mkDerivation {
pname = "git-repair";
- version = "1.20170626";
- sha256 = "0np6jd1d8qwr0ay6hx50fb35149ji67576nk7ds906hna8fjnkcb";
+ version = "1.20200102";
+ sha256 = "13xlnfwaf914n4d57c4q6n1dkhw7jz1grrnw6shqvh3v09ywqsnz";
isLibrary = false;
isExecutable = true;
setupHaskellDepends = [
@@ -96855,13 +97767,13 @@ self: {
hslogger IfElse mtl process split unix unix-compat
];
executableHaskellDepends = [
- async base bytestring containers data-default directory exceptions
- filepath hslogger IfElse mtl network network-uri
- optparse-applicative process QuickCheck split text time
- transformers unix unix-compat utf8-string
+ async attoparsec base bytestring containers data-default deepseq
+ directory exceptions filepath filepath-bytestring hslogger IfElse
+ mtl network network-uri optparse-applicative process QuickCheck
+ split text time transformers unix unix-compat utf8-string
];
description = "repairs a damanged git repisitory";
- license = "GPL";
+ license = stdenv.lib.licenses.agpl3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -97703,8 +98615,8 @@ self: {
}:
mkDerivation {
pname = "glabrous";
- version = "2.0.0";
- sha256 = "001w81x2xmmd4vwp0m0142xgwyx60pr3mjx76czbc3by6iv41l5b";
+ version = "2.0.1";
+ sha256 = "068777yrxwkxc4lkiwyh7ndnc0wvfdngmqs7974p8ys0930qnwww";
libraryHaskellDepends = [
aeson aeson-pretty attoparsec base bytestring cereal cereal-text
either text unordered-containers
@@ -98018,8 +98930,10 @@ self: {
}:
mkDerivation {
pname = "glirc";
- version = "2.33.1";
- sha256 = "0vzrx0904s8r7srld4c3wkw3j0rx3l6jszz3m5friwkdwfs60a83";
+ version = "2.34";
+ sha256 = "1nmkwzifch01pnzxn3rm0gvxq9xvwvxkvqfwsdsj6zjmiz68w3ca";
+ revision = "1";
+ editedCabalFile = "13dm3cc5m7g7qhpasq2jbzm7x4dizjipjdsy5amghglrs8m0r90y";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal filepath ];
@@ -98187,6 +99101,8 @@ self: {
pname = "gloss";
version = "1.13.1.1";
sha256 = "1bmjwd2vfbxfypr2g23810yyp921m30wxbb6f3m0wkk65iypjnls";
+ revision = "1";
+ editedCabalFile = "1bcjm3issssqxd60jd2y6032y8plcs0sm3wbnha1f6fa3z46z9n0";
libraryHaskellDepends = [
base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
];
@@ -98361,6 +99277,8 @@ self: {
pname = "gloss-rendering";
version = "1.13.1.1";
sha256 = "1pkzm7zzfdya8cz3h66akx8785h3vxbnyb815liw4nilvwg01d9x";
+ revision = "1";
+ editedCabalFile = "10x83cpxp6yrmamjg4kjm3pzlhh6zj2rdw686py0vcx0jrjy3qg7";
libraryHaskellDepends = [
base bmp bytestring containers GLUT OpenGL
];
@@ -98699,8 +99617,8 @@ self: {
}:
mkDerivation {
pname = "gnuplot";
- version = "0.5.6";
- sha256 = "1g6xgnlkh17avivn1rlq7l2nvs26dvrbx4rkfld0bf6kyqaqwrgp";
+ version = "0.5.6.1";
+ sha256 = "1rfq94lnsyjr8y9p5r56jpllv3p8rvh9xxzjji016b6r5adi8cnb";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -101403,8 +102321,8 @@ self: {
}:
mkDerivation {
pname = "google-oauth2-jwt";
- version = "0.3.1";
- sha256 = "121g7fsdcnv65gp81z450dqqw6ii75pwn3cbilwx5yv4mm571mvi";
+ version = "0.3.2";
+ sha256 = "1njb9j6pb656drchi8qc94pniwph2bplnb667ga719yxmzm4256s";
libraryHaskellDepends = [
base base64-bytestring bytestring HsOpenSSL RSA text unix-time
];
@@ -101785,8 +102703,8 @@ self: {
}:
mkDerivation {
pname = "gothic";
- version = "0.1.2";
- sha256 = "1glfjcisrm97hyja6ijzikmrkillgvrk3xn0gmsmrnfp8mn5jmjp";
+ version = "0.1.3";
+ sha256 = "0hp6p1car5kfzvz24aw04jpgplpyxj3lzgr9hdkj0q24crciwrps";
libraryHaskellDepends = [
aeson base binary bytestring connection exceptions hashable
http-client http-client-tls http-conduit http-types lens lens-aeson
@@ -102728,8 +103646,8 @@ self: {
({ mkDerivation, base, containers, json, text }:
mkDerivation {
pname = "graphql-w-persistent";
- version = "0.7.0.0";
- sha256 = "02qbwkbr8hckr6z9ivszdnwlilz7mkh6zinb33s7gas7iwzkf9jc";
+ version = "0.8.0.0";
+ sha256 = "1qlx89igjh37hd9az8wm8yihgnw5djamq081g8cav0rc0yh982k5";
libraryHaskellDepends = [ base containers json text ];
description = "GraphQL interface middleware for (SQL) databases";
license = stdenv.lib.licenses.isc;
@@ -103077,6 +103995,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "greskell_1_0_0_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, doctest, doctest-discover
+ , exceptions, greskell-core, hashable, hint, hspec, semigroups
+ , text, transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "greskell";
+ version = "1.0.0.1";
+ sha256 = "070qqvp4dp7zng6yr1dipcranqhgccnps6k767ag6nh6cprz09qw";
+ libraryHaskellDepends = [
+ aeson base exceptions greskell-core hashable semigroups text
+ transformers unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring doctest doctest-discover greskell-core hint
+ hspec text unordered-containers
+ ];
+ description = "Haskell binding for Gremlin graph query language";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"greskell-core" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, doctest
, doctest-discover, hashable, hspec, QuickCheck, scientific
@@ -103084,8 +104024,8 @@ self: {
}:
mkDerivation {
pname = "greskell-core";
- version = "0.1.2.7";
- sha256 = "1q7schkwv832wk4yc831q7z6nmnvzsgh9hfscb27hbfdrw0lafd7";
+ version = "0.1.3.1";
+ sha256 = "0jp6xzr601y6ngngbra0z2v99jxgp6y88dq4kb8fh25phyajzlmw";
libraryHaskellDepends = [
aeson base containers hashable scientific semigroups text
unordered-containers uuid vector
@@ -103105,8 +104045,8 @@ self: {
}:
mkDerivation {
pname = "greskell-websocket";
- version = "0.1.1.2";
- sha256 = "1rydw93dscnq41a1j4l7fchbpxgbqgf2kx8c58kb0m8qxi7v6qlh";
+ version = "0.1.2.1";
+ sha256 = "0wz4x7n64cwdjsmyziy9v76aa7p3kxjmbd9bfxc4rpqdjyfk34px";
libraryHaskellDepends = [
aeson async base base64-bytestring bytestring greskell-core
hashtables safe-exceptions stm text unordered-containers uuid
@@ -104058,6 +104998,8 @@ self: {
];
description = "GTFS RealTime protobafs library (autogenerated from .proto file)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gtk" = callPackage
@@ -105041,7 +105983,7 @@ self: {
broken = true;
}) {};
- "hOpenPGP_2_9" = callPackage
+ "hOpenPGP_2_9_2" = callPackage
({ mkDerivation, aeson, asn1-encoding, attoparsec, base
, base16-bytestring, bifunctors, binary, binary-conduit, bytestring
, bzlib, conduit, conduit-extra, containers, criterion
@@ -105055,8 +105997,8 @@ self: {
}:
mkDerivation {
pname = "hOpenPGP";
- version = "2.9";
- sha256 = "0xdb1ggd7pw0faan8cs3hs29sqb3bgjfhxqs5x43hh1k64k3vdjk";
+ version = "2.9.2";
+ sha256 = "0bwsy00n1hpa2q2002bgy712x6jl468jyibxk0dc1k8718yndirr";
libraryHaskellDepends = [
aeson asn1-encoding attoparsec base base16-bytestring bifunctors
binary binary-conduit bytestring bzlib conduit conduit-extra
@@ -106272,13 +107214,13 @@ self: {
, deepseq, directory, ed25519, extensible-exceptions, filepath
, ghc-prim, hashable, HTTP, HUnit, MissingH, mtl, network
, network-uri, old-locale, old-time, parsec, pretty, process
- , random, regex-compat, split, stm, tar, template-haskell, time
- , transformers, unix, xml, zlib
+ , random, regex-compat, split, stm, tar, template-haskell, text
+ , time, transformers, unix, xml, zlib
}:
mkDerivation {
pname = "hackport";
- version = "0.6.1";
- sha256 = "1r4n23da767gkcg1s8sjk359kaz9y8sr1pxpdm1lfb7v43rymf5m";
+ version = "0.6.3";
+ sha256 = "1bj4jafr81xl2dvc8ym29dnp9vmbv7njaqkkfypzvm0ws09mcvh1";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -106286,7 +107228,7 @@ self: {
bytestring containers cryptohash deepseq directory ed25519
extensible-exceptions filepath ghc-prim hashable HTTP MissingH mtl
network network-uri old-locale old-time parsec pretty process
- random regex-compat split stm tar template-haskell time
+ random regex-compat split stm tar template-haskell text time
transformers unix xml zlib
];
testHaskellDepends = [
@@ -107208,21 +108150,19 @@ self: {
}) {};
"hakyll-dhall" = callPackage
- ({ mkDerivation, base, binary, cborg, containers
- , data-default-class, dhall, filepath, hakyll, lens-family-core
- , mtl, prettyprinter, text, transformers
+ ({ mkDerivation, base, binary, containers, data-default-class
+ , dhall, filepath, hakyll, microlens, microlens-th, mtl
+ , prettyprinter, text, transformers
}:
mkDerivation {
pname = "hakyll-dhall";
- version = "0.2.3.0";
- sha256 = "1a8aq1gmj6mwpv43s2vr7asp6v6bflms1vhd9dvs04jfnw3jbvpz";
- revision = "1";
- editedCabalFile = "1r2v4s90c3g9lhbrb9ps4za3k836brd0s41q8jimbiz7wrd0amy1";
+ version = "0.2.4.0";
+ sha256 = "0p4k3b8x4d6pgybfwy0kx9c5hlqqm57bch45j7vl421zlln7yqrx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base binary cborg containers data-default-class dhall filepath
- hakyll lens-family-core mtl prettyprinter text transformers
+ base binary containers data-default-class dhall filepath hakyll
+ microlens microlens-th mtl prettyprinter text transformers
];
executableHaskellDepends = [ base dhall hakyll ];
description = "Dhall compiler for Hakyll";
@@ -107340,8 +108280,6 @@ self: {
];
description = "Hakyll SASS compiler over hsass";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hakyll-series" = callPackage
@@ -107443,10 +108381,10 @@ self: {
}:
mkDerivation {
pname = "hal";
- version = "0.3.0";
- sha256 = "1mc7h9fnf75dw7ph4b2iqqvx23xw6wm0ls6c90804vdqcpjzapqh";
+ version = "0.4.1";
+ sha256 = "09wmpscvwfdy57haszwnjxwqxqqf5s458h0b1pkk90pskfg7lf1d";
revision = "1";
- editedCabalFile = "08pfvlqvsslfrxfk7zmvqc3b2dzar2az9l8w5mwrxv7flskzr7ii";
+ editedCabalFile = "0n5b57l3q6wpzd7kbsn11802y1mcpsrs01sszsd5l4l57hkc71gd";
libraryHaskellDepends = [
aeson base bytestring containers envy exceptions http-conduit
http-types mtl text time
@@ -107867,8 +108805,10 @@ self: {
({ mkDerivation, base, containers, random }:
mkDerivation {
pname = "hanabi-dealer";
- version = "0.2.0.0";
- sha256 = "086mvplnkapzc697mmqxi2z4fhm4ix7kjq4fkqzv1yj592qz4q9h";
+ version = "0.3.2.0";
+ sha256 = "0jaw7s82l0nsr1axqkngcc4wfnmh790jdqbnsknwvyk6anvbpacb";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [ base containers random ];
description = "Hanabi card game";
license = stdenv.lib.licenses.bsd3;
@@ -109343,26 +110283,6 @@ self: {
}:
mkDerivation {
pname = "hasbolt";
- version = "0.1.4.0";
- sha256 = "1varlzj2c0sfxza6wfacrkjxq022qdvbzf8zhi3zbv1fnqqcvz0j";
- libraryHaskellDepends = [
- base binary bytestring connection containers data-binary-ieee754
- data-default mtl network text
- ];
- testHaskellDepends = [
- base bytestring containers hex hspec QuickCheck text
- ];
- description = "Haskell driver for Neo4j 3+ (BOLT protocol)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hasbolt_0_1_4_1" = callPackage
- ({ mkDerivation, base, binary, bytestring, connection, containers
- , data-binary-ieee754, data-default, hex, hspec, mtl, network
- , QuickCheck, text
- }:
- mkDerivation {
- pname = "hasbolt";
version = "0.1.4.1";
sha256 = "1p2gffh6ym221sgrhlns209p6s0j3qbmam5a0b3s06663qgzvh5b";
libraryHaskellDepends = [
@@ -109374,7 +110294,6 @@ self: {
];
description = "Haskell driver for Neo4j 3+ (BOLT protocol)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasbolt-extras" = callPackage
@@ -109385,8 +110304,8 @@ self: {
}:
mkDerivation {
pname = "hasbolt-extras";
- version = "0.0.1.0";
- sha256 = "1d5n60nsvzkgf4wf2fy99qgp6bby4bmhldycda0hlgkch1m6lqqc";
+ version = "0.0.1.2";
+ sha256 = "1bcp0v9m5miy26yfk0bm5j2zwc3rnijxlbym0iv599m25fhfqxjk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -110126,20 +111045,25 @@ self: {
broken = true;
}) {};
- "haskeline_0_7_5_0" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, filepath
- , process, stm, terminfo, transformers, unix
+ "haskeline_0_8_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory
+ , exceptions, filepath, HUnit, process, stm, terminfo, text
+ , transformers, unix
}:
mkDerivation {
pname = "haskeline";
- version = "0.7.5.0";
- sha256 = "1inyq7qwih0hnqlm6gy769vsxzjpvqx9ry390dmcvvql9520hrfj";
- revision = "1";
- editedCabalFile = "0i8fyhk7fvz2bxnh5xsmdw5rr7yywzc2wv115034q1g4sb018zrd";
+ version = "0.8.0.0";
+ sha256 = "0gqsa5s0drim9m42hv4wrq61mnvcdylxysfxfw3acncwilfrn9pb";
configureFlags = [ "-fterminfo" ];
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [
- base bytestring containers directory filepath process stm terminfo
- transformers unix
+ base bytestring containers directory exceptions filepath process
+ stm terminfo transformers unix
+ ];
+ executableHaskellDepends = [ base containers ];
+ testHaskellDepends = [
+ base bytestring containers HUnit process text unix
];
description = "A command-line interface for user input, written in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -110483,8 +111407,8 @@ self: {
}:
mkDerivation {
pname = "haskell-dap";
- version = "0.0.13.0";
- sha256 = "1hyy1jx5b7k3rhk3xmr4nsx2ay7jgq70nxy01a7ap1y4gzy9pjns";
+ version = "0.0.14.0";
+ sha256 = "1n4w7kvsy7dri07840i6rm6b7fl425f8r3fglbcss42g674k35di";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ];
@@ -110500,31 +111424,32 @@ self: {
"haskell-debug-adapter" = callPackage
({ mkDerivation, aeson, async, base, bytestring, Cabal, clock
, cmdargs, conduit, conduit-extra, containers, data-default
- , directory, filepath, fsnotify, haskell-dap, hslogger, hspec, lens
- , MissingH, mtl, parsec, process, resourcet, safe-exceptions, text
+ , directory, filepath, fsnotify, ghci-dap, haskell-dap, hslogger
+ , hspec, lens, mtl, parsec, process, resourcet, safe-exceptions
+ , text
}:
mkDerivation {
pname = "haskell-debug-adapter";
- version = "0.0.31.0";
- sha256 = "1qxbpllkcf9ybp94f3bhy2w5l6164na0j72c2d4r1va0bzmni4lp";
+ version = "0.0.32.0";
+ sha256 = "1pxq0aazjdlda8hwsmbsqlg509s44v1c4ql06vf6i6jhwflbxp9r";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson async base bytestring Cabal clock cmdargs conduit
conduit-extra containers data-default directory filepath fsnotify
- haskell-dap hslogger lens MissingH mtl parsec process resourcet
+ ghci-dap haskell-dap hslogger lens mtl parsec process resourcet
safe-exceptions text
];
executableHaskellDepends = [
aeson async base bytestring Cabal clock cmdargs conduit
conduit-extra containers data-default directory filepath fsnotify
- haskell-dap hslogger lens MissingH mtl parsec process resourcet
+ ghci-dap haskell-dap hslogger lens mtl parsec process resourcet
safe-exceptions text
];
testHaskellDepends = [
aeson async base bytestring Cabal clock cmdargs conduit
conduit-extra containers data-default directory filepath fsnotify
- haskell-dap hslogger hspec lens MissingH mtl parsec process
+ ghci-dap haskell-dap hslogger hspec lens mtl parsec process
resourcet safe-exceptions text
];
description = "Haskell Debug Adapter";
@@ -110929,36 +111854,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "haskell-lsp_0_18_0_0" = callPackage
- ({ mkDerivation, aeson, async, attoparsec, base, bytestring
- , containers, data-default, directory, filepath, hashable
- , haskell-lsp-types, hslogger, hspec, hspec-discover, lens, mtl
- , network-uri, QuickCheck, quickcheck-instances, rope-utf16-splay
- , sorted-list, stm, temporary, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "haskell-lsp";
- version = "0.18.0.0";
- sha256 = "0q9xpjgr3n7svhd9f7mmkw113avswvfm08fnbijdr1sblipd12sl";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson async attoparsec base bytestring containers data-default
- directory filepath hashable haskell-lsp-types hslogger lens mtl
- network-uri rope-utf16-splay sorted-list stm temporary text time
- unordered-containers
- ];
- testHaskellDepends = [
- aeson base bytestring containers data-default directory filepath
- hashable hspec lens network-uri QuickCheck quickcheck-instances
- rope-utf16-splay sorted-list stm text
- ];
- testToolDepends = [ hspec-discover ];
- description = "Haskell library for the Microsoft Language Server Protocol";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"haskell-lsp_0_19_0_0" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, bytestring
, containers, data-default, directory, filepath, hashable
@@ -111028,24 +111923,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "haskell-lsp-types_0_18_0_0" = callPackage
- ({ mkDerivation, aeson, base, bytestring, data-default, deepseq
- , filepath, hashable, lens, network-uri, scientific, text
- , unordered-containers
- }:
- mkDerivation {
- pname = "haskell-lsp-types";
- version = "0.18.0.0";
- sha256 = "1ypa3gxxcg7dl905d4nprcqzw2fcl7z7xy1hpg5har1dw3w9fyiq";
- libraryHaskellDepends = [
- aeson base bytestring data-default deepseq filepath hashable lens
- network-uri scientific text unordered-containers
- ];
- description = "Haskell library for the Microsoft Language Server Protocol, data types";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"haskell-lsp-types_0_19_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, data-default, deepseq
, filepath, hashable, lens, network-uri, scientific, text
@@ -111568,15 +112445,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "haskell-src-exts_1_22_0" = callPackage
+ "haskell-src-exts_1_23_0" = callPackage
({ mkDerivation, array, base, containers, directory, filepath
, ghc-prim, happy, mtl, pretty, pretty-show, smallcheck, tasty
, tasty-golden, tasty-smallcheck
}:
mkDerivation {
pname = "haskell-src-exts";
- version = "1.22.0";
- sha256 = "1wc3w1kkrlagbbbgqflqx4xwqk36wsng7r3wyjflvlas4sf3xmg0";
+ version = "1.23.0";
+ sha256 = "09048bhv7ajfsnjlzaz445yb65n2pc4l3yn7nmmrnkdy1f0gn2cm";
libraryHaskellDepends = [ array base ghc-prim pretty ];
libraryToolDepends = [ happy ];
testHaskellDepends = [
@@ -111661,6 +112538,8 @@ self: {
libraryHaskellDepends = [ base haskell-src-exts ];
description = "A simplified view on the haskell-src-exts AST";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-src-exts-util" = callPackage
@@ -111706,6 +112585,8 @@ self: {
pname = "haskell-src-meta";
version = "0.8.5";
sha256 = "1csqp3n7330rhia9msyw34z7qwwj64gdy5qlv8w4jbm49dap24ik";
+ revision = "1";
+ editedCabalFile = "00znr8mrlbyn0n1bw4c82rv82pq5ngkk7kw9cgk13pghf93hwwv7";
libraryHaskellDepends = [
base haskell-src-exts pretty syb template-haskell th-orphans
];
@@ -111737,15 +112618,19 @@ self: {
}) {};
"haskell-stack-trace-plugin" = callPackage
- ({ mkDerivation, base, ghc }:
+ ({ mkDerivation, base, bytestring, ghc, hspec, hspec-discover
+ , typed-process
+ }:
mkDerivation {
pname = "haskell-stack-trace-plugin";
- version = "0.1.0.0";
- sha256 = "0rg920cc9l7vn29w10hdy68aw4jaxr64h3nxs8jb738h0n23bf50";
+ version = "0.1.1.1";
+ sha256 = "0mm1nyhlia00vawpwcq6dda0j9d8sgd1ls4xin0s84jplw5z9hwz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ghc ];
executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base bytestring hspec typed-process ];
+ testToolDepends = [ hspec-discover ];
description = "haskell-stack-trace-plugin";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -111770,8 +112655,8 @@ self: {
}:
mkDerivation {
pname = "haskell-to-elm";
- version = "0.2.0.0";
- sha256 = "0y3ayjfspajnsk6r47fkkqafbf15f9lshgizihndrnb3smkyzgw9";
+ version = "0.2.1.0";
+ sha256 = "0a6h1hmfkwhi6yfbzb71yifmhvapbnrlwj5yp0kjp88nr1cnh69h";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -112717,12 +113602,12 @@ self: {
}) {};
"haskellish" = callPackage
- ({ mkDerivation, base, haskell-src-exts }:
+ ({ mkDerivation, base, haskell-src-exts, mtl }:
mkDerivation {
pname = "haskellish";
- version = "0.1.2";
- sha256 = "0qsd65pf3nfadf98nnabya0x9li0ldq1b3fpdy36k97pmf44x0qw";
- libraryHaskellDepends = [ base haskell-src-exts ];
+ version = "0.2.0";
+ sha256 = "108kjp66pzpynbh8pn2dr5y91bmb362c788ghj0i6fbfyiawdg20";
+ libraryHaskellDepends = [ base haskell-src-exts mtl ];
description = "For parsing Haskell-ish languages";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -113052,8 +113937,8 @@ self: {
}:
mkDerivation {
pname = "haskoin-core";
- version = "0.9.7";
- sha256 = "04bh21sdkqzp7rlvs49wqq9lj8cyf2mm8cdjyg3zr4kqsfbw2z73";
+ version = "0.9.8";
+ sha256 = "1x5ylla9910gvrydhfvzvj7x5w7xjy9bf3rakcqskcn0v4chx9pr";
libraryHaskellDepends = [
aeson array base base16-bytestring bytestring cereal conduit
containers cryptonite entropy hashable hspec HUnit memory mtl
@@ -113072,6 +113957,37 @@ self: {
broken = true;
}) {};
+ "haskoin-core_0_10_0" = callPackage
+ ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring
+ , cereal, conduit, containers, cryptonite, deepseq, entropy
+ , hashable, hspec, hspec-discover, HUnit, memory, mtl, murmur3
+ , network, QuickCheck, safe, scientific, secp256k1-haskell, split
+ , string-conversions, text, time, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "haskoin-core";
+ version = "0.10.0";
+ sha256 = "0gb9z0ncy7ff93k41yvbj0i33akpk5vcm477ydpn7sandq3m40nv";
+ libraryHaskellDepends = [
+ aeson array base base16-bytestring bytestring cereal conduit
+ containers cryptonite deepseq entropy hashable hspec HUnit memory
+ mtl murmur3 network QuickCheck safe scientific secp256k1-haskell
+ split string-conversions text time transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring cereal containers deepseq hspec HUnit mtl
+ QuickCheck safe split string-conversions text unordered-containers
+ vector
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Bitcoin & Bitcoin Cash library for Haskell";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"haskoin-crypto" = callPackage
({ mkDerivation, base, binary, byteable, bytestring, containers
, cryptohash, haskoin-util, HUnit, mtl, QuickCheck, test-framework
@@ -113106,8 +114022,8 @@ self: {
}:
mkDerivation {
pname = "haskoin-node";
- version = "0.9.14";
- sha256 = "17nd6spm2bskgnxp2v7jfb66ds2qgxzhzlvd4yhgbf63kqfhlkjl";
+ version = "0.9.15";
+ sha256 = "0bdyqqhxjbz3lqj5q7cg9w9i40xvp9p9185g3dlhqn598s65mppx";
libraryHaskellDepends = [
base bytestring cereal conduit conduit-extra containers
data-default hashable haskoin-core monad-logger mtl network nqe
@@ -113180,13 +114096,12 @@ self: {
, haskoin-node, hspec, hspec-discover, http-types, monad-logger
, mtl, network, nqe, optparse-applicative, random, resourcet
, rocksdb-haskell, rocksdb-query, scotty, string-conversions, text
- , time, transformers, unliftio, unordered-containers, vector, wai
- , warp
+ , time, transformers, unliftio, unordered-containers, wai, warp
}:
mkDerivation {
pname = "haskoin-store";
- version = "0.19.2";
- sha256 = "0jrjjxydmm9pncqihks2dl2k22lmryw8cxjdsg3hpkqkzdz8brvi";
+ version = "0.19.5";
+ sha256 = "1pxplfipl4n6vq8s8al0acfrxnbpf8yhya6hpfymszfbvcyqkhl8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -113194,21 +114109,21 @@ self: {
hashable haskoin-core haskoin-node http-types monad-logger mtl
network nqe random resourcet rocksdb-haskell rocksdb-query scotty
string-conversions text time transformers unliftio
- unordered-containers vector wai warp
+ unordered-containers wai warp
];
executableHaskellDepends = [
aeson base bytestring cereal conduit containers data-default
filepath hashable haskoin-core haskoin-node http-types monad-logger
mtl network nqe optparse-applicative random resourcet
rocksdb-haskell rocksdb-query scotty string-conversions text time
- transformers unliftio unordered-containers vector wai warp
+ transformers unliftio unordered-containers wai warp
];
testHaskellDepends = [
aeson base bytestring cereal conduit containers data-default
hashable haskoin-core haskoin-node hspec http-types monad-logger
mtl network nqe random resourcet rocksdb-haskell rocksdb-query
scotty string-conversions text time transformers unliftio
- unordered-containers vector wai warp
+ unordered-containers wai warp
];
testToolDepends = [ hspec-discover ];
description = "Storage and index for Bitcoin and Bitcoin Cash";
@@ -113472,6 +114387,8 @@ self: {
pname = "hasktags";
version = "0.71.2";
sha256 = "1s2k9qrgy1jily96img2pmn7g35mwnnfiw6si3aw32jfhg5zsh1c";
+ revision = "2";
+ editedCabalFile = "0jidvbmmj4piaxb6apwsd7jypsyjq1a1h2ziz82pc8w13yzascj3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -114073,6 +114990,35 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hasql_1_4_1" = callPackage
+ ({ mkDerivation, attoparsec, base, base-prelude, bug, bytestring
+ , bytestring-strict-builder, contravariant, contravariant-extras
+ , criterion, dlist, hashable, hashtables, loch-th, mtl
+ , placeholders, postgresql-binary, postgresql-libpq, profunctors
+ , QuickCheck, quickcheck-instances, rebase, rerebase, tasty
+ , tasty-hunit, tasty-quickcheck, text, text-builder, transformers
+ , vector
+ }:
+ mkDerivation {
+ pname = "hasql";
+ version = "1.4.1";
+ sha256 = "0qypisbyyk9xq3g0av4vphi4k9r0jm8c16crc5wbqvalxaxrj2wc";
+ libraryHaskellDepends = [
+ attoparsec base base-prelude bytestring bytestring-strict-builder
+ contravariant contravariant-extras dlist hashable hashtables
+ loch-th mtl placeholders postgresql-binary postgresql-libpq
+ profunctors text text-builder transformers vector
+ ];
+ testHaskellDepends = [
+ bug QuickCheck quickcheck-instances rebase rerebase tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ benchmarkHaskellDepends = [ bug criterion rerebase ];
+ description = "An efficient PostgreSQL driver with a flexible mapping API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hasql-backend" = callPackage
({ mkDerivation, base, base-prelude, bytestring, either, free
, list-t, text, transformers, vector
@@ -114344,18 +115290,19 @@ self: {
({ mkDerivation, base, bytestring, case-insensitive, containers
, contravariant, fast-builder, foldl, hashable, hasql
, headed-megaparsec, hedgehog, megaparsec, parser-combinators
- , selective, template-haskell, text, text-builder, tuple-th
- , unordered-containers, uuid, vector
+ , selective, template-haskell, template-haskell-compat-v0208, text
+ , text-builder, tuple-th, unordered-containers, uuid, vector
}:
mkDerivation {
pname = "hasql-th";
- version = "0.4";
- sha256 = "0c87l9lf2h6z33apmh13dy9imdv0klpk4p22zmw9i88gg5x91yvw";
+ version = "0.4.0.3";
+ sha256 = "0j850460d2sz6zwvawyv9913b03iqf58b737y6imgd6k7ddq82hn";
libraryHaskellDepends = [
base bytestring case-insensitive containers contravariant
fast-builder foldl hashable hasql headed-megaparsec megaparsec
- parser-combinators selective template-haskell text text-builder
- tuple-th unordered-containers uuid vector
+ parser-combinators selective template-haskell
+ template-haskell-compat-v0208 text text-builder
+ unordered-containers uuid vector
];
testHaskellDepends = [
base bytestring case-insensitive containers contravariant
@@ -114954,6 +115901,8 @@ self: {
pname = "haxr";
version = "3000.11.3.1";
sha256 = "1wyb848mb0b6idkbi5jarsf6qi1zzl3yh6xd05g228kykii8k9mg";
+ revision = "1";
+ editedCabalFile = "1g5vqgpk02kx502w0klps88i0h0mfwmb8ai14xm5b90jmd9kndn3";
libraryHaskellDepends = [
array base base-compat base64-bytestring blaze-builder bytestring
HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat
@@ -116142,6 +117091,41 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "heart-app" = callPackage
+ ({ mkDerivation, base, co-log, co-log-core, ekg, ekg-core
+ , ekg-statsd, heart-core, text
+ }:
+ mkDerivation {
+ pname = "heart-app";
+ version = "0.1.1";
+ sha256 = "1wif7zxvh5wbz2spniga3apk43zzzjv58qj25gcc870haw6dp2db";
+ libraryHaskellDepends = [
+ base co-log co-log-core ekg ekg-core ekg-statsd heart-core text
+ ];
+ description = "An opinionated app prelude and framework in the UnliftIO style";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "heart-core" = callPackage
+ ({ mkDerivation, aeson, aeson-casing, base, containers, exceptions
+ , filepath, hashable, lens, list-t, mtl, newtype-generics, text
+ , unliftio, unliftio-core, unordered-containers
+ }:
+ mkDerivation {
+ pname = "heart-core";
+ version = "0.1.1";
+ sha256 = "1r4137ws74dqk1bva06xv2gs18m4jkg52243yz5dwp65g6h5pb60";
+ libraryHaskellDepends = [
+ aeson aeson-casing base containers exceptions filepath hashable
+ lens list-t mtl newtype-generics text unliftio unliftio-core
+ unordered-containers
+ ];
+ description = "An opinionated library prelude in the UnliftIO style";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"heartbeat-streams" = callPackage
({ mkDerivation, async, base, io-streams, time }:
mkDerivation {
@@ -116361,20 +117345,18 @@ self: {
"hedgehog" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring
- , concurrent-output, containers, directory, exceptions, fail
+ , concurrent-output, containers, directory, erf, exceptions, fail
, lifted-async, mmorph, monad-control, mtl, pretty-show, primitive
, random, resourcet, semigroups, stm, template-haskell, text, time
, transformers, transformers-base, wl-pprint-annotated
}:
mkDerivation {
pname = "hedgehog";
- version = "1.0.1";
- sha256 = "1qc7hkqbnsk3f5r26wc35r3qiy941nmcxhfqgcq9027kw4gs0bi0";
- revision = "1";
- editedCabalFile = "0dq3ry7py2wsiwxar11zbvm3xmifm92nx4bh61lqxzmpwyyiwnxn";
+ version = "1.0.2";
+ sha256 = "1058d5fcv3hhvlx34a8xkg8r75p93l2yhacdbga8d4radiayy34f";
libraryHaskellDepends = [
ansi-terminal async base bytestring concurrent-output containers
- directory exceptions fail lifted-async mmorph monad-control mtl
+ directory erf exceptions fail lifted-async mmorph monad-control mtl
pretty-show primitive random resourcet semigroups stm
template-haskell text time transformers transformers-base
wl-pprint-annotated
@@ -116449,6 +117431,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hedgehog-corpus_0_2_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "hedgehog-corpus";
+ version = "0.2.0";
+ sha256 = "194pj8mjia5v4mc0hcyxgipf15j0dr44w02r1bcf89b4b8vnk5hq";
+ libraryHaskellDepends = [ base ];
+ description = "hedgehog-corpus";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hedgehog-fn" = callPackage
({ mkDerivation, base, contravariant, hedgehog, transformers }:
mkDerivation {
@@ -118437,21 +119431,21 @@ self: {
"hgeometry" = callPackage
({ mkDerivation, aeson, base, bifunctors, bytestring, containers
, data-clist, deepseq, dlist, doctest, doctest-discover, fingertree
- , fixed-vector, hgeometry-combinatorial, lens, linear, MonadRandom
- , mtl, QuickCheck, quickcheck-instances, reflection, semigroupoids
- , semigroups, singletons, template-haskell, text, vector
- , vector-builder, vinyl, yaml
+ , fixed-vector, hgeometry-combinatorial, hspec, lens, linear
+ , MonadRandom, mtl, primitive, QuickCheck, quickcheck-instances
+ , reflection, semigroupoids, semigroups, template-haskell, text
+ , vector, vector-builder, vinyl, yaml
}:
mkDerivation {
pname = "hgeometry";
- version = "0.9.0.0";
- sha256 = "1s9hmknrqdsrfda5l8qjs85qhq6lm8vfkd54dnkbg67xk42z0y1m";
+ version = "0.10.0.0";
+ sha256 = "01kf7cmjdr2s172xj25i9vyjpfd0wayh0bjgccxqqy886kxrkhfw";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bifunctors bytestring containers data-clist deepseq
- dlist fingertree fixed-vector hgeometry-combinatorial lens linear
- MonadRandom mtl QuickCheck quickcheck-instances reflection
- semigroupoids semigroups singletons template-haskell text vector
+ dlist fingertree fixed-vector hgeometry-combinatorial hspec lens
+ linear MonadRandom mtl primitive QuickCheck quickcheck-instances
+ reflection semigroupoids semigroups template-haskell text vector
vector-builder vinyl yaml
];
testHaskellDepends = [ base doctest doctest-discover QuickCheck ];
@@ -118472,13 +119466,13 @@ self: {
}:
mkDerivation {
pname = "hgeometry-combinatorial";
- version = "0.9.0.0";
- sha256 = "0c9byfg6x1ch1812s6kf9w1vkrhzffqw6asllhln95f6cvsz58z0";
+ version = "0.10.0.0";
+ sha256 = "0v168wxnzkmylh8gzxzrq0sfq5y2xn3i8r6kqnahc14x1c1jzzk1";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bifunctors bytestring containers contravariant
data-clist deepseq dlist fingertree lens MonadRandom mtl QuickCheck
- quickcheck-instances reflection semigroupoids semigroups singletons
+ quickcheck-instances reflection semigroupoids semigroups
template-haskell text vector vector-builder vinyl yaml
];
testHaskellDepends = [
@@ -118803,6 +119797,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hhwloc" = callPackage
+ ({ mkDerivation, base, Cabal, directory, process }:
+ mkDerivation {
+ pname = "hhwloc";
+ version = "0.2.0";
+ sha256 = "16plkwv42cbrrrl73864vcabcyd9irkbvq2jcki500vkxx92yxvj";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal directory process ];
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base ];
+ description = "Bindings to https://www.open-mpi.org/projects/hwloc";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"hi" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, directory
, doctest, filepath, hspec, HUnit, optparse-applicative, parsec
@@ -119008,6 +120018,8 @@ self: {
];
description = "Set up a GHC API session";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hie-core" = callPackage
@@ -120449,6 +121461,8 @@ self: {
pname = "hjugement-cli";
version = "0.0.0.20191104";
sha256 = "17bz2cb9i7iv1s1s5g17797x07h80p3h682zkq9i4s5cbqjga44g";
+ revision = "1";
+ editedCabalFile = "0bjyn458jmrn230y7gphkx3bggvjkm8jbgnnz8h37rwj3mjaw7q5";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -120668,8 +121682,8 @@ self: {
}:
mkDerivation {
pname = "hledger";
- version = "1.16.1";
- sha256 = "1dw04sjgji6iprs0hqxr0nynkg5qsqh20l0d48vqjkgaral4sxma";
+ version = "1.16.2";
+ sha256 = "1jvvmj13n3xv575g5zxfq2nw9bk719yb6ivddxfaf36h10zqpdxl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -120794,10 +121808,8 @@ self: {
}:
mkDerivation {
pname = "hledger-iadd";
- version = "1.3.9";
- sha256 = "07g48w4099m4vm7z5hrg9zzd2v2yhy7kcv40902njz6v8cklgdgq";
- revision = "3";
- editedCabalFile = "1c06v50lhhzsa4872j9khqvga7pvfrvns8sp3srn9vfwxbiw5x7z";
+ version = "1.3.10";
+ sha256 = "0kdrdbvs5qi8hc807d245xrv589hgx5aly5syb6zk62pi1kf92s3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -120871,8 +121883,8 @@ self: {
}:
mkDerivation {
pname = "hledger-lib";
- version = "1.16.1";
- sha256 = "14rwigcmal1dy286qnw93nnn4rl42hgcnz882wmjmhpyjrs4l5ig";
+ version = "1.16.2";
+ sha256 = "0b3b68560jszx8frmv8q9bxs1nc33n9c52ns1gcy3a3j3s80ww3g";
libraryHaskellDepends = [
ansi-terminal array base base-compat-batteries blaze-markup
bytestring call-stack cassava cassava-megaparsec cmdargs containers
@@ -120925,8 +121937,8 @@ self: {
}:
mkDerivation {
pname = "hledger-ui";
- version = "1.16.1";
- sha256 = "0cn1pwr87lvi65m619v845vj17v27hp3h6fcgy1cpb4gjsdvq861";
+ version = "1.16.2";
+ sha256 = "1bsg48i9fmml4ga8jg1ikxig30dn7x5i8qbzbd9nr9lz5wg9xxlh";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -120972,8 +121984,8 @@ self: {
}:
mkDerivation {
pname = "hledger-web";
- version = "1.16.1";
- sha256 = "1mn3mk4v6akbzl2hc8k89q4njffxpj832h5pywy9rj2mc7fbw5s5";
+ version = "1.16.2";
+ sha256 = "1kipq8b1df1iyp0dsdkbmshzdgii1993kb72drqsbl4ihj6vd96s";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -121007,6 +122019,21 @@ self: {
broken = true;
}) {inherit (pkgs) libbladeRF;};
+ "hlibcpuid" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "hlibcpuid";
+ version = "0.2.0";
+ sha256 = "0ncsxmdcg2jr76vsja5nq39kiq7lsqm61bimspk4yk5d0z490n81";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base ];
+ description = "Bindings to https://github.com/anrieff/libcpuid";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"hlibev" = callPackage
({ mkDerivation, base, ev, network }:
mkDerivation {
@@ -121066,23 +122093,25 @@ self: {
"hlint" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs
- , containers, cpphs, data-default, directory, extra, filepath
- , filepattern, ghc-lib-parser, haskell-src-exts
- , haskell-src-exts-util, hscolour, mtl, process, refact, syb, text
- , transformers, uniplate, unordered-containers, vector, yaml
+ , containers, cpphs, data-default, directory, extra, file-embed
+ , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex
+ , haskell-src-exts, haskell-src-exts-util, hscolour, process
+ , refact, text, transformers, uniplate, unordered-containers
+ , utf8-string, vector, yaml
}:
mkDerivation {
pname = "hlint";
- version = "2.2.5";
- sha256 = "1ygyk1rg07j5x1qa6af3a76ps1cqicz4cv9i986kcfpzhzlf7iqd";
+ version = "2.2.8";
+ sha256 = "088wkpazj0lxx0fnzxqnfsicv59adnwzkj1rr5yjlmy4lr6sd5iz";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-terminal base bytestring cmdargs containers cpphs
- data-default directory extra filepath filepattern ghc-lib-parser
- haskell-src-exts haskell-src-exts-util hscolour mtl process refact
- syb text transformers uniplate unordered-containers vector yaml
+ data-default directory extra file-embed filepath filepattern
+ ghc-lib-parser ghc-lib-parser-ex haskell-src-exts
+ haskell-src-exts-util hscolour process refact text transformers
+ uniplate unordered-containers utf8-string vector yaml
];
executableHaskellDepends = [ base ];
description = "Source code suggestions";
@@ -122205,15 +123234,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hoauth2_1_9_1" = callPackage
+ "hoauth2_1_10_2" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, exceptions
, http-conduit, http-types, microlens, text, unordered-containers
, uri-bytestring, uri-bytestring-aeson
}:
mkDerivation {
pname = "hoauth2";
- version = "1.9.1";
- sha256 = "1pm8124x5zdy5zj6qriv16im067dyz9vx5z2ga8c3x6rx06bs15m";
+ version = "1.10.2";
+ sha256 = "04kdz01pg32p1ci9rqnkkbk2ch6bgyqq9v7cbfpdxqp0hyfhv2jl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -123084,8 +124113,8 @@ self: {
}:
mkDerivation {
pname = "hoogle";
- version = "5.0.17.13";
- sha256 = "1lbn4ji8l20pvyn5r2cdys0cnxhhac1559q54c6kb4vz4fr0a82p";
+ version = "5.0.17.14";
+ sha256 = "094h9dqlnjhpdv166g6zx7sy7rr53iv3svicjzi5pxfdbl2an67x";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -123140,19 +124169,18 @@ self: {
"hookup" = callPackage
({ mkDerivation, attoparsec, base, bytestring, HsOpenSSL
- , HsOpenSSL-x509-system, network, openssl
+ , HsOpenSSL-x509-system, network
}:
mkDerivation {
pname = "hookup";
- version = "0.3";
- sha256 = "08a10bmnr15bb6pdcq4hq3z4595spsq3g8879apcqb6qgbs6dlxb";
+ version = "0.3.0.1";
+ sha256 = "12jwjgbbdiyffy78b90a2jcz1vz1mfsrmgj0q4w3ly3zl79j2la9";
libraryHaskellDepends = [
attoparsec base bytestring HsOpenSSL HsOpenSSL-x509-system network
];
- librarySystemDepends = [ openssl ];
description = "Abstraction over creating network connections with SOCKS5 and TLS";
license = stdenv.lib.licenses.isc;
- }) {inherit (pkgs) openssl;};
+ }) {};
"hoopl" = callPackage
({ mkDerivation, base, containers, filepath, mtl, parsec
@@ -124138,24 +125166,53 @@ self: {
}) {};
"hpath" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions
- , hspec, HUnit, IfElse, process, QuickCheck, simple-sendfile, unix
- , unix-bytestring, utf8-string, word8
+ ({ mkDerivation, base, bytestring, deepseq, exceptions
+ , hpath-filepath, template-haskell, utf8-string, word8
}:
mkDerivation {
pname = "hpath";
- version = "0.9.2";
- sha256 = "1b8fni11zk3p3yx6pi9sx6cxq9vm31fqx3gm7y6nz5cykpncsx27";
+ version = "0.11.0";
+ sha256 = "07p5h68sz079rvhbz9sig4146127l29xsrphd1i3y4gskzwdvy1a";
libraryHaskellDepends = [
- base bytestring deepseq exceptions hspec IfElse simple-sendfile
- unix unix-bytestring utf8-string word8
+ base bytestring deepseq exceptions hpath-filepath template-haskell
+ utf8-string word8
+ ];
+ description = "Support for well-typed paths";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hpath-filepath" = callPackage
+ ({ mkDerivation, base, bytestring, unix, word8 }:
+ mkDerivation {
+ pname = "hpath-filepath";
+ version = "0.10.3";
+ sha256 = "0kd7qnw2bwiwqmbqkwxa15i45hjkmxvmrzblspqvfv3p3dxm8wg6";
+ libraryHaskellDepends = [ base bytestring unix word8 ];
+ description = "ByteString based filepath manipulation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hpath-io" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, hpath
+ , hpath-filepath, hspec, HUnit, IfElse, process, safe-exceptions
+ , streamly, time, unix, unix-bytestring, utf8-string
+ }:
+ mkDerivation {
+ pname = "hpath-io";
+ version = "0.12.0";
+ sha256 = "00bl6ixbnv6ld3fxnvb17wp277sn2srhia9p32mkx07ih0dwy4g2";
+ libraryHaskellDepends = [
+ base bytestring exceptions hpath hpath-filepath IfElse
+ safe-exceptions streamly time unix unix-bytestring utf8-string
];
testHaskellDepends = [
- base bytestring doctest hspec HUnit IfElse process QuickCheck unix
+ base bytestring hpath hspec HUnit IfElse process time unix
unix-bytestring utf8-string
];
- description = "Support for well-typed paths";
+ description = "High-level IO operations on files/directories";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hpc_0_6_0_3" = callPackage
@@ -124428,8 +125485,8 @@ self: {
}:
mkDerivation {
pname = "hpqtypes-extras";
- version = "1.10.0.0";
- sha256 = "0gh8gg3hl64i851q3zaigg8i5axrgxw169m1xzzgximhzhzbl7m8";
+ version = "1.10.1.0";
+ sha256 = "13ja18jk0w3c9jzys72fddpgx74cr4p5bap6l0jckb61wbj1m6zl";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash exceptions
fields-json hpqtypes lifted-base log-base monad-control mtl safe
@@ -125204,14 +126261,26 @@ self: {
}) {inherit (pkgs) fltk; fltk_images = null;};
"hs-functors" = callPackage
- ({ mkDerivation, base, transformers }:
+ ({ mkDerivation, base, tagged, transformers }:
mkDerivation {
pname = "hs-functors";
- version = "0.1.4.0";
- sha256 = "0crih1v1zg0w1m4xcsz1v00j4x2w82fdd17bkhiqa1d56kx3d1af";
- libraryHaskellDepends = [ base transformers ];
+ version = "0.1.5.0";
+ sha256 = "19mfp7vvyh65jg186kd65ycrhljb0l45a32lw92dvcdx8nbqsb7j";
+ libraryHaskellDepends = [ base tagged transformers ];
+ description = "Functors from products of Haskell and its dual to Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hs-functors_0_1_6_0" = callPackage
+ ({ mkDerivation, base, tagged, transformers }:
+ mkDerivation {
+ pname = "hs-functors";
+ version = "0.1.6.0";
+ sha256 = "197vyl98ddvc55dxwwjd46sdjvh1a9s5qcx2m16smn9gwmx9gq0l";
+ libraryHaskellDepends = [ base tagged transformers ];
description = "Functors from products of Haskell and its dual to Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-gchart" = callPackage
@@ -127301,6 +128370,27 @@ self: {
license = stdenv.lib.licenses.isc;
}) {};
+ "hsinstall_2_6" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, Cabal, directory, filepath
+ , heredoc, optparse-applicative, process, safe-exceptions
+ , transformers
+ }:
+ mkDerivation {
+ pname = "hsinstall";
+ version = "2.6";
+ sha256 = "0763jzyl8ysani30alc6ii3i68i5ls1cd288b6iza4lfz1knval5";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base directory filepath ];
+ executableHaskellDepends = [
+ ansi-wl-pprint base Cabal directory filepath heredoc
+ optparse-applicative process safe-exceptions transformers
+ ];
+ description = "Install Haskell software";
+ license = stdenv.lib.licenses.isc;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hskeleton" = callPackage
({ mkDerivation, base, Cabal }:
mkDerivation {
@@ -128345,8 +129435,8 @@ self: {
}:
mkDerivation {
pname = "hspec-need-env";
- version = "0.1.0.3";
- sha256 = "164ng7ryb9dpw2v0wazi9s8xqwsx9yla83p0ln05m6zlirpp6jc6";
+ version = "0.1.0.4";
+ sha256 = "0cb6jr0mqhaylqdky38s8plgs9w8hk1pi135yxggr707bnhwsplg";
libraryHaskellDepends = [ base hspec-core hspec-expectations ];
testHaskellDepends = [ base hspec hspec-core setenv transformers ];
description = "Read environment variables for hspec tests";
@@ -130682,6 +131772,26 @@ self: {
broken = true;
}) {};
+ "http-directory_0_1_7" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, html-conduit, http-client
+ , http-client-tls, http-date, http-types, network-uri, text, time
+ , xml-conduit
+ }:
+ mkDerivation {
+ pname = "http-directory";
+ version = "0.1.7";
+ sha256 = "11vka7a049mh56fy6bi9snjkl68il9fnw583l8dw02n67wldks99";
+ libraryHaskellDepends = [
+ base bytestring html-conduit http-client http-client-tls http-date
+ http-types network-uri text time xml-conduit
+ ];
+ testHaskellDepends = [ base hspec text ];
+ description = "http directory listing library";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"http-dispatch" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, bytestring
, case-insensitive, hspec, http-client, http-client-tls, http-types
@@ -130710,34 +131820,6 @@ self: {
}:
mkDerivation {
pname = "http-download";
- version = "0.1.0.0";
- sha256 = "0wip7l6cls734ag306s5l0683qqh273b3lk5ibig66racmysjqyb";
- revision = "4";
- editedCabalFile = "1s20zjh52whs6hfhr90zyyy7g78zv1pw9hry1nwlzdv4hg97cbdh";
- libraryHaskellDepends = [
- base base64-bytestring bytestring conduit conduit-extra cryptonite
- cryptonite-conduit directory exceptions filepath http-client
- http-conduit http-types memory path path-io retry rio
- rio-prettyprint
- ];
- testHaskellDepends = [
- base cryptonite hspec hspec-discover http-client path path-io retry
- rio rio-prettyprint
- ];
- testToolDepends = [ hspec-discover ];
- description = "Verified downloads with retries";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "http-download_0_1_0_1" = callPackage
- ({ mkDerivation, base, base64-bytestring, bytestring, conduit
- , conduit-extra, cryptonite, cryptonite-conduit, directory
- , exceptions, filepath, hspec, hspec-discover, http-client
- , http-conduit, http-types, memory, path, path-io, retry, rio
- , rio-prettyprint
- }:
- mkDerivation {
- pname = "http-download";
version = "0.1.0.1";
sha256 = "1f1haybqflprm3gwnxsyi6pyz7k4b5qyiq4wqq81wb7nsrr4h943";
libraryHaskellDepends = [
@@ -130753,7 +131835,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Verified downloads with retries";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-encodings" = callPackage
@@ -131208,6 +132289,39 @@ self: {
broken = true;
}) {};
+ "http-streams_0_8_7_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, attoparsec, base
+ , base64-bytestring, blaze-builder, bytestring, case-insensitive
+ , directory, ghc-prim, HsOpenSSL, hspec, hspec-expectations
+ , http-common, HUnit, io-streams, lifted-base, mtl, network
+ , network-uri, openssl-streams, snap-core, snap-server
+ , system-fileio, system-filepath, text, transformers
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "http-streams";
+ version = "0.8.7.1";
+ sha256 = "0kl668ggxz5wzvziagw9inmmwb0l5x2r00nf4p7wm0pnl8m19l2b";
+ libraryHaskellDepends = [
+ aeson attoparsec base base64-bytestring blaze-builder bytestring
+ case-insensitive directory HsOpenSSL http-common io-streams mtl
+ network network-uri openssl-streams text transformers
+ unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty attoparsec base base64-bytestring blaze-builder
+ bytestring case-insensitive directory ghc-prim HsOpenSSL hspec
+ hspec-expectations http-common HUnit io-streams lifted-base mtl
+ network network-uri openssl-streams snap-core snap-server
+ system-fileio system-filepath text transformers
+ unordered-containers
+ ];
+ description = "An HTTP client using io-streams";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"http-test" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client, lens
, lens-aeson, mtl, tasty, tasty-hunit, text, time, wreq
@@ -131326,6 +132440,8 @@ self: {
testHaskellDepends = [ base ];
description = "A native HTTP2 client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"http2-client-exe" = callPackage
@@ -131345,6 +132461,8 @@ self: {
];
description = "A command-line http2 client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"http2-client-grpc" = callPackage
@@ -131758,6 +132876,17 @@ self: {
broken = true;
}) {};
+ "humble-prelude" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, ghc, text }:
+ mkDerivation {
+ pname = "humble-prelude";
+ version = "0.2";
+ sha256 = "0pzfhp65afkdc33pjbxzcf68c02w6nq8sxqspfwbn78dghg9cbrn";
+ libraryHaskellDepends = [ base bytestring deepseq ghc text ];
+ description = "Redefinition-free prelude alternative";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hums" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
, ConfigFile, containers, directory, filepath, HaXml, http-types
@@ -132027,6 +133156,25 @@ self: {
broken = true;
}) {};
+ "hurl" = callPackage
+ ({ mkDerivation, base, base64-bytestring, bytestring, directory
+ , filepath, http-client, http-client-tls, http-types, network-uri
+ , process, text
+ }:
+ mkDerivation {
+ pname = "hurl";
+ version = "1.1.0.0";
+ sha256 = "0l405cp4kgmm00j91p0jmkymp83bqpxhqpgkv2g5qy242c6rjfk2";
+ libraryHaskellDepends = [
+ base base64-bytestring bytestring directory filepath http-client
+ http-client-tls http-types network-uri process text
+ ];
+ description = "Haskell URL resolver";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"hurriyet" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, here, hspec
, http-client, http-client-tls, mtl, text
@@ -132450,17 +133598,20 @@ self: {
broken = true;
}) {};
- "hw-dsv_0_3_7" = callPackage
- ({ mkDerivation, base, bits-extra, bytestring, cassava, criterion
- , deepseq, directory, generic-lens, ghc-prim, hedgehog, hspec
- , hspec-discover, hw-bits, hw-hspec-hedgehog, hw-prim
- , hw-rankselect, hw-rankselect-base, hw-simd, lens, mmap
- , optparse-applicative, resourcet, text, vector, weigh
+ "hw-dsv_0_4_0" = callPackage
+ ({ mkDerivation, appar, base, bits-extra, bytestring, cassava
+ , criterion, deepseq, directory, doctest, doctest-discover
+ , generic-lens, ghc-prim, hedgehog, hspec, hspec-discover, hw-bits
+ , hw-hspec-hedgehog, hw-ip, hw-prim, hw-rankselect
+ , hw-rankselect-base, hw-simd, lens, mmap, optparse-applicative
+ , resourcet, text, vector, weigh
}:
mkDerivation {
pname = "hw-dsv";
- version = "0.3.7";
- sha256 = "0zwciw5phhz1lzpmgwjqibrlrhdzma4wqkqnv3ssv3ph0hlr9vdv";
+ version = "0.4.0";
+ sha256 = "1cpjfq3z4q5wmnlaskrzxhyybb07andc7gli7vv7njm9552bwyvf";
+ revision = "2";
+ editedCabalFile = "167zvbxwjmb25xmhcdhrshk03b98kh5ldrf2b6a4v8xlkj4p33qm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132468,16 +133619,16 @@ self: {
hw-rankselect hw-rankselect-base hw-simd vector
];
executableHaskellDepends = [
- base bits-extra bytestring deepseq generic-lens ghc-prim hedgehog
- hw-bits hw-prim hw-rankselect hw-rankselect-base hw-simd lens
- optparse-applicative resourcet vector
+ appar base bits-extra bytestring deepseq generic-lens ghc-prim
+ hedgehog hw-bits hw-ip hw-prim hw-rankselect hw-rankselect-base
+ hw-simd lens optparse-applicative resourcet text vector
];
testHaskellDepends = [
- base bits-extra bytestring cassava deepseq directory ghc-prim
- hedgehog hspec hw-bits hw-hspec-hedgehog hw-prim hw-rankselect
- hw-rankselect-base hw-simd text vector weigh
+ base bits-extra bytestring cassava deepseq directory doctest
+ doctest-discover ghc-prim hedgehog hspec hw-bits hw-hspec-hedgehog
+ hw-prim hw-rankselect hw-rankselect-base hw-simd text vector weigh
];
- testToolDepends = [ hspec-discover ];
+ testToolDepends = [ doctest-discover hspec-discover ];
benchmarkHaskellDepends = [
base bits-extra bytestring cassava criterion deepseq directory
ghc-prim hw-bits hw-prim hw-rankselect hw-rankselect-base hw-simd
@@ -132625,6 +133776,33 @@ self: {
broken = true;
}) {};
+ "hw-excess_0_2_2_2" = callPackage
+ ({ mkDerivation, base, bytestring, criterion, doctest
+ , doctest-discover, hedgehog, hspec, hspec-discover, hw-bits
+ , hw-hspec-hedgehog, hw-prim, hw-rankselect-base, QuickCheck, safe
+ , vector
+ }:
+ mkDerivation {
+ pname = "hw-excess";
+ version = "0.2.2.2";
+ sha256 = "1iwml6il5vanx06vbn2apf1vcmimg7mw2ddqq1xy40ma7brirxsz";
+ libraryHaskellDepends = [
+ base hw-bits hw-prim hw-rankselect-base safe vector
+ ];
+ testHaskellDepends = [
+ base doctest doctest-discover hedgehog hspec hw-bits
+ hw-hspec-hedgehog hw-prim QuickCheck vector
+ ];
+ testToolDepends = [ doctest-discover hspec-discover ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion hw-prim vector
+ ];
+ description = "Excess";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"hw-fingertree" = callPackage
({ mkDerivation, base, deepseq, hedgehog, hspec, hspec-discover
, hw-hspec-hedgehog, hw-prim
@@ -132736,15 +133914,16 @@ self: {
broken = true;
}) {};
- "hw-ip_2_4_0_1" = callPackage
+ "hw-ip_2_4_1_0" = callPackage
({ mkDerivation, appar, base, binary, bytestring, containers
- , generic-lens, hedgehog, hspec, hspec-discover, hw-bits
- , hw-hspec-hedgehog, iproute, lens, optparse-applicative, text
+ , doctest, doctest-discover, generic-lens, hedgehog, hspec
+ , hspec-discover, hw-bits, hw-hspec-hedgehog, iproute, lens
+ , optparse-applicative, text
}:
mkDerivation {
pname = "hw-ip";
- version = "2.4.0.1";
- sha256 = "0ypz0m5vnwirxap17ws44a0q6vfbg48dk6n8gb9aii2hfcdapds0";
+ version = "2.4.1.0";
+ sha256 = "1zjl078xzing927fwwpck36ib8z5aggpi7g0z5gnhxd8isgqs6zh";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132755,10 +133934,10 @@ self: {
text
];
testHaskellDepends = [
- appar base generic-lens hedgehog hspec hw-bits hw-hspec-hedgehog
- text
+ appar base doctest doctest-discover generic-lens hedgehog hspec
+ hw-bits hw-hspec-hedgehog text
];
- testToolDepends = [ hspec-discover ];
+ testToolDepends = [ doctest-discover hspec-discover ];
doHaddock = false;
description = "Library for manipulating IP addresses and CIDR blocks";
license = stdenv.lib.licenses.bsd3;
@@ -136738,8 +137917,8 @@ self: {
}:
mkDerivation {
pname = "incremental";
- version = "0.1";
- sha256 = "03yax3xkp1mlipi1vn97ljz05c6fxflpvz9myqvlxcj658p9f3kh";
+ version = "0.1.1";
+ sha256 = "17lwakfa7xh0rdxr4hixlqy9hldvz06hcsclw3kln7m4iv4843d7";
libraryHaskellDepends = [
aeson base containers deepseq extensible semigroups text
];
@@ -136814,6 +137993,29 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "incremental-parser_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, checkers, criterion, deepseq
+ , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty
+ , tasty-quickcheck, text, transformers
+ }:
+ mkDerivation {
+ pname = "incremental-parser";
+ version = "0.4";
+ sha256 = "0iyprnyk66zdyi21632d0aznvzk7i0hmr3idq49yjilxwck2xac4";
+ libraryHaskellDepends = [
+ base monoid-subclasses parsers rank2classes transformers
+ ];
+ testHaskellDepends = [
+ base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion deepseq monoid-subclasses text
+ ];
+ description = "Generic parser library capable of providing partial results from partial input";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"incremental-sat-solver" = callPackage
({ mkDerivation, base, containers, mtl }:
mkDerivation {
@@ -137170,6 +138372,26 @@ self: {
broken = true;
}) {};
+ "infernal" = callPackage
+ ({ mkDerivation, aeson, base, binary, bytestring, case-insensitive
+ , containers, exceptions, heart-app, heart-core, http-client
+ , http-types, mtl, text, unliftio, unordered-containers, wai
+ }:
+ mkDerivation {
+ pname = "infernal";
+ version = "0.3.0";
+ sha256 = "0iixw8np4rh66ql2lm2gkhz9yzkgxw0mch3gxsflqi0a96y2jcik";
+ libraryHaskellDepends = [
+ aeson base binary bytestring case-insensitive containers exceptions
+ heart-app heart-core http-client http-types mtl text unliftio
+ unordered-containers wai
+ ];
+ description = "The Infernal Machine - An AWS Lambda Custom Runtime for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"infernu" = callPackage
({ mkDerivation, base, containers, digits, either, fgl
, language-ecmascript, mtl, optparse-applicative, parsec
@@ -138031,14 +139253,17 @@ self: {
}) {};
"intcode" = callPackage
- ({ mkDerivation, base, containers, primitive }:
+ ({ mkDerivation, base, containers, doctest, primitive }:
mkDerivation {
pname = "intcode";
- version = "0.1.0.0";
- sha256 = "0lca33wd0dfrih0si6w5h6wi5rmv6sx3j5kam9q4j0kc1laj268r";
+ version = "0.3.0.0";
+ sha256 = "0qcws15hn03wnsv1rg93sw9zhwsyvwpiafrmwnyv9v990qap1x8y";
libraryHaskellDepends = [ base containers primitive ];
+ testHaskellDepends = [ base containers doctest primitive ];
description = "Advent of Code 2019 intcode interpreter";
license = stdenv.lib.licenses.isc;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"integer-gmp_1_0_2_0" = callPackage
@@ -139203,19 +140428,18 @@ self: {
broken = true;
}) {};
- "ip_1_7_0" = callPackage
+ "ip_1_7_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, byteslice, bytesmith
, bytestring, criterion, deepseq, doctest, hashable, hspec
, hspec-discover, HUnit, natural-arithmetic, primitive, QuickCheck
- , quickcheck-classes, small-bytearray-builder, tasty, tasty-hunit
- , tasty-quickcheck, text, text-short, vector, wide-word
+ , quickcheck-classes, random, small-bytearray-builder, tasty
+ , tasty-hunit, tasty-quickcheck, text, text-short, vector
+ , wide-word
}:
mkDerivation {
pname = "ip";
- version = "1.7.0";
- sha256 = "18m8586ns6kijvk8wwflkhr9apki1h0gd7rkxd4w6qq66x034hk2";
- revision = "1";
- editedCabalFile = "1yjz4822vq22zh8mb96ccplqmm6rxrvy334n34gwyq0cfddsilr0";
+ version = "1.7.1";
+ sha256 = "0y4cbr7ci41c5m0j1cllf5hsgnplxkw4lhzxynxv5af9dhpmzak4";
libraryHaskellDepends = [
aeson attoparsec base byteslice bytesmith bytestring deepseq
hashable natural-arithmetic primitive small-bytearray-builder text
@@ -139228,7 +140452,8 @@ self: {
];
testToolDepends = [ hspec-discover ];
benchmarkHaskellDepends = [
- attoparsec base byteslice bytestring criterion text
+ attoparsec base byteslice bytestring criterion primitive random
+ text
];
description = "Library for IP and MAC addresses";
license = stdenv.lib.licenses.bsd3;
@@ -139280,12 +140505,12 @@ self: {
({ mkDerivation, base, cmdargs, IPv6Addr, text }:
mkDerivation {
pname = "ip6addr";
- version = "1.0.0";
- sha256 = "1wc03z05fiylg6fmi0whj8scnm1n81bzmns02zkv1pvysx9bw1g8";
+ version = "1.0.1";
+ sha256 = "0pxjjkmvv7bfh4n06mfbg5fakqqp0dakwzc9d7mnmd3x1m8n7dfz";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base cmdargs IPv6Addr text ];
- description = "Commandline tool to generate IPv6 address text representations";
+ description = "Commandline tool to deal with IPv6 address text representations";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -139351,8 +140576,8 @@ self: {
}:
mkDerivation {
pname = "ipfs";
- version = "1.0.0";
- sha256 = "0grbmjl2dybqp3c8ljgj6ql0g3yivxb0nsbyw3bwk1a4g2c9bd0g";
+ version = "1.0.1";
+ sha256 = "1k4ybm99gbwnv1crx8y8fggf9iv1f1g49x3zvypji7n1zgx84b1r";
libraryHaskellDepends = [
aeson base bytestring data-has envy flow Glob http-client ip lens
monad-logger regex-compat rio servant-client servant-client-core
@@ -139637,8 +140862,8 @@ self: {
}:
mkDerivation {
pname = "irc-core";
- version = "2.7.1";
- sha256 = "0syhcb1q9j68pcxzbv45pah6bkfvnqjzkpzn2356ci7jpb9qpbbn";
+ version = "2.7.2";
+ sha256 = "1gpd28lxhqj2xj75nyyififn9434imvm0vqvx7zdw44fvg75lqyq";
libraryHaskellDepends = [
attoparsec base base64-bytestring bytestring hashable primitive
text time vector
@@ -141114,8 +142339,8 @@ self: {
({ mkDerivation, base, doctest, hspec, hspec-discover, time }:
mkDerivation {
pname = "japanese-holidays";
- version = "0.2.0.0";
- sha256 = "13v8ibbz0sb7rw8y8v1dnyfpc3mc83x63dijnrl45xglwmi2qnjk";
+ version = "1.0.0.0";
+ sha256 = "0h18x1g9i76zyb09jg0hznqmqz66j3mjvvs2d40ilsw1j59ff2jc";
libraryHaskellDepends = [ base time ];
testHaskellDepends = [ base doctest hspec time ];
testToolDepends = [ hspec-discover ];
@@ -141801,8 +143026,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "joint";
- version = "0.1.2";
- sha256 = "0v646rwk7anvfxdj7bz9wann1gahcpfsmvsrkk5zbkjx0bw6pibv";
+ version = "0.1.4";
+ sha256 = "1q1fsi5c5mzdvy7sg0abgbivmgg8dr2whxsyfhm20dy6z1hqav65";
libraryHaskellDepends = [ base ];
description = "Trying to compose non-composable";
license = stdenv.lib.licenses.bsd3;
@@ -142202,6 +143427,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "json_0_10" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, mtl, parsec
+ , pretty, syb, text
+ }:
+ mkDerivation {
+ pname = "json";
+ version = "0.10";
+ sha256 = "1fjnd2r4gl2hfqx158db3cn3rsyin4ch7rf9scb2hcy90cy6l10c";
+ libraryHaskellDepends = [
+ array base bytestring containers mtl parsec pretty syb text
+ ];
+ description = "Support for serialising Haskell to and from JSON";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"json-alt" = callPackage
({ mkDerivation, aeson, base }:
mkDerivation {
@@ -142689,8 +143930,8 @@ self: {
}:
mkDerivation {
pname = "json-rpc";
- version = "1.0.0";
- sha256 = "0npqwq39w8r5q7s86gm79ldmnnn1klwn4lys207qdn6bph7g3cbk";
+ version = "1.0.1";
+ sha256 = "1gghpzaz2p1ib5jgkr0hn0fpzdkkzx9ywc65q3np9n6x6zb2878h";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -142861,6 +144102,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "json-syntax" = callPackage
+ ({ mkDerivation, aeson, array-builder, array-chunks, base
+ , byteslice, bytesmith, bytestring, gauge, neat-interpolation
+ , primitive, scientific, scientific-notation
+ , small-bytearray-builder, tasty, tasty-hunit, text, text-short
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-syntax";
+ version = "0.1.0.0";
+ sha256 = "1z997wqg233nrbhzimqvlmq62ywa4abk0fygbwb79h1agq67jhc1";
+ libraryHaskellDepends = [
+ array-builder array-chunks base byteslice bytesmith bytestring
+ primitive scientific-notation text-short
+ ];
+ testHaskellDepends = [
+ aeson array-chunks base byteslice bytestring neat-interpolation
+ primitive scientific scientific-notation small-bytearray-builder
+ tasty tasty-hunit text text-short unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ aeson base byteslice bytestring gauge neat-interpolation primitive
+ scientific-notation text
+ ];
+ description = "High-performance JSON parser";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"json-togo" = callPackage
({ mkDerivation, aeson, attoparsec, attoparsec-trans, base
, bytestring, scientific, text, transformers, unordered-containers
@@ -143671,8 +144942,8 @@ self: {
}:
mkDerivation {
pname = "kafka-client-sync";
- version = "0.1.1.0";
- sha256 = "0m8y3sinyl7f6srqk0q9yvj6f896y70zisrz4qa5qfnjik0c8ds1";
+ version = "0.1.1.1";
+ sha256 = "0gdp8aw2fg0haijpp1pa3rk3vgy2xarz8cc4lpxa74krifllyzyh";
libraryHaskellDepends = [ base containers hw-kafka-client ];
testHaskellDepends = [ base hw-kafka-client monad-parallel text ];
description = "Synchronous Kafka Client";
@@ -145497,8 +146768,8 @@ self: {
}:
mkDerivation {
pname = "knead";
- version = "0.4.1";
- sha256 = "07jjs6qx58whwh61n4avrbi6krpl3qawx3mp8wacbjyrjfskcyln";
+ version = "0.4.2";
+ sha256 = "03chikfkzlvabz2vmjpmd5mmk0a7gdnkzbgv635w3gdrpdpm8n31";
libraryHaskellDepends = [
base bool8 comfort-array llvm-extra llvm-tf prelude-compat
storable-enum storable-record storable-tuple tagged tfp
@@ -147105,6 +148376,8 @@ self: {
pname = "language-asn";
version = "0.1.1.0";
sha256 = "0ynqpfws2ga2v79cmlxxg1nl7w228mz9znbxj4mxpsbqyc9j25zg";
+ revision = "1";
+ editedCabalFile = "178pdynmpcg02yz9fc8gaqry2vazy5847sr0cnn8ivm554sh96fx";
libraryHaskellDepends = [
aeson base bytestring contravariant hashable pretty primitive text
vector
@@ -147463,6 +148736,8 @@ self: {
pname = "language-ecmascript";
version = "0.19";
sha256 = "13v5ghw8qc4paacn34skgwmvwisjaykszwjrq3lk4idzvrxln2jp";
+ revision = "2";
+ editedCabalFile = "1xj5h5ajybq4pwlw8zsn1lb920km1pcdv20apbpa7pgi39zcpzfd";
libraryHaskellDepends = [
ansi-wl-pprint base charset containers data-default-class Diff mtl
parsec QuickCheck template-haskell uniplate
@@ -148047,8 +149322,8 @@ self: {
}:
mkDerivation {
pname = "language-puppet";
- version = "1.4.6";
- sha256 = "1gr7fkkdr66pd5fkxczjx8sjnciz09pcavcc8d1yspcc7wpv3y1q";
+ version = "1.4.6.1";
+ sha256 = "0w1ffflnzlcwfc4zhn1zlrdhapdniy67wy0z2pa6qgkvxv52rlxd";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -148721,6 +149996,17 @@ self: {
broken = true;
}) {};
+ "lawz" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "lawz";
+ version = "0.1";
+ sha256 = "0gnahwxkkx7nrvcbz0vcj8gzn000nhlijm7z5aiazhv08b8x4d9d";
+ libraryHaskellDepends = [ base ];
+ description = "Common mathematical laws";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"lax" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -148818,10 +150104,8 @@ self: {
({ mkDerivation, alex-tools, base, text }:
mkDerivation {
pname = "layout-rules";
- version = "0.1.0.1";
- sha256 = "0d296p1lwhcyn1ziqpf0gfp5i0b6lycw7d993gbxrn7lqap7f2mh";
- revision = "1";
- editedCabalFile = "00zh22xvwg5fmycj04xsxyyxvl2zjpskcp7wcng86bbwm5kipydh";
+ version = "0.1.0.2";
+ sha256 = "1ddynm3jl7c4jakxk2lxy954a9245j2664an0kyh9inn51j17p9r";
libraryHaskellDepends = [ alex-tools base text ];
description = "A collection of different layout implementations";
license = stdenv.lib.licenses.bsd3;
@@ -149372,8 +150656,8 @@ self: {
}:
mkDerivation {
pname = "learn-physics";
- version = "0.6.4";
- sha256 = "06f1p3rcb37lh0miih2c697w8jiciby3qgjcbjagmf91svx25mm0";
+ version = "0.6.5";
+ sha256 = "0hcd03ygsq6kl08k7d8f61xm7bdzsdx6v4mplzz0c6c7sp9a40sb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -149798,6 +151082,42 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "lens-core" = callPackage
+ ({ mkDerivation, array, base, base-compat, base-orphans, bytestring
+ , Cabal, cabal-doctest, call-stack, comonad, containers, criterion
+ , deepseq, directory, doctest, dual, filepath, foldable1
+ , generic-deriving, ghc-prim, hs-functors, HUnit, mtl, nats
+ , parallel, QuickCheck, semigroups, simple-reflect, tagged
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , test-framework-th, text, transformers, unordered-containers, util
+ , vector
+ }:
+ mkDerivation {
+ pname = "lens-core";
+ version = "0.1.0.3";
+ sha256 = "0bnjnnfavgxy600yzmhqcj91awgk420ybr8wi4pghj2pi8z0581v";
+ setupHaskellDepends = [ base Cabal cabal-doctest filepath ];
+ libraryHaskellDepends = [
+ array base base-orphans call-stack containers dual foldable1
+ ghc-prim hs-functors mtl tagged transformers util vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers deepseq directory doctest filepath
+ generic-deriving HUnit mtl nats parallel QuickCheck semigroups
+ simple-reflect test-framework test-framework-hunit
+ test-framework-quickcheck2 test-framework-th text transformers
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ base base-compat bytestring comonad containers criterion deepseq
+ generic-deriving transformers unordered-containers vector
+ ];
+ description = "Lenses, Folds and Traversals";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"lens-datetime" = callPackage
({ mkDerivation, base, lens, time }:
mkDerivation {
@@ -150258,14 +151578,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "lenz_0_4_1_0" = callPackage
+ "lenz_0_4_2_0" = callPackage
({ mkDerivation, base, base-unicode-symbols, hs-functors
, transformers
}:
mkDerivation {
pname = "lenz";
- version = "0.4.1.0";
- sha256 = "110a41iig3s273j7z2cpdahnnkbq1f5rswra33ag3w2x9sqry5yj";
+ version = "0.4.2.0";
+ sha256 = "13yz9lxxll928knxjgvdxdbnv911pxkd9d5jly1hdnhyymahv6lf";
libraryHaskellDepends = [
base base-unicode-symbols hs-functors transformers
];
@@ -150413,6 +151733,8 @@ self: {
benchmarkHaskellDepends = [ base gauge util ];
description = "See README for more info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lexer-applicative" = callPackage
@@ -150633,8 +151955,8 @@ self: {
}:
mkDerivation {
pname = "libarchive";
- version = "2.1.3.2";
- sha256 = "1z934rl8dm4ncp7qs6kqm2hiir41k5ysrpp44nb6rgzs8f8x46mr";
+ version = "2.2.0.2";
+ sha256 = "0dblwh4gq1s7wh9hjp6481026vfcpns8ixa0vy5lhhc4r9lgkw65";
setupHaskellDepends = [ base Cabal chs-cabal ];
libraryHaskellDepends = [
base bytestring composition-prelude deepseq dlist filepath mtl
@@ -151845,21 +153167,23 @@ self: {
({ mkDerivation, async, base, bytestring, chronos, containers
, http-types, http2-client, http2-client-grpc
, http2-grpc-proto-lens, lens, mtl, proto-lens
- , proto-lens-protobuf-types, proto-lens-runtime, safe-exceptions
- , stm, text, transformers, unordered-containers, wai
+ , proto-lens-protobuf-types, proto-lens-runtime, random
+ , safe-exceptions, stm, text, transformers, unordered-containers
+ , wai
}:
mkDerivation {
pname = "lightstep-haskell";
- version = "0.4.5";
- sha256 = "19bzwx2vklagyddr3cnk33ydlwyjnq12chbmj3djg9a8ar9rsrph";
+ version = "0.5.1";
+ sha256 = "1limzjjjxf6mnd7lgsjbr9hwgzyxjmmy5r9h6ia0rwjaxn42bai4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
async base bytestring chronos containers http-types http2-client
http2-client-grpc http2-grpc-proto-lens lens mtl proto-lens
- proto-lens-protobuf-types proto-lens-runtime safe-exceptions stm
- text transformers unordered-containers wai
+ proto-lens-protobuf-types proto-lens-runtime random safe-exceptions
+ stm text transformers unordered-containers wai
];
+ executableHaskellDepends = [ async base text ];
description = "LightStep OpenTracing client library";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -152409,6 +153733,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "linenoise" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, mtl, text
+ , unliftio-core
+ }:
+ mkDerivation {
+ pname = "linenoise";
+ version = "0.3.1";
+ sha256 = "1ywz7msb292wzyppb3icy0l144z5mlk0yp8m2yq85ib6w2vzkqv0";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring exceptions mtl text unliftio-core
+ ];
+ executableHaskellDepends = [
+ base bytestring exceptions mtl text unliftio-core
+ ];
+ description = "A lightweight readline-replacement library for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"lines-of-action" = callPackage
({ mkDerivation, base, containers, mtl, safe }:
mkDerivation {
@@ -153764,22 +155108,45 @@ self: {
broken = true;
}) {};
+ "llvm-extension" = callPackage
+ ({ mkDerivation, base, containers, cpuid, llvm-extra, llvm-tf
+ , non-empty, prelude-compat, tfp, transformers, unsafe, utility-ht
+ }:
+ mkDerivation {
+ pname = "llvm-extension";
+ version = "0.0";
+ sha256 = "1j07sg35izlnasc1mx66qy20hq82yyavpl300f4794px1l4p8dha";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers cpuid llvm-extra llvm-tf non-empty prelude-compat
+ tfp transformers unsafe utility-ht
+ ];
+ description = "Processor specific intrinsics for the llvm interface";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"llvm-extra" = callPackage
- ({ mkDerivation, base, bool8, containers, cpuid, enumset, llvm-tf
- , non-empty, prelude-compat, storable-enum, tagged, tfp
- , transformers, unsafe, utility-ht
+ ({ mkDerivation, base, bool8, containers, enumset, llvm-tf
+ , non-empty, prelude-compat, QuickCheck, storable-enum
+ , storable-tuple, tagged, tfp, transformers, utility-ht
}:
mkDerivation {
pname = "llvm-extra";
- version = "0.8.3";
- sha256 = "08d1ywx1m82qdyrcg607mbi7szg7mg4vszbnz4i3rgj9snlqj8hr";
+ version = "0.9";
+ sha256 = "1hmzfqslklgr7xq3fjl88sx2zhjga3m2bm504nh1wwdf1c7y8p3m";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bool8 containers cpuid enumset llvm-tf non-empty
- prelude-compat storable-enum tagged tfp transformers unsafe
- utility-ht
+ base bool8 containers enumset llvm-tf non-empty prelude-compat
+ storable-enum tagged tfp transformers utility-ht
];
+ testHaskellDepends = [
+ base llvm-tf QuickCheck storable-tuple tfp utility-ht
+ ];
+ doHaddock = false;
description = "Utility functions for the llvm interface";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -153790,8 +155157,8 @@ self: {
({ mkDerivation, base, enumset, LLVM }:
mkDerivation {
pname = "llvm-ffi";
- version = "3.9.1";
- sha256 = "0gyda3bh43iib5isp6fd0rsf1rxkgidnmxrdm31xwjc0qnz71yf2";
+ version = "9.0.0";
+ sha256 = "100cgwmfasf5l7bh55c0ihaaaqh05s8wwz3kyzajdr5hnfxjy2lm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base enumset ];
@@ -153905,6 +155272,8 @@ self: {
pname = "llvm-hs";
version = "8.0.0";
sha256 = "15ykcxxdvrwyb9jqqr4z3wxhy9r1py1k1hvb9icphzjknpx9z66h";
+ revision = "1";
+ editedCabalFile = "1mq04vjz34c8a4291q7ln0wh4kw03hkf2l1659mdrnv7yyi72j0w";
setupHaskellDepends = [ base Cabal containers ];
libraryHaskellDepends = [
array attoparsec base bytestring containers exceptions llvm-hs-pure
@@ -153918,6 +155287,8 @@ self: {
];
description = "General purpose LLVM bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {llvm-config = null;};
"llvm-hs_9_0_1" = callPackage
@@ -153945,6 +155316,7 @@ self: {
description = "General purpose LLVM bindings";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {llvm-config = null;};
"llvm-hs-pretty" = callPackage
@@ -153954,8 +155326,8 @@ self: {
}:
mkDerivation {
pname = "llvm-hs-pretty";
- version = "0.6.2.0";
- sha256 = "0inljys97b3vmb0006p75kzsm922w1r9721df2h7nfqp0in28c14";
+ version = "0.9.0.0";
+ sha256 = "17kj713j38lg6743dwv1gd0wcls888zazzhlw3xvxzw2n8bjahyj";
libraryHaskellDepends = [
array base bytestring llvm-hs-pure prettyprinter text
];
@@ -154090,18 +155462,18 @@ self: {
"llvm-tf" = callPackage
({ mkDerivation, base, containers, enumset, fixed-length, llvm-ffi
- , non-empty, semigroups, storable-record, tfp, transformers
- , utility-ht
+ , non-empty, QuickCheck, semigroups, storable-record, tfp
+ , transformers, utility-ht
}:
mkDerivation {
pname = "llvm-tf";
- version = "3.9";
- sha256 = "02x2pq4p9dgal6fri9w1r6dj37m0l8jh0gq6ry2xq0rmq2mz70w4";
+ version = "9.0";
+ sha256 = "18pkaa8hkrz96nn1jy8kzfcwkz9vyisjnl1fh8x1kiknqyq14jwa";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers enumset fixed-length llvm-ffi non-empty semigroups
- storable-record tfp transformers utility-ht
+ base containers enumset fixed-length llvm-ffi non-empty QuickCheck
+ semigroups storable-record tfp transformers utility-ht
];
description = "Bindings to the LLVM compiler toolkit using type families";
license = stdenv.lib.licenses.bsd3;
@@ -154779,27 +156151,29 @@ self: {
}) {};
"log4hs" = callPackage
- ({ mkDerivation, aeson, aeson-qq, base, containers, criterion
- , data-default, directory, filepath, generic-lens, hspec
- , hspec-core, lens, process, QuickCheck, template-haskell, text
- , time
+ ({ mkDerivation, aeson, aeson-qq, base, bytestring, containers
+ , criterion, data-default, directory, filepath, generic-lens, hspec
+ , hspec-core, lens, mtl, process, QuickCheck, template-haskell
+ , text, time, vformat, vformat-time, yaml
}:
mkDerivation {
pname = "log4hs";
- version = "0.1.0.0";
- sha256 = "12crsq6gxhvamsn9ks3qn2r7aihf92aw1fcvck2wzjw9vps0y3ra";
+ version = "0.7.0.0";
+ sha256 = "06dcnhxfy18r3jrfdsklsiqcn2zmh9pxfra1ayhrl1mljj44dmd9";
libraryHaskellDepends = [
- aeson base containers data-default directory filepath generic-lens
- lens template-haskell text time
+ aeson base bytestring containers data-default directory filepath
+ generic-lens lens mtl template-haskell text time vformat
+ vformat-time yaml
];
testHaskellDepends = [
- aeson aeson-qq base containers data-default directory filepath
- generic-lens hspec hspec-core lens process QuickCheck
- template-haskell text time
+ aeson aeson-qq base bytestring containers data-default directory
+ filepath generic-lens hspec hspec-core lens mtl process QuickCheck
+ template-haskell text time vformat vformat-time yaml
];
benchmarkHaskellDepends = [
- aeson aeson-qq base containers criterion data-default directory
- filepath generic-lens lens template-haskell text time
+ aeson aeson-qq base bytestring containers criterion data-default
+ directory filepath generic-lens lens mtl template-haskell text time
+ vformat vformat-time yaml
];
description = "A python logging style log library";
license = stdenv.lib.licenses.bsd3;
@@ -155867,22 +157241,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "lsp-test_0_9_0_0" = callPackage
+ "lsp-test_0_10_0_0" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base
, bytestring, conduit, conduit-parse, containers, data-default
, Diff, directory, filepath, haskell-lsp, hspec, lens, mtl
- , parser-combinators, process, rope-utf16-splay, text, transformers
- , unix, unordered-containers
+ , parser-combinators, process, text, transformers, unix
+ , unordered-containers
}:
mkDerivation {
pname = "lsp-test";
- version = "0.9.0.0";
- sha256 = "0igd27msf3ya4i3pby434d0pa51qpr27vxyfv0q4i38ajj4ndsx4";
+ version = "0.10.0.0";
+ sha256 = "0fs4zq5xz42jp2x42p8nbswahfb5g0mmdwbrc8i65nx81q6fpxjg";
libraryHaskellDepends = [
aeson aeson-pretty ansi-terminal async base bytestring conduit
conduit-parse containers data-default Diff directory filepath
- haskell-lsp lens mtl parser-combinators process rope-utf16-splay
- text transformers unix unordered-containers
+ haskell-lsp lens mtl parser-combinators process text transformers
+ unix unordered-containers
];
testHaskellDepends = [
aeson base data-default haskell-lsp hspec lens text
@@ -156557,8 +157931,8 @@ self: {
}:
mkDerivation {
pname = "lzlib";
- version = "0.3.0.5";
- sha256 = "0mlwcchikmiaq6scs48g2snaiwcznwrcfksn4yij4hagjz734rpq";
+ version = "0.3.3.0";
+ sha256 = "140m7rivdrak5vcg473gp3ns54xy47k2xyv5z86z2s0ncf204ak6";
libraryHaskellDepends = [ base bytestring ];
libraryToolDepends = [ c2hs ];
testHaskellDepends = [ base bytestring directory hspec ];
@@ -156854,6 +158228,8 @@ self: {
pname = "machines-attoparsec";
version = "0";
sha256 = "0mxm1gy7kr7czhmfwskl56wnawb2l3axfig22935bliq75mpvbs4";
+ revision = "1";
+ editedCabalFile = "1n57r25q0aajakkl7r82yw6rs9dqlhmr0qmhs7vb7ycs5i1chyis";
libraryHaskellDepends = [
attoparsec base bytestring machines text
];
@@ -157625,6 +159001,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "managed_1_0_7" = callPackage
+ ({ mkDerivation, base, transformers }:
+ mkDerivation {
+ pname = "managed";
+ version = "1.0.7";
+ sha256 = "0wxi6d3kcpc4iyhbrnbapbdgaf46aw0a8d32n2sbs0lbk0pc4c6i";
+ libraryHaskellDepends = [ base transformers ];
+ description = "A monad for managed values";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"manatee" = callPackage
({ mkDerivation, base, binary, cairo, containers, dbus-client
, dbus-core, derive, directory, filepath, gtk, gtk-serialized-event
@@ -158205,8 +159593,8 @@ self: {
}:
mkDerivation {
pname = "map-reduce-folds";
- version = "0.1.0.3";
- sha256 = "0hkdsip3d9nvdalsra7bg7ynah3vv46lg07c7f01psv031gkhgik";
+ version = "0.1.0.4";
+ sha256 = "126zh0icfgd8q10ib2kll4z06lk1099g1lysz56jzxwb8vjknq9r";
libraryHaskellDepends = [
base containers discrimination foldl hashable hashtables parallel
profunctors split streaming streamly text unordered-containers
@@ -158315,8 +159703,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "maquinitas-tidal";
- version = "0.1.0";
- sha256 = "1gdbcjhcdgk1jx674rbh4lr1xbcks18xiygywsh3pv846wh3m0n6";
+ version = "0.2.1";
+ sha256 = "14j4469yl1ypw97m33r2v37mlqxa689ish84k7ggwjdqxj9f64n2";
libraryHaskellDepends = [ base ];
description = "library for MIDI control of hardware";
license = stdenv.lib.licenses.mit;
@@ -158534,8 +159922,8 @@ self: {
({ mkDerivation, base, comonad, HTF, MonadRandom }:
mkDerivation {
pname = "markov-realization";
- version = "0.3.2";
- sha256 = "08zsqpsklffp26ccrqf3kja2x5p8njn9vpy24ysha01f4j9y7has";
+ version = "0.3.3";
+ sha256 = "1w6rj8l40ajb5nmh3mlf99n526a17w7q9vnyn6x3j9sn0sm4csl3";
libraryHaskellDepends = [ base comonad MonadRandom ];
testHaskellDepends = [ base HTF ];
description = "Realizations of Markov chains";
@@ -158827,6 +160215,31 @@ self: {
broken = true;
}) {};
+ "massiv_0_4_5_0" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cabal-doctest
+ , data-default-class, deepseq, doctest, exceptions
+ , mersenne-random-pure64, primitive, QuickCheck, random, scheduler
+ , splitmix, template-haskell, unliftio-core, vector
+ }:
+ mkDerivation {
+ pname = "massiv";
+ version = "0.4.5.0";
+ sha256 = "06mllyp2wax1gbwafxa7sbda96mp4zhfsc3mbcpymxrap2i2c6w1";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ base bytestring data-default-class deepseq exceptions primitive
+ scheduler unliftio-core vector
+ ];
+ testHaskellDepends = [
+ base doctest mersenne-random-pure64 QuickCheck random splitmix
+ template-haskell
+ ];
+ description = "Massiv (Массив) is an Array Library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"massiv-io" = callPackage
({ mkDerivation, base, bytestring, data-default-class, deepseq
, directory, filepath, JuicyPixels, massiv, netpbm, process, vector
@@ -158888,6 +160301,29 @@ self: {
broken = true;
}) {};
+ "massiv-test_0_1_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, data-default
+ , data-default-class, deepseq, exceptions, genvalidity-hspec, hspec
+ , massiv, primitive, QuickCheck, scheduler, unliftio, vector
+ }:
+ mkDerivation {
+ pname = "massiv-test";
+ version = "0.1.2";
+ sha256 = "13sp8xw7rbwqgafn3f5f971l9i80cm09fan27cgpx8r8nmyrmhp2";
+ libraryHaskellDepends = [
+ base bytestring data-default-class deepseq exceptions hspec massiv
+ primitive QuickCheck scheduler unliftio vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers data-default deepseq genvalidity-hspec
+ hspec massiv QuickCheck scheduler vector
+ ];
+ description = "Library that contains generators, properties and tests for Massiv Array Library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"master-plan" = callPackage
({ mkDerivation, base, diagrams, diagrams-lib, diagrams-rasterific
, hspec, megaparsec, mtl, optparse-applicative, QuickCheck
@@ -159018,8 +160454,8 @@ self: {
}:
mkDerivation {
pname = "math-grads";
- version = "0.1.6.2";
- sha256 = "02flkabfqwgmgcsrlxcfk9zm8b94l65imr3xprdap1g9z26si66l";
+ version = "0.1.6.4";
+ sha256 = "018h2pczvdxvmws9sjihmyg396dvgd4a038jmi8z42rp1dgbql1r";
libraryHaskellDepends = [
aeson array base bimap containers ilist lens linear matrix mtl
random vector
@@ -159280,8 +160716,8 @@ self: {
}:
mkDerivation {
pname = "matrix-market-attoparsec";
- version = "0.1.0.8";
- sha256 = "0xqa4q4wyjjh55lggsyjhsi0kb5rhk3afzk0qhnhdmnzmf0slhay";
+ version = "0.1.1.3";
+ sha256 = "0kcjiv7qqlkqqpdv0cyrhfa81m2zxs8w06x51sj22nygr1srmdrj";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
attoparsec base bytestring exceptions scientific
@@ -159359,8 +160795,8 @@ self: {
}:
mkDerivation {
pname = "matterhorn";
- version = "50200.5.0";
- sha256 = "0ahlsyk21zm0h1ri0jwlhmqv90myn8x5xhjhpqxafsyjj8vhanpw";
+ version = "50200.6.0";
+ sha256 = "0b8qsd2w324sxmp3cgnz7fzlbhk5nz6slw8qxxm5dpy0bs5v7xnb";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -159384,8 +160820,7 @@ self: {
];
description = "Terminal client for the Mattermost chat system";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ maintainers = with stdenv.lib.maintainers; [ kiwi ];
}) {};
"mattermost-api" = callPackage
@@ -159397,8 +160832,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api";
- version = "50200.2.0";
- sha256 = "1c0d2djv3a374k9avbg95sm2f22bhz8ssafw76dnphkk7yasr8h6";
+ version = "50200.3.0";
+ sha256 = "1d5nxaf382lzsr05rcby9w8y726bsda29w46b96p89whfbq8s9h3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -159421,8 +160856,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api-qc";
- version = "50200.2.0";
- sha256 = "0wryvjx9s5p1gvvkp1kzdfgrvwrmfpy81caqc85p6mwnr18ybrbq";
+ version = "50200.3.0";
+ sha256 = "14111sq1k7iw8yy050805x0m80i9mixgxaqkl15gm0pvm4ap5ycd";
libraryHaskellDepends = [
base containers mattermost-api QuickCheck text time
];
@@ -162406,8 +163841,8 @@ self: {
}:
mkDerivation {
pname = "minilight";
- version = "0.4.1";
- sha256 = "0zx21dhnzc8p0x6v827178rl2s215gik705fggmg31hqhwkzfy4c";
+ version = "0.4.2";
+ sha256 = "0bs4ix1yazq660jn9yz3yyfxx6scj2dgy37n13461l7ax1y9xp7s";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -162478,14 +163913,16 @@ self: {
, cryptonite-conduit, digest, directory, exceptions, filepath
, http-client, http-client-tls, http-conduit, http-types, ini
, memory, protolude, QuickCheck, raw-strings-qq, resourcet, retry
- , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, temporary
- , text, time, transformers, unliftio, unliftio-core
- , unordered-containers, xml-conduit
+ , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text
+ , time, transformers, unliftio, unliftio-core, unordered-containers
+ , xml-conduit
}:
mkDerivation {
pname = "minio-hs";
- version = "1.5.1";
- sha256 = "11y8l1x5wp8pjcl3kxdlxyhfvkifpgxiywp82hwdr3r7rjc80wlw";
+ version = "1.5.2";
+ sha256 = "1yhaijz0cazgwz0fdvnx951g1s64zybbnl6n93bmxbdd7m6ydbml";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [
aeson base base64-bytestring binary bytestring case-insensitive
conduit conduit-extra connection cryptonite cryptonite-conduit
@@ -162500,8 +163937,8 @@ self: {
digest directory exceptions filepath http-client http-client-tls
http-conduit http-types ini memory protolude QuickCheck
raw-strings-qq resourcet retry tasty tasty-hunit tasty-quickcheck
- tasty-smallcheck temporary text time transformers unliftio
- unliftio-core unordered-containers xml-conduit
+ tasty-smallcheck text time transformers unliftio unliftio-core
+ unordered-containers xml-conduit
];
description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage";
license = stdenv.lib.licenses.asl20;
@@ -162974,6 +164411,8 @@ self: {
pname = "miss-porcelain";
version = "0";
sha256 = "192hxmq5j5wl6njvay0192r5gqlbjahgqd8v6ndhb53yrg7ckjmc";
+ revision = "1";
+ editedCabalFile = "11n8hllv5xgrqw1j4wbpfyld4mpmi11axfwq5nfc2lkdfdaznyql";
libraryHaskellDepends = [
base bytestring containers filesystem-abstractions list-tries miss
mtl posix-paths
@@ -163412,21 +164851,57 @@ self: {
"mmsyn7h" = callPackage
({ mkDerivation, base, bytestring, directory, mmsyn2, mmsyn3
- , mmsyn6ukr, process, vector
+ , mmsyn6ukr, mmsyn7s, mmsyn7ukr, process, vector
}:
mkDerivation {
pname = "mmsyn7h";
- version = "0.2.1.0";
- sha256 = "0ip5w42wrng87lyygawqdfwfi5ba9qam5ryc1mf7mzfcfajpfh3b";
+ version = "0.6.1.0";
+ sha256 = "0gjcfv60wapq3cwxic0p8kp9nm1jh67br8sdqh35dh6ycc9c77fi";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr process vector
+ base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7s mmsyn7ukr
+ process vector
];
executableHaskellDepends = [
- base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr process vector
+ base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7s mmsyn7ukr
+ process vector
+ ];
+ description = "Produces a sound recording specified by the Ukrainian text";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "mmsyn7l" = callPackage
+ ({ mkDerivation, base, directory, mmsyn2, mmsyn7ukr, vector }:
+ mkDerivation {
+ pname = "mmsyn7l";
+ version = "0.2.3.0";
+ sha256 = "1i9va9ynk4iihvgm5ivdf9pnjc7md2crdfkyww3a709ff416v60x";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base directory mmsyn2 mmsyn7ukr vector ];
+ executableHaskellDepends = [
+ base directory mmsyn2 mmsyn7ukr vector
];
- description = "A program and a library that produces a sound recording specified by the Ukrainian text";
+ description = "Modifies the amplitude of the sound representations for the Ukrainian language created by mmsyn7ukr package";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "mmsyn7s" = callPackage
+ ({ mkDerivation, base, mmsyn6ukr, vector }:
+ mkDerivation {
+ pname = "mmsyn7s";
+ version = "0.1.1.0";
+ sha256 = "1lm1a9cvayqk6csjisrxqc0xxgzvdh8dvav9hcqvs4wbvvf9bn26";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base mmsyn6ukr vector ];
+ executableHaskellDepends = [ base mmsyn6ukr vector ];
+ description = "Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -163438,8 +164913,8 @@ self: {
}:
mkDerivation {
pname = "mmsyn7ukr";
- version = "0.3.0.1";
- sha256 = "0pl8yhc1c888xxbn5y6yksdfdwakx46c9nr1mwv474ra266fkcmp";
+ version = "0.9.3.0";
+ sha256 = "1qqr5zkzs03bhj6gmld60j5sxrhw2myiy8aip4svs2xyz3f8wp04";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -165506,6 +166981,39 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "mongoDB_2_6_0_0" = callPackage
+ ({ mkDerivation, array, base, base16-bytestring, base64-bytestring
+ , binary, bson, bytestring, conduit, conduit-extra, containers
+ , criterion, cryptohash, data-default-class, dns, fail, hashtables
+ , hspec, http-types, lifted-base, monad-control, mtl, network
+ , nonce, old-locale, parsec, pureMD5, random, random-shuffle
+ , resourcet, stm, tagged, text, time, tls, transformers
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "mongoDB";
+ version = "2.6.0.0";
+ sha256 = "14vf47ss02hf50fd3db48jiqhw51q6fpg7ps03kx45ab1cc527kn";
+ libraryHaskellDepends = [
+ array base base16-bytestring base64-bytestring binary bson
+ bytestring conduit conduit-extra containers cryptohash
+ data-default-class dns fail hashtables http-types lifted-base
+ monad-control mtl network nonce parsec pureMD5 random
+ random-shuffle resourcet stm tagged text time tls transformers
+ transformers-base
+ ];
+ testHaskellDepends = [ base hspec mtl old-locale text time ];
+ benchmarkHaskellDepends = [
+ array base base16-bytestring base64-bytestring binary bson
+ bytestring containers criterion cryptohash data-default-class dns
+ fail hashtables http-types lifted-base monad-control mtl network
+ nonce parsec random random-shuffle stm text tls transformers-base
+ ];
+ description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mongodb-queue" = callPackage
({ mkDerivation, base, data-default, hspec, lifted-base
, monad-control, mongoDB, network, text, transformers
@@ -165609,29 +167117,6 @@ self: {
}:
mkDerivation {
pname = "mono-traversable";
- version = "1.0.13.0";
- sha256 = "1bqy982lpdb83lacfy76n8kqw5bvd31avxj25kg8gkgycdh0g0ma";
- libraryHaskellDepends = [
- base bytestring containers hashable split text transformers
- unordered-containers vector vector-algorithms
- ];
- testHaskellDepends = [
- base bytestring containers foldl hspec HUnit QuickCheck semigroups
- text transformers unordered-containers vector
- ];
- benchmarkHaskellDepends = [ base gauge mwc-random vector ];
- description = "Type classes for mapping, folding, and traversing monomorphic containers";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "mono-traversable_1_0_15_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, foldl, gauge
- , hashable, hspec, HUnit, mwc-random, QuickCheck, semigroups, split
- , text, transformers, unordered-containers, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "mono-traversable";
version = "1.0.15.1";
sha256 = "1psxhfjmpv3y54wy8f8dwa43finlj7aw2mry67pg521gxmwmppy2";
libraryHaskellDepends = [
@@ -165645,7 +167130,6 @@ self: {
benchmarkHaskellDepends = [ base gauge mwc-random vector ];
description = "Type classes for mapping, folding, and traversing monomorphic containers";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mono-traversable-instances" = callPackage
@@ -165799,14 +167283,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "monoid-subclasses_1_0" = callPackage
+ "monoid-subclasses_1_0_1" = callPackage
({ mkDerivation, base, bytestring, containers, primes, QuickCheck
, quickcheck-instances, tasty, tasty-quickcheck, text, vector
}:
mkDerivation {
pname = "monoid-subclasses";
- version = "1.0";
- sha256 = "1n7hd6whfr4gspads1frml4mbjmshyf9h42f57icz4ps3h1dzd1r";
+ version = "1.0.1";
+ sha256 = "16ypv15brywq8s403v0c586py3pw2gii8z2i91l71qjq95ii8b53";
libraryHaskellDepends = [
base bytestring containers primes text vector
];
@@ -166172,26 +167656,26 @@ self: {
, pretty-terminal, QuickCheck, quickcheck-arbitrary-adt
, quickcheck-instances, show-type, singletons, spoon, syb, tasty
, tasty-ant-xml, tasty-discover, tasty-hspec, tasty-hunit
- , tasty-quickcheck, template-haskell, text, time, timerep
- , transformers-compat, unordered-containers, vector, vinyl
- , wl-pprint-text
+ , tasty-quickcheck, template-haskell, text, th-lift
+ , th-lift-instances, time, timerep, transformers-compat, type-spec
+ , unordered-containers, vector, vinyl, wl-pprint-text
}:
mkDerivation {
pname = "morley";
- version = "0.5.0";
- sha256 = "0p84m66iklsqs8hhz33755lrqrjmp7xc9x62qbqj5bdg9mfi6kl2";
+ version = "0.6.0";
+ sha256 = "0pp771h03k0xfcpddxg0s865cl8jqk2gv29mfng6c6hvbmbwy381";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-options aeson-pretty base-noprelude base16-bytestring
base58-bytestring bimap binary bytestring constraints containers
cryptonite data-default first-class-families fmt formatting
- ghc-prim gitrev hex-text hspec interpolate lens megaparsec memory
- morley-prelude mtl named parser-combinators pretty-terminal
+ ghc-prim gitrev hex-text hspec HUnit interpolate lens megaparsec
+ memory morley-prelude mtl named parser-combinators pretty-terminal
QuickCheck quickcheck-arbitrary-adt quickcheck-instances show-type
singletons syb tasty tasty-ant-xml tasty-hunit template-haskell
- text time timerep transformers-compat unordered-containers vector
- vinyl wl-pprint-text
+ text th-lift th-lift-instances time timerep transformers-compat
+ unordered-containers vector vinyl wl-pprint-text
];
executableHaskellDepends = [
base-noprelude fmt morley-prelude named optparse-applicative
@@ -166199,10 +167683,11 @@ self: {
];
testHaskellDepends = [
aeson base-noprelude bimap bytestring constraints containers
- data-default directory filepath fmt formatting hex-text hspec
- hspec-expectations HUnit lens megaparsec morley-prelude QuickCheck
- quickcheck-arbitrary-adt quickcheck-instances singletons spoon syb
- tasty tasty-hspec tasty-quickcheck text unordered-containers vinyl
+ data-default directory filepath first-class-families fmt formatting
+ hex-text hspec hspec-expectations HUnit lens megaparsec
+ morley-prelude QuickCheck quickcheck-arbitrary-adt
+ quickcheck-instances singletons spoon syb tasty tasty-hspec
+ tasty-quickcheck text type-spec unordered-containers vinyl
];
testToolDepends = [ tasty-discover ];
description = "Developer tools for the Michelson Language";
@@ -166230,8 +167715,8 @@ self: {
}:
mkDerivation {
pname = "morph";
- version = "0.1.1.2";
- sha256 = "0imhi6yd7phfgd8mykdcd6p1fs28rzp367pzpznrg41nh7arjv6h";
+ version = "0.1.1.3";
+ sha256 = "0dbqw6bk5wnmbbn494qzfrh55cxwb80d0kc2vn4j5y043iznswgm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -166253,8 +167738,8 @@ self: {
}:
mkDerivation {
pname = "morpheus-graphql";
- version = "0.8.0";
- sha256 = "1b2c39mgh66vkgzhz857m8mlb3kymxnfli0v3z9mrj39a75m6imz";
+ version = "0.10.0";
+ sha256 = "1aan9afsljd83dm8zj3qg5hna80cp3iqzqrlhy0znr2xg9dlswg1";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring containers megaparsec mtl scientific
@@ -167313,6 +168798,152 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "mu-avro" = callPackage
+ ({ mkDerivation, aeson, avro, base, bytestring, containers
+ , mu-schema, sop-core, tagged, template-haskell, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "mu-avro";
+ version = "0.1.0.0";
+ sha256 = "1g5083vwd0s7h27r8l8mdrqwbflq89cgm1660cd1nd29vypwz55x";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson avro base bytestring containers mu-schema sop-core tagged
+ template-haskell text unordered-containers vector
+ ];
+ executableHaskellDepends = [ avro base bytestring mu-schema ];
+ description = "Avro serialization support for Mu microservices";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
+ "mu-grpc-client" = callPackage
+ ({ mkDerivation, async, base, bytestring, conduit, http2
+ , http2-client, http2-client-grpc, http2-grpc-proto3-wire
+ , mu-protobuf, mu-rpc, mu-schema, sop-core, stm, stm-chans
+ , stm-conduit, template-haskell, text, th-abstraction
+ }:
+ mkDerivation {
+ pname = "mu-grpc-client";
+ version = "0.1.0.0";
+ sha256 = "00i6z413dknh71dnzy61wcgkcwczj74042glsag8193pr1kxa3s6";
+ libraryHaskellDepends = [
+ async base bytestring conduit http2 http2-client http2-client-grpc
+ http2-grpc-proto3-wire mu-protobuf mu-rpc mu-schema sop-core stm
+ stm-chans stm-conduit template-haskell text th-abstraction
+ ];
+ description = "gRPC clients from Mu definitions";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "mu-grpc-server" = callPackage
+ ({ mkDerivation, async, base, bytestring, conduit
+ , http2-grpc-proto3-wire, http2-grpc-types, mtl, mu-protobuf
+ , mu-rpc, mu-schema, sop-core, stm, stm-conduit, wai, warp
+ , warp-grpc, warp-tls
+ }:
+ mkDerivation {
+ pname = "mu-grpc-server";
+ version = "0.1.0.1";
+ sha256 = "0f494cn3x1v6hdmyf7w97hvhlvichw70pz9jza232rv7ds6bq38j";
+ revision = "1";
+ editedCabalFile = "0g1qs1ydjy0yn2997il049ldb303gvjvc1pn7j161zb31zlc699m";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ async base bytestring conduit http2-grpc-proto3-wire
+ http2-grpc-types mtl mu-protobuf mu-rpc mu-schema sop-core stm
+ stm-conduit wai warp warp-grpc warp-tls
+ ];
+ executableHaskellDepends = [
+ async base bytestring conduit http2-grpc-proto3-wire
+ http2-grpc-types mtl mu-protobuf mu-rpc mu-schema sop-core stm
+ stm-conduit wai warp warp-grpc warp-tls
+ ];
+ description = "gRPC servers for Mu definitions";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "mu-persistent" = callPackage
+ ({ mkDerivation, base, monad-logger, mu-schema, persistent
+ , resourcet, transformers
+ }:
+ mkDerivation {
+ pname = "mu-persistent";
+ version = "0.1.0.0";
+ sha256 = "16y1d69zwfrv2wdx0xj1aavhkfv5z6bg9wvzj29215k1vcvarx7i";
+ libraryHaskellDepends = [
+ base monad-logger mu-schema persistent resourcet transformers
+ ];
+ description = "Utilities for interoperation between Mu and Persistent";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
+ "mu-protobuf" = callPackage
+ ({ mkDerivation, base, bytestring, compendium-client, http-client
+ , http2-grpc-proto3-wire, language-protobuf, mu-rpc, mu-schema
+ , proto3-wire, servant-client-core, sop-core, template-haskell
+ , text
+ }:
+ mkDerivation {
+ pname = "mu-protobuf";
+ version = "0.1.0.0";
+ sha256 = "1vlsq45cjkll4y9fjgjnvp1d9ax850zxy9rawprcrnwc48wmpdxz";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base bytestring compendium-client http-client
+ http2-grpc-proto3-wire language-protobuf mu-rpc mu-schema
+ proto3-wire servant-client-core sop-core template-haskell text
+ ];
+ executableHaskellDepends = [
+ base bytestring mu-schema proto3-wire text
+ ];
+ description = "Protocol Buffers serialization and gRPC schema import for Mu microservices";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "mu-rpc" = callPackage
+ ({ mkDerivation, base, conduit, mtl, mu-schema, sop-core
+ , template-haskell, text
+ }:
+ mkDerivation {
+ pname = "mu-rpc";
+ version = "0.1.0.0";
+ sha256 = "1hinkmhgp49sl7d00iz20p9maf47almii9000hfkszyqbq1dh58p";
+ libraryHaskellDepends = [
+ base conduit mtl mu-schema sop-core template-haskell text
+ ];
+ description = "Protocol-independent declaration of services and servers";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
+ "mu-schema" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, sop-core
+ , template-haskell, text, th-abstraction, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "mu-schema";
+ version = "0.1.0.0";
+ sha256 = "0yqm70w5xbzlcgqdwywfr0qncxlzi9z3nshs8x06shd0g0gjgmhy";
+ libraryHaskellDepends = [
+ aeson base bytestring containers sop-core template-haskell text
+ th-abstraction unordered-containers vector
+ ];
+ description = "Format-independent schemas for serialization";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"mucipher" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -168505,6 +170136,27 @@ self: {
broken = true;
}) {};
+ "musicScroll" = callPackage
+ ({ mkDerivation, async, base, bytestring, containers, dbus, gi-gtk
+ , gi-gtk-hs, gtk3, req, stm, tagsoup, text
+ }:
+ mkDerivation {
+ pname = "musicScroll";
+ version = "0.1.1.0";
+ sha256 = "0f1i3ys1pfylb5igqwkap0k7v47a2c5vfnhc2flxw9h6aim8yh6h";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ async base bytestring containers dbus gi-gtk gi-gtk-hs req stm
+ tagsoup text
+ ];
+ executableHaskellDepends = [ base ];
+ executablePkgconfigDepends = [ gtk3 ];
+ description = "Supply your tunes info without leaving your music player";
+ license = stdenv.lib.licenses.gpl3;
+ }) {inherit (pkgs) gtk3;};
+
"musicbrainz-email" = callPackage
({ mkDerivation, aeson, amqp, base, blaze-builder, bytestring
, configurator, errors, ghc-prim, heist, HTTP, HUnit, mime-mail
@@ -168547,8 +170199,8 @@ self: {
}:
mkDerivation {
pname = "musicw";
- version = "0.3.0";
- sha256 = "143yxcj9c1wabg2nmm3ljpdi1r2ah9mf1c8hc2m74gwq08dl78zj";
+ version = "0.3.2";
+ sha256 = "1r4fp9bda4hn8alv5w95m0a1qp513zkq9a90fjipw1m6lr21xacw";
libraryHaskellDepends = [
array base bytestring containers data-default file-embed ghcjs-base
ghcjs-dom ghcjs-prim json monad-loops mtl safe text time
@@ -168670,6 +170322,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "mutable" = callPackage
+ ({ mkDerivation, base, constraints, criterion, deepseq, directory
+ , generic-lens, microlens, microlens-th, primitive, reflection
+ , time, transformers, vector, vinyl
+ }:
+ mkDerivation {
+ pname = "mutable";
+ version = "0.1.0.0";
+ sha256 = "1z231r8ngwhdr5znw2kxg6ldsasr8iyki0wwyg1s24d505xadnry";
+ libraryHaskellDepends = [
+ base constraints generic-lens primitive reflection transformers
+ vector vinyl
+ ];
+ benchmarkHaskellDepends = [
+ base criterion deepseq directory microlens microlens-th time
+ transformers vector vinyl
+ ];
+ description = "Automatic piecewise-mutable references for your types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"mutable-containers" = callPackage
({ mkDerivation, base, containers, gauge, ghc-prim, hspec
, mono-traversable, primitive, QuickCheck, vector
@@ -170114,8 +171789,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "natural-arithmetic";
- version = "0.1.1.0";
- sha256 = "0n2330b2g4gy1ljpcww9vmj74ig23m0zxkg92721zpdfywlcy44g";
+ version = "0.1.2.0";
+ sha256 = "0zw1dax3a67cpilq57ykbrjybz9kc45qflpr6mwfz79hpx9pcld0";
libraryHaskellDepends = [ base ];
description = "Arithmetic of natural numbers";
license = stdenv.lib.licenses.bsd3;
@@ -170752,8 +172427,8 @@ self: {
}:
mkDerivation {
pname = "net-spider";
- version = "0.3.3.0";
- sha256 = "0az14yg32psxkb5fm86g1gi7wd8cfq1lbn34852m6814qvk05m36";
+ version = "0.4.0.1";
+ sha256 = "0fzxyg4bypbarzizn3cb6g9ywvqqsl0i32mxcwn2ki9ihlp20601";
libraryHaskellDepends = [
aeson base containers data-interval extended-reals greskell
greskell-websocket hashable monad-logger safe-exceptions scientific
@@ -170775,8 +172450,8 @@ self: {
}:
mkDerivation {
pname = "net-spider-cli";
- version = "0.2.0.0";
- sha256 = "0ls8j8l6nv74big5almkgmkzd9h5kdfiq4q06m86rfmbfq0cvhyk";
+ version = "0.2.0.1";
+ sha256 = "06lzicfgqslnvm9vpw412d00p2mxjmxx3j2694mcgpqr57s3mhlc";
libraryHaskellDepends = [
aeson base greskell-core hashable net-spider optparse-applicative
text
@@ -170796,8 +172471,8 @@ self: {
}:
mkDerivation {
pname = "net-spider-pangraph";
- version = "0.1.1.1";
- sha256 = "135apkmcdlasfvj7nrgghngh5kh7bb1dp30007fj0nihp06c8nhp";
+ version = "0.2.0.0";
+ sha256 = "1ijaa4zsbm583s0bmhrc475p6q1gkx1wz3sg6698aciw0ip14kjs";
libraryHaskellDepends = [
base bytestring greskell net-spider pangraph text time
];
@@ -170817,8 +172492,8 @@ self: {
}:
mkDerivation {
pname = "net-spider-rpl";
- version = "0.3.1.0";
- sha256 = "1nhvr3ybkms7l0m0qmmh7ib147hz2vgjwcsy00bhri054xryx7q2";
+ version = "0.4.0.1";
+ sha256 = "117ymh7sbaf2d3hivcm0c9xczxb2sgs0gggyk9fv4zpk32pywhlm";
libraryHaskellDepends = [
aeson base conduit conduit-parse greskell hashable ip monad-logger
mtl net-spider safe-exceptions text time
@@ -170839,8 +172514,8 @@ self: {
}:
mkDerivation {
pname = "net-spider-rpl-cli";
- version = "0.1.2.0";
- sha256 = "11qbfvxwsba4dlwgrx81yncww2ic1iafp2zg5l5rvk8cnb2z5g2n";
+ version = "0.1.2.2";
+ sha256 = "1l8h3d3m7h48n6vn7lhzlisf6hqr311q1yjxxp2ywkyx1fn3s9pp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -171517,6 +173192,8 @@ self: {
];
description = "An interface to bitcoind";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"network-bsd" = callPackage
@@ -171580,6 +173257,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "network-byte-order_0_1_3_0" = callPackage
+ ({ mkDerivation, base, bytestring, doctest }:
+ mkDerivation {
+ pname = "network-byte-order";
+ version = "0.1.3.0";
+ sha256 = "1kp4hgbq69b85m978ambmk8jil3maddfirivzr56zj01zh9m52z3";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [ base bytestring doctest ];
+ description = "Network byte order utilities";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"network-bytestring" = callPackage
({ mkDerivation, base, bytestring, network, unix }:
mkDerivation {
@@ -172024,12 +173714,12 @@ self: {
}) {};
"network-run" = callPackage
- ({ mkDerivation, base, network }:
+ ({ mkDerivation, base, bytestring, network }:
mkDerivation {
pname = "network-run";
- version = "0.2.1";
- sha256 = "0fviap6njppdw1dv9dy5027q37kz93w3vdzij0wgp4jp284qcc1f";
- libraryHaskellDepends = [ base network ];
+ version = "0.2.2";
+ sha256 = "1znf2pafcg1gcrb3yyc69h6y5mb8hilibr5khcwil09i5djsjyxx";
+ libraryHaskellDepends = [ base bytestring network ];
description = "Simple network runner library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -172298,15 +173988,16 @@ self: {
}) {};
"network-transport-tcp" = callPackage
- ({ mkDerivation, base, bytestring, containers, data-accessor
- , network, network-transport, network-transport-tests
+ ({ mkDerivation, async, base, bytestring, containers, data-accessor
+ , network, network-transport, network-transport-tests, uuid
}:
mkDerivation {
pname = "network-transport-tcp";
- version = "0.6.0";
- sha256 = "15p6y91gnk0xvysr3abcicwl343bq9bi1liaxcrwh2ffwws02kvp";
+ version = "0.7.0";
+ sha256 = "14xrcadg4zg1zc02irf474nv0iqr7lc3h47x46rp32zhzc52ac2n";
libraryHaskellDepends = [
- base bytestring containers data-accessor network network-transport
+ async base bytestring containers data-accessor network
+ network-transport uuid
];
testHaskellDepends = [
base bytestring network network-transport network-transport-tests
@@ -172323,8 +174014,8 @@ self: {
}:
mkDerivation {
pname = "network-transport-tests";
- version = "0.2.4.2";
- sha256 = "1iyb4zm2iw805qfnlhnlwm2hh1ajhzgzlghsn8g3hnpdgszw896b";
+ version = "0.2.4.3";
+ sha256 = "084skywzffmmla673k3rbwanqc4p0bckyxkjvkkxphmqfdmgv5p6";
libraryHaskellDepends = [
ansi-terminal base bytestring containers mtl network-transport
random
@@ -172942,17 +174633,20 @@ self: {
}) {};
"ngx-export-tools-extra" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers
- , enclosed-exceptions, http-client, ngx-export-tools, snap-core
- , snap-server, template-haskell, text, time
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, base64, bytestring
+ , containers, ede, enclosed-exceptions, http-client, http-types
+ , ngx-export, ngx-export-tools, snap-core, snap-server
+ , template-haskell, text, time, unordered-containers
}:
mkDerivation {
pname = "ngx-export-tools-extra";
- version = "0.1.0.1";
- sha256 = "0f55j4742rimq7jawgk0ca5kcxg9nz0lfpip5p3sw03w3g52xqxh";
+ version = "0.2.1.0";
+ sha256 = "0xka55h7c5zqyb8nj1pyq0iq50yfwy4p6fspya1zbi0yjblnxnsa";
libraryHaskellDepends = [
- aeson base bytestring containers enclosed-exceptions http-client
+ aeson ansi-wl-pprint base base64 bytestring containers ede
+ enclosed-exceptions http-client http-types ngx-export
ngx-export-tools snap-core snap-server template-haskell text time
+ unordered-containers
];
description = "More extra tools for Nginx haskell module";
license = stdenv.lib.licenses.bsd3;
@@ -173179,8 +174873,8 @@ self: {
}:
mkDerivation {
pname = "niv";
- version = "0.2.9";
- sha256 = "1rmmipa33a8nip6fn616ihdiqdax15niblzspfk8ckrz5fpj2476";
+ version = "0.2.12";
+ sha256 = "0lbkc49ddkxb6x3miimcd2c4ajwf7d9z0hay54n0gmz7d92ha8q0";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -177945,10 +179639,8 @@ self: {
}:
mkDerivation {
pname = "optparse-generic";
- version = "1.3.0";
- sha256 = "13rr3hq26dpmbami8vb6d1ig9ywk6jia22sp5dkp6jkfc1c9k4l0";
- revision = "3";
- editedCabalFile = "0vszcjmxywblx5z9yvrz8c6yc104jgr1nv0sbv58ansd3rkjlzfn";
+ version = "1.3.1";
+ sha256 = "0c2fhy54mn8h7z5qj3mq1qcdb1ab6bxbpiaaqwrmh7iys41zg6q0";
libraryHaskellDepends = [
base bytestring Only optparse-applicative semigroups
system-filepath text time transformers void
@@ -178398,8 +180090,8 @@ self: {
}:
mkDerivation {
pname = "ormolu";
- version = "0.0.2.0";
- sha256 = "10p3h98k5ph2awmdd89k8knavv4npvdmh00a9nrzaw6z32j0igfh";
+ version = "0.0.3.1";
+ sha256 = "0pvnswbxi09fddnn012sha3fbmm30yzlzh2x1asw9ahjk3a3bdlg";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -178416,8 +180108,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A formatter for Haskell source code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"os-release" = callPackage
@@ -179319,6 +181009,25 @@ self: {
broken = true;
}) {pam = null;};
+ "pan-os-syslog" = callPackage
+ ({ mkDerivation, base, byteslice, bytesmith, chronos, gauge, ip
+ , primitive, primitive-addr, run-st
+ }:
+ mkDerivation {
+ pname = "pan-os-syslog";
+ version = "0.1.0.0";
+ sha256 = "0ydydbql0pgd6vp9zvzjf0qzsprjaicz9vffrrp3z1xgmfynh70r";
+ libraryHaskellDepends = [
+ base byteslice bytesmith chronos ip primitive primitive-addr run-st
+ ];
+ testHaskellDepends = [ base byteslice primitive ];
+ benchmarkHaskellDepends = [ base byteslice gauge primitive ];
+ description = "Parse syslog traffic from PAN-OS";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"panda" = callPackage
({ mkDerivation, base, cgi, containers, data-default, directory
, filepath, gravatar, haskell98, hcheat, kibro, MissingH, mps
@@ -179393,7 +181102,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
- "pandoc_2_9_1" = callPackage
+ "pandoc_2_9_1_1" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base
, base64-bytestring, binary, blaze-html, blaze-markup, bytestring
, case-insensitive, cmark-gfm, containers, criterion, data-default
@@ -179410,8 +181119,8 @@ self: {
}:
mkDerivation {
pname = "pandoc";
- version = "2.9.1";
- sha256 = "1ywbsx8389vp4a85sxajdgj0vis4v8y6zkq87lla0s1lprk3am0a";
+ version = "2.9.1.1";
+ sha256 = "0vc1ld57nv27gwq4mq0wdal8k2wxvsc0f3m2jwq9nkq7wbpwa8cx";
configureFlags = [ "-fhttps" "-f-trypandoc" ];
isLibrary = true;
isExecutable = true;
@@ -179788,8 +181497,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-plantuml-diagrams";
- version = "0.1.0.3";
- sha256 = "1l3rp09b7824dlsbcj0hn6g0rb4bhdc9788vlfn0lgr887iy1sq8";
+ version = "0.1.0.4";
+ sha256 = "1fshgv5wl56z3w0yimwv5dbi7dal600anb5wkxd5n3jlpmp8fwky";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -179797,7 +181506,8 @@ self: {
];
executableHaskellDepends = [ base pandoc-types ];
testHaskellDepends = [
- base hspec hspec-discover mtl pandoc-types SHA utf8-string
+ base bytestring directory hspec hspec-discover mtl pandoc-types
+ process SHA utf8-string
];
testToolDepends = [ hspec-discover ];
description = "Render and insert PlantUML diagrams with Pandoc";
@@ -179806,6 +181516,37 @@ self: {
broken = true;
}) {};
+ "pandoc-plot" = callPackage
+ ({ mkDerivation, base, containers, data-default-class, deepseq
+ , directory, filepath, hashable, hspec, hspec-expectations, mtl
+ , open-browser, optparse-applicative, pandoc, pandoc-types
+ , parallel-io, shakespeare, tasty, tasty-hspec, tasty-hunit
+ , template-haskell, temporary, text, turtle, typed-process, yaml
+ }:
+ mkDerivation {
+ pname = "pandoc-plot";
+ version = "0.2.1.0";
+ sha256 = "1q5ai86bmxdx1vw0wmp1gbg3sd4ys4gq58hivri5nz3ggfjdvy3b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-default-class directory filepath hashable mtl
+ pandoc pandoc-types parallel-io shakespeare temporary text turtle
+ typed-process yaml
+ ];
+ executableHaskellDepends = [
+ base data-default-class deepseq directory filepath open-browser
+ optparse-applicative pandoc pandoc-types template-haskell temporary
+ text
+ ];
+ testHaskellDepends = [
+ base data-default-class directory filepath hspec hspec-expectations
+ mtl pandoc-types tasty tasty-hspec tasty-hunit temporary text
+ ];
+ description = "A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice";
+ license = stdenv.lib.licenses.gpl2;
+ }) {};
+
"pandoc-pyplot" = callPackage
({ mkDerivation, base, containers, data-default-class, deepseq
, directory, filepath, hashable, hspec, hspec-expectations
@@ -181096,6 +182837,8 @@ self: {
];
description = "Streaming Parquet reader";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"parse-dimacs" = callPackage
@@ -181880,16 +183623,16 @@ self: {
}) {};
"password" = callPackage
- ({ mkDerivation, base, doctest, QuickCheck, quickcheck-instances
- , scrypt, text
+ ({ mkDerivation, base, bytestring, doctest, QuickCheck
+ , quickcheck-instances, scrypt, text
}:
mkDerivation {
pname = "password";
- version = "0.1.0.0";
- sha256 = "097zpb3brl7qib2a7di4y5lpkgzyqanhcyfchpf1xng199k2bwp3";
+ version = "0.1.0.1";
+ sha256 = "0n96n9kiiij6pf587y21v39c2zh9r4n4yd6n2k8km770k3bg1skr";
libraryHaskellDepends = [ base scrypt text ];
testHaskellDepends = [
- base doctest QuickCheck quickcheck-instances
+ base bytestring doctest QuickCheck quickcheck-instances
];
description = "plain-text password and hashed password datatypes and functions";
license = stdenv.lib.licenses.bsd3;
@@ -181901,8 +183644,8 @@ self: {
}:
mkDerivation {
pname = "password-instances";
- version = "0.3.0.0";
- sha256 = "1ll5c9dpw23v4r3zf3v7rc6y5cjh55myjdg5mvyi1d5kb95pbwp9";
+ version = "0.3.0.1";
+ sha256 = "03x9ky018r1ihl4ajc1fcw78g8h1vk3dzr4gjqck78jsb8kj7l93";
libraryHaskellDepends = [
aeson base http-api-data password persistent
];
@@ -181982,8 +183725,8 @@ self: {
}:
mkDerivation {
pname = "patat";
- version = "0.8.4.0";
- sha256 = "0yq3y5qbc4mr0vmy26v6rf7h6jc2hlgf7kgdp0i69ill0xlkdasx";
+ version = "0.8.4.3";
+ sha256 = "1zz007l9ap9qlhgwr7jjavr6h5r1cnr9wflyxpvjmdzmn6ch74w4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -182002,6 +183745,26 @@ self: {
broken = true;
}) {};
+ "patch" = callPackage
+ ({ mkDerivation, base, constraints-extras, containers
+ , dependent-map, dependent-sum, directory, filemanip, filepath
+ , hlint, lens, monoidal-containers, semialign, semigroupoids, these
+ , transformers, witherable
+ }:
+ mkDerivation {
+ pname = "patch";
+ version = "0.0.2.0";
+ sha256 = "0c9wf996k8py90ld6353hynb96fdird7lm4kx3djaild6iiyiaal";
+ libraryHaskellDepends = [
+ base constraints-extras containers dependent-map dependent-sum lens
+ monoidal-containers semialign semigroupoids these transformers
+ witherable
+ ];
+ testHaskellDepends = [ base directory filemanip filepath hlint ];
+ description = "Infrastructure for writing patches which act on other types";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"patch-combinators" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -182086,6 +183849,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "path_0_7_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions
+ , filepath, genvalidity, genvalidity-hspec, genvalidity-property
+ , hashable, hspec, mtl, QuickCheck, template-haskell, text
+ , validity
+ }:
+ mkDerivation {
+ pname = "path";
+ version = "0.7.0";
+ sha256 = "1dl7yjmkcdm3wlbj1s5qvkl31apl3dnwz5jc8h3hdq0w722x4a5k";
+ revision = "1";
+ editedCabalFile = "0ph5qs50lm8ac58v8df0mmivqfilb1wz14568q06aws6gwj9qqpi";
+ libraryHaskellDepends = [
+ aeson base deepseq exceptions filepath hashable template-haskell
+ text
+ ];
+ testHaskellDepends = [
+ aeson base bytestring filepath genvalidity genvalidity-hspec
+ genvalidity-property hspec mtl QuickCheck validity
+ ];
+ description = "Support for well-typed paths";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"path-extra" = callPackage
({ mkDerivation, attoparsec, base, path, QuickCheck
, quickcheck-instances, tasty, tasty-quickcheck, text
@@ -182132,6 +183920,8 @@ self: {
pname = "path-io";
version = "1.6.0";
sha256 = "0hcdxxwkhdhm59p6x74k1fsgsrqfa100c83cslm1h9ln0anj1r3k";
+ revision = "1";
+ editedCabalFile = "1kwrkpmwmar8nwaar02m3kfy24vl3kzm0m3iq0d4ryd84a6a0dax";
libraryHaskellDepends = [
base containers directory dlist exceptions filepath path temporary
time transformers unix-compat
@@ -184029,8 +185819,8 @@ self: {
}:
mkDerivation {
pname = "persistent-mongoDB";
- version = "2.9.0";
- sha256 = "1xahxmr1rwi2sj809zfqs50kss7ii6df9k52rqr2zxp8q2ipkrx9";
+ version = "2.9.0.2";
+ sha256 = "0q78y1ydsvm0jrsi211zq789vy50czhskwq13plv6l2h4860917v";
libraryHaskellDepends = [
aeson base bson bytestring cereal conduit http-api-data mongoDB
network path-pieces persistent resource-pool resourcet text time
@@ -184068,7 +185858,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "persistent-mysql_2_10_2" = callPackage
+ "persistent-mysql_2_10_2_2" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit
, containers, fast-logger, hspec, HUnit, monad-logger, mysql
, mysql-simple, persistent, persistent-qq, persistent-template
@@ -184077,8 +185867,8 @@ self: {
}:
mkDerivation {
pname = "persistent-mysql";
- version = "2.10.2";
- sha256 = "1h5jz1w6ayinlpwbwaxvmrp4pcyqiirvi9gpv249gqabq95fmq57";
+ version = "2.10.2.2";
+ sha256 = "1b1x673nzqdv3i2rwn4fp4ky9a49dc6vfif1xjajzwf75mffabfb";
libraryHaskellDepends = [
aeson base blaze-builder bytestring conduit containers monad-logger
mysql mysql-simple persistent resource-pool resourcet text
@@ -184119,6 +185909,39 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "persistent-mysql-haskell_0_6_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, containers
+ , fast-logger, hspec, HUnit, io-streams, monad-logger
+ , mysql-haskell, network, persistent, persistent-qq
+ , persistent-template, persistent-test, QuickCheck
+ , quickcheck-instances, resource-pool, resourcet, text, time, tls
+ , transformers, unliftio-core
+ }:
+ mkDerivation {
+ pname = "persistent-mysql-haskell";
+ version = "0.6.0";
+ sha256 = "1b5195mrl3x79wi7qj95kx96dwwfldjfx6arb6l1ff4mmgxh3q8s";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring conduit containers io-streams monad-logger
+ mysql-haskell network persistent resource-pool resourcet text time
+ tls transformers unliftio-core
+ ];
+ executableHaskellDepends = [
+ base monad-logger persistent persistent-template transformers
+ ];
+ testHaskellDepends = [
+ base bytestring containers fast-logger hspec HUnit monad-logger
+ persistent persistent-qq persistent-template persistent-test
+ QuickCheck quickcheck-instances resourcet text time transformers
+ unliftio-core
+ ];
+ description = "A pure haskell backend for the persistent library using MySQL database server";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-odbc" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, convertible, HDBC, HDBC-odbc, monad-logger, persistent
@@ -184196,7 +186019,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-postgresql_2_10_1" = callPackage
+ "persistent-postgresql_2_10_1_2" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit
, containers, fast-logger, hspec, hspec-expectations, HUnit
, monad-logger, persistent, persistent-qq, persistent-template
@@ -184206,8 +186029,8 @@ self: {
}:
mkDerivation {
pname = "persistent-postgresql";
- version = "2.10.1";
- sha256 = "1l6fwdql6b896f3dbjddpplrh45msm2hpwnbmlhpvam7kkivjjx2";
+ version = "2.10.1.2";
+ sha256 = "1q7n0h16argvpw2y3f8mxzmvy24q6if46ab9nvybviki283zbvlb";
libraryHaskellDepends = [
aeson base blaze-builder bytestring conduit containers monad-logger
persistent postgresql-libpq postgresql-simple resource-pool
@@ -184259,6 +186082,28 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "persistent-qq_2_9_1_1" = callPackage
+ ({ mkDerivation, aeson, base, fast-logger, haskell-src-meta, hspec
+ , HUnit, monad-logger, mtl, persistent, persistent-sqlite
+ , persistent-template, resourcet, template-haskell, text, unliftio
+ }:
+ mkDerivation {
+ pname = "persistent-qq";
+ version = "2.9.1.1";
+ sha256 = "16gglrq59jrr4hyk5wwyza6x4s9izf5944igkv6mpj8vnanjazqs";
+ libraryHaskellDepends = [
+ base haskell-src-meta mtl persistent template-haskell text
+ ];
+ testHaskellDepends = [
+ aeson base fast-logger haskell-src-meta hspec HUnit monad-logger
+ mtl persistent persistent-sqlite persistent-template resourcet
+ template-haskell text unliftio
+ ];
+ description = "Provides a quasi-quoter for raw SQL for persistent";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-ratelimit" = callPackage
({ mkDerivation, base, time, yesod }:
mkDerivation {
@@ -184413,7 +186258,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {inherit (pkgs) sqlite;};
- "persistent-sqlite_2_10_5" = callPackage
+ "persistent-sqlite_2_10_5_2" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, exceptions, fast-logger, hspec, HUnit, microlens-th, monad-logger
, persistent, persistent-template, persistent-test, QuickCheck
@@ -184423,8 +186268,8 @@ self: {
}:
mkDerivation {
pname = "persistent-sqlite";
- version = "2.10.5";
- sha256 = "1sghp7ffi383bzlgm83g0l5bzjbs67m6lxn3fsz74y0yy9ix33ha";
+ version = "2.10.5.2";
+ sha256 = "0agag3cgivl6mk38pqzr0qw5lxps9p2bgdwvi5658l46hs7bixxn";
configureFlags = [ "-fsystemlib" ];
isLibrary = true;
isExecutable = true;
@@ -184471,20 +186316,21 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-template_2_7_3" = callPackage
+ "persistent-template_2_8_0_1" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
, deepseq, deepseq-generics, file-embed, hspec, http-api-data
, monad-control, monad-logger, path-pieces, persistent, QuickCheck
- , template-haskell, text, transformers, unordered-containers
+ , template-haskell, text, th-lift-instances, transformers
+ , unordered-containers
}:
mkDerivation {
pname = "persistent-template";
- version = "2.7.3";
- sha256 = "0msvjpn6bv1f4jxap09399imfq88s8ccqyh3bgh4kzgwshq8sgmd";
+ version = "2.8.0.1";
+ sha256 = "0chgzq70ss8b9hkq0v6zi2kdqsbj3xxcl485ajmwrxclkz1f8c3n";
libraryHaskellDepends = [
aeson base bytestring containers http-api-data monad-control
monad-logger path-pieces persistent template-haskell text
- transformers unordered-containers
+ th-lift-instances transformers unordered-containers
];
testHaskellDepends = [
aeson base bytestring hspec persistent QuickCheck text
@@ -184531,8 +186377,8 @@ self: {
}:
mkDerivation {
pname = "persistent-test";
- version = "2.0.3.0";
- sha256 = "1bspcv64qhcqiam964kxfxlc9afbns41dffh00k36dl2akr7p99a";
+ version = "2.0.3.1";
+ sha256 = "11aq5cy0n43jamf6mg4sr4300bc2zdbjxsczzxwjkb4hzs0ijsdv";
libraryHaskellDepends = [
aeson base blaze-html bytestring conduit containers exceptions
hspec hspec-expectations HUnit monad-control monad-logger
@@ -185536,8 +187382,8 @@ self: {
({ mkDerivation, base, containers, random, rdtsc, transformers }:
mkDerivation {
pname = "picosat";
- version = "0.1.5";
- sha256 = "0wc6zd1llyb880xvb8712b8mcil3arxnci68q2gmjb0gxa40jj6y";
+ version = "0.1.6";
+ sha256 = "12yckbmryk0darmsdv8dfm9hzfz4xhkx6xvf3wn97agjki7gazmg";
libraryHaskellDepends = [ base containers transformers ];
testHaskellDepends = [ base containers random rdtsc transformers ];
description = "Bindings to the PicoSAT solver";
@@ -187918,6 +189764,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "plucky" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "plucky";
+ version = "0.0.0.1";
+ sha256 = "11v1zhhgvzmhlk5vnr7lhw8gb2w5gvs4wwvkynj9lxbv96a8yb5s";
+ libraryHaskellDepends = [ base transformers ];
+ testHaskellDepends = [ base mtl ];
+ description = "A library and technique for handling errors via plucking constraints";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"plugins" = callPackage
({ mkDerivation, array, base, Cabal, containers, directory
, filepath, ghc, ghc-paths, ghc-prim, haskell-src, process, random
@@ -188924,10 +190782,8 @@ self: {
}:
mkDerivation {
pname = "pomaps";
- version = "0.0.2.1";
- sha256 = "1p0sqh87scpff1j4q4mpb3dyml0vsh2yrhdc7hv0rbm0vhy2bvla";
- revision = "1";
- editedCabalFile = "0v1s35ddx697rzgp08p6brn801w7gky73w1qll3d10vy4qbhs435";
+ version = "0.1.0.0";
+ sha256 = "0vacywl9yg5dyayf34k5sxnf35x0hxwh0dsdglqk243hf9lrd0wz";
libraryHaskellDepends = [
base containers deepseq ghc-prim lattices
];
@@ -190217,8 +192073,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-simple-migration";
- version = "0.1.14.0";
- sha256 = "1z9fdfwpcnhbsq977070hn8ykxcnisjzvpdh5lz4bqirscx2gr2c";
+ version = "0.1.15.0";
+ sha256 = "0j6nhyknxlmpl0yrdj1pifw1fbb24080jgg64grnhqjwh1d44dvd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -190263,18 +192119,18 @@ self: {
}:
mkDerivation {
pname = "postgresql-simple-opts";
- version = "0.5.0.1";
- sha256 = "003pny8vhbpl9vdfrw2k5x2cg6q01pirhl95s1zbm6vx2p8vpx89";
+ version = "0.6.0.0";
+ sha256 = "0zsr0zgn5y1bpj98aq00v7xd0p3kmfk692djw0rp6ikw1390bbdb";
libraryHaskellDepends = [
base bytestring data-default either envy generic-deriving
optparse-applicative optparse-generic postgres-options
postgresql-simple split uri-bytestring
];
testHaskellDepends = [
- base bytestring containers data-default hspec optparse-applicative
- postgres-options postgresql-simple
+ base bytestring containers data-default envy hspec
+ optparse-applicative postgres-options postgresql-simple
];
- description = "An optparse-applicative and envy parser for postgresql-simple's connection options";
+ description = "An optparse-applicative and envy parser for postgres options";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -190412,8 +192268,6 @@ self: {
];
description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"postgresql-typed-lifted" = callPackage
@@ -190882,6 +192736,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "pprecord" = callPackage
+ ({ mkDerivation, base, boxes }:
+ mkDerivation {
+ pname = "pprecord";
+ version = "0.2.0.0";
+ sha256 = "1gpr6sndh3pc43f1aks7wq8h969bbj2rc01rvaq9pkdnwqlqr7r4";
+ libraryHaskellDepends = [ base boxes ];
+ description = "A library for pretty printing Records";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"pptable" = callPackage
({ mkDerivation, base, boxes, containers, generic-deriving, HUnit
, markdown-unlit, pretty, QuickCheck, syb, tasty, tasty-hunit
@@ -191122,12 +192987,14 @@ self: {
}) {};
"predicate-transformers" = callPackage
- ({ mkDerivation, adjunctions, base, lens, mtl }:
+ ({ mkDerivation, adjunctions, base, deepseq, lens, mtl }:
mkDerivation {
pname = "predicate-transformers";
- version = "0.6.0.0";
- sha256 = "0m1dgkfbw4prhccllpdm7h99shp2554f1bvi0s950qa2k3mvz9l4";
- libraryHaskellDepends = [ adjunctions base lens mtl ];
+ version = "0.7.0.2";
+ sha256 = "0wkd7xz3d4sifx9cxm9rnjskhxrbdyqpdspi0sa6jr1ckmq25zpf";
+ revision = "1";
+ editedCabalFile = "1b02l2fdfxvlsvhcmkpsp0vzc0igsd0nrb64yb7af5a7z08cc9c0";
+ libraryHaskellDepends = [ adjunctions base deepseq lens mtl ];
description = "A library for writing predicates and transformations over predicates in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -191786,15 +193653,15 @@ self: {
maintainers = with stdenv.lib.maintainers; [ cdepillabout ];
}) {};
- "pretty-simple_3_2_0_0" = callPackage
+ "pretty-simple_3_2_1_0" = callPackage
({ mkDerivation, ansi-terminal, base, Cabal, cabal-doctest
, containers, criterion, doctest, Glob, mtl, QuickCheck
, template-haskell, text, transformers
}:
mkDerivation {
pname = "pretty-simple";
- version = "3.2.0.0";
- sha256 = "0jbxyjiyshbc5q5avbmm5ms8n8m0zm540gl3x7vz8k22pcb65jv8";
+ version = "3.2.1.0";
+ sha256 = "01cnvfn2y7qgp9pc9ra9glmgs64f1m8bxa8n31yy8jlkwwmyhly6";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -191911,25 +193778,25 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
- "prettyprinter_1_5_1" = callPackage
+ "prettyprinter_1_6_0" = callPackage
({ mkDerivation, ansi-wl-pprint, base, base-compat, bytestring
- , containers, criterion, deepseq, doctest, mtl, pgp-wordlist
- , QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck, text
- , transformers
+ , containers, deepseq, doctest, gauge, mtl, pgp-wordlist
+ , QuickCheck, quickcheck-instances, random, tasty, tasty-hunit
+ , tasty-quickcheck, text, transformers
}:
mkDerivation {
pname = "prettyprinter";
- version = "1.5.1";
- sha256 = "151p75gkbmjfjb4bw14xxpka6i44x14hpbxxdbrsfsnlrncb8rpv";
+ version = "1.6.0";
+ sha256 = "1xgjymlv5kfiqk6i2p8qc406xn8xphis7hhsdzcw6lpqmyp8bapx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base text ];
testHaskellDepends = [
- base bytestring doctest pgp-wordlist QuickCheck tasty tasty-hunit
- tasty-quickcheck text
+ base bytestring doctest pgp-wordlist QuickCheck
+ quickcheck-instances tasty tasty-hunit tasty-quickcheck text
];
benchmarkHaskellDepends = [
- ansi-wl-pprint base base-compat containers criterion deepseq mtl
+ ansi-wl-pprint base base-compat containers deepseq gauge mtl
QuickCheck random text transformers
];
description = "A modern, easy to use, well-documented, extensible pretty-printer";
@@ -192012,6 +193879,19 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "prettyprinter-graphviz" = callPackage
+ ({ mkDerivation, base, graphviz, prettyprinter, text }:
+ mkDerivation {
+ pname = "prettyprinter-graphviz";
+ version = "0.1.0.1";
+ sha256 = "1h6jr4vh60j54ajsylh41y0iskz5yjgh2879v25z1mw7vfi40kww";
+ libraryHaskellDepends = [ base graphviz prettyprinter text ];
+ description = "a prettyprinter backend for graphviz";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"prettyprinter-vty" = callPackage
({ mkDerivation, base, prettyprinter, vty }:
mkDerivation {
@@ -192425,8 +194305,8 @@ self: {
({ mkDerivation, base, primitive }:
mkDerivation {
pname = "primitive-unaligned";
- version = "0.1.1.0";
- sha256 = "1dkxm1m22vap0xaw2ssqfqs19lmk41db09rkngbiid0by2yla1gp";
+ version = "0.1.1.1";
+ sha256 = "1f3a46d9dr7x1k8b6ixnp9jzxkppx3g27qsxq4f244ndnf2jnchl";
libraryHaskellDepends = [ base primitive ];
testHaskellDepends = [ base primitive ];
description = "Unaligned access to primitive arrays";
@@ -192434,12 +194314,12 @@ self: {
}) {};
"primitive-unlifted" = callPackage
- ({ mkDerivation, base, primitive, stm }:
+ ({ mkDerivation, base, bytestring, primitive, stm, text-short }:
mkDerivation {
pname = "primitive-unlifted";
- version = "0.1.2.0";
- sha256 = "1zq5fx032shxsk23hlyj9js8jdbg4r17l0gigsrbrnlajnwk4683";
- libraryHaskellDepends = [ base primitive ];
+ version = "0.1.3.0";
+ sha256 = "1q7scarsdv51x74g6ahvc5znk9h628s984a7bawig0lnx67wzwih";
+ libraryHaskellDepends = [ base bytestring primitive text-short ];
testHaskellDepends = [ base primitive stm ];
description = "Primitive GHC types with unlifted types inside";
license = stdenv.lib.licenses.bsd3;
@@ -193244,21 +195124,21 @@ self: {
}) {};
"profunctor-optics" = callPackage
- ({ mkDerivation, adjunctions, base, comonad, connections
- , containers, distributive, doctest, hedgehog, ilist, mtl
+ ({ mkDerivation, adjunctions, base, connections, containers
+ , distributive, doctest, hedgehog, ilist, keys, mtl
, newtype-generics, profunctor-arrows, profunctors, rings
, semigroupoids, tagged, transformers, unliftio-core
}:
mkDerivation {
pname = "profunctor-optics";
- version = "0.0.0.4";
- sha256 = "0r3ixf0j1iass289mkxkjrmljxhybqk7bqz3acinf5qh52318kk5";
+ version = "0.0.0.5";
+ sha256 = "0k6xvgk0w9hsdv4smj7915gqlqkabsswfcpnq1iid9bar1q8v8nh";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- adjunctions base comonad connections distributive mtl
- newtype-generics profunctor-arrows profunctors rings semigroupoids
- tagged transformers unliftio-core
+ adjunctions base connections distributive keys mtl newtype-generics
+ profunctor-arrows profunctors rings semigroupoids tagged
+ transformers unliftio-core
];
executableHaskellDepends = [
adjunctions base containers doctest ilist mtl
@@ -195381,8 +197261,8 @@ self: {
}:
mkDerivation {
pname = "pure-zlib";
- version = "0.6.6";
- sha256 = "1fby7dj8yp8yqycxzl1dr4s6i0isnx24zxbcan672wwrhdxh9s6y";
+ version = "0.6.7";
+ sha256 = "1ddj88zk94gqqhxiyvkachvhwi5n2la4pfaf5vppkc9ma7sjhyhn";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -195465,8 +197345,8 @@ self: {
}:
mkDerivation {
pname = "purescript";
- version = "0.13.5";
- sha256 = "0plqzlcfaw2ik2im7aq8yy1b1y88cnc8qd7wwaayndbdz060s9j4";
+ version = "0.13.6";
+ sha256 = "1xss3wpv6wb38gsh9r635s09cxzmiz81hhssdxzdba2pw6ifzx8j";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -196584,10 +198464,8 @@ self: {
}:
mkDerivation {
pname = "quantification";
- version = "0.5.0";
- sha256 = "0ls8rhy0idrgj9dnd5ajjfi55bhz4qsyncj3ghw3nyrbr0q7j0bk";
- revision = "1";
- editedCabalFile = "0fn5ixppdyw4niyyf9iasvrbnaimjhwwi7di4l13bfylnmriliw9";
+ version = "0.5.1";
+ sha256 = "1abr0rb3q13klrz6199gpl4d07s5y8j56i8gvpy8nqgyi7awznx9";
libraryHaskellDepends = [
aeson base binary containers ghc-prim hashable path-pieces text
unordered-containers vector
@@ -196984,8 +198862,8 @@ self: {
pname = "quickcheck-classes";
version = "0.6.1.0";
sha256 = "01mqsffks1d0wf3vwrlmalqxqha2gfqa389gqq0zr5b9y7ka5a8h";
- revision = "1";
- editedCabalFile = "1n68f8qw8if3db7x7b49lfvs0hpdvlmq0bhdjf1dvmaz0wmw932i";
+ revision = "2";
+ editedCabalFile = "0jfi8vjnyybby8mcg4qqmb1cjijmfcvaybf0lqwzs0bazjf0rqq9";
libraryHaskellDepends = [
aeson base base-orphans bifunctors containers fail primitive
QuickCheck semigroupoids semigroups semirings tagged transformers
@@ -197537,23 +199415,74 @@ self: {
}) {};
"quipper" = callPackage
- ({ mkDerivation, base, containers, directory, easyrender, mtl
- , primes, process, random, template-haskell, unix
+ ({ mkDerivation, base, quipper-language, quipper-libraries
+ , quipper-tools
}:
mkDerivation {
pname = "quipper";
- version = "0.8.2";
- sha256 = "16cgpmk679i75iqykzr8x9p2nn4fsi33xh02ah9bcq39rfbyjc60";
+ version = "0.9.0.0";
+ sha256 = "1yfd3zqcr9nqwddv9yhbxxl4f5wl4v273i49hq4c2rm7i90axi1q";
libraryHaskellDepends = [
- base containers directory easyrender mtl primes process random
- template-haskell unix
+ base quipper-language quipper-libraries quipper-tools
];
- description = "An embedded, scalable functional programming language for quantum computing";
+ doHaddock = false;
+ description = "Meta-package for Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "quipper-algorithms" = callPackage
+ ({ mkDerivation, array, base, Cabal, containers, deepseq
+ , easyrender, filepath, Lattices, mtl, newsynth, primes, QuickCheck
+ , quipper-cabal, quipper-language, quipper-libraries, quipper-utils
+ , random, superdoc
+ }:
+ mkDerivation {
+ pname = "quipper-algorithms";
+ version = "0.9.0.0";
+ sha256 = "1a3p51mk965yk95r3zz3wcsqi8spilx53jlygl1yk4wvka7zrl9c";
+ isLibrary = true;
+ isExecutable = true;
+ setupHaskellDepends = [ base Cabal quipper-cabal superdoc ];
+ libraryHaskellDepends = [
+ array base containers deepseq easyrender filepath Lattices mtl
+ newsynth primes QuickCheck quipper-language quipper-libraries
+ quipper-utils random
+ ];
+ executableHaskellDepends = [ base ];
+ description = "A set of algorithms implemented in Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "quipper-all" = callPackage
+ ({ mkDerivation, base, quipper, quipper-algorithms, quipper-demos
+ }:
+ mkDerivation {
+ pname = "quipper-all";
+ version = "0.9.0.0";
+ sha256 = "11dsswwv4ajgw74hg4qysvm16r3aginfnizy008khhxdxwdr42gh";
+ libraryHaskellDepends = [
+ base quipper quipper-algorithms quipper-demos
+ ];
+ doHaddock = false;
+ description = "Meta-package for Quipper";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
+ "quipper-cabal" = callPackage
+ ({ mkDerivation, base, Cabal, process, quipper-language }:
+ mkDerivation {
+ pname = "quipper-cabal";
+ version = "0.9.0.0";
+ sha256 = "0kj7836h61h13kw4k74wfa96pr0w12k32mmmy0ry43wmk56zy318";
+ libraryHaskellDepends = [ base Cabal process quipper-language ];
+ description = "Some functions to aid in the creation of Cabal packages for Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quipper-core" = callPackage
({ mkDerivation, base, containers, mtl, primes, random
, template-haskell
@@ -197571,6 +199500,68 @@ self: {
broken = true;
}) {};
+ "quipper-demos" = callPackage
+ ({ mkDerivation, base, Cabal, containers, newsynth, quipper-cabal
+ , quipper-language, quipper-libraries, quipper-utils, random
+ }:
+ mkDerivation {
+ pname = "quipper-demos";
+ version = "0.9.0.0";
+ sha256 = "0ll7r9a7d8ahha27c5lrpjic2cybn9ifjnbjdh6s1lvwnsfslvvw";
+ isLibrary = true;
+ isExecutable = true;
+ setupHaskellDepends = [ base Cabal quipper-cabal ];
+ executableHaskellDepends = [
+ base containers newsynth quipper-language quipper-libraries
+ quipper-utils random
+ ];
+ doHaddock = false;
+ description = "Miscellaneous code snippets that illustrate various Quipper features";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "quipper-language" = callPackage
+ ({ mkDerivation, base, containers, directory, easyrender, fail, mtl
+ , process, quipper-utils, superdoc
+ }:
+ mkDerivation {
+ pname = "quipper-language";
+ version = "0.9.0.0";
+ sha256 = "0356w39jk6pg5dc4ka6qrq40px005dhcgrh139pqjspghvfl2mvd";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base superdoc ];
+ libraryHaskellDepends = [
+ base containers directory easyrender fail mtl quipper-utils
+ ];
+ executableHaskellDepends = [ base process ];
+ description = "Quipper, an embedded functional programming language for quantum computation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "quipper-libraries" = callPackage
+ ({ mkDerivation, base, Cabal, containers, deepseq, mtl, newsynth
+ , QuickCheck, quipper-cabal, quipper-language, quipper-utils
+ , random, superdoc
+ }:
+ mkDerivation {
+ pname = "quipper-libraries";
+ version = "0.9.0.0";
+ sha256 = "0kpw1m1pizpv652ck4rgwg0m7k5f9p9rn4lg7rx8ds75yda518qq";
+ setupHaskellDepends = [ base Cabal quipper-cabal superdoc ];
+ libraryHaskellDepends = [
+ base containers deepseq mtl newsynth quipper-language quipper-utils
+ random
+ ];
+ testHaskellDepends = [
+ base containers deepseq mtl newsynth QuickCheck quipper-language
+ quipper-utils random
+ ];
+ description = "The standard libraries for Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quipper-rendering" = callPackage
({ mkDerivation, base, containers, directory, easyrender, mtl
, primes, process, quipper-core, random, template-haskell, unix
@@ -197589,6 +199580,43 @@ self: {
broken = true;
}) {};
+ "quipper-tools" = callPackage
+ ({ mkDerivation, base, Cabal, containers, fixedprec, mtl, newsynth
+ , quipper-cabal, quipper-language, quipper-libraries, quipper-utils
+ , random
+ }:
+ mkDerivation {
+ pname = "quipper-tools";
+ version = "0.9.0.0";
+ sha256 = "18zl8c4b51x6530gryw0wg9x70a3mmznf56a03r272k1dw5k2ywi";
+ isLibrary = true;
+ isExecutable = true;
+ setupHaskellDepends = [ base Cabal quipper-cabal ];
+ executableHaskellDepends = [
+ base containers fixedprec mtl newsynth quipper-language
+ quipper-libraries quipper-utils random
+ ];
+ doHaddock = false;
+ description = "Miscellaneous stand-alone tools for Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "quipper-utils" = callPackage
+ ({ mkDerivation, base, containers, mtl, newsynth, process, random
+ , superdoc, template-haskell, unix
+ }:
+ mkDerivation {
+ pname = "quipper-utils";
+ version = "0.9.0.0";
+ sha256 = "1j9syi75krbv14szjcja878bq7112r10dk7qszgb0507l54znvyq";
+ setupHaskellDepends = [ base superdoc ];
+ libraryHaskellDepends = [
+ base containers mtl newsynth process random template-haskell unix
+ ];
+ description = "Utility libraries for Quipper";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quiver" = callPackage
({ mkDerivation, base, mmorph, transformers }:
mkDerivation {
@@ -197960,8 +199988,8 @@ self: {
}:
mkDerivation {
pname = "radius";
- version = "0.6.0.3";
- sha256 = "01mj0b0pasx60d93pi843vzhj31949wgf41l59jd2ps6ykhayx5b";
+ version = "0.6.1.0";
+ sha256 = "0q12vlqwpnsxr3i26b6v8z4rpvwmqsx0n171lhki9wc57v3mxgdy";
libraryHaskellDepends = [
base binary bytestring cryptonite iproute memory
];
@@ -198945,6 +200973,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rank2classes_1_3_2_1" = callPackage
+ ({ mkDerivation, base, Cabal, cabal-doctest, distributive, doctest
+ , markdown-unlit, tasty, tasty-hunit, template-haskell
+ , transformers
+ }:
+ mkDerivation {
+ pname = "rank2classes";
+ version = "1.3.2.1";
+ sha256 = "1sh2ks4qj3ksqs92rm8xzanpwc5ppml04s4mjzyngpgrihwi9924";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ base distributive template-haskell transformers
+ ];
+ testHaskellDepends = [
+ base distributive doctest tasty tasty-hunit
+ ];
+ testToolDepends = [ markdown-unlit ];
+ description = "standard type constructor class hierarchy, only with methods of rank 2 types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rapid" = callPackage
({ mkDerivation, async, base, containers, foreign-store, stm }:
mkDerivation {
@@ -199422,14 +201472,14 @@ self: {
}:
mkDerivation {
pname = "raven-haskell";
- version = "0.1.2.1";
- sha256 = "1mzz7z99a2agivwypcl62y68vpmihyh6rvy79w1jd29n1l2p621x";
+ version = "0.1.3.0";
+ sha256 = "0jd0xxrliqc85mifkqzblc3fi6xjgkwkqxijqjx42r5jc0m1qs7f";
libraryHaskellDepends = [
aeson base bytestring http-conduit mtl network random resourcet
text time unordered-containers uuid
];
testHaskellDepends = [
- aeson base bytestring hspec unordered-containers
+ aeson base bytestring hspec time unordered-containers
];
description = "Haskell client for Sentry logging service";
license = stdenv.lib.licenses.mit;
@@ -199694,22 +201744,24 @@ self: {
}) {};
"rdf4h" = callPackage
- ({ mkDerivation, attoparsec, base, binary, bytestring, containers
- , criterion, deepseq, directory, filepath, hashable, hgal, HTTP
- , http-conduit, HUnit, hxt, lifted-base, mtl, network-uri, parsec
- , parsers, QuickCheck, safe, tasty, tasty-hunit, tasty-quickcheck
- , text, unordered-containers
+ ({ mkDerivation, algebraic-graphs, attoparsec, base, binary
+ , bytestring, containers, criterion, deepseq, directory, exceptions
+ , filepath, hashable, hgal, html-entities, http-conduit, HUnit
+ , lifted-base, mmorph, mtl, network-uri, parsec, parsers
+ , QuickCheck, safe, selective, tasty, tasty-hunit, tasty-quickcheck
+ , text, unordered-containers, xeno
}:
mkDerivation {
pname = "rdf4h";
- version = "3.1.1";
- sha256 = "0r93mra0r8xdqi062xpsv5svzcinq31k4jjbjay53an6zd1qg9n4";
+ version = "4.0.0";
+ sha256 = "10436ff2pp3jxjkfaqg71d1hrn7xq6dpp5xd6gbkf22a1hq4g93b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base binary bytestring containers deepseq filepath
- hashable hgal HTTP http-conduit hxt lifted-base mtl network-uri
- parsec parsers text unordered-containers
+ algebraic-graphs attoparsec base binary bytestring containers
+ deepseq exceptions filepath hashable hgal html-entities
+ http-conduit lifted-base mmorph mtl network-uri parsec parsers
+ selective text unordered-containers xeno
];
executableHaskellDepends = [ base containers text ];
testHaskellDepends = [
@@ -200242,6 +202294,8 @@ self: {
base bytestring containers directory hspec text
];
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"read-editor" = callPackage
@@ -201483,32 +203537,33 @@ self: {
}) {};
"reflex" = callPackage
- ({ mkDerivation, base, bifunctors, comonad, constraints-extras
- , containers, criterion, data-default, deepseq, dependent-map
- , dependent-sum, directory, exception-transformers, filemanip
- , filepath, haskell-src-exts, haskell-src-meta, hlint, lens
- , loch-th, MemoTrie, monad-control, monoidal-containers, mtl
- , prim-uniq, primitive, process, profunctors, random, ref-tf
- , reflection, semialign, semigroupoids, split, stm, syb
- , template-haskell, these, these-lens, time, transformers
- , unbounded-delays, witherable
+ ({ mkDerivation, base, bifunctors, comonad, constraints
+ , constraints-extras, containers, criterion, data-default, deepseq
+ , dependent-map, dependent-sum, directory, exception-transformers
+ , filemanip, filepath, haskell-src-exts, haskell-src-meta, hlint
+ , hspec, lens, loch-th, MemoTrie, monad-control
+ , monoidal-containers, mtl, patch, prim-uniq, primitive, process
+ , proctest, profunctors, random, ref-tf, reflection, semialign
+ , semigroupoids, split, stm, syb, template-haskell, text, these
+ , these-lens, time, transformers, unbounded-delays, witherable
}:
mkDerivation {
pname = "reflex";
- version = "0.6.3";
- sha256 = "0nrmc86dinkxvfyj1wh57g816hzqxs583ipaqiq9gipadsa2jgcs";
+ version = "0.6.4";
+ sha256 = "162gjk11z6yjdwnb7y9xhg6h851wxssz9zb548h52hdld9vdfkcf";
libraryHaskellDepends = [
base bifunctors comonad constraints-extras containers data-default
dependent-map dependent-sum exception-transformers haskell-src-exts
haskell-src-meta lens MemoTrie monad-control monoidal-containers
- mtl prim-uniq primitive profunctors random ref-tf reflection
+ mtl patch prim-uniq primitive profunctors random ref-tf reflection
semialign semigroupoids stm syb template-haskell these time
transformers unbounded-delays witherable
];
testHaskellDepends = [
- base bifunctors containers deepseq dependent-map dependent-sum
- directory filemanip filepath hlint lens monoidal-containers mtl
- ref-tf semialign split these these-lens transformers
+ base bifunctors constraints constraints-extras containers deepseq
+ dependent-map dependent-sum directory filemanip filepath hlint
+ hspec lens monoidal-containers mtl patch proctest ref-tf semialign
+ split text these these-lens transformers witherable
];
benchmarkHaskellDepends = [
base containers criterion deepseq dependent-map dependent-sum
@@ -201772,6 +203827,48 @@ self: {
broken = true;
}) {};
+ "reflex-fsnotify" = callPackage
+ ({ mkDerivation, base, containers, directory, filepath, fsnotify
+ , reflex
+ }:
+ mkDerivation {
+ pname = "reflex-fsnotify";
+ version = "0.2.0.0";
+ sha256 = "0nxi3zjwwq36212qncpxi7rn30lgh0zy4swz10wxm55zb480dm8m";
+ libraryHaskellDepends = [
+ base containers directory filepath fsnotify reflex
+ ];
+ description = "reflex-frp interface for watching files";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "reflex-ghci" = callPackage
+ ({ mkDerivation, base, bytestring, directory, filepath, fsnotify
+ , optparse-applicative, process, reflex, reflex-fsnotify
+ , reflex-process, reflex-vty, regex-tdfa, text, unix, vty
+ }:
+ mkDerivation {
+ pname = "reflex-ghci";
+ version = "0.1.3.1";
+ sha256 = "0z4bw7dk5ccxydraj7n2j9hvclm8zi7y2k5mmssq1acr3wfsxq2h";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring directory filepath fsnotify process reflex
+ reflex-fsnotify reflex-process reflex-vty regex-tdfa text unix
+ ];
+ executableHaskellDepends = [
+ base optparse-applicative process reflex reflex-process reflex-vty
+ text vty
+ ];
+ description = "A GHCi widget library for use in reflex applications";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"reflex-gloss" = callPackage
({ mkDerivation, base, dependent-sum, gloss, mtl, reflex
, transformers
@@ -201871,6 +203968,28 @@ self: {
broken = true;
}) {};
+ "reflex-process" = callPackage
+ ({ mkDerivation, base, bytestring, containers, data-default
+ , process, reflex, reflex-vty, text, unix, vty
+ }:
+ mkDerivation {
+ pname = "reflex-process";
+ version = "0.2.0.0";
+ sha256 = "0vj4kr8p7r4jc7xl62vd3zk29q2bikgq9fgcgkwbi8fxcfwy94cr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring data-default process reflex unix
+ ];
+ executableHaskellDepends = [
+ base containers data-default process reflex reflex-vty text vty
+ ];
+ description = "reflex-frp interface for running shell commands";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"reflex-sdl2" = callPackage
({ mkDerivation, async, base, containers, dependent-sum
, exception-transformers, mtl, primitive, ref-tf, reflex, sdl2, stm
@@ -201917,8 +204036,8 @@ self: {
}:
mkDerivation {
pname = "reflex-vty";
- version = "0.1.2.0";
- sha256 = "0g28vv0p5p9z7zrh8w5n0xkardg8kcpadqz7hs52y0xz68fi0akh";
+ version = "0.1.3.0";
+ sha256 = "1200svlgpy4zqdfarx1b8n64vgskb9jl00p548ya4pwi0bsv95y7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -202057,26 +204176,29 @@ self: {
"refurb" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, classy-prelude
- , composite-base, composite-opaleye, dlist, fast-logger, hspec
- , lens, monad-logger, old-locale, opaleye, optparse-applicative
- , postgresql-simple, process, product-profunctors, template-haskell
- , text, these, thyme, vector-space
+ , composite-base, composite-opaleye, dlist, exceptions, fast-logger
+ , hspec, lens, monad-control, monad-logger, old-locale, opaleye
+ , optparse-applicative, postgresql-simple, process
+ , product-profunctors, template-haskell, text, these, these-lens
+ , thyme, transformers-base, vector-space
}:
mkDerivation {
pname = "refurb";
- version = "0.2.2.0";
- sha256 = "0qnlkpi8hc6a1xf094zf675i4ap3gymxirdmbkdwjq8j54w3lkhl";
+ version = "0.2.3.0";
+ sha256 = "09p9i0l59f34k12pbxvi50bxpj2d864n96fr79mq41xm0bhygsjb";
libraryHaskellDepends = [
ansi-wl-pprint base bytestring classy-prelude composite-base
- composite-opaleye dlist fast-logger lens monad-logger old-locale
- opaleye optparse-applicative postgresql-simple process
- product-profunctors template-haskell text these thyme vector-space
+ composite-opaleye dlist exceptions fast-logger lens monad-control
+ monad-logger old-locale opaleye optparse-applicative
+ postgresql-simple process product-profunctors template-haskell text
+ these these-lens thyme transformers-base vector-space
];
testHaskellDepends = [
ansi-wl-pprint base bytestring classy-prelude composite-base
- composite-opaleye dlist fast-logger hspec lens monad-logger
- old-locale opaleye optparse-applicative postgresql-simple process
- product-profunctors template-haskell text these thyme vector-space
+ composite-opaleye dlist exceptions fast-logger hspec lens
+ monad-control monad-logger old-locale opaleye optparse-applicative
+ postgresql-simple process product-profunctors template-haskell text
+ these these-lens thyme transformers-base vector-space
];
description = "Tools for maintaining a database";
license = stdenv.lib.licenses.bsd3;
@@ -202097,6 +204219,31 @@ self: {
broken = true;
}) {};
+ "reg-alloc-graph-color" = callPackage
+ ({ mkDerivation, base, base-unicode-symbols, containers, criterion
+ , lenz, lenz-mtl, lenz-template, logict, Map, microlens-mtl, mtl
+ , peano, smallcheck, tasty, tasty-smallcheck, transformers, util
+ }:
+ mkDerivation {
+ pname = "reg-alloc-graph-color";
+ version = "0.0.0.0";
+ sha256 = "1gj9svzsnnasfca0hzpnfwkr2rh1hnzzmzd1vf51dad6c3qvmgj3";
+ libraryHaskellDepends = [
+ base base-unicode-symbols containers lenz lenz-mtl lenz-template
+ Map microlens-mtl mtl peano transformers util
+ ];
+ testHaskellDepends = [
+ base base-unicode-symbols containers logict smallcheck tasty
+ tasty-smallcheck transformers util
+ ];
+ benchmarkHaskellDepends = [ base criterion ];
+ doHaddock = false;
+ description = "Register allocation by graph colorization";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"reg-alloc-types" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -202264,8 +204411,8 @@ self: {
}:
mkDerivation {
pname = "regex-do";
- version = "3.2";
- sha256 = "0ywp64hifikr5wa0spcg7wl2grrfshyiax25pxzs7hk6xrjais57";
+ version = "3.2.1";
+ sha256 = "1jng0vmdvgwysfw71klgfzx6hs18v64q17had9j2kkg82w6fivqw";
libraryHaskellDepends = [
array base bytestring regex-base regex-pcre stringsearch tagged
text
@@ -202276,6 +204423,8 @@ self: {
];
description = "PCRE wrapper";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"regex-easy" = callPackage
@@ -204221,6 +206370,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "repline_0_2_2_0" = callPackage
+ ({ mkDerivation, base, containers, exceptions, haskeline, mtl
+ , process
+ }:
+ mkDerivation {
+ pname = "repline";
+ version = "0.2.2.0";
+ sha256 = "06f5df05j295v84j5c4k8bffwkpmrncbz4kpw4sh1pjszp1yv4d1";
+ revision = "1";
+ editedCabalFile = "1x4f1cbn9ylg82h853mqhm0sda6lz76ssk45d0x842pjbn3y46xx";
+ libraryHaskellDepends = [
+ base containers exceptions haskeline mtl process
+ ];
+ description = "Haskeline wrapper for GHCi-like REPL interfaces";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"repo-based-blog" = callPackage
({ mkDerivation, base, blaze-html, containers, data-default
, directory, dyre, filepath, filestore, hspec, hspec-discover
@@ -205895,19 +208062,19 @@ self: {
"rib" = callPackage
({ mkDerivation, aeson, async, base-noprelude, binary, clay
, cmdargs, containers, directory, exceptions, foldl, fsnotify
- , lucid, megaparsec, mmark, mmark-ext, modern-uri, mtl, named
- , pandoc, pandoc-include-code, pandoc-types, path, path-io, relude
- , shake, text, wai, wai-app-static, warp
+ , lucid, megaparsec, mmark, mmark-ext, modern-uri, mtl, pandoc
+ , pandoc-include-code, pandoc-types, path, path-io, relude, shake
+ , text, wai, wai-app-static, warp
}:
mkDerivation {
pname = "rib";
- version = "0.5.0.0";
- sha256 = "1h9faqwicvgkw5lfj14mcmk0sn8fjzv1vl9887s4y4q4jpi2wfvb";
+ version = "0.6.0.0";
+ sha256 = "0h1yfa1hf5wshfs3cvqi53rgfh25d1v7gj00wkgd32nkx1v3jrsg";
libraryHaskellDepends = [
aeson async base-noprelude binary clay cmdargs containers directory
exceptions foldl fsnotify lucid megaparsec mmark mmark-ext
- modern-uri mtl named pandoc pandoc-include-code pandoc-types path
- path-io relude shake text wai wai-app-static warp
+ modern-uri mtl pandoc pandoc-include-code pandoc-types path path-io
+ relude shake text wai wai-app-static warp
];
description = "Static site generator using Shake";
license = stdenv.lib.licenses.bsd3;
@@ -206173,18 +208340,19 @@ self: {
}) {};
"rings" = callPackage
- ({ mkDerivation, base, connections, containers, hedgehog, property
- , semigroupoids
+ ({ mkDerivation, adjunctions, base, connections, containers
+ , distributive, hedgehog, lawz, property, semigroupoids
}:
mkDerivation {
pname = "rings";
- version = "0.0.2.1";
- sha256 = "00aks4frrnp5wk97zgbg9f1bsj3wm7hppfwa8mwr77lfgvbsd1hn";
+ version = "0.0.2.4";
+ sha256 = "0h9yxi9pwcazwzpwmn6acz21yxm3mz0h3wr2cwv4cg2p6bxk0ysn";
libraryHaskellDepends = [
- base connections containers property semigroupoids
+ adjunctions base connections containers distributive lawz
+ semigroupoids
];
testHaskellDepends = [ base connections hedgehog property ];
- description = "Rings, semirings, and dioids";
+ description = "Groups, rings, semirings, and dioids";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -206198,8 +208366,8 @@ self: {
}:
mkDerivation {
pname = "rio";
- version = "0.1.12.0";
- sha256 = "0xzjkh6aavynpyskikhs8dmv0zhkiqiwz9zdn80zbd25b2182pif";
+ version = "0.1.13.0";
+ sha256 = "1jsrblk451ayf5smplngxmch73pf4r0qanafyyfn0g5wyh6hsxcm";
libraryHaskellDepends = [
base bytestring containers deepseq directory exceptions filepath
hashable microlens mtl primitive process text time typed-process
@@ -206815,14 +208983,14 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
- "rocksdb-query_0_3_0" = callPackage
+ "rocksdb-query_0_3_1" = callPackage
({ mkDerivation, base, bytestring, cereal, conduit, data-default
, hspec, resourcet, rocksdb-haskell, unliftio
}:
mkDerivation {
pname = "rocksdb-query";
- version = "0.3.0";
- sha256 = "0fy7d9m9g0jwssjgkhyg2d170s7mp7g9kz73zgnnp0xgl6mpxrsi";
+ version = "0.3.1";
+ sha256 = "072l4f5xb5prsbs7d7j12mwxy0rlrsnqf6w7g09xmq7n3mz0sv0f";
libraryHaskellDepends = [
base bytestring cereal conduit resourcet rocksdb-haskell unliftio
];
@@ -208136,8 +210304,8 @@ self: {
({ mkDerivation, base, primitive, primitive-unlifted }:
mkDerivation {
pname = "run-st";
- version = "0.1.0.0";
- sha256 = "0gy5qkq8g7azfp170nsvbfdmj4k058zzfz6imvm2yvbqsny6i77a";
+ version = "0.1.1.0";
+ sha256 = "11if8xwv22ry0mxrglg3pcx3cx8ljnq56f3m9vjkr9jcj2881dvf";
libraryHaskellDepends = [ base primitive primitive-unlifted ];
description = "runST without boxing penalty";
license = stdenv.lib.licenses.bsd3;
@@ -210005,8 +212173,8 @@ self: {
}:
mkDerivation {
pname = "scalpel";
- version = "0.6.0";
- sha256 = "0jbrfcgljl8kbcwi2zqx1jp3c3dpxrkc94za44x56kcz68n89hlz";
+ version = "0.6.1";
+ sha256 = "0cq9zslaqcs1vq85xznc11vis5bkvmhjsnwxrc2p01bsxbvwxsh6";
libraryHaskellDepends = [
base bytestring case-insensitive data-default http-client
http-client-tls scalpel-core tagsoup text
@@ -210022,8 +212190,8 @@ self: {
}:
mkDerivation {
pname = "scalpel-core";
- version = "0.6.0";
- sha256 = "1qf0gnidyh8zk0acj99vn6hsj37m410lrm50sqpiv1i36rpmmsqh";
+ version = "0.6.1";
+ sha256 = "199g005ps5grjj3y7mxajck3ybyc60fs72p8jk859ji3svpqdfyn";
libraryHaskellDepends = [
base bytestring containers data-default fail pointedlist regex-base
regex-tdfa tagsoup text vector
@@ -210332,8 +212500,8 @@ self: {
}:
mkDerivation {
pname = "schemas";
- version = "0.4.0.0";
- sha256 = "1i8sapi31dwlhjvkhgcznd1mfw1h86hgg310x6zkz2m1wkazy5yr";
+ version = "0.4.0.1";
+ sha256 = "13i7q7krahvmirb6ryqsygcckmjdkmnk8qxh1pxsnihkkn6dj22k";
libraryHaskellDepends = [
aeson base bifunctors bytestring free generics-sop hashable lens
lens-aeson mtl profunctors scientific text transformers
@@ -210564,22 +212732,22 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "science-constants";
- version = "0.2.0.0";
- sha256 = "0qp3d9la929kks2b2pyylgznl86gy91lp3zgpb9bn7gas3wll9vy";
+ version = "0.2.0.2";
+ sha256 = "0h60pdq3r32wl9h49i08iq496yf0qwvd0qmlmnk9jy5x3zcdwjmd";
libraryHaskellDepends = [ base ];
description = "Mathematical/physical/chemical constants";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
+ license = stdenv.lib.licenses.bsd3;
}) {};
"science-constants-dimensional" = callPackage
- ({ mkDerivation, base, dimensional, numtype, science-constants }:
+ ({ mkDerivation, base, dimensional, numtype-dk, science-constants
+ }:
mkDerivation {
pname = "science-constants-dimensional";
- version = "0.1.0.2";
- sha256 = "13yz9c8d52fdrkz23f064s0pp9cc2941qfcfz6b0g4c6f6a0wqkm";
+ version = "0.1.0.3";
+ sha256 = "05svn307q46cskw1ywkkp1b0ym9jcn48dzjij9mvkg5g6gvsbcg4";
libraryHaskellDepends = [
- base dimensional numtype science-constants
+ base dimensional numtype-dk science-constants
];
description = "Mathematical/physical/chemical constants";
license = stdenv.lib.licenses.bsd3;
@@ -211846,49 +214014,27 @@ self: {
"secp256k1-haskell" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, cereal
- , entropy, hashable, hspec, hspec-discover, HUnit, mtl, QuickCheck
- , secp256k1, string-conversions
+ , deepseq, entropy, hashable, hspec, hspec-discover, HUnit
+ , libsecp256k1, mtl, QuickCheck, string-conversions
}:
mkDerivation {
pname = "secp256k1-haskell";
- version = "0.1.5";
- sha256 = "1s989dk7zncz68zl3k13dk8ap7dq5k4m2kwimpbicizxfnl7gzfg";
- libraryHaskellDepends = [
- base base16-bytestring bytestring cereal entropy hashable
- QuickCheck string-conversions
- ];
- librarySystemDepends = [ secp256k1 ];
- testHaskellDepends = [
- base base16-bytestring bytestring cereal entropy hashable hspec
- HUnit mtl QuickCheck string-conversions
- ];
- testToolDepends = [ hspec-discover ];
- description = "Bindings for secp256k1 library from Bitcoin Core";
- license = stdenv.lib.licenses.publicDomain;
- }) {inherit (pkgs) secp256k1;};
-
- "secp256k1-haskell_0_1_6" = callPackage
- ({ mkDerivation, base, base16-bytestring, bytestring, cereal
- , entropy, hashable, hspec, hspec-discover, HUnit, libsecp256k1
- , mtl, QuickCheck, string-conversions
- }:
- mkDerivation {
- pname = "secp256k1-haskell";
- version = "0.1.6";
- sha256 = "1xasiii9g6ypn9y89q7ramkgz7vx87fr21qqbh1657my4aaipv03";
+ version = "0.1.8";
+ sha256 = "0ymmgcvlw4wrmnn0r6nmmpk0djihpappiywwfxvmnq8brqdkf3jk";
libraryHaskellDepends = [
- base base16-bytestring bytestring cereal entropy hashable
+ base base16-bytestring bytestring cereal deepseq entropy hashable
QuickCheck string-conversions
];
libraryPkgconfigDepends = [ libsecp256k1 ];
testHaskellDepends = [
- base base16-bytestring bytestring cereal entropy hashable hspec
- HUnit mtl QuickCheck string-conversions
+ base base16-bytestring bytestring cereal deepseq entropy hashable
+ hspec HUnit mtl QuickCheck string-conversions
];
testToolDepends = [ hspec-discover ];
description = "Bindings for secp256k1 library from Bitcoin Core";
license = stdenv.lib.licenses.publicDomain;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {libsecp256k1 = null;};
"secp256k1-legacy" = callPackage
@@ -212047,14 +214193,14 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "selda_0_5_0_0" = callPackage
+ "selda_0_5_1_0" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, mtl
, random, text, time, uuid-types
}:
mkDerivation {
pname = "selda";
- version = "0.5.0.0";
- sha256 = "1dsyc69fvqqhq9a9n97dnp81vvxxpf4dg4f5yan3fdr7zn9qgx3f";
+ version = "0.5.1.0";
+ sha256 = "1gd7fdgqw6q507wn7h1pln9wb7kh65vd7iv0s1ydg54r36qdlrgl";
libraryHaskellDepends = [
base bytestring containers exceptions mtl random text time
uuid-types
@@ -212093,6 +214239,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "selda-postgresql_0_1_8_1" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, postgresql-binary
+ , postgresql-libpq, selda, selda-json, text, time, uuid-types
+ }:
+ mkDerivation {
+ pname = "selda-postgresql";
+ version = "0.1.8.1";
+ sha256 = "0dxycilvxjbi1cy9c0rzq9ywh48i2lh37j77a5i1x6v1625h51mk";
+ libraryHaskellDepends = [
+ base bytestring exceptions postgresql-binary postgresql-libpq selda
+ selda-json text time uuid-types
+ ];
+ description = "PostgreSQL backend for the Selda database EDSL";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"selda-sqlite" = callPackage
({ mkDerivation, base, bytestring, direct-sqlite, directory
, exceptions, selda, text, time, uuid-types
@@ -212111,6 +214274,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "selda-sqlite_0_1_7_1" = callPackage
+ ({ mkDerivation, base, bytestring, direct-sqlite, directory
+ , exceptions, selda, text, time, uuid-types
+ }:
+ mkDerivation {
+ pname = "selda-sqlite";
+ version = "0.1.7.1";
+ sha256 = "1a1rik32h8ijd98v98db1il10ap76rqdwmjwhj0hc0h77mm6qdfb";
+ libraryHaskellDepends = [
+ base bytestring direct-sqlite directory exceptions selda text time
+ uuid-types
+ ];
+ description = "SQLite backend for the Selda database EDSL";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"select" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -212264,8 +214444,8 @@ self: {
}:
mkDerivation {
pname = "semantic-source";
- version = "0.0.0.1";
- sha256 = "0w1iwd67dpvpc43g4x9q686sljrxv6xhx9rlgiw6kzcdil7fcm8z";
+ version = "0.0.1.0";
+ sha256 = "0zzybqys2vc2i06ggkbzcd8b2s68j3qpsrds55p0cvd9ng4dlvgi";
libraryHaskellDepends = [
aeson base bytestring deepseq generic-monoid hashable semilattices
text
@@ -212771,8 +214951,8 @@ self: {
}:
mkDerivation {
pname = "sensu-run";
- version = "0.7.0.3";
- sha256 = "1afn67bxmxch2gpjar89dkagchp3h0rqbv8jkglgfzjc137047dc";
+ version = "0.7.0.4";
+ sha256 = "15grlz2rklpnkhfb8xshkh8d7nxdjlzrfnlhk3ds478nqlqnnmll";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -213223,16 +215403,15 @@ self: {
"serialise" = callPackage
({ mkDerivation, aeson, array, base, binary, bytestring, cborg
, cereal, cereal-vector, containers, criterion, deepseq, directory
- , filepath, ghc-prim, half, hashable, pretty, primitive, QuickCheck
- , quickcheck-instances, semigroups, store, tar, tasty, tasty-hunit
- , tasty-quickcheck, text, time, unordered-containers, vector, zlib
+ , fail, filepath, ghc-prim, half, hashable, pretty, primitive
+ , QuickCheck, quickcheck-instances, semigroups, store, tar, tasty
+ , tasty-hunit, tasty-quickcheck, text, time, unordered-containers
+ , vector, zlib
}:
mkDerivation {
pname = "serialise";
- version = "0.2.1.0";
- sha256 = "19ary6ivzk8z7wcxhm860qmh7pwqj0qjqzav1h42y85l608zqgh4";
- revision = "1";
- editedCabalFile = "1rknhad1i8bpknsnphmcmb6dnb48c2p2c13ia2qqch3hkhsvfpr6";
+ version = "0.2.2.0";
+ sha256 = "17m1xs3hdvbkba1b8qjcv58drhl2wgvjkp7a2m38mkwn6xxvpg1k";
libraryHaskellDepends = [
array base bytestring cborg containers ghc-prim half hashable
primitive text time unordered-containers vector
@@ -213244,7 +215423,7 @@ self: {
];
benchmarkHaskellDepends = [
aeson array base binary bytestring cborg cereal cereal-vector
- containers criterion deepseq directory filepath ghc-prim half
+ containers criterion deepseq directory fail filepath ghc-prim half
pretty semigroups store tar text time vector zlib
];
description = "A binary serialisation library for Haskell values";
@@ -213406,6 +215585,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant_0_17" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors
+ , bytestring, case-insensitive, deepseq, hspec, hspec-discover
+ , http-api-data, http-media, http-types, mmorph, mtl, network-uri
+ , QuickCheck, quickcheck-instances, singleton-bool
+ , string-conversions, tagged, text, transformers, vault
+ }:
+ mkDerivation {
+ pname = "servant";
+ version = "0.17";
+ sha256 = "0hrqwb9cin6wbwwqaw68i84ai46897ir4gy4issc6ya2qqmfq1ks";
+ libraryHaskellDepends = [
+ aeson attoparsec base base-compat bifunctors bytestring
+ case-insensitive deepseq http-api-data http-media http-types mmorph
+ mtl network-uri QuickCheck singleton-bool string-conversions tagged
+ text transformers vault
+ ];
+ testHaskellDepends = [
+ aeson base base-compat bytestring hspec http-media mtl QuickCheck
+ quickcheck-instances string-conversions text transformers
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "A family of combinators for defining webservices APIs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-JuicyPixels" = callPackage
({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant
, servant-server, wai, warp
@@ -213595,10 +215801,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-server";
- version = "0.4.4.0";
- sha256 = "13196aknmb125ri3szqx8z5hdkk8lglv4795ck5glpn953vgq51c";
- revision = "1";
- editedCabalFile = "1wxiakkcx7d0j6zasjd84y7k98j94sy5nkj0vngjpd2jzlv79bb0";
+ version = "0.4.5.0";
+ sha256 = "0jvx3lj48r0awnyv87qcbf64xmqzp48bdx98xwcnrh2hk8agr56y";
libraryHaskellDepends = [
aeson base base64-bytestring blaze-builder bytestring
case-insensitive cookie data-default-class entropy http-types jose
@@ -213807,8 +216011,8 @@ self: {
pname = "servant-blaze";
version = "0.9";
sha256 = "1pfnpc6m7i8knndc1734fbzpfgmvdcpkd8cj0jyw139b70siz63r";
- revision = "2";
- editedCabalFile = "0icqk00h03d6slfha8ylb07jj69y4chnhczxk8zskvgc89f6jl97";
+ revision = "3";
+ editedCabalFile = "0pn9ca2jmx71clz0j9nlz1lwmr2xv39zqfda10al11am9mc4j8n4";
libraryHaskellDepends = [ base blaze-html http-media servant ];
testHaskellDepends = [ base blaze-html servant-server wai warp ];
description = "Blaze-html support for servant";
@@ -213823,8 +216027,8 @@ self: {
pname = "servant-cassava";
version = "0.10";
sha256 = "03jnyghwa5kjbl5j55njmp7as92flw91zs9cgdvb4jrsdy85sb4v";
- revision = "6";
- editedCabalFile = "17d6phknxh5cqslwcj3a4gfhsgm8bw4bf7mlpmfrrc6izwnm1q8v";
+ revision = "7";
+ editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy";
libraryHaskellDepends = [
base base-compat bytestring cassava http-media servant vector
];
@@ -213971,6 +216175,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-client_0_17" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, bytestring, containers
+ , deepseq, entropy, exceptions, hspec, hspec-discover
+ , http-api-data, http-client, http-media, http-types, HUnit
+ , kan-extensions, markdown-unlit, monad-control, mtl, network
+ , QuickCheck, semigroupoids, servant, servant-client-core
+ , servant-server, stm, tdigest, text, time, transformers
+ , transformers-base, transformers-compat, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-client";
+ version = "0.17";
+ sha256 = "0161v6kfj4mm5rixw5lbm8sc2dng300xbwgdhi4d0fqxrx12kij7";
+ libraryHaskellDepends = [
+ base base-compat bytestring containers deepseq exceptions
+ http-client http-media http-types kan-extensions monad-control mtl
+ semigroupoids servant servant-client-core stm text time
+ transformers transformers-base transformers-compat
+ ];
+ testHaskellDepends = [
+ aeson base base-compat bytestring entropy hspec http-api-data
+ http-client http-types HUnit kan-extensions markdown-unlit mtl
+ network QuickCheck servant servant-client-core servant-server stm
+ tdigest text transformers transformers-compat wai warp
+ ];
+ testToolDepends = [ hspec-discover markdown-unlit ];
+ description = "Automatic derivation of querying functions for servant";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-client-core" = callPackage
({ mkDerivation, aeson, base, base-compat, base64-bytestring
, bytestring, containers, deepseq, exceptions, free, hspec
@@ -213994,6 +216229,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-client-core_0_17" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, base64-bytestring
+ , bytestring, containers, deepseq, exceptions, free, hspec
+ , hspec-discover, http-media, http-types, network-uri, QuickCheck
+ , safe, servant, template-haskell, text, transformers
+ }:
+ mkDerivation {
+ pname = "servant-client-core";
+ version = "0.17";
+ sha256 = "1xskvmdr4998hj19wvhyb5rs5x193792f1b6ia7r21qdzp9garff";
+ libraryHaskellDepends = [
+ aeson base base-compat base64-bytestring bytestring containers
+ deepseq exceptions free http-media http-types network-uri safe
+ servant template-haskell text transformers
+ ];
+ testHaskellDepends = [ base base-compat deepseq hspec QuickCheck ];
+ testToolDepends = [ hspec-discover ];
+ description = "Core functionality and class for client function generation for servant APIs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-client-namedargs" = callPackage
({ mkDerivation, async, base, hspec, http-client, named, QuickCheck
, servant, servant-client, servant-client-core, servant-namedargs
@@ -214026,8 +216283,8 @@ self: {
pname = "servant-conduit";
version = "0.15";
sha256 = "0mpnkqcls4mrxfd3ksy53k7vvm0hildj21b8mdy53z993wq1blfz";
- revision = "2";
- editedCabalFile = "1m5h5kwc9bjpc7ppdsxx8rr4906bl08np1kawzfvpr7qqy4s8j4q";
+ revision = "3";
+ editedCabalFile = "0adximf4hg3bf7d9mkcjdsp5klg787ryb1hy3j49fg39l1rszac4";
libraryHaskellDepends = [
base bytestring conduit mtl resourcet servant unliftio-core
];
@@ -214101,18 +216358,16 @@ self: {
}) {};
"servant-dhall" = callPackage
- ({ mkDerivation, base, base-compat, bytestring, dhall, http-media
- , megaparsec, prettyprinter, servant, servant-server, text, wai
- , warp
+ ({ mkDerivation, base, base-compat, bytestring, dhall, either
+ , http-media, megaparsec, prettyprinter, servant, servant-server
+ , text, wai, warp
}:
mkDerivation {
pname = "servant-dhall";
- version = "0.1.0.2";
- sha256 = "09fvyhkqpypg73cxs7y2asvlch83i4sqzh2w0d5ix0zl5i7f6rz3";
- revision = "1";
- editedCabalFile = "19jdp0xj1nl21wzfnk2y3qrzi7cag1m3wk0zqvqayc2czq9h0k08";
+ version = "0.3";
+ sha256 = "0xvzm1majfjigwpcy6sqbzvpirinhac4lh6f32cy2qkkk6xq09mz";
libraryHaskellDepends = [
- base base-compat bytestring dhall http-media megaparsec
+ base base-compat bytestring dhall either http-media megaparsec
prettyprinter servant text
];
testHaskellDepends = [
@@ -214153,6 +216408,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-docs_0_11_5" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring
+ , case-insensitive, hashable, http-media, http-types, lens, servant
+ , string-conversions, tasty, tasty-golden, tasty-hunit, text
+ , transformers, universe-base, unordered-containers
+ }:
+ mkDerivation {
+ pname = "servant-docs";
+ version = "0.11.5";
+ sha256 = "0i51f33w5bz8j6jj9j5ivg7kll510nc0hmkhdrh3q0qagbpwryfx";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty base base-compat bytestring case-insensitive
+ hashable http-media http-types lens servant string-conversions text
+ universe-base unordered-containers
+ ];
+ executableHaskellDepends = [
+ aeson base lens servant string-conversions text
+ ];
+ testHaskellDepends = [
+ aeson base base-compat lens servant string-conversions tasty
+ tasty-golden tasty-hunit transformers
+ ];
+ description = "generate API docs for your servant webservice";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-ede" = callPackage
({ mkDerivation, aeson, base, bytestring, ede, either, filepath
, http-media, http-types, semigroups, servant, servant-server, text
@@ -214184,8 +216468,8 @@ self: {
}:
mkDerivation {
pname = "servant-ekg";
- version = "0.3";
- sha256 = "0kqsvpqh36ripps7lvqlg5d407yhh3rzccgyn8zkbrir0ifjfy2l";
+ version = "0.3.1";
+ sha256 = "1vfj5qkajqs2rfhz3yyljy6jj4m80fb2zslrrg0a5126hhbaglss";
libraryHaskellDepends = [
base ekg-core hashable http-types servant text time
unordered-containers wai
@@ -214355,6 +216639,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-foreign_0_15_1" = callPackage
+ ({ mkDerivation, base, base-compat, hspec, hspec-discover
+ , http-types, lens, servant, text
+ }:
+ mkDerivation {
+ pname = "servant-foreign";
+ version = "0.15.1";
+ sha256 = "024pd3a5pf4gqx5y2is7n38a7qyfanw13w5jy4j5a81zjmfxnwk7";
+ libraryHaskellDepends = [
+ base base-compat http-types lens servant text
+ ];
+ testHaskellDepends = [ base hspec servant ];
+ testToolDepends = [ hspec-discover ];
+ description = "Helpers for generating clients for servant APIs in any programming language";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-generate" = callPackage
({ mkDerivation, base, servant, servant-server }:
mkDerivation {
@@ -214527,6 +216829,41 @@ self: {
broken = true;
}) {};
+ "servant-http-streams_0_17" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, bytestring
+ , case-insensitive, containers, deepseq, entropy, exceptions, hspec
+ , hspec-discover, http-api-data, http-common, http-media
+ , http-streams, http-types, HUnit, io-streams, kan-extensions
+ , markdown-unlit, monad-control, mtl, network, QuickCheck
+ , semigroupoids, servant, servant-client-core, servant-server, stm
+ , tdigest, text, time, transformers, transformers-base
+ , transformers-compat, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-http-streams";
+ version = "0.17";
+ sha256 = "1nyp6ijb8219yfbxrq2mz59m1vfpr56rbfn9j9zmx4pcvnb903xc";
+ libraryHaskellDepends = [
+ base base-compat bytestring case-insensitive containers deepseq
+ exceptions http-common http-media http-streams http-types
+ io-streams kan-extensions monad-control mtl semigroupoids servant
+ servant-client-core text time transformers transformers-base
+ transformers-compat
+ ];
+ testHaskellDepends = [
+ aeson base base-compat bytestring deepseq entropy hspec
+ http-api-data http-streams http-types HUnit kan-extensions
+ markdown-unlit mtl network QuickCheck servant servant-client-core
+ servant-server stm tdigest text transformers transformers-compat
+ wai warp
+ ];
+ testToolDepends = [ hspec-discover markdown-unlit ];
+ description = "Automatic derivation of querying functions for servant";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"servant-http2-client" = callPackage
({ mkDerivation, aeson, async, base, binary, bytestring
, case-insensitive, containers, data-default-class, exceptions
@@ -214616,6 +216953,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-js_0_9_4_1" = callPackage
+ ({ mkDerivation, base, base-compat, charset, hspec, hspec-discover
+ , hspec-expectations, language-ecmascript, lens, QuickCheck
+ , servant, servant-foreign, text
+ }:
+ mkDerivation {
+ pname = "servant-js";
+ version = "0.9.4.1";
+ sha256 = "004snd07q29g08smvrwmpypg75g9rxdvk5bfyfyxxmj47wh4734d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base-compat charset lens servant servant-foreign text
+ ];
+ testHaskellDepends = [
+ base base-compat hspec hspec-expectations language-ecmascript lens
+ QuickCheck servant text
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Automatically derive javascript functions to query servant webservices";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-jsonrpc" = callPackage
({ mkDerivation, aeson, base, servant }:
mkDerivation {
@@ -214698,6 +217059,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-lucid_0_9_0_1" = callPackage
+ ({ mkDerivation, base, http-media, lucid, servant, servant-server
+ , text, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-lucid";
+ version = "0.9.0.1";
+ sha256 = "1jhs9qy36vccy90s24cd9bmhqs604xqd9m8a4fbkjxrcpgdzfjgq";
+ libraryHaskellDepends = [ base http-media lucid servant text ];
+ testHaskellDepends = [ base lucid servant-server wai warp ];
+ description = "Servant support for lucid";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-machines" = callPackage
({ mkDerivation, base, base-compat, bytestring, http-client
, http-media, machines, mtl, servant, servant-client
@@ -214707,8 +217083,8 @@ self: {
pname = "servant-machines";
version = "0.15";
sha256 = "137c0svvwvkh3ad8cc5q5vygci3c5951hbwlhk09znqaqycck35i";
- revision = "3";
- editedCabalFile = "10ifc1r10lmzvrxa79389bz5ydcmacyz8ga4x63fw7r1rbfml0jz";
+ revision = "4";
+ editedCabalFile = "1p8ld4cxwsirlwz5ihrz6fyxbary4llxsnby42vjnhl19gylhdmk";
libraryHaskellDepends = [ base bytestring machines mtl servant ];
testHaskellDepends = [
base base-compat bytestring http-client http-media machines servant
@@ -214786,6 +217162,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-mock_0_8_6" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, bytestring
+ , bytestring-conversion, hspec, hspec-discover, hspec-wai
+ , http-types, QuickCheck, servant, servant-server, transformers
+ , wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-mock";
+ version = "0.8.6";
+ sha256 = "1cr5davd7ldcm2a4f33mi74rk6qlgdqg7vzzfpf8kgxrc97syrrd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base-compat bytestring http-types QuickCheck servant
+ servant-server transformers wai
+ ];
+ executableHaskellDepends = [
+ aeson base QuickCheck servant-server warp
+ ];
+ testHaskellDepends = [
+ aeson base bytestring-conversion hspec hspec-wai QuickCheck servant
+ servant-server wai
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Derive a mock server for free from your servant API types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-multipart" = callPackage
({ mkDerivation, base, bytestring, directory, http-client
, http-media, lens, network, resourcet, servant, servant-docs
@@ -214811,6 +217216,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-multipart_0_11_5" = callPackage
+ ({ mkDerivation, array, base, bytestring, directory, http-client
+ , http-media, lens, network, random, resourcet, servant
+ , servant-client, servant-client-core, servant-docs
+ , servant-foreign, servant-server, text, transformers, wai
+ , wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "servant-multipart";
+ version = "0.11.5";
+ sha256 = "19bz03y1fv0px30zw5q8394573d482lgchclihbnyg26w7xhmzha";
+ libraryHaskellDepends = [
+ array base bytestring directory http-media lens random resourcet
+ servant servant-client-core servant-docs servant-foreign
+ servant-server text transformers wai wai-extra
+ ];
+ testHaskellDepends = [
+ base bytestring http-client network servant servant-client
+ servant-client-core servant-server text transformers wai warp
+ ];
+ description = "multipart/form-data (e.g file upload) support for servant";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-named" = callPackage
({ mkDerivation, base, hspec, hspec-wai, http-types, servant
, servant-server
@@ -214927,6 +217357,8 @@ self: {
pname = "servant-pipes";
version = "0.15.1";
sha256 = "1r2n7f8x7adl117zlswf4ji5yxib2v80wh7wbhwklvd86dbzyrby";
+ revision = "1";
+ editedCabalFile = "0xm07qxw0szffm8krbvj2kdflwlx2ixlhp5scaj3fhwivycyayvg";
libraryHaskellDepends = [
base bytestring monad-control mtl pipes pipes-safe servant
];
@@ -215075,10 +217507,8 @@ self: {
}:
mkDerivation {
pname = "servant-quickcheck";
- version = "0.0.7.4";
- sha256 = "1z47fgzdwfqb0byr8wa0s9n3g8hcbf112nbgaifm0zmxx6w4jlcf";
- revision = "1";
- editedCabalFile = "1k2qcfg8vh8nj3j621hsi09q3lj6p9ahz7rgz89psm79j9ks10d9";
+ version = "0.0.8.0";
+ sha256 = "0zzbl8qp6pi5a59zbnaq3bfzxldfcb5xykkzp5czzgaj09ypxpgw";
libraryHaskellDepends = [
aeson base base-compat-batteries bytestring case-insensitive clock
data-default-class hspec http-client http-media http-types mtl
@@ -215278,6 +217708,44 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-server_0_17" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, base64-bytestring
+ , bytestring, containers, directory, exceptions, filepath, hspec
+ , hspec-discover, hspec-wai, http-api-data, http-media, http-types
+ , monad-control, mtl, network, network-uri, QuickCheck, resourcet
+ , safe, servant, should-not-typecheck, string-conversions, tagged
+ , temporary, text, transformers, transformers-base
+ , transformers-compat, wai, wai-app-static, wai-extra, warp, word8
+ }:
+ mkDerivation {
+ pname = "servant-server";
+ version = "0.17";
+ sha256 = "11y7cb8r8bzkx3fb2cd5cbazxy87n0f4wm14qdxsz2g81k262k5l";
+ revision = "1";
+ editedCabalFile = "1kbdga7bi7slgcskqc3sb1xwmwif52dj8gvkxcskaw0b9xbdynhs";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base-compat base64-bytestring bytestring containers exceptions
+ filepath http-api-data http-media http-types monad-control mtl
+ network network-uri resourcet servant string-conversions tagged
+ text transformers transformers-base wai wai-app-static word8
+ ];
+ executableHaskellDepends = [
+ aeson base base-compat servant text wai warp
+ ];
+ testHaskellDepends = [
+ aeson base base-compat base64-bytestring bytestring directory hspec
+ hspec-wai http-types mtl QuickCheck resourcet safe servant
+ should-not-typecheck string-conversions temporary text transformers
+ transformers-compat wai wai-extra
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "A family of combinators for defining webservices APIs and serving them";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-server-namedargs" = callPackage
({ mkDerivation, base, bytestring, http-api-data, http-types, named
, servant, servant-namedargs, servant-server, string-conversions
@@ -215540,8 +218008,8 @@ self: {
pname = "servant-swagger";
version = "1.1.7.1";
sha256 = "0vdjvn5bsd26q8wx1qdwn7vdfnd9jk8m9jzzm251gyn1ijxv8ild";
- revision = "1";
- editedCabalFile = "1wymxb7vi55rhk4kfbrxxv9dsxlxlam70mi9ldwnxp4xdf91ja2p";
+ revision = "2";
+ editedCabalFile = "0ij93pd7lsq39grglhfrdjrg21bxigmhavy51xilg6rrpnfcj2wv";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson aeson-pretty base base-compat bytestring hspec http-media
@@ -215558,6 +218026,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-swagger_1_1_8" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring
+ , Cabal, cabal-doctest, directory, doctest, filepath, hspec
+ , hspec-discover, http-media, insert-ordered-containers, lens
+ , lens-aeson, QuickCheck, servant, singleton-bool, swagger2
+ , template-haskell, text, time, unordered-containers, utf8-string
+ , vector
+ }:
+ mkDerivation {
+ pname = "servant-swagger";
+ version = "1.1.8";
+ sha256 = "16zmrakgiwf9rb9bvw3mjbmkqixyms42ymh7g1vyvz399plfn0c7";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ aeson aeson-pretty base base-compat bytestring hspec http-media
+ insert-ordered-containers lens QuickCheck servant singleton-bool
+ swagger2 text unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base base-compat directory doctest filepath hspec lens
+ lens-aeson QuickCheck servant swagger2 template-haskell text time
+ utf8-string vector
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Generate a Swagger/OpenAPI/OAS 2.0 specification for your servant API.";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-swagger-tags" = callPackage
({ mkDerivation, base, containers, lens, servant, servant-mock
, servant-server, servant-swagger, swagger2, text
@@ -215584,6 +218081,8 @@ self: {
pname = "servant-swagger-ui";
version = "0.3.4.3.23.11";
sha256 = "0ryr6h74vz6q6q0c9aixb7kwhq1vn95m3m0799cvc0xkfvm0ljha";
+ revision = "2";
+ editedCabalFile = "1wmxiihiwjkzwqqj2996fqmixz6jblj5gh43p7dxbww3g9fdz8qi";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -215601,8 +218100,8 @@ self: {
pname = "servant-swagger-ui-core";
version = "0.3.3";
sha256 = "0gpdjnclbjjr6gwc0gyx1d4w06cjf6z5b2ngjfcgbn885wqllwh3";
- revision = "1";
- editedCabalFile = "07i6bcy0z1xa2m7cdaq37wi20plghrppbd1v58a1g23g54mf0dcm";
+ revision = "3";
+ editedCabalFile = "0yx3q7y533v61ca4bm4wi8h7chbghj2rz92b330a544w7ac8il0p";
libraryHaskellDepends = [
base blaze-markup bytestring http-media servant servant-blaze
servant-server swagger2 text transformers transformers-compat
@@ -215620,8 +218119,8 @@ self: {
pname = "servant-swagger-ui-jensoleg";
version = "0.3.3";
sha256 = "02zwymqxq54xwc8wmzhbcfgx9plvk0n4kp1907sbl98mhh2frwrw";
- revision = "1";
- editedCabalFile = "0876wqw08fd39k4hc1739gf727ryq2w2w3sxvc89hp31zc2hm0fi";
+ revision = "3";
+ editedCabalFile = "08fwi8zq3clski4bac2p2ahqf4475xwzba31jw4f4lcr01rickqk";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -215638,6 +218137,8 @@ self: {
pname = "servant-swagger-ui-redoc";
version = "0.3.3.1.22.3";
sha256 = "0bzkrh1hf29vfa1r1sgifb9j2zcg6i43fal4abbx4lcqvf155pzv";
+ revision = "2";
+ editedCabalFile = "195vfc3871l1clk85kzxjvz1zr986lbvgy26fazfkfsn032s74c6";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -215648,21 +218149,21 @@ self: {
"servant-to-elm" = callPackage
({ mkDerivation, aeson, base, bound, elm-syntax, haskell-to-elm
- , http-types, protolude, servant, text
+ , http-types, protolude, servant, servant-multipart, text
}:
mkDerivation {
pname = "servant-to-elm";
- version = "0.2.0.0";
- sha256 = "0kj42y6jb5cqylkvj0iwm857vliagfgbh7rgyzbrgz834r7n5cri";
+ version = "0.4.0.0";
+ sha256 = "04i4mcj41c6wzxj9kgy7x8w9f3aaa77rr91c40qbhf1lkf7jmsny";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bound elm-syntax haskell-to-elm http-types protolude
- servant text
+ servant servant-multipart text
];
testHaskellDepends = [
aeson base bound elm-syntax haskell-to-elm http-types protolude
- servant text
+ servant servant-multipart text
];
description = "Automatically generate Elm clients for Servant APIs";
license = stdenv.lib.licenses.bsd3;
@@ -215771,8 +218272,8 @@ self: {
pname = "servant-yaml";
version = "0.1.0.1";
sha256 = "00gnbdlcq6cvmhsga8h0csd35pnfib038rqlhm445l4wa0cp8m01";
- revision = "3";
- editedCabalFile = "1qq4sg2kmdh45f4cjf36ldkdmhzryd5npy5yp558snbks0358wgs";
+ revision = "4";
+ editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0";
libraryHaskellDepends = [
base bytestring http-media servant yaml
];
@@ -217688,8 +220189,8 @@ self: {
}:
mkDerivation {
pname = "shellmate";
- version = "0.3.4.2";
- sha256 = "123dv5mjj7nah9mm5yfgwv6ga5lwh4d9xi01zskm3z0ia4fdxs85";
+ version = "0.3.4.3";
+ sha256 = "1cn3kh5rszyis2pqvh3s35zlchxwyf7vssd8md9z8vgqs6apd49r";
libraryHaskellDepends = [
base bytestring directory filepath process temporary transformers
unix
@@ -217706,10 +220207,8 @@ self: {
}:
mkDerivation {
pname = "shellmate-extras";
- version = "0.3.4.1";
- sha256 = "0bmqz4k2wcdv2669w053xm4990fdyghqq35m5kwnrbwr9qwn5pgk";
- revision = "1";
- editedCabalFile = "11x8alavql8375misc8zry4sz73bz3hxqydmbk9hsymgvkdm51y6";
+ version = "0.3.4.3";
+ sha256 = "1aqc0bslqwrfr8b9nkk52n3fjw2b91gnn7pzzp24smm1cbm2x50d";
libraryHaskellDepends = [
base bytestring feed http-conduit http-types mime-types shellmate
tagsoup text utf8-string xml
@@ -217986,20 +220485,31 @@ self: {
}:
mkDerivation {
pname = "shine";
- version = "0.2.0.3";
- sha256 = "16h5igycgas28qk22yg08qkfwsrar9g4bw7q8p94vmf993p4542k";
- revision = "1";
- editedCabalFile = "0af20y679gqd8dzsfjhiaag1dc25dlvgml2jdkqnp6mi28sbz3n1";
+ version = "0.2.0.4";
+ sha256 = "1m94xmvvs5rwh75mz1h3xw925hj01m9gh22isz4vxngfsg3qi1an";
libraryHaskellDepends = [
base ghcjs-dom ghcjs-prim keycode mtl time transformers
];
- testHaskellDepends = [ base ghcjs-dom ];
description = "Declarative graphics for the browser using GHCJS";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghcjs-prim = null;};
+ "shine-examples" = callPackage
+ ({ mkDerivation }:
+ mkDerivation {
+ pname = "shine-examples";
+ version = "0.1";
+ sha256 = "1xnykm61gqsf127zksa8hs07z238vp67kx2rxvwqyjvkvbi5ik7m";
+ isLibrary = false;
+ isExecutable = true;
+ description = "Examples for the shine package";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"shine-varying" = callPackage
({ mkDerivation, base, ghcjs-dom, keycode, shine, varying }:
mkDerivation {
@@ -218970,8 +221480,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "simple-get-opt";
- version = "0.3";
- sha256 = "1kcngbcl8kv6v9762z1f6kp4x7kary8n4zqpky6d7kxpv5zqrnfy";
+ version = "0.4";
+ sha256 = "0xr5gi22ifq6nw0q0w1rf66djsns4gfv2l9yjvxhbxr4j8bqmwik";
libraryHaskellDepends = [ base ];
description = "A simple library for processing command-line options";
license = stdenv.lib.licenses.bsd3;
@@ -219533,6 +222043,20 @@ self: {
broken = true;
}) {};
+ "simplelru" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "simplelru";
+ version = "0.1.0.3";
+ sha256 = "02arimxh5nhm7kxw9wliah1x9g8bvfb4s76q67lw6b2y3d80y92z";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"simplemesh" = callPackage
({ mkDerivation, base, linear }:
mkDerivation {
@@ -219613,14 +222137,16 @@ self: {
}:
mkDerivation {
pname = "simplest-sqlite";
- version = "0.1.0.1";
- sha256 = "06ccads286air3m6xys60aap5dckjimp6rvchk3v6927z9vgrn0v";
+ version = "0.1.0.2";
+ sha256 = "02ws0f4cf9mdbkadzp4val5kqiflgwskil71iq7mb90d41j1khmp";
libraryHaskellDepends = [
base bytestring exception-hierarchy template-haskell text
];
librarySystemDepends = [ sqlite ];
description = "Simplest SQLite3 binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) sqlite;};
"simplex" = callPackage
@@ -219993,6 +222519,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sitemap-gen" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, raw-strings-qq, tasty
+ , tasty-hunit, text, time, xmlgen
+ }:
+ mkDerivation {
+ pname = "sitemap-gen";
+ version = "0.1.0.0";
+ sha256 = "0dq87yix1ii6mna8qzbgrqn07ph41283bjzy40rpwm7aqdpv2z0z";
+ libraryHaskellDepends = [ base text time xmlgen ];
+ testHaskellDepends = [
+ base bytestring HUnit raw-strings-qq tasty tasty-hunit time
+ ];
+ description = "Generate XML Sitemaps & Sitemap Indexes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"sitepipe" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, directory
, exceptions, filepath, Glob, lens, lens-aeson, megaparsec
@@ -220368,6 +222910,8 @@ self: {
pname = "skip-var";
version = "0.1.1.0";
sha256 = "07nljfjd45fagisd99pqz2jhznfapk9cgd9lyy9cija7pmxfbg5z";
+ revision = "1";
+ editedCabalFile = "0vl2y19l7xhlq08f91ggycj4imfdxvkj2fsaz8ifc0waxk3q7ja8";
libraryHaskellDepends = [ base ];
description = "Skip variables";
license = stdenv.lib.licenses.mit;
@@ -220428,14 +222972,14 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
- "skylighting_0_8_3" = callPackage
+ "skylighting_0_8_3_2" = callPackage
({ mkDerivation, base, binary, bytestring, containers
, skylighting-core
}:
mkDerivation {
pname = "skylighting";
- version = "0.8.3";
- sha256 = "1gsmbzgfxwsfvnk3mbd29llv5wkvn5v7ybs46y6kvf51sdf4v6i6";
+ version = "0.8.3.2";
+ sha256 = "03kbvz66r4fp1zq09c6arnhi2s81iwsmv8lv2kz0g7a8dr0hpaq2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220478,7 +223022,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "skylighting-core_0_8_3" = callPackage
+ "skylighting-core_0_8_3_2" = callPackage
({ mkDerivation, aeson, ansi-terminal, attoparsec, base
, base64-bytestring, binary, blaze-html, bytestring
, case-insensitive, colour, containers, criterion, Diff, directory
@@ -220488,8 +223032,8 @@ self: {
}:
mkDerivation {
pname = "skylighting-core";
- version = "0.8.3";
- sha256 = "07l8n290wm533qp7h1kdn99b47f2lrq4mag2snfpllll8ss35773";
+ version = "0.8.3.2";
+ sha256 = "04l1qcfqkvi7c4hv5nra4nl2zk5r6l6jkj95wvq466anls8x35rj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220992,22 +223536,23 @@ self: {
"small-bytearray-builder" = callPackage
({ mkDerivation, base, byteslice, bytestring, gauge
- , natural-arithmetic, primitive, primitive-offset, QuickCheck
- , quickcheck-classes, run-st, tasty, tasty-hunit, tasty-quickcheck
- , text, text-short, vector, wide-word
+ , natural-arithmetic, primitive, primitive-offset
+ , primitive-unlifted, QuickCheck, quickcheck-classes, run-st, tasty
+ , tasty-hunit, tasty-quickcheck, text, text-short, vector
+ , wide-word
}:
mkDerivation {
pname = "small-bytearray-builder";
- version = "0.3.1.0";
- sha256 = "1swv0cwsxrmffkvx16qxxxkxfhqfwxwfz7d2msp5fzzz6all6vli";
+ version = "0.3.2.0";
+ sha256 = "1nskigvkimz4bddjyz8m3y1ir29lz5iq8d698w6khaxvrvprhwxb";
libraryHaskellDepends = [
base byteslice bytestring natural-arithmetic primitive
- primitive-offset run-st text-short wide-word
+ primitive-offset primitive-unlifted run-st text-short wide-word
];
testHaskellDepends = [
- base byteslice bytestring natural-arithmetic primitive QuickCheck
- quickcheck-classes tasty tasty-hunit tasty-quickcheck text vector
- wide-word
+ base byteslice bytestring natural-arithmetic primitive
+ primitive-unlifted QuickCheck quickcheck-classes tasty tasty-hunit
+ tasty-quickcheck text vector wide-word
];
benchmarkHaskellDepends = [
base byteslice gauge natural-arithmetic primitive text-short
@@ -221336,8 +223881,8 @@ self: {
({ mkDerivation, base, bytesmith, primitive }:
mkDerivation {
pname = "smith";
- version = "0.1.0.0";
- sha256 = "13h0v7fl8xi84n0nq9mjsb5hphv2b7l8yaz1hg9ky3bkmqki6vml";
+ version = "0.1.1.0";
+ sha256 = "0ylhzs0lc7fxp54s74slffkr8rnasy4pak4snyi5jnvma0wiz55g";
libraryHaskellDepends = [ base bytesmith primitive ];
description = "Parse arrays of tokens";
license = stdenv.lib.licenses.bsd3;
@@ -223142,6 +225687,8 @@ self: {
pname = "snmp";
version = "0.3.1.0";
sha256 = "0lkvhghrcmjfy2dhwybx04j5rip0d1dpyv62f8n3viad8x2djhkr";
+ revision = "2";
+ editedCabalFile = "0r8j4238gjpb6dbcmd13ycnhg3cxds9wm4fw6hrng5r42zpq41c1";
libraryHaskellDepends = [
base bytestring containers cryptonite ip language-asn memory
network stm vector
@@ -225693,7 +228240,7 @@ self: {
}) {};
"squeal-postgresql" = callPackage
- ({ mkDerivation, aeson, base, binary-parser, bytestring
+ ({ mkDerivation, aeson, async, base, binary-parser, bytestring
, bytestring-strict-builder, deepseq, doctest, generics-sop, hspec
, mmorph, mtl, network-ip, postgresql-binary, postgresql-libpq
, records-sop, resource-pool, scientific, text, time, transformers
@@ -225701,8 +228248,8 @@ self: {
}:
mkDerivation {
pname = "squeal-postgresql";
- version = "0.5.1.0";
- sha256 = "139a93b2zy3wximrziqxl5m9mqd66d7awzprrymwrxhxgrlrf27q";
+ version = "0.5.2.0";
+ sha256 = "09mmpk42lllrx69mkfnbj7pgy5iclrv22dy3cndfv8y0vk70nhr1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -225715,7 +228262,8 @@ self: {
base bytestring generics-sop mtl text transformers vector
];
testHaskellDepends = [
- base bytestring doctest generics-sop hspec text transformers vector
+ async base bytestring doctest generics-sop hspec text transformers
+ vector
];
description = "Squeal PostgreSQL Library";
license = stdenv.lib.licenses.bsd3;
@@ -227494,26 +230042,25 @@ self: {
"statistics" = callPackage
({ mkDerivation, aeson, async, base, base-orphans, binary
- , data-default-class, deepseq, dense-linear-algebra, erf, HUnit
- , ieee754, math-functions, monad-par, mwc-random, primitive
- , QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2, vector, vector-algorithms
- , vector-binary-instances, vector-th-unbox
+ , data-default-class, deepseq, dense-linear-algebra, erf, ieee754
+ , math-functions, monad-par, mwc-random, primitive, QuickCheck
+ , tasty, tasty-expected-failure, tasty-hunit, tasty-quickcheck
+ , vector, vector-algorithms, vector-binary-instances
+ , vector-th-unbox
}:
mkDerivation {
pname = "statistics";
- version = "0.15.1.1";
- sha256 = "015rn74f1glii26j4b2fh1fc63xvxzrh2xckiancz48kc8jdzabj";
+ version = "0.15.2.0";
+ sha256 = "0j9awbg47fzb58k5z2wgkp6a0042j7hqrl1g6lyflrbsfswdp5n4";
libraryHaskellDepends = [
aeson async base base-orphans binary data-default-class deepseq
dense-linear-algebra math-functions monad-par mwc-random primitive
vector vector-algorithms vector-binary-instances vector-th-unbox
];
testHaskellDepends = [
- aeson base binary dense-linear-algebra erf HUnit ieee754
- math-functions mwc-random primitive QuickCheck test-framework
- test-framework-hunit test-framework-quickcheck2 vector
- vector-algorithms
+ aeson base binary dense-linear-algebra erf ieee754 math-functions
+ mwc-random primitive QuickCheck tasty tasty-expected-failure
+ tasty-hunit tasty-quickcheck vector vector-algorithms
];
description = "A library of statistical types, data, and functions";
license = stdenv.lib.licenses.bsd2;
@@ -227715,8 +230262,8 @@ self: {
}:
mkDerivation {
pname = "staversion";
- version = "0.2.3.2";
- sha256 = "059xv38i6mkq7wfvx154m7f7z6byf27q5h68p19nm9mv80l52vv7";
+ version = "0.2.3.3";
+ sha256 = "1mrd2w1a1nxi4k5lwav6hk8wphfk2j519hwdscj5855a9kk9piba";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -228855,15 +231402,15 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "stratosphere_0_46_0" = callPackage
+ "stratosphere_0_48_0" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
, hashable, hspec, hspec-discover, lens, template-haskell, text
, unordered-containers
}:
mkDerivation {
pname = "stratosphere";
- version = "0.46.0";
- sha256 = "07qm0bi5f3fkpnbsjbyi4qv2kp7w0wb7zd75q4cikjwkm1wxlldr";
+ version = "0.48.0";
+ sha256 = "1g6z2yfafa9h1nr3kzg4mblgl7n8dmyja8zyq888m99lh4h8qdf2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -229263,8 +231810,8 @@ self: {
}:
mkDerivation {
pname = "streaming-commons";
- version = "0.2.1.1";
- sha256 = "1lmyx3wkjsayhy5yilzvy0kf8qwmycwlk26r1d8f3cxbfhkr7s52";
+ version = "0.2.1.2";
+ sha256 = "05pwziz8cybp6zh70jsmsdchy5qlkgdjj2jf7ggqrgps5m5nsapa";
libraryHaskellDepends = [
array async base bytestring directory network process random stm
text transformers unix zlib
@@ -229683,6 +232230,8 @@ self: {
];
description = "Folder watching as a Streamly stream";
license = stdenv.lib.licenses.gpl3Plus;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streamproc" = callPackage
@@ -230662,8 +233211,8 @@ self: {
}:
mkDerivation {
pname = "structured-cli";
- version = "2.5.1.0";
- sha256 = "023mpmnkjc7z0fyzn5xp43jwnjzd4hhixz56fmyx5j7sal2lrj92";
+ version = "2.5.2.0";
+ sha256 = "0sq72gyqg73d3nxfkv8bynyk30l3lw1vfmfw9jg4smmj2ix7n5a0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -230674,6 +233223,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "structured-cli_2_6_0_0" = callPackage
+ ({ mkDerivation, base, data-default, exceptions, haskeline, mtl
+ , split, transformers
+ }:
+ mkDerivation {
+ pname = "structured-cli";
+ version = "2.6.0.0";
+ sha256 = "1g0yq5kxidmh4x0izvspafhhir64krw986s0a5rkbvkjk7ahvm7y";
+ revision = "1";
+ editedCabalFile = "0gmviyrihzpm27s91ygs5fzdawk33aqw74dyasn354kfczq5vza7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base data-default exceptions haskeline mtl split transformers
+ ];
+ executableHaskellDepends = [ base data-default mtl split ];
+ description = "Application library for building interactive console CLIs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"structured-haskell-mode" = callPackage
({ mkDerivation, base, descriptive, ghc-prim, haskell-src-exts
, text
@@ -230899,8 +233469,8 @@ self: {
}:
mkDerivation {
pname = "stylist";
- version = "1.1.0.0";
- sha256 = "1sgfyslbsppndgbywlqynzfxd63y6vr9mig6d76czh427qvn7qpp";
+ version = "1.1.1.0";
+ sha256 = "0adcw26540a8srlmypjdv41icw5d3j3i2q6i7j92hhssj642bfw4";
libraryHaskellDepends = [
base css-syntax hashable network-uri text unordered-containers
];
@@ -232359,21 +234929,23 @@ self: {
}) {};
"sws" = callPackage
- ({ mkDerivation, base, bytestring, containers, cryptonite
- , directory, filepath, hourglass, http-types, network, network-bsd
- , network-uri, resourcet, transformers, wai, wai-extra
- , wai-middleware-static, warp, warp-tls
+ ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring
+ , containers, cryptonite, directory, filepath, hourglass
+ , http-types, network, network-bsd, network-uri, pem, resourcet
+ , transformers, wai, wai-extra, wai-middleware-static, warp
+ , warp-tls, x509
}:
mkDerivation {
pname = "sws";
- version = "0.4.6.0";
- sha256 = "0bbk1sp90n4ix4zy45xm9xxrwnh50shwm9f1bk0kspdfnvxkpsa5";
+ version = "0.5.0.0";
+ sha256 = "04x8jvac8aaifsyll63gwjg2j6y2ap24a92k2dxn8mdbx2i3zjyq";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base bytestring containers cryptonite directory filepath hourglass
- http-types network network-bsd network-uri resourcet transformers
- wai wai-extra wai-middleware-static warp warp-tls
+ asn1-encoding asn1-types base bytestring containers cryptonite
+ directory filepath hourglass http-types network network-bsd
+ network-uri pem resourcet transformers wai wai-extra
+ wai-middleware-static warp warp-tls x509
];
description = "A simple web server for serving directories";
license = stdenv.lib.licenses.bsd3;
@@ -232767,30 +235339,31 @@ self: {
"symbiote" = callPackage
({ mkDerivation, abides, aeson, async, base, bytestring, cereal
- , containers, exceptions, extractable-singleton, http-types
- , monad-control-aligned, mtl, QuickCheck, quickcheck-instances, stm
- , tasty, tasty-hunit, tasty-quickcheck, text, wai, wai-extra
- , wai-transformers, wai-websockets, warp, websockets
- , websockets-simple, websockets-simple-extra, zeromq4-haskell
- , zeromq4-simple
+ , chan, containers, exceptions, extractable-singleton, hashable
+ , http-types, monad-control-aligned, mtl, QuickCheck
+ , quickcheck-instances, stm, tasty, tasty-hunit, tasty-quickcheck
+ , text, threaded, uuid, wai, wai-extra, wai-transformers
+ , wai-websockets, warp, websockets, websockets-simple
+ , websockets-simple-extra, zeromq4-haskell, zeromq4-simple
}:
mkDerivation {
pname = "symbiote";
- version = "0.0.2";
- sha256 = "09siz5xy6gvlqy1vd61j7rhhqi6dyg5fc4yl6h1nifchk6126939";
+ version = "0.0.3";
+ sha256 = "0ghxakwnwjhmpgicxs8rgkrxlclgdlskhl8aqblbsabk0nj9gyaj";
libraryHaskellDepends = [
- abides aeson async base bytestring cereal containers exceptions
- extractable-singleton monad-control-aligned mtl QuickCheck
- quickcheck-instances stm text wai-transformers websockets-simple
- websockets-simple-extra zeromq4-haskell zeromq4-simple
+ abides aeson async base bytestring cereal chan containers
+ exceptions extractable-singleton hashable monad-control-aligned mtl
+ QuickCheck quickcheck-instances stm text threaded uuid
+ wai-transformers websockets-simple websockets-simple-extra
+ zeromq4-haskell zeromq4-simple
];
testHaskellDepends = [
- abides aeson async base bytestring cereal containers exceptions
- extractable-singleton http-types monad-control-aligned mtl
- QuickCheck quickcheck-instances stm tasty tasty-hunit
- tasty-quickcheck text wai wai-extra wai-transformers wai-websockets
- warp websockets websockets-simple websockets-simple-extra
- zeromq4-haskell zeromq4-simple
+ abides aeson async base bytestring cereal chan containers
+ exceptions extractable-singleton hashable http-types
+ monad-control-aligned mtl QuickCheck quickcheck-instances stm tasty
+ tasty-hunit tasty-quickcheck text threaded uuid wai wai-extra
+ wai-transformers wai-websockets warp websockets websockets-simple
+ websockets-simple-extra zeromq4-haskell zeromq4-simple
];
description = "Data serialization, communication, and operation verification implementation";
license = stdenv.lib.licenses.bsd3;
@@ -233577,14 +236150,13 @@ self: {
}) {};
"system-info" = callPackage
- ({ mkDerivation, attoparsec, base, process, text }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "system-info";
- version = "0.4.0.1";
- sha256 = "1v18ds9k7vnvzghpyqkh1ixskf27cb94f9r696982h2vp373zh43";
- libraryHaskellDepends = [ attoparsec base process text ];
- testHaskellDepends = [ base ];
- description = "Get information about CPUs, memory, etc";
+ version = "0.5.1";
+ sha256 = "10a43hb20gb8vgggibsnd3xg3al1wm4phjpp1mf2hnkf4nwxilm4";
+ libraryHaskellDepends = [ base ];
+ description = "Get the name of the operating system";
license = stdenv.lib.licenses.mit;
}) {};
@@ -234157,6 +236729,8 @@ self: {
executablePkgconfigDepends = [ gtk3 ];
description = "A desktop bar similar to xmobar, but with more GUI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) gtk3;};
"tag-bits" = callPackage
@@ -234814,8 +237388,8 @@ self: {
({ mkDerivation, base, containers, mtl, safe, text }:
mkDerivation {
pname = "tamper";
- version = "0.4.2.2";
- sha256 = "0jzx76k1bd47ag3y73xmhi7yw7abr5hk9gy95gv3y7knb6mj9cdl";
+ version = "0.4.2.3";
+ sha256 = "0im6m05lj6nfap6qqff9qmb8vvv4i3g17pcqdg6rqb2xx86dfnjj";
libraryHaskellDepends = [ base containers mtl safe text ];
description = "Blaze-style HTML templates as a Monad Transformer";
license = stdenv.lib.licenses.bsd3;
@@ -234904,6 +237478,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "tar-bytestring" = callPackage
+ ({ mkDerivation, array, base, bytestring, bytestring-handle
+ , containers, criterion, deepseq, hpath, hpath-filepath, hpath-io
+ , QuickCheck, tasty, tasty-quickcheck, time, unix, word8
+ }:
+ mkDerivation {
+ pname = "tar-bytestring";
+ version = "0.6.1.0";
+ sha256 = "1h7zq7ad5pnvfbf62s7p1irrxgs6jaf4pv4xivjq1diyj3i4nkzp";
+ revision = "1";
+ editedCabalFile = "1pykrgxcazbmab2749ckcwmvwy88ycs4vbrag218i9sb3193q1d8";
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq hpath hpath-filepath
+ hpath-io time unix word8
+ ];
+ testHaskellDepends = [
+ array base bytestring bytestring-handle containers deepseq hpath
+ hpath-filepath hpath-io QuickCheck tasty tasty-quickcheck time unix
+ word8
+ ];
+ benchmarkHaskellDepends = [
+ array base bytestring containers criterion deepseq hpath
+ hpath-filepath hpath-io time unix word8
+ ];
+ description = "Reading, writing and manipulating \".tar\" archive files.";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"tar-conduit" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-combinators
, conduit-extra, containers, criterion, deepseq, directory
@@ -235072,24 +237676,24 @@ self: {
, classy-prelude, config-ini, containers, directory, file-embed
, fold-debounce, http-client, http-conduit, http-types, lens, mtl
, raw-strings-qq, tasty, tasty-discover, tasty-expected-failure
- , tasty-hunit, template-haskell, text, time, vty
+ , tasty-hunit, template-haskell, text, time, tz, vty
}:
mkDerivation {
pname = "taskell";
- version = "1.7.0.0";
- sha256 = "1k8dxxf6ahcqnsv3vnr39rbw758l5jzpbjfzljn7mgpy4vm9gq77";
+ version = "1.9.1.0";
+ sha256 = "07hkkx71xb6k89ylis58lcv69ab1avggb4347ppzv2wxp6qljn5l";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base brick bytestring classy-prelude config-ini
containers directory file-embed fold-debounce http-client
- http-conduit http-types lens mtl template-haskell text time vty
+ http-conduit http-types lens mtl template-haskell text time tz vty
];
- executableHaskellDepends = [ base classy-prelude ];
+ executableHaskellDepends = [ base classy-prelude tz ];
testHaskellDepends = [
- aeson base classy-prelude containers file-embed lens raw-strings-qq
- tasty tasty-discover tasty-expected-failure tasty-hunit text time
- vty
+ aeson base classy-prelude containers file-embed lens mtl
+ raw-strings-qq tasty tasty-discover tasty-expected-failure
+ tasty-hunit text time tz vty
];
testToolDepends = [ tasty-discover ];
description = "A command-line kanban board/task manager";
@@ -235118,16 +237722,16 @@ self: {
"taskwarrior" = callPackage
({ mkDerivation, aeson, base, bytestring, hspec, hspec-discover
- , process, QuickCheck, quickcheck-instances, random
- , string-interpolate, text, time, unordered-containers, uuid
+ , process, QuickCheck, quickcheck-instances, random, text, time
+ , unordered-containers, uuid
}:
mkDerivation {
pname = "taskwarrior";
- version = "0.1.2.0";
- sha256 = "1kmmlb3d9bfc47lvlv8v3zxp3cymv3v5i2m86m4iglhg0x6lyawp";
+ version = "0.1.2.1";
+ sha256 = "0kz4p2bq8xnv3iygdm0lbihkkvfvizb5i0c2ynw481r7rl7dq7md";
libraryHaskellDepends = [
- aeson base bytestring process random string-interpolate text time
- unordered-containers uuid
+ aeson base bytestring process random text time unordered-containers
+ uuid
];
testHaskellDepends = [
aeson base hspec QuickCheck quickcheck-instances text time
@@ -235306,10 +237910,8 @@ self: {
}:
mkDerivation {
pname = "tasty-hedgehog";
- version = "1.0.0.1";
- sha256 = "1mbg5q0c0xfrk4npfj60pi693igb7r5l78x6xf9fk2jglw0nmxhz";
- revision = "1";
- editedCabalFile = "1n6797fm8swyrk8cw7zxz593gq82wx8dayvm204rmgcz75bslcpn";
+ version = "1.0.0.2";
+ sha256 = "1vsv3m6brhshpqm8qixz97m7h0nx67cj6ira4cngbk7mf5rqylv5";
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
@@ -235589,8 +238191,8 @@ self: {
}:
mkDerivation {
pname = "tasty-rerun";
- version = "1.1.16";
- sha256 = "1xrm7z5dhg7zfpq7xr1pdwqsgrvxsb5r5ia063lcxlxk2dizrib2";
+ version = "1.1.17";
+ sha256 = "0hiafrknk700gi8rm675akz8q6abk8iwlmygwnlx1fy3znalkqad";
libraryHaskellDepends = [
base containers mtl optparse-applicative split stm tagged tasty
transformers
@@ -235674,6 +238276,8 @@ self: {
pname = "tasty-test-vector";
version = "0";
sha256 = "1kgz9mp1h391rqj9n78bfvxl8pd3bxanbnwkc5l9gvlygly3fz8j";
+ revision = "1";
+ editedCabalFile = "13z7fj49hsxs79brh0jrncx5qcqicgzcif9gnbx8y3hbh6qw4bv0";
libraryHaskellDepends = [ base tasty ];
description = "Test vector support for tasty";
license = stdenv.lib.licenses.bsd3;
@@ -236326,12 +238930,12 @@ self: {
}) {};
"template-haskell-compat-v0208" = callPackage
- ({ mkDerivation, base, base-prelude, template-haskell }:
+ ({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "template-haskell-compat-v0208";
- version = "0.1.1.1";
- sha256 = "0il2bm5bwa4majddlzckc6jlcwx4w1kmymz9szj11hwjchgd1w3l";
- libraryHaskellDepends = [ base base-prelude template-haskell ];
+ version = "0.1.2.1";
+ sha256 = "1c8m1z46j6azvxd6hrr76rb7gq6bxfwg3j8m25p260hrss595c06";
+ libraryHaskellDepends = [ base template-haskell ];
description = "A backwards compatibility layer for Template Haskell newer than 2.8";
license = stdenv.lib.licenses.mit;
}) {};
@@ -237576,8 +240180,8 @@ self: {
}:
mkDerivation {
pname = "test-lib";
- version = "0.2";
- sha256 = "0i9q483sd5a8f7d95fxjqzyb4vsi3w1bycs518wi0k0w1rlfm33i";
+ version = "0.2.1";
+ sha256 = "1ahydivab6n4lm9fic6idvciihvy9siw89hdj2dgjjqmg9nmpv2r";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -238712,6 +241316,8 @@ self: {
pname = "text-show-instances";
version = "3.8.3";
sha256 = "11v335p3wzf9ijqlkls5mk4m16dfak8fckn4gj7mahs8c7l9lm5d";
+ revision = "1";
+ editedCabalFile = "104r5k4h4sdf69frpc0pr8jijk4v9dalw9c18yib653bwjw0ypl4";
libraryHaskellDepends = [
base base-compat-batteries bifunctors binary containers directory
ghc-boot-th haskeline hpc old-locale old-time pretty random
@@ -240044,6 +242650,26 @@ self: {
license = "GPL";
}) {};
+ "threaded" = callPackage
+ ({ mkDerivation, async, base, chan, extractable-singleton, hashable
+ , monad-control-aligned, mtl, stm, tmapmvar
+ }:
+ mkDerivation {
+ pname = "threaded";
+ version = "0.0.0";
+ sha256 = "1f7zvigy2gwj0dsxfs4m07ng4k4l29i6mccjnvqz0b45gsm1b4fj";
+ libraryHaskellDepends = [
+ async base chan extractable-singleton hashable
+ monad-control-aligned mtl stm tmapmvar
+ ];
+ testHaskellDepends = [
+ async base chan extractable-singleton hashable
+ monad-control-aligned mtl stm tmapmvar
+ ];
+ description = "Manage concurrently operating threads without having to spark them";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"threadmanager" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -240186,30 +242812,6 @@ self: {
}:
mkDerivation {
pname = "threepenny-gui";
- version = "0.8.3.0";
- sha256 = "173aacscvf2llk6n5nnxvww22673cg2hclkb3s18av3xk03b4qf6";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson async base bytestring containers data-default deepseq
- exceptions file-embed filepath hashable safe snap-core snap-server
- stm template-haskell text transformers unordered-containers vault
- vector websockets websockets-snap
- ];
- description = "GUI framework that uses the web browser as a display";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "threepenny-gui_0_8_3_1" = callPackage
- ({ mkDerivation, aeson, async, base, bytestring, containers
- , data-default, deepseq, exceptions, file-embed, filepath, hashable
- , safe, snap-core, snap-server, stm, template-haskell, text
- , transformers, unordered-containers, vault, vector, websockets
- , websockets-snap
- }:
- mkDerivation {
- pname = "threepenny-gui";
version = "0.8.3.1";
sha256 = "08jmnyaskbfzwzyghs9ccmq6rdfxcgw0si7p6kc5ppi86gxdr5sl";
isLibrary = true;
@@ -240223,7 +242825,6 @@ self: {
];
description = "GUI framework that uses the web browser as a display";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"threepenny-gui-contextmenu" = callPackage
@@ -240551,6 +243152,8 @@ self: {
testHaskellDepends = [ async base deepseq doctest Glob hspec ];
description = "A concurrent utility inspired by Ticker in golang";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tickle" = callPackage
@@ -240596,8 +243199,8 @@ self: {
}:
mkDerivation {
pname = "tidal";
- version = "1.4.5";
- sha256 = "146nhi2y8c5acqmkhgh4f1bb3wrasba0i1w4v2vwnbznpdv6cxs1";
+ version = "1.4.7";
+ sha256 = "01v6p4by2scn9wxyv14hal7pd7hkr7psr3kaj8xsnc924xpxmwak";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bifunctors bytestring clock colour containers deepseq hosc
@@ -240609,28 +243212,6 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "tidal_1_4_6" = callPackage
- ({ mkDerivation, base, bifunctors, bytestring, clock, colour
- , containers, criterion, deepseq, hosc, microspec, mwc-random
- , network, parsec, primitive, random, text, transformers, vector
- , weigh
- }:
- mkDerivation {
- pname = "tidal";
- version = "1.4.6";
- sha256 = "1mgyss58kwvdp39qznqxkks8vvyq5w802g60rvmc26ipilhm1rd9";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bifunctors bytestring clock colour containers deepseq hosc
- mwc-random network parsec primitive random text transformers vector
- ];
- testHaskellDepends = [ base containers microspec parsec ];
- benchmarkHaskellDepends = [ base criterion weigh ];
- description = "Pattern language for improvised music";
- license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"tidal-midi" = callPackage
({ mkDerivation, base, containers, PortMidi, tidal, time
, transformers
@@ -241716,6 +244297,33 @@ self: {
broken = true;
}) {};
+ "tintin_1_10_1" = callPackage
+ ({ mkDerivation, base, clay, containers, data-has, directory
+ , frontmatter, inflections, inliterate, lucid, optparse-generic
+ , process, require, temporary, text, universum, yaml
+ }:
+ mkDerivation {
+ pname = "tintin";
+ version = "1.10.1";
+ sha256 = "191dr17z3qxkk5ic605ni2kq5v7sncn0gw5xhk7nlxd5fx6nf5r2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base clay containers data-has directory frontmatter inflections
+ inliterate lucid process require temporary text universum yaml
+ ];
+ libraryToolDepends = [ require ];
+ executableHaskellDepends = [
+ base optparse-generic require universum
+ ];
+ executableToolDepends = [ require ];
+ testHaskellDepends = [ base require ];
+ description = "A softer alternative to Haddock";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"tiny-scheduler" = callPackage
({ mkDerivation, async, base, time }:
mkDerivation {
@@ -241883,15 +244491,62 @@ self: {
}) {};
"titan" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation, base, cairo, glib, gtk, IfElse
+ , keera-hails-mvc-controller, keera-hails-mvc-environment-gtk
+ , keera-hails-mvc-model-protectedmodel
+ , keera-hails-mvc-solutions-gtk, keera-hails-mvc-view
+ , keera-hails-mvc-view-gtk, keera-hails-reactive-gtk
+ , keera-hails-reactive-polling, keera-hails-reactivevalues, mtl
+ , network, network-bsd, template-haskell
+ }:
mkDerivation {
pname = "titan";
- version = "0.1.0.0";
- sha256 = "1bq8j1ch9fqpfgbchmi284afm1bbhjc47pw4lbnadxfwfcldm1gs";
+ version = "1.0.2";
+ sha256 = "15jxx0irblnw1pkwzih383w5f0xfh1nav5pal488207gfy6p9d66";
isLibrary = false;
isExecutable = true;
- executableHaskellDepends = [ base ];
- description = "Testing Infrastructure for Temporal AbstractioNs";
+ enableSeparateDataOutput = true;
+ executableHaskellDepends = [
+ base cairo glib gtk IfElse keera-hails-mvc-controller
+ keera-hails-mvc-environment-gtk
+ keera-hails-mvc-model-protectedmodel keera-hails-mvc-solutions-gtk
+ keera-hails-mvc-view keera-hails-mvc-view-gtk
+ keera-hails-reactive-gtk keera-hails-reactive-polling
+ keera-hails-reactivevalues mtl network network-bsd template-haskell
+ ];
+ description = "Testing Infrastructure for Temporal AbstractioNs - GUI to debug temporal programs";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "titan-debug-yampa" = callPackage
+ ({ mkDerivation, base, IfElse, network, network-bsd, stm
+ , transformers, Yampa
+ }:
+ mkDerivation {
+ pname = "titan-debug-yampa";
+ version = "1.0.1";
+ sha256 = "1dwz949njsqcwixhk7128lwasvmni8hsqjkx38l6zwbpwgwgv5ci";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base IfElse network network-bsd stm transformers Yampa
+ ];
+ description = "Testing Infrastructure for Temporal AbstractioNs - Interactive Yampa debugging layer";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "titan-record-yampa" = callPackage
+ ({ mkDerivation, base, Yampa }:
+ mkDerivation {
+ pname = "titan-record-yampa";
+ version = "1.0.1";
+ sha256 = "0h7d4152nd8mx4slyjss4kf7n1xn99vc5hnk072apqfv301vpbx3";
+ libraryHaskellDepends = [ base Yampa ];
+ description = "Testing Infrastructure for Temporal AbstractioNs - Yampa record-and-replay layer";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -241996,15 +244651,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "tldr_0_6_0" = callPackage
+ "tldr_0_6_1" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers
, directory, filepath, optparse-applicative, semigroups, tasty
, tasty-golden, text, typed-process
}:
mkDerivation {
pname = "tldr";
- version = "0.6.0";
- sha256 = "0a8d7pv5rn6p2acvyrh7kld0mq0zfrybqfwnffb7pmpl0ghzdsxa";
+ version = "0.6.1";
+ sha256 = "0nzmflhhrrnryl2jcd7bbwa52rwkp22cxqgwwqbgkyrbxslrwllh";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -242050,7 +244705,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "tls_1_5_2" = callPackage
+ "tls_1_5_3" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
, cereal, cryptonite, data-default-class, gauge, hourglass, memory
, mtl, network, QuickCheck, tasty, tasty-quickcheck, transformers
@@ -242058,8 +244713,8 @@ self: {
}:
mkDerivation {
pname = "tls";
- version = "1.5.2";
- sha256 = "0c23k1aqsdi0kyyg3lcfj78z7bc9xkk0gwy53xmi7b5s6i8dp47b";
+ version = "1.5.3";
+ sha256 = "172awd9kl1dg83pcckp1ryl1yllxlx25s592m8rndzj6xkrlm70c";
libraryHaskellDepends = [
asn1-encoding asn1-types async base bytestring cereal cryptonite
data-default-class hourglass memory mtl network transformers x509
@@ -242144,8 +244799,8 @@ self: {
}:
mkDerivation {
pname = "tls-session-manager";
- version = "0.0.3";
- sha256 = "0k57flqp2b4bipafiyfipnqmdqv04ky39yr4s4s9sx577zz2j2yi";
+ version = "0.0.4";
+ sha256 = "134kb5nz668f4xrr5g98g7fc1bwb3ri6q433a1i6asjkniwpy85s";
libraryHaskellDepends = [
auto-update base basement bytestring clock memory psqueues tls
];
@@ -242243,7 +244898,7 @@ self: {
broken = true;
}) {};
- "tmp-postgres_1_34_0_0" = callPackage
+ "tmp-postgres_1_34_1_0" = callPackage
({ mkDerivation, ansi-wl-pprint, async, base, base64-bytestring
, bytestring, containers, criterion, cryptohash-sha1, deepseq
, directory, generic-monoid, hspec, mtl, network, port-utils
@@ -242252,8 +244907,8 @@ self: {
}:
mkDerivation {
pname = "tmp-postgres";
- version = "1.34.0.0";
- sha256 = "0845bjp1vgpkms865p311zv758z1i1y8874s1gmjn0c8jwgi48cs";
+ version = "1.34.1.0";
+ sha256 = "18ivdhcp2d19z2xb36h3is2qq5n6i7gk16nbck27qlmgxll48lcq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -242549,6 +245204,8 @@ self: {
text unordered-containers
];
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tokenify" = callPackage
@@ -242833,25 +245490,12 @@ self: {
({ mkDerivation, base, doctest, Glob, rio, tonaparser }:
mkDerivation {
pname = "tonatona";
- version = "0.1.0.1";
- sha256 = "0vc2q0j26ig2qhrc8dfy0knsp0gj8p7yda4xaps5v51dsqpj9yfv";
- libraryHaskellDepends = [ base rio tonaparser ];
- testHaskellDepends = [ base doctest Glob rio tonaparser ];
- description = "meta application framework";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "tonatona_0_1_1_0" = callPackage
- ({ mkDerivation, base, doctest, Glob, rio, tonaparser }:
- mkDerivation {
- pname = "tonatona";
version = "0.1.1.0";
sha256 = "17hd93m2i79pb39z00x0sdvhfds3b5fgyhld8pr64rlnr9wm039l";
libraryHaskellDepends = [ base rio tonaparser ];
testHaskellDepends = [ base doctest Glob rio tonaparser ];
description = "meta application framework";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tonatona-google-server-api" = callPackage
@@ -242929,23 +245573,24 @@ self: {
}) {};
"tonatona-servant" = callPackage
- ({ mkDerivation, base, doctest, exceptions, Glob, http-types
- , monad-logger, rio, servant, servant-server, tonaparser, tonatona
- , tonatona-logger, wai, wai-extra, warp
+ ({ mkDerivation, base, data-default, doctest, exceptions, Glob
+ , http-types, monad-logger, rio, servant, servant-server
+ , tonaparser, tonatona, tonatona-logger, wai, wai-extra, warp
}:
mkDerivation {
pname = "tonatona-servant";
- version = "0.1.0.2";
- sha256 = "1r0xh69wzzj8h846vi7kp8gkd9i0xfyrcjj8ggliz5h7pvrfwvbl";
+ version = "0.1.0.3";
+ sha256 = "1v414apf2znvwm6vdph6wr0slhd5ki2nc666frhc8blmwj3whqrr";
libraryHaskellDepends = [
- base exceptions http-types monad-logger rio servant servant-server
- tonaparser tonatona tonatona-logger wai wai-extra warp
- ];
- testHaskellDepends = [
- base doctest exceptions Glob http-types monad-logger rio servant
+ base data-default exceptions http-types monad-logger rio servant
servant-server tonaparser tonatona tonatona-logger wai wai-extra
warp
];
+ testHaskellDepends = [
+ base data-default doctest exceptions Glob http-types monad-logger
+ rio servant servant-server tonaparser tonatona tonatona-logger wai
+ wai-extra warp
+ ];
description = "tonatona plugin for servant";
license = stdenv.lib.licenses.mit;
}) {};
@@ -242966,8 +245611,8 @@ self: {
}:
mkDerivation {
pname = "too-many-cells";
- version = "0.2.2.0";
- sha256 = "02xf5xadicgvhws21901qsn5a5v3hb77wjfy9x0q16zxbif74hvm";
+ version = "0.2.2.1";
+ sha256 = "17g9pr25jhki9r3jfvgbx8avpjikcglb9hg45rfkvk9y50wxrk15";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -244306,6 +246951,19 @@ self: {
broken = true;
}) {};
+ "traversal-template" = callPackage
+ ({ mkDerivation, base, gauge, template-haskell, util }:
+ mkDerivation {
+ pname = "traversal-template";
+ version = "0.0.0.1";
+ sha256 = "0hal3vr9p49bx6c3zhfg7xa64hf81rmkl98vb14iibrmp940vbmp";
+ libraryHaskellDepends = [ base template-haskell util ];
+ testHaskellDepends = [ base template-haskell util ];
+ benchmarkHaskellDepends = [ base gauge template-haskell util ];
+ description = "See README for more info";
+ license = stdenv.lib.licenses.mpl20;
+ }) {};
+
"traverse-with-class" = callPackage
({ mkDerivation, base, tasty, tasty-hunit, template-haskell
, transformers
@@ -244483,6 +247141,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "tree-render-text" = callPackage
+ ({ mkDerivation, base, boxes, containers, mtl }:
+ mkDerivation {
+ pname = "tree-render-text";
+ version = "0.4.0.0";
+ sha256 = "04mmmj443aa8lkdj33dsk7zf985mnzfikzg10715vn5khrll0pgq";
+ libraryHaskellDepends = [ base boxes containers mtl ];
+ description = "Configurable text rendering of trees";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"tree-sitter" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, directory
, filepath, fused-effects, hedgehog, semantic-source, split
@@ -244490,8 +247159,8 @@ self: {
}:
mkDerivation {
pname = "tree-sitter";
- version = "0.7.2.0";
- sha256 = "1gq30qjywg6cgbzgxxfngkn5c4kbddnij7wdvz8x7k1yb13ra0hd";
+ version = "0.8.0.2";
+ sha256 = "1wjhcr3lha3fbjp6nv6ln5mplj9y856x7qckxkirisckdjrryffy";
libraryHaskellDepends = [
aeson base bytestring containers directory filepath fused-effects
semantic-source split template-haskell text unordered-containers
@@ -244510,8 +247179,8 @@ self: {
}:
mkDerivation {
pname = "tree-sitter-go";
- version = "0.4.0.0";
- sha256 = "0i469134jc1i665nr5j3z3al8lgsv74mm5x7rk4gm159kpfm1z1r";
+ version = "0.4.1.1";
+ sha256 = "16wbb715vn2ka3sgz1fwxa8bad0vzg16i1380kbqfr2xnfmc5hz8";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base semantic-source template-haskell tree-sitter
@@ -244550,8 +247219,8 @@ self: {
}:
mkDerivation {
pname = "tree-sitter-java";
- version = "0.6.0.0";
- sha256 = "1jz740pj2ihmkf06ixii93msfn40lh5mky3qc5bvwk5xqf4ai716";
+ version = "0.6.1.0";
+ sha256 = "07zyj3diaq2nrlvxbhbrad1wha2705v5d9kf51vmhxknybdxp5sf";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base semantic-source template-haskell tree-sitter
@@ -244568,19 +247237,26 @@ self: {
}) {tree-sitter-test-helpers = null;};
"tree-sitter-json" = callPackage
- ({ mkDerivation, base, template-haskell, text, tree-sitter }:
+ ({ mkDerivation, base, bytestring, hedgehog, pathtype, tasty
+ , tasty-hedgehog, tasty-hunit, template-haskell, text, tree-sitter
+ , tree-sitter-test-helpers
+ }:
mkDerivation {
pname = "tree-sitter-json";
- version = "0.5.0.0";
- sha256 = "1mq1v81d00l80pg6mji9w1g464hxvgv28djnxany5vy2g38ns7q9";
+ version = "0.6.0.0";
+ sha256 = "0n7rq5a8kjrgr7d7fbhjxybrbgwxr2c8d2wyr80yp27vilvf4lh6";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base template-haskell text tree-sitter ];
+ testHaskellDepends = [
+ base bytestring hedgehog pathtype tasty tasty-hedgehog tasty-hunit
+ text tree-sitter tree-sitter-test-helpers
+ ];
doHaddock = false;
description = "Tree-sitter grammar/parser for JSON";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
- }) {};
+ }) {tree-sitter-test-helpers = null;};
"tree-sitter-php" = callPackage
({ mkDerivation, base, template-haskell, tree-sitter }:
@@ -244599,20 +247275,21 @@ self: {
}) {};
"tree-sitter-python" = callPackage
- ({ mkDerivation, aeson, base, bytestring, directory, filepath
- , hedgehog, pathtype, semantic-source, tasty, tasty-hedgehog
- , tasty-hunit, template-haskell, text, tree-sitter
- , tree-sitter-test-helpers
+ ({ mkDerivation, base, bytestring, gauge, hedgehog, pathtype
+ , semantic-source, tasty, tasty-hedgehog, tasty-hunit
+ , template-haskell, text, tree-sitter, tree-sitter-test-helpers
}:
mkDerivation {
pname = "tree-sitter-python";
- version = "0.8.0.0";
- sha256 = "08a698qqjck0nml11nrgyzvgrjbkanyvfv0x0bqng0w3mjk62yf0";
+ version = "0.8.1.0";
+ sha256 = "0sjrml57dc9fsjmh555hjsckb05x9pz3lzk970hmm2cfwgnifvyi";
+ isLibrary = true;
+ isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base directory filepath semantic-source template-haskell
- tree-sitter
+ base semantic-source template-haskell tree-sitter
];
+ executableHaskellDepends = [ base bytestring gauge tree-sitter ];
testHaskellDepends = [
base bytestring hedgehog pathtype tasty tasty-hedgehog tasty-hunit
text tree-sitter tree-sitter-test-helpers
@@ -244625,18 +247302,23 @@ self: {
}) {tree-sitter-test-helpers = null;};
"tree-sitter-ruby" = callPackage
- ({ mkDerivation, base, bytestring, hedgehog, pathtype
- , semantic-source, tasty, tasty-hedgehog, tasty-hunit
+ ({ mkDerivation, base, bytestring, gauge, Glob, hedgehog, lens
+ , pathtype, semantic-source, tasty, tasty-hedgehog, tasty-hunit
, template-haskell, text, tree-sitter, tree-sitter-test-helpers
}:
mkDerivation {
pname = "tree-sitter-ruby";
- version = "0.4.0.0";
- sha256 = "1y26956bryax1n17yf49hqczcig1qd5fk5j39arj93464x142ba9";
+ version = "0.4.1.0";
+ sha256 = "1kb87c1z9jghidygk632lihlqkqbanx48dvpdqxn7ypnni4dzw0k";
+ isLibrary = true;
+ isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base semantic-source template-haskell tree-sitter
];
+ executableHaskellDepends = [
+ base bytestring gauge Glob lens pathtype tree-sitter
+ ];
testHaskellDepends = [
base bytestring hedgehog pathtype tasty tasty-hedgehog tasty-hunit
text tree-sitter tree-sitter-test-helpers
@@ -244655,8 +247337,8 @@ self: {
}:
mkDerivation {
pname = "tree-sitter-tsx";
- version = "0.4.0.0";
- sha256 = "0q5v1fm9ia83074gkamz06hlcmdkd4vabjfrjqcra7mrvrj1pqa2";
+ version = "0.4.1.0";
+ sha256 = "0bznbbg8yj1qd5z4bqjxf8y4jjbb8w2d68xzmbp66rjbw7nzcs60";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base semantic-source template-haskell tree-sitter
@@ -244679,8 +247361,8 @@ self: {
}:
mkDerivation {
pname = "tree-sitter-typescript";
- version = "0.4.0.0";
- sha256 = "0sbvsfipwf2j809kkjcgbqq4k44h69x9dl07dvngjyfimkccv758";
+ version = "0.4.1.0";
+ sha256 = "0p53vi3mjmln5mrmsv6w43jbdlcjywq61qm4911w3qqwmwjbgn14";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base semantic-source template-haskell tree-sitter
@@ -245110,6 +247792,32 @@ self: {
broken = true;
}) {};
+ "tropical-geometry" = callPackage
+ ({ mkDerivation, algebra, base, containers, criterion, gloss
+ , hlint-test, lens, matrix, numeric-prelude, semiring-simple
+ , singletons, sized, tasty, tasty-hspec, tasty-hunit, type-natural
+ }:
+ mkDerivation {
+ pname = "tropical-geometry";
+ version = "0.0.0.1";
+ sha256 = "12qcfb98yzm0ijnpzjqp3z20i0vvlpvfy4gpz7a001q8sgchd182";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ algebra base containers gloss lens matrix numeric-prelude
+ semiring-simple singletons sized type-natural
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base containers hlint-test tasty tasty-hspec tasty-hunit
+ ];
+ benchmarkHaskellDepends = [ base criterion ];
+ description = "A Tropical Geometry package for Haskell";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"true-name" = callPackage
({ mkDerivation, base, containers, template-haskell, time }:
mkDerivation {
@@ -245462,6 +248170,8 @@ self: {
pname = "ttl-hashtables";
version = "1.3.1.1";
sha256 = "14ammgggkfmc4divr1zykjadad5fzgspjnzpjfdzj3vwm1rf5gwv";
+ revision = "1";
+ editedCabalFile = "17pkzci2nqi0d4zcpyxcv5l1hn7m04h2kwqjgqm7kc2c3p620qv3";
libraryHaskellDepends = [
base clock containers data-default failable hashable hashtables mtl
transformers
@@ -245482,6 +248192,8 @@ self: {
pname = "ttl-hashtables";
version = "1.4.1.0";
sha256 = "1y3wzb5fhdmyszr5902r01c6481nsaiw0y4imzppyqcap7ppl3fj";
+ revision = "1";
+ editedCabalFile = "0ghzp5kqk5a6831kxfizsnjjcaflinqb26l4d5vjwk7763jad195";
libraryHaskellDepends = [
base clock containers data-default failable hashable hashtables mtl
transformers
@@ -245925,6 +248637,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "turtle_1_5_16" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock
+ , containers, criterion, directory, doctest, exceptions, fail
+ , foldl, hostname, managed, optional-args, optparse-applicative
+ , process, semigroups, stm, streaming-commons, system-fileio
+ , system-filepath, temporary, text, time, transformers, unix
+ , unix-compat
+ }:
+ mkDerivation {
+ pname = "turtle";
+ version = "1.5.16";
+ sha256 = "164cs5gsl6pmfj4yd9p4vj02n1sj5krgd6azd5zfgyw4q7bfc5jn";
+ libraryHaskellDepends = [
+ ansi-wl-pprint async base bytestring clock containers directory
+ exceptions foldl hostname managed optional-args
+ optparse-applicative process semigroups stm streaming-commons
+ system-fileio system-filepath temporary text time transformers unix
+ unix-compat
+ ];
+ testHaskellDepends = [
+ base doctest fail system-filepath temporary
+ ];
+ benchmarkHaskellDepends = [ base criterion text ];
+ description = "Shell programming, Haskell-style";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"turtle-options" = callPackage
({ mkDerivation, base, HUnit, optional-args, parsec, text, turtle
}:
@@ -247166,6 +249906,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "type-of-html_1_5_1_0" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, containers
+ , criterion, deepseq, double-conversion, ghc, ghc-paths, ghc-prim
+ , hspec, QuickCheck, random, text, weigh
+ }:
+ mkDerivation {
+ pname = "type-of-html";
+ version = "1.5.1.0";
+ sha256 = "14bz0gjf6rfnrisffp9lvvyzdimdhdcg5mwy5n9mrzlg4nv5pi2c";
+ libraryHaskellDepends = [
+ base bytestring containers double-conversion ghc-prim text
+ ];
+ testHaskellDepends = [ base bytestring hspec QuickCheck ];
+ benchmarkHaskellDepends = [
+ base blaze-html bytestring criterion deepseq ghc ghc-paths random
+ text weigh
+ ];
+ description = "High performance type driven html generation";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"type-of-html-static" = callPackage
({ mkDerivation, base, template-haskell, type-of-html }:
mkDerivation {
@@ -247634,6 +250396,24 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "typelevel-rewrite-rules" = callPackage
+ ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra
+ , term-rewriting, transformers, vinyl
+ }:
+ mkDerivation {
+ pname = "typelevel-rewrite-rules";
+ version = "0.1";
+ sha256 = "1gm3xbsi90dgppwhhhlmq1rwwnx9bxhm7zv9x4yr0952fwxrm8x8";
+ libraryHaskellDepends = [
+ base ghc ghc-prim ghc-tcplugins-extra term-rewriting transformers
+ ];
+ testHaskellDepends = [ base ghc-prim vinyl ];
+ description = "Solve type equalities using custom type-level rewrite rules";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"typelevel-tensor" = callPackage
({ mkDerivation, array, base, HUnit, numeric-prelude, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
@@ -247918,8 +250698,8 @@ self: {
}:
mkDerivation {
pname = "tzdata";
- version = "0.1.20190325.0";
- sha256 = "0vxisw10a414kh2rn0maj6zvcs8vi5kacfwxs0smjspvm513bkb2";
+ version = "0.1.20190911.0";
+ sha256 = "156mq401xbrx325bc745va2nh7r5ybi01nlrwavm0gxijfs0i4b9";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring containers deepseq vector
@@ -248175,8 +250955,8 @@ self: {
({ mkDerivation, base, bytestring, posix-paths, systemd, unix }:
mkDerivation {
pname = "udev";
- version = "0.1.0.0";
- sha256 = "1a5i57f50scxbv5snn4xd953bx98qq3cgzhxjnqvxyazqz3h1fx2";
+ version = "0.1.1.0";
+ sha256 = "1sb0bdi221gr58cv2b24izs02wd28fr4jijsbpw8r5gzia2j4wf0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring posix-paths unix ];
@@ -248466,18 +251246,26 @@ self: {
}) {};
"unbeliever" = callPackage
- ({ mkDerivation, base, bytestring, core-data, core-program
- , core-text, fingertree, gauge, hspec, safe-exceptions, text
- , text-short
+ ({ mkDerivation, async, base, bytestring, chronologique, containers
+ , core-data, core-program, core-text, deepseq, directory
+ , exceptions, filepath, fingertree, fsnotify, gauge, hashable
+ , hourglass, hspec, megaparsec, mtl, prettyprinter
+ , prettyprinter-ansi-terminal, safe-exceptions, scientific, stm
+ , template-haskell, terminal-size, text, text-short, transformers
+ , unix, unordered-containers
}:
mkDerivation {
pname = "unbeliever";
- version = "0.10.0.1";
- sha256 = "0fmv76xmi4ansrksa07vidqvxiqgdmvvampkqngi1ma7g3k2n29x";
+ version = "0.10.0.5";
+ sha256 = "1h0zy19vfhg1x671yhfsr1rbpr7c9jhbr0lxhj7cb25jm94hjajw";
libraryHaskellDepends = [ base core-data core-program core-text ];
testHaskellDepends = [
- base bytestring core-data core-program core-text fingertree hspec
- safe-exceptions text text-short
+ async base bytestring chronologique containers core-data
+ core-program core-text deepseq directory exceptions filepath
+ fingertree fsnotify hashable hourglass hspec megaparsec mtl
+ prettyprinter prettyprinter-ansi-terminal safe-exceptions
+ scientific stm template-haskell terminal-size text text-short
+ transformers unix unordered-containers
];
benchmarkHaskellDepends = [
base bytestring core-data core-program core-text gauge text
@@ -248964,27 +251752,6 @@ self: {
}) {};
"unicode-show" = callPackage
- ({ mkDerivation, base, HUnit, QuickCheck, test-framework
- , test-framework-hunit, test-framework-quickcheck2
- }:
- mkDerivation {
- pname = "unicode-show";
- version = "0.1.0.3";
- sha256 = "08cwfshjj724ydff1zmy1inzi7vrbaa8vmjgckcf7qp6ghkk6biz";
- revision = "1";
- editedCabalFile = "0sw9kn147kbgp0x9823hwiqn1yiyfxqkrchk34lsjfx2lq3igrzv";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
- test-framework-quickcheck2
- ];
- description = "print and show in unicode";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "unicode-show_0_1_0_4" = callPackage
({ mkDerivation, base, hspec, QuickCheck }:
mkDerivation {
pname = "unicode-show";
@@ -249786,6 +252553,8 @@ self: {
pname = "unix-compat";
version = "0.5.2";
sha256 = "1a8brv9fax76b1fymslzyghwa6ma8yijiyyhn12msl3i5x24x6k5";
+ revision = "1";
+ editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m";
libraryHaskellDepends = [ base unix ];
description = "Portable POSIX-compatibility layer";
license = stdenv.lib.licenses.bsd3;
@@ -250596,8 +253365,8 @@ self: {
}:
mkDerivation {
pname = "urbit-hob";
- version = "0.3.0";
- sha256 = "00ldbja79h5alf1wwxvrsah9v8fxam47cm2ypap9sni4w9kan5gk";
+ version = "0.3.1";
+ sha256 = "16axy690mr7hmqxjb4sd17pizmqy5kdw31rbaf24bfxmaval8ijb";
libraryHaskellDepends = [ base bytestring murmur3 text vector ];
testHaskellDepends = [ base hspec hspec-core QuickCheck text ];
benchmarkHaskellDepends = [ base criterion deepseq ];
@@ -251024,8 +253793,8 @@ self: {
({ mkDerivation, base, doctest, doctest-discover, hspec, time }:
mkDerivation {
pname = "usa-holidays";
- version = "0.1.0.1";
- sha256 = "04biw4l5rpfcflrmcn45hlirq26bpzs27745jhyr32gl6mpnqb12";
+ version = "0.1.0.2";
+ sha256 = "16zlg48pa254bwn7kimd9mn78q0mlczhj683nhxbdd5l7yqrgkm6";
libraryHaskellDepends = [ base time ];
testHaskellDepends = [ base doctest doctest-discover hspec time ];
license = stdenv.lib.licenses.bsd3;
@@ -251359,23 +254128,11 @@ self: {
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "util";
- version = "0.1.15.0";
- sha256 = "0ybjl0mibvdmqppknypljaajsjx7ls4js6yqh0viinrwq8ayf0wj";
- libraryHaskellDepends = [ base transformers ];
- description = "Utilities";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "util_0_1_17_0" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "util";
version = "0.1.17.0";
sha256 = "1wyjxrnzianif6msk7qvib92lksy66hx4rkdb7sda0a4h704960c";
libraryHaskellDepends = [ base transformers ];
description = "Utilities";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"util-exception" = callPackage
@@ -252833,6 +255590,8 @@ self: {
libraryHaskellDepends = [ base fin lens vec ];
description = "Vec: length-indexed (sized) list: lens support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"vec-optics" = callPackage
@@ -252844,6 +255603,8 @@ self: {
libraryHaskellDepends = [ base fin optics-core vec ];
description = "Vec: length-indexed (sized) list: optics support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"vect" = callPackage
@@ -253411,30 +256172,26 @@ self: {
"vectortiles" = callPackage
({ mkDerivation, base, bytestring, containers, criterion, deepseq
- , hashable, hex, microlens, microlens-platform, mtl
- , protocol-buffers, protocol-buffers-descriptor, tasty, tasty-hunit
- , text, transformers, unordered-containers, vector
+ , hashable, microlens, microlens-platform, mtl, protocol-buffers
+ , protocol-buffers-descriptor, tasty, tasty-hunit, text
+ , transformers, unordered-containers, vector
}:
mkDerivation {
pname = "vectortiles";
- version = "1.4.0";
- sha256 = "1h0mx5sl379486panyxpanld8qrlhak9knhz7jzqqv7is3rw8g1r";
- revision = "1";
- editedCabalFile = "1nlkhmfcvlzi96nzq8cpbqw5akrjahnrhl460q07vq6iyhibvf87";
+ version = "1.5.0";
+ sha256 = "1vy990m7vlsw0ffi0ys7xpz97npw0b3vldw6ykhcsyxhvhg6jrif";
libraryHaskellDepends = [
base bytestring containers deepseq hashable mtl protocol-buffers
protocol-buffers-descriptor text transformers unordered-containers
vector
];
testHaskellDepends = [
- base bytestring containers hashable hex mtl protocol-buffers
- protocol-buffers-descriptor tasty tasty-hunit text
- unordered-containers vector
+ base bytestring containers protocol-buffers tasty tasty-hunit text
+ vector
];
benchmarkHaskellDepends = [
- base bytestring containers criterion hashable microlens
- microlens-platform mtl protocol-buffers protocol-buffers-descriptor
- text unordered-containers vector
+ base bytestring criterion microlens microlens-platform
+ unordered-containers vector
];
description = "GIS Vector Tiles, as defined by Mapbox";
license = stdenv.lib.licenses.bsd3;
@@ -253693,8 +256450,8 @@ self: {
}:
mkDerivation {
pname = "versions";
- version = "3.5.1.1";
- sha256 = "1cs004ixw6rp2zg9hyw4yf0n15rq3s1ns9yy18rr8sxmcsw6jb9g";
+ version = "3.5.2";
+ sha256 = "0a2ymd7wmpakcrm1fz9xwmjqlka7jmd8kb6385frd36nbi9bx78h";
libraryHaskellDepends = [ base deepseq hashable megaparsec text ];
testHaskellDepends = [
base base-prelude checkers megaparsec microlens QuickCheck tasty
@@ -253727,17 +256484,51 @@ self: {
}) {};
"vformat" = callPackage
- ({ mkDerivation, base, containers, hspec, QuickCheck, time }:
+ ({ mkDerivation, base, containers, exceptions, hspec, QuickCheck }:
mkDerivation {
pname = "vformat";
- version = "0.9.1.0";
- sha256 = "1bq7m1yjqkgqk1bxh28n67n04yfxvp2466xmrb83a93w22h98k7l";
- libraryHaskellDepends = [ base containers time ];
- testHaskellDepends = [ base containers hspec QuickCheck time ];
+ version = "0.13.0.0";
+ sha256 = "0ribzajgsjmpbr4r248hiy5krx692ik623gpz6iz1qqrv4w54lnv";
+ libraryHaskellDepends = [ base containers exceptions ];
+ testHaskellDepends = [
+ base containers exceptions hspec QuickCheck
+ ];
description = "A Python str.format() like formatter";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vformat-aeson" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, scientific, text
+ , unordered-containers, vector, vformat
+ }:
+ mkDerivation {
+ pname = "vformat-aeson";
+ version = "0.1.0.1";
+ sha256 = "1cj3zp5n1j86jds906r9yrhanl8xq08gk97x6i64d651pry4h11v";
+ libraryHaskellDepends = [
+ aeson base bytestring scientific text unordered-containers vector
+ vformat
+ ];
+ testHaskellDepends = [
+ aeson base bytestring scientific text unordered-containers vector
+ vformat
+ ];
+ description = "Extend vformat to Aeson datatypes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "vformat-time" = callPackage
+ ({ mkDerivation, base, time, vformat }:
+ mkDerivation {
+ pname = "vformat-time";
+ version = "0.1.0.0";
+ sha256 = "0s3b9ryyzmvy1fpxdnxdgrpi5faz67r8immm30pv6njy741k1l36";
+ libraryHaskellDepends = [ base time vformat ];
+ testHaskellDepends = [ base time vformat ];
+ description = "Extend vformat to time datatypes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"vfr-waypoints" = callPackage
({ mkDerivation, base, containers, dimensional, fuzzy
, geodetic-types, lens, monoid-subclasses, optparse-applicative
@@ -254950,10 +257741,10 @@ self: {
}:
mkDerivation {
pname = "wai-app-static";
- version = "3.1.6.3";
- sha256 = "0s6bpz5gmjy797bnnw1y5mwy9761h46bjp1srnrh7cxlnvm93c4c";
- revision = "3";
- editedCabalFile = "01qzkb1niv0jzbsh802gw1a9w85h0nhp1vd6hln958hsxf25n0d9";
+ version = "3.1.7.1";
+ sha256 = "10k6jb450p89r6dgpnwh428gg0wfw2qbx9n126jkvbchcjr1f4v8";
+ revision = "1";
+ editedCabalFile = "0bkmml30rzifvb7nxddj3pxczk0kniahra19mjn0qrkzy1n5752p";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -255136,10 +257927,8 @@ self: {
}:
mkDerivation {
pname = "wai-extra";
- version = "3.0.28";
- sha256 = "0iky7k4kirngvk1p2nz19zgzffb5hppfaxdjan80v06ikc8w1wm7";
- revision = "1";
- editedCabalFile = "0kb3fpiyq6kp7vm16cf8j4225q74ssfq9ilfdms7prn1c6brb19g";
+ version = "3.0.29";
+ sha256 = "1p0ngzz2p072v71dfylp90994qzz34lmbc7jqain2bm22616bs1f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -255251,10 +258040,8 @@ self: {
}:
mkDerivation {
pname = "wai-handler-launch";
- version = "3.0.2.4";
- sha256 = "0019vz9ha2mvliz3drjbj62v26mwhl9bl1vqr06ki40865hrr78f";
- revision = "1";
- editedCabalFile = "1mjxbzw3a5wybcp8s4x05rx91p2qaabpfci6w2k6p6nw4rjvfijv";
+ version = "3.0.3.1";
+ sha256 = "1ifqgyc1ccig5angh5l1iq7vyms4lvi8wzvysg5dw82nml49n02m";
libraryHaskellDepends = [
async base bytestring http-types process streaming-commons
transformers wai warp
@@ -256833,6 +259620,40 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "warp_3_3_8" = callPackage
+ ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked
+ , bytestring, case-insensitive, containers, directory, gauge
+ , ghc-prim, hashable, hspec, http-client, http-date, http-types
+ , http2, HUnit, iproute, lifted-base, network, process, QuickCheck
+ , simple-sendfile, stm, streaming-commons, text, time, time-manager
+ , unix, unix-compat, vault, wai, word8, x509
+ }:
+ mkDerivation {
+ pname = "warp";
+ version = "3.3.8";
+ sha256 = "13amshbyz185inkx1xd0ywa1096dlwp3s24hkrls166wiiq6gzc4";
+ libraryHaskellDepends = [
+ array async auto-update base bsb-http-chunked bytestring
+ case-insensitive containers ghc-prim hashable http-date http-types
+ http2 iproute network simple-sendfile stm streaming-commons text
+ time-manager unix unix-compat vault wai word8 x509
+ ];
+ testHaskellDepends = [
+ array async auto-update base bsb-http-chunked bytestring
+ case-insensitive containers directory ghc-prim hashable hspec
+ http-client http-date http-types http2 HUnit iproute lifted-base
+ network process QuickCheck simple-sendfile stm streaming-commons
+ text time time-manager unix unix-compat vault wai word8 x509
+ ];
+ benchmarkHaskellDepends = [
+ auto-update base bytestring containers gauge hashable http-date
+ http-types network time-manager unix unix-compat x509
+ ];
+ description = "A fast, light-weight web server for WAI applications";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"warp-dynamic" = callPackage
({ mkDerivation, base, data-default, dyre, http-types, wai, warp }:
mkDerivation {
@@ -256857,8 +259678,8 @@ self: {
}:
mkDerivation {
pname = "warp-grpc";
- version = "0.2.0.0";
- sha256 = "180h609sc1ck3xxs4r2hk6bij0g22lxlllpmhqkkf1drvbgygssi";
+ version = "0.3.0.0";
+ sha256 = "15zpb9liai56i9765sf05kww7zykd68kd38vc0s0rhx9jgqk2clj";
libraryHaskellDepends = [
async base binary bytestring case-insensitive http-types http2
http2-grpc-types wai warp warp-tls
@@ -256900,6 +259721,8 @@ self: {
libraryHaskellDepends = [ base network systemd unix wai warp ];
description = "Socket activation and other systemd integration for the Warp web server (WAI)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"warp-tls" = callPackage
@@ -256918,6 +259741,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "warp-tls_3_2_11" = callPackage
+ ({ mkDerivation, base, bytestring, cryptonite, data-default-class
+ , network, streaming-commons, tls, tls-session-manager, wai, warp
+ }:
+ mkDerivation {
+ pname = "warp-tls";
+ version = "3.2.11";
+ sha256 = "05y0i0b84kssvgr2hb3rdlqk55wl2lfcbp9sbia8lqnbc6cp0606";
+ libraryHaskellDepends = [
+ base bytestring cryptonite data-default-class network
+ streaming-commons tls tls-session-manager wai warp
+ ];
+ description = "HTTP over TLS support for Warp via the TLS package";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"warp-tls-uid" = callPackage
({ mkDerivation, base, bytestring, data-default, network
, streaming-commons, tls, unix, wai, warp, warp-tls, x509
@@ -257691,8 +260531,6 @@ self: {
];
description = "A super-simple web server framework";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"webcloud" = callPackage
@@ -258194,32 +261032,32 @@ self: {
"websockets" = callPackage
({ mkDerivation, async, attoparsec, base, base64-bytestring, binary
- , bytestring, bytestring-builder, case-insensitive, containers
- , criterion, entropy, HUnit, network, QuickCheck, random, SHA
- , streaming-commons, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text
+ , bytestring, bytestring-builder, case-insensitive, clock
+ , containers, criterion, entropy, HUnit, network, QuickCheck
+ , random, SHA, streaming-commons, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text
}:
mkDerivation {
pname = "websockets";
- version = "0.12.6.1";
- sha256 = "1vp3790w3hmr6v96314vdx74f7sg2c7hvnc93gafq0xhbxnr7nvx";
+ version = "0.12.7.0";
+ sha256 = "11jz0d7hgbl449dvz789gyf85gdwm6h0klq05vilmplpdx61h4az";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
async attoparsec base base64-bytestring binary bytestring
- bytestring-builder case-insensitive containers entropy network
- random SHA streaming-commons text
+ bytestring-builder case-insensitive clock containers entropy
+ network random SHA streaming-commons text
];
testHaskellDepends = [
async attoparsec base base64-bytestring binary bytestring
- bytestring-builder case-insensitive containers entropy HUnit
+ bytestring-builder case-insensitive clock containers entropy HUnit
network QuickCheck random SHA streaming-commons test-framework
test-framework-hunit test-framework-quickcheck2 text
];
benchmarkHaskellDepends = [
async attoparsec base base64-bytestring binary bytestring
- bytestring-builder case-insensitive containers criterion entropy
- network random SHA text
+ bytestring-builder case-insensitive clock containers criterion
+ entropy network random SHA text
];
doCheck = false;
description = "A sensible and clean way to write WebSocket-capable servers in Haskell";
@@ -258736,6 +261574,25 @@ self: {
broken = true;
}) {};
+ "wide-word_0_1_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, ghc-prim, hedgehog
+ , primitive, QuickCheck, quickcheck-classes, semirings
+ }:
+ mkDerivation {
+ pname = "wide-word";
+ version = "0.1.1.0";
+ sha256 = "101a2irkgsz9264zj9vdwbkycf25phsf1kbhh6nrx8mh9207aaiw";
+ libraryHaskellDepends = [ base deepseq primitive ];
+ testHaskellDepends = [
+ base bytestring ghc-prim hedgehog primitive QuickCheck
+ quickcheck-classes semirings
+ ];
+ description = "Data types for large but fixed width signed and unsigned integers";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"wigner-symbols" = callPackage
({ mkDerivation, base, bytestring, criterion, cryptonite, primitive
, random, vector
@@ -258810,8 +261667,8 @@ self: {
}:
mkDerivation {
pname = "wild-bind";
- version = "0.1.2.4";
- sha256 = "14cl18vfna21mq3ln9y3s6x7yvp13hynqfmjjv192z928wabyxqz";
+ version = "0.1.2.5";
+ sha256 = "14k1y5klxjvkdh0r041sd6a3jzmylb718azfmz45403lrnh96nq9";
libraryHaskellDepends = [
base containers semigroups text transformers
];
@@ -258864,8 +261721,8 @@ self: {
}:
mkDerivation {
pname = "wild-bind-x11";
- version = "0.2.0.8";
- sha256 = "1qrh7rkmwfmwlkfn0nqvml2ljx7ai8c6rl1fkdi7vjchxvmb0139";
+ version = "0.2.0.9";
+ sha256 = "1x3qqnampyxi6bg6279xsw38324fs5gndy1mylp6dndlcf6pw30z";
libraryHaskellDepends = [
base containers fold-debounce mtl semigroups stm text transformers
wild-bind X11
@@ -261796,8 +264653,8 @@ self: {
}:
mkDerivation {
pname = "xml-conduit-stylist";
- version = "1.0.0.0";
- sha256 = "1w9ig4mr0l0kj8mk7sfsyv8p77k91l93cfpbpvmg32q9wffz2r02";
+ version = "1.0.1.0";
+ sha256 = "1csa940r6a63i01khcm89lvhp7m6dyxpnljn6l6m105z7jfvvy8r";
libraryHaskellDepends = [
base containers css-syntax network-uri stylist text
unordered-containers xml-conduit
@@ -262999,6 +265856,53 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "xrefcheck" = callPackage
+ ({ mkDerivation, aeson, aeson-options, async, autoexporter
+ , base-noprelude, bytestring, cmark-gfm, containers, data-default
+ , deepseq, directory, directory-tree, filepath, fmt, Glob, hspec
+ , hspec-discover, http-client, http-types, lens, loot-prelude, mtl
+ , o-clock, optparse-applicative, pretty-terminal, QuickCheck, req
+ , roman-numerals, template-haskell, text, text-metrics
+ , th-lift-instances, th-utilities, yaml
+ }:
+ mkDerivation {
+ pname = "xrefcheck";
+ version = "0.1.0.0";
+ sha256 = "1ap5pdgbvf9zjwbwi3i46jdizm1ggzpknpmmic22kbw8rdv2i9yr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-options async base-noprelude bytestring cmark-gfm
+ containers data-default deepseq directory directory-tree filepath
+ fmt Glob http-client http-types lens loot-prelude mtl o-clock
+ optparse-applicative pretty-terminal req roman-numerals
+ template-haskell text text-metrics th-lift-instances th-utilities
+ yaml
+ ];
+ libraryToolDepends = [ autoexporter ];
+ executableHaskellDepends = [
+ aeson aeson-options async base-noprelude bytestring cmark-gfm
+ containers data-default deepseq directory directory-tree filepath
+ fmt Glob http-client http-types lens loot-prelude mtl o-clock
+ optparse-applicative pretty-terminal req roman-numerals
+ template-haskell text text-metrics th-lift-instances th-utilities
+ yaml
+ ];
+ executableToolDepends = [ autoexporter ];
+ testHaskellDepends = [
+ aeson aeson-options async base-noprelude bytestring cmark-gfm
+ containers data-default deepseq directory directory-tree filepath
+ fmt Glob hspec http-client http-types lens loot-prelude mtl o-clock
+ optparse-applicative pretty-terminal QuickCheck req roman-numerals
+ template-haskell text text-metrics th-lift-instances th-utilities
+ yaml
+ ];
+ testToolDepends = [ autoexporter hspec-discover ];
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {loot-prelude = null;};
+
"xsact" = callPackage
({ mkDerivation, array, base, containers, directory, process
, random, unix
@@ -263794,16 +266698,17 @@ self: {
"yaml2owl" = callPackage
({ mkDerivation, base, containers, directory, filepath, network
- , swish, text, xml, yaml
+ , network-uri, swish, text, xml, yaml
}:
mkDerivation {
pname = "yaml2owl";
- version = "0.0.1";
- sha256 = "1yz7cq6xbxjh3j5hljrzla7dpgsa2ag4ywbvc6ynf7bpikdymq65";
+ version = "0.0.2";
+ sha256 = "1d3vnpmqzsia1cwg17vl98n8bx6l3yjl4w4rhxm64xfgizwvjgwc";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base containers directory filepath network swish text xml yaml
+ base containers directory filepath network network-uri swish text
+ xml yaml
];
description = "Generate OWL schema from YAML syntax, and an RDFa template";
license = "LGPL";
@@ -264684,8 +267589,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth-hashdb";
- version = "1.7.1.1";
- sha256 = "0a1mz7nfrrgw0dalfbj72kd76nbgr9in63zrpijl4nd1p1j99br5";
+ version = "1.7.1.2";
+ sha256 = "10f6lgjjcwlg0vsi43xhgmi9d9r4ncfwsrwb6lfz1if9cq7gbmhv";
libraryHaskellDepends = [
aeson base bytestring persistent text yesod-auth yesod-core
yesod-form yesod-persistent
@@ -265805,8 +268710,8 @@ self: {
}:
mkDerivation {
pname = "yesod-persistent";
- version = "1.6.0.3";
- sha256 = "1pl8an3zpmsj3f5rrscb13sn8479vqxn2fpzvzn77lz8hbdi6n6l";
+ version = "1.6.0.4";
+ sha256 = "1gsiw2zx6z7za7a164h0fxfggkrdqz6fn0qyb2zn9qr7r2jbg1c0";
libraryHaskellDepends = [
base blaze-builder conduit persistent persistent-template
resource-pool resourcet transformers yesod-core
@@ -267487,8 +270392,8 @@ self: {
({ mkDerivation, array, base, bytestring, hspec, lattices, mtl }:
mkDerivation {
pname = "yx";
- version = "0.0.4.1";
- sha256 = "0mkizcy996q7vm1d2izcxym8aw3dnzyz5nsrmbcchf0ywijw7xzi";
+ version = "0.0.4.3";
+ sha256 = "0km7w2rbl5l712074h79lhvn8g4bqx1qp9algm9svdz36386c8ki";
libraryHaskellDepends = [ array base bytestring lattices mtl ];
testHaskellDepends = [ array base bytestring hspec mtl ];
description = "Row-major coordinates";
@@ -267543,8 +270448,8 @@ self: {
}:
mkDerivation {
pname = "z3";
- version = "408.0";
- sha256 = "13qkzy9wc17rm60i24fa9sx15ywbxq4a80g33w20887gvqyc0q53";
+ version = "408.1";
+ sha256 = "1r54d289rdfvxqk0774hhh0x2kj8zsh7graahqwwp76r911jb8bp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers transformers ];
diff --git a/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix b/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
index e2d01c5798f..9ba25e09db9 100644
--- a/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
@@ -38,12 +38,12 @@ let
inherit (stdenv) buildPlatform hostPlatform;
inherit (stdenv.lib) fix' extends makeOverridable;
- inherit (haskellLib) overrideCabal getBuildInputs;
+ inherit (haskellLib) overrideCabal;
mkDerivationImpl = pkgs.callPackage ./generic-builder.nix {
inherit stdenv;
nodejs = buildPackages.nodejs-slim;
- inherit (self) buildHaskellPackages ghc shellFor;
+ inherit (self) buildHaskellPackages ghc ghcWithHoogle ghcWithPackages;
inherit (self.buildHaskellPackages) jailbreak-cabal;
hscolour = overrideCabal self.buildHaskellPackages.hscolour (drv: {
isLibrary = false;
@@ -258,6 +258,8 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# packages themselves. Using nix-shell on this derivation will
# give you an environment suitable for developing the listed
# packages with an incremental tool like cabal-install.
+ # In addition to the "packages" arg and "withHoogle" arg, anything that
+ # can be passed into stdenv.mkDerivation can be included in the input attrset
#
# # default.nix
# with import <nixpkgs> {};
@@ -268,9 +270,11 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# })
#
# # shell.nix
+ # let pkgs = import <nixpkgs> {} in
# (import ./.).shellFor {
# packages = p: [p.frontend p.backend p.common];
# withHoogle = true;
+ # buildInputs = [ pkgs.python ];
# }
#
# -- cabal.project
@@ -280,49 +284,41 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# common/
#
# bash$ nix-shell --run "cabal new-build all"
+ # bash$ nix-shell --run "python"
shellFor = { packages, withHoogle ? false, ... } @ args:
let
- selected = packages self;
-
- packageInputs = map getBuildInputs selected;
-
- name = if pkgs.lib.length selected == 1
- then "ghc-shell-for-${(pkgs.lib.head selected).name}"
- else "ghc-shell-for-packages";
-
- # If `packages = [ a b ]` and `a` depends on `b`, don't build `b`,
- # because cabal will end up ignoring that built version, assuming
- # new-style commands.
- haskellInputs = pkgs.lib.filter
- (input: pkgs.lib.all (p: input.outPath != p.outPath) selected)
- (pkgs.lib.concatMap (p: p.haskellBuildInputs) packageInputs);
- systemInputs = pkgs.lib.concatMap (p: p.systemBuildInputs) packageInputs;
-
- withPackages = if withHoogle then self.ghcWithHoogle else self.ghcWithPackages;
- ghcEnv = withPackages (p: haskellInputs);
- nativeBuildInputs = pkgs.lib.concatMap (p: p.nativeBuildInputs) selected;
-
- ghcCommand' = if ghc.isGhcjs or false then "ghcjs" else "ghc";
- ghcCommand = "${ghc.targetPrefix}${ghcCommand'}";
- ghcCommandCaps= pkgs.lib.toUpper ghcCommand';
-
- mkDrvArgs = builtins.removeAttrs args ["packages" "withHoogle"];
- in pkgs.stdenv.mkDerivation (mkDrvArgs // {
- name = mkDrvArgs.name or name;
-
- buildInputs = systemInputs ++ mkDrvArgs.buildInputs or [];
- nativeBuildInputs = [ ghcEnv ] ++ nativeBuildInputs ++ mkDrvArgs.nativeBuildInputs or [];
- phases = ["installPhase"];
- installPhase = "echo $nativeBuildInputs $buildInputs > $out";
- LANG = "en_US.UTF-8";
- LOCALE_ARCHIVE = pkgs.lib.optionalString (stdenv.hostPlatform.libc == "glibc") "${buildPackages.glibcLocales}/lib/locale/locale-archive";
- "NIX_${ghcCommandCaps}" = "${ghcEnv}/bin/${ghcCommand}";
- "NIX_${ghcCommandCaps}PKG" = "${ghcEnv}/bin/${ghcCommand}-pkg";
- # TODO: is this still valid?
- "NIX_${ghcCommandCaps}_DOCDIR" = "${ghcEnv}/share/doc/ghc/html";
- "NIX_${ghcCommandCaps}_LIBDIR" = if ghc.isHaLVM or false
- then "${ghcEnv}/lib/HaLVM-${ghc.version}"
- else "${ghcEnv}/lib/${ghcCommand}-${ghc.version}";
+ combinedPackageFor = packages:
+ let
+ selected = packages self;
+
+ pname = if pkgs.lib.length selected == 1
+ then (pkgs.lib.head selected).name
+ else "packages";
+
+ # If `packages = [ a b ]` and `a` depends on `b`, don't build `b`,
+ # because cabal will end up ignoring that built version, assuming
+ # new-style commands.
+ combinedPackages = pkgs.lib.filter
+ (input: pkgs.lib.all (p: input.outPath or null != p.outPath) selected);
+
+ # Returns an attrset containing a combined list packages' inputs for each
+ # stage of the build process
+ packageInputs = pkgs.lib.zipAttrsWith
+ (_: pkgs.lib.concatMap combinedPackages)
+ (map (p: p.getCabalDeps) selected);
+
+ genericBuilderArgs = {
+ inherit pname;
+ version = "0";
+ license = null;
+ } // packageInputs;
+
+ in self.mkDerivation genericBuilderArgs;
+
+ envFuncArgs = builtins.removeAttrs args [ "packages" ];
+ in (combinedPackageFor packages).env.overrideAttrs (old: envFuncArgs // {
+ nativeBuildInputs = old.nativeBuildInputs ++ envFuncArgs.nativeBuildInputs or [];
+ buildInputs = old.buildInputs ++ envFuncArgs.buildInputs or [];
});
ghc = ghc // {
diff --git a/nixpkgs/pkgs/development/haskell-modules/with-packages-wrapper.nix b/nixpkgs/pkgs/development/haskell-modules/with-packages-wrapper.nix
index 404fd0d9440..49beed8549d 100644
--- a/nixpkgs/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, ghc, llvmPackages, packages, buildEnv, makeWrapper
+{ lib, stdenv, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
, withLLVM ? false
, postBuild ? ""
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
@@ -51,25 +51,15 @@ let
++ lib.optional stdenv.targetPlatform.isDarwin llvmPackages.clang);
in
if paths == [] && !withLLVM then ghc else
-buildEnv {
+symlinkJoin {
# this makes computing paths from the name attribute impossible;
# if such a feature is needed, the real compiler name should be saved
# as a dedicated drv attribute, like `compiler-name`
name = ghc.name + "-with-packages";
paths = paths ++ [ghc];
- extraOutputsToInstall = ["doc"];
postBuild = ''
. ${makeWrapper}/nix-support/setup-hook
- # We make changes to ghc binaries in $out/bin. buildEnv gives a
- # symlink if only one of the paths has the subdirectory. If so,
- # we need to remove it for our new wrappers.
-
- if [ -L "$out/bin" ]; then
- rm -f "$out/bin"
- mkdir -p "$out/bin"
- fi
-
# wrap compiler executables with correct env variables
for prg in ${ghcCommand} ${ghcCommand}i ${ghcCommand}-${ghc.version} ${ghcCommand}i-${ghc.version}; do