aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/haskell-modules
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/haskell-modules')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix394
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix40
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix2
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix4
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix12
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix27
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix63
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml2143
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix45
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix3
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix15459
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/lib.nix34
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix209
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/haskell-modules/non-hackage-packages.nix6
14 files changed, 7763 insertions, 10678 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
index 43753f147def..aa8212f167b1 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
@@ -38,11 +38,6 @@ self: super: {
ghcjs-base = null;
ghcjs-prim = null;
- # Some packages add this (non-existent) dependency to express that they
- # cannot compile in a given configuration. Win32 does this, for example, when
- # compiled on Linux. We provide the name to avoid evaluation errors.
- unbuildable = throw "package depends on meta package 'unbuildable'";
-
# enable using a local hoogle with extra packagages in the database
# nix-shell -p "haskellPackages.hoogleLocal { packages = with haskellPackages; [ mtl lens ]; }"
# $ hoogle server
@@ -69,7 +64,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 = "05yvl09ksyvzykibs95996rni9x6w03yfqyv2fadd73z1m6lq5bf";
+ sha256 = "1l2syrslba4mrxjzj0iblflz72siw3ibqri6p5hf59fk7rmm30a8";
};
}).override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
@@ -226,8 +221,6 @@ self: super: {
# ghc 8.10.
hnix = dontCheck (super.hnix.override {
# 2020-09-18: Those packages are all needed by hnix at versions newer than on stackage
- neat-interpolation = self.neat-interpolation_0_5_1_2; # at least 0.5.1
- data-fix = self.data-fix_0_3_0; # at least 0.3
prettyprinter = self.prettyprinter_1_7_0; # at least 1.7
});
@@ -249,7 +242,13 @@ self: super: {
angel = dontCheck super.angel;
apache-md5 = dontCheck super.apache-md5; # http://hydra.cryp.to/build/498709/nixlog/1/raw
app-settings = dontCheck super.app-settings; # http://hydra.cryp.to/build/497327/log/raw
- aws = dontCheck super.aws; # needs aws credentials
+ aws = appendPatch (dontCheck super.aws) # needs aws credentials
+ (pkgs.fetchpatch {
+ # https://github.com/aristidb/aws/pull/271
+ # bump a version bound
+ url = https://github.com/aristidb/aws/commit/3639262ccd6761dea76f052692ac3aefbd254723.patch;
+ sha256 = "0nxaspldgayqjnidda8w7wps5gdpr2wz6vynl7vkaw8kzxks9bci";
+ });
aws-kinesis = dontCheck super.aws-kinesis; # needs aws credentials for testing
binary-protocol = dontCheck super.binary-protocol; # http://hydra.cryp.to/build/499749/log/raw
binary-search = dontCheck super.binary-search;
@@ -291,6 +290,9 @@ self: super: {
github-rest = dontCheck super.github-rest; # test suite needs the network
gitlib-cmdline = dontCheck super.gitlib-cmdline;
GLFW-b = dontCheck super.GLFW-b; # https://github.com/bsl/GLFW-b/issues/50
+ #next release supports random 1.1; jailbroken because i didn't know about vty when glguy was updating the bounds
+ #should be fixed soon. maybe even before this is merged. currently glirc is 2.37
+ glirc = doJailbreak (super.glirc.override { random = self.random_1_2_0; });
hackport = dontCheck super.hackport;
hadoop-formats = dontCheck super.hadoop-formats;
haeredes = dontCheck super.haeredes;
@@ -320,6 +322,7 @@ self: super: {
http-link-header = dontCheck super.http-link-header; # non deterministic failure https://hydra.nixos.org/build/75041105
ihaskell = dontCheck super.ihaskell;
influxdb = dontCheck super.influxdb;
+ integer-roots = dontCheck super.integer-roots; # requires an old version of smallcheck, will be fixed in > 1.0
itanium-abi = dontCheck super.itanium-abi;
katt = dontCheck super.katt;
language-nix = if (pkgs.stdenv.hostPlatform.isAarch64 || pkgs.stdenv.hostPlatform.isi686) then dontCheck super.language-nix else super.language-nix; # aarch64: https://ghc.haskell.org/trac/ghc/ticket/15275
@@ -331,13 +334,8 @@ self: super: {
then dontCheck super.math-functions # "erf table" test fails on Darwin https://github.com/bos/math-functions/issues/63
else super.math-functions;
matplotlib = dontCheck super.matplotlib;
-
- # Needs the latest version of vty and brick.
- matterhorn = super.matterhorn.overrideScope (self: super: {
- brick = self.brick_0_57;
- vty = self.vty_5_31;
- });
-
+ # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage
+ matterhorn = doJailbreak super.matterhorn; # this is needed until the end of time :')
memcache = dontCheck super.memcache;
metrics = dontCheck super.metrics;
milena = dontCheck super.milena;
@@ -348,7 +346,6 @@ self: super: {
nats-queue = dontCheck super.nats-queue;
netpbm = dontCheck super.netpbm;
network = dontCheck super.network;
- network_2_6_3_1 = dontCheck super.network_2_6_3_1;
network-dbus = dontCheck super.network-dbus;
notcpp = dontCheck super.notcpp;
ntp-control = dontCheck super.ntp-control;
@@ -369,6 +366,9 @@ self: super: {
punycode = dontCheck super.punycode;
pwstore-cli = dontCheck super.pwstore-cli;
quantities = dontCheck super.quantities;
+ QuickCheck_2_14_2 = super.QuickCheck_2_14_2.override( {
+ splitmix = self.splitmix_0_1_0_3;
+ });
redis-io = dontCheck super.redis-io;
rethinkdb = dontCheck super.rethinkdb;
Rlang-QQ = dontCheck super.Rlang-QQ;
@@ -402,6 +402,7 @@ self: super: {
xsd = dontCheck super.xsd;
zip-archive = dontCheck super.zip-archive; # https://github.com/jgm/zip-archive/issues/57
+ random_1_2_0 = super.random_1_2_0.override ({ splitmix = self.splitmix_0_1_0_3; });
# These test suites run for ages, even on a fast machine. This is nuts.
Random123 = dontCheck super.Random123;
systemd = dontCheck super.systemd;
@@ -437,9 +438,6 @@ self: super: {
rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5
rematch-text = dontCheck super.rematch-text; # https://github.com/tcrayford/rematch/issues/6
- # Should not appear in nixpkgs yet (broken anyway)
- yarn2nix = throw "yarn2nix is not yet packaged for nixpkgs. See https://github.com/Profpatsch/yarn2nix#yarn2nix";
-
# no haddock since this is an umbrella package.
cloud-haskell = dontHaddock super.cloud-haskell;
@@ -692,7 +690,7 @@ self: super: {
postPatch = ''
substituteInPlace conf.py --replace "'.md': CommonMarkParser," ""
'';
- nativeBuildInputs = with pkgs.buildPackages.pythonPackages; [ sphinx recommonmark sphinx_rtd_theme ];
+ nativeBuildInputs = with pkgs.buildPackages.python3Packages; [ sphinx recommonmark sphinx_rtd_theme ];
makeFlags = [ "html" ];
installPhase = ''
mv _build/html $out
@@ -920,8 +918,9 @@ self: super: {
# This package refers to the wrong library (itself in fact!)
vulkan = super.vulkan.override { vulkan = pkgs.vulkan-loader; };
- # Compiles some C++ source which requires these headers
+ # Compiles some C or C++ source which requires these headers
VulkanMemoryAllocator = addExtraLibrary super.VulkanMemoryAllocator pkgs.vulkan-headers;
+ vulkan-utils = addExtraLibrary super.vulkan-utils pkgs.vulkan-headers;
# https://github.com/dmwit/encoding/pull/3
encoding = doJailbreak (appendPatch super.encoding ./patches/encoding-Cabal-2.0.patch);
@@ -932,18 +931,14 @@ self: super: {
# Test suite depends on cabal-install
doctest = dontCheck super.doctest;
- # https://github.com/haskell-servant/servant-auth/issues/113
- servant-auth-client = dontCheck super.servant-auth-client;
+ # dontCheck: https://github.com/haskell-servant/servant-auth/issues/113
+ # doJailbreak: waiting on revision 1 to hit hackage
+ servant-auth-client = doJailbreak (dontCheck super.servant-auth-client);
# Generate cli completions for dhall.
dhall = generateOptparseApplicativeCompletion "dhall" super.dhall;
dhall-json = generateOptparseApplicativeCompletions ["dhall-to-json" "dhall-to-yaml"] super.dhall-json;
- dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" (
- super.dhall-nix.overrideScope (self: super: {
- dhall = super.dhall_1_35_0;
- repline = self.repline_0_4_0_0;
- haskeline = self.haskeline_0_8_1_0;
- }));
+ dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" super.dhall-nix;
# https://github.com/haskell-hvr/netrc/pull/2#issuecomment-469526558
netrc = doJailbreak super.netrc;
@@ -1107,9 +1102,9 @@ self: super: {
})
(pkgs.fetchpatch {
# Relax dependency constraints,
- # upstream PR: https://github.com/james-preston/hail/pull/15
- url = "https://patch-diff.githubusercontent.com/raw/james-preston/hail/pull/15.patch";
- sha256 = "03kdvr8hxi6isb8yxp5rgcmz855n19m1yacn3d56a4i58j2mldjw";
+ # upstream PR: https://github.com/james-preston/hail/pull/16
+ url = "https://patch-diff.githubusercontent.com/raw/james-preston/hail/pull/16.patch";
+ sha256 = "0dpagpn654zjrlklihsg911lmxjj8msylbm3c68xa5aad1s9gcf7";
})
];
});
@@ -1117,21 +1112,6 @@ self: super: {
# https://github.com/kazu-yamamoto/dns/issues/150
dns = dontCheck super.dns;
- # apply patches from https://github.com/snapframework/snap-server/pull/126
- # manually until they are accepted upstream
- snap-server = overrideCabal super.snap-server (drv: {
- patches = [(pkgs.fetchpatch {
- # allow compilation with network >= 3
- url = "https://github.com/snapframework/snap-server/pull/126/commits/4338fe15d68e11e3c7fd0f9862f818864adc1d45.patch";
- sha256 = "1nlw9lckm3flzkmhkzwc7zxhdh9ns33w8p8ds8nf574nqr5cr8bv";
- })
- (pkgs.fetchpatch {
- # prefer fdSocket over unsafeFdSocket
- url = "https://github.com/snapframework/snap-server/pull/126/commits/410de2df123b1d56b3093720e9c6a1ad79fe9de6.patch";
- sha256 = "08psvw0xny64q4bw1nwg01pkzh01ak542lw6k1ps7cdcwaxk0n94";
- })];
- });
-
# https://github.com/haskell-servant/servant-blaze/issues/17
servant-blaze = doJailbreak super.servant-blaze;
@@ -1170,9 +1150,6 @@ self: super: {
# 2020-06-22: NOTE: > 0.4.0 => rm Jailbreak: https://github.com/serokell/nixfmt/issues/71
nixfmt = doJailbreak super.nixfmt;
- # 2020-06-22: NOTE: QuickCheck upstreamed https://github.com/phadej/binary-instances/issues/7
- binary-instances = dontCheck super.binary-instances;
-
# The test suite depends on an impure cabal-install installation in
# $HOME, which we don't have in our build sandbox.
cabal-install-parsers = dontCheck super.cabal-install-parsers;
@@ -1224,13 +1201,6 @@ self: super: {
sha256 = "0xbfhzhzg94b4r5qy5dg1c40liswwpqarrc2chcwgfbfnrmwkfc2";
});
- # this will probably need to get updated with every ghcide update,
- # we need an override because ghcide is tracking haskell-lsp closely.
- ghcide = dontCheck (super.ghcide.overrideScope (self: super: {
- hie-bios = dontCheck super.hie-bios_0_7_1;
- lsp-test = dontCheck self.lsp-test_0_11_0_7;
- }));
-
# hasn‘t bumped upper bounds
# upstream: https://github.com/obsidiansystems/which/pull/6
which = doJailbreak super.which;
@@ -1251,62 +1221,26 @@ self: super: {
x509-validation = dontCheck super.x509-validation;
tls = dontCheck super.tls;
- patch = appendPatches super.patch [
- # Upstream PR: https://github.com/reflex-frp/patch/pull/20
- # Makes tests work with hlint 3
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/patch/commit/3ed23a4e4049ee17e64a1a5bbebf1990cdbe033a.patch";
- sha256 ="1hfa980wln8kzbqw1lr8ddszgcibw25xf12ki2jb9xkl464aynzf";
- })
- # Upstream PR: https://github.com/reflex-frp/patch/pull/17
- # Bumps version dependencies
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/patch/commit/a191ed9ded708ed7ff0cf53ad6dafaf54db5b95a.patch";
- sha256 ="1x9w5fimhk3a0l2aa5z91nqaa6s2irz1775iidd0191m6w25vszp";
- })
- ];
+ # Allow building with recent versions of hlint.
+ patch = doJailbreak super.patch;
- reflex = appendPatches super.reflex [
- # Upstream PR: https://github.com/reflex-frp/reflex/pull/434
- # Bump version bounds
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/reflex/commit/e6104bdfd7f664f524b6765275490722e376df4d.patch";
- sha256 ="1awp5p4640cnhfd50dplsvp0kzy6h8r0hpbw1s40blni74r3dhzr";
- })
- # Upstream PR: https://github.com/reflex-frp/reflex/pull/436
- # Fix build with newest dependent-map version
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/reflex/commit/dc3bf44d822d70594e3c474fe3869261776c3554.patch";
- sha256 ="0rbjfj9b8p6zkvd5j4pak5kpgard6cyfvzk750s4xwpc1v84iiqd";
- })
- # Upstream PR: https://github.com/reflex-frp/reflex/pull/437
- # Fix tests with newer dep versions
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/reflex/commit/87c74a1b9d9098eae8a56148c59ed4963a5232c2.patch";
- sha256 ="0qhjjgd6n4fms1hpbblny78c95bfh74izhx9dvrdlnhz6q7xlm9q";
- })
- ];
+ # Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
+ reflex-dom-core = doDistribute (unmarkBroken (dontCheck (appendPatch super.reflex-dom-core (pkgs.fetchpatch {
+ url = https://github.com/reflex-frp/reflex-dom/commit/6aed7b7ebb70372778f1a29a724fcb4de815ba04.patch;
+ sha256 = "1g7lgwj7rpziilif2gian412iy05gqbzwx9w0m6ajq3clxs5zs7l";
+ stripLen = 2;
+ extraPrefix = "";
+ includes = ["reflex-dom-core.cabal" ];
+ }))));
# Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
- # Tests disabled because of very old dep: https://github.com/reflex-frp/reflex-dom/issues/393
- reflex-dom-core = doDistribute (unmarkBroken (dontCheck (appendPatches super.reflex-dom-core [
- # Upstream PR: https://github.com/reflex-frp/reflex-dom/pull/388
- # Fix upper bounds
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/reflex-dom/commit/5ef04d8e478f410d2c63603b84af052c9273a533.patch";
- sha256 ="0d0b819yh8mqw8ih5asdi9qcca2kmggfsi8gf22akfw1n7xvmavi";
- stripLen = 2;
- extraPrefix = "";
- })
- # Upstream PR: https://github.com/reflex-frp/reflex-dom/pull/394
- # Bump dependent-map
- (pkgs.fetchpatch {
- url = "https://github.com/reflex-frp/reflex-dom/commit/695bd17d5dcdb1bf321ee8858670731637f651db.patch";
- sha256 ="0llky3i37rakgsw9vqaqmwryv7s91w8ph8xjkh83nxjs14p5zfyk";
- stripLen = 2;
- extraPrefix = "";
- })
- ])));
+ reflex-dom = appendPatch super.reflex-dom (pkgs.fetchpatch {
+ url = https://github.com/reflex-frp/reflex-dom/commit/6aed7b7ebb70372778f1a29a724fcb4de815ba04.patch;
+ sha256 = "1ndqw5r85axynmx55ld6qr8ik1i1mkh6wrnkzpxbwyil2ms8mxn0";
+ stripLen = 2;
+ extraPrefix = "";
+ includes = ["reflex-dom.cabal" ];
+ });
# add unreleased commit fixing version constraint as a patch
# Can be removed if https://github.com/lpeterse/haskell-utc/issues/8 is resolved
@@ -1323,10 +1257,6 @@ self: super: {
trial = doJailbreak super.trial;
# 2020-06-24: Tests are broken in hackage distribution.
- # See: https://github.com/kowainik/stan/issues/316
- stan = dontCheck super.stan;
-
- # 2020-06-24: Tests are broken in hackage distribution.
# See: https://github.com/robstewart57/rdf4h/issues/39
rdf4h = dontCheck super.rdf4h;
@@ -1349,19 +1279,7 @@ self: super: {
# https://github.com/kowainik/policeman/issues/57
policeman = doJailbreak super.policeman;
- # 2020-08-14: gi-pango from stackage is to old for the C libs it links against in nixpkgs.
- # That's why we need to bump a ton of dependency versions to unbreak them.
- gi-pango = assert super.gi-pango.version == "1.0.22"; self.gi-pango_1_0_23;
- haskell-gi-base = assert super.haskell-gi-base.version == "0.23.0"; addBuildDepends (self.haskell-gi-base_0_24_3) [ pkgs.gobject-introspection ];
- haskell-gi = assert super.haskell-gi.version == "0.23.1"; self.haskell-gi_0_24_5;
- gi-cairo = assert super.gi-cairo.version == "1.0.23"; self.gi-cairo_1_0_24;
- gi-glib = assert super.gi-glib.version == "2.0.23"; self.gi-glib_2_0_24;
- gi-gobject = assert super.gi-gobject.version == "2.0.22"; self.gi-gobject_2_0_24;
- gi-atk = assert super.gi-atk.version == "2.0.21"; self.gi-atk_2_0_22;
- gi-gio = assert super.gi-gio.version == "2.0.26"; self.gi-gio_2_0_27;
- gi-gdk = assert super.gi-gdk.version == "3.0.22"; self.gi-gdk_3_0_23;
- gi-gtk = assert super.gi-gtk.version == "3.0.33"; self.gi-gtk_3_0_35;
- gi-gdkpixbuf = assert super.gi-gdkpixbuf.version == "2.0.23"; self.gi-gdkpixbuf_2_0_24;
+ haskell-gi-base = addBuildDepends super.haskell-gi-base [ pkgs.gobject-introspection ];
# 2020-08-14: Needs some manual patching to be compatible with haskell-gi-base 0.24
# Created upstream PR @ https://github.com/ghcjs/jsaddle/pull/119
@@ -1382,13 +1300,6 @@ self: super: {
sha256 = "1c5ck2ibag2gcyag6rjivmlwdlp5k0dmr8nhk7wlkzq2vh7zgw63";
});
- # Version bumps have not been merged by upstream yet.
- # https://github.com/obsidiansystems/dependent-sum-aeson-orphans/pull/5
- dependent-sum-aeson-orphans = appendPatch super.dependent-sum-aeson-orphans (pkgs.fetchpatch {
- url = "https://github.com/obsidiansystems/dependent-sum-aeson-orphans/commit/5a369e433ad7e3eef54c7c3725d34270f6aa48cc.patch";
- sha256 = "1lzrcicvdg77hd8j2fg37z19amp5yna5xmw1fc06zi0j95csll4r";
- });
-
# Tests are broken because of missing files in hackage tarball.
# https://github.com/jgm/commonmark-hs/issues/55
commonmark-extensions = dontCheck super.commonmark-extensions;
@@ -1416,7 +1327,6 @@ self: super: {
immortal = self.immortal_0_2_2_1;
dependent-map = self.dependent-map_0_2_4_0;
dependent-sum = self.dependent-sum_0_4;
- witherable = self.witherable_0_3_2;
}) (drv: {
# version in cabal file is invalid
version = "1.3.1-beta1";
@@ -1424,17 +1334,6 @@ self: super: {
preBuild = "export VERSION=1.3.1-beta1";
}));
- graphql-parser = super.graphql-parser.override {
- protolude = self.protolude_0_3_0;
- };
-
- # Requires repline 0.4 which is the default only for ghc8101, override for the rest
- zre = super.zre.override {
- repline = self.repline_0_4_0_0.override {
- haskeline = self.haskeline_0_8_1_0;
- };
- };
-
# https://github.com/bos/statistics/issues/170
statistics = dontCheck super.statistics;
@@ -1459,49 +1358,166 @@ self: super: {
liquidhaskell = super.liquidhaskell.override { Diff = self.Diff_0_3_4; };
Diff_0_3_4 = dontCheck super.Diff_0_3_4;
- # We want the latest version of cryptonite. This is a first step towards
- # resolving https://github.com/NixOS/nixpkgs/issues/81915.
- cryptonite = doDistribute self.cryptonite_0_27;
-
- # We want the latest version of Pandoc.
- skylighting = doDistribute super.skylighting_0_10_0_2;
- skylighting-core = doDistribute super.skylighting-core_0_10_0_2;
- hslua = doDistribute self.hslua_1_1_2;
- jira-wiki-markup = doDistribute self.jira-wiki-markup_1_3_2;
- pandoc = doDistribute self.pandoc_2_11_0_2;
# jailbreaking pandoc-citeproc because it has not bumped upper bound on pandoc
- pandoc-citeproc = doJailbreak (doDistribute self.pandoc-citeproc_0_17_0_2);
- pandoc-types = doDistribute self.pandoc-types_1_22;
- rfc5051 = doDistribute self.rfc5051_0_2;
+ pandoc-citeproc = doJailbreak super.pandoc-citeproc;
# The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox.
domain-auth = dontCheck super.domain-auth;
- # INSERT NEW OVERRIDES ABOVE THIS LINE
-
- # stack-2.5.1 needs a more current version of pantry to compile
- pantry = self.pantry_0_5_1_3;
-
- # haskell-language-server needs a more current version of pantry to compile
-} // (let
- inherit (self) hls-ghcide hls-brittany;
- hlsScopeOverride = self: super: {
- # haskell-language-server uses its own fork of ghcide
- # Test disabled: it seems to freeze (is it just that it takes a long time ?)
- ghcide = dontCheck hls-ghcide;
- # we are faster than stack here
- hie-bios = dontCheck super.hie-bios_0_7_1;
- lsp-test = dontCheck super.lsp-test_0_11_0_7;
- # fourmolu can‘t compile with an older aeson
- aeson = dontCheck super.aeson_1_5_2_0;
- # brittany has an aeson upper bound of 1.5
- brittany = hls-brittany;
- data-tree-print = doJailbreak super.data-tree-print;
- ghc-exactprint = dontCheck super.ghc-exactprint_0_6_3_2;
- };
- in {
- haskell-language-server = dontCheck (super.haskell-language-server.overrideScope hlsScopeOverride);
- hls-ghcide = dontCheck (super.hls-ghcide.overrideScope hlsScopeOverride);
- hls-brittany = dontCheck (super.hls-brittany.overrideScope hlsScopeOverride);
- fourmolu = dontCheck (super.fourmolu.overrideScope hlsScopeOverride);
- }
-) // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+
+ # Too tight version bounds, see https://github.com/haskell-hvr/microaeson/pull/4
+ microaeson = doJailbreak super.microaeson;
+
+ # - Deps are required during the build for testing and also during execution,
+ # so add them to build input and also wrap the resulting binary so they're in
+ # PATH.
+ update-nix-fetchgit = let deps = [ pkgs.git pkgs.nix pkgs.nix-prefetch-git ];
+ in generateOptparseApplicativeCompletion "update-nix-fetchgit" (overrideCabal
+ (addTestToolDepends (super.update-nix-fetchgit.overrideScope (self: super: {
+ optparse-generic = self.optparse-generic_1_4_4;
+ optparse-applicative = self.optparse-applicative_0_16_1_0;
+ })) deps) (drv: {
+ buildTools = drv.buildTools or [ ] ++ [ pkgs.makeWrapper ];
+ postInstall = drv.postInstall or "" + ''
+ wrapProgram "$out/bin/update-nix-fetchgit" --prefix 'PATH' ':' "${
+ pkgs.lib.makeBinPath deps
+ }"
+ '';
+ }));
+
+ # Our quickcheck-instances is too old for the newer binary-instances, but
+ # quickcheck-instances is only used in the tests of binary-instances.
+ binary-instances = dontCheck super.binary-instances;
+
+ # tons of overrides for bleeding edge versions for ghcide and hls
+ # overriding aeson on all of them to prevent double compilations
+ # this shouldn‘t break anything because nearly all their reverse deps are
+ # in this list or marked as broken anyways
+ # 2020-11-19: Checks nearly fixed, but still disabled because of flaky tests:
+ # https://github.com/haskell/haskell-language-server/issues/610
+ # https://github.com/haskell/haskell-language-server/issues/611
+ haskell-language-server = dontCheck (super.haskell-language-server.override {
+ lsp-test = dontCheck self.lsp-test_0_11_0_7;
+ });
+
+ fourmolu = dontCheck super.fourmolu;
+ ghcide = dontCheck (appendPatch super.ghcide (pkgs.fetchpatch {
+ # 2020-11-13: Bumping bounds via an already upstream merged change
+ # https://github.com/haskell/ghcide/pull/905
+ url = https://github.com/haskell/ghcide/commit/9b8aaf9b06846571cc0b5d46680e686e4f9153a3.patch;
+ sha256 = "0j8980dmvwjcs72ahq2zc14hwkyd5ybgzyy1az3zq5flp383fai6";
+ includes = [ "ghcide.cabal" ];
+ }));
+ refinery = doDistribute super.refinery_0_3_0_0;
+ data-tree-print = doJailbreak super.data-tree-print;
+ # the hls brittany is objectively better, because there hasn‘t been a
+ # brittany release in a while and this version works with 8.10.
+ # And we need to build it anyways.
+ # 2020-11-15: jailbreaking because we have strict 0.4 which is to new
+ brittany = self.hls-brittany;
+ hls-brittany = dontCheck (doJailbreak super.hls-brittany);
+
+ # 2020-11-15: aeson 1.5.4.1 needs to new quickcheck-instances for testing
+ aeson = dontCheck super.aeson;
+
+ # 2020-11-15: nettle tests are pre MonadFail change
+ # https://github.com/stbuehler/haskell-nettle/issues/10
+ nettle = dontCheck super.nettle;
+
+ # 2020-11-17: Disable tests for hackage-security because of this issue:
+ # https://github.com/haskell/hackage-security/issues/247
+ hackage-security = dontCheck super.hackage-security;
+
+ # 2020-11-17: persistent-test is ahead of the persistent version in stack
+ persistent-sqlite = dontCheck super.persistent-sqlite;
+
+ # The tests for semver-range need to be updated for the MonadFail change in
+ # ghc-8.8:
+ # https://github.com/adnelson/semver-range/issues/15
+ semver-range = dontCheck super.semver-range;
+
+ dependent-sum-aeson-orphans = appendPatch super.dependent-sum-aeson-orphans (pkgs.fetchpatch {
+ # 2020-11-18: https://github.com/obsidiansystems/dependent-sum-aeson-orphans/pull/9
+ # Bump version bounds for ghc 8.10
+ url = https://github.com/obsidiansystems/dependent-sum-aeson-orphans/commit/e1f5898116222a1bc557d41f3395066f83736093.patch;
+ sha256 = "01fj29xdblxpz4drasaygf9875fipylpj8w164lb0cszd1vmqwnb";
+ });
+
+ # 2020-11-18: https://github.com/srid/rib/issues/169
+ # aeson bound out of sync
+ rib-core = doJailbreak super.rib-core;
+
+ # 2020-11-18: https://github.com/srid/neuron/issues/474
+ # base upper bound is incompatible with ghc 8.10
+ neuron = doJailbreak super.neuron;
+
+ reflex = appendPatches super.reflex [
+ # https://github.com/reflex-frp/reflex/pull/444
+ # Fixes for ghc 8.10
+ (pkgs.fetchpatch {
+ url = https://github.com/reflex-frp/reflex/commit/d230632427fc1b7031163567c97f20050610c122.patch;
+ sha256 = "0gafqqi6q16m5y4mrc2f7lhahmazvcbiadn2v84y9p3zvx2v26xy";
+ })
+ # https://github.com/reflex-frp/reflex/pull/444
+ # Bound bumps for ghc 8.10
+ (pkgs.fetchpatch {
+ url = https://patch-diff.githubusercontent.com/raw/reflex-frp/reflex/pull/448.patch;
+ sha256 = "0a8gcq9g8dyyafkvs54mi3fnisff20r0x0qzmhxcp9md61nkf7gq";
+ })
+ ];
+
+ # 2020-11-19: jailbreaking because of pretty-simple bound out of date
+ # https://github.com/kowainik/stan/issues/408
+ # Tests disabled because of: https://github.com/kowainik/stan/issues/409
+ stan = doJailbreak (dontCheck super.stan);
+
+ # Due to tests restricting base in 0.8.0.0 release
+ http-media = doJailbreak super.http-media;
+
+ # Use an already merged upstream patch fixing the build with primitive >= 0.7.2
+ # The version bounds were correctly specified before, so we need to jailbreak as well
+ streamly = appendPatch (doJailbreak super.streamly) (pkgs.fetchpatch {
+ url = "https://github.com/composewell/streamly/commit/2c88cb631fdcb5c0d3a8bc936e1e63835800be9b.patch";
+ sha256 = "0g2m0y46zr3xs9fswkm4h9adhsg6gzl5zwgidshsjh3k3rq4h7b1";
+ });
+
+ # 2020-11-19: Jailbreaking until: https://github.com/snapframework/heist/pull/124
+ heist = doJailbreak super.heist;
+
+ # 2020-11-19: Jailbreaking until: https://github.com/snapframework/snap/pull/219
+ snap = doJailbreak super.snap;
+
+ # 2020-11-21: cachix + chachix-api needs a patch for ghc 8.10 compat. Can be removed once released
+ # https://github.com/cachix/cachix/pull/331
+ cachix-api = appendPatch super.cachix-api (pkgs.fetchpatch {
+ url = https://github.com/cachix/cachix/commit/bfeec151a03afad72401815fe8bbb1b0d5d63b0d.patch;
+ sha256 = "0rglyd77g4j72l5g0sj9zpq2hy3v992bm6nhj58pmj4j2aj67y74";
+ stripLen = 2;
+ extraPrefix = "";
+ includes = [ "src/Cachix/Types/Session.hs" "src/Cachix/API/Signing.hs" ];
+ });
+ cachix = appendPatch super.cachix (pkgs.fetchpatch {
+ url = https://github.com/cachix/cachix/commit/bfeec151a03afad72401815fe8bbb1b0d5d63b0d.patch;
+ sha256 = "06jmpz8l5vh9cch5aqdbrln7bm3fghxsicwy1m93avli320kp8pp";
+ stripLen = 2;
+ extraPrefix = "";
+ excludes = [ "stack.yaml" "sources.json" "src/Cachix/Types/Session.hs" "src/Cachix/API/Signing.hs" "cachix-api.cabal" "workflows/test.yml" ];
+ });
+
+ # 2020-11-23: Jailbreaking until: https://github.com/michaelt/text-pipes/pull/29
+ pipes-text = doJailbreak super.pipes-text;
+
+ # 2020-11-23: https://github.com/Rufflewind/blas-hs/issues/8
+ blas-hs = dontCheck super.blas-hs;
+
+ # 2020-11-23: https://github.com/cdornan/fmt/issues/30
+ fmt = dontCheck super.fmt;
+
+
+ # 2020-11-27: Tests broken
+ # Upstream issue: https://github.com/haskell-servant/servant-swagger/issues/129
+ servant-swagger = dontCheck super.servant-swagger;
+
+ # 2020-11-27: cxx-options is broken in Cabal 3.2.0.0
+ hercules-ci-agent = addSetupDepend super.hercules-ci-agent self.Cabal_3_2_1_0;
+
+} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
index 71680074b746..60d3f4232464 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
@@ -57,42 +57,14 @@ self: super: {
};
});
- # Deviate from Stackage LTS-15.x to fix the build.
- haddock-library = self.haddock-library_1_9_0;
-
# Jailbreak to fix the build.
base-noprelude = doJailbreak super.base-noprelude;
system-fileio = doJailbreak super.system-fileio;
unliftio-core = doJailbreak super.unliftio-core;
- # Use the latest version to fix the build.
- dhall = self.dhall_1_35_0;
- lens = self.lens_4_19_2;
- optics = self.optics_0_3;
- optics-core = self.optics-core_0_3_0_1;
- optics-extra = self.optics-extra_0_3;
- optics-th = self.optics-th_0_3_0_2;
- repline = self.repline_0_4_0_0;
- singletons = self.singletons_2_7;
- th-desugar = self.th-desugar_1_11;
-
- insert-ordered-containers = super.insert-ordered-containers.override {
- optics-core = self.optics-core_0_3_0_1;
- optics-extra = self.optics-extra_0_3.override {
- optics-core = self.optics-core_0_3_0_1;
- };
- };
-
# Jailbreaking because monoidal-containers hasn‘t bumped it's base dependency for 8.10.
monoidal-containers = doJailbreak super.monoidal-containers;
- # `ghc-lib-parser-ex` (see conditionals in its `.cabal` file) does not need
- # the `ghc-lib-parser` dependency on GHC >= 8.8. However, because we have
- # multiple verions of `ghc-lib-parser(-ex)` available, and the default ones
- # are older ones, those older ones will complain. Because we have a newer
- # GHC, we can just set the dependency to `null` as it is not used.
- ghc-lib-parser-ex = super.ghc-lib-parser-ex.override { ghc-lib-parser = null; };
-
# Jailbreak to fix the build.
brick = doJailbreak super.brick;
exact-pi = doJailbreak super.exact-pi;
@@ -111,17 +83,6 @@ self: super: {
sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
});
- # Only 0.8 is compatible with ghc 8.10 https://hackage.haskell.org/package/apply-refact/changelog
- apply-refact = super.apply-refact_0_8_0_0;
-
- # https://github.com/commercialhaskell/pantry/issues/21
- pantry = appendPatch super.pantry (pkgs.fetchpatch {
- name = "add-cabal-3.2.x-support.patch";
- url = "https://patch-diff.githubusercontent.com/raw/commercialhaskell/pantry/pull/22.patch";
- sha256 = "198hsfjsy83s7rp71llf05cwa3vkm74g73djg5p4sk4awm9s6vf2";
- excludes = ["package.yaml"];
- });
-
# hnix 0.9.0 does not provide an executable for ghc < 8.10, so define completions here for now.
hnix = generateOptparseApplicativeCompletion "hnix"
(overrideCabal super.hnix (drv: {
@@ -131,5 +92,4 @@ self: super: {
# Break out of "Cabal < 3.2" constraint.
stylish-haskell = doJailbreak super.stylish-haskell;
-
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index f1260735479b..bd9f43e90c9d 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -44,7 +44,7 @@ self: super: {
text = self.text_1_2_4_0;
# Needs Cabal 3.0.x.
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_0_0; };
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_1_0; };
# https://github.com/bmillwood/applicative-quoters/issues/6
applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index d5ae77e8246e..27bf04b914e7 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -41,8 +41,8 @@ self: super: {
xhtml = null;
# Needs Cabal 3.2.x.
- cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_0_0; };
+ cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_1_0; };
# Restricts aeson to <1.4
# https://github.com/purescript/purescript/pull/3537
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index 339fda5d6fbf..2a0a7810f72a 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -42,8 +42,8 @@ self: super: {
xhtml = null;
# Needs Cabal 3.0.x.
- cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_0_0; };
+ cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_1_0; };
# https://github.com/tibbe/unordered-containers/issues/214
unordered-containers = dontCheck super.unordered-containers;
@@ -77,10 +77,10 @@ self: super: {
# cabal2nix needs the latest version of Cabal, and the one
# hackage-db uses must match, so take the latest
- cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
+ cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
# cabal2spec needs a recent version of Cabal
- cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
+ cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
# Builds only with ghc-8.8.x and beyond.
policeman = markBroken super.policeman;
@@ -92,6 +92,6 @@ self: super: {
# ghc versions prior to 8.8.x needs additional dependency to compile successfully.
ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser;
- # Only 0.6 is compatible with ghc 8.6 https://hackage.haskell.org/package/apply-refact/changelog
- apply-refact = super.apply-refact_0_6_0_0;
+ # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore.
+ exceptions = super.exceptions_0_10_4;
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index a2562e44527b..d1099c56b2c8 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -53,8 +53,8 @@ self: super: {
haddock-api = self.haddock-api_2_23_1;
# These builds need Cabal 3.2.x.
- cabal2spec = super.cabal2spec.override { Cabal = self.Cabal_3_2_0_0; };
- cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
+ cabal2spec = super.cabal2spec.override { Cabal = self.Cabal_3_2_1_0; };
+ cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
# Ignore overly restrictive upper version bounds.
aeson-diff = doJailbreak super.aeson-diff;
@@ -69,7 +69,6 @@ self: super: {
integer-logarithms = doJailbreak super.integer-logarithms;
lucid = doJailbreak super.lucid;
parallel = doJailbreak super.parallel;
- quickcheck-instances = doJailbreak super.quickcheck-instances;
setlocale = doJailbreak super.setlocale;
split = doJailbreak super.split;
system-fileio = doJailbreak super.system-fileio;
@@ -82,8 +81,8 @@ self: super: {
snap-server = doJailbreak super.snap-server;
exact-pi = doJailbreak super.exact-pi;
time-compat = doJailbreak super.time-compat;
- http-media = doJailbreak super.http-media;
- servant-server = doJailbreak super.servant-server;
+ http-media = unmarkBroken (doJailbreak super.http-media);
+ servant-server = unmarkBroken (doJailbreak super.servant-server);
foundation = dontCheck super.foundation;
vault = dontHaddock super.vault;
@@ -96,23 +95,15 @@ self: super: {
# https://github.com/kowainik/relude/issues/241
relude = dontCheck super.relude;
- # The tests for semver-range need to be updated for the MonadFail change in
- # ghc-8.8:
- # https://github.com/adnelson/semver-range/issues/15
- semver-range = dontCheck super.semver-range;
-
# The current version 2.14.2 does not compile with ghc-8.8.x or newer because
# of issues with Cabal 3.x.
darcs = dontDistribute super.darcs;
- # Only 0.7 is compatible with ghc 8.7 https://hackage.haskell.org/package/apply-refact/changelog
- apply-refact = super.apply-refact_0_7_0_0;
-
# The package needs the latest Cabal version.
- cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; });
+ cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
# cabal-fmt requires Cabal3
- cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_0_0; };
+ cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
# liquidhaskell does not support ghc version 8.8.x.
liquid = markBroken super.liquid;
@@ -126,4 +117,10 @@ self: super: {
liquid-vector = markBroken super.liquid-vector;
liquidhaskell = markBroken super.liquidhaskell;
+ # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore.
+ exceptions = super.exceptions_0_10_4;
+
+ # ghc versions which don‘t match the ghc-lib-parser-ex version need the
+ # additional dependency to compile successfully.
+ ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser;
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
index 2a3a0b3bc143..0471ca1b7601 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
@@ -43,4 +43,67 @@ self: super: {
unix = null;
xhtml = null;
+ # Take the 3.4.x release candidate.
+ cabal-install = assert super.cabal-install.version == "3.2.0.0";
+ overrideCabal super.cabal-install (drv: {
+ postUnpack = "sourceRoot+=/cabal-install; echo source root reset to $sourceRoot";
+ version = "cabal-install-3.4.0.0-rc4";
+ editedCabalFile = null;
+ src = pkgs.fetchgit {
+ url = "git://github.com/haskell/cabal.git";
+ rev = "cabal-install-3.4.0.0-rc4";
+ sha256 = "049hllk1d8jid9yg70hmcsdgb0n7hm24p39vavllaahfb0qfimrk";
+ };
+ });
+
+ # Jailbreaks & Version Updates
+ async = doJailbreak super.async;
+ ChasingBottoms = markBrokenVersion "1.3.1.9" super.ChasingBottoms;
+ dec = doJailbreak super.dec;
+ ed25519 = doJailbreak super.ed25519;
+ hashable = overrideCabal (doJailbreak (dontCheck super.hashable)) (drv: { postPatch = "sed -i -e 's,integer-gmp .*<1.1,integer-gmp < 2,' hashable.cabal"; });
+ hashable-time = doJailbreak super.hashable-time;
+ integer-logarithms = overrideCabal (doJailbreak super.integer-logarithms) (drv: { postPatch = "sed -i -e 's,integer-gmp <1.1,integer-gmp < 2,' integer-logarithms.cabal"; });
+ lukko = doJailbreak super.lukko;
+ parallel = doJailbreak super.parallel;
+ regex-posix = doJailbreak super.regex-posix;
+ resolv = doJailbreak super.resolv;
+ singleton-bool = doJailbreak super.singleton-bool;
+ split = doJailbreak super.split;
+ splitmix = self.splitmix_0_1_0_3;
+ tar = doJailbreak super.tar;
+ time-compat = doJailbreak super.time-compat;
+ vector = doJailbreak (dontCheck super.vector);
+ zlib = doJailbreak super.zlib;
+
+ # Apply patches from head.hackage.
+ alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/alex-3.2.5.patch";
+ sha256 = "0q8x49k3jjwyspcmidwr6b84s4y43jbf4wqfxfm6wz8x2dxx6nwh";
+ });
+ doctest = appendPatch (dontCheck (doJailbreak super.doctest_0_17)) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/doctest-0.17.patch";
+ sha256 = "16s2jcbk9hsww38i2wzxghbf0zpp5dc35hp6rd2n7d4z5xfavp62";
+ });
+ generic-deriving = appendPatch (doJailbreak super.generic-deriving) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/generic-deriving-1.13.1.patch";
+ sha256 = "0z85kiwhi5p2wiqwyym0y8q8qrcifp125x5vm0n4482lz41kmqds";
+ });
+ language-haskell-extract = appendPatch (doJailbreak super.language-haskell-extract) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch";
+ sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
+ });
+ QuickCheck = super.QuickCheck_2_14_2;
+ regex-base = appendPatch (doJailbreak super.regex-base) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/regex-base-0.94.0.0.patch";
+ sha256 = "0k5fglbl7nnhn8400c4cpnflxcbj9p3xi5prl9jfmszr31jwdy5d";
+ });
+ syb = appendPatch (dontCheck super.syb) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/syb-0.7.1.patch";
+ sha256 = "1407r8xv6bfnmpbw7glfh4smi76a2fc9pkq300c3d9f575708zqr";
+ });
+
+ # The test suite depends on ChasingBottoms, which is broken with ghc-9.0.x.
+ unordered-containers = dontCheck super.unordered-containers;
+
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index 2082da20618d..e4ee9c1cb351 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -1,37 +1,38 @@
# pkgs/development/haskell-modules/configuration-hackage2nix.yaml
-compiler: ghc-8.8.4
+compiler: ghc-8.10.2
core-packages:
- array-0.5.4.0
- - base-4.13.0.0
- - binary-0.8.7.0
+ - base-4.14.1.0
+ - binary-0.8.8.0
- bytestring-0.10.10.0
- - Cabal-3.0.1.0
+ - Cabal-3.2.0.0
- containers-0.6.2.1
- deepseq-1.4.4.0
- directory-1.3.6.0
+ - exceptions-0.10.4
- filepath-1.4.2.1
- - ghc-8.8.3
- - ghc-boot-8.8.3
- - ghc-boot-th-8.8.3
+ - ghc-8.10.2
+ - ghc-boot-8.10.2
+ - ghc-boot-th-8.10.2
- ghc-compact-0.1.0.0
- - ghc-heap-8.8.3
- - ghc-prim-0.5.3
- - ghci-8.8.3
- - haskeline-0.7.5.0
- - hpc-0.6.0.3
- - integer-gmp-1.0.2.0
- - libiserv-8.8.3
+ - ghc-heap-8.10.2
+ - ghc-prim-0.6.1
+ - ghci-8.10.2
+ - haskeline-0.8.0.1
+ - hpc-0.6.1.0
+ - integer-gmp-1.0.3.0
+ - libiserv-8.10.2
- mtl-2.2.2
- parsec-3.1.14.0
- pretty-1.1.3.6
- - process-1.6.8.0
+ - process-1.6.9.0
- rts-1.0
- stm-2.5.0.0
- - template-haskell-2.15.0.0
+ - template-haskell-2.16.0.0
- terminfo-0.4.1.4
- - text-1.2.4.0
+ - text-1.2.3.2
- time-1.9.3
- transformers-0.5.6.2
- unix-2.7.2.2
@@ -75,23 +76,22 @@ default-package-overrides:
# haskell-language-server 0.5.0.0 doesn't accept newer versions
- fourmolu ==0.2.*
- refinery ==0.2.*
- # LTS Haskell 16.18
+ # Stackage Nightly 2020-12-04
- abstract-deque ==0.3
- abstract-par ==0.3.3
- AC-Angle ==1.0
- accuerr ==0.2.0.2
- ace ==0.6
- action-permutations ==0.0.0.1
- - active ==0.2.0.14
- - ad ==4.4
+ - ad ==4.4.1
- adjunctions ==4.4
- adler32 ==0.1.2.0
- - advent-of-code-api ==0.2.7.0
- - aeson ==1.4.7.1
+ - aeson ==1.5.4.1
- aeson-attoparsec ==0.0.0
- aeson-better-errors ==0.9.1.0
- aeson-casing ==0.2.0.0
- - aeson-combinators ==0.0.2.1
+ - aeson-combinators ==0.0.4.0
+ - aeson-commit ==1.3
- aeson-compat ==0.3.9
- aeson-default ==0.9.1.0
- aeson-diff ==1.1.0.9
@@ -101,10 +101,11 @@ default-package-overrides:
- aeson-picker ==0.1.0.5
- aeson-pretty ==0.8.8
- aeson-qq ==0.8.3
- - aeson-schemas ==1.2.0
- - aeson-utils ==0.3.0.2
+ - aeson-schemas ==1.3.2
+ - aeson-with ==0.1.2.0
- aeson-yak ==0.1.1.3
- - aeson-yaml ==1.0.6.0
+ - aeson-yaml ==1.1.0.0
+ - agda2lagda ==0.2020.11.1
- al ==0.1.4.2
- alarmclock ==0.7.0.5
- alerts ==0.1.2.0
@@ -119,7 +120,6 @@ default-package-overrides:
- alsa-seq ==0.6.0.7
- alternative-vector ==0.0.0
- ALUT ==2.4.0.3
- - amazonka ==1.6.1
- amazonka-apigateway ==1.6.1
- amazonka-application-autoscaling ==1.6.1
- amazonka-appstream ==1.6.1
@@ -214,24 +214,22 @@ default-package-overrides:
- annotated-wl-pprint ==0.7.0
- ansi-terminal ==0.10.3
- ansi-wl-pprint ==0.6.9
- - antiope-core ==7.5.1
- - antiope-dynamodb ==7.5.1
- - antiope-messages ==7.5.1
- - antiope-s3 ==7.5.1
- - antiope-sns ==7.5.1
- - antiope-sqs ==7.5.1
- ANum ==0.2.0.2
- apecs ==0.9.2
- apecs-gloss ==0.2.4
- apecs-physics ==0.4.4
- api-field-json-th ==0.1.0.2
+ - ap-normalize ==0.1.0.0
- appar ==0.1.8
- appendmap ==0.1.5
+ - apply-refact ==0.8.2.1
- apportionment ==0.0.0.3
- approximate ==0.3.2
+ - approximate-equality ==1.1.0.2
- app-settings ==0.2.0.12
- arbor-lru-cache ==0.1.1.1
- - arithmoi ==0.10.0.0
+ - arbor-postgres ==0.0.5
+ - arithmoi ==0.11.0.1
- array-memoize ==0.6.0
- arrow-extras ==0.1.0.1
- ascii ==1.0.0.2
@@ -243,6 +241,7 @@ default-package-overrides:
- ascii-progress ==0.3.3.0
- ascii-superset ==1.0.0.2
- ascii-th ==1.0.0.2
+ - asif ==6.0.4
- asn1-encoding ==0.9.6
- asn1-parse ==0.9.5
- asn1-types ==0.3.4
@@ -251,9 +250,9 @@ default-package-overrides:
- astro ==0.4.2.1
- async ==2.2.2
- async-extra ==0.2.0.0
+ - async-pool ==0.9.1
- async-refresh ==0.3.0.0
- async-refresh-tokens ==0.4.0.0
- - async-timer ==0.2.0.0
- atom-basic ==0.2.5
- atomic-primops ==0.8.4
- atomic-write ==0.2.0.7
@@ -264,8 +263,8 @@ default-package-overrides:
- attoparsec-iso8601 ==1.0.1.0
- attoparsec-path ==0.0.0.1
- audacity ==0.0.2
- - aur ==7.0.4
- - aura ==3.1.9
+ - aur ==7.0.5
+ - aura ==3.2.2
- authenticate ==1.3.5
- authenticate-oauth ==1.6.0.1
- auto ==0.4.3.1
@@ -274,44 +273,48 @@ default-package-overrides:
- avers ==0.0.17.1
- avro ==0.5.2.0
- aws-cloudfront-signed-cookies ==0.2.0.6
- - bank-holidays-england ==0.2.0.5
- - base16 ==0.2.1.0
+ - backtracking ==0.1.0
+ - bank-holidays-england ==0.2.0.6
+ - barbies ==2.0.2.0
+ - base16 ==0.3.0.1
- base16-bytestring ==0.1.1.7
- - base16-lens ==0.1.2.0
- - base32 ==0.1.1.2
+ - base16-lens ==0.1.3.0
+ - base32 ==0.2.0.0
- base32-lens ==0.1.0.0
- base32string ==0.9.1
+ - base58-bytestring ==0.1.0
- base58string ==0.10.0
- base64 ==0.4.2.2
- - base64-bytestring ==1.0.0.3
+ - base64-bytestring ==1.1.0.0
- base64-bytestring-type ==1.0.1
- base64-lens ==0.3.0
- base64-string ==0.2
- base-compat ==0.11.2
- base-compat-batteries ==0.11.2
- basement ==0.0.11
- - base-noprelude ==4.13.0.0
- base-orphans ==0.8.3
- - base-prelude ==1.3
+ - base-prelude ==1.4
- base-unicode-symbols ==0.2.4.2
- basic-prelude ==0.7.0
- bazel-runfiles ==0.12
- bbdb ==0.8
- bcrypt ==0.0.11
- - bech32 ==1.0.2
+ - bech32 ==1.1.0
- bech32-th ==1.0.2
- bench ==1.0.12
- - benchpress ==0.2.2.14
+ - benchpress ==0.2.2.15
- between ==0.11.0.0
- bibtex ==0.1.0.6
- - bifunctors ==5.5.7
+ - bifunctors ==5.5.8
- bimap ==0.4.0
- bimaps ==0.1.0.2
- bimap-server ==0.1.0.1
- bin ==0.1
- binary-conduit ==1.3.1
+ - binaryen ==0.0.5.0
- binary-ext ==2.0.4
- binary-ieee754 ==0.1.0.0
+ - binary-instances ==1.0.0.1
- binary-list ==1.1.1.2
- binary-orphans ==1.0.1
- binary-parser ==0.5.6
@@ -330,7 +333,7 @@ default-package-overrides:
- bits-extra ==0.0.2.0
- bitvec ==1.0.3.0
- blake2 ==0.3.0
- - blanks ==0.3.0
+ - blanks ==0.5.0
- blas-carray ==0.1.0.1
- blas-comfort-array ==0.0.0.2
- blas-ffi ==0.1
@@ -341,35 +344,37 @@ default-package-overrides:
- blaze-svg ==0.3.6.1
- blaze-textual ==0.2.1.0
- bmp ==1.2.6.3
+ - BNFC ==2.8.4
+ - board-games ==0.3
- boltzmann-samplers ==0.1.1.0
- Boolean ==0.2.4
- boolean-like ==0.1.1.0
- - boolean-normal-forms ==0.0.1.1
- boolsimplifier ==0.1.8
- boots ==0.2.0.1
- bordacount ==0.1.0.0
- boring ==0.1.3
- both ==0.1.1.1
- - bound ==2.0.1
+ - bound ==2.0.2
- BoundedChan ==1.0.3.0
- bounded-queue ==1.0.0
- boundingboxes ==0.2.3
- bower-json ==1.0.0.1
- boxes ==0.1.5
- - brick ==0.52.1
- - brittany ==0.12.1.1
+ - brick ==0.57.1
- broadcast-chan ==0.2.1.1
- bsb-http-chunked ==0.0.0.4
- bson ==0.4.0.1
- btrfs ==0.2.0.0
- buffer-builder ==0.2.4.7
- buffer-pipe ==0.0
- - bugsnag-hs ==0.1.0.3
+ - bugsnag-hs ==0.2.0.3
+ - bugzilla-redhat ==0.3.0
+ - burrito ==1.2.0.0
- butcher ==1.3.3.2
- bv ==0.5
- bv-little ==1.1.1
- byteable ==0.1.1
- - byte-count-reader ==0.10.1.1
+ - byte-count-reader ==0.10.1.2
- bytedump ==1.0
- byte-order ==0.1.2.0
- byteorder ==1.0.4
@@ -381,13 +386,17 @@ default-package-overrides:
- bytestring-mmap ==0.2.2
- bytestring-strict-builder ==0.4.5.3
- bytestring-to-vector ==0.3.0.1
- - bytestring-tree-builder ==0.2.7.5
- - bz2 ==1.0.0.1
+ - bytestring-tree-builder ==0.2.7.7
+ - bz2 ==1.0.1.0
+ - bzlib ==0.5.1.0
- bzlib-conduit ==0.3.0.2
+ - c14n ==0.1.0.1
- c2hs ==0.28.6
- - cabal-appimage ==0.3.0.0
- - cabal-debian ==5.0.3
+ - cabal-debian ==5.1
- cabal-doctest ==1.0.8
+ - cabal-file ==0.1.1
+ - cabal-flatpak ==0.1.0.2
+ - cabal-plan ==0.7.2.0
- cabal-rpm ==2.0.7
- cache ==0.1.3.0
- cacophony ==0.10.1
@@ -404,7 +413,7 @@ default-package-overrides:
- cases ==0.1.4
- casing ==0.1.4.1
- cassava ==0.5.2.0
- - cassava-conduit ==0.5.1
+ - cassava-conduit ==0.6.0
- cassava-megaparsec ==2.0.2
- cast ==0.1.0.2
- category ==0.2.5.0
@@ -416,13 +425,13 @@ default-package-overrides:
- cereal-text ==0.1.0.2
- cereal-vector ==0.2.0.1
- cfenv ==0.1.0.0
+ - cgi ==3001.5.0.0
- chan ==0.0.4.1
- ChannelT ==0.0.0.7
- - character-cases ==0.1.0.4
+ - character-cases ==0.1.0.6
- charset ==0.3.7.1
- charsetdetect-ae ==1.1.0.4
- Chart ==1.9.3
- - Chart-diagrams ==1.9.3
- chaselev-deque ==0.5.0.5
- ChasingBottoms ==1.3.1.9
- cheapskate ==0.1.1.2
@@ -442,12 +451,11 @@ default-package-overrides:
- cipher-des ==0.0.6
- cipher-rc4 ==0.1.4
- circle-packing ==0.1.0.6
- - clash-ghc ==1.2.4
- - clash-lib ==1.2.4
- - clash-prelude ==1.2.4
+ - clash-ghc ==1.2.5
+ - clash-lib ==1.2.5
+ - clash-prelude ==1.2.5
- classy-prelude ==1.5.0
- classy-prelude-conduit ==1.5.0
- - classy-prelude-yesod ==1.5.0
- clay ==0.13.3
- clientsession ==0.9.1.2
- climb ==0.3.3
@@ -463,12 +471,10 @@ default-package-overrides:
- codec-beam ==0.2.0
- codec-rpm ==0.2.2
- code-page ==0.2
- - coercible-utils ==0.1.0
- co-log ==0.4.0.1
- co-log-concurrent ==0.5.0.0
- co-log-core ==0.2.1.1
- - co-log-polysemy ==0.0.1.2
- - Color ==0.1.4
+ - Color ==0.3.0
- colorful-monoids ==0.2.1.3
- colorize-haskell ==1.0.1
- colour ==2.3.5
@@ -478,11 +484,21 @@ default-package-overrides:
- comfort-graph ==0.0.3.1
- commutative ==0.0.2
- comonad ==5.0.6
+ - comonad-extras ==4.0.1
- compactmap ==0.1.4.2.1
- compensated ==0.8.1
- compiler-warnings ==0.1.0
- composable-associations ==0.1.0.0
- composable-associations-aeson ==0.1.0.0
+ - composite-aeson ==0.7.4.0
+ - composite-aeson-path ==0.7.4.0
+ - composite-aeson-refined ==0.7.4.0
+ - composite-base ==0.7.4.0
+ - composite-binary ==0.7.4.0
+ - composite-ekg ==0.7.4.0
+ - composite-hashable ==0.7.4.0
+ - composite-tuple ==0.1.2.0
+ - composite-xstep ==0.1.0.0
- composition ==1.0.2.1
- composition-extra ==2.0.0
- concise ==0.1.0.1
@@ -492,7 +508,7 @@ default-package-overrides:
- concurrent-split ==0.0.1.1
- concurrent-supply ==0.1.8
- cond ==0.4.1.1
- - conduit ==1.3.2.1
+ - conduit ==1.3.4
- conduit-algorithms ==0.0.11.0
- conduit-combinators ==1.3.0
- conduit-concurrent-map ==0.1.1
@@ -507,13 +523,14 @@ default-package-overrides:
- config-ini ==0.2.4.0
- configurator ==0.3.0.0
- configurator-export ==0.1.0.1
- - configurator-pg ==0.2.4
+ - configurator-pg ==0.2.5
- connection ==0.3.1
- connection-pool ==0.2.2
- console-style ==0.0.2.1
- constraint ==0.1.4.0
- constraints ==0.12
- constraint-tuples ==0.1.2
+ - construct ==0.3
- contravariant ==1.5.2
- contravariant-extras ==0.3.5.2
- control-bool ==0.2.1
@@ -521,19 +538,20 @@ default-package-overrides:
- control-monad-omega ==0.3.2
- convertible ==1.1.1.0
- cookie ==0.4.5
- - core-data ==0.2.1.8
- - core-program ==0.2.4.5
- - core-text ==0.2.3.6
+ - core-data ==0.2.1.9
+ - core-program ==0.2.6.0
+ - core-text ==0.3.0.0
- countable ==1.0
+ - country ==0.2.1
- cpio-conduit ==0.7.0
- cpphs ==1.20.9.1
- cprng-aes ==0.6.1
- cpu ==0.1.2
- cpuinfo ==0.1.0.1
- - crackNum ==2.3
+ - crackNum ==2.4
- crc32c ==0.0.0
- credential-store ==0.1.2
- - criterion ==1.5.7.0
+ - criterion ==1.5.9.0
- criterion-measurement ==0.1.2.0
- cron ==0.7.0
- crypto-api ==0.13.3
@@ -545,8 +563,7 @@ default-package-overrides:
- cryptohash-md5 ==0.11.100.1
- cryptohash-sha1 ==0.11.100.1
- cryptohash-sha256 ==0.11.101.0
- - cryptohash-sha512 ==0.11.100.1
- - cryptonite ==0.26
+ - cryptonite ==0.27
- cryptonite-conduit ==0.2.2
- cryptonite-openssl ==0.7
- crypto-numbers ==0.2.7
@@ -554,12 +571,10 @@ default-package-overrides:
- crypto-pubkey-types ==0.4.3
- crypto-random ==0.0.9
- crypto-random-api ==0.2.0
- - crypt-sha512 ==0
- csp ==1.4.0
- css-syntax ==0.1.0.0
- css-text ==0.1.3.0
- csv ==0.1.2
- - csv-conduit ==0.7.1.0
- ctrie ==0.2
- cubicbezier ==0.6.0.6
- cubicspline ==0.1.2
@@ -578,6 +593,7 @@ default-package-overrides:
- d10 ==0.2.1.6
- data-accessor ==0.2.3
- data-accessor-mtl ==0.2.0.4
+ - data-accessor-template ==0.2.1.16
- data-accessor-transformers ==0.2.1.7
- data-ascii ==1.0.0.2
- data-binary-ieee754 ==0.4.4
@@ -594,9 +610,10 @@ default-package-overrides:
- datadog ==0.2.5.0
- data-dword ==0.3.2
- data-endian ==0.1.1
- - data-fix ==0.2.1
+ - data-fix ==0.3.0
- data-forest ==0.1.0.8
- - data-has ==0.3.0.0
+ - data-has ==0.4.0.0
+ - data-hash ==0.2.0.1
- data-interval ==2.0.1
- data-inttrie ==0.1.4
- data-lens-light ==0.1.2.2
@@ -606,10 +623,9 @@ default-package-overrides:
- data-or ==1.0.0.5
- data-ordlist ==0.4.7.0
- data-ref ==0.0.2
- - data-reify ==0.6.2
+ - data-reify ==0.6.3
- data-serializer ==0.3.4.1
- data-textual ==0.3.0.3
- - data-tree-print ==0.1.0.2
- dataurl ==0.1.0.0
- DAV ==1.3.4
- DBFunctor ==0.1.1.1
@@ -623,29 +639,22 @@ default-package-overrides:
- declarative ==0.5.3
- deepseq-generics ==0.2.0.0
- deepseq-instances ==0.1.0.1
- - deferred-folds ==0.9.10.1
- - dejafu ==2.3.0.1
+ - deferred-folds ==0.9.15
+ - dejafu ==2.4.0.0
- dense-linear-algebra ==0.1.0.0
- depq ==0.4.1.0
- deque ==0.4.3
- deriveJsonNoPrefix ==0.1.0.1
+ - derive-topdown ==0.0.2.2
- deriving-aeson ==0.2.6
- - deriving-compat ==0.5.9
+ - deriving-compat ==0.5.10
- derulo ==1.0.9
- - detour-via-sci ==1.0.0
- - dhall ==1.32.0
- - dhall-bash ==1.0.30
- - dhall-json ==1.6.4
- - dhall-lsp-server ==1.0.8
- - dhall-yaml ==1.1.0
- - diagrams ==1.4
- - diagrams-contrib ==1.4.4
- - diagrams-core ==1.4.2
- - diagrams-lib ==1.4.3
- - diagrams-postscript ==1.5
- - diagrams-rasterific ==1.4.2
+ - dhall ==1.36.0
+ - dhall-bash ==1.0.34
+ - dhall-json ==1.7.3
+ - dhall-lsp-server ==1.0.11
+ - dhall-yaml ==1.2.3
- diagrams-solve ==0.1.2
- - diagrams-svg ==1.4.3
- dialogflow-fulfillment ==0.1.1.3
- di-core ==1.0.4
- dictionary-sharing ==0.1.0.0
@@ -655,6 +664,8 @@ default-package-overrides:
- dimensional ==1.3
- di-monad ==1.3.1
- directory-tree ==0.12.1
+ - direct-sqlite ==2.3.26
+ - dirichlet ==0.1.0.0
- discount ==0.1.1
- disk-free-space ==0.1.0.1
- distributed-closure ==0.4.2.0
@@ -667,10 +678,11 @@ default-package-overrides:
- dns ==4.0.1
- dockerfile ==0.2.0
- doclayout ==0.3
- - doctemplates ==0.8.2
+ - doctemplates ==0.8.3
- doctest ==0.16.3
- doctest-discover ==0.2.0.0
- - doctest-driver-gen ==0.3.0.2
+ - doctest-exitcode-stdio ==0.0
+ - doctest-lib ==0.1
- doldol ==0.4.1.2
- do-list ==1.0.1
- do-notation ==0.1.0.2
@@ -682,7 +694,6 @@ default-package-overrides:
- drinkery ==0.4
- dsp ==0.2.5.1
- dual ==0.1.1.1
- - dual-tree ==0.2.2.1
- dublincore-xml-conduit ==0.1.0.2
- dunai ==0.7.0
- duration ==0.1.0.0
@@ -700,9 +711,9 @@ default-package-overrides:
- edit-distance ==0.2.2.1
- edit-distance-vector ==1.0.0.4
- editor-open ==0.6.0.0
- - egison ==4.0.3
- - egison-pattern-src ==0.2.1.0
- - egison-pattern-src-th-mode ==0.2.1.1
+ - egison ==4.1.2
+ - egison-pattern-src ==0.2.1.2
+ - egison-pattern-src-th-mode ==0.2.1.2
- either ==5.0.1.1
- either-both ==0.1.1.1
- either-unwrap ==1.1
@@ -712,12 +723,17 @@ default-package-overrides:
- ekg-statsd ==0.2.5.0
- elerea ==2.9.0
- elf ==0.30
- - eliminators ==0.6
- - elm2nix ==0.2
+ - eliminators ==0.7
+ - elm2nix ==0.2.1
- elm-bridge ==0.6.1
- elm-core-sources ==1.0.0
- elm-export ==0.6.0.1
- - emacs-module ==0.1.1
+ - elynx ==0.5.0
+ - elynx-markov ==0.5.0
+ - elynx-nexus ==0.5.0
+ - elynx-seq ==0.5.0
+ - elynx-tools ==0.5.0
+ - elynx-tree ==0.5.0
- email-validate ==2.3.2.13
- emojis ==0.1
- enclosed-exceptions ==1.0.3
@@ -732,16 +748,18 @@ default-package-overrides:
- eq ==4.2.1
- equal-files ==0.0.5.3
- equational-reasoning ==0.6.0.3
+ - equivalence ==0.3.5
- erf ==2.0.0.0
- errors ==2.3.0
- errors-ext ==0.4.2
- ersatz ==0.4.8
- - esqueleto ==3.3.4.0
- - essence-of-live-coding ==0.1.0.3
- - essence-of-live-coding-gloss ==0.1.0.3
- - essence-of-live-coding-pulse ==0.1.0.3
- - essence-of-live-coding-quickcheck ==0.1.0.3
+ - esqueleto ==3.4.0.1
+ - essence-of-live-coding ==0.2.4
+ - essence-of-live-coding-gloss ==0.2.4
+ - essence-of-live-coding-pulse ==0.2.4
+ - essence-of-live-coding-quickcheck ==0.2.4
- etc ==0.4.1.0
+ - eve ==0.1.9.0
- eventful-core ==0.2.0
- eventful-test-helpers ==0.2.0
- event-list ==0.1.2
@@ -753,12 +771,13 @@ default-package-overrides:
- exception-mtl ==0.4.0.1
- exceptions ==0.10.4
- exception-transformers ==0.4.0.9
+ - exception-via ==0.1.0.0
- executable-path ==0.0.3.1
- exit-codes ==1.0.0
- exomizer ==1.0.0
- expiring-cache-map ==0.0.6.1
- explicit-exception ==0.1.10
- - exp-pairs ==0.2.0.0
+ - exp-pairs ==0.2.1.0
- express ==0.1.3
- extended-reals ==0.2.4.0
- extensible-effects ==5.0.0.1
@@ -768,8 +787,10 @@ default-package-overrides:
- extrapolate ==0.4.2
- fail ==4.9.0.0
- failable ==1.2.4.0
- - fakedata ==0.6.1
- - farmhash ==0.1.0.5
+ - fakedata ==0.8.0
+ - fakedata-parser ==0.1.0.0
+ - fakefs ==0.3.0.2
+ - fakepull ==0.3.0.2
- fast-digits ==0.3.0.0
- fast-logger ==3.0.2
- fast-math ==1.0.2
@@ -781,8 +802,7 @@ default-package-overrides:
- FenwickTree ==0.1.2.1
- fft ==0.1.8.6
- fgl ==5.7.0.3
- - filecache ==0.4.1
- - file-embed ==0.0.11.2
+ - file-embed ==0.0.13.0
- file-embed-lzma ==0
- filelock ==0.1.1.5
- filemanip ==0.3.6.3
@@ -807,23 +827,22 @@ default-package-overrides:
- flags-applicative ==0.1.0.2
- flat ==0.4.4
- flat-mcmc ==1.5.2
- - FloatingHex ==0.4
+ - flexible-defaults ==0.0.3
+ - FloatingHex ==0.5
- floatshow ==0.2.4
- flow ==1.0.21
- flush-queue ==1.0.0
- fmlist ==0.9.4
- fmt ==0.6.1.2
- fn ==0.3.0.2
- - focus ==1.0.1.3
+ - focus ==1.0.1.4
- focuslist ==0.1.0.2
- foldable1 ==0.1.0.0
- fold-debounce ==0.2.0.9
- - fold-debounce-conduit ==0.2.0.5
- - foldl ==1.4.6
+ - foldl ==1.4.10
- folds ==0.7.5
- follow-file ==0.0.3
- FontyFruity ==0.5.3.5
- - force-layout ==0.4.0.6
- foreign-store ==0.2
- ForestStructures ==0.0.1.0
- forkable-monad ==0.2.0.3
@@ -831,7 +850,7 @@ default-package-overrides:
- format-numbers ==0.1.0.1
- formatting ==6.3.7
- foundation ==0.0.25
- - free ==5.1.3
+ - free ==5.1.4
- free-categories ==0.2.0.2
- freenect ==1.2.1
- freer-simple ==1.2.1.1
@@ -847,7 +866,6 @@ default-package-overrides:
- funcmp ==1.9
- function-builder ==0.3.0.1
- functor-classes-compat ==1
- - fused-effects ==1.0.2.2
- fusion-plugin ==0.2.1
- fusion-plugin-types ==0.1.0
- fuzzcheck ==0.1.1
@@ -859,9 +877,11 @@ default-package-overrides:
- gd ==3000.7.3
- gdp ==0.0.3.0
- general-games ==1.1.1
+ - generic-aeson ==0.2.0.11
- generic-arbitrary ==0.1.0
- generic-constraints ==1.1.1.1
- - generic-data ==0.8.3.0
+ - generic-data ==0.9.2.0
+ - generic-data-surgery ==0.3.0.0
- generic-deriving ==1.13.1
- generic-lens ==2.0.0.0
- generic-lens-core ==2.0.0.0
@@ -871,10 +891,11 @@ default-package-overrides:
- generic-random ==1.3.0.1
- generics-sop ==0.5.1.0
- generics-sop-lens ==0.2.0.1
+ - geniplate-mirror ==0.7.7
- genvalidity ==0.11.0.0
- genvalidity-aeson ==0.3.0.0
- genvalidity-bytestring ==0.6.0.0
- - genvalidity-containers ==0.8.0.2
+ - genvalidity-containers ==0.9.0.0
- genvalidity-criterion ==0.2.0.0
- genvalidity-hspec ==0.7.0.4
- genvalidity-hspec-aeson ==0.3.1.1
@@ -897,11 +918,10 @@ default-package-overrides:
- geojson ==4.0.2
- getopt-generics ==0.13.0.4
- ghc-byteorder ==4.11.0.0.10
- - ghc-check ==0.5.0.1
- - ghc-compact ==0.1.0.0
+ - ghc-check ==0.5.0.3
- ghc-core ==0.5.6
- - ghc-events ==0.13.0
- - ghc-exactprint ==0.6.2
+ - ghc-events ==0.14.0
+ - ghc-exactprint ==0.6.3.3
- ghcid ==0.8.7
- ghci-hexcalc ==0.1.1.0
- ghcjs-codemirror ==0.0.0.2
@@ -914,41 +934,45 @@ default-package-overrides:
- ghc-source-gen ==0.4.0.0
- ghc-syntax-highlighter ==0.0.6.0
- ghc-tcplugins-extra ==0.4
- - ghc-typelits-extra ==0.4
+ - ghc-trace-events ==0.1.2.1
+ - ghc-typelits-extra ==0.4.1
- ghc-typelits-knownnat ==0.7.3
- ghc-typelits-natnormalise ==0.7.2
- ghc-typelits-presburger ==0.3.0.1
- ghost-buster ==0.1.1.0
- - gi-atk ==2.0.21
- - gi-cairo ==1.0.23
- - gi-cairo-connector ==0.0.1
- - gi-cairo-render ==0.0.1
- - gi-dbusmenu ==0.4.7
- - gi-dbusmenugtk3 ==0.4.8
- - gi-gdk ==3.0.22
- - gi-gdkpixbuf ==2.0.23
- - gi-gdkx11 ==3.0.9
- - gi-gio ==2.0.26
- - gi-glib ==2.0.23
- - gi-gobject ==2.0.22
- - gi-graphene ==1.0.1
- - gi-gtk ==3.0.33
- - gi-gtk-hs ==0.3.8.1
+ - gi-atk ==2.0.22
+ - gi-cairo ==1.0.24
+ - gi-cairo-connector ==0.1.0
+ - gi-cairo-render ==0.1.0
+ - gi-dbusmenu ==0.4.8
+ - gi-dbusmenugtk3 ==0.4.9
+ - gi-gdk ==3.0.23
+ - gi-gdkpixbuf ==2.0.24
+ - gi-gdkx11 ==3.0.10
+ - gi-gio ==2.0.27
+ - gi-glib ==2.0.24
+ - gi-gobject ==2.0.25
+ - gi-graphene ==1.0.2
+ - gi-gtk ==3.0.36
+ - gi-gtk-hs ==0.3.9
+ - gi-harfbuzz ==0.0.3
- ginger ==0.10.1.0
- gingersnap ==0.3.1.0
- - gi-pango ==1.0.22
- - giphy-api ==0.7.0.0
- - githash ==0.1.4.0
+ - gi-pango ==1.0.23
+ - githash ==0.1.5.0
+ - github ==0.26
+ - github-release ==1.3.5
- github-rest ==1.0.3
- github-types ==0.2.1
- - gitlab-haskell ==0.1.8
+ - github-webhooks ==0.15.0
+ - gitlab-haskell ==0.2.3
- gitrev ==1.3.1
- - gi-xlib ==2.0.8
+ - gi-xlib ==2.0.9
- gl ==0.9
- glabrous ==2.0.2
- GLFW-b ==3.3.0.0
- Glob ==0.10.1
- - gloss ==1.13.1.2
+ - gloss ==1.13.2.1
- gloss-rendering ==1.13.1.1
- GLURaw ==2.0.0.4
- GLUT ==2.7.0.15
@@ -959,59 +983,54 @@ default-package-overrides:
- gpolyline ==0.1.0.1
- graph-core ==0.3.0.0
- graphite ==0.10.0.1
+ - graphql-client ==1.1.0
- graphs ==0.7.1
- graphviz ==2999.20.1.0
- graph-wrapper ==0.2.6.0
- gravatar ==0.8.0
- - greskell ==1.1.0.3
- - greskell-core ==0.1.3.5
- - greskell-websocket ==0.1.2.4
- groom ==0.1.2.1
- group-by-date ==0.1.0.3
- - groups ==0.4.1.0
+ - groups ==0.5
- gtk-sni-tray ==0.1.6.0
- gtk-strut ==0.1.3.0
- guarded-allocation ==0.0.1
- hackage-db ==2.1.0
- hackage-security ==0.6.0.1
- - haddock-library ==1.8.0
- - hadolint ==1.18.0
+ - haddock-library ==1.9.0
- hadoop-streaming ==0.2.0.3
- - hakyll ==4.13.4.0
+ - hakyll-convert ==0.3.0.3
- half ==0.3
- hall-symbols ==0.1.0.6
- hamtsolo ==1.0.3
- HandsomeSoup ==0.4.2
- hapistrano ==0.4.1.2
- - happstack-server ==7.6.1
- - happy ==1.19.12
+ - happstack-server ==7.7.0
+ - happy ==1.20.0
- HasBigDecimal ==0.1.1
- - hasbolt ==0.1.4.3
- hashable ==1.3.0.0
- hashable-time ==0.2.0.2
- hashids ==1.0.2.4
+ - hashing ==0.1.0.1
- hashmap ==1.3.3
- hashtables ==1.2.4.1
- - haskeline ==0.7.5.0
- - haskell-gi ==0.23.1
- - haskell-gi-base ==0.23.0
+ - haskeline ==0.8.1.0
+ - haskell-gi ==0.24.7
+ - haskell-gi-base ==0.24.5
- haskell-gi-overloading ==1.0
- - haskell-igraph ==0.8.0
- haskell-import-graph ==1.0.4
- haskell-lexer ==1.1
- haskell-lsp ==0.22.0.0
- haskell-lsp-types ==0.22.0.0
- haskell-names ==0.9.9
- - haskell-src ==1.0.3.1
- haskell-src-exts ==1.23.1
- haskell-src-exts-util ==0.2.5
- haskell-src-meta ==0.8.5
- haskey-btree ==0.3.0.1
- - haskoin-core ==0.13.4
- - haskoin-node ==0.13.0
- - hasql ==1.4.3
+ - hasql ==1.4.4.2
+ - hasql-notifications ==0.1.0.0
- hasql-optparse-applicative ==0.3.0.6
- hasql-pool ==0.5.2
+ - hasql-queue ==1.2.0.2
- hasql-transaction ==1.0.0.1
- hasty-hamiltonian ==1.3.3
- HaTeX ==3.22.3.0
@@ -1021,50 +1040,59 @@ default-package-overrides:
- hdaemonize ==0.5.6
- HDBC ==2.4.0.3
- HDBC-session ==0.1.2.0
- - headroom ==0.2.2.1
+ - headroom ==0.3.2.0
- heap ==1.0.4
- heaps ==0.3.6.1
- hebrew-time ==0.1.2
- hedgehog ==1.0.3
+ - hedgehog-classes ==0.2.5.1
- hedgehog-corpus ==0.2.0
- hedgehog-fakedata ==0.0.1.3
- hedgehog-fn ==1.0
- hedgehog-quickcheck ==0.1.1
- - hedis ==0.12.14
+ - hedis ==0.13.1
+ - hedn ==0.3.0.2
- here ==1.2.13
- heredoc ==0.2.0.0
- - heterocephalus ==1.0.5.3
+ - heterocephalus ==1.0.5.4
- hexml ==0.3.4
- hexml-lens ==0.2.1
- hexpat ==0.20.13
- hexstring ==0.11.1
- hformat ==0.3.3.1
- hfsevents ==0.1.6
+ - hgeometry ==0.11.0.0
+ - hgeometry-combinatorial ==0.11.0.0
+ - hgrev ==0.2.6
- hidapi ==0.1.5
- - hie-bios ==0.5.1
+ - hie-bios ==0.7.1
- hi-file-parser ==0.1.0.0
- - higher-leveldb ==0.5.0.2
+ - higher-leveldb ==0.6.0.0
- highlighting-kate ==0.6.4
- hinfo ==0.0.3.0
- - hinotify ==0.4
+ - hinotify ==0.4.1
- hint ==0.9.0.3
- hjsmin ==0.2.0.4
- hkd-default ==1.1.0.0
- hkgr ==0.2.6.1
- hlibcpuid ==0.2.0
- hlibgit2 ==0.18.0.16
- - hmatrix ==0.20.0.0
+ - hlibsass ==0.1.10.1
+ - hmatrix ==0.20.1
- hmatrix-gsl ==0.19.0.1
- hmatrix-gsl-stats ==0.4.1.8
- hmatrix-morpheus ==0.1.1.2
- hmatrix-vector-sized ==0.1.3.0
+ - hmm-lapack ==0.4
- hmpfr ==0.4.4
+ - hnix-store-core ==0.2.0.0
- hnock ==0.4.0
- - hoauth2 ==1.14.0
- - hOpenPGP ==2.9.4
- - hopenpgp-tools ==0.23.1
+ - hoauth2 ==1.16.0
+ - hocon ==0.1.0.4
+ - hOpenPGP ==2.9.5
+ - hopenpgp-tools ==0.23.3
- hopfli ==0.2.2.1
- - hosc ==0.17
+ - hosc ==0.18.1
- hostname ==1.0
- hostname-validate ==1.0.0
- hourglass ==0.2.12
@@ -1074,28 +1102,28 @@ default-package-overrides:
- hpack-dhall ==0.5.2
- hpc-codecov ==0.2.0.0
- hpc-lcov ==1.0.1
- - hreader ==1.1.0
- - hreader-lens ==0.1.3.0
+ - hprotoc ==2.4.17
- hruby ==0.3.8
+ - hsass ==0.8.0
- hs-bibutils ==6.10.0.0
- hsc2hs ==0.68.7
- hscolour ==1.24.4
- hsdns ==1.8
- hsebaysdk ==0.4.1.0
- - hsemail ==2.2.0
- - hset ==2.2.0
+ - hsemail ==2.2.1
- hs-functors ==0.1.7.1
- hs-GeoIP ==0.3
- hsini ==0.5.1.2
- hsinstall ==2.6
- HSlippyMap ==3.0.1
- hslogger ==1.3.1.0
- - hslua ==1.0.3.2
- - hslua-aeson ==1.0.3
- - hslua-module-doclayout ==0.1.0
- - hslua-module-system ==0.2.2
- - hslua-module-text ==0.2.1
- - HsOpenSSL ==0.11.4.20
+ - hslua ==1.2.0
+ - hslua-aeson ==1.0.3.1
+ - hslua-module-doclayout ==0.2.0.1
+ - hslua-module-system ==0.2.2.1
+ - hslua-module-text ==0.3.0.1
+ - HsOpenSSL ==0.11.5.1
+ - HsOpenSSL-x509-system ==0.1.0.4
- hsp ==0.10.0
- hspec ==2.7.4
- hspec-attoparsec ==0.1.0.2
@@ -1110,9 +1138,8 @@ default-package-overrides:
- hspec-golden-aeson ==0.7.0.0
- hspec-hedgehog ==0.0.1.2
- hspec-leancheck ==0.0.4
- - hspec-megaparsec ==2.1.0
+ - hspec-megaparsec ==2.2.0
- hspec-meta ==2.6.0
- - hspec-need-env ==0.1.0.5
- hspec-parsec ==0
- hspec-smallcheck ==0.5.2
- hspec-tables ==0.0.1
@@ -1126,7 +1153,6 @@ default-package-overrides:
- HsYAML-aeson ==0.2.0.0
- hsyslog ==5.0.2
- htaglib ==1.2.0
- - HTF ==0.14.0.3
- html ==1.0.1.2
- html-conduit ==1.3.2.1
- html-entities ==1.1.4.3
@@ -1136,7 +1162,7 @@ default-package-overrides:
- HTTP ==4000.3.15
- http-api-data ==0.4.1.1
- http-client ==0.6.4.1
- - http-client-openssl ==0.3.1.0
+ - http-client-openssl ==0.3.2.0
- http-client-overrides ==0.1.1.0
- http-client-tls ==0.3.5.3
- http-common ==0.8.2.1
@@ -1147,34 +1173,47 @@ default-package-overrides:
- httpd-shed ==0.4.1.1
- http-link-header ==1.0.3.1
- http-media ==0.8.0.0
+ - http-query ==0.1.0
- http-reverse-proxy ==0.6.0
- http-streams ==0.8.7.2
- http-types ==0.12.3
- human-readable-duration ==0.2.1.4
- - HUnit ==1.6.0.0
+ - HUnit ==1.6.1.0
- HUnit-approx ==1.1.1.1
- hunit-dejafu ==2.0.0.4
- hvect ==0.4.0.0
- - hvega ==0.9.1.0
+ - hvega ==0.11.0.0
- hw-balancedparens ==0.4.1.1
- hw-bits ==0.7.2.1
- hw-conduit ==0.2.1.0
- hw-conduit-merges ==0.2.1.0
- hw-diagnostics ==0.0.1.0
+ - hw-dsv ==0.4.1.0
- hweblib ==0.6.3
+ - hw-eliasfano ==0.1.2.0
- hw-excess ==0.2.3.0
- hw-fingertree ==0.1.2.0
- hw-fingertree-strict ==0.1.2.0
- hw-hedgehog ==0.1.1.0
- hw-hspec-hedgehog ==0.1.1.0
- hw-int ==0.0.2.0
+ - hw-ip ==2.4.2.0
+ - hw-json ==1.3.2.2
- hw-json-simd ==0.1.1.0
+ - hw-json-simple-cursor ==0.1.1.0
+ - hw-json-standard-cursor ==0.2.3.1
+ - hw-kafka-client ==4.0.0
- hw-mquery ==0.2.1.0
+ - hw-packed-vector ==0.2.1.0
- hw-parser ==0.1.1.0
- hw-prim ==0.6.3.0
+ - hw-rankselect ==0.13.4.0
- hw-rankselect-base ==0.3.4.1
+ - hw-simd ==0.1.2.0
- hw-streams ==0.0.1.0
- hw-string-parse ==0.0.0.4
+ - hw-succinct ==0.1.0.1
+ - hw-xml ==0.5.1.0
- hxt ==9.3.1.18
- hxt-charproperties ==9.4.0.0
- hxt-css ==0.1.0.3
@@ -1185,9 +1224,9 @@ default-package-overrides:
- hxt-tagsoup ==9.1.4
- hxt-unicode ==9.0.2.4
- hybrid-vectors ==0.2.2
+ - hyper ==0.2.1.0
- hyperloglog ==0.4.3
- hyphenation ==0.8
- - hyraxAbif ==0.2.3.21
- iconv ==0.4.1.3
- identicon ==0.2.2
- ieee754 ==0.8.0
@@ -1201,7 +1240,7 @@ default-package-overrides:
- immortal ==0.3
- immortal-queue ==0.1.0.1
- include-file ==0.1.0.4
- - incremental-parser ==0.4.0.2
+ - incremental-parser ==0.5
- indents ==0.5.0.1
- indexed ==0.1.3
- indexed-containers ==0.1.0.2
@@ -1209,29 +1248,29 @@ default-package-overrides:
- indexed-profunctors ==0.1
- infer-license ==0.2.0
- inflections ==0.4.0.6
- - influxdb ==1.7.1.6
+ - influxdb ==1.9.0
- ini ==0.4.1
- inj ==1.0
- - inline-c ==0.9.1.2
+ - inline-c ==0.9.1.3
- inline-c-cpp ==0.4.0.2
- inliterate ==0.1.0
+ - input-parsers ==0.1.0.1
- insert-ordered-containers ==0.2.3.1
- inspection-testing ==0.4.2.4
- instance-control ==0.1.2.0
- - int-cast ==0.2.0.0
- - integer-logarithms ==1.0.3
+ - integer-logarithms ==1.0.3.1
- integer-roots ==1.0
- integration ==0.2.1
- intern ==0.9.3
- interpolate ==0.2.1
- interpolatedstring-perl6 ==1.0.2
- interpolation ==0.1.1.1
- - interpolator ==1.0.0
+ - interpolator ==1.1.0.2
- IntervalMap ==0.6.1.2
- intervals ==0.9.1
- - intro ==0.7.0.0
+ - intro ==0.9.0.0
- intset-imperative ==0.1.0.0
- - invariant ==0.5.3
+ - invariant ==0.5.4
- invertible ==0.2.0.7
- invertible-grammar ==0.1.3
- io-machine ==0.2.0.0
@@ -1242,7 +1281,7 @@ default-package-overrides:
- io-streams ==1.5.2.0
- io-streams-haproxy ==1.0.1.0
- ip6addr ==1.0.1
- - iproute ==1.7.9
+ - iproute ==1.7.10
- IPv6Addr ==1.1.5
- ipynb ==0.1.0.1
- ipython-kernel ==0.10.2.1
@@ -1250,7 +1289,7 @@ default-package-overrides:
- irc-client ==1.1.2.0
- irc-conduit ==0.3.0.4
- irc-ctcp ==0.1.3.0
- - isbn ==1.0.0.0
+ - isbn ==1.1.0.2
- islink ==0.1.0.0
- iso3166-country-codes ==0.20140203.8
- iso639 ==0.1.0.3
@@ -1258,15 +1297,19 @@ default-package-overrides:
- iterable ==3.0
- it-has ==0.2.0.0
- ixset-typed ==0.5
+ - ixset-typed-binary-instance ==0.1.0.2
+ - ixset-typed-conversions ==0.1.2.0
+ - ixset-typed-hashable-instance ==0.1.0.2
- ix-shapable ==0.1.0
- jack ==0.7.1.4
- - jira-wiki-markup ==1.1.4
- - jose ==0.8.3.1
+ - jalaali ==1.0.0.0
+ - jira-wiki-markup ==1.3.2
+ - jose ==0.8.4
- jose-jwt ==0.8.0
+ - js-chart ==2.9.4.1
- js-dgtable ==0.5.2
- js-flot ==0.8.3
- js-jquery ==3.3.1
- - json-alt ==1.0.0
- json-feed ==1.0.11
- jsonpath ==0.2.0.0
- json-rpc ==1.0.3
@@ -1275,7 +1318,7 @@ default-package-overrides:
- JuicyPixels-blurhash ==0.1.0.3
- JuicyPixels-extra ==0.4.1
- JuicyPixels-scale-dct ==0.1.2
- - junit-xml ==0.1.0.1
+ - junit-xml ==0.1.0.2
- justified-containers ==0.3.0.0
- jwt ==0.10.0
- kan-extensions ==5.2.1
@@ -1295,19 +1338,18 @@ default-package-overrides:
- kubernetes-webhook-haskell ==0.2.0.3
- l10n ==0.1.0.1
- labels ==0.3.3
- - lackey ==1.0.13
- LambdaHack ==0.9.5.0
- lame ==0.2.0
- language-avro ==0.1.3.1
- language-bash ==0.9.2
- language-c ==0.8.3
- language-c-quote ==0.12.2.1
- - language-docker ==9.1.1
- - language-haskell-extract ==0.2.4
+ - language-docker ==9.1.2
- language-java ==0.2.9
- language-javascript ==0.7.1.0
- language-protobuf ==1.0.1
- - language-puppet ==1.4.6.5
+ - language-python ==0.5.8
+ - lapack ==0.3.2
- lapack-carray ==0.0.3
- lapack-comfort-array ==0.0.0.1
- lapack-ffi ==0.0.2
@@ -1323,33 +1365,40 @@ default-package-overrides:
- leancheck-instances ==0.0.4
- leapseconds-announced ==2017.1.0.1
- learn-physics ==0.6.5
- - lens ==4.18.1
+ - lens ==4.19.2
- lens-action ==0.2.4
- lens-aeson ==1.1
+ - lens-csv ==0.1.1.0
- lens-datetime ==0.3
- lens-family ==2.0.0
- lens-family-core ==2.0.0
- lens-family-th ==0.5.1.0
- lens-misc ==0.0.2.0
+ - lens-process ==0.3.0.2
- lens-properties ==4.11.1
- lens-regex ==0.1.1
+ - lens-regex-pcre ==1.1.0.0
- lenz ==0.4.2.0
- leveldb-haskell ==0.6.5
- libffi ==0.1
- libgit ==0.3.1
- libgraph ==1.14
+ - libjwt-typed ==0.2
- libmpd ==0.9.2.0
+ - liboath-hs ==0.0.1.2
- libyaml ==0.1.2
- LibZip ==1.0.1
- life-sync ==1.1.1.0
- lifted-async ==0.10.1.2
- lifted-base ==0.2.3.12
- - lift-generics ==0.1.3
+ - lift-generics ==0.2
- line ==4.0.1
- linear ==1.21.3
+ - linear-circuit ==0.1.0.2
- linenoise ==0.3.2
- linux-file-extents ==0.2.0.0
- linux-namespaces ==0.1.3.0
+ - liquid-fixpoint ==0.8.10.2
- List ==0.6.2
- ListLike ==4.7.2
- list-predicate ==0.1.0.1
@@ -1357,16 +1406,16 @@ default-package-overrides:
- list-singleton ==1.0.0.4
- list-t ==1.0.4
- ListTree ==0.2.3
- - little-logger ==0.1.0
- - little-rio ==0.1.1
+ - little-logger ==0.3.1
+ - little-rio ==0.2.2
- llvm-hs ==9.0.1
- llvm-hs-pure ==9.0.0
- lmdb ==0.2.5
- load-env ==0.2.1.0
- - loc ==0.1.3.8
+ - loc ==0.1.3.10
+ - locators ==0.3.0.3
- loch-th ==0.2.2
- lockfree-queue ==0.2.3.1
- - log-base ==0.8.0.1
- log-domain ==0.13
- logfloat ==0.13.3.3
- logging ==3.0.5
@@ -1374,27 +1423,30 @@ default-package-overrides:
- logging-facade-syslog ==1
- logict ==0.7.0.3
- loop ==0.3.0
- - loopbreaker ==0.1.1.1
- lrucache ==1.2.0.1
- lrucaching ==0.3.3
- - lsp-test ==0.10.3.0
+ - lsp-test ==0.11.0.5
- lucid ==2.9.12
+ - lucid-cdn ==0.2.2.0
- lucid-extras ==0.2.2
- lukko ==0.1.1.2
+ - lz4-frame-conduit ==0.1.0.1
- lzma ==0.0.0.3
- lzma-conduit ==1.2.1
- machines ==0.7.1
- magic ==1.1
+ - magico ==0.0.2.1
- mainland-pretty ==0.7.0.1
- main-tester ==0.2.0.1
- makefile ==1.1.0.0
- managed ==1.0.8
+ - MapWith ==0.2.0.0
- markdown ==0.1.17.4
- markdown-unlit ==0.5.0
- markov-chain ==0.0.3.4
- - massiv ==0.5.4.0
- - massiv-io ==0.2.1.0
- - massiv-test ==0.1.4
+ - massiv ==0.5.7.0
+ - massiv-io ==0.4.0.0
+ - massiv-test ==0.1.5
- mathexpr ==0.3.0.0
- math-extras ==0.1.1.0
- math-functions ==0.3.4.1
@@ -1407,11 +1459,13 @@ default-package-overrides:
- maximal-cliques ==0.1.1
- mbox ==0.3.4
- mbox-utility ==0.0.3.1
+ - mcmc ==0.3.0
- mcmc-types ==1.0.3
- - medea ==1.1.2
+ - medea ==1.2.0
- median-stream ==0.7.0.0
- - megaparsec ==8.0.0
- - megaparsec-tests ==8.0.0
+ - med-module ==0.1.2.1
+ - megaparsec ==9.0.1
+ - megaparsec-tests ==9.0.1
- membrain ==0.0.0.2
- memory ==0.15.0
- MemoTrie ==0.6.10
@@ -1429,7 +1483,7 @@ default-package-overrides:
- microlens-mtl ==0.2.0.1
- microlens-platform ==0.4.1
- microlens-process ==0.2.0.2
- - microlens-th ==0.4.3.6
+ - microlens-th ==0.4.3.8
- microspec ==0.2.1.3
- microstache ==1.0.1.1
- midair ==0.2.0.1
@@ -1440,16 +1494,14 @@ default-package-overrides:
- mime-types ==0.1.0.9
- mini-egison ==1.0.0
- minimal-configuration ==0.1.4
- - minimorph ==0.2.2.0
- - minio-hs ==1.5.2
- - miniutter ==0.5.1.0
+ - minimorph ==0.3.0.0
+ - minio-hs ==1.5.3
+ - miniutter ==0.5.1.1
- min-max-pqueue ==0.1.0.2
- mintty ==0.1.2
- - miso ==1.6.0.0
- missing-foreign ==0.1.1
- MissingH ==1.4.3.0
- mixed-types-num ==0.4.0.2
- - mixpanel-client ==0.2.1
- mltool ==0.2.0.1
- mmap ==0.5.9
- mmark ==0.0.7.2
@@ -1460,16 +1512,17 @@ default-package-overrides:
- mockery ==0.3.5
- mod ==0.1.2.0
- model ==0.5
- - modern-uri ==0.3.2.0
+ - modern-uri ==0.3.3.0
- modular ==0.1.0.8
- - monad-bayes ==0.1.1.0
+ - monad-chronicle ==1.0.0.1
- monad-control ==1.0.2.3
- monad-control-aligned ==0.0.1.1
- monad-coroutine ==0.9.0.4
- monad-extras ==0.6.0
- monadic-arrays ==0.2.2
- monad-journal ==0.8.1
- - monad-logger ==0.3.35
+ - monadlist ==0.0.2
+ - monad-logger ==0.3.36
- monad-logger-json ==0.1.0.0
- monad-logger-prefix ==0.1.11
- monad-loops ==0.4.3
@@ -1479,6 +1532,7 @@ default-package-overrides:
- monad-parallel ==0.7.2.3
- monad-par-extras ==0.3.3
- monad-peel ==0.2.1.2
+ - monad-primitive ==0.1
- monad-products ==4.0.1
- MonadPrompt ==1.0.0.5
- MonadRandom ==0.5.2
@@ -1490,15 +1544,17 @@ default-package-overrides:
- monad-unlift ==0.2.0
- monad-unlift-ref ==0.2.1
- mongoDB ==2.7.0.0
- - monoid-extras ==0.5.1
- monoid-subclasses ==1.0.1
- monoid-transformer ==0.0.4
- mono-traversable ==1.0.15.1
- mono-traversable-instances ==0.1.1.0
- mono-traversable-keys ==0.1.0
- more-containers ==0.2.2.0
- - morpheus-graphql ==0.12.0
- - morpheus-graphql-core ==0.12.0
+ - morpheus-graphql ==0.16.0
+ - morpheus-graphql-client ==0.16.0
+ - morpheus-graphql-core ==0.16.0
+ - morpheus-graphql-subscriptions ==0.16.0
+ - moss ==0.2.0.0
- mountpoints ==1.0.2
- mpi-hs ==0.7.2.0
- mpi-hs-binary ==0.1.1.0
@@ -1508,6 +1564,7 @@ default-package-overrides:
- multiarg ==0.30.0.10
- multi-containers ==0.1.1
- multimap ==1.2.1
+ - multipart ==0.2.1
- multiset ==0.3.4.3
- multistate ==0.8.0.3
- murmur3 ==1.0.4
@@ -1517,8 +1574,9 @@ default-package-overrides:
- mutable-containers ==0.3.4
- mwc-probability ==2.3.1
- mwc-random ==0.14.0.0
+ - mwc-random-monad ==0.7.3.1
- mx-state-codes ==1.0.0.0
- - mysql ==0.1.7
+ - mysql ==0.1.7.2
- mysql-simple ==0.4.5
- n2o ==0.11.1
- nagios-check ==0.3.2
@@ -1530,12 +1588,12 @@ default-package-overrides:
- natural-sort ==0.1.2
- natural-transformation ==0.4
- ndjson-conduit ==0.1.0.5
- - neat-interpolation ==0.3.2.6
+ - neat-interpolation ==0.5.1.2
+ - netcode-io ==0.0.2
- netlib-carray ==0.1
- netlib-comfort-array ==0.0.0.1
- netlib-ffi ==0.1.1
- netpbm ==1.0.3
- - netrc ==0.2.0.0
- nettle ==0.3.0
- netwire ==5.0.3
- netwire-input ==0.0.7
@@ -1564,23 +1622,28 @@ default-package-overrides:
- nonempty-containers ==0.3.4.1
- nonemptymap ==0.0.6.0
- non-empty-sequence ==0.2.0.4
- - nonempty-vector ==0.2.0.2
+ - nonempty-vector ==0.2.1.0
- non-negative ==0.1.2
- not-gloss ==0.7.7.0
- no-value ==1.0.0.0
- nowdoc ==0.1.1.0
- nqe ==0.6.3
+ - nri-env-parser ==0.1.0.2
+ - nri-prelude ==0.2.0.0
- nsis ==0.3.3
- numbers ==3000.2.0.2
- numeric-extras ==0.1
- numeric-prelude ==0.4.3.2
- - numhask ==0.4.0
+ - numhask ==0.6.0.2
- NumInstances ==1.4
- numtype-dk ==0.5.0.2
- nuxeo ==0.3.2
+ - nvim-hs ==2.1.0.4
+ - nvim-hs-contrib ==2.0.0.0
+ - nvim-hs-ghcid ==2.0.0.0
- oauthenticated ==0.2.1.0
- ObjectName ==1.1.0.1
- - o-clock ==1.1.0
+ - o-clock ==1.2.0
- odbc ==0.2.2
- oeis2 ==1.0.4
- ofx ==0.4.4.0
@@ -1592,8 +1655,9 @@ default-package-overrides:
- OneTuple ==0.2.2.1
- Only ==0.1
- oo-prototypes ==0.1.0.0
- - opaleye ==0.6.7006.1
+ - opaleye ==0.7.1.0
- OpenAL ==1.7.0.5
+ - openapi3 ==3.0.0.1
- open-browser ==0.2.1.0
- openexr-write ==0.1.0.2
- OpenGL ==3.0.3.0
@@ -1601,17 +1665,17 @@ default-package-overrides:
- openpgp-asciiarmor ==0.1.2
- opensource ==0.1.1.0
- openssl-streams ==1.2.3.0
- - opentelemetry ==0.4.2
- - opentelemetry-extra ==0.4.2
- - opentelemetry-lightstep ==0.4.2
- - opentelemetry-wai ==0.4.2
+ - opentelemetry ==0.6.1
+ - opentelemetry-extra ==0.6.1
+ - opentelemetry-lightstep ==0.6.1
+ - opentelemetry-wai ==0.6.1
- operational ==0.2.3.5
- operational-class ==0.3.0.0
- - optics ==0.2
- - optics-core ==0.2
- - optics-extra ==0.2
- - optics-th ==0.2
- - optics-vl ==0.2
+ - optics ==0.3
+ - optics-core ==0.3.0.1
+ - optics-extra ==0.3
+ - optics-th ==0.3.0.2
+ - optics-vl ==0.2.1
- optional-args ==1.0.2
- options ==1.2.1.1
- optparse-applicative ==0.15.1.0
@@ -1619,23 +1683,19 @@ default-package-overrides:
- optparse-simple ==0.1.1.3
- optparse-text ==0.1.1.0
- ordered-containers ==0.2.2
- - ormolu ==0.1.3.0
+ - ormolu ==0.1.4.1
- overhang ==1.0.0
- packcheck ==0.5.1
+ - packdeps ==0.6.0.0
- pager ==0.1.1.0
- pagination ==0.2.1
- pagure-cli ==0.2
- - pandoc ==2.9.2.1
- - pandoc-citeproc ==0.17.0.1
- - pandoc-csv2table ==1.0.8
- - pandoc-plot ==0.6.1.0
- - pandoc-pyplot ==2.3.0.1
- - pandoc-types ==1.20
- - pantry ==0.4.0.2
- - papillon ==0.1.1.1
+ - pandoc-types ==1.22
+ - pantry ==0.5.1.4
- parallel ==3.2.2.0
- parallel-io ==0.3.3
- - paripari ==0.6.0.1
+ - parameterized ==0.5.0.0
+ - paripari ==0.7.0.0
- parseargs ==0.2.0.9
- parsec-class ==1.0.0.0
- parsec-numbers ==0.1.0
@@ -1650,14 +1710,18 @@ default-package-overrides:
- password ==2.0.1.1
- password-instances ==2.0.0.1
- path ==0.7.0
+ - path-binary-instance ==0.1.0.1
+ - path-extensions ==0.1.1.0
- path-extra ==0.2.0
- - path-io ==1.6.0
+ - path-io ==1.6.2
+ - path-like ==0.2.0.2
- path-pieces ==0.2.1
- path-text-utf8 ==0.0.1.6
- pathtype ==0.8.1.1
- pathwalk ==0.3.1.2
- pattern-arrows ==0.0.2
- - pcg-random ==0.1.3.6
+ - pava ==0.1.0.0
+ - pcg-random ==0.1.3.7
- pcre-heavy ==1.0.0.2
- pcre-light ==0.4.1.0
- pcre-utils ==0.1.8.1.1
@@ -1670,14 +1734,14 @@ default-package-overrides:
- persist ==0.1.1.5
- persistable-record ==0.6.0.5
- persistable-types-HDBC-pg ==0.0.3.5
- - persistent ==2.10.5.2
+ - persistent ==2.10.5.3
+ - persistent-documentation ==0.1.0.2
- persistent-mysql ==2.10.2.3
- - persistent-pagination ==0.1.1.1
+ - persistent-pagination ==0.1.1.2
- persistent-postgresql ==2.10.1.2
- - persistent-qq ==2.9.2
+ - persistent-qq ==2.9.2.1
- persistent-sqlite ==2.10.6.2
- persistent-template ==2.8.2.3
- - persistent-test ==2.0.3.1
- persistent-typed-db ==0.1.0.1
- pg-harness-client ==0.6.0
- pgp-wordlist ==0.1.0.3
@@ -1703,37 +1767,40 @@ default-package-overrides:
- pipes-safe ==2.3.2
- pipes-wai ==3.2.0
- pkcs10 ==0.2.0.0
+ - pkgtreediff ==0.4
- placeholders ==0.1
- plaid ==0.1.0.4
- - planb-token-introspection ==0.1.4.0
- plotlyhs ==0.2.1
- pointed ==5.0.2
- pointedlist ==0.6.1
- pointless-fun ==1.1.0.6
- poll ==0.0.0.1
- - poly ==0.4.0.0
+ - poly ==0.5.0.0
- poly-arity ==0.1.0
- polynomials-bernstein ==1.1.2
- polyparse ==1.13
- - polysemy ==1.3.0.0
- pooled-io ==0.0.2.2
- port-utils ==0.2.1.0
- posix-paths ==0.2.1.6
- possibly ==1.0.0.0
- postgres-options ==0.2.0.0
- - postgresql-binary ==0.12.2
- - postgresql-libpq ==0.9.4.2
+ - postgresql-binary ==0.12.3.3
+ - postgresql-libpq ==0.9.4.3
+ - postgresql-libpq-notify ==0.2.0.0
- postgresql-orm ==0.5.1
- - postgresql-simple ==0.6.2
- - postgrest ==7.0.0
+ - postgresql-simple ==0.6.3
+ - postgresql-typed ==0.6.1.2
+ - postgrest ==7.0.1
- post-mess-age ==0.2.1.0
- pptable ==0.3.0.0
- pqueue ==1.4.1.3
+ - prairie ==0.0.1.0
- prefix-units ==0.2.0
- prelude-compat ==0.0.0.2
- prelude-safeenum ==0.1.1.2
- prettyclass ==1.0.0.0
- pretty-class ==1.0.1.1
+ - pretty-diff ==0.2.0.3
- pretty-hex ==1.1
- prettyprinter ==1.6.2
- prettyprinter-ansi-terminal ==1.1.2
@@ -1743,29 +1810,35 @@ default-package-overrides:
- prettyprinter-convert-ansi-wl-pprint ==1.1.1
- pretty-relative-time ==0.2.0.0
- pretty-show ==1.10
- - pretty-simple ==3.2.3.0
+ - pretty-simple ==3.3.0.0
- pretty-sop ==0.2.0.3
- pretty-terminal ==0.1.0.0
- - pretty-types ==0.3.0.1
- primes ==0.2.1.0
- - primitive ==0.7.0.1
+ - primitive ==0.7.1.0
- primitive-addr ==0.1.0.2
+ - primitive-extras ==0.8
- primitive-unaligned ==0.1.1.1
+ - primitive-unlifted ==0.1.3.0
- print-console-colors ==0.1.0.0
+ - probability ==0.2.7
- process-extras ==0.7.4
- product-isomorphic ==0.0.3.3
- - product-profunctors ==0.10.0.1
+ - product-profunctors ==0.11.0.1
- profiterole ==0.1
- profunctors ==5.5.2
- projectroot ==0.2.0.1
- project-template ==0.2.1.0
+ - prometheus ==2.2.2
- prometheus-client ==1.0.1
+ - prometheus-wai-middleware ==1.0.1.0
- promises ==0.3
- prompt ==0.1.1.2
- prospect ==0.1.0.0
- proto3-wire ==1.1.0
- protobuf ==0.2.1.3
- protobuf-simple ==0.1.1.0
+ - protocol-buffers ==2.4.17
+ - protocol-buffers-descriptor ==2.4.17
- protocol-radius ==0.0.1.1
- protocol-radius-test ==0.1.0.1
- proto-lens ==0.7.0.0
@@ -1775,7 +1848,7 @@ default-package-overrides:
- proto-lens-protoc ==0.7.0.0
- proto-lens-runtime ==0.7.0.0
- proto-lens-setup ==0.4.0.4
- - protolude ==0.2.4
+ - protolude ==0.3.0
- proxied ==0.3.1
- psqueues ==0.2.7.2
- publicsuffix ==0.20200526
@@ -1783,8 +1856,8 @@ default-package-overrides:
- pureMD5 ==2.1.3
- purescript-bridge ==0.14.0.0
- pushbullet-types ==0.4.1.0
- - pusher-http-haskell ==1.5.1.14
- - pvar ==0.2.0.0
+ - pusher-http-haskell ==2.0.0.2
+ - pvar ==1.0.0.0
- PyF ==0.9.0.2
- qchas ==1.1.0.1
- qm-interpolated-string ==0.3.0.0
@@ -1797,6 +1870,7 @@ default-package-overrides:
- quickcheck-assertions ==0.3.0
- quickcheck-classes ==0.6.4.0
- quickcheck-classes-base ==0.6.1.0
+ - quickcheck-higherorder ==0.1.0.0
- quickcheck-instances ==0.3.23
- quickcheck-io ==0.2.0
- quickcheck-simple ==0.1.1.1
@@ -1805,26 +1879,30 @@ default-package-overrides:
- quickcheck-transformer ==0.3.1.1
- quickcheck-unicode ==1.0.1.0
- quiet ==0.2
- - radius ==0.6.1.0
+ - radius ==0.7.1.0
- rainbow ==0.34.2.2
- rainbox ==0.26.0.0
- ral ==0.1
+ - rampart ==1.1.0.1
- ramus ==0.1.2
- rando ==0.0.0.4
- random ==1.1
- random-bytestring ==0.1.3.2
+ - random-fu ==0.2.7.4
- random-shuffle ==0.0.4
+ - random-source ==0.3.0.8
- random-tree ==0.6.0.5
- range ==0.3.0.2
- Ranged-sets ==0.4.0
- range-set-list ==0.1.3.1
- - rank1dynamic ==0.4.0
- - rank2classes ==1.3.2.1
+ - rank1dynamic ==0.4.1
+ - rank2classes ==1.4.1
- Rasterific ==0.7.5.3
- rasterific-svg ==0.3.3.2
- ratel ==1.0.12
- rate-limit ==1.4.2
- ratel-wai ==1.1.3
+ - rattle ==0.2
- rawfilepath ==0.2.4
- rawstring-qm ==0.2.3.0
- raw-strings-qq ==1.1
@@ -1835,83 +1913,91 @@ default-package-overrides:
- readable ==0.3.1
- read-editor ==0.1.0.2
- read-env-var ==1.0.0.0
- - reanimate ==0.3.3.0
- - reanimate-svg ==0.9.8.0
+ - reanimate ==1.1.2.1
+ - reanimate-svg ==0.13.0.0
- rebase ==1.6.1
- record-dot-preprocessor ==0.2.7
- record-hasfield ==1.0
- records-sop ==0.1.0.3
- - recursion-schemes ==5.1.3
+ - record-wrangler ==0.1.1.0
+ - recursion-schemes ==5.2.1
- reducers ==3.12.3
- refact ==0.3.0.2
- ref-fd ==0.4.0.2
+ - refined ==0.6.1
- reflection ==2.1.6
- reform ==0.2.7.4
- reform-blaze ==0.2.4.3
- reform-hamlet ==0.0.5.3
- - reform-happstack ==0.2.5.3
+ - reform-happstack ==0.2.5.4
- RefSerialize ==0.4.0
+ - ref-tf ==0.4.0.2
- regex ==1.1.0.0
- - regex-applicative ==0.3.3.1
+ - regex-applicative ==0.3.4
- regex-applicative-text ==0.1.0.1
- regex-base ==0.94.0.0
- regex-compat ==0.95.2.0
- regex-compat-tdfa ==0.95.1.4
- regex-pcre ==0.95.0.0
- - regex-pcre-builtin ==0.95.1.2.8.43
+ - regex-pcre-builtin ==0.95.1.3.8.43
- regex-posix ==0.96.0.0
- regex-tdfa ==1.3.1.0
- regex-with-pcre ==1.1.0.0
- - registry ==0.1.9.3
+ - registry ==0.2.0.1
- reinterpret-cast ==0.1.0
- relapse ==1.0.0.0
- relational-query ==0.12.2.3
- relational-query-HDBC ==0.7.2.0
- relational-record ==0.2.2.0
- relational-schemas ==0.1.8.0
+ - reliable-io ==0.0.1
- relude ==0.7.0.0
- renderable ==0.2.0.1
- replace-attoparsec ==1.4.2.0
- replace-megaparsec ==1.4.3.0
- - repline ==0.2.2.0
- - req ==3.2.0
+ - repline ==0.4.0.0
+ - req ==3.8.0
- req-conduit ==1.0.0
- rerebase ==1.6.1
+ - resistor-cube ==0.0.1.2
- resolv ==0.1.2.0
- resource-pool ==0.2.3.2
- resourcet ==1.2.4.2
+ - resourcet-pool ==0.1.0.0
- result ==0.2.6.0
- rethinkdb-client-driver ==0.0.25
- retry ==0.8.1.2
- rev-state ==0.1.2
- rfc1751 ==0.1.3
- - rfc5051 ==0.1.0.4
- - rhine ==0.6.0
- - rhine-gloss ==0.6.0.1
+ - rfc5051 ==0.2
+ - rhine ==0.7.0
+ - rhine-gloss ==0.7.0
- rigel-viz ==0.2.0.0
- rio ==0.1.19.0
- rio-orphans ==0.1.1.0
- rio-prettyprint ==0.1.1.0
- roc-id ==0.1.0.0
- rocksdb-haskell ==1.0.1
- - rocksdb-query ==0.3.2
+ - rocksdb-haskell-jprupp ==2.1.3
+ - rocksdb-query ==0.4.2
- roles ==0.2.0.0
- rope-utf16-splay ==0.3.1.0
- rosezipper ==0.2
- rot13 ==0.2.0.1
- - rpmbuild-order ==0.3.1
+ - rpmbuild-order ==0.4.3.1
- RSA ==2.4.1
- runmemo ==1.0.0.1
+ - rvar ==0.2.0.6
- safe ==0.3.19
- safecopy ==0.10.3
- safe-decimal ==0.2.0.0
- safe-exceptions ==0.1.7.1
- - safe-exceptions-checked ==0.1.0
- safe-foldable ==0.1.0.0
- safeio ==0.0.5.0
- safe-json ==1.1.1
- safe-money ==0.9
- SafeSemaphore ==0.10.1
+ - safe-tensor ==0.2.1.0
- salak ==0.3.6
- salak-yaml ==0.3.5.3
- saltine ==0.1.1.0
@@ -1925,20 +2011,23 @@ default-package-overrides:
- scalpel-core ==0.6.2
- scanf ==0.1.0.0
- scanner ==0.3.1
- - scheduler ==1.4.2.3
+ - scheduler ==1.5.0
- scientific ==0.3.6.2
- - scotty ==0.11.6
+ - scotty ==0.12
- scrypt ==0.5.0
- - sdl2 ==2.5.2.0
+ - sdl2 ==2.5.3.0
- sdl2-gfx ==0.2
- sdl2-image ==2.0.0
- sdl2-mixer ==1.1.0
- sdl2-ttf ==2.1.1
- search-algorithms ==0.3.1
- - secp256k1-haskell ==0.2.5
+ - secp256k1-haskell ==0.5.0
- securemem ==0.1.10
- selda ==0.5.1.0
- selda-json ==0.1.1.0
+ - selda-postgresql ==0.1.8.1
+ - selda-sqlite ==0.1.7.1
+ - selections ==0.3.0.0
- selective ==0.4.1.1
- semialign ==1.1.0.1
- semialign-indexed ==1.1
@@ -1948,64 +2037,56 @@ default-package-overrides:
- semigroups ==0.19.1
- semirings ==0.5.4
- semiring-simple ==1.0.0.1
- - semver ==0.3.4
+ - semver ==0.4.0.1
- sendfile ==0.7.11.1
- seqalign ==0.2.0.4
- - sequence-formats ==1.4.1
+ - seqid ==0.6.2
+ - seqid-streams ==0.7.2
+ - sequence-formats ==1.5.1.4
- sequenceTools ==1.4.0.5
- serf ==0.1.1.0
- serialise ==0.2.3.0
- - servant ==0.16.2
- - servant-auth ==0.3.2.0
- - servant-auth-server ==0.4.5.1
- - servant-auth-swagger ==0.2.10.0
- - servant-blaze ==0.9
- - servant-cassava ==0.10
- - servant-checked-exceptions ==2.2.0.0
- - servant-checked-exceptions-core ==2.2.0.0
- - servant-client ==0.16.0.1
- - servant-client-core ==0.16
+ - servant ==0.18.2
+ - servant-blaze ==0.9.1
+ - servant-client ==0.18.2
+ - servant-client-core ==0.18.2
- servant-conduit ==0.15.1
- - servant-docs ==0.11.4
- - servant-docs-simple ==0.2.0.1
- - servant-elm ==0.7.2
+ - servant-docs ==0.11.8
- servant-errors ==0.1.6.0
- - servant-foreign ==0.15
- - servant-js ==0.9.4.2
- - servant-JuicyPixels ==0.3.0.5
- - servant-lucid ==0.9
+ - servant-exceptions ==0.2.1
+ - servant-exceptions-server ==0.2.1
+ - servant-foreign ==0.15.3
+ - servant-github-webhook ==0.4.2.0
+ - servant-http-streams ==0.18.2
- servant-machines ==0.15.1
- - servant-mock ==0.8.5
+ - servant-multipart ==0.12
+ - servant-openapi3 ==2.0.1.1
- servant-pipes ==0.15.2
- - servant-purescript ==0.10.0.0
- - servant-rawm ==0.3.2.0
- - servant-server ==0.16.2
- - servant-static-th ==0.2.4.0
- - servant-subscriber ==0.7.0.0
- - servant-swagger ==1.1.7.1
- - servant-swagger-ui ==0.3.4.3.23.11
- - servant-swagger-ui-core ==0.3.3
- - servant-swagger-ui-redoc ==0.3.3.1.22.3
- - servant-websockets ==2.0.0
- - servant-yaml ==0.1.0.1
- - serverless-haskell ==0.11.3
+ - servant-rawm ==1.0.0.0
+ - servant-server ==0.18.2
+ - servant-swagger ==1.1.10
+ - servant-swagger-ui ==0.3.4.3.37.2
+ - servant-swagger-ui-core ==0.3.4
+ - serverless-haskell ==0.12.4
- serversession ==1.0.1
- serversession-frontend-wai ==1.0
- ses-html ==0.4.0.0
- set-cover ==0.1.1
- setenv ==0.1.1.3
- setlocale ==1.0.0.9
- - sexp-grammar ==2.1.0
+ - sexp-grammar ==2.3.0
- SHA ==1.6.4.4
- - shake-plus ==0.1.10.0
+ - shake-plus ==0.3.3.1
+ - shake-plus-extended ==0.4.1.0
- shakespeare ==2.0.25
- shared-memory ==0.2.0.0
- - shell-conduit ==4.7.0
+ - shell-conduit ==5.0.0
- shell-escape ==0.2.0
- shellmet ==0.0.3.1
- shelltestrunner ==1.9
- shell-utility ==0.1
- shelly ==1.9.0
+ - shikensu ==0.3.11
- should-not-typecheck ==2.1.0
- show-combinators ==0.2.0.0
- siggy-chardust ==1.0.0
@@ -2018,37 +2099,39 @@ default-package-overrides:
- simple-log ==0.9.12
- simple-reflect ==0.3.3
- simple-sendfile ==0.2.30
- - simplest-sqlite ==0.1.0.2
- simple-templates ==1.0.0
- simple-vec3 ==0.6.0.1
- simplistic-generics ==2.0.0
- since ==0.0.0
- singleton-bool ==0.1.5
- singleton-nats ==0.4.5
- - singletons ==2.6
+ - singletons ==2.7
- singletons-presburger ==0.3.0.1
- siphash ==1.0.3
- sitemap-gen ==0.1.0.0
- - size-based ==0.1.2.0
- - sized ==0.4.0.0
+ - sized ==0.8.0.0
- skein ==1.0.9.4
- skews ==0.1.0.3
- skip-var ==0.1.1.0
- - skylighting ==0.8.5
- - skylighting-core ==0.8.5
+ - skylighting ==0.10.1
+ - skylighting-core ==0.10.1
- slack-api ==0.12
+ - slack-progressbar ==0.1.0.1
- slist ==0.1.1.0
- - smallcheck ==1.1.7
+ - slynx ==0.5.0
+ - smallcheck ==1.2.0
- smash ==0.1.1.0
- smash-aeson ==0.1.0.0
- smash-lens ==0.1.0.1
- smash-microlens ==0.1.0.0
- smoothie ==0.4.2.11
+ - smtp-mail ==0.3.0.0
- snap-blaze ==0.2.1.5
- snap-core ==1.0.4.2
- - snap-server ==1.1.1.2
+ - snap-server ==1.1.2.0
- snowflake ==0.1.1.1
- soap ==0.2.3.6
+ - soap-openssl ==0.1.0.2
- soap-tls ==0.1.1.4
- socks ==0.6.1
- some ==1.0.1
@@ -2066,21 +2149,22 @@ default-package-overrides:
- speedy-slice ==0.3.1
- Spintax ==0.3.5
- splice ==0.6.1.1
+ - splint ==1.0.1.2
- split ==0.2.3.4
- splitmix ==0.0.5
- spoon ==0.3.1
- spreadsheet ==0.1.3.8
- sqlcli ==0.2.2.0
- sqlcli-odbc ==0.2.0.1
+ - sqlite-simple ==0.4.18.0
- sql-words ==0.1.6.4
+ - squeal-postgresql ==0.7.0.1
- squeather ==0.4.0.0
- srcloc ==0.5.1.2
- - stache ==2.1.1
- - stackcollapse-ghc ==0.0.1.2
+ - stache ==2.2.0
+ - stackcollapse-ghc ==0.0.1.3
- stack-templatizer ==0.1.0.2
- - starter ==0.3.0
- stateref ==0.3
- - statestack ==0.3
- StateVar ==1.2
- static-text ==0.2.0.6
- statistics ==0.15.2.0
@@ -2089,53 +2173,60 @@ default-package-overrides:
- step-function ==0.2
- stm-chans ==3.0.0.4
- stm-conduit ==4.0.1
+ - stm-containers ==1.2
- stm-delay ==0.1.1.1
- stm-extras ==0.1.0.3
+ - stm-hamt ==1.2.0.4
+ - stm-lifted ==2.5.0.0
+ - STMonadTrans ==0.4.4
- stm-split ==0.0.2.1
- stopwatch ==0.1.0.6
- storable-complex ==0.2.3.0
+ - storable-endian ==0.2.6
- storable-record ==0.0.5
- storable-tuple ==0.0.3.3
- storablevector ==0.2.13.1
- - stratosphere ==0.53.0
+ - store ==0.7.8
+ - store-core ==0.4.4.4
+ - store-streaming ==0.2.0.3
+ - stratosphere ==0.59.1
- streaming ==0.2.3.0
- - streaming-bytestring ==0.1.6
+ - streaming-attoparsec ==1.0.0.1
+ - streaming-bytestring ==0.2.0
- streaming-commons ==0.2.2.1
- - streamly ==0.7.2
- - streamly-bytestring ==0.1.2
- streams ==3.3
- - strict ==0.3.2
- - strict-base-types ==0.6.1
+ - strict ==0.4
- strict-concurrency ==0.2.4.3
- strict-list ==0.1.5
- - strict-tuple ==0.1.3
+ - strict-tuple ==0.1.4
- strict-tuple-lens ==0.1.0.1
- stringbuilder ==0.5.1
- string-class ==0.1.7.0
- string-combinators ==0.6.0.5
- string-conv ==0.1.2
- string-conversions ==0.4.0.1
- - string-interpolate ==0.2.1.0
+ - string-interpolate ==0.3.0.2
- string-qq ==0.0.4
+ - string-random ==0.1.3.0
- stringsearch ==0.3.6.6
- string-transform ==1.1.1
- stripe-concepts ==1.0.2.4
- - stripe-signature ==1.0.0.6
+ - stripe-core ==2.6.2
+ - stripe-haskell ==2.6.2
+ - stripe-http-client ==2.6.2
+ - stripe-tests ==2.6.2
- strive ==5.0.12
- - structs ==0.1.3
+ - structs ==0.1.4
- structured ==0.1
- - structured-cli ==2.5.2.0
- - stylish-haskell ==0.11.0.3
- - summoner ==2.0.1.1
- - summoner-tui ==2.0.1.1
+ - structured-cli ==2.6.0.0
+ - subcategories ==0.1.0.0
- sum-type-boilerplate ==0.1.1
- sundown ==0.6
- superbuffer ==0.3.1.1
- - svg-builder ==0.1.1
- - SVGFonts ==1.7.0.1
- svg-tree ==0.6.2.4
- swagger ==0.3.0
- - swagger2 ==2.5
+ - swagger2 ==2.6
+ - sweet-egison ==0.1.1.3
- swish ==0.10.0.4
- syb ==0.7.1
- symbol ==0.2.4
@@ -2148,7 +2239,6 @@ default-package-overrides:
- system-filepath ==0.4.14
- system-info ==0.5.1
- tabular ==0.2.2.8
- - taffybar ==3.2.2
- tagchup ==0.4.1.1
- tagged ==0.8.6
- tagged-binary ==0.2.0.1
@@ -2162,22 +2252,24 @@ default-package-overrides:
- tar-conduit ==0.3.2
- tardis ==0.4.1.0
- tasty ==1.2.3
- - tasty-ant-xml ==1.1.6
+ - tasty-ant-xml ==1.1.7
- tasty-dejafu ==2.0.0.6
- tasty-discover ==4.2.2
- tasty-expected-failure ==0.11.1.2
- tasty-golden ==2.3.3.2
- tasty-hedgehog ==1.0.0.2
- - tasty-hspec ==1.1.5.1
+ - tasty-hspec ==1.1.6
- tasty-hunit ==0.10.0.2
+ - tasty-hunit-compat ==0.2
- tasty-kat ==0.0.3
- tasty-leancheck ==0.0.1
- - tasty-lua ==0.2.3
+ - tasty-lua ==0.2.3.1
- tasty-program ==1.0.5
- tasty-quickcheck ==0.10.1.1
- - tasty-rerun ==1.1.17
+ - tasty-rerun ==1.1.18
- tasty-silver ==3.1.15
- tasty-smallcheck ==0.8.1
+ - tasty-test-reporter ==0.1.1.4
- tasty-th ==0.1.7
- tasty-wai ==0.1.1.1
- Taxonomy ==2.1.0
@@ -2190,6 +2282,7 @@ default-package-overrides:
- temporary-resourcet ==0.1.0.1
- tensorflow-test ==0.1.0.0
- tensors ==0.1.4
+ - termbox ==0.3.0
- terminal-progress-bar ==0.4.1
- terminal-size ==0.3.2.1
- test-framework ==0.8.2.0
@@ -2197,13 +2290,14 @@ default-package-overrides:
- test-framework-leancheck ==0.0.1
- test-framework-quickcheck2 ==0.3.0.5
- test-framework-smallcheck ==0.2
- - test-framework-th ==0.2.4
- - testing-feat ==1.1.0.0
+ - test-fun ==0.1.0.0
- testing-type-modifiers ==0.1.0.1
- texmath ==0.12.0.3
+ - text-ansi ==0.1.0.1
- text-binary ==0.2.1.1
- text-builder ==0.6.6.1
- text-conversions ==0.3.1
+ - text-format ==0.3.2
- text-icu ==0.7.0.1
- text-latin1 ==0.3.1
- text-ldap ==0.1.1.13
@@ -2212,33 +2306,36 @@ default-package-overrides:
- text-metrics ==0.3.0
- text-postgresql ==0.0.3.1
- text-printer ==0.5.0.1
+ - text-regex-replace ==0.1.1.3
- text-region ==0.3.1.0
- text-short ==0.1.3
- - text-show ==3.8.5
+ - text-show ==3.9
- text-show-instances ==3.8.4
- text-zipper ==0.10.1
- tfp ==1.0.1.1
- tf-random ==0.5
- - th-abstraction ==0.3.2.0
+ - th-abstraction ==0.4.0.0
- th-bang-compat ==0.0.1.0
+ - th-compat ==0.1
- th-constraint-compat ==0.0.1.0
- th-data-compat ==0.1.0.0
- - th-desugar ==1.10
+ - th-desugar ==1.11
- th-env ==0.1.0.2
- these ==1.1.1.1
- these-lens ==1.0.1.1
- these-optics ==1.0.1.1
+ - these-skinny ==0.7.4
- th-expand-syns ==0.4.6.0
- th-extras ==0.0.0.4
- th-lift ==0.8.2
- - th-lift-instances ==0.1.17
+ - th-lift-instances ==0.1.18
- th-nowq ==0.1.0.5
- - th-orphans ==0.13.10
+ - th-orphans ==0.13.11
- th-printf ==0.7
- thread-hierarchy ==0.3.0.2
- thread-local-storage ==0.2
- threads ==0.5.1.6
- - thread-supervisor ==0.1.0.1
+ - thread-supervisor ==0.2.0.0
- threepenny-gui ==0.9.0.0
- th-reify-compat ==0.0.1.5
- th-reify-many ==0.1.9
@@ -2246,11 +2343,12 @@ default-package-overrides:
- through-text ==0.1.0.0
- throwable-exceptions ==0.1.0.9
- th-strict-compat ==0.1.0.1
- - th-test-utils ==1.0.2
+ - th-test-utils ==1.1.0
+ - th-utilities ==0.2.4.1
- thyme ==0.3.5.5
- - tidal ==1.5.2
+ - tidal ==1.6.1
- tile ==0.3.0.0
- - time-compat ==1.9.3
+ - time-compat ==1.9.4
- timeit ==2.0
- timelens ==0.2.0.2
- time-lens ==0.4.0.2
@@ -2258,25 +2356,28 @@ default-package-overrides:
- time-locale-vietnamese ==1.0.0.0
- time-manager ==0.0.0
- time-parsers ==0.1.2.1
- - timerep ==2.0.0.2
+ - timerep ==2.0.1.0
+ - timer-wheel ==0.3.0
- time-units ==1.0.0
- timezone-olson ==0.2.0
- timezone-series ==0.1.9
- tinylog ==0.15.0
- titlecase ==1.0.1
- - tldr ==0.6.4
+ - tldr ==0.9.0
- tls ==1.5.4
- tls-debug ==0.4.8
- tls-session-manager ==0.0.4
+ - tlynx ==0.5.0
- tmapchan ==0.0.3
- tmapmvar ==0.0.4
- tmp-postgres ==1.34.1.0
- tomland ==1.3.1.0
- - tonalude ==0.1.1.0
+ - tonalude ==0.1.1.1
- topograph ==1.0.0.1
- torsor ==0.1
- tostring ==0.2.1.1
- - tracing ==0.0.5.1
+ - tracing ==0.0.5.2
+ - tracing-control ==0.0.6
- transaction ==0.1.1.3
- transformers-base ==0.4.5.2
- transformers-bifunctors ==0.1
@@ -2287,9 +2388,8 @@ default-package-overrides:
- tree-fun ==0.8.1.0
- trifecta ==2.1
- triplesec ==0.2.2.1
- - trivial-constraint ==0.6.0.0
- tsv2csv ==0.1.0.2
- - ttc ==0.2.3.0
+ - ttc ==0.3.0.0
- ttl-hashtables ==1.4.1.0
- ttrie ==0.1.2.1
- tuple ==0.3.0.2
@@ -2303,37 +2403,38 @@ default-package-overrides:
- type-equality ==1
- type-errors ==0.2.0.0
- type-errors-pretty ==0.0.1.1
- - type-fun ==0.1.1
- type-hint ==0.1
- type-level-integers ==0.0.1
- type-level-kv-list ==1.1.0
+ - type-level-natural-number ==2.0
- type-level-numbers ==0.1.1.1
- type-map ==0.1.6.0
- - type-natural ==0.8.3.1
- - typenums ==0.1.2.1
- - type-of-html ==1.5.2.0
+ - type-natural ==0.9.0.0
+ - type-of-html ==1.6.1.2
- type-of-html-static ==0.1.0.2
- type-operators ==0.2.0.0
- typerep-map ==0.3.3.0
- type-spec ==0.4.0.0
- - tzdata ==0.1.20190911.0
+ - tzdata ==0.2.20201021.0
- ua-parser ==0.7.5.1
- uglymemo ==0.1.0.1
- ulid ==0.3.0.0
- unagi-chan ==0.4.1.3
- - unbounded-delays ==0.1.1.0
+ - unbounded-delays ==0.1.1.1
- unboxed-ref ==0.4.0.0
- - unboxing-vector ==0.1.1.0
+ - unboxing-vector ==0.2.0.0
+ - uncaught-exception ==0.1.0
- uncertain ==0.3.1.0
- unconstrained ==0.1.0.2
- unexceptionalio ==0.5.1
- unexceptionalio-trans ==0.5.1
- unicode ==0.0.1.1
- unicode-show ==0.1.0.4
- - unicode-transforms ==0.3.7
+ - unicode-transforms ==0.3.7.1
- unification-fd ==0.10.0.1
- union-find ==0.2
- - uniplate ==1.6.12
+ - unipatterns ==0.0.0.0
+ - uniplate ==1.6.13
- uniprot-kb ==0.1.2.0
- uniq-deep ==1.2.0
- unique ==0
@@ -2347,21 +2448,20 @@ default-package-overrides:
- universe-instances-trans ==1.1
- universe-reverse-instances ==1.1
- universe-some ==1.2
- - universum ==1.6.1
+ - universum ==1.7.1
- unix-bytestring ==0.3.7.3
- unix-compat ==0.5.2
- unix-time ==0.4.7
- - unliftio ==0.2.13
- - unliftio-core ==0.1.2.0
+ - unliftio ==0.2.13.1
+ - unliftio-core ==0.2.0.1
- unliftio-pool ==0.2.1.1
- unlit ==0.4.0.0
- - unordered-containers ==0.2.10.0
- - unordered-intmap ==0.1.1
+ - unordered-containers ==0.2.13.0
- unsafe ==0.0
- urbit-hob ==0.3.3
- uri-bytestring ==0.3.2.2
- uri-bytestring-aeson ==0.1.0.8
- - uri-encode ==1.5.0.6
+ - uri-encode ==1.5.0.7
- url ==2.1.3
- users ==0.5.0.0
- utf8-conversions ==0.1.0.4
@@ -2381,7 +2481,7 @@ default-package-overrides:
- validity-primitive ==0.0.0.1
- validity-scientific ==0.2.0.3
- validity-text ==0.3.1.1
- - validity-time ==0.3.0.0
+ - validity-time ==0.4.0.0
- validity-unordered-containers ==0.2.0.3
- validity-uuid ==0.1.0.3
- validity-vector ==0.2.0.3
@@ -2402,53 +2502,60 @@ default-package-overrides:
- vector-split ==1.0.0.2
- vector-th-unbox ==0.2.1.7
- verbosity ==0.4.0.0
- - versions ==3.5.4
+ - versions ==4.0.1
- vformat ==0.14.1.0
- vformat-aeson ==0.1.0.1
- vformat-time ==0.1.0.0
- ViennaRNAParser ==1.3.3
+ - vinyl ==0.13.0
- void ==0.7.3
- - vty ==5.28.2
+ - vty ==5.32
- wai ==3.2.2.1
- wai-app-static ==3.1.7.2
- wai-conduit ==3.0.0.4
- wai-cors ==0.2.7
- wai-enforce-https ==0.0.2.1
- wai-eventsource ==3.0.0
- - wai-extra ==3.0.32
+ - wai-extra ==3.1.3
+ - wai-feature-flags ==0.1.0.1
- wai-handler-launch ==3.0.3.1
- wai-logger ==2.3.6
+ - wai-middleware-auth ==0.2.3.1
- wai-middleware-caching ==0.1.0.2
- wai-middleware-clacks ==0.1.0.1
- - wai-middleware-static ==0.8.3
+ - wai-middleware-static ==0.9.0
+ - wai-rate-limit ==0.1.0.0
+ - wai-rate-limit-redis ==0.1.0.0
+ - wai-saml2 ==0.2.1.2
- wai-session ==0.3.3
- wai-slack-middleware ==0.2.0
- wai-websockets ==3.0.1.2
+ - wakame ==0.1.0.0
- warp ==3.3.13
- - warp-tls ==3.2.12
+ - warp-tls ==3.3.0
- warp-tls-uid ==0.2.0.6
- wave ==0.2.0
- wcwidth ==0.0.2
+ - webby ==1.0.1
- webdriver ==0.9.0.1
- webex-teams-api ==0.2.0.1
- webex-teams-conduit ==0.2.0.1
- webex-teams-pipes ==0.2.0.1
+ - webgear-server ==0.2.0
- webrtc-vad ==0.1.0.3
- websockets ==0.12.7.1
- websockets-snap ==0.10.3.1
- weigh ==0.0.16
- wide-word ==0.1.1.1
- wikicfp-scraper ==0.1.0.11
- - wild-bind ==0.1.2.6
- - wild-bind-x11 ==0.2.0.10
- Win32 ==2.6.1.0
- Win32-notify ==0.3.0.3
- windns ==0.1.0.1
+ - witch ==0.0.0.3
- witherable-class ==0
- - within ==0.1.1.0
+ - within ==0.2.0.1
- with-location ==0.1.0
- with-utf8 ==1.0.2.1
- - witness ==0.4
- wizards ==1.0.3
- wl-pprint-annotated ==0.1.0.1
- wl-pprint-console ==0.1.0.2
@@ -2478,7 +2585,7 @@ default-package-overrides:
- xdg-userdirs ==0.1.0.2
- xeno ==0.4.2
- xls ==0.1.3
- - xlsx ==0.8.1
+ - xlsx ==0.8.2
- xlsx-tabular ==0.2.2.1
- xml ==1.3.14
- xml-basic ==0.1.3.1
@@ -2487,7 +2594,6 @@ default-package-overrides:
- xmlgen ==0.6.2.2
- xml-hamlet ==0.5.0.1
- xml-helpers ==1.0.0
- - xml-html-qq ==0.1.0.1
- xml-indexed-cursor ==0.1.1.0
- xml-lens ==0.2
- xml-picklers ==0.3.6
@@ -2498,26 +2604,22 @@ default-package-overrides:
- xmonad-contrib ==0.16
- xmonad-extras ==0.15.2
- xss-sanitize ==0.3.6
- - xturtle ==0.2.0.0
- xxhash-ffi ==0.2.0.0
- yaml ==0.11.5.0
- - yamlparse-applicative ==0.1.0.1
+ - yamlparse-applicative ==0.1.0.2
- yesod ==1.6.1.0
- - yesod-auth ==1.6.10
- - yesod-auth-fb ==1.10.1
- - yesod-auth-hashdb ==1.7.1.2
+ - yesod-auth ==1.6.10.1
+ - yesod-auth-hashdb ==1.7.1.5
- yesod-bin ==1.6.0.6
- - yesod-core ==1.6.18.4
+ - yesod-core ==1.6.18.7
- yesod-fb ==0.6.1
- yesod-form ==1.6.7
- - yesod-form-bootstrap4 ==3.0.0
- yesod-gitrev ==0.2.1
- yesod-newsfeed ==1.7.0.0
- - yesod-persistent ==1.6.0.4
- - yesod-recaptcha2 ==1.0.1
+ - yesod-persistent ==1.6.0.5
- yesod-sitemap ==1.6.0
- yesod-static ==1.6.1.0
- - yesod-test ==1.6.10
+ - yesod-test ==1.6.11
- yesod-websockets ==0.3.0.2
- yes-precure5-command ==5.5.3
- yi-rope ==0.11
@@ -2525,13 +2627,16 @@ default-package-overrides:
- yjtools ==0.9.18
- yoga ==0.0.0.5
- youtube ==0.2.1.1
- - zasni-gerna ==0.0.7.1
+ - zenacy-html ==2.0.2
+ - zenacy-unicode ==1.0.0
- zero ==0.1.5
- zeromq4-haskell ==0.8.0
- zeromq4-patterns ==0.3.1.0
- zim-parser ==0.2.1.0
- - zip ==1.5.0
+ - zio ==0.1.0.2
+ - zip ==1.6.0
- zip-archive ==0.4.1
+ - zipper-extra ==0.1.3.2
- zippers ==0.3
- zip-stream ==0.2.0.1
- zlib ==0.6.2.2
@@ -2539,91 +2644,25 @@ default-package-overrides:
- zlib-lens ==0.1.2.1
- zot ==0.0.3
- zstd ==0.1.2.0
+ - ztail ==1.2.0.2
+ - zydiskell ==0.2.0.0
extra-packages:
- - aeson < 0.8 # newer versions don't work with GHC 7.6.x or earlier
- - aeson == 1.5.2.0 # needed for fourmolu 0.1.0.0, but 1.5.3 is to new for our purpose
- - aeson-pretty < 0.8 # required by elm compiler
- - Agda == 2.6.1 # allows the agdaPackage set to be fixed to this version so that it won't break when another agda version is released.
- - ansi-terminal == 0.10.3 # required by cabal-plan, and policeman in ghc-8.8.x
- - apply-refact < 0.4 # newer versions don't work with GHC 8.0.x
- - apply-refact == 0.6.0.0 # works with GHC 8.6.x https://hackage.haskell.org/package/apply-refact/changelog
- - apply-refact == 0.7.0.0 # works with GHC 8.8.x https://hackage.haskell.org/package/apply-refact/changelog
- - apply-refact == 0.8.0.0 # works with GHC 8.10.x https://hackage.haskell.org/package/apply-refact/changelog
- - binary > 0.7 && < 0.8 # keep a 7.x major release around for older compilers
- - binary > 0.8 && < 0.9 # keep a 8.x major release around for older compilers
- Cabal == 2.2.* # required for jailbreak-cabal etc.
- Cabal == 2.4.* # required for cabal-install etc.
- - colour < 2.3.4 # newer versions don't support GHC 7.10.x
- - conduit >=1.1 && <1.3 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - conduit-extra >=1.1 && <1.3 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - containers < 0.5 # required to build alex with GHC 6.12.3
- - control-monad-free < 0.6 # newer versions don't compile with anything but GHC 7.8.x
- - dbus <1 # for xmonad-0.26
- - deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3
- dhall == 1.29.0 # required for spago 0.14.0.
- Diff < 0.4 # required by liquidhaskell-0.8.10.2: https://github.com/ucsd-progsys/liquidhaskell/issues/1729
- - doctemplates == 0.8 # required by pandoc-2.9.x
- - generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x
- ghc-tcplugins-extra ==0.3.2 # required for polysemy-plugin 0.2.5.0
- - gi-gdk == 3.0.23 # required for gi-pango 1.0.23
- - gi-gtk == 3.0.35 # required for gi-pango 1.0.23
- - gloss < 1.9.3 # new versions don't compile with GHC 7.8.x
- - haddock == 2.22.* # required on GHC 8.0.x
- haddock == 2.23.* # required on GHC < 8.10.x
- haddock-api == 2.23.* # required on GHC < 8.10.x
- haddock-library ==1.7.* # required by stylish-cabal-0.5.0.0
- - happy <1.19.6 # newer versions break Agda
- happy == 1.19.9 # for purescript
- - haskell-gi-overloading == 0.0 # gi-* packages use this dependency to disable overloading support
- - haskell-src-exts == 1.19.* # required by hindent and structured-haskell-mode
- hinotify == 0.3.9 # for xmonad-0.26: https://github.com/kolmodin/hinotify/issues/29
- - hoogle == 5.0.14 # required by hie-hoogle
- - hslua == 1.1.2 # required for pandoc 2.10
- - html-conduit ^>= 1.2 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - http-conduit ^>= 2.2 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - inline-c < 0.6 # required on GHC 8.0.x
- - inline-c-cpp < 0.2 # required on GHC 8.0.x
- - lens-labels == 0.1.* # required for proto-lens-descriptors
- - megaparsec >= 7.0.4 && < 8 # required for idris: https://github.com/idris-lang/Idris-dev/issues/4826
- - mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x
- - mtl-prelude < 2 # required for to build postgrest on mtl 2.1.x platforms
- - network == 2.6.3.1 # newer versions don't compile with GHC 7.4.x and below
- - network == 3.0.* # required by network-bsd, HTTP, and many others (2019-04-30)
- - ormolu == 0.0.5.0 # required by haskell-language-server
- - pandoc-types == 1.21 # required by for pandoc_2_10_1
- - pantry == 0.2.0.0 # required by stack-2.1.3.1
- - parallel == 3.2.0.3 # newer versions don't work with GHC 6.12.3
- - patience ^>= 0.1 # required by chell-0.4.x
- - persistent >=2.5 && <2.8 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - persistent-sqlite < 2.7 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - prettyprinter == 1.6.1 # required by ghc 8.8.x, and dhall-1.29.0
- - primitive == 0.5.1.* # required to build alex with GHC 6.12.3
- - QuickCheck < 2 # required by test-framework-quickcheck and its users
- - repline == 0.3.* # required by dhall-0.32.x
- resolv == 0.1.1.2 # required to build cabal-install-3.0.0.0 with pre ghc-8.8.x
- - resourcet ==1.1.* # pre-lts-11.x versions neeed by git-annex 6.20180227
- - seqid < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
- - seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
- - shelly ==1.8.1 # ghcjs depends on shelly < 1.9
- - split < 0.2 # newer versions don't work with GHC 6.12.3
- - tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x
- - transformers == 0.4.3.* # the latest version isn't supported by mtl yet
- - vector < 0.10.10 # newer versions don't work with GHC 6.12.3
- - xml-conduit ^>= 1.7 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod ^>= 1.4 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod-core < 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod-form < 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod-persistent < 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod-static ^>= 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- - yesod-test ^>= 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- immortal == 0.2.2.1 # required by Hasura 1.3.1, 2020-08-20
- dependent-map == 0.2.4.0 # required by Hasura 1.3.1, 2020-08-20
- dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20
- - witherable == 0.3.2 # required by Hasura 1.3.1, 2020-08-20
- - protolude == 0.3.0 # required by Hasura 1.3.1, 2020-08-20
- - optics-core == 0.3.0.1 # required by Hasura 1.3.1, 2020-08-20
- - base-compat == 0.11.1 # required by Hasura 1.3.1, 2020-08-20
+ - network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15
package-maintainers:
peti:
@@ -2660,11 +2699,14 @@ package-maintainers:
# - pipes-mongodb
- streaming-wai
kiwi:
- - Unique
+ - config-schema
+ - config-value
- glirc
+ - irc-core
- matterhorn
- mattermost-api
- mattermost-api-qc
+ - Unique
psibi:
- path-pieces
- persistent
@@ -2676,8 +2718,8 @@ package-maintainers:
roberth:
- arion-compose
- hercules-ci-agent
- - hercules-ci-api-core
- hercules-ci-api-agent
+ - hercules-ci-api-core
cdepillabout:
- pretty-simple
- spago
@@ -2738,6 +2780,8 @@ unsupported-platforms:
sdl2-mixer: [ x86_64-darwin ]
sdl2-ttf: [ x86_64-darwin ]
tokyotyrant-haskell: [ x86_64-darwin ]
+ vulkan: [ i686-linux, armv7l-linux ]
+ VulkanMemoryAllocator: [ i686-linux, armv7l-linux ]
Win32-console: [ i686-linux, x86_64-linux, x86_64-darwin ]
Win32-dhcp-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
Win32-errors: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -2772,6 +2816,7 @@ dont-distribute-packages:
- accelerate-io-JuicyPixels
- accelerate-io-repa
- accelerate-io-vector
+ - accelerate-kullback-liebler
- accelerate-llvm-ptx
- bindings-yices
- boolector
@@ -2798,7 +2843,10 @@ dont-distribute-packages:
- yices-painless
# these packages don't evaluate because they have broken (system) dependencies
+ - XML
- comark
+ - couch-simple
+ - diagrams-hsqml
- diagrams-reflex
- dialog
- fltkhs-demos
@@ -2808,14 +2856,27 @@ dont-distribute-packages:
- ghcjs-dom-hello
- ghcjs-dom-webkit
- gi-javascriptcore
+ - gi-webkit
- gi-webkit2
- gi-webkit2webextension
- - gi-webkit
- gsmenu
- haste-gapi
- haste-perch
- hbro
- hplayground
+ - hs-mesos
+ - hsqml
+ - hsqml-datamodel
+ - hsqml-datamodel-vinyl
+ - hsqml-datemodel-vinyl
+ - hsqml-demo-manic
+ - hsqml-demo-morris
+ - hsqml-demo-notes
+ - hsqml-demo-notes
+ - hsqml-demo-samples
+ - hsqml-morris
+ - hsqml-morris
+ - hstorchat
- imprevu-happstack
- jsaddle-webkit2gtk
- jsaddle-webkitgtk
@@ -2846,10 +2907,9 @@ dont-distribute-packages:
- wai-middleware-brotli
- web-browser-in-haskell
- webkit
- - webkitgtk3-javascriptcore
- webkitgtk3
+ - webkitgtk3-javascriptcore
- websnap
- - XML
broken-packages:
# These packages don't compile or depend on packages that don't compile.
@@ -2877,13 +2937,10 @@ broken-packages:
- AC-VanillaArray
- AC-Vector
- AC-Vector-Fancy
- - accelerate
+ - acc
- accelerate-arithmetic
- accelerate-fftw
- accelerate-fourier
- - accelerate-io
- - accelerate-kullback-liebler
- - accelerate-llvm
- accelerate-llvm-native
- accelerate-random
- accelerate-typelits
@@ -2891,6 +2948,7 @@ broken-packages:
- accentuateus
- access-time
- access-token-provider
+ - achille
- acid-state-dist
- acid-state-tls
- ACME
@@ -2913,7 +2971,9 @@ broken-packages:
- acme-stringly-typed
- acme-this
- acme-zero
+ - acousticbrainz-client
- ActionKid
+ - active
- activehs
- activehs-base
- activitypub
@@ -2928,12 +2988,15 @@ broken-packages:
- addy
- adhoc-network
- adict
+ - adjunction
- adobe-swatch-exchange
- adp-multi
- adp-multi-monadiccp
+ - ADPfusion
- ADPfusionForest
- ADPfusionSet
- adtrees
+ - advent-of-code-api
- Advgame
- Advise-me
- AERN-Basics
@@ -2951,15 +3014,18 @@ broken-packages:
- aeson-filthy
- aeson-flowtyped
- aeson-injector
- - aeson-iproute
+ - aeson-match-qq
- aeson-native
+ - aeson-options
- aeson-prefix
- aeson-schema
+ - aeson-schemas
- aeson-smart
- aeson-streams
- aeson-t
- aeson-tiled
- aeson-typescript
+ - aeson-utils
- affection
- affine-invariant-ensemble-mcmc
- afv
@@ -2968,6 +3034,7 @@ broken-packages:
- agda-server
- agda-snippets
- agda-snippets-hakyll
+ - agda-unused
- agentx
- AGI
- AhoCorasick
@@ -2978,13 +3045,15 @@ broken-packages:
- airship
- airtable-api
- aivika-distributed
+ - aivika-experiment-diagrams
- ajhc
- AlanDeniseEricLauren
- alerta
- alex-prelude
+ - alex-tools
- alfred
- - alfred-margaret
- alga
+ - algebra-checkers
- algebra-dag
- algebra-sql
- algebraic
@@ -2996,6 +3065,7 @@ broken-packages:
- align-text
- AlignmentAlgorithms
- Allure
+ - ally-invest
- alms
- alpha
- alphachar
@@ -3012,6 +3082,8 @@ broken-packages:
- amazon-emailer
- amazon-emailer-client-snap
- amazon-products
+ - amazonka
+ - amazonka-s3-streaming
- amby
- AMI
- ampersand
@@ -3035,6 +3107,7 @@ broken-packages:
- animate-preview
- animate-sdl2
- annah
+ - annotated-fix
- Annotations
- anonymous-sums
- anonymous-sums-tests
@@ -3044,14 +3117,29 @@ broken-packages:
- anticiv
- antigate
- antimirov
+ - antiope-athena
+ - antiope-contract
+ - antiope-core
- antiope-dynamodb
+ - antiope-es
+ - antiope-messages
+ - antiope-optparse-applicative
+ - antiope-s3
+ - antiope-shell
+ - antiope-sns
+ - antiope-sqs
+ - antiquoter
- antisplice
- antlr-haskell
- antlrc
- anydbm
- aop-prelude
+ - aos-signature
- aosd
- apart
+ - apecs-gloss
+ - apecs-physics
+ - apecs-physics-gloss
- apecs-stm
- apelsin
- api-builder
@@ -3092,10 +3180,9 @@ broken-packages:
- arbor-monad-counter
- arbor-monad-metric
- arbor-monad-metric-datadog
- - arbor-postgres
- arbtt
+ - arch-hs
- archive-libarchive
- - archive-tar-bytestring
- archiver
- archlinux
- archlinux-web
@@ -3115,6 +3202,8 @@ broken-packages:
- armor
- arpa
- arpack
+ - array-builder
+ - array-chunks
- array-forth
- array-list
- array-primops
@@ -3130,8 +3219,6 @@ broken-packages:
- artery
- artifact
- asap
- - ascii
- - ascii-cows
- ascii-flatten
- ascii-string
- ascii-table
@@ -3142,7 +3229,6 @@ broken-packages:
- asn
- asn1-codec
- asn1-data
- - AspectAG
- assert
- assertions
- asset-map
@@ -3157,13 +3243,11 @@ broken-packages:
- async-manager
- async-timer
- asynchronous-exceptions
- - aterm
- aterm-utils
- atlassian-connect-core
- atlassian-connect-descriptor
- atmos-dimensional-tf
- atndapi
- - atom-conduit
- atom-msp430
- atomic-modify
- atomic-primops-foreign
@@ -3199,12 +3283,12 @@ broken-packages:
- authenticate-ldap
- authinfo-hs
- authoring
- - autoapply
- AutoForms
- autom
- automata
- autonix-deps
- autonix-deps-kf5
+ - autopack
- avatar-generator
- avers
- avers-api
@@ -3214,11 +3298,11 @@ broken-packages:
- AvlTree
- avr-shake
- avro-piper
- - avwx
- awesome-prelude
- awesomium
- awesomium-glut
- awesomium-raw
+ - aws-cloudfront-signer
- aws-configuration-tools
- aws-dynamodb-conduit
- aws-dynamodb-streams
@@ -3232,12 +3316,14 @@ broken-packages:
- aws-kinesis-reshard
- aws-lambda
- aws-lambda-haskell-runtime-wai
+ - aws-lambda-runtime
- aws-mfa-credentials
- aws-performance-tests
- aws-route53
- aws-sdk
- aws-sdk-text-converter
- aws-sdk-xml-unordered
+ - aws-ses-easy
- aws-sign4
- aws-simple
- aws-sns
@@ -3251,7 +3337,6 @@ broken-packages:
- azure-service-api
- azure-servicebus
- azurify
- - b-tree
- b9
- babylon
- backblaze-b2-hs
@@ -3271,6 +3356,7 @@ broken-packages:
- bamboo-theme-mini-html5
- bamse
- bamstats
+ - ban-instance
- Bang
- bank-holiday-usa
- banwords
@@ -3281,7 +3367,7 @@ broken-packages:
- barrie
- barrier
- barrier-monad
- - base-encoding
+ - base-compat-migrate
- base-feature-macros
- base-generics
- base-io-access
@@ -3294,7 +3380,6 @@ broken-packages:
- BASIC
- basic
- baskell
- - batch
- batchd
- battlenet
- battlenet-yesod
@@ -3312,6 +3397,7 @@ broken-packages:
- bdd
- bdo
- beam
+ - beam-automigrate
- beam-core
- beam-migrate
- beam-mysql
@@ -3320,15 +3406,17 @@ broken-packages:
- beam-sqlite
- beam-th
- beamable
- - bearriver
- beautifHOL
+ - bech32
+ - bech32-th
- bed-and-breakfast
- beeminder-api
- Befunge93
- bein
- belka
+ - bench-graph
+ - bench-show
- BenchmarkHistory
- - benchpress
- bencodex
- berkeleydb
- BerkeleyDBXML
@@ -3344,6 +3432,7 @@ broken-packages:
- bgzf
- bhoogle
- bibdb
+ - bidirectional
- bidirectionalization-combined
- bidispec
- bidispec-extras
@@ -3448,6 +3537,7 @@ broken-packages:
- bitcoin-hs
- bitcoin-rpc
- bitcoin-script
+ - bitcoin-scripting
- bitcoin-tx
- bitcoind-regtest
- bitcoind-rpc
@@ -3459,9 +3549,10 @@ broken-packages:
- bits-extras
- bitset
- bitspeak
- - bitstream
- BitStringRandomMonad
+ - BitSyntax
- bittorrent
+ - bitwise-enum
- bitx-bitcoin
- bizzlelude
- bizzlelude-js
@@ -3470,7 +3561,6 @@ broken-packages:
- blakesum
- blakesum-demo
- blas
- - blas-hs
- BlastHTTP
- blastxml
- blatex
@@ -3507,6 +3597,7 @@ broken-packages:
- blunt
- bno055-haskell
- bogre-banana
+ - boilerplate
- bolt
- boltzmann-brain
- bond
@@ -3515,6 +3606,7 @@ broken-packages:
- bookkeeper
- bookkeeper-permissions
- Bookshelf
+ - boolean-normal-forms
- boolexpr
- boombox
- boomslang
@@ -3535,6 +3627,7 @@ broken-packages:
- brain-bleep
- Bravo
- breakout
+ - breve
- brians-brain
- brick-dropdownmenu
- bricks
@@ -3553,6 +3646,7 @@ broken-packages:
- brotli-conduit
- brotli-streams
- browscap
+ - bsd-sysctl
- bson
- bson-generic
- bson-generics
@@ -3567,13 +3661,16 @@ broken-packages:
- BufferedSocket
- buffet
- buffon
+ - bugsnag-haskell
- bugzilla
- build
- buildable
- buildbox
- buildbox-tools
+ - builder
- buildwrapper
- bullet
+ - bulletproofs
- bulmex
- bumper
- bunz
@@ -3590,23 +3687,26 @@ broken-packages:
- byline
- bytable
- bytearray-parsing
+ - bytebuild
+ - bytehash
- bytelog
+ - byteslice
+ - bytesmith
- bytestring-arbitrary
- bytestring-builder-varword
- bytestring-class
- bytestring-csv
- - bytestring-handle
- bytestring-plain
- bytestring-read
- bytestring-rematch
- bytestring-show
- bytestring-substring
- bytestring-time
+ - bytestring-trie
- bytestring-typenats
- bytestringparser
- bytestringparser-temporary
- bytestringreadp
- - bzlib
- c-dsl
- c-io
- c-mosquitto
@@ -3614,7 +3714,10 @@ broken-packages:
- c0parser
- c10k
- c2ats
+ - cab
+ - cabal-appimage
- cabal-audit
+ - cabal-bounds
- cabal-bundle-clib
- cabal-cache
- cabal-cargs
@@ -3623,6 +3726,7 @@ broken-packages:
- cabal-dependency-licenses
- cabal-dev
- cabal-dir
+ - cabal-file-th
- cabal-ghc-dynflags
- cabal-ghci
- cabal-graphdeps
@@ -3631,6 +3735,8 @@ broken-packages:
- cabal-install-bundle
- cabal-install-ghc72
- cabal-install-ghc74
+ - cabal-install-parsers
+ - cabal-lenses
- cabal-meta
- cabal-mon
- cabal-nirvana
@@ -3640,6 +3746,7 @@ broken-packages:
- cabal-sort
- cabal-src
- cabal-test
+ - cabal-test-quickcheck
- cabal-upload
- cabal2arch
- cabal2doap
@@ -3654,7 +3761,9 @@ broken-packages:
- cabalvchk
- cabin
- cabocha
+ - cache-polysemy
- cached
+ - caching
- cacophony
- cafeteria-prelude
- caffegraph
@@ -3671,11 +3780,13 @@ broken-packages:
- calculator
- caldims
- caledon
+ - calenderweek
- call
- call-alloy
- call-haskell-from-anything
- camfort
- campfire
+ - candid
- canon
- canonical-filepath
- canonical-json
@@ -3688,7 +3799,6 @@ broken-packages:
- cap
- Capabilities
- capability
- - capataz
- capnp
- capped-list
- capri
@@ -3696,6 +3806,7 @@ broken-packages:
- caramia
- carbonara
- carboncopy
+ - cardano-coin-selection
- carettah
- CarneadesDSL
- CarneadesIntoDung
@@ -3711,6 +3822,7 @@ broken-packages:
- casadi-bindings-snopt-interface
- Cascade
- cascading
+ - caseof
- cases
- cash
- cassandra-cql
@@ -3769,14 +3881,18 @@ broken-packages:
- chainweb-mining-client
- chalkboard
- chalkboard-viewer
+ - character-cases
- charade
- chart-cli
+ - Chart-diagrams
- Chart-fltkhs
- chart-histogram
- Chart-simple
- chart-svg
- chart-svg-various
+ - Chart-tests
- chart-unit
+ - charter
- chatter
- chatty-text
- chatwork
@@ -3789,6 +3905,7 @@ broken-packages:
- chessIO
- chevalier-common
- chiasma
+ - chiphunk
- chitauri
- Chitra
- choose
@@ -3806,6 +3923,8 @@ broken-packages:
- ChristmasTree
- chromatin
- chronograph
+ - chronos
+ - chronos-bench
- chu2
- chunks
- chunky
@@ -3813,7 +3932,6 @@ broken-packages:
- church-maybe
- cielo
- cil
- - cimple
- cinvoke
- cio
- cipher-blowfish
@@ -3824,6 +3942,9 @@ broken-packages:
- citeproc-hs-pandoc-filter
- cj-token
- cjk
+ - cl3
+ - cl3-hmatrix-interface
+ - cl3-linear-interface
- clac
- clafer
- claferIG
@@ -3834,7 +3955,10 @@ broken-packages:
- clarifai
- CLASE
- clash
+ - clash-ghc
+ - clash-lib
- clash-multisignal
+ - clash-prelude
- Clash-Royale-Hack-Cheats
- clash-systemverilog
- clash-verilog
@@ -3854,9 +3978,11 @@ broken-packages:
- clckwrks-plugin-mailinglist
- clckwrks-plugin-media
- clckwrks-plugin-page
+ - clckwrks-plugin-redirect
- clckwrks-theme-bootstrap
- clckwrks-theme-clckwrks
- clckwrks-theme-geo-bootstrap
+ - cld2
- Clean
- clean-unions
- cless
@@ -3867,6 +3993,7 @@ broken-packages:
- cli-extras
- cli-git
- cli-nix
+ - clickhouse-haskell
- clif
- clifford
- clifm
@@ -3897,9 +4024,9 @@ broken-packages:
- cmathml3
- CMCompare
- cmd-item
- - cmdargs-browser
- cmdlib
- cmdtheline
+ - cmf
- cmonad
- cmph
- cmptype
@@ -3908,6 +4035,7 @@ broken-packages:
- cmv
- cnc-spec-compiler
- co-log
+ - co-log-polysemy
- co-log-polysemy-formatting
- co-log-sys
- Coadjute
@@ -3925,6 +4053,7 @@ broken-packages:
- codeworld-api
- codex
- codo-notation
+ - coercible-utils
- coin
- coinbase-exchange
- coinbase-pro
@@ -3939,12 +4068,10 @@ broken-packages:
- collections-api
- collections-base-instances
- colonnade
- - Color
- color-counter
- colorless
- colorless-http-client
- colorless-scotty
- - colour-accelerate
- colour-space
- coltrane
- columbia
@@ -3965,36 +4092,29 @@ broken-packages:
- commsec
- commsec-keyexchange
- ComonadSheet
- - compact
+ - compact-list
- compact-map
- compact-mutable
- compact-mutable-vector
- compact-socket
- compact-string
- compact-string-fix
+ - compact-word-vectors
- Compactable
- compactable
- compdata
- compdata-automata
- compdata-dags
- compdata-param
- - compdoc
+ - compendium-client
- competition
- compilation
+ - complex-generic
- complexity
- compose-trans
- - composite-aeson
- - composite-aeson-cofree-list
- - composite-aeson-path
- - composite-aeson-refined
- - composite-aeson-throw
- - composite-aeson-writeonly
- - composite-binary
- - composite-ekg
- composite-opaleye
- composite-swagger
- composition-tree
- - compound-types
- comprehensions-ghc
- compressed
- compstrat
@@ -4009,13 +4129,12 @@ broken-packages:
- concrete-haskell-autogen
- concrete-relaxng-parser
- concrete-typerep
+ - concurrency-benchmarks
- concurrent-buffer
- Concurrent-Cache
- concurrent-machines
- concurrent-state
- - concurrent-utilities
- Concurrential
- - ConcurrentUtils
- Condor
- condor
- condorcet
@@ -4034,21 +4153,19 @@ broken-packages:
- conduit-vfs-zip
- conf
- confcrypt
- - conferer-hedis
- conferer-provider-dhall
- conferer-provider-json
- conferer-provider-yaml
- - conferer-snap
- conffmt
- confide
- config-parser
- config-select
+ - config-value-getopt
- ConfigFileTH
- Configger
- configifier
- Configurable
- configuration
- - configuration-tools
- configurator-ng
- confsolve
- congruence-relation
@@ -4056,7 +4173,6 @@ broken-packages:
- conkin
- conlogger
- connection-string
- - connections
- Conscript
- consistent
- console-program
@@ -4069,7 +4185,6 @@ broken-packages:
- constraint-manip
- ConstraintKinds
- constraints-emerge
- - construct
- constructible
- constructive-algebra
- consul-haskell
@@ -4077,14 +4192,15 @@ broken-packages:
- consumers
- container
- containers-benchmark
- - containers-unicode-symbols
- containers-verified
- ContArrow
- content-store
- context-free-grammar
- context-stack
- ContextAlgebra
+ - contiguous
- contiguous-checked
+ - contiguous-fft
- continue
- continuum
- continuum-client
@@ -4092,10 +4208,7 @@ broken-packages:
- control
- control-iso
- control-monad-attempt
- - control-monad-exception
- control-monad-exception-monadsfd
- - control-monad-exception-monadstf
- - control-monad-exception-mtl
- control-monad-failure
- control-monad-failure-mtl
- Control-Monad-MultiPass
@@ -4107,6 +4220,7 @@ broken-packages:
- convert-annotation
- convertible-ascii
- convertible-text
+ - cookies
- coordinate
- copilot
- copilot-cbmc
@@ -4128,7 +4242,6 @@ broken-packages:
- coroutine-iteratee
- coroutine-object
- couch-hs
- - couch-simple
- CouchDB
- couchdb-conduit
- couchdb-enumerator
@@ -4138,7 +4251,6 @@ broken-packages:
- courier
- court
- coverage
- - coya
- cparsing
- CPBrainfuck
- cpio-conduit
@@ -4169,6 +4281,7 @@ broken-packages:
- crc
- crc16
- crdt
+ - crdt-event-fold
- creatur
- credential-store
- crf-chain1
@@ -4187,29 +4300,27 @@ broken-packages:
- cron-compat
- cruncher-types
- crunghc
+ - crypt-sha512
- crypto-cipher-benchmarks
+ - crypto-classical
- crypto-conduit
+ - crypto-keys-ssh
- crypto-multihash
- crypto-pubkey-openssh
- crypto-random-effect
- - crypto-rng
- crypto-simple
- - crypto-sodium
- cryptocipher
- cryptocompare
- cryptoconditions
+ - cryptohash-sha512
- cryptoids
+ - cryptoids-class
+ - cryptoids-types
- cryptol
- cryptsy-api
- crystalfontz
- cse-ghc-plugin
- csg
- - csound-catalog
- - csound-expression
- - csound-expression-dynamic
- - csound-expression-opcodes
- - csound-expression-typed
- - csound-sampler
- CSPM-cspm
- CSPM-FiringRules
- CSPM-Frontend
@@ -4219,7 +4330,6 @@ broken-packages:
- cspretty
- css
- css-selectors
- - css-syntax
- csv-enumerator
- csv-nptools
- ctemplate
@@ -4228,21 +4338,19 @@ broken-packages:
- cube
- cuboid
- cuckoo
- - cudd
+ - curl-runnings
- currency-codes
- currency-convert
- curry-frontend
- CurryDB
- cursedcsv
- cursor-fuzzy-time-gen
- - curve25519
- curves
- custom-prelude
- CV
- cv-combinators
- cypher
- d-bus
- - d10
- d3js
- dag
- DAG-Tournament
@@ -4273,7 +4381,6 @@ broken-packages:
- data-aviary
- data-base
- data-basic
- - data-category
- data-check
- data-combinator-gen
- data-concurrent-queue
@@ -4288,9 +4395,7 @@ broken-packages:
- data-filepath
- data-fin
- data-fin-simple
- - data-fix-cse
- data-flagset
- - data-forest
- data-ivar
- data-kiln
- data-layer
@@ -4319,11 +4424,11 @@ broken-packages:
- data-stringmap
- data-structure-inferrer
- data-sword
- - data-transform
- data-type
- data-util
- data-validation
- data-variant
+ - database-id-class
- database-id-groundhog
- database-study
- datadog
@@ -4342,7 +4447,6 @@ broken-packages:
- datetime-sb
- dawdle
- dawg
- - dawg-ord
- dbcleaner
- dbf
- DBFunctor
@@ -4385,12 +4489,16 @@ broken-packages:
- debug-trace-var
- debug-tracy
- decepticons
+ - decidable
- decimal-arithmetic
+ - decimal-literals
- DecisionTree
- - declarative
- decoder-conduit
- dedukti
+ - deep-transformations
+ - DeepArrow
- deepcontrol
+ - DeepDarkFantasy
- deeplearning-hs
- deepseq-bounded
- deepseq-magic
@@ -4420,6 +4528,7 @@ broken-packages:
- deptrack-core
- deptrack-devops
- deptrack-dot
+ - dequeue
- derangement
- derivation-trees
- derive
@@ -4427,7 +4536,7 @@ broken-packages:
- derive-gadt
- derive-IG
- derive-monoid
- - derive-topdown
+ - derive-storable-plugin
- derive-trie
- derp-lib
- describe
@@ -4444,31 +4553,39 @@ broken-packages:
- dgim
- dgs
- dhall-check
- - dhall-docs
- dhall-fly
+ - dhall-nix
+ - dhall-nixpkgs
- dhall-text
- dhall-to-cabal
- - dhall-yaml
- dhcp-lease-parser
- dhrun
- - di-polysemy
- dia-base
- dia-functions
+ - diagrams
- diagrams-boolean
+ - diagrams-braille
- diagrams-builder
+ - diagrams-cairo
- diagrams-canvas
+ - diagrams-contrib
+ - diagrams-core
+ - diagrams-graphviz
+ - diagrams-gtk
- diagrams-haddock
- - diagrams-hsqml
- diagrams-html5
+ - diagrams-lib
- diagrams-pandoc
- diagrams-pdf
+ - diagrams-pgf
+ - diagrams-postscript
- diagrams-qrcode
+ - diagrams-rasterific
+ - diagrams-rubiks-cube
+ - diagrams-svg
- diagrams-tikz
- diagrams-wx
- - dialogflow-fulfillment
- dib
- - dice
- - dice-entropy-conduit
- dice2tex
- dicom
- dictionaries
@@ -4490,7 +4607,6 @@ broken-packages:
- DigitalOcean
- digitalocean-kzs
- digits
- - digraph
- dimensional-codata
- dimensional-tf
- DimensionalHash
@@ -4508,11 +4624,10 @@ broken-packages:
- directed-cubical
- direm
- dirfiles
- - dirtree
- discogs-haskell
- discord-gateway
- - discord-haskell
- discord-hs
+ - discord-register
- discord-rest
- discord-types
- discordian-calendar
@@ -4546,7 +4661,6 @@ broken-packages:
- distributed-process-task
- distributed-process-tests
- distributed-process-zookeeper
- - distributed-static
- distribution
- distribution-plot
- diversity
@@ -4554,6 +4668,7 @@ broken-packages:
- djembe
- djinn-th
- dl-fedora
+ - dmcc
- dmenu
- dmenu-pkill
- dmenu-pmount
@@ -4563,9 +4678,11 @@ broken-packages:
- dnscache
- dnsrbl
- dnssd
+ - dobutok
- doc-review
- doccheck
- docidx
+ - docker
- docker-build-cacher
- dockercook
- docopt
@@ -4573,11 +4690,16 @@ broken-packages:
- doctest-discover-configurator
- doctest-driver-gen
- doctest-prop
+ - docusign-base
+ - docusign-base-minimal
+ - docusign-client
- docusign-example
- docvim
- doi
- DOM
- - dom-lt
+ - domain
+ - domain-core
+ - domain-optics
- domplate
- dot-linker
- dotfs
@@ -4611,10 +4733,12 @@ broken-packages:
- drifter-sqlite
- drmaa
- drone
+ - dropbox
- dropbox-sdk
- dropsolve
- ds-kanren
- DSA
+ - dsc
- DSH
- dsh-sql
- dsmc
@@ -4627,13 +4751,12 @@ broken-packages:
- dtd
- dtd-text
- dtw
- - dual-game
+ - dual-tree
- dualizer
- duet
- dumb-cas
- dump-core
- dunai-core
- - dunai-test
- Dung
- duplo
- dura
@@ -4647,11 +4770,9 @@ broken-packages:
- dvi-processing
- dwarf
- dwarfadt
- - dwergaz
- dyckword
- dyepack
- dynamic-cabal
- - dynamic-graph
- dynamic-graphs
- dynamic-mvector
- dynamic-object
@@ -4667,24 +4788,30 @@ broken-packages:
- dywapitchtrack
- dzen-dhall
- dzen-utils
+ - each
- earclipper
- - ease
- easy-api
- easy-bitcoin
- easyjson
- easyplot
+ - easytensor
+ - easytensor-vulkan
- easytest
- ebeats
- ebnf-bff
+ - ec2-unikernel
+ - eccrypto
- eccrypto-ed25519-bindings
- ecma262
- ecu
- eddie
+ - ede
- edenmodules
- edenskel
- edentv
- edge
- edges
+ - edis
- edit
- edit-lenses
- editable
@@ -4694,6 +4821,10 @@ broken-packages:
- effect-monad
- effect-stack
- effin
+ - egison
+ - egison-pattern-src
+ - egison-pattern-src-haskell-mode
+ - egison-pattern-src-th-mode
- egison-quote
- egison-tutorial
- ehaskell
@@ -4701,11 +4832,13 @@ broken-packages:
- eibd-client-simple
- eigen
- Eight-Ball-Pool-Hack-Cheats
+ - either-list-functions
- either-unwrap
- EitherT
- ejdb2-binding
- ekg-bosun
- ekg-carbon
+ - ekg-cloudwatch
- ekg-elastic
- ekg-elasticsearch
- ekg-log
@@ -4715,18 +4848,16 @@ broken-packages:
- elerea-examples
- elevator
- elision
+ - elliptic-curve
- elm-street
- elm-websocket
- - elynx
- - elynx-markov
- - elynx-nexus
- - elynx-seq
- - elynx-tools
- - elynx-tree
+ - elsa
- emacs-keys
+ - emacs-module
- email
- email-header
- email-postmark
+ - emailaddress
- emailparse
- embeddock
- embeddock-example
@@ -4760,23 +4891,26 @@ broken-packages:
- enumfun
- EnumMap
- enummapmap
- - enummapset-th
- env-extra
- env-parser
- envstatus
- epanet-haskell
- epass
+ - epi-sim
- epic
- epoll
- eprocess
- epubname
- Eq
- EqualitySolver
+ - equational-reasoning-induction
+ - equeue
- erf-native
- erlang
- eros
- eros-client
- eros-http
+ - error-codes
- error-context
- error-continuations
- error-list
@@ -4793,8 +4927,6 @@ broken-packages:
- EsounD
- espial
- ess
- - essence-of-live-coding-gloss-example
- - essence-of-live-coding-pulse-example
- essence-of-live-coding-warp
- estimators
- EstProgress
@@ -4813,11 +4945,8 @@ broken-packages:
- ethereum-analyzer-webui
- ethereum-client-haskell
- ethereum-merkle-patricia-db
- - eths-rlp
- - euler-tour-tree
- euphoria
- eurofxref
- - eve
- eve-cli
- event
- event-driven
@@ -4834,7 +4963,6 @@ broken-packages:
- every-bit-counts
- ewe
- exact-cover
- - exact-real
- exact-real-positional
- except-exceptions
- exception-monads-fd
@@ -4846,15 +4974,11 @@ broken-packages:
- exference
- exherbo-cabal
- exif
- - exinst
- - exinst-aeson
- - exinst-bytes
- - exinst-cereal
- exinst-deepseq
- exinst-hashable
- - exinst-serialise
- exists
- exitcode
+ - exp-extended
- expand
- expat-enumerator
- expiring-containers
@@ -4898,6 +5022,7 @@ broken-packages:
- failable-list
- failure-detector
- FailureT
+ - fake
- fake-type
- faktory
- falling-turnip
@@ -4912,8 +5037,8 @@ broken-packages:
- fastedit
- fastirc
- fastly
- - fastparser
- FastPush
+ - fastsum
- FastxPipe
- fathead-util
- fault-tree
@@ -4968,11 +5093,9 @@ broken-packages:
- fez-conf
- ffeed
- fficxx
- - ffmpeg-light
- ffmpeg-tutorials
- ffunctor
- fgl-extras-decompositions
- - fib
- fibon
- ficketed
- fields
@@ -4981,7 +5104,9 @@ broken-packages:
- fig
- file-collection
- file-command-qq
+ - file-embed-poly
- file-location
+ - filecache
- filediff
- FileManip
- FileManipCompat
@@ -5008,7 +5133,6 @@ broken-packages:
- fingertree-psqueue
- fingertree-tf
- finitary-derive
- - finitary-optics
- FiniteMap
- firefly-example
- first-and-last
@@ -5019,6 +5143,7 @@ broken-packages:
- fit
- fits-parse
- fitsio
+ - fix-imports
- fix-parser-simple
- fix-symbols-gitit
- fixed-point
@@ -5039,9 +5164,9 @@ broken-packages:
- fizzbuzz-as-a-service
- flac
- flac-picture
- - flaccuraterip
- flamethrower
- flamingra
+ - flashblast
- flat
- flat-maybe
- flatbuffers
@@ -5050,12 +5175,12 @@ broken-packages:
- flexiwrap
- flexiwrap-smallcheck
- flickr
+ - flink-statefulfun
- Flippi
- flite
- float-binstring
- floating-bits
- flow-er
- - flow2dot
- flowdock
- flowdock-api
- flowdock-rest
@@ -5063,6 +5188,7 @@ broken-packages:
- flowlocks-framework
- flowsim
- flp
+ - fltkhs
- fltkhs-fluid-examples
- fluent-logger
- fluffy-parser
@@ -5072,6 +5198,7 @@ broken-packages:
- fmark
- FModExRaw
- fmt-for-rio
+ - fmt-terminal-colors
- fn-extra
- foldl-incremental
- foldl-statistics
@@ -5085,6 +5212,7 @@ broken-packages:
- foo
- for-free
- forbidden-fruit
+ - force-layout
- fordo
- forecast-io
- foreign-var
@@ -5097,6 +5225,7 @@ broken-packages:
- FormalGrammars
- format
- format-status
+ - formatn
- formattable
- forml
- formlets
@@ -5128,8 +5257,9 @@ broken-packages:
- Frank
- fraxl
- freddy
+ - free-algebras
+ - free-category
- free-concurrent
- - free-functors
- free-game
- free-http
- free-operational
@@ -5176,8 +5306,6 @@ broken-packages:
- ft-generator
- ftdi
- FTGL-bytestring
- - ftp-client
- - ftp-client-conduit
- ftp-conduit
- ftphs
- FTPLine
@@ -5195,26 +5323,24 @@ broken-packages:
- function-instances-algebra
- functional-arrow
- functor
+ - functor-combinators
+ - functor-friends
- functor-infix
+ - functor-products
- functor-utils
- functorm
- funflow
- funflow-nix
- - FunGEn
- Fungi
- funion
- funnyprint
- funpat
- funsat
- funspection
- - fused-effects-exceptions
- - fused-effects-optics
- - fused-effects-random
- - fused-effects-readline
+ - fused-effects-resumable
- fused-effects-squeal
- fused-effects-th
- fusion
- - fusion-plugin
- futun
- future
- fuzzy-time-gen
@@ -5227,6 +5353,8 @@ broken-packages:
- g2q
- g4ip
- gact
+ - galois-fft
+ - galois-field
- game-probability
- gameclock
- gamgee
@@ -5234,9 +5362,10 @@ broken-packages:
- gamma
- Ganymede
- garepinoh
- - gargoyle
- - gargoyle-postgresql
+ - gargoyle-postgresql-connect
+ - gargoyle-postgresql-nix
- gas
+ - gather
- gbu
- gc-monitoring-wai
- gconf
@@ -5267,19 +5396,20 @@ broken-packages:
- generator
- generators
- generic-accessors
- - generic-aeson
- generic-binary
- generic-church
- generic-enum
- generic-lens-labels
- generic-lucid-scaffold
- generic-maybe
+ - generic-override-aeson
- generic-pretty
- generic-server
- generic-storable
- generic-tree
- generic-trie
- generic-xml
+ - generic-xmlpickler
- generics-mrsop
- generics-mrsop-gdiff
- genericserialize
@@ -5296,9 +5426,7 @@ broken-packages:
- GenSmsPdu
- gentlemark
- GenussFold
- - genvalidity-mergeful
- geo-resolver
- - geo-uk
- GeocoderOpenCage
- geodetic
- geodetic-types
@@ -5313,6 +5441,7 @@ broken-packages:
- GGg
- ggtsTC
- gh-labeler
+ - ghc-clippy-plugin
- ghc-core-smallstep
- ghc-datasize
- ghc-dump-core
@@ -5324,6 +5453,7 @@ broken-packages:
- ghc-generic-instances
- ghc-imported-from
- ghc-instances
+ - ghc-justdoit
- ghc-man-completion
- ghc-mod
- ghc-parmake
@@ -5341,6 +5471,7 @@ broken-packages:
- ghc-time-alloc-prof
- ghc-usage
- ghc-vis
+ - ghci-dap
- ghci-diagrams
- ghci-haskeline
- ghci-history-parser
@@ -5356,27 +5487,23 @@ broken-packages:
- ghcprofview
- ght
- gi-cairo-again
- - gi-cairo-connector
- - gi-cairo-render
- - gi-dbusmenu
- - gi-dbusmenugtk3
- - gi-gdkx11
- gi-graphene
- gi-gsk
+ - gi-gstaudio
- gi-gstpbutils
- gi-gsttag
- gi-gtk-declarative
- gi-gtk-declarative-app-simple
- - gi-gtk-hs
- gi-gtkosxapplication
+ - gi-gtksheet
- gi-handy
- gi-poppler
- gi-wnck
- - gi-xlib
- giak
- Gifcurry
- ginsu
- gipeda
+ - giphy-api
- GiST
- gist
- git
@@ -5388,7 +5515,6 @@ broken-packages:
- git-fmt
- git-gpush
- git-jump
- - git-mediate
- git-monitor
- git-object
- git-remote-ipfs
@@ -5398,12 +5524,10 @@ broken-packages:
- gitdo
- github-backup
- github-data
- - github-release
- github-tools
- github-utils
- github-webhook-handler
- github-webhook-handler-snap
- - github-webhooks
- githud
- gitignore
- gitit
@@ -5418,6 +5542,7 @@ broken-packages:
- gitlib-utils
- gitson
- gitter
+ - givegif
- glade
- gladexml-accessor
- glapp
@@ -5442,20 +5567,16 @@ broken-packages:
- glome-hs
- GlomeTrace
- GlomeView
- - gloss-accelerate
- - gloss-algorithms
- gloss-banana
- gloss-devil
- gloss-examples
- gloss-export
- gloss-game
- - gloss-raster
- gloss-sodium
- glpk-headers
- glpk-hs
- gltf-codec
- glue
- - GLUtil
- gmap
- gmndl
- gnome-desktop
@@ -5472,6 +5593,7 @@ broken-packages:
- gochan
- godot-haskell
- gofer-prelude
+ - goldplate
- gooey
- google-cloud
- google-drive
@@ -5480,6 +5602,7 @@ broken-packages:
- google-maps-geocoding
- google-oauth2
- google-oauth2-easy
+ - google-oauth2-jwt
- google-search
- google-server-api
- google-static-maps
@@ -5491,6 +5614,7 @@ broken-packages:
- GoogleSB
- GoogleTranslate
- gopherbot
+ - gopro-plus
- gore-and-ash
- gore-and-ash-actor
- gore-and-ash-async
@@ -5502,7 +5626,6 @@ broken-packages:
- gore-and-ash-sdl
- gore-and-ash-sync
- GotoT-transformers
- - gotta-go-fast
- gpah
- GPipe
- GPipe-Collada
@@ -5513,6 +5636,8 @@ broken-packages:
- gps2htmlReport
- GPX
- gpx-conduit
+ - grab
+ - grab-form
- graceful
- grafana
- graflog
@@ -5520,6 +5645,7 @@ broken-packages:
- grakn
- grammar-combinators
- GrammarProducts
+ - grammatical-parsers
- grapefruit-examples
- grapefruit-frp
- grapefruit-records
@@ -5550,15 +5676,20 @@ broken-packages:
- graphicstools
- graphmod-plugin
- graphql
+ - graphql-api
+ - graphql-client
- graphql-utils
- graphql-w-persistent
- graphted
- graphtype
+ - graphula
+ - graphula-core
- graql
- grasp
- gray-code
- greencard
- greencard-lib
+ - greenclip
- greg-client
- gremlin-haskell
- Grempa
@@ -5591,8 +5722,6 @@ broken-packages:
- gtfs
- gtfs-realtime
- gtk-serialized-event
- - gtk-sni-tray
- - gtk-strut
- gtk-toy
- gtk2hs-hello
- gtk2hs-rpn
@@ -5604,6 +5733,7 @@ broken-packages:
- gtkrsync
- gtksourceview2
- gtksourceview3
+ - GtkTV
- guarded-rewriting
- guess-combinator
- GuiHaskell
@@ -5611,6 +5741,7 @@ broken-packages:
- gulcii
- gw
- gyah-bin
+ - gym-http-api
- H
- h-booru
- h-gpgme
@@ -5620,6 +5751,7 @@ broken-packages:
- haar
- habit
- hablo
+ - hablog
- HABQT
- Hach
- hack-contrib
@@ -5645,7 +5777,6 @@ broken-packages:
- hackage-processing
- hackage-proxy
- hackage-repo-tool
- - hackage-security-HTTP
- hackage-server
- hackage-whatsnew
- hackage2hwn
@@ -5654,9 +5785,10 @@ broken-packages:
- hackernews
- HackMail
- hackmanager
- - hackport
- hactor
- hactors
+ - haddock
+ - haddock-api
- haddock-cheatsheet
- haddock-leksah
- haddock-test
@@ -5669,7 +5801,6 @@ broken-packages:
- Haggressive
- hahp
- haiji
- - hail
- hailgun-send
- hairy
- hakaru
@@ -5685,7 +5816,6 @@ broken-packages:
- hakyll-contrib-elm
- hakyll-contrib-hyphenation
- hakyll-contrib-links
- - hakyll-convert
- hakyll-dhall
- hakyll-dir-list
- hakyll-favicon
@@ -5707,9 +5837,11 @@ broken-packages:
- halipeto
- halive
- hall-symbols
+ - halma
- halma-gui
- halma-telegram-bot
- halves
+ - ham
- HaMinitel
- hampp
- hamsql
@@ -5726,7 +5858,6 @@ broken-packages:
- hans-pcap
- hanspell
- haphviz
- - hapistrano
- happindicator
- happindicator3
- happlets
@@ -5743,7 +5874,6 @@ broken-packages:
- happstack
- happstack-auth
- happstack-authenticate
- - happstack-clientsession
- happstack-contrib
- happstack-data
- happstack-dlg
@@ -5762,7 +5892,6 @@ broken-packages:
- happstack-plugins
- happstack-server-tls-cryptonite
- happstack-state
- - happstack-static-routing
- happstack-util
- happstack-yui
- happy-hour
@@ -5788,8 +5917,9 @@ broken-packages:
- harvest-api
- has
- has-th
+ - hasbolt
+ - hasbolt-extras
- HasCacBDD
- - hascar
- hascard
- hascas
- Haschoo
@@ -5819,27 +5949,27 @@ broken-packages:
- haskell-bitmex-client
- haskell-bitmex-rest
- haskell-brainfuck
+ - haskell-ci
- haskell-cnc
- haskell-coffee
- haskell-compression
+ - haskell-conll
- haskell-course-preludes
- haskell-debug-adapter
- haskell-disque
- haskell-docs
- haskell-eigen-util
- - haskell-exp-parser
- - haskell-fake-user-agent
- haskell-formatter
- haskell-ftp
- haskell-generate
- haskell-go-checkers
- - haskell-google-trends
+ - haskell-holes-th
+ - haskell-igraph
- haskell-in-space
- haskell-kubernetes
- haskell-lsp-client
- haskell-ml
- haskell-mpfr
- - haskell-names
- haskell-neo4j-client
- haskell-openflow
- haskell-overridez
@@ -5853,6 +5983,7 @@ broken-packages:
- haskell-reflect
- haskell-rules
- haskell-spacegoo
+ - haskell-src
- haskell-src-exts-observe
- haskell-src-exts-prisms
- haskell-src-exts-qq
@@ -5879,7 +6010,6 @@ broken-packages:
- haskell-type-exts
- haskell-typescript
- haskell-tyrant
- - haskell-xmpp
- haskell2010
- haskell2020
- haskell98
@@ -5925,6 +6055,7 @@ broken-packages:
- haskmon
- haskoin
- haskoin-bitcoind
+ - haskoin-core
- haskoin-crypto
- haskoin-node
- haskoin-protocol
@@ -5941,7 +6072,6 @@ broken-packages:
- haskore-supercollider
- haskore-synthesizer
- HaskRel
- - haskseg
- hasktorch
- hasktorch-codegen
- hasktorch-ffi-th
@@ -5955,6 +6085,9 @@ broken-packages:
- haskus-system-build
- haskus-utils
- haskus-utils-compat
+ - haskus-utils-data
+ - haskus-utils-types
+ - haskus-utils-variant
- haskus-web
- haskyapi
- haslo
@@ -5966,14 +6099,11 @@ broken-packages:
- hasql-cursor-transaction
- hasql-dynamic-statements
- hasql-generic
- - hasql-implicits
- - hasql-optparse-applicative
- hasql-postgres
- hasql-postgres-options
- hasql-queue
- hasql-simple
- hasql-th
- - hasqly-mysql
- hastache
- hastache-aeson
- haste
@@ -5993,7 +6123,6 @@ broken-packages:
- hawitter
- Hawk
- hax
- - haxl
- haxl-amazonka
- haxl-facebook
- haxparse
@@ -6024,6 +6153,7 @@ broken-packages:
- hchesslib
- HCL
- hcltest
+ - hCM
- hcoap
- hcom
- hcron
@@ -6055,9 +6185,11 @@ broken-packages:
- hdr-histogram
- HDRUtils
- headergen
+ - heap-console
- heapsort
- heart-app
- heart-core
+ - heartbeat-streams
- heatitup
- heatitup-complete
- heavy-log-shortcuts
@@ -6069,13 +6201,13 @@ broken-packages:
- heckle
- hedgehog-checkers
- hedgehog-checkers-lens
- - hedgehog-classes
- - hedgehog-gen
- hedgehog-gen-json
- hedgehog-generic
- hedgehog-golden
+ - hedgehog-servant
- Hedi
- hedis-config
+ - hedis-namespace
- hedis-pile
- hedis-simple
- hedis-tags
@@ -6105,12 +6237,10 @@ broken-packages:
- herbalizer
- HerbiePlugin
- heredocs
- - herf-time
- Hermes
- hermit
- hermit-syb
- herms
- - heroku-persistent
- herringbone
- herringbone-embed
- herringbone-wai
@@ -6121,10 +6251,9 @@ broken-packages:
- heterolist
- hetris
- heukarya
- - hevm
- hevolisa
- hevolisa-dph
- - hex
+ - hex-text
- HExcel
- hexchat
- hexif
@@ -6136,7 +6265,6 @@ broken-packages:
- hexpress
- hexquote
- hext
- - hextra
- heyefi
- heyting-algebras
- hF2
@@ -6164,6 +6292,7 @@ broken-packages:
- hgettext
- hgis
- hgithub
+ - hgmp
- hgom
- hgopher
- HGraphStorage
@@ -6180,6 +6309,7 @@ broken-packages:
- hidden-char
- hie-core
- hieraclus
+ - hierarchical-clustering-diagrams
- hierarchical-exceptions
- hierarchical-spectral-clustering
- hierarchy
@@ -6193,7 +6323,6 @@ broken-packages:
- highjson-th
- highlight-versions
- highWaterMark
- - hills
- himg
- himpy
- hindent
@@ -6208,6 +6337,7 @@ broken-packages:
- hinterface
- hinvaders
- hinze-streams
+ - hip
- hipbot
- hipchat-hs
- hipe
@@ -6238,7 +6368,6 @@ broken-packages:
- hkd-delta
- hkd-lens
- hkt
- - hlatex
- hlbfgsb
- hlcm
- HLearn-algebra
@@ -6254,20 +6383,20 @@ broken-packages:
- hlibev
- hlibfam
- HList
- - HListPP
- hlivy
- HLogger
- hlogger
- hlongurl
- hlrdb
+ - hlrdb-core
- hls
+ - hls-brittany
- hlwm
- hly
- hmark
- hmarkup
- hmatrix-banded
- hmatrix-mmap
- - hmatrix-morpheus
- hmatrix-nipals
- hmatrix-sparse
- hmatrix-static
@@ -6311,6 +6440,7 @@ broken-packages:
- hogre
- hogre-examples
- hois
+ - hoist-error
- hol
- hold-em
- hole
@@ -6344,9 +6474,11 @@ broken-packages:
- hopencc
- hopencl
- HOpenCV
- - hOpenPGP
- - hopenpgp-tools
- hopfield
+ - hoppy-docs
+ - hoppy-generator
+ - hoppy-runtime
+ - hoppy-std
- hops
- hoq
- horizon
@@ -6373,7 +6505,6 @@ broken-packages:
- hPDB
- hPDB-examples
- HPDF
- - hpdft
- hpg
- HPi
- hpio
@@ -6398,8 +6529,11 @@ broken-packages:
- hR
- hranker
- HRay
+ - hreader
+ - hreader-lens
- hreq-client
- hreq-conduit
+ - hreq-core
- Hricket
- hricket
- hriemann
@@ -6420,19 +6554,19 @@ broken-packages:
- hs-excelx
- hs-ffmpeg
- hs-fltk
- - hs-gchart
- hs-gen-iface
- hs-gizapp
+ - hs-inspector
- hs-java
- hs-json-rpc
- hs-logo
- - hs-mesos
- hs-nombre-generator
- hs-pattrans
- hs-pgms
- hs-pkg-config
- hs-pkpass
- hs-re
+ - hs-rqlite
- hs-rs-notify
- hs-scrape
- hs-snowtify
@@ -6485,6 +6619,7 @@ broken-packages:
- Hsed
- hsenv
- HSet
+ - hset
- hsfacter
- hsfcsh
- HSFFIG
@@ -6499,8 +6634,8 @@ broken-packages:
- HsHTSLib
- HsHyperEstraier
- hsI2C
- - hsignal
- hSimpleDB
+ - hsinspect
- hsinspect-lsp
- HsJudy
- hskeleton
@@ -6520,7 +6655,6 @@ broken-packages:
- hsns
- hsnsq
- hsntp
- - HSoM
- hsoptions
- HSoundFile
- hsoz
@@ -6528,6 +6662,7 @@ broken-packages:
- hsparql
- HsParrot
- hspear
+ - hspec-expectations-json
- hspec-expectations-match
- hspec-expectations-pretty
- hspec-experimental
@@ -6537,6 +6672,7 @@ broken-packages:
- hspec-pg-transact
- hspec-setup
- hspec-shouldbe
+ - hspec-snap
- hspec-structured-formatter
- hspec-test-sandbox
- hspec-webdriver
@@ -6552,14 +6688,6 @@ broken-packages:
- hsql-odbc
- hsql-postgresql
- hsql-sqlite3
- - hsqml
- - hsqml-datamodel
- - hsqml-datamodel-vinyl
- - hsqml-demo-manic
- - hsqml-demo-morris
- - hsqml-demo-notes
- - hsqml-demo-samples
- - hsqml-morris
- hsreadability
- hsrelp
- hsseccomp
@@ -6568,12 +6696,10 @@ broken-packages:
- hssqlppp-th
- HsSVN
- hstar
- - hstatistics
- hstats
- hstatsd
- hstest
- hstidy
- - hstorchat
- hstox
- hstradeking
- HStringTemplateHelpers
@@ -6591,6 +6717,7 @@ broken-packages:
- hsyslog-tcp
- hszephyr
- HTab
+ - htags
- hTalos
- htar
- htdp-image
@@ -6602,7 +6729,6 @@ broken-packages:
- htlset
- html-charset
- html-kure
- - html-parse
- html-rules
- html-tokenizer
- hts
@@ -6615,7 +6741,9 @@ broken-packages:
- http-client-request-modifiers
- http-client-session
- http-client-streams
+ - http-client-websockets
- http-conduit-browser
+ - http-conduit-downloader
- http-directory
- http-dispatch
- http-enumerator
@@ -6629,14 +6757,12 @@ broken-packages:
- http-proxy
- http-querystring
- http-response-decoder
+ - http-rfc7807
- http-server
- http-shed
- http-wget
- - http2-client
- - http2-client-exe
- http2-client-grpc
- http2-grpc-proto-lens
- - http2-grpc-proto3-wire
- https-everywhere-rules
- https-everywhere-rules-raw
- httpspec
@@ -6652,6 +6778,7 @@ broken-packages:
- HulkImport
- human-parse
- human-text
+ - humble-prelude
- hums
- HUnit-Diff
- hunit-gui
@@ -6662,7 +6789,6 @@ broken-packages:
- hunt-server
- hup
- hurdle
- - hurl
- hurriyet
- husk-scheme
- husk-scheme-libs
@@ -6670,24 +6796,18 @@ broken-packages:
- hutton
- huttons-razor
- huzzy
- - hvega-theme
- hVOIDP
- hw-all
- - hw-balancedparens
- hw-ci-assist
- hw-dsv
- - hw-eliasfano
- hw-json
- hw-json-lens
- hw-json-simd
- hw-json-simple-cursor
- hw-json-standard-cursor
- - hw-kafka-avro
- hw-prim-bits
- - hw-rankselect
- hw-simd
- - hw-succinct
- - hw-xml
+ - hw-uri
- hwall-auth-iitk
- hweblib
- hwhile
@@ -6727,7 +6847,6 @@ broken-packages:
- hylolib
- hylotab
- hyloutils
- - hyper
- hyper-extra
- hyper-haskell-server
- hyperdrive
@@ -6739,7 +6858,6 @@ broken-packages:
- hzulip
- i18n
- I1M
- - i3blocks-hs-contrib
- i3ipc
- iap-verifier
- ib-api
@@ -6756,10 +6874,10 @@ broken-packages:
- ideas-math-types
- ideas-statistics
- idempotent
- - identicon-style-squares
- identifiers
- idiii
- idna2008
+ - idris
- IDynamic
- ieee-utils
- iexcloud
@@ -6770,7 +6888,6 @@ broken-packages:
- ige-mac-integration
- ignore
- igraph
- - igrf
- ihaskell
- ihaskell-aeson
- ihaskell-basic
@@ -6803,6 +6920,7 @@ broken-packages:
- imj-measure-stdout
- imj-prelude
- imm
+ - immortal-worker
- imparse
- imperative-edsl
- imperative-edsl-vhdl
@@ -6831,7 +6949,6 @@ broken-packages:
- indextype
- indices
- indieweb-algorithms
- - indigo
- inf-interval
- infer-upstream
- infernal
@@ -6847,6 +6964,7 @@ broken-packages:
- inject-function
- inline-asm
- inline-java
+ - inline-r
- inserts
- inspector-wrecker
- instana-haskell-trace-sdk
@@ -6860,15 +6978,14 @@ broken-packages:
- instapaper-sender
- instinct
- int-multimap
+ - intcode
- integer-pure
- integreat
- intel-aes
- intensional-datatys
- interlude-l
- - InternedData
- internetmarke
- intero
- - interp
- interpol
- interpolatedstring-qq
- interpolatedstring-qq-mwotton
@@ -6892,11 +7009,14 @@ broken-packages:
- iostring
- iothread
- iotransaction
+ - ip
+ - ip-quoter
- ip2location
- ip2proxy
- ipatch
- ipc
- ipfs
+ - ipfs-api
- ipld-cid
- ipopt-hs
- ipprint
@@ -6910,7 +7030,6 @@ broken-packages:
- irc-fun-color
- irc-fun-messages
- irc-fun-types
- - ircbot
- iri
- iridium
- iron-mq
@@ -6935,10 +7054,12 @@ broken-packages:
- iteratee-stm
- iterIO
- iterio-server
+ - iterm-show
- iterm-show-diagrams
- iterm-show-JuicyPixels
- ivor
- ivory
+ - ivory-avr-atmega328p-registers
- ivory-backend-c
- ivory-bitdata
- ivory-eval
@@ -6953,6 +7074,7 @@ broken-packages:
- ixmonad
- ixshader
- iyql
+ - j
- j2hs
- jack-bindings
- JackMiniMix
@@ -6960,7 +7082,6 @@ broken-packages:
- jacobi-roots
- jaeger-flamegraph
- jail
- - jalaali
- jalla
- jarfind
- jarify
@@ -7002,12 +7123,13 @@ broken-packages:
- jsaddle-wkwebview
- JsContracts
- jsmw
+ - json-alt
- json-assertions
- json-ast-json-encoder
- json-ast-quickcheck
+ - json-autotype
- json-b
- json-builder
- - json-bytes-builder
- JSON-Combinator
- JSON-Combinator-Examples
- json-directory
@@ -7025,25 +7147,25 @@ broken-packages:
- json-syntax
- json-togo
- json-tokens
+ - json-tools
- json-tracer
- json2
- json2-hdbc
- - json5hs
- JSONb
- jsonextfilter
- JsonGrammar
+ - jsonifier
- jsonresume
- jsonrpc-conduit
- jsons-to-schema
+ - jsonschema-gen
- jsonsql
- jsontsv
- jsonxlsx
- - jsop
- jspath
- juandelacosa
- judge
- judy
- - juicy-gcode
- JuicyPixels-blp
- JuicyPixels-canvas
- JunkDB
@@ -7077,7 +7199,6 @@ broken-packages:
- kansas-lava-shake
- karakuri
- karps
- - katip-datadog
- katip-elasticsearch
- katip-kafka
- katip-rollbar
@@ -7087,7 +7208,6 @@ broken-packages:
- katydid
- kawaii
- kawhi
- - kazura-queue
- kd-tree
- kdesrc-build-extra
- keccak
@@ -7106,6 +7226,7 @@ broken-packages:
- keera-hails-reactive-yampa
- keera-hails-reactivelenses
- keera-hails-reactivevalues
+ - kempe
- kerry
- Ketchup
- keter
@@ -7117,6 +7238,7 @@ broken-packages:
- keyvaluehash
- keyword-args
- khph
+ - ki
- kicad-data
- kickass-torrents-dump-parser
- kickchan
@@ -7124,6 +7246,7 @@ broken-packages:
- kit
- kmeans-par
- kmeans-vector
+ - kmonad
- kmp-dfa
- knead
- knead-arithmetic
@@ -7134,6 +7257,7 @@ broken-packages:
- korfu
- kqueue
- kraken
+ - krank
- krapsh
- Kriens
- krpc
@@ -7155,6 +7279,7 @@ broken-packages:
- labsat
- labyrinth
- labyrinth-server
+ - lackey
- lagrangian
- laika
- lambda-bridge
@@ -7165,15 +7290,6 @@ broken-packages:
- lambda-toolbox
- lambda2js
- lambdaBase
- - lambdabot
- - lambdabot-core
- - lambdabot-haskell-plugins
- - lambdabot-irc-plugins
- - lambdabot-misc-plugins
- - lambdabot-novelty-plugins
- - lambdabot-reference-plugins
- - lambdabot-social-plugins
- - lambdabot-trusted
- lambdabot-utils
- lambdabot-zulip
- lambdacms-core
@@ -7205,19 +7321,20 @@ broken-packages:
- lame
- lame-tester
- lang
- - language-bash
+ - language-asn
- language-boogie
- language-c-comments
- language-c-inline
- language-conf
- language-csharp
- - language-css
- language-dart
- language-dickinson
- language-dockerfile
+ - language-ecmascript
- language-ecmascript-analysis
- language-eiffel
- language-elm
+ - language-fortran
- language-gcl
- language-go
- language-guess
@@ -7228,15 +7345,15 @@ broken-packages:
- language-lua-qq
- language-lua2
- language-mixal
+ - language-Modula2
- language-ninja
- language-oberon
- language-objc
- language-ocaml
- language-openscad
- language-pig
- - language-python
+ - language-puppet
- language-python-colour
- - language-python-test
- language-qux
- language-rust
- language-sh
@@ -7244,6 +7361,7 @@ broken-packages:
- language-sqlite
- language-sygus
- language-thrift
+ - language-tl
- language-typescript
- language-vhdl
- language-webidl
@@ -7256,8 +7374,10 @@ broken-packages:
- lat
- latest-npm-version
- latex-formulae-hakyll
+ - latex-formulae-image
- latex-formulae-pandoc
- latex-svg-hakyll
+ - latex-svg-image
- latex-svg-pandoc
- LATS
- launchdarkly-server-sdk
@@ -7268,18 +7388,19 @@ broken-packages:
- layers-game
- layout
- layout-bootstrap
+ - layout-rules
- layouting
- lazy-hash
- lazy-hash-cache
- lazy-io-streams
- lazy-priority-queue
+ - lazy-search
- lazyarray
- lazyboy
- lazyset
- LazyVault
- ld-intervals
- lda
- - ldap-client
- ldapply
- LDAPv3
- ldif
@@ -7291,7 +7412,6 @@ broken-packages:
- learn
- learn-physics-examples
- Learning
- - learning-hmm
- leetify
- legion
- legion-discovery
@@ -7299,13 +7419,12 @@ broken-packages:
- legion-extra
- leksah-server
- lendingclub
- - lens-accelerate
- - lens-core
- lens-filesystem
- lens-labels
- lens-prelude
- lens-simple
- lens-text-encoding
+ - lens-th-rewrite
- lens-time
- lens-toml-parser
- lens-tutorial
@@ -7336,12 +7455,14 @@ broken-packages:
- libhbb
- libinfluxdb
- libjenkins
+ - libjwt-typed
- liblastfm
- liblawless
- liblinear-enumerator
- libltdl
- libmodbus
- libmolude
+ - libnix
- liboath-hs
- liboleg
- libpafe
@@ -7352,17 +7473,13 @@ broken-packages:
- libssh2
- libssh2-conduit
- libsystemd-daemon
- - libsystemd-journal
- libtagc
- libxls
- libxml-enumerator
- libxslt
- - licensor
- lie
- - life-sync
- lifted-base-tf
- lifted-protolude
- - lifted-stm
- lifter
- ligature
- lightning-haskell
@@ -7375,14 +7492,12 @@ broken-packages:
- linda
- linden
- line-bot-sdk
- - linear-accelerate
- linear-algebra-cblas
- linear-circuit
- linear-code
- linear-maps
- linear-opengl
- linear-vect
- - linearEqSolver
- linearmap-category
- linearscan
- linearscan-hoopl
@@ -7393,20 +7508,30 @@ broken-packages:
- linkcore
- linked-list-with-iterator
- linkedhashmap
+ - linklater
+ - linnet
+ - linnet-aeson
+ - linnet-conduit
- linode
- linode-v4
- linux-blkid
- linux-cgroup
- - linux-inotify
- linux-kmod
- linux-perf
- linux-ptrace
- linx-gateway
- - lio
- lio-eci11
- - lio-fs
- lio-simple
- lipsum-gen
+ - liquid
+ - liquid-base
+ - liquid-bytestring
+ - liquid-containers
+ - liquid-ghc-prim
+ - liquid-parallel
+ - liquid-platform
+ - liquid-prelude
+ - liquid-vector
- liquidhaskell-cabal
- Liquorice
- list-fusion-probe
@@ -7416,10 +7541,8 @@ broken-packages:
- list-t-attoparsec
- list-t-html-parser
- list-t-http-client
- - list-t-libcurl
- list-t-text
- - list-tries
- - list-tuple
+ - list-witnesses
- list-zip-def
- list-zipper
- listenbrainz-client
@@ -7465,18 +7588,16 @@ broken-packages:
- loch
- locked-poll
- log
- - log-elasticsearch
- log-postgres
- log-utils
+ - log-warper
- log2json
- log4hs
- logentries
- logger
- - logging-effect
- logging-effect-extra
- logging-effect-extra-file
- logging-effect-extra-handler
- - logging-facade-journald
- Logic
- logic-classes
- LogicGrowsOnTrees
@@ -7504,25 +7625,24 @@ broken-packages:
- lookup-tables
- loop-effin
- loop-while
+ - loopbreaker
- looper
- loops
- loopy
- lord
- lorem
+ - lorentz
- loris
- loshadka
- lostcities
- loup
- lowgl
- - lp-diagrams
- lp-diagrams-svg
- LRU
- - lrucaching-haxl
- ls-usb
- lscabal
- LslPlus
- lsystem
- - ltext
- lti13
- ltk
- LTS
@@ -7546,8 +7666,10 @@ broken-packages:
- lxd-client
- lye
- Lykah
+ - lz4-bytes
- lz4-conduit
- lz4-frame-conduit
+ - lzip
- lzma-enumerator
- lzma-streams
- lzo
@@ -7557,6 +7679,7 @@ broken-packages:
- macbeth-lib
- machinecell
- machines-amazonka
+ - machines-attoparsec
- machines-binary
- machines-bytestring
- machines-directory
@@ -7568,6 +7691,7 @@ broken-packages:
- maclight
- macos-corelibs
- macosx-make-standalone
+ - macrm
- madlang
- mage
- magic-tyfams
@@ -7605,10 +7729,12 @@ broken-packages:
- manatee-template
- manatee-terminal
- manatee-welcome
+ - mandrill
- mandulia
- mangopay
- manifold-random
- manifolds
+ - Map
- map-exts
- mapalgebra
- Mapping
@@ -7626,15 +7752,9 @@ broken-packages:
- mars
- marvin
- marvin-interpolate
- - marxup
- masakazu-bot
- MASMGen
- - massiv
- - massiv-io
- - massiv-test
- master-plan
- - matchable
- - matchable-th
- matchers
- math-grads
- math-interpolate
@@ -7645,7 +7765,6 @@ broken-packages:
- mathflow
- mathlink
- matrix-as-xyz
- - matrix-lens
- matrix-market
- matrix-sized
- matsuri
@@ -7688,6 +7807,7 @@ broken-packages:
- mediawiki
- medium-sdk-haskell
- mega-sdist
+ - megalisp
- mellon-core
- mellon-gpio
- mellon-web
@@ -7703,6 +7823,7 @@ broken-packages:
- menoh
- menshen
- merkle-patricia-db
+ - merkle-tree
- messagepack-rpc
- messente
- meta-misc
@@ -7729,8 +7850,6 @@ broken-packages:
- Michelangelo
- miconix-test
- micro-recursion-schemes
- - microaeson
- - microbase
- microformats2-parser
- microformats2-types
- microgroove
@@ -7744,7 +7863,10 @@ broken-packages:
- midimory
- midisurface
- mighttpd
- - mighty-metropolis
+ - migrant-core
+ - migrant-hdbc
+ - migrant-postgresql-simple
+ - migrant-sqlite-simple
- mikmod
- mikrokosmos
- miku
@@ -7752,6 +7874,7 @@ broken-packages:
- mime-directory
- minecraft-data
- minesweeper
+ - mini-egison
- miniforth
- minilens
- minilight
@@ -7762,11 +7885,12 @@ broken-packages:
- miniplex
- minirotate
- ministg
+ - minizinc-process
- minst-idx
- mios
- MIP
- mirror-tweet
- - misfortune
+ - miso
- miso-action-logger
- miso-examples
- miss
@@ -7780,8 +7904,8 @@ broken-packages:
- mkcabal
- ml-w
- mlist
- - mltool
- mm2
+ - mmsyn7h
- mmtf
- mmtl
- mmtl-base
@@ -7803,20 +7927,17 @@ broken-packages:
- mohws
- mole
- mollie-api-haskell
- - monad-abort-fd
- monad-atom
- monad-atom-simple
+ - monad-bayes
- monad-branch
- - monad-classes-logging
- monad-exception
- - monad-finally
- monad-fork
- monad-http
- monad-interleave
- monad-levels
- monad-lgbt
- monad-log
- - monad-logger-syslog
- monad-lrs
- monad-mersenne-random
- monad-metrics-extensible
@@ -7832,7 +7953,6 @@ broken-packages:
- monad-ste
- monad-stlike-io
- monad-stlike-stm
- - monad-supply
- monad-task
- monad-timing
- monad-tx
@@ -7873,24 +7993,26 @@ broken-packages:
- Monocle
- monoid
- monoid-absorbing
+ - monoid-extras
- monoid-owns
- monoidplus
- monoids
- monopati
- monte-carlo
+ - months
- monus
- monzo
- moo
- morfette
- morfeusz
+ - morley
+ - morloc
- morpheus-graphql-cli
- - morpheus-graphql-client
- morphisms-functors
- morphisms-functors-inventory
- morphisms-objects
- morte
- mosaico-lib
- - moto
- moto-postgresql
- motor-diagrams
- motor-reflection
@@ -7898,10 +8020,6 @@ broken-packages:
- movie-monad
- mp
- mpdmate
- - mpi-hs
- - mpi-hs-binary
- - mpi-hs-cereal
- - mpi-hs-store
- mpppc
- mprelude
- mpretty
@@ -7933,12 +8051,20 @@ broken-packages:
- mtlx
- mtp
- mu-avro
+ - mu-graphql
- mu-grpc-client
- mu-grpc-common
- mu-grpc-server
- mu-kafka
+ - mu-lens
+ - mu-optics
+ - mu-persistent
+ - mu-prometheus
- mu-protobuf
+ - mu-rpc
+ - mu-schema
- mu-servant-server
+ - mu-tracing
- MuCheck
- MuCheck-Hspec
- MuCheck-HUnit
@@ -7956,7 +8082,6 @@ broken-packages:
- multibase
- multifocal
- multihash
- - multihash-cryptonite
- multihash-serialise
- multilinear
- multilinear-io
@@ -7987,9 +8112,7 @@ broken-packages:
- musicbrainz-email
- musicScroll
- musicxml
- - musicxml2
- mustache-haskell
- - mutable
- mutable-iter
- MutationOrder
- mute-unmute
@@ -7997,8 +8120,6 @@ broken-packages:
- mvc
- mvc-updates
- mvclient
- - mwc-probability-transition
- - mwc-random-accelerate
- mxnet
- mxnet-dataiter
- mxnet-examples
@@ -8012,8 +8133,6 @@ broken-packages:
- mysnapsession
- mysnapsession-example
- mysql-effect
- - mysql-haskell
- - mysql-haskell-nem
- mysql-haskell-openssl
- mysql-simple-quasi
- mysql-simple-typed
@@ -8025,11 +8144,15 @@ broken-packages:
- n-tuple
- n2o-protocols
- n2o-web
- - NaCl
- nagios-plugin-ekg
- nakadi-client
- named-lock
+ - named-servant
+ - named-servant-client
+ - named-servant-server
+ - named-sop
- namelist
+ - namespace
- nano-hmac
- nano-md5
- nanocurses
@@ -8048,9 +8171,9 @@ broken-packages:
- nationstates
- nats-client
- nats-queue
- - natural
- natural-number
- NaturalLanguageAlphabets
+ - NaturalSort
- naver-translate
- nbt
- NearContextAlgebra
@@ -8071,8 +8194,6 @@ broken-packages:
- nested-sequence
- NestedFunctor
- nestedmap
- - net-spider
- - net-spider-cli
- net-spider-pangraph
- net-spider-rpl
- net-spider-rpl-cli
@@ -8084,7 +8205,6 @@ broken-packages:
- NetSNMP
- netspec
- netstring-enumerator
- - nettle
- nettle-frp
- nettle-netkit
- nettle-openflow
@@ -8121,9 +8241,7 @@ broken-packages:
- network-topic-models
- network-transport-amqp
- network-transport-inmemory
- - network-transport-tcp
- network-uri-json
- - network-uri-static
- network-voicetext
- network-wai-router
- network-websocket
@@ -8172,6 +8290,7 @@ broken-packages:
- nofib-analyse
- nofib-analyze
- noise
+ - noli
- nom
- Nomyx
- Nomyx-Core
@@ -8186,6 +8305,7 @@ broken-packages:
- NoSlow
- not-gloss-examples
- notcpp
+ - nothunks
- notifications-tray-icon
- notmuch-haskell
- notmuch-web
@@ -8194,13 +8314,13 @@ broken-packages:
- np-extras
- np-linear
- nptools
- - nri-env-parser
- - nri-prelude
- ntp-control
- ntrip-client
+ - nuha
- null-canvas
- nullary
- nullpipe
+ - numbered-semigroups
- NumberSieves
- NumberTheory
- numerals
@@ -8210,6 +8330,7 @@ broken-packages:
- numeric-ranges
- numerical
- numhask-array
+ - numhask-free
- numhask-hedgehog
- numhask-histogram
- numhask-prelude
@@ -8218,9 +8339,6 @@ broken-packages:
- numhask-test
- Nussinov78
- Nutri
- - nvim-hs
- - nvim-hs-contrib
- - nvim-hs-ghcid
- NXT
- NXTDSL
- nylas
@@ -8237,6 +8355,7 @@ broken-packages:
- objectid
- ObjectIO
- objective
+ - oblivious-transfer
- ocaml-export
- ochan
- octane
@@ -8279,15 +8398,20 @@ broken-packages:
- op
- opaleye-classy
- opaleye-sqlite
+ - opaleye-trans
+ - open-adt
+ - open-adt-tutorial
- open-haddock
- open-pandoc
- open-signals
- open-typerep
- - open-witness
+ - open-union
- OpenAFP
- OpenAFP-Utils
- openapi-petstore
- openapi-typed
+ - openapi3
+ - openapi3-code-generator
- opench-meteo
- OpenCL
- OpenCLRaw
@@ -8301,10 +8425,7 @@ broken-packages:
- opensoundcontrol-ht
- openssh-github-keys
- openssh-protocol
- - opentelemetry-extra
- opentelemetry-http-client
- - opentelemetry-lightstep
- - opentelemetry-wai
- opentheory-char
- opentok
- opentype
@@ -8314,7 +8435,7 @@ broken-packages:
- Operads
- operate-do
- operational-extra
- - opml-conduit
+ - oplang
- opn
- optima
- optima-for-hasql
@@ -8326,7 +8447,6 @@ broken-packages:
- optparse-applicative-simple
- optparse-enum
- optparse-helper
- - orbits
- orc
- orchestrate
- OrchestrateDB
@@ -8334,12 +8454,14 @@ broken-packages:
- orchid-demo
- order-maintenance
- order-statistics
- - orders
- Ordinary
- ordrea
- oref
+ - org-mode
+ - org-mode-lucid
- organize-imports
- orgmode
+ - orgstat
- origami
- orizentic
- OrPatterns
@@ -8356,7 +8478,6 @@ broken-packages:
- OTP
- otp-authenticator
- ottparse-pretty
- - overload
- overloaded
- overloaded-records
- overture
@@ -8364,7 +8485,6 @@ broken-packages:
- package-description-remote
- package-o-tron
- package-vt
- - packdeps
- packed
- packed-dawg
- packed-multikey-map
@@ -8379,12 +8499,15 @@ broken-packages:
- PageIO
- pagure-hook-receiver
- Paillier
+ - pairing
+ - palette
- pam
- pan-os-syslog
- panda
+ - pandoc-crossref
- pandoc-csv2table
- - pandoc-emphasize-code
- pandoc-filter-graphviz
+ - pandoc-filter-indent
- pandoc-include
- pandoc-include-code
- pandoc-japanese-filters
@@ -8392,7 +8515,6 @@ broken-packages:
- pandoc-markdown-ghci-filter
- pandoc-placetable
- pandoc-plantuml-diagrams
- - pandoc-plot
- pandoc-pyplot
- pandoc-sidenote
- pandoc-unlit
@@ -8418,6 +8540,7 @@ broken-packages:
- papa-semigroupoids
- papa-semigroupoids-implement
- paphragen
+ - papillon
- pappy
- paprika
- par-dual
@@ -8425,7 +8548,6 @@ broken-packages:
- Paraiso
- Parallel-Arrows-Eden
- parallel-tasks
- - parallel-tree-search
- parameterized
- parameterized-utils
- paranoia
@@ -8442,24 +8564,20 @@ broken-packages:
- parsec-free
- parsec-parsers
- parsec-pratt
- - parsec1
- parsec2
- parsec3
- parseerror-eq
- - parsek
- parsely
- parser-combinators-tests
- parser-helper
- parser241
- parsergen
+ - parsers-megaparsec
- parsestar
- parsimony
- partage
- partial-lens
- partial-records
- - partial-semigroup
- - partial-semigroup-hedgehog
- - partial-semigroup-test
- partly
- passage
- passman
@@ -8470,12 +8588,10 @@ broken-packages:
- pasty
- patat
- patches-vector
- - path-text-utf8
- Pathfinder
- pathfindingcore
- PathTree
- patronscraper
- - pattern-trie
- patterns
- paypal-adaptive-hoops
- paypal-api
@@ -8485,6 +8601,7 @@ broken-packages:
- pbc4hs
- PBKDF2
- pcap-enumerator
+ - pcapng
- pcd-loader
- pcf
- pcf-font
@@ -8506,16 +8623,21 @@ broken-packages:
- PeanoWitnesses
- pec
- pecoff
+ - pedersen-commitment
- pedestrian-dag
- peg
- peggy
+ - pell
- pencil
+ - penntreebank-megaparsec
- penny
- penny-bin
- penny-lib
- penrose
- peparser
+ - percent-encoder
- perceptron
+ - perceptual-hash
- peregrin
- perf
- perf-analysis
@@ -8523,6 +8645,7 @@ broken-packages:
- perfecthash
- perhaps
- periodic
+ - periodic-server
- perm
- permutation
- permutations
@@ -8533,19 +8656,17 @@ broken-packages:
- persistent-audit
- persistent-cereal
- persistent-database-url
- - persistent-documentation
- persistent-equivalence
- persistent-hssqlppp
- - persistent-iproute
- persistent-map
- persistent-migration
- persistent-mongoDB
- persistent-mysql-haskell
- persistent-protobuf
- persistent-ratelimit
- - persistent-redis
- persistent-relational-record
- persistent-template-classy
+ - persistent-test
- persistent-vector
- persistent-zookeeper
- persona
@@ -8554,7 +8675,9 @@ broken-packages:
- peyotls
- peyotls-codec
- pez
+ - pg-extras
- pg-harness
+ - pg-harness-server
- pg-recorder
- pg-store
- pg-transact
@@ -8590,7 +8713,6 @@ broken-packages:
- pinboard-notes-backup
- pinch
- pinchot
- - pine
- ping
- pinpon
- Pipe
@@ -8599,7 +8721,6 @@ broken-packages:
- pipes-attoparsec-streaming
- pipes-bgzf
- pipes-brotli
- - pipes-bzip
- pipes-cacophony
- pipes-cereal
- pipes-cereal-plus
@@ -8610,10 +8731,8 @@ broken-packages:
- pipes-extra
- pipes-files
- pipes-illumina
- - pipes-interleave
- pipes-io
- pipes-key-value-csv
- - pipes-lzma
- pipes-mongodb
- pipes-p2p
- pipes-p2p-examples
@@ -8622,7 +8741,6 @@ broken-packages:
- pipes-s3
- pipes-shell
- pipes-sqlite-simple
- - pipes-text
- pipes-transduce
- pipes-vector
- pipes-zeromq4
@@ -8640,17 +8758,16 @@ broken-packages:
- plan-applicative
- plan-b
- planar-graph
+ - planb-token-introspection
- planet-mitchell
- planet-mitchell-test
- plankton
- plat
- platinum-parsing
- PlayingCards
- - plex
- plist
- plist-buddy
- plocketed
- - plot
- plot-gtk
- plot-gtk-ui
- plot-gtk3
@@ -8661,6 +8778,7 @@ broken-packages:
- plugins
- plugins-auto
- plugins-multistage
+ - plumbers
- plur
- plural
- plzwrk
@@ -8675,6 +8793,7 @@ broken-packages:
- pointless-haskell
- pointless-lenses
- pointless-rewrite
+ - poke
- pokemon-go-protobuf-types
- poker-eval
- pokitdok
@@ -8682,19 +8801,21 @@ broken-packages:
- polar-shader
- polh-lexicon
- Pollutocracy
+ - poly-cont
- poly-control
- polydata
- polydata-core
- polynomial
- polysemy-chronos
- polysemy-http
+ - polysemy-methodology
+ - polysemy-methodology-composite
- polysemy-optics
+ - polysemy-path
- polysemy-RandomFu
- polysemy-resume
- polysemy-test
- polysemy-time
- - polysemy-webserver
- - polysemy-zoo
- polyseq
- polytypeable
- polytypeable-utils
@@ -8707,7 +8828,6 @@ broken-packages:
- pool-conduit
- pop3-client
- popenhs
- - popkey
- poppler
- porcupine-core
- porcupine-http
@@ -8718,32 +8838,33 @@ broken-packages:
- ports
- poseidon
- poseidon-postgis
+ - positron
- posix-acl
+ - posix-api
- posix-realtime
- posix-waitpid
- - posplyu
- postcodes
- postgres-embedded
- postgres-tmp
- postgres-websockets
- postgresql-lo-stream
- postgresql-named
- - postgresql-pure
- postgresql-query
- postgresql-simple-bind
+ - postgresql-simple-migration
- postgresql-simple-named
- - postgresql-simple-opts
- postgresql-simple-queue
- postgresql-simple-sop
- postgresql-simple-typed
- postgresql-syntax
- postgresql-tx-query
- postgresql-tx-squeal
- - postgresql-typed
- postgresql-typed-lifted
+ - postgrest
- postgrest-ws
- postie
- postmark
+ - postmark-streams
- postmaster
- potato-tool
- potoki
@@ -8752,12 +8873,12 @@ broken-packages:
- potoki-core
- potoki-hasql
- potoki-zlib
+ - potrace-diagrams
- powermate
- powerpc
- - powerqueue
- - powerqueue-distributed
- powerqueue-levelmem
- powerqueue-sqs
+ - pprecord
- PPrinter
- pqc
- pqueue-mtl
@@ -8768,12 +8889,14 @@ broken-packages:
- pred-set
- pred-trie
- predicate-class
+ - predicate-transformers
- predicate-typed
- prednote
- prednote-test
- prefork
- pregame
- preliminaries
+ - Prelude
- prelude-generalize
- prelude-plus
- preprocess-haskell
@@ -8783,23 +8906,28 @@ broken-packages:
- present
- press
- presto-hdbc
- - pretty-compact
- - pretty-diff
- pretty-ghci
- pretty-ncols
- - prettyprinter-graphviz
+ - pretty-types
- prettyprinter-lucid
- prettyprinter-vty
- preview
- - prim
- prim-array
+ - prim-instances
- prim-ref
- primal
- primal-memory
- primes-type
+ - primitive-atomic
+ - primitive-checked
+ - primitive-containers
+ - primitive-convenience
+ - primitive-extras
+ - primitive-foreign
- primitive-indexed
- primitive-maybe
- primitive-simd
+ - primitive-sort
- primitive-stablename
- PrimitiveArray-Pretty
- primula-board
@@ -8829,8 +8957,8 @@ broken-packages:
- prof-flamegraph
- prof2dot
- prof2pretty
+ - profiteur
- profunctor-monad
- - profunctor-optics
- progress
- progress-meter
- progress-reporting
@@ -8840,9 +8968,8 @@ broken-packages:
- proj4-hs-bindings
- project-m36
- projectile
- - prolog
+ - prolens
- prolog-graph
- - prolog-graph-lib
- prologue
- prolude
- prometheus-effect
@@ -8850,20 +8977,20 @@ broken-packages:
- pronounce
- proof-combinators
- propane
- - propellor
- Proper
- properties
- property-list
- proplang
+ - prosidy
+ - prosidyc
- prosper
+ - proteaaudio
- proteome
- proto-lens-combinators
- proto-lens-descriptors
- - proto-lens-jsonpb
- proto3-suite
- protobuf-native
- - protocol-buffers
- - protocol-buffers-descriptor
+ - protocol
- protocol-buffers-descriptor-fork
- protocol-buffers-fork
- protolude-lifted
@@ -8877,7 +9004,7 @@ broken-packages:
- pseudo-boolean
- pseudo-trie
- PTQ
- - ptr
+ - ptr-poker
- publicsuffixlistcreate
- publish
- pubnub
@@ -8898,11 +9025,10 @@ broken-packages:
- pure-io
- pure-priority-queue
- pure-priority-queue-tests
- - purebred-email
+ - purescheme-wai-routing-core
- purescript
- purescript-iso
- purescript-tsd-gen
- - pursuit-client
- push-notifications
- push-notify
- push-notify-apn
@@ -8915,6 +9041,7 @@ broken-packages:
- puzzle-draw
- puzzle-draw-cmdline
- pvd
+ - PyF
- pyffi
- pyfi
- python-pickle
@@ -8923,16 +9050,23 @@ broken-packages:
- qd
- qd-vec
- qed
+ - qhs
- qhull-simple
- qif
- QIO
- QLearn
+ - qlinear
- qr-imager
- qr-repa
- qsem
+ - qtah-cpp-qt5
+ - qtah-examples
+ - qtah-generator
+ - qtah-qt5
- QuadEdge
- QuadTree
- quantfin
+ - quantification
- quantum-arrow
- quantum-random
- quarantimer
@@ -8951,7 +9085,6 @@ broken-packages:
- quickbench
- quickbooks
- quickcheck-arbitrary-template
- - quickcheck-combinators
- quickcheck-poly
- quickcheck-property-comb
- quickcheck-property-monad
@@ -8969,8 +9102,17 @@ broken-packages:
- Quickson
- quicktest
- quickwebapp
+ - quipper
+ - quipper-algorithms
+ - quipper-all
+ - quipper-cabal
- quipper-core
+ - quipper-demos
+ - quipper-language
+ - quipper-libraries
- quipper-rendering
+ - quipper-tools
+ - quipper-utils
- quiver
- quiver-binary
- quiver-bytestring
@@ -8987,6 +9129,7 @@ broken-packages:
- qux
- R-pandoc
- raaz
+ - RabbitMQ
- rad
- radian
- radium
@@ -9010,19 +9153,12 @@ broken-packages:
- random-derive
- random-eff
- random-effin
- - random-extras
- - random-fu
- - random-fu-multivariate
- random-hypergeometric
- - random-source
- random-stream
- RandomDotOrg
- - Randometer
- Range
- range-space
- rangemin
- - rank-product
- - rank1dynamic
- Ranka
- rapid
- rapid-term
@@ -9040,6 +9176,7 @@ broken-packages:
- rasa-ext-vim
- rascal
- Rasenschach
+ - rating-chgk-info
- rational-list
- rattle
- rattletrap
@@ -9082,6 +9219,8 @@ broken-packages:
- readpyc
- readshp
- really-simple-xml-parser
+ - reanimate
+ - reanimate-svg
- reasonable-lens
- record
- record-aeson
@@ -9092,12 +9231,10 @@ broken-packages:
- records
- records-th
- recursors
+ - red-black-record
- reddit
- - redis
- redis-hs
- - redis-io
- redis-simple
- - rediscaching-haxl
- redland
- Redmine
- reduce-equations
@@ -9120,17 +9257,20 @@ broken-packages:
- reflex-dom-svg
- reflex-dynamic-containers
- reflex-fsnotify
+ - reflex-gadt-api
- reflex-ghci
- reflex-gloss
- reflex-gloss-scene
- reflex-libtelnet
+ - reflex-localize
+ - reflex-localize-dom
- reflex-orphans
- reflex-process
- reflex-sdl2
- - reflex-test-host
- reflex-transformers
- reflex-vty
- reformat
+ - refractor
- refresht
- refurb
- reg-alloc
@@ -9161,9 +9301,9 @@ broken-packages:
- regions-monadstf
- regions-mtl
- register-machine-typelevel
- - registry
- registry-hedgehog
- regress
+ - regression-simple
- regular
- regular-extras
- regular-web
@@ -9174,7 +9314,6 @@ broken-packages:
- reified-records
- reify
- relacion
- - relation
- relational-postgresql8
- relational-query-postgresql-pure
- relative-date
@@ -9189,14 +9328,18 @@ broken-packages:
- remote-json-server
- remote-monad
- remotion
+ - render-utf8
+ - repa-algorithms
- repa-array
- repa-bytestring
- repa-convert
- repa-devil
- repa-eval
+ - repa-examples
- repa-flow
- repa-linear-algebra
- repa-plugin
+ - repa-scalar
- repa-series
- repa-stream
- repa-v4l2
@@ -9214,8 +9357,8 @@ broken-packages:
- req-conduit
- req-oauth2
- req-url-extra
+ - reqcatcher
- request-monad
- - require
- rescue
- reserve
- reservoir
@@ -9237,6 +9380,7 @@ broken-packages:
- rest-stringmap
- rest-types
- rest-wai
+ - restartable
- restful-snap
- restricted-workers
- restyle
@@ -9259,7 +9403,9 @@ broken-packages:
- rfc-psql
- rfc-redis
- rfc-servant
+ - rg
- rhythm-game-tutorial
+ - rib
- ribbit
- RichConditional
- ridley
@@ -9292,20 +9438,22 @@ broken-packages:
- RNAlien
- RNAwolf
- rncryptor
- - rng-utils
- rob
- robin
- robots-txt
- roc-cluster
- roc-cluster-demo
- rock
- - rocksdb-query
+ - rocksdb-haskell
- roku-api
- rollbar
+ - rollbar-cli
+ - rollbar-client
- rollbar-hs
+ - rollbar-wai
+ - rollbar-yesod
- roller
- RollingDirectory
- - ron
- ron-rdt
- ron-schema
- ron-storage
@@ -9317,10 +9465,9 @@ broken-packages:
- rosmsg-bin
- rosso
- rotating-log
+ - rounded
- rounding
- - roundtrip
- roundtrip-aeson
- - roundtrip-string
- roundtrip-xml
- route-planning
- rowrecord
@@ -9328,11 +9475,13 @@ broken-packages:
- rpc-framework
- rpf
- rpm
+ - rpmbuild-order
- rrule
- rsagl
- rsagl-frp
- rsagl-math
- rspp
+ - rss
- rss-conduit
- rss2irc
- rstream
@@ -9343,14 +9492,15 @@ broken-packages:
- rts-loader
- ruby-marshal
- ruby-qq
+ - ruff
- ruin
- ruler
- ruler-core
+ - run-st
- rungekutta
- runhs
- runmany
- runtime-arbitrary
- - rvar
- rws
- RxHaskell
- s-expression
@@ -9358,7 +9508,6 @@ broken-packages:
- SableCC2Hs
- safe-buffer-monad
- safe-coerce
- - safe-failure-cme
- safe-freeze
- safe-globals
- safe-lazy-io
@@ -9417,13 +9566,13 @@ broken-packages:
- scalendar
- scalp-webhooks
- scalpel-search
+ - scan-metadata
- scan-vector-machine
- scc
- scenegraph
- scgi
- schedevr
- schedule-planner
- - scheduler
- schedyield
- schema
- schemas
@@ -9447,12 +9596,14 @@ broken-packages:
- scotty-binding-play
- scotty-blaze
- scotty-fay
+ - scotty-form
- scotty-format
- scotty-hastache
- - scotty-haxl
+ - scotty-params-parser
- scotty-resource
- scotty-rest
- scotty-session
+ - scotty-tls
- scotty-view
- scp-streams
- scrabble-bot
@@ -9480,9 +9631,9 @@ broken-packages:
- secp256k1
- secp256k1-legacy
- secret-santa
- - secret-sharing
- secrm
- secure-sockets
+ - SecureHash-SHA3
- secureUDP
- sednaDBXML
- seitz-symbol
@@ -9531,49 +9682,58 @@ broken-packages:
- servant-auth-token-leveldb
- servant-auth-token-persistent
- servant-auth-token-rocksdb
+ - servant-auth-wordpress
- servant-avro
+ - servant-cassava
+ - servant-cli
+ - servant-client-js
- servant-client-namedargs
- servant-csharp
- servant-db
- servant-db-postgresql
- servant-dhall
+ - servant-docs-simple
- servant-ede
- - servant-errors
+ - servant-ekg
+ - servant-elm
- servant-examples
- - servant-exceptions
+ - servant-fiat-content
- servant-generate
- servant-generic
- servant-github
- - servant-github-webhook
- servant-haxl-client
- servant-hmac-auth
- - servant-http-streams
- servant-http2-client
- servant-iCalendar
- servant-jquery
- - servant-jsonrpc
- - servant-jsonrpc-client
- - servant-jsonrpc-server
+ - servant-js
+ - servant-JuicyPixels
- servant-kotlin
- servant-matrix-param
+ - servant-mock
- servant-namedargs
- servant-nix
+ - servant-openapi3
+ - servant-pagination
- servant-pandoc
+ - servant-polysemy
- servant-pool
- servant-postgresql
- servant-proto-lens
+ - servant-purescript
- servant-pushbullet-client
- servant-py
- servant-quickcheck
- servant-rawm-client
- - servant-rawm-docs
- - servant-rawm-server
- servant-reason
- servant-reflex
- servant-router
- servant-scotty
+ - servant-seo
+ - servant-serf
- servant-server-namedargs
- servant-smsc-ru
+ - servant-snap
- servant-streaming
- servant-streaming-client
- servant-streaming-docs
@@ -9581,6 +9741,7 @@ broken-packages:
- servant-swagger-tags
- servant-to-elm
- servant-waargonaut
+ - servant-yaml
- servant-zeppelin
- servant-zeppelin-client
- servant-zeppelin-server
@@ -9596,9 +9757,10 @@ broken-packages:
- sessions
- sessiontypes
- sessiontypes-distributed
+ - Set
- set-of
- set-with
- - setdown
+ - setgame
- setoid
- setters
- sexp
@@ -9628,12 +9790,10 @@ broken-packages:
- shake-pack
- shake-path
- shake-persist
- - shake-plus-extended
- shakebook
- shaker
- shakespeare-babel
- shakespeare-sass
- - shannon-fano
- shapefile
- shapely-data
- shared-buffer
@@ -9659,28 +9819,27 @@ broken-packages:
- ShortestPathProblems
- show-prettyprint
- showdown
- - Shpadoinkle
- Shpadoinkle-backend-pardiff
- - Shpadoinkle-backend-snabbdom
- Shpadoinkle-backend-static
- Shpadoinkle-examples
- Shpadoinkle-html
- - Shpadoinkle-lens
- Shpadoinkle-router
- Shpadoinkle-widgets
- shpider
- shuffle
+ - shwifty
- si-clock
- sibe
- sifflet
- sifflet-lib
- sigma-ij
+ - signable
- signals
- signed-multiset
+ - silkscreen
- silvi
- simd
- simgi
- - simple
- simple-actors
- simple-atom
- simple-bluetooth
@@ -9689,23 +9848,19 @@ broken-packages:
- simple-config
- simple-css
- simple-download
- - simple-effects
- simple-eval
- simple-firewire
- simple-genetic-algorithm
- simple-index
- simple-log-syslog
- - simple-logger
- simple-logging
- simple-money
- simple-neural-networks
- simple-nix
- simple-pascal
- simple-pipe
- - simple-postgresql-orm
- simple-rope
- simple-server
- - simple-session
- simple-stacked-vm
- simple-tabular
- simple-tar
@@ -9723,6 +9878,7 @@ broken-packages:
- simpleprelude
- SimpleServer
- simplesmtpclient
+ - simplest-sqlite
- simseq
- singleton-dict
- singleton-typelits
@@ -9734,6 +9890,7 @@ broken-packages:
- sirkel
- sitepipe
- sixfiguregroup
+ - size-based
- sized-grid
- sized-types
- sized-vector
@@ -9762,12 +9919,11 @@ broken-packages:
- slot-lambda
- sloth
- slug
- - slynx
- small-bytearray-builder
- smallarray
+ - smallcheck-kind-generics
- smallcheck-laws
- smallcheck-lens
- - smallcheck-series
- smallpt-hs
- smallstring
- smap
@@ -9775,16 +9931,17 @@ broken-packages:
- smartconstructor
- smartGroup
- smartword
- - smash-optics
- smcdel
- sme
- smerdyakov
- smiles
+ - smith
- smith-cli
- smith-client
- Smooth
- smsaero
- smt-lib
+ - smt2-parser
- SmtLib
- smtlib2
- smtlib2-debug
@@ -9804,8 +9961,6 @@ broken-packages:
- snap-configuration-utilities
- snap-error-collector
- snap-extras
- - snap-loader-dynamic
- - snap-loader-static
- snap-routes
- snap-stream
- snap-testing
@@ -9824,14 +9979,12 @@ broken-packages:
- snaplet-haxl
- snaplet-hdbc
- snaplet-hslogger
- - snaplet-i18n
- snaplet-influxdb
- snaplet-mandrill
- snaplet-mongoDB
- snaplet-mongodb-minimalistic
- snaplet-mysql-simple
- snaplet-oauth
- - snaplet-persistent
- snaplet-postgresql-simple
- snaplet-postmark
- snaplet-purescript
@@ -9916,7 +10069,6 @@ broken-packages:
- speculation
- speculation-transformers
- speechmatics
- - speedy-slice
- spelling-suggest
- sphero
- sphinx
@@ -9928,14 +10080,13 @@ broken-packages:
- spiros
- splay
- splaytree
+ - spline3
- splines
- split-morphism
- splitter
- Spock
- Spock-api-ghcjs
- - Spock-api-server
- Spock-auth
- - Spock-digestive
- Spock-lucid
- Spock-worker
- spoonutil
@@ -9955,7 +10106,6 @@ broken-packages:
- sql-simple-sqlite
- sqlcipher
- sqlite
- - sqlite-simple-errors
- sqlite-simple-typed
- sqlvalue-list
- sqsd-local
@@ -9987,7 +10137,6 @@ broken-packages:
- stack-run-auto
- stack-type
- stack-wrapper
- - stack2cabal
- stack2nix
- stackage
- stackage-build-plan
@@ -10002,7 +10151,6 @@ broken-packages:
- stackage-types
- stackage-upload
- stackage2nix
- - stan
- standalone-derive-topdown
- standalone-haddock
- starling
@@ -10013,8 +10161,7 @@ broken-packages:
- state-plus
- state-record
- stateful-mtl
- - stateWriter
- - static
+ - statestack
- static-canvas
- static-closure
- static-tensor
@@ -10042,48 +10189,59 @@ broken-packages:
- STL
- STLinkUSB
- stm-chunked-queues
+ - stm-containers
- stm-firehose
+ - stm-hamt
- stm-promise
- stm-stats
- - stm-supply
- STM32-Zombie
- stmcontrol
- stochastic
- StockholmAlignment
+ - stocks
- Stomp
- storable
- storable-static-array
- storablevector-streamfusion
- - store-streaming
- stp
- str
- Strafunski-ATermLib
- Strafunski-Sdf2Haskell
+ - Strafunski-StrategyLib
- StrappedTemplates
- stratum-tool
- stratux
- stratux-demo
+ - stratux-http
+ - stratux-types
- stratux-websockets
- stream
- stream-fusion
- stream-monad
- streamdeck
- streamed
+ - streaming-base64
+ - streaming-benchmarks
- streaming-brotli
- streaming-cassava
+ - streaming-concurrency
- streaming-conduit
+ - streaming-events
- streaming-fft
- streaming-lzma
+ - streaming-osm
+ - streaming-pcap
- streaming-png
- streaming-process
- streaming-sort
+ - streaming-utils
+ - streaming-with
- streamly-archive
- - streamly-lmdb
- streamproc
- strelka
+ - strict-base-types
- strict-data
- - strict-lens
- - strict-optics
+ - strict-ghc-plugin
- strict-tuple-lens
- StrictBench
- StrictCheck
@@ -10094,13 +10252,9 @@ broken-packages:
- stringlike
- stringtable-atom
- stripe
- - stripe-core
- - stripe-haskell
- - stripe-http-client
- stripe-http-streams
- stripe-scotty
- - stripe-signature
- - stripe-tests
+ - stripe-wreq
- strongswan-sql
- structural-induction
- structural-traversal
@@ -10113,6 +10267,7 @@ broken-packages:
- stylish-cabal
- stylist
- stylized
+ - suavemente
- sub-state
- subhask
- subleq-toolchain
@@ -10126,6 +10281,8 @@ broken-packages:
- SuffixStructures
- sugarhaskell
- suitable
+ - summoner
+ - summoner-tui
- sump
- sunlight
- sunroof-compiler
@@ -10141,17 +10298,18 @@ broken-packages:
- supernova
- supero
- supervisor
- - supervisors
- supplemented
- surjective
- sv
- sv-svfactor
- SVD2HS
- svfactor
+ - svg-builder
- svg-builder-fork
- SVG2Q
- svg2q
- svgcairo
+ - SVGFonts
- svgutils
- svm-light-utils
- svm-simple
@@ -10160,6 +10318,7 @@ broken-packages:
- swagger-test
- swapper
- swearjure
+ - sweet-egison
- swf
- swift-lda
- swiss-ephemeris
@@ -10173,6 +10332,12 @@ broken-packages:
- sym-plot
- symantic
- symantic-atom
+ - symantic-cli
+ - symantic-http
+ - symantic-http-client
+ - symantic-http-demo
+ - symantic-http-pipes
+ - symantic-http-server
- symantic-http-test
- symantic-lib
- symantic-xml
@@ -10213,7 +10378,6 @@ broken-packages:
- t3-server
- ta
- table
- - table-layout
- table-tennis
- tableaux
- Tables
@@ -10236,7 +10400,7 @@ broken-packages:
- tagsoup-parsec
- tagsoup-selection
- tagstew
- - tagstream-conduit
+ - tai
- tai64
- takahashi
- Takusen
@@ -10248,11 +10412,10 @@ broken-packages:
- tamarin-prover-utils
- Tape
- tapioca
- - tar-bytestring
- target
- - tart
- task
- task-distribution
+ - taskell
- TaskMonad
- tasty-auto
- tasty-bdd
@@ -10264,7 +10427,6 @@ broken-packages:
- tasty-laws
- tasty-lens
- tasty-mgolden
- - tasty-quickcheck-laws
- tasty-stats
- tateti-tateti
- Taxonomy
@@ -10278,6 +10440,10 @@ broken-packages:
- tcp
- tcp-streams-openssl
- tdd-util
+ - tdigest-Chart
+ - tdlib
+ - tdlib-gen
+ - tdlib-types
- tds
- TeaHS
- teams
@@ -10293,7 +10459,6 @@ broken-packages:
- tellbot
- tempi
- template-default
- - template-haskell-optics
- template-haskell-util
- template-hsml
- template-yj
@@ -10309,7 +10474,6 @@ broken-packages:
- tensorflow-logging
- tensorflow-opgen
- tensorflow-ops
- - termbox
- termbox-banana
- termbox-bindings
- terminal-text
@@ -10318,12 +10482,15 @@ broken-packages:
- terntup
- terrahs
- tersmu
+ - tesla
- test-fixture
- test-framework-doctest
- test-framework-quickcheck
- test-framework-sandbox
- test-framework-skip
- test-framework-testing-feat
+ - test-framework-th-prime
+ - test-karya
- test-pkg
- test-sandbox
- test-sandbox-compose
@@ -10334,7 +10501,7 @@ broken-packages:
- testbench
- testCom
- testcontainers
- - TestExplode
+ - testing-feat
- testloop
- testpack
- testpattern
@@ -10342,23 +10509,22 @@ broken-packages:
- TeX-my-math
- tex2txt
- texbuilder
+ - texrunner
- text-all
- text-and-plots
- - text-ansi
- text-containers
- text-format-heavy
- text-generic-pretty
- text-icu-normalized
- text-lens
- text-lips
- - text-locale-encoding
- text-markup
- text-normal
- text-offset
- text-plus
- text-position
- text-register-machine
- - text-time
+ - text-replace
- text-trie
- text-utf8
- text-utils
@@ -10377,9 +10543,11 @@ broken-packages:
- th-dict-discovery
- th-fold
- th-format
+ - th-instance-reification
- th-instances
- th-kinds
- th-kinds-fork
+ - th-lego
- th-pprint
- th-sccs
- th-tc
@@ -10397,12 +10565,12 @@ broken-packages:
- Thingie
- thorn
- threadmanager
+ - threadscope
- threepenny-editors
- threepenny-gui-contextmenu
- threepenny-gui-flexbox
- thrift
- throttled-io-loop
- - through-text
- thumbnail-plus
- thumbnail-polish
- tic-tac-toe
@@ -10436,11 +10604,8 @@ broken-packages:
- timeout-with-results
- timeparsers
- TimePiece
- - timeplot
- timeprint
- - timer-wheel
- timeseries
- - timespan
- timeutils
- timezone-detect
- timezone-olson-th
@@ -10461,9 +10626,7 @@ broken-packages:
- Titim
- tkhs
- tkyprof
- - tldr
- tls-extra
- - tlynx
- tmp-postgres
- tn
- to-haskell
@@ -10474,6 +10637,7 @@ broken-packages:
- todos
- tofromxml
- toilet
+ - token-limiter
- token-search
- tokenify
- tokenizer-streaming
@@ -10484,7 +10648,7 @@ broken-packages:
- tomato-rubato-openal
- toml
- tonatona-google-server-api
- - tonatona-persistent-postgresql
+ - tonatona-servant
- too-many-cells
- toodles
- Top
@@ -10508,13 +10672,11 @@ broken-packages:
- trace-function-call
- traced
- tracetree
- - tracing
- tracked-files
- tracker
- trackit
- traction
- tracy
- - trade-journal
- traildb
- trajectory
- transactional-events
@@ -10522,13 +10684,11 @@ broken-packages:
- transfer-db
- transformations
- TransformeR
- - transformers-abort
- transformers-compose
- transformers-convert
- transformers-lift
- transformers-runnable
- TransformersStepByStep
- - transient
- transient-universe
- transient-universe-tls
- translatable-intset
@@ -10540,15 +10700,16 @@ broken-packages:
- trasa-form
- trasa-server
- trasa-th
+ - traversal-template
- travis
- travis-meta-yaml
- trawl
- traypoweroff
- treap
- - tree-monad
- tree-render-text
- tree-traversals
- TreeCounter
+ - treemap
- treemap-html
- treemap-html-tools
- TreeStructures
@@ -10566,6 +10727,7 @@ broken-packages:
- trimpolya
- tripLL
- trivia
+ - trivial-constraint
- tropical
- tropical-geometry
- true-name
@@ -10579,7 +10741,6 @@ broken-packages:
- tsvsql
- tsweb
- ttask
- - ttn-client
- tttool
- tubes
- tuntap
@@ -10594,6 +10755,7 @@ broken-packages:
- turing-music
- turingMachine
- turtle-options
+ - TV
- tweak
- twee
- tweet-hs
@@ -10616,8 +10778,6 @@ broken-packages:
- twitter-conduit
- twitter-enumerator
- twitter-feed
- - twitter-types
- - twitter-types-lens
- tx
- txt
- txtblk
@@ -10632,6 +10792,7 @@ broken-packages:
- type-combinators-singletons
- type-digits
- type-eq
+ - type-fun
- type-indexed-queues
- type-int
- type-interpreter
@@ -10639,6 +10800,7 @@ broken-packages:
- type-level-natural-number-induction
- type-level-natural-number-operations
- type-list
+ - type-of-html-static
- type-ord
- type-ord-spine-cereal
- type-prelude
@@ -10652,6 +10814,7 @@ broken-packages:
- TypeClass
- typed-encoding
- typed-encoding-encoding
+ - typed-spreadsheet
- typed-streams
- typed-wire
- typedflow
@@ -10659,42 +10822,42 @@ broken-packages:
- typehash
- TypeIlluminator
- typelevel
+ - typelevel-rewrite-rules
- typelevel-tensor
- TypeNat
+ - typenums
- typeparams
- - typerep-map
- types-compat
- typesafe-precure
- typescript-docs
- typograffiti
+ - typson-beam
+ - typson-esqueleto
+ - typson-selda
- tyro
- u2f
- uber
- uberlast
- ucam-webauth
- ucam-webauth-types
+ - ucd
- uconv
- udp-conduit
- udp-streaming
- uhc-light
- uhc-util
- uhexdump
- - uhttpc
- ui-command
- - ulid
- UMM
- unagi-bloomfilter
- unamb-custom
- - unbeliever
- unbound
- - unbound-generics
- - unbound-kind-generics
- unbounded-delays-units
- unboxed-containers
+ - unboxed-references
- unbreak
+ - unescaping-print
- unfix-binders
- - unfoldable
- - unfoldable-restricted
- uni-events
- uni-graphs
- uni-htk
@@ -10719,8 +10882,8 @@ broken-packages:
- unix-fcntl
- unix-handle
- unix-process-conduit
- - unjson
- unlifted-list
+ - unliftio-streams
- unm-hip
- unordered-containers-rematch
- unordered-graphs
@@ -10742,6 +10905,8 @@ broken-packages:
- Updater
- uploadcare
- upskirt
+ - urbit-airlock
+ - urbit-api
- ureader
- urembed
- uri
@@ -10772,13 +10937,15 @@ broken-packages:
- usb-id-database
- usb-iteratee
- usb-safe
- - useragents
+ - userid
- users-mysql-haskell
- users-persistent
+ - utf
- utf8-prelude
- utf8-validator
- UTFTConverter
- util-exception
+ - util-logict
- util-plus
- util-primitive
- util-primitive-control
@@ -10787,9 +10954,7 @@ broken-packages:
- uu-cco-examples
- uu-cco-hut-parsing
- uu-cco-uu-parsinglib
- - uuagc
- uuagc-bootstrap
- - uuagc-cabal
- uuagc-diagrams
- uuid-aeson
- uuid-bytes
@@ -10811,7 +10976,6 @@ broken-packages:
- validated-types
- Validation
- validations
- - validationt
- value-supply
- vampire
- var
@@ -10836,11 +11000,9 @@ broken-packages:
- vect-floating-accelerate
- vect-opengl
- vector-bytestring
- - vector-circular
- vector-clock
- vector-conduit
- vector-endian
- - vector-fftw
- vector-functorlazy
- vector-heterogenous
- vector-instances-collections
@@ -10851,7 +11013,7 @@ broken-packages:
- vector-space-points
- vector-static
- vector-text
- - vectortiles
+ - vega-view
- venzone
- Verba
- verbalexpressions
@@ -10877,7 +11039,6 @@ broken-packages:
- vimeta
- vimus
- vintage-basic
- - vinyl-gl
- vinyl-json
- vinyl-named-sugar
- vinyl-operational
@@ -10897,7 +11058,6 @@ broken-packages:
- vk-aws-route53
- VKHS
- voicebase
- - vorbiscomment
- vowpal-utils
- voyeur
- vpq
@@ -10908,6 +11068,7 @@ broken-packages:
- vty-menu
- vty-ui
- vty-ui-extras
+ - vulkan-api
- waargonaut
- wacom-daemon
- waddle
@@ -10917,6 +11078,7 @@ broken-packages:
- wai-git-http
- wai-graceful
- wai-handler-devel
+ - wai-handler-fastcgi
- wai-handler-scgi
- wai-handler-snap
- wai-handler-webkit
@@ -10926,7 +11088,6 @@ broken-packages:
- wai-logger-buffered
- wai-logger-prefork
- wai-make-assets
- - wai-middleware-auth
- wai-middleware-cache
- wai-middleware-cache-redis
- wai-middleware-catch
@@ -10942,9 +11103,9 @@ broken-packages:
- wai-middleware-route
- wai-middleware-static-caching
- wai-middleware-travisci
+ - wai-rate-limit-redis
- wai-request-spec
- wai-responsible
- - wai-route
- wai-router
- wai-routes
- wai-routing
@@ -10959,7 +11120,6 @@ broken-packages:
- waitra
- waldo
- wallpaper
- - warc
- warp-dynamic
- warp-static
- warp-systemd
@@ -10971,6 +11131,7 @@ broken-packages:
- watchit
- WAVE
- WaveFront
+ - wavefront
- wavefront-obj
- wavesurfer
- wavy
@@ -10978,7 +11139,6 @@ broken-packages:
- weather-api
- web-css
- web-encodings
- - web-inv-route
- web-mongrel2
- web-output
- web-page
@@ -10991,6 +11151,7 @@ broken-packages:
- web3
- webapi
- webapp
+ - webauthn
- WebBits
- WebBits-Html
- WebBits-multiplate
@@ -11010,6 +11171,9 @@ broken-packages:
- webshow
- websockets-rpc
- webwire
+ - WEditor
+ - WEditorBrick
+ - WEditorHyphen
- weekdaze
- weighted
- weighted-regexp
@@ -11026,7 +11190,6 @@ broken-packages:
- whiskers
- whitespace
- whois
- - wholepixels
- why3
- WikimediaParser
- wikipedia4epub
@@ -11035,6 +11198,7 @@ broken-packages:
- windns
- windowslive
- winerror
+ - winery
- winio
- Wired
- wires
@@ -11056,7 +11220,9 @@ broken-packages:
- wolf
- word2vec-model
- WordAlignment
+ - wordchoice
- wordify
+ - wordlist
- WordNet
- WordNet-ghc74
- wordpass
@@ -11084,6 +11250,7 @@ broken-packages:
- wsdl
- wsedit
- wshterm
+ - wsjtx-udp
- wss-client
- wstunnel
- wtk
@@ -11109,7 +11276,6 @@ broken-packages:
- X11-rm
- X11-xdamage
- X11-xfixes
- - x86-64bit
- xchat-plugin
- xcp
- xdcc
@@ -11160,6 +11326,7 @@ broken-packages:
- xmonad-bluetilebranch
- xmonad-contrib-bluetilebranch
- xmonad-contrib-gpl
+ - xmonad-dbus
- xmonad-eval
- xmonad-vanessa
- xmonad-windownames
@@ -11173,6 +11340,7 @@ broken-packages:
- xournal-parser
- xournal-render
- xournal-types
+ - xrefcheck
- xsact
- XSaiga
- xsd
@@ -11198,15 +11366,13 @@ broken-packages:
- yam-servant
- yam-transaction
- yam-transaction-odbc
- - yam-transaction-postgresql
- yam-web
- yaml-pretty-extras
- yaml-rpc
- yaml-rpc-scotty
- yaml-rpc-snap
+ - yaml-unscrambler
- YamlReference
- - Yampa
- - yampa-canvas
- yampa-glfw
- yampa-gloss
- yampa-glut
@@ -11217,6 +11383,8 @@ broken-packages:
- yandex-translate
- yaop
- yap
+ - yarn-lock
+ - yarn2nix
- yarr
- yarr-image-io
- yavie
@@ -11226,7 +11394,6 @@ broken-packages:
- yeamer
- yeller
- yeshql
- - yeshql-core
- yeshql-hdbc
- yeshql-postgresql-simple
- yesod-angular
@@ -11234,11 +11401,9 @@ broken-packages:
- yesod-articles
- yesod-auth-account
- yesod-auth-account-fork
- - yesod-auth-basic
- yesod-auth-bcrypt
- yesod-auth-bcryptdb
- yesod-auth-deskcom
- - yesod-auth-fb
- yesod-auth-hmac-keccak
- yesod-auth-kerberos
- yesod-auth-ldap
@@ -11262,7 +11427,7 @@ broken-packages:
- yesod-examples
- yesod-fast-devel
- yesod-fay
- - yesod-fb
+ - yesod-filter
- yesod-form-richtext
- yesod-gitrev
- yesod-goodies
@@ -11272,6 +11437,7 @@ broken-packages:
- yesod-lucid
- yesod-mangopay
- yesod-markdown
+ - yesod-media-simple
- yesod-paginate
- yesod-pagination
- yesod-paypal-rest
@@ -11297,10 +11463,10 @@ broken-packages:
- yesod-tls
- yesod-vend
- yesod-worker
- - yet-another-logger
- YFrob
- yggdrasil
- yhccore
+ - yhseq
- yi
- yi-contrib
- yi-core
@@ -11324,6 +11490,7 @@ broken-packages:
- yices
- yjftp
- yjftp-libs
+ - yoctoparsec
- yoda
- Yogurt
- Yogurt-Standalone
@@ -11338,10 +11505,13 @@ broken-packages:
- yu-utils
- yuuko
- yxdb-utils
+ - Z-Data
+ - Z-IO
- z3-encoding
- z85
- zabt
- zampolit
+ - zasni-gerna
- zbar
- ZEBEDDE
- zendesk-api
@@ -11384,11 +11554,10 @@ broken-packages:
- zoom-cache-pcm
- zoom-cache-sndfile
- zoom-refs
+ - zsdd
- zsh-battery
- zsyntax
- - ztail
- ztar
- zuramaru
- Zwaluw
- zxcvbn-dvorak
- - zxcvbn-hs
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
index 2158386629aa..530e2707a2a9 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
@@ -95,7 +95,15 @@ self: super: builtins.intersectAttrs super {
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
# profiling is disabled to allow C++/C mess to work, which is fixed in GHC 8.8
- cachix = disableLibraryProfiling super.cachix;
+ cachix = overrideSrc (disableLibraryProfiling super.cachix) {
+ src = (pkgs.fetchFromGitHub {
+ owner = "cachix";
+ repo = "cachix";
+ rev = "1471050f5906ecb7cd0d72115503d07d2e3beb17";
+ sha256 = "1lkrmhv5x9dpy53w33kxnhv4x4qm711ha8hsgccrjmxaqcsdm59g";
+ }) + "/cachix";
+ version = "0.5.1";
+ };
hercules-ci-agent = disableLibraryProfiling super.hercules-ci-agent;
# avoid compiling twice by providing executable as a separate output (with small closure size)
@@ -542,6 +550,7 @@ self: super: builtins.intersectAttrs super {
# Break infinite recursion cycle between QuickCheck and splitmix.
splitmix = dontCheck super.splitmix;
+ splitmix_0_1_0_3 = dontCheck super.splitmix_0_1_0_3;
# Break infinite recursion cycle between tasty and clock.
clock = dontCheck super.clock;
@@ -645,7 +654,6 @@ self: super: builtins.intersectAttrs super {
# Tests require internet
http-download = dontCheck super.http-download;
pantry = dontCheck super.pantry;
- pantry_0_5_1_3 = dontCheck super.pantry_0_5_1_3;
# gtk2hs-buildtools is listed in setupHaskellDepends, but we
# need it during the build itself, too.
@@ -656,9 +664,26 @@ self: super: builtins.intersectAttrs super {
let
# Spago needs a small patch to work with the latest versions of rio.
# https://github.com/purescript/spago/pull/647
- spagoWithPatches = appendPatch super.spago (pkgs.fetchpatch {
- url = "https://github.com/purescript/spago/pull/647/commits/917ee541a966db74f0f5d11f2f86df0030c35dd7.patch";
- sha256 = "1nspqgcjk6z90cl9zhard0rn2q979kplcqz72x8xv5mh57zabk0w";
+ spagoWithPatches = overrideCabal (appendPatch super.spago (
+ # Spago-0.17 needs a small patch to work with the latest version of dhall.
+ # This can probably be removed with Spago-0.18.
+ # https://github.com/purescript/spago/pull/695
+ pkgs.fetchpatch {
+ url = "https://github.com/purescript/spago/commit/6258ac601480e776c215c989cc5faae46d5ca9f7.patch";
+ sha256 = "02zy4jf24qlqz9fkcs2rqg64ijd8smncmra8s5yp2mln4dmmii1k";
+ }
+ )) (old: {
+ # The above patch contains a completely new spago.cabal file, but our
+ # source tree from Hackage already contains a cabal file. Delete the
+ # local cabal file and just take the one from the patch.
+ #
+ # WARNING: The empty line above the `rm` needs to be kept.
+ prePatch = old.prePatch or "" + ''
+
+ rm spago.cabal
+ '';
+ # The above patch also adds a dependency on the stringsearch package.
+ libraryHaskellDepends = old.libraryHaskellDepends or [] ++ [ self.stringsearch ];
});
# spago requires an older version of megaparsec, but it appears to work
@@ -730,6 +755,7 @@ self: super: builtins.intersectAttrs super {
# break infinite recursion with base-orphans
primitive = dontCheck super.primitive;
+ primitive_0_7_1_0 = dontCheck super.primitive_0_7_1_0;
cut-the-crap =
let path = pkgs.stdenv.lib.makeBinPath [ pkgs.ffmpeg_3 pkgs.youtube-dl ];
@@ -797,5 +823,14 @@ self: super: builtins.intersectAttrs super {
ln -s $out/bin/haskell-language-server $out/bin/haskell-language-server-${ghc_version}
ln -s $out/bin/haskell-language-server $out/bin/haskell-language-server-${ghc_major_version}
'';
+ testToolDepends = [ self.cabal-install pkgs.git ];
+ testTarget = "func-test"; # wrapper test accesses internet
+ preCheck = ''
+ export PATH=$PATH:$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper
+ export HOME=$TMPDIR
+ '';
});
+
+ # tests depend on a specific version of solc
+ hevm = dontCheck (doJailbreak super.hevm);
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
index afb0087a0289..a221ce38c8a2 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/generic-builder.nix
@@ -64,6 +64,7 @@ in
, patches ? null, patchPhase ? null, prePatch ? "", postPatch ? ""
, preConfigure ? null, postConfigure ? null
, preBuild ? null, postBuild ? null
+, preHaddock ? null, postHaddock ? null
, installPhase ? null, preInstall ? null, postInstall ? null
, checkPhase ? null, preCheck ? null, postCheck ? null
, preFixup ? null, postFixup ? null
@@ -658,6 +659,8 @@ stdenv.mkDerivation ({
// optionalAttrs (args ? checkPhase) { inherit checkPhase; }
// optionalAttrs (args ? preCheck) { inherit preCheck; }
// optionalAttrs (args ? postCheck) { inherit postCheck; }
+// optionalAttrs (args ? preHaddock) { inherit preHaddock; }
+// optionalAttrs (args ? postHaddock) { inherit postHaddock; }
// optionalAttrs (args ? preInstall) { inherit preInstall; }
// optionalAttrs (args ? installPhase) { inherit installPhase; }
// optionalAttrs (args ? postInstall) { inherit postInstall; }
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
index 74c6e3b92f9c..85711a041b5b 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
@@ -288,6 +288,8 @@ self: {
];
description = "Efficient, high-level dynamic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ADPfusionForest" = callPackage
@@ -791,40 +793,6 @@ self: {
broken = true;
}) {};
- "Agda_2_6_1" = callPackage
- ({ mkDerivation, aeson, alex, array, async, base, binary
- , blaze-html, boxes, bytestring, Cabal, containers, data-hash
- , deepseq, directory, edit-distance, emacs, equivalence, exceptions
- , filepath, geniplate-mirror, ghc-compact, gitrev, happy, hashable
- , hashtables, haskeline, ieee754, mtl, murmur-hash, pretty, process
- , regex-tdfa, split, stm, strict, template-haskell, text, time
- , transformers, unordered-containers, uri-encode, zlib
- }:
- mkDerivation {
- pname = "Agda";
- version = "2.6.1";
- sha256 = "0af1nyyscdc4gr4l0k3ayq3rn8qxqkx1b7rh4mw023gkz1m433v7";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- setupHaskellDepends = [ base Cabal directory filepath process ];
- libraryHaskellDepends = [
- aeson array async base binary blaze-html boxes bytestring
- containers data-hash deepseq directory edit-distance equivalence
- exceptions filepath geniplate-mirror ghc-compact gitrev hashable
- hashtables haskeline ieee754 mtl murmur-hash pretty process
- regex-tdfa split stm strict template-haskell text time transformers
- unordered-containers uri-encode zlib
- ];
- libraryToolDepends = [ alex happy ];
- executableHaskellDepends = [ base directory filepath process ];
- executableToolDepends = [ emacs ];
- description = "A dependently typed functional programming language and proof assistant";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- maintainers = with stdenv.lib.maintainers; [ abbradar ];
- }) {inherit (pkgs) emacs;};
-
"Agda" = callPackage
({ mkDerivation, aeson, alex, array, async, base, binary
, blaze-html, boxes, bytestring, Cabal, containers, data-hash
@@ -836,8 +804,8 @@ self: {
}:
mkDerivation {
pname = "Agda";
- version = "2.6.1.1";
- sha256 = "0d4j3n96wyc2crz238q49sb31ll6dfddllb82ry0jnsk8f0ypx2p";
+ version = "2.6.1.2";
+ sha256 = "0b872fi12j316zcbwnablkg45p252a4sqca9lsgfig55qirk0w08";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -1164,8 +1132,6 @@ self: {
];
description = "Strongly typed Attribute Grammars implemented using type-level programming";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"AttoBencode" = callPackage
@@ -2025,6 +1991,8 @@ self: {
];
description = "A module to aid in the (de)serialisation of binary data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"Bitly" = callPackage
@@ -2775,7 +2743,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Cabal_3_2_0_0" = callPackage
+ "Cabal_3_2_1_0" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, binary
, bytestring, containers, deepseq, Diff, directory, filepath
, integer-logarithms, mtl, optparse-applicative, parsec, pretty
@@ -2785,8 +2753,10 @@ self: {
}:
mkDerivation {
pname = "Cabal";
- version = "3.2.0.0";
- sha256 = "0vz6bl1ia7wjc62sj5iw5jhigdwfz6yz01mripjcymv4qrbkl1gj";
+ version = "3.2.1.0";
+ sha256 = "1xfn9q6jnbp3jc6swn4hapa83f5m66pjz8fqbqmffydagf36fkzy";
+ revision = "1";
+ editedCabalFile = "07brbxkjlf1yqs9bjdwcwq1gx853kh600qnrf6bnya92q1p0fhw7";
setupHaskellDepends = [ mtl parsec ];
libraryHaskellDepends = [
array base binary bytestring containers deepseq directory filepath
@@ -3039,6 +3009,8 @@ self: {
];
description = "Diagrams backend for Charts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"Chart-fltkhs" = callPackage
@@ -3135,6 +3107,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Tests of the Charts library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ChasingBottoms" = callPackage
@@ -3364,36 +3338,14 @@ self: {
}) {inherit (pkgs) libdevil;};
"Color" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, colour, criterion
- , data-default-class, deepseq, doctest, hspec, HUnit, JuicyPixels
- , massiv, massiv-test, QuickCheck, random, template-haskell, vector
- }:
- mkDerivation {
- pname = "Color";
- version = "0.1.4";
- sha256 = "155h0zyl7gqpks4441ib4vjcdqpijmza0hx19lifg6kjvygpfj6d";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ base data-default-class deepseq vector ];
- testHaskellDepends = [
- base colour doctest hspec HUnit JuicyPixels massiv massiv-test
- QuickCheck random template-haskell vector
- ];
- benchmarkHaskellDepends = [ base colour criterion deepseq random ];
- description = "Color spaces and conversions between them";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "Color_0_2_0" = callPackage
({ mkDerivation, base, colour, criterion, data-default-class
, deepseq, doctest, hspec, HUnit, JuicyPixels, massiv, massiv-test
, QuickCheck, random, vector
}:
mkDerivation {
pname = "Color";
- version = "0.2.0";
- sha256 = "1w7d1wjssldybbg46s4hc83f96n49v53wyq0sc1q8mkvqdl35vsh";
+ version = "0.3.0";
+ sha256 = "18aissrpllxll01k203i2agfff89ffah465zvb0yx0lvs8jh2xr7";
libraryHaskellDepends = [ base data-default-class deepseq vector ];
testHaskellDepends = [
base colour doctest hspec HUnit JuicyPixels massiv massiv-test
@@ -3402,8 +3354,6 @@ self: {
benchmarkHaskellDepends = [ base colour criterion deepseq random ];
description = "Color spaces and conversions between them";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Combinatorrent" = callPackage
@@ -4499,6 +4449,8 @@ self: {
libraryHaskellDepends = [ base haskell-src mtl TypeCompose ];
description = "Arrows for \"deep application\"";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"DeepDarkFantasy" = callPackage
@@ -4516,6 +4468,8 @@ self: {
testHaskellDepends = [ base constraints mtl QuickCheck random ];
description = "A DSL for creating neural network";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"DefendTheKing" = callPackage
@@ -6178,23 +6132,11 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "FloatingHex";
- version = "0.4";
- sha256 = "0k524ms0hwws5q1vqkf4vrba1q6b33r8c5c3wdifqbcdni6haxxj";
- libraryHaskellDepends = [ base template-haskell ];
- description = "Read and write hexadecimal floating point numbers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "FloatingHex_0_5" = callPackage
- ({ mkDerivation, base, template-haskell }:
- mkDerivation {
- pname = "FloatingHex";
version = "0.5";
sha256 = "0c38062vnjmy3fc5nxwg7sgbfabikaakgdsl34ka229s6w7pm8x3";
libraryHaskellDepends = [ base template-haskell ];
description = "Read and write hexadecimal floating point numbers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Focus" = callPackage
@@ -6546,8 +6488,8 @@ self: {
}:
mkDerivation {
pname = "Frames-streamly";
- version = "0.1.0.0";
- sha256 = "0gzg52icabky5fzglxms8h9n1ncp1gvg2f8bsywmyw1maqdy36fq";
+ version = "0.1.0.2";
+ sha256 = "0i007clm5q2rjmj7qfyig4sajk2bi1fc57w132j4vrvgp3p9p4rr";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base exceptions Frames primitive streamly text vinyl
@@ -6592,17 +6534,17 @@ self: {
({ mkDerivation, base, base-compat, GLUT, OpenGL, random }:
mkDerivation {
pname = "FunGEn";
- version = "1.0.1";
- sha256 = "1bal6v1ps8ha5hkz12i20vwypvbcb6s9ykr8yylh4w4ddnsdgh3r";
+ version = "1.1.1";
+ sha256 = "167bf5p4qcb9wj89x5i5zjjx1f7pmi6s5xbbh43ljhp1f25s9147";
+ revision = "1";
+ editedCabalFile = "0rgqkr95d2bssmnm4rrkrla7380vgr3isljs8jqglfjy660cynq3";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base base-compat GLUT OpenGL random ];
executableHaskellDepends = [ base GLUT OpenGL random ];
- description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine";
+ description = "A lightweight, cross-platform, OpenGL-based game engine";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Fungi" = callPackage
@@ -6845,8 +6787,6 @@ self: {
libraryToolDepends = [ hpp ];
description = "Miscellaneous OpenGL utilities";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"GPX" = callPackage
@@ -6924,8 +6864,8 @@ self: {
({ mkDerivation, async, base, containers, GLFW-b, GPipe, stm }:
mkDerivation {
pname = "GPipe-GLFW";
- version = "1.4.1.3";
- sha256 = "0czrq3zhcxfl9pzypmxpxgn11faqb0kw05m5k3apr4b88prbj1ij";
+ version = "1.4.1.4";
+ sha256 = "13qbiy2gv682xyj0dpy336zbg4224a1sgzqq9kq1v6f8pwavw6bk";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ async base containers GLFW-b GPipe stm ];
description = "GLFW OpenGL context creation for GPipe";
@@ -7744,6 +7684,8 @@ self: {
];
description = "Gtk-based GUIs for Tangible Values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"GuiHaskell" = callPackage
@@ -8067,8 +8009,8 @@ self: {
}:
mkDerivation {
pname = "HDBC-postgresql";
- version = "2.3.2.7";
- sha256 = "0mfx172lrhwxx6gbqfqji8m14llng76x0mxksm3s556kakvv1cgg";
+ version = "2.4.0.0";
+ sha256 = "1zmilqvlp170nb7zakbhdpihykkq95s7nb7la2sdas1fv69mhnx3";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal ];
@@ -8809,8 +8751,6 @@ self: {
executableHaskellDepends = [ base regex-applicative ];
description = "A preprocessor for HList labelable labels";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"HLogger" = callPackage
@@ -9341,8 +9281,6 @@ self: {
];
description = "Library for computer music education";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"HSoundFile" = callPackage
@@ -9525,8 +9463,8 @@ self: {
({ mkDerivation, base, call-stack, deepseq, filepath }:
mkDerivation {
pname = "HUnit";
- version = "1.6.0.0";
- sha256 = "1pnhwqq5v8h48gbp3ibv3skfj25mf4zs5svxcavq93p9cswycj3l";
+ version = "1.6.1.0";
+ sha256 = "1rpi52rnjpyv379rm6n3s706z6mv114aychf03dq456wfa4b7123";
libraryHaskellDepends = [ base call-stack deepseq ];
testHaskellDepends = [ base call-stack deepseq filepath ];
description = "A unit testing framework for Haskell";
@@ -10834,8 +10772,8 @@ self: {
({ mkDerivation, base, bytestring, Cabal, network, openssl, time }:
mkDerivation {
pname = "HsOpenSSL";
- version = "0.11.4.20";
- sha256 = "0l51pg3cpjq71dqdn0iwj37bqsgjnhfbm0q2ha5wksq4i0qnirf2";
+ version = "0.11.5.1";
+ sha256 = "1np4yyiq4935p1vbf89m0ifkilzc6vzab9i8x7c21y9s7rsv4rj9";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base bytestring network time ];
librarySystemDepends = [ openssl ];
@@ -11402,8 +11340,6 @@ self: {
];
description = "Data interning (with compact regions where possible)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Interpolation" = callPackage
@@ -13148,6 +13084,8 @@ self: {
pname = "MIP";
version = "0.1.0.0";
sha256 = "0790jcwqjd33i8sqhzxarda8ihhv5iapj0apjmlqjppbipwa6awa";
+ revision = "1";
+ editedCabalFile = "16nxbkmkyb9n0jbyrmpazg40gf6aadnm1rk4sqwxkcx7qa99wrnd";
libraryHaskellDepends = [
base bytestring bytestring-encoding case-insensitive containers
data-default-class extended-reals filepath intern lattices
@@ -13257,6 +13195,8 @@ self: {
testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ];
description = "Class of key-value maps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"MapWith" = callPackage
@@ -14215,8 +14155,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"NameGenerator" = callPackage
@@ -14318,6 +14256,8 @@ self: {
libraryHaskellDepends = [ base bytestring strict ];
description = "Natural sorting for strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"NearContextAlgebra" = callPackage
@@ -16064,6 +16004,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "A Prelude module replacement";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"PrimitiveArray" = callPackage
@@ -16332,6 +16274,8 @@ self: {
];
description = "Quasiquotations for a python like interpolated string formater";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"QIO" = callPackage
@@ -16440,20 +16384,6 @@ self: {
broken = true;
}) {};
- "QuickCheck_1_2_0_1" = callPackage
- ({ mkDerivation, base, random }:
- mkDerivation {
- pname = "QuickCheck";
- version = "1.2.0.1";
- sha256 = "1gxpvbc0ab4n35b5zcbzng8qc7y3mzgym8cj42bci984f08y1bld";
- revision = "2";
- editedCabalFile = "1nahg4xzlx3hnw60ybzljka3lag3n0iysgnyppahrsblmryg01lg";
- libraryHaskellDepends = [ base random ];
- description = "Automatic testing of Haskell programs";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"QuickCheck" = callPackage
({ mkDerivation, base, containers, deepseq, process, random
, splitmix, template-haskell, transformers
@@ -16473,14 +16403,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "QuickCheck_2_14_1" = callPackage
+ "QuickCheck_2_14_2" = callPackage
({ mkDerivation, base, containers, deepseq, process, random
, splitmix, template-haskell, transformers
}:
mkDerivation {
pname = "QuickCheck";
- version = "2.14.1";
- sha256 = "0ms71pphgihmqsvh4v88xd99n8xg3nlz1wxxxcf2vgns32mcbz63";
+ version = "2.14.2";
+ sha256 = "1wrnrm9sq4s0bly0q58y80g4153q45iglqa34xsi2q3bd62nqyyq";
libraryHaskellDepends = [
base containers deepseq random splitmix template-haskell
transformers
@@ -16903,6 +16833,8 @@ self: {
];
description = "AMQP 0-9-1 client library for RabbitMQ servers";
license = "BSD-3-Clause AND GPL-3.0-or-later";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"Raincat" = callPackage
@@ -16968,8 +16900,6 @@ self: {
executableHaskellDepends = [ base random-fu ];
description = "Randomness intuition trainer";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Range" = callPackage
@@ -17846,6 +17776,8 @@ self: {
];
description = "Fonts from the SVG-Font format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"SVGPath" = callPackage
@@ -18085,6 +18017,8 @@ self: {
libraryHaskellDepends = [ base bytestring ];
description = "simple static linked SHA3 using private symbols and the ref impl";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"SegmentTree" = callPackage
@@ -18200,6 +18134,8 @@ self: {
benchmarkHaskellDepends = [ base containers gauge util ];
description = "See README for more info";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ShellCheck" = callPackage
@@ -18349,8 +18285,6 @@ self: {
];
description = "A programming model for declarative, high performance user interface";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Shpadoinkle-backend-pardiff" = callPackage
@@ -18387,8 +18321,6 @@ self: {
];
description = "Use the high-performance Snabbdom virtual dom library written in JavaScript";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Shpadoinkle-backend-static" = callPackage
@@ -18485,8 +18417,6 @@ self: {
libraryHaskellDepends = [ base lens Shpadoinkle text ];
description = "Lens combinators for Shpadoinkle applications";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Shpadoinkle-router" = callPackage
@@ -19018,8 +18948,6 @@ self: {
libraryHaskellDepends = [ base hvect mtl Spock-api Spock-core ];
description = "Another Haskell web framework for rapid development";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Spock-auth" = callPackage
@@ -19077,8 +19005,6 @@ self: {
];
description = "Digestive functors support for Spock";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Spock-lucid" = callPackage
@@ -19279,6 +19205,8 @@ self: {
libraryHaskellDepends = [ base directory mtl syb transformers ];
description = "Library for strategic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"StrappedTemplates" = callPackage
@@ -19562,6 +19490,8 @@ self: {
libraryHaskellDepends = [ base DeepArrow TypeCompose ];
description = "Tangible Values -- composable interfaces";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"TYB" = callPackage
@@ -19820,16 +19750,14 @@ self: {
pname = "TestExplode";
version = "0.1.0.0";
sha256 = "0r4nwzwdila9p05g5y99rp06dbh1k2yl5jsc6yn6dwvxkvvdjcs1";
- revision = "6";
- editedCabalFile = "11855w0z8l8hs387rrnp9qgh3krlx6d7pd2bdrb72jcgkyvdhgjg";
+ revision = "7";
+ editedCabalFile = "0m66y84bcnwmws9lvgasi7vrsp5qdd68saxizx5kkqn3c6qnd06b";
libraryHaskellDepends = [
base containers directory fgl graphviz interpolatedstring-perl6 mtl
process text
];
description = "Generates testcases from program-snippets";
license = stdenv.lib.licenses.lgpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Theora" = callPackage
@@ -20731,13 +20659,14 @@ self: {
({ mkDerivation, base, bytestring, transformers, vector, vulkan }:
mkDerivation {
pname = "VulkanMemoryAllocator";
- version = "0.3.7";
- sha256 = "1y2dmk60dvk8d9n16in98cmin5ckvdx3knwlfzcs0jl6vyh8n51n";
+ version = "0.3.11";
+ sha256 = "0xlw2znk6lzblc9iv13fiy2zxngglc9ylzb1lj6qcfdnbi1sr9n0";
libraryHaskellDepends = [
base bytestring transformers vector vulkan
];
description = "Bindings to the VulkanMemoryAllocator library";
license = stdenv.lib.licenses.bsd3;
+ platforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
"WAVE" = callPackage
@@ -20769,6 +20698,8 @@ self: {
doHaddock = false;
description = "Generic text-editor logic for use with fixed-width fonts";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"WEditorBrick" = callPackage
@@ -20783,6 +20714,8 @@ self: {
executableHaskellDepends = [ base brick vty WEditor ];
description = "Text-editor widget with dynamic line-wrapping for use with Brick";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"WEditorHyphen" = callPackage
@@ -20795,6 +20728,8 @@ self: {
testHaskellDepends = [ base directory hyphenation WEditor ];
description = "Language-specific hyphenation policies for WEditor";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"WL500gPControl" = callPackage
@@ -21096,12 +21031,12 @@ self: {
platforms = stdenv.lib.platforms.none;
}) {};
- "Win32_2_10_0_0" = callPackage
+ "Win32_2_10_1_0" = callPackage
({ mkDerivation }:
mkDerivation {
pname = "Win32";
- version = "2.10.0.0";
- sha256 = "09g61dgw3xvg066qdydw7nxn8vk1nxxwzi1wwr19rkaxhz43149n";
+ version = "2.10.1.0";
+ sha256 = "1il70gh3ysmp4pnhk7dxcbd0c0mh5ay33b9ijmmj0ikmbw0nfpbv";
description = "A binding to Windows Win32 API";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.none;
@@ -21787,8 +21722,6 @@ self: {
testHaskellDepends = [ base ];
description = "Elegant Functional Reactive Programming Language for Hybrid Systems";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"Yampa-core" = callPackage
@@ -21882,8 +21815,8 @@ self: {
}:
mkDerivation {
pname = "Z-Data";
- version = "0.1.7.1";
- sha256 = "1yz2bh7mvhc8v4rjzx5wc89x10xnhp0hn40y8n9id982c256vfgm";
+ version = "0.1.9.1";
+ sha256 = "0fwbgcsfay83lp24m9afdvn43xlzxi3y74fsxxw2xbfaz6zmxivi";
libraryHaskellDepends = [
base case-insensitive deepseq ghc-prim hashable integer-gmp
primitive QuickCheck scientific tagged template-haskell
@@ -21896,27 +21829,34 @@ self: {
];
description = "Array, vector and text";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"Z-IO" = callPackage
- ({ mkDerivation, base, bytestring, exceptions, hashable, hspec
- , hspec-discover, HUnit, primitive, QuickCheck
- , quickcheck-instances, scientific, stm, time, word8, Z-Data, zlib
+ ({ mkDerivation, base, bytestring, containers, exceptions, hashable
+ , hspec, hspec-discover, HUnit, primitive, QuickCheck
+ , quickcheck-instances, scientific, stm, time, unix-time
+ , unordered-containers, word8, Z-Data, zlib
}:
mkDerivation {
pname = "Z-IO";
- version = "0.1.5.2";
- sha256 = "05dkfbnj1kry6c32xdiv1fdlxd2a2z7ma4zk5gisnx5kmshyw75p";
+ version = "0.1.9.0";
+ sha256 = "1f9774065arknwm8f1avq7v769cfa610dy45winva3ys4345xcyy";
libraryHaskellDepends = [
- base exceptions primitive stm time Z-Data
+ base containers exceptions primitive stm time unix-time
+ unordered-containers Z-Data
];
libraryToolDepends = [ hspec-discover ];
testHaskellDepends = [
base bytestring hashable hspec HUnit primitive QuickCheck
quickcheck-instances scientific word8 Z-Data zlib
];
+ testToolDepends = [ hspec-discover ];
description = "Simple and high performance IO toolkit for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ZEBEDDE" = callPackage
@@ -22284,6 +22224,8 @@ self: {
benchmarkHaskellDepends = [ criterion rerebase ];
description = "Sequence optimized for monoidal construction and folding";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"accelerate" = callPackage
@@ -22311,8 +22253,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "An embedded language for accelerated array processing";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"accelerate-arithmetic" = callPackage
@@ -22603,8 +22543,6 @@ self: {
libraryHaskellDepends = [ accelerate base ];
description = "Convert between Accelerate arrays and raw pointers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"accelerate-io-JuicyPixels" = callPackage
@@ -22735,7 +22673,6 @@ self: {
description = "Kullback-Liebler divergence";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"accelerate-llvm" = callPackage
@@ -22756,8 +22693,6 @@ self: {
];
description = "Accelerate backend component generating LLVM IR";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"accelerate-llvm-native" = callPackage
@@ -22960,6 +22895,8 @@ self: {
];
description = "A library for building static site generators";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"acid-state" = callPackage
@@ -23672,6 +23609,8 @@ self: {
];
description = "AcousticBrainz API client";
license = stdenv.lib.licenses.cc0;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"acquire" = callPackage
@@ -23714,6 +23653,8 @@ self: {
];
description = "Abstractions for animation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"activehs" = callPackage
@@ -23827,28 +23768,6 @@ self: {
}:
mkDerivation {
pname = "ad";
- version = "4.4";
- sha256 = "1v7m5nk9aa0sfqfqmv15dq87s2nl7i3v1d5xx0xla9ydhlqizy4x";
- revision = "1";
- editedCabalFile = "1l9515avbn8hc1yc3x9mqxjrl6idjcf4a9wl4m3607n4anc62hlc";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- array base comonad containers data-reify erf free nats reflection
- semigroups transformers
- ];
- testHaskellDepends = [ base directory doctest filepath ];
- benchmarkHaskellDepends = [ base criterion erf ];
- description = "Automatic Differentiation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ad_4_4_1" = callPackage
- ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad
- , containers, criterion, data-reify, directory, doctest, erf
- , filepath, free, nats, reflection, semigroups, transformers
- }:
- mkDerivation {
- pname = "ad";
version = "4.4.1";
sha256 = "1afpqk0my4n50xvq9f0rhcs8kzy3w1xxjql462xc0mvvhsgp6s6g";
setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -23860,7 +23779,6 @@ self: {
benchmarkHaskellDepends = [ base criterion erf ];
description = "Automatic Differentiation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adaptive-containers" = callPackage
@@ -23946,8 +23864,8 @@ self: {
}:
mkDerivation {
pname = "addy";
- version = "0.1.0.0";
- sha256 = "10p7q0infa1bawhg7hxw8rqjqdj3w737j5s3g41hy4in2nfp5ji0";
+ version = "0.1.0.1";
+ sha256 = "1mvxnbb1118f26581zqyh0id4g1qnn44f8q3h0sfpijf0g1v9vg5";
libraryHaskellDepends = [
attoparsec base bytestring ip lens relude text text-icu
validation-selective
@@ -24017,6 +23935,8 @@ self: {
benchmarkHaskellDepends = [ base gauge hs-functors ];
description = "See README for more info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"adjunctions" = callPackage
@@ -24142,8 +24062,8 @@ self: {
}:
mkDerivation {
pname = "advent-of-code-api";
- version = "0.2.7.0";
- sha256 = "0a1h2kwmfnhs1sj7wmnc4hgfwq45d8xl2ah0s6432k13v8lfpxwr";
+ version = "0.2.7.1";
+ sha256 = "1amm7gvr04ndfw6b0jxy8wsa35lqbfb85wp9bn9kycd8qp6vq9cs";
libraryHaskellDepends = [
aeson base bytestring containers deepseq directory filepath
finite-typelits http-api-data http-client http-client-tls
@@ -24153,6 +24073,39 @@ self: {
testHaskellDepends = [ base directory filepath HUnit text ];
description = "Advent of Code REST API bindings and servant API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "advent-of-code-ocr" = callPackage
+ ({ mkDerivation, base, containers, criterion, data-default-class
+ , heredoc, hspec, optparse-applicative, template-haskell, th-lift
+ , th-lift-instances
+ }:
+ mkDerivation {
+ pname = "advent-of-code-ocr";
+ version = "0.1.1.0";
+ sha256 = "0kzmm901yz262dblwv1wxf86h1jm8m2x1ky1gqvj03lck598fqz7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-default-class heredoc template-haskell th-lift
+ th-lift-instances
+ ];
+ executableHaskellDepends = [
+ base containers data-default-class heredoc optparse-applicative
+ template-haskell th-lift th-lift-instances
+ ];
+ testHaskellDepends = [
+ base containers data-default-class heredoc hspec template-haskell
+ th-lift th-lift-instances
+ ];
+ benchmarkHaskellDepends = [
+ base containers criterion data-default-class heredoc
+ template-haskell th-lift th-lift-instances
+ ];
+ description = "Parse Advent of Code ASCII art letters";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"aern2-mp" = callPackage
@@ -24200,104 +24153,9 @@ self: {
broken = true;
}) {};
- "aeson_0_7_0_6" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
- , dlist, ghc-prim, hashable, HUnit, mtl, old-locale, QuickCheck
- , scientific, syb, template-haskell, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, time
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "aeson";
- version = "0.7.0.6";
- sha256 = "0vsf9msz9iv7xvsnys5c0kbkldb0pvhiai02vz50b0d1kdsk2mb4";
- revision = "1";
- editedCabalFile = "00fhxw6x58aq2k4frj4nvky4jnagq4p0ylwfwjc3vnfq7lsa31wb";
- libraryHaskellDepends = [
- attoparsec base bytestring containers deepseq dlist ghc-prim
- hashable mtl old-locale scientific syb template-haskell text time
- unordered-containers vector
- ];
- testHaskellDepends = [
- attoparsec base bytestring containers ghc-prim HUnit QuickCheck
- template-haskell test-framework test-framework-hunit
- test-framework-quickcheck2 text time unordered-containers vector
- ];
- description = "Fast JSON parsing and encoding";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"aeson" = callPackage
({ mkDerivation, attoparsec, base, base-compat
, base-compat-batteries, base-orphans, base16-bytestring
- , bytestring, containers, deepseq, Diff, directory, dlist, filepath
- , generic-deriving, ghc-prim, hashable, hashable-time
- , integer-logarithms, primitive, QuickCheck, quickcheck-instances
- , scientific, tagged, tasty, tasty-golden, tasty-hunit
- , tasty-quickcheck, template-haskell, text, th-abstraction, time
- , time-compat, unordered-containers, uuid-types, vector
- }:
- mkDerivation {
- pname = "aeson";
- version = "1.4.7.1";
- sha256 = "1502yjw4y5ggp1gmrx0d3pcgrx3zhwbmcz4jb4fcignrbxjldrq7";
- revision = "1";
- editedCabalFile = "1fih6nmhvg0dvhngk2bjsr9s0804lgng971qz4fjl4mpb7cjz3bd";
- libraryHaskellDepends = [
- attoparsec base base-compat-batteries bytestring containers deepseq
- dlist ghc-prim hashable primitive scientific tagged
- template-haskell text th-abstraction time time-compat
- unordered-containers uuid-types vector
- ];
- testHaskellDepends = [
- attoparsec base base-compat base-orphans base16-bytestring
- bytestring containers Diff directory dlist filepath
- generic-deriving ghc-prim hashable hashable-time integer-logarithms
- QuickCheck quickcheck-instances scientific tagged tasty
- tasty-golden tasty-hunit tasty-quickcheck template-haskell text
- time time-compat unordered-containers uuid-types vector
- ];
- description = "Fast JSON parsing and encoding";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "aeson_1_5_2_0" = callPackage
- ({ mkDerivation, attoparsec, base, base-compat
- , base-compat-batteries, base-orphans, base16-bytestring
- , bytestring, containers, deepseq, Diff, directory, dlist, filepath
- , generic-deriving, ghc-prim, hashable, hashable-time
- , integer-logarithms, primitive, QuickCheck, quickcheck-instances
- , scientific, tagged, tasty, tasty-golden, tasty-hunit
- , tasty-quickcheck, template-haskell, text, th-abstraction, these
- , time, time-compat, unordered-containers, uuid-types, vector
- }:
- mkDerivation {
- pname = "aeson";
- version = "1.5.2.0";
- sha256 = "0awk3dss79mmcxpy147mijnd9icvlnm77bq248ibbbzx9y99hdfd";
- libraryHaskellDepends = [
- attoparsec base base-compat-batteries bytestring containers deepseq
- dlist ghc-prim hashable primitive scientific tagged
- template-haskell text th-abstraction these time time-compat
- unordered-containers uuid-types vector
- ];
- testHaskellDepends = [
- attoparsec base base-compat base-orphans base16-bytestring
- bytestring containers Diff directory dlist filepath
- generic-deriving ghc-prim hashable hashable-time integer-logarithms
- QuickCheck quickcheck-instances scientific tagged tasty
- tasty-golden tasty-hunit tasty-quickcheck template-haskell text
- these time time-compat unordered-containers uuid-types vector
- ];
- description = "Fast JSON parsing and encoding";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "aeson_1_5_4_1" = callPackage
- ({ mkDerivation, attoparsec, base, base-compat
- , base-compat-batteries, base-orphans, base16-bytestring
, bytestring, containers, data-fix, deepseq, Diff, directory, dlist
, filepath, generic-deriving, ghc-prim, hashable, hashable-time
, integer-logarithms, primitive, QuickCheck, quickcheck-instances
@@ -24325,7 +24183,6 @@ self: {
];
description = "Fast JSON parsing and encoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-applicative" = callPackage
@@ -24415,34 +24272,14 @@ self: {
}) {};
"aeson-combinators" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, fail, hspec
- , scientific, text, time, time-compat, unordered-containers
- , utf8-string, uuid-types, vector, void
- }:
- mkDerivation {
- pname = "aeson-combinators";
- version = "0.0.2.1";
- sha256 = "1a087940jpbnc2rc7cs4xj6kq1wv7b5ibhaimj7f6jglrn9xjgf0";
- libraryHaskellDepends = [
- aeson base bytestring containers fail scientific text time
- time-compat unordered-containers uuid-types vector void
- ];
- testHaskellDepends = [
- aeson base bytestring hspec text utf8-string
- ];
- description = "Aeson combinators for dead simple JSON decoding";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "aeson-combinators_0_0_3_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, doctest, fail
, hspec, scientific, text, time, time-compat, unordered-containers
, utf8-string, uuid-types, vector, void
}:
mkDerivation {
pname = "aeson-combinators";
- version = "0.0.3.0";
- sha256 = "0x8bk7jxrg8j1zk5047sf5i6fy6hahjzrfnyzgwv1l443z4v445n";
+ version = "0.0.4.0";
+ sha256 = "01gsrm6glr2axcls4hxs740z8lxf39cvdhvidf360mnijai4sgl6";
libraryHaskellDepends = [
aeson base bytestring containers fail scientific text time
time-compat unordered-containers uuid-types vector void
@@ -24452,21 +24289,19 @@ self: {
];
description = "Aeson combinators for dead simple JSON decoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-commit" = callPackage
- ({ mkDerivation, aeson, aeson-qq, base, containers, hspec, mtl
- , some, tasty, tasty-hspec, text, transformers
+ ({ mkDerivation, aeson, aeson-qq, base, mtl, tasty, tasty-hspec
+ , text
}:
mkDerivation {
pname = "aeson-commit";
- version = "1.2";
- sha256 = "09h0gjq9kg1krfsxsy1x697ndi6rajsyqk6j4kkcrq48ynq9vfxr";
+ version = "1.3";
+ sha256 = "1w185p6s91pxd0kmgxxv62v81q7f77q4bgs8iv02xv34wp1jm9jv";
libraryHaskellDepends = [ aeson base mtl text ];
testHaskellDepends = [
- aeson aeson-qq base containers hspec mtl some tasty tasty-hspec
- text transformers
+ aeson aeson-qq base tasty tasty-hspec text
];
description = "Parse Aeson data with commitment";
license = stdenv.lib.licenses.bsd3;
@@ -24704,8 +24539,8 @@ self: {
}:
mkDerivation {
pname = "aeson-gadt-th";
- version = "0.2.2";
- sha256 = "1nk0897569cldp7fhzc51mj8f93dx3nwk0fxy2pr41wmrbqrxw1k";
+ version = "0.2.5.0";
+ sha256 = "17csf7w0r6v8abmj9wx3fa830fmxif0mr3pgwxd63xhlrpv1hq72";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -24754,8 +24589,8 @@ self: {
}:
mkDerivation {
pname = "aeson-injector";
- version = "1.1.4.0";
- sha256 = "1q8wv9xdw8nw504dxplb3ibskfjqbawmv2694sjwg5cvi8d7fvkn";
+ version = "1.1.5.0";
+ sha256 = "0hg853hhbvmqa6yj0xg8naxdrbs2n3lzld0jrbmfmccjqcfzarx4";
libraryHaskellDepends = [
aeson base bifunctors deepseq hashable lens servant-docs swagger2
text unordered-containers
@@ -24776,16 +24611,14 @@ self: {
}:
mkDerivation {
pname = "aeson-iproute";
- version = "0.2";
- sha256 = "13r6vyyw1pbk5sz32ari5kig23vsg57a5pir037adi7xicrm6kgf";
+ version = "0.2.1";
+ sha256 = "1130mr5fqwi4d74xg6nkvpqycc0vvd6rsiahm1pdhbrx3wvra8p2";
libraryHaskellDepends = [
aeson base iproute text unordered-containers
];
testHaskellDepends = [ base doctest ];
description = "Aeson instances for iproute types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"aeson-json-ast" = callPackage
@@ -24833,6 +24666,8 @@ self: {
];
description = "Declarative JSON matchers";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aeson-native" = callPackage
@@ -24887,6 +24722,8 @@ self: {
libraryHaskellDepends = [ aeson base ];
description = "Options to derive FromJSON/ToJSON instances";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aeson-parsec-picky" = callPackage
@@ -24934,27 +24771,6 @@ self: {
broken = true;
}) {};
- "aeson-pretty_0_7_2" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs, text
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "aeson-pretty";
- version = "0.7.2";
- sha256 = "03ap81853qi8yd9kdgczllrrni23a6glsfxrwj8zab6ipjrbh234";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring text unordered-containers vector
- ];
- executableHaskellDepends = [
- aeson attoparsec base bytestring cmdargs
- ];
- description = "JSON pretty-printing library and command-line tool";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"aeson-pretty" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
, cmdargs, scientific, text, unordered-containers, vector
@@ -25060,31 +24876,6 @@ self: {
}) {};
"aeson-schemas" = callPackage
- ({ mkDerivation, aeson, base, bytestring, first-class-families
- , megaparsec, QuickCheck, raw-strings-qq, tasty, tasty-golden
- , tasty-hunit, tasty-quickcheck, template-haskell, text
- , th-test-utils, unordered-containers
- }:
- mkDerivation {
- pname = "aeson-schemas";
- version = "1.2.0";
- sha256 = "1fc8zzpkq6alkbl0v473h8diin8lqpliq6d3bsrh5bfny8yapvpk";
- revision = "1";
- editedCabalFile = "1kcsnpb4img9a122yz9lf7s0ils7ppbjyknbck2m8ip977kv04dp";
- libraryHaskellDepends = [
- aeson base bytestring first-class-families megaparsec
- template-haskell text unordered-containers
- ];
- testHaskellDepends = [
- aeson base bytestring first-class-families megaparsec QuickCheck
- raw-strings-qq tasty tasty-golden tasty-hunit tasty-quickcheck
- template-haskell text th-test-utils unordered-containers
- ];
- description = "Easily consume JSON data on-demand with type-safety";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "aeson-schemas_1_3_2" = callPackage
({ mkDerivation, aeson, aeson-qq, base, criterion, deepseq
, first-class-families, hashable, hint, interpolate, megaparsec
, QuickCheck, raw-strings-qq, tasty, tasty-golden, tasty-hunit
@@ -25112,6 +24903,7 @@ self: {
description = "Easily consume JSON data on-demand with type-safety";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aeson-serialize" = callPackage
@@ -25254,6 +25046,8 @@ self: {
];
description = "Utilities for working with Aeson";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aeson-value-parser" = callPackage
@@ -25321,31 +25115,6 @@ self: {
}:
mkDerivation {
pname = "aeson-yaml";
- version = "1.0.6.0";
- sha256 = "16rm4jgl4wznsc4nna3vdx186qy3jl71r9y89dgcc7k00qvlxb7y";
- revision = "1";
- editedCabalFile = "1k1wv06fzic9c85c5fl2piang0w1kxi9kzq02hp4chgmbj983jmz";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring text unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base bytestring string-qq tasty tasty-discover tasty-hunit
- unordered-containers yaml
- ];
- testToolDepends = [ tasty-discover ];
- description = "Output any Aeson value as YAML (pure Haskell library)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "aeson-yaml_1_1_0_0" = callPackage
- ({ mkDerivation, aeson, base, bytestring, string-qq, tasty
- , tasty-discover, tasty-hunit, text, unordered-containers, vector
- , yaml
- }:
- mkDerivation {
- pname = "aeson-yaml";
version = "1.1.0.0";
sha256 = "1kyrh2w3qpzwm7kpb4rkrzi22kqqz1vcjw1f59wdkl8a5hffkv6y";
isLibrary = true;
@@ -25360,7 +25129,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Output any Aeson value as YAML (pure Haskell library)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"affection" = callPackage
@@ -25542,6 +25310,45 @@ self: {
broken = true;
}) {};
+ "agda-unused" = callPackage
+ ({ mkDerivation, aeson, Agda, base, containers, directory, filepath
+ , hspec, megaparsec, mtl, optparse-applicative, text
+ }:
+ mkDerivation {
+ pname = "agda-unused";
+ version = "0.1.0";
+ sha256 = "1g0iyv9x46ql8j9ggb6nw58274vqb6z850x26glaqcdwa3wvn1i1";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ Agda base containers directory filepath megaparsec mtl text
+ ];
+ executableHaskellDepends = [
+ aeson base directory filepath mtl optparse-applicative text
+ ];
+ testHaskellDepends = [ base containers filepath hspec text ];
+ description = "Check for unused code in an Agda project";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "agda2lagda" = callPackage
+ ({ mkDerivation, base, directory, filepath, optparse-applicative }:
+ mkDerivation {
+ pname = "agda2lagda";
+ version = "0.2020.11.1";
+ sha256 = "0yl44jdczy9306b5ifd8iwchr8izna8sd5v2h2qm9ns909wcs1l8";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base directory filepath optparse-applicative
+ ];
+ description = "Translate .agda files into .lagda.tex files.";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"agentx" = callPackage
({ mkDerivation, base, binary, bitwise, bytestring, containers
, data-default, Diff, fclabels, mtl, network, pipes
@@ -25869,6 +25676,8 @@ self: {
];
description = "Diagrams-based charting backend for the Aivika simulation library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aivika-gpss" = callPackage
@@ -26102,6 +25911,8 @@ self: {
];
description = "A set of functions for a common use case of Alex";
license = stdenv.lib.licenses.isc;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"alfred" = callPackage
@@ -26125,16 +25936,17 @@ self: {
}) {};
"alfred-margaret" = callPackage
- ({ mkDerivation, base, containers, deepseq, hashable, hspec
+ ({ mkDerivation, aeson, base, containers, deepseq, hashable, hspec
, hspec-expectations, primitive, QuickCheck, quickcheck-instances
- , text, vector
+ , text, unordered-containers, vector
}:
mkDerivation {
pname = "alfred-margaret";
- version = "1.0.0.0";
- sha256 = "0dapvcxwwd6ylyqxfjf58jink2rh9i6k1lw1ii6j8jb28qfvy400";
+ version = "1.1.1.0";
+ sha256 = "1z3plc2a6qnlx1cpb3icw44h3lbspaq2n7djl4pljhb4dm5bflbq";
libraryHaskellDepends = [
- base containers deepseq hashable primitive text vector
+ aeson base containers deepseq hashable primitive text
+ unordered-containers vector
];
testHaskellDepends = [
base deepseq hspec hspec-expectations QuickCheck
@@ -26142,8 +25954,6 @@ self: {
];
description = "Fast Aho-Corasick string searching";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"alg" = callPackage
@@ -26226,6 +26036,8 @@ self: {
];
description = "Model and test API surfaces algebraically";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"algebra-dag" = callPackage
@@ -26506,6 +26318,8 @@ self: {
];
description = "Ally Invest integration library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"almost-fix" = callPackage
@@ -26992,6 +26806,8 @@ self: {
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Comprehensive Amazon Web Services SDK";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"amazonka-alexa-business" = callPackage
@@ -28934,6 +28750,8 @@ self: {
];
description = "Provides conduits to upload data to S3 using the Multipart API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"amazonka-sagemaker" = callPackage
@@ -30023,6 +29841,8 @@ self: {
libraryHaskellDepends = [ base recursion-schemes ];
description = "A fixpoint of a functor that can be annotated";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"annotated-wl-pprint" = callPackage
@@ -30084,6 +29904,8 @@ self: {
pname = "ansi-pretty";
version = "0.1.2.2";
sha256 = "0q72y2pnx5qx7jk1waq3qdry1azq07wygb9hcgjqz78lbszg19cm";
+ revision = "1";
+ editedCabalFile = "1y5bdvaafhfs4plrbs5iqvwh86xcxjcz5gas0fb3fkfyjhj87pck";
libraryHaskellDepends = [
aeson ansi-wl-pprint array base bytestring containers generics-sop
nats scientific semigroups tagged text time unordered-containers
@@ -30296,8 +30118,8 @@ self: {
}:
mkDerivation {
pname = "antiope-athena";
- version = "7.5.1";
- sha256 = "03yy4l5czchq9djxh0yg40vlnynly2wsl5rcj91231n575ndqbij";
+ version = "7.5.3";
+ sha256 = "0v8qk3v4i8f0bc8mw67km6bly37widk5v94d6paizpkn014c3y0m";
libraryHaskellDepends = [
amazonka amazonka-athena amazonka-core base lens resourcet text
unliftio-core
@@ -30309,19 +30131,23 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-contract" = callPackage
({ mkDerivation, aeson, antiope-s3, avro, base, bytestring, text }:
mkDerivation {
pname = "antiope-contract";
- version = "7.5.1";
- sha256 = "006i6z7hzz6kkss18wyk2pwmib9ip2z2qwc1r0y3ni1j6kaghbh0";
+ version = "7.5.3";
+ sha256 = "18ifdaq6z5x3x3fbfbaf86x9wcb4dlgdbdi652a7dyh5kap29a3j";
libraryHaskellDepends = [
aeson antiope-s3 avro base bytestring text
];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-core" = callPackage
@@ -30332,8 +30158,8 @@ self: {
}:
mkDerivation {
pname = "antiope-core";
- version = "7.5.1";
- sha256 = "068dsdag8bng2ddzr0vxipmzrfa5x3jq80pmrmc0l86bjvnlsdjr";
+ version = "7.5.3";
+ sha256 = "1bzyahw9i098riqlmhymbk0zjg4iz95r0c4mpsrc811wyqdi7f65";
libraryHaskellDepends = [
aeson amazonka amazonka-core base bytestring exceptions
generic-lens http-client http-types lens mtl resourcet text
@@ -30348,6 +30174,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-dynamodb" = callPackage
@@ -30357,8 +30185,8 @@ self: {
}:
mkDerivation {
pname = "antiope-dynamodb";
- version = "7.5.1";
- sha256 = "19d7rbz4qqq3pd9nncydgvda798a5ziw21zkpa5d0smfna71zckp";
+ version = "7.5.3";
+ sha256 = "1j9g36c33virrnsqxrggnx2283nw9bp0i256vgq4z92h1z76kfz0";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-dynamodb antiope-core base
generic-lens lens text unliftio-core unordered-containers
@@ -30381,8 +30209,8 @@ self: {
}:
mkDerivation {
pname = "antiope-es";
- version = "7.5.1";
- sha256 = "1ww4bfwqbyrmzb84wy78yqzp3snbq3xlxvhs7vl3ik71bn99abyr";
+ version = "7.5.3";
+ sha256 = "0w6l22psj5q2p3chvxikywf5ix20sw7qlqgk24rm0ss6ybsfmk2k";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-elasticsearch base bytestring
json-stream lens thyme unordered-containers vector
@@ -30391,6 +30219,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-messages" = callPackage
@@ -30401,8 +30231,8 @@ self: {
}:
mkDerivation {
pname = "antiope-messages";
- version = "7.5.1";
- sha256 = "01hkq4n5jpfnb9i8ysaj73zknvkhpxb3mnq7csv2dc29ral4vzdp";
+ version = "7.5.3";
+ sha256 = "1kajbd0f81jamk7cg97zkm9z89m0zlsfklhbfarg3rgiaq28ss2v";
libraryHaskellDepends = [
aeson amazonka amazonka-core base bytestring generic-lens lens
lens-aeson monad-loops network-uri text unliftio-core
@@ -30415,6 +30245,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-optparse-applicative" = callPackage
@@ -30424,8 +30256,8 @@ self: {
}:
mkDerivation {
pname = "antiope-optparse-applicative";
- version = "7.5.1";
- sha256 = "0zmsb9ng46p0plch2q8lh5awbkx7vhg9xl3na1czdk0mdh2hdhxz";
+ version = "7.5.3";
+ sha256 = "1cmgzkfqszqrngfrpj064cpmkw97pxrmcni3352qyzzicnakww56";
libraryHaskellDepends = [
amazonka amazonka-core amazonka-s3 base optparse-applicative text
];
@@ -30436,6 +30268,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-s3" = callPackage
@@ -30447,8 +30281,8 @@ self: {
}:
mkDerivation {
pname = "antiope-s3";
- version = "7.5.1";
- sha256 = "0nqs90pqk8dfjbrc55f4gdw4ybw2fslbx9z2x8k45mqpri3xwc0y";
+ version = "7.5.3";
+ sha256 = "1wwh17vzrbg20jmbgf9xdx8vn5qkx8azzczzlyb2s2k3ldlh8s0c";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-s3 antiope-core
antiope-messages attoparsec base bytestring conduit conduit-extra
@@ -30464,6 +30298,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-shell" = callPackage
@@ -30476,8 +30312,8 @@ self: {
}:
mkDerivation {
pname = "antiope-shell";
- version = "7.5.1";
- sha256 = "1c68d84ykdamzgybryr474xh826j9b5mh4gn6q3aiapzl5bhh7ym";
+ version = "7.5.3";
+ sha256 = "1cbvym7ip9vflwjas9fi8izbb6qdrjqq3c8pd7f0ab8a5i7qmbqh";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-s3 antiope-core
antiope-messages antiope-s3 attoparsec base bytestring exceptions
@@ -30493,6 +30329,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-sns" = callPackage
@@ -30502,8 +30340,8 @@ self: {
}:
mkDerivation {
pname = "antiope-sns";
- version = "7.5.1";
- sha256 = "13wzfjqihsi0xw7j869knj82a6k1fi74fywhlqc3bh1xc6wcir7q";
+ version = "7.5.3";
+ sha256 = "01saqspi2033y423nyw4k0km3ggmypp3zzhkr7ha51r717bj6sii";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-sns base bytestring
generic-lens lens text time unliftio-core
@@ -30516,6 +30354,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-sqs" = callPackage
@@ -30527,8 +30367,8 @@ self: {
}:
mkDerivation {
pname = "antiope-sqs";
- version = "7.5.1";
- sha256 = "1y3fxqx5595agcnr157q3jap0dmcss8lyij187j9f29y0wkbkzv6";
+ version = "7.5.3";
+ sha256 = "18wz0ajnh5hib7srwksbwsyqrnp4slzcd2i30p98gnh1plqgbx5p";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-sqs base bytestring conduit
generic-lens lens lens-aeson monad-loops mtl network-uri split text
@@ -30542,6 +30382,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antiope-swf" = callPackage
@@ -30580,6 +30422,8 @@ self: {
libraryHaskellDepends = [ base syb template-haskell ];
description = "Combinator library for quasi- and anti-quoting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"antisplice" = callPackage
@@ -30697,6 +30541,8 @@ self: {
];
description = "An implementation of the AOS signatures";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aosd" = callPackage
@@ -30825,6 +30671,8 @@ self: {
];
description = "Simple gloss renderer for apecs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"apecs-physics" = callPackage
@@ -30841,6 +30689,8 @@ self: {
];
description = "2D physics for apecs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"apecs-physics-gloss" = callPackage
@@ -30852,6 +30702,8 @@ self: {
libraryHaskellDepends = [ apecs apecs-physics base gloss ];
description = "Gloss rendering for apecs-physics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"apecs-stm" = callPackage
@@ -30860,8 +30712,8 @@ self: {
}:
mkDerivation {
pname = "apecs-stm";
- version = "0.1.3";
- sha256 = "0wp5mydn1cmf4p70jsnfxqzy48p6d3x01xxpvdbnvkkqrpyrwgxg";
+ version = "0.1.4";
+ sha256 = "1x9bc3b0x7s7sphr4wzz4mnzz97n2rz3kn48rs889cvqa825dgr9";
libraryHaskellDepends = [
apecs base containers list-t stm stm-containers template-haskell
vector
@@ -31632,136 +31484,6 @@ self: {
broken = true;
}) {};
- "apply-refact_0_3_0_1" = 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.3.0.1";
- sha256 = "0578ql80fzkbjiw589v4498qd9jd7l2sz626imkdybxr1lqbsm0p";
- 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;
- }) {};
-
- "apply-refact_0_6_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.6.0.0";
- sha256 = "0p2mqgjcqr1zcmk8zgr0yq7g8z1agsa6l493lkj6g3ya9lyhxgig";
- 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;
- }) {};
-
- "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";
- revision = "1";
- editedCabalFile = "0ilyhm6nz1mkjdq13pgzgplmmfqrv6b5ailyhvbds362pqjqw72q";
- 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;
- }) {};
-
- "apply-refact_0_8_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.8.0.0";
- sha256 = "0hh7flildjfbigs0knhd3bfd4r3wnhg4ji4cpkx1qagnp5cs4pk0";
- 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;
- }) {};
-
"apply-refact" = callPackage
({ mkDerivation, base, containers, directory, extra, filemanip
, filepath, ghc, ghc-boot-th, ghc-exactprint, optparse-applicative
@@ -31832,6 +31554,32 @@ self: {
broken = true;
}) {};
+ "approx" = callPackage
+ ({ mkDerivation, base, containers, hashable, QuickCheck, text, time
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "approx";
+ version = "0.1.0.0";
+ sha256 = "1vc6k0w4zr355gfvprb5syh5jpmkdvp6wjibi4l95q9zwwdwhjn2";
+ revision = "1";
+ editedCabalFile = "0k34bjsazp4wbv7zzmvh5vnqv7yzyq20h99q30mcrn4g2bvpc0q1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers hashable text time unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ base containers hashable text time unordered-containers vector
+ ];
+ testHaskellDepends = [
+ base containers hashable QuickCheck text time unordered-containers
+ vector
+ ];
+ description = "Easy-to-use reasonable way of emulating approximate in Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"approx-rand-test" = callPackage
({ mkDerivation, base, Chart, Chart-diagrams, colour, conduit
, containers, data-default, data-default-class, filepath, HUnit
@@ -32102,14 +31850,14 @@ self: {
pname = "arbor-postgres";
version = "0.0.5";
sha256 = "0vn3jv60pphjjmhjwn1il3sh886dgdxs47gdiqfrii12hv8rsi21";
+ revision = "1";
+ editedCabalFile = "0954zfh8rnajywcjipd614axbpqq1r04v2nrrmgyjb3f6bk1y8k9";
libraryHaskellDepends = [
base bytestring generic-lens lens network-uri optparse-applicative
postgresql-simple text
];
description = "Convenience types and functions for postgresql-simple";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"arbtt" = callPackage
@@ -32183,8 +31931,8 @@ self: {
}:
mkDerivation {
pname = "arch-hs";
- version = "0.3.0.0";
- sha256 = "068si2cq7557rp86ni5psaig7z89vq38p56743l8yk92i1x1xz9j";
+ version = "0.5.0.0";
+ sha256 = "04w0b8ivwrm1g0qg0pym7qap4ggzv6ng9x6jy5k2nnbmpck07597";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -32203,6 +31951,8 @@ self: {
];
description = "Distribute hackage packages to archlinux";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"archive" = callPackage
@@ -32290,8 +32040,6 @@ self: {
libraryToolDepends = [ cpphs ];
description = "Common interface using the tar-bytestring package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"archiver" = callPackage
@@ -32714,38 +32462,6 @@ self: {
}) {};
"arithmoi" = callPackage
- ({ mkDerivation, array, base, constraints, containers, deepseq
- , exact-pi, gauge, ghc-prim, integer-gmp, integer-logarithms
- , QuickCheck, random, semirings, smallcheck, tasty, tasty-hunit
- , tasty-quickcheck, tasty-smallcheck, transformers, vector
- }:
- mkDerivation {
- pname = "arithmoi";
- version = "0.10.0.0";
- sha256 = "1qrrmwg40bw5j51w658ilm5wg6awfbsylpmzjw0r0rgh6ml8irk9";
- revision = "1";
- editedCabalFile = "0vl9ki92sfsgqmgfg4f69rqqkl0q4a4klffsskhns6bjbcnzdg8z";
- configureFlags = [ "-f-llvm" ];
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- array base constraints containers deepseq exact-pi ghc-prim
- integer-gmp integer-logarithms random semirings transformers vector
- ];
- testHaskellDepends = [
- base containers exact-pi integer-gmp QuickCheck semirings
- smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck
- transformers vector
- ];
- benchmarkHaskellDepends = [
- array base constraints containers deepseq gauge integer-logarithms
- random vector
- ];
- description = "Efficient basic number-theoretic functions";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "arithmoi_0_11_0_1" = callPackage
({ mkDerivation, array, base, chimera, constraints, containers
, deepseq, exact-pi, gauge, integer-gmp, integer-logarithms
, integer-roots, mod, QuickCheck, quickcheck-classes, random
@@ -32773,7 +32489,6 @@ self: {
];
description = "Efficient basic number-theoretic functions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arity-generic-liftA" = callPackage
@@ -32886,12 +32601,14 @@ self: {
}:
mkDerivation {
pname = "array-builder";
- version = "0.1.0.0";
- sha256 = "0wh1x3hywb0jaqxa7kdh3x3w0mqa4dwq2wdc70fvgmlijm6pyqw9";
+ version = "0.1.1.0";
+ sha256 = "0g9mpplq813b33yfgfa095k2vnrxnj8lhxvw60qc6jky6l9q0inq";
libraryHaskellDepends = [ array-chunks base primitive run-st ];
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Builders for arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"array-chunks" = callPackage
@@ -32900,8 +32617,8 @@ self: {
}:
mkDerivation {
pname = "array-chunks";
- version = "0.1.1.0";
- sha256 = "0lx33cyqv5b5iyxy4v18dxs1zb0j72kxnlckhcckjvncg8lyf413";
+ version = "0.1.2.0";
+ sha256 = "0x2hkc587ki4ncpsdrhby04dr4gxvf0v5qj5kda7kfl2814srixi";
libraryHaskellDepends = [ base primitive run-st ];
testHaskellDepends = [
base primitive QuickCheck quickcheck-classes tasty tasty-hunit
@@ -32909,6 +32626,8 @@ self: {
];
description = "Lists of chunks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"array-forth" = callPackage
@@ -33068,12 +32787,12 @@ self: {
}) {};
"arrow-list" = callPackage
- ({ mkDerivation, base, containers, mtl }:
+ ({ mkDerivation, base, containers, fail, mtl }:
mkDerivation {
pname = "arrow-list";
- version = "0.7";
- sha256 = "1n6m77hdkpjd12r0b8fwxiz3jz0j86cplgsk27m2raj86vr3dy1k";
- libraryHaskellDepends = [ base containers mtl ];
+ version = "0.7.1";
+ sha256 = "11rzpq8mml00amb0hd09bwwhpn199jr8mxp0454ljkpbgqc5jm9s";
+ libraryHaskellDepends = [ base containers fail mtl ];
description = "List arrows for Haskell";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -33198,10 +32917,8 @@ self: {
({ mkDerivation, base, parsec, split, tagsoup }:
mkDerivation {
pname = "arxiv";
- version = "0.0.1";
- sha256 = "1has8v40h8w4v393pgd4qk4fzgdw02y12zk2hspkic1q5bx33dxh";
- revision = "1";
- editedCabalFile = "19xdrsrcg29c7ncy0gnxbk4zbnyb53j1kk9sys6j8h1l03k12qvl";
+ version = "0.0.2";
+ sha256 = "0lzmw35fry16zv8fbnqw3k5wv4d6vh9f0fz2yv9kph7zgs5sqgwh";
libraryHaskellDepends = [ base parsec split tagsoup ];
description = "A client for the Arxiv API";
license = "LGPL";
@@ -33251,8 +32968,6 @@ self: {
];
description = "The ASCII character set and encoding";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ascii-art-to-unicode" = callPackage
@@ -33301,8 +33016,6 @@ self: {
libraryHaskellDepends = [ base random-extras random-fu text ];
description = "A collection of ASCII cows. Moo.";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ascii-flatten" = callPackage
@@ -33722,8 +33435,8 @@ self: {
({ mkDerivation, async, base, process, text }:
mkDerivation {
pname = "aspell-pipe";
- version = "0.4";
- sha256 = "0vwav0xdrsb9kww7p1z63wifxd5bfd247vdqscf2amkdgm5k716m";
+ version = "0.6";
+ sha256 = "09dw4v4j5pmqi8pdh3p7kk7f8pph5w33s7vd21fgvhv3arnrj6p8";
libraryHaskellDepends = [ async base process text ];
description = "Pipe-based interface to the Aspell program";
license = stdenv.lib.licenses.bsd3;
@@ -34287,8 +34000,6 @@ self: {
libraryHaskellDepends = [ array base containers ghc-prim ];
description = "serialisation for Haskell values with sharing support";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"aterm-utils" = callPackage
@@ -34487,8 +34198,6 @@ self: {
];
description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).";
license = stdenv.lib.licenses.cc0;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"atom-msp430" = callPackage
@@ -34923,8 +34632,8 @@ self: {
}:
mkDerivation {
pname = "attoparsec-data";
- version = "1.0.5";
- sha256 = "0wis420lq3bynwjb86sphlhw50d1q9mpm2fnrvpd9a768m1qwiba";
+ version = "1.0.5.1";
+ sha256 = "1fn28rg79w5kkv3lrmqjcff8fhn1kc2b84vnblr0xqbfdjdbzgp6";
libraryHaskellDepends = [
attoparsec attoparsec-time base bytestring scientific text time
uuid
@@ -35250,15 +34959,15 @@ self: {
}) {};
"aur" = callPackage
- ({ mkDerivation, aeson, base, bytestring, http-client
+ ({ mkDerivation, aeson, base, bytestring, hashable, http-client
, http-client-tls, http-types, tasty, tasty-hunit, text
}:
mkDerivation {
pname = "aur";
- version = "7.0.4";
- sha256 = "0zq1p255qpi1alnhm7k4aj9w4v8y4ybdywbw5w9jbx47imfqqp9y";
+ version = "7.0.5";
+ sha256 = "16c4q0w6qpn4gg6xlggkcs92fcvm58a3qmykfm1dgcfsjhwwhxkx";
libraryHaskellDepends = [
- aeson base bytestring http-client http-types text
+ aeson base bytestring hashable http-client http-types text
];
testHaskellDepends = [
base http-client http-client-tls tasty tasty-hunit
@@ -35297,8 +35006,10 @@ self: {
}:
mkDerivation {
pname = "aura";
- version = "3.1.9";
- sha256 = "1q248qh2wpm0gq07pihw3gshd3ixjdl1l3bf1cpxabn0gjss4hma";
+ version = "3.2.2";
+ sha256 = "07ska8w2k3sl084aadjclw8v0ykrp8hiwhim5zd6wd7q95njyk2f";
+ revision = "1";
+ editedCabalFile = "033ycqm18zqq69yam189whpcbnajanj2yp8na8ad344ghcn1gs5l";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -35464,8 +35175,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Template Haskell to automatically pass values to functions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"autoexporter" = callPackage
@@ -35619,6 +35328,8 @@ self: {
libraryHaskellDepends = [ base Cabal dir-traverse filepath ];
description = "Custom Setup to automate package modules discovery";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"autoproc" = callPackage
@@ -35920,8 +35631,6 @@ self: {
testHaskellDepends = [ attoparsec base lens pretty-show text ];
description = "Parse aviation weather reports";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"awesome-prelude" = callPackage
@@ -36056,6 +35765,8 @@ self: {
];
description = "For signing AWS CloudFront HTTP URL requests";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aws-configuration-tools" = callPackage
@@ -36374,8 +36085,8 @@ self: {
}:
mkDerivation {
pname = "aws-lambda-haskell-runtime";
- version = "3.0.4";
- sha256 = "1rbgi7f1vymh8q6b074z64jlww5gssbzhpam8k8lcgp0zlvm13n1";
+ version = "3.0.5";
+ sha256 = "07p0lz2hj17n97f2ps59axb4c6416g45m6wcd3hk7jybd6ja8qpr";
libraryHaskellDepends = [
aeson base bytestring case-insensitive http-client http-types path
path-io safe-exceptions-checked template-haskell text
@@ -36431,6 +36142,8 @@ self: {
executableHaskellDepends = [ aeson base lens lens-aeson text ];
description = "Haskell on AWS Lambda Runtime API";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aws-mfa-credentials" = callPackage
@@ -36594,6 +36307,8 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Wrapper over Amazonka's SES";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"aws-sign4" = callPackage
@@ -36958,8 +36673,6 @@ self: {
benchmarkHaskellDepends = [ base criterion pipes ];
description = "Immutable disk-based B* trees";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"b9" = callPackage
@@ -36969,13 +36682,13 @@ self: {
, free, hashable, hspec, hspec-expectations, lens, monad-control
, mtl, neat-interpolation, optparse-applicative, parallel, parsec
, posix-pty, pretty, pretty-show, process, QuickCheck, random
- , shake, syb, tagged, template, text, time, transformers, unix
- , unordered-containers, vector, yaml
+ , shake, syb, tagged, template, temporary, text, time, transformers
+ , unix, unordered-containers, vector, yaml
}:
mkDerivation {
pname = "b9";
- version = "3.1.0";
- sha256 = "1jggx5ph7js5r9jck6y2ghlb2il2winz0wg1y01vkp6dc1jpqjd7";
+ version = "3.2.0";
+ sha256 = "00zsrvqj46a9f7fa8g64xrlmzbwy8gca2bsgvnkv0chzbgn26pjk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -36984,8 +36697,8 @@ self: {
exceptions extensible-effects filepath free hashable hspec
hspec-expectations lens monad-control mtl neat-interpolation
optparse-applicative parallel parsec posix-pty pretty pretty-show
- process QuickCheck random shake syb tagged template text time
- transformers unix unordered-containers vector yaml
+ process QuickCheck random shake syb tagged template temporary text
+ time transformers unix unordered-containers vector yaml
];
executableHaskellDepends = [
aeson base binary bytestring containers directory
@@ -37441,6 +37154,8 @@ self: {
testHaskellDepends = [ base ];
description = "For when a type should never be an instance of a class";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bank-holiday-usa" = callPackage
@@ -37461,8 +37176,8 @@ self: {
({ mkDerivation, base, containers, hspec, QuickCheck, time }:
mkDerivation {
pname = "bank-holidays-england";
- version = "0.2.0.5";
- sha256 = "0n7q9s1vsmh5adkhpgycz8y6q49xqf77fpmm73cw0iqgjly4x9hp";
+ version = "0.2.0.6";
+ sha256 = "1g8x61byxikanfdpnmfc354gp1kyd5c4jlym9w65sh7l1jpbm4ss";
libraryHaskellDepends = [ base containers time ];
testHaskellDepends = [ base containers hspec QuickCheck time ];
description = "Calculation of bank holidays in England and Wales";
@@ -37510,8 +37225,8 @@ self: {
({ mkDerivation, barbies, base, split, template-haskell }:
mkDerivation {
pname = "barbies-th";
- version = "0.1.5";
- sha256 = "0bjbvamihrwh4l5zs8fnk2iq98fd1d2xkfbsvp6spfcp1ynqlj6k";
+ version = "0.1.7";
+ sha256 = "1wzy8j4i9mp1vlfkrixc49nv1c6prqspvhkjdwp16bvdz4fgbvpq";
libraryHaskellDepends = [ barbies base split template-haskell ];
testHaskellDepends = [ barbies base ];
description = "Create strippable HKD via TH";
@@ -37526,6 +37241,8 @@ self: {
pname = "barbly";
version = "0.1.0.0";
sha256 = "1mmbvgw5g2jb8qv7vd00iym9xyb07jx03wi6x1ldqvzfn2vcc22l";
+ revision = "1";
+ editedCabalFile = "09xb9p2ik8kpa2gras9jqs4rr55bsbd7xnmgijxxzwf9hl00k0by";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -37667,18 +37384,6 @@ self: {
broken = true;
}) {invalid-cabal-flag-settings = null;};
- "base-compat_0_11_1" = callPackage
- ({ mkDerivation, base, unix }:
- mkDerivation {
- pname = "base-compat";
- version = "0.11.1";
- sha256 = "0dkdmyxg8hfjn1zyrp4mahkr90g4y672mlvkj0m1krwkxi11avrm";
- libraryHaskellDepends = [ base unix ];
- description = "A compatibility layer for base";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"base-compat" = callPackage
({ mkDerivation, base, unix }:
mkDerivation {
@@ -37717,6 +37422,8 @@ self: {
doHaddock = false;
description = "Helps migrating projects to base-compat(-batteries)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"base-encoding" = callPackage
@@ -37732,8 +37439,6 @@ self: {
];
description = "Binary-to-text encodings (e.g. base64)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"base-feature-macros" = callPackage
@@ -37806,23 +37511,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "base-prelude";
- version = "1.3";
- sha256 = "1zk728sd09hh2r4xwz4lazsrrgg5cshydn64932sm0vckplndk73";
- libraryHaskellDepends = [ base ];
- description = "The most complete prelude formed solely from the \"base\" package";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "base-prelude_1_4" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "base-prelude";
version = "1.4";
sha256 = "0nn5v2y9kl7i3n21250m7cvn55lvkmzj22wx6q4kaag5ycwwczrs";
libraryHaskellDepends = [ base ];
description = "The most complete prelude formed solely from the \"base\" package";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base-unicode-symbols" = callPackage
@@ -37838,30 +37531,6 @@ self: {
"base16" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, criterion
- , deepseq, memory, primitive, random-bytestring, tasty, tasty-hunit
- , text, text-short
- }:
- mkDerivation {
- pname = "base16";
- version = "0.2.1.0";
- sha256 = "192wnfqb97qhpjrjlq2da5jrjz9zjqjp57rgh1xdvdrnp7900r0s";
- libraryHaskellDepends = [
- base bytestring primitive text text-short
- ];
- testHaskellDepends = [
- base base16-bytestring bytestring memory random-bytestring tasty
- tasty-hunit text
- ];
- benchmarkHaskellDepends = [
- base base16-bytestring bytestring criterion deepseq memory
- random-bytestring text
- ];
- description = "RFC 4648-compliant Base16 encodings/decodings";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "base16_0_3_0_1" = callPackage
- ({ mkDerivation, base, base16-bytestring, bytestring, criterion
, deepseq, primitive, QuickCheck, random-bytestring, tasty
, tasty-hunit, tasty-quickcheck, text, text-short
}:
@@ -37869,8 +37538,8 @@ self: {
pname = "base16";
version = "0.3.0.1";
sha256 = "10id9h9mas4kb4kfiz7hhp2hhwnb9mh92pr327c53jqxi4hazgnd";
- revision = "2";
- editedCabalFile = "1ryc4228j4v9mcfjkgallfmww7g19y4awkqyq4j4734rgvkvgslw";
+ revision = "3";
+ editedCabalFile = "15r912hb0l92f2cajpq2b6ky4g5qwfmb502nfv1vrg02a1h25xb6";
libraryHaskellDepends = [
base bytestring deepseq primitive text text-short
];
@@ -37884,7 +37553,6 @@ self: {
];
description = "Fast RFC 4648-compliant Base16 encoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base16-bytestring" = callPackage
@@ -37901,17 +37569,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "base16-bytestring_1_0_0_0" = callPackage
+ "base16-bytestring_1_0_1_0" = callPackage
({ mkDerivation, base, bytestring, criterion, deepseq, HUnit
, QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "base16-bytestring";
- version = "1.0.0.0";
- sha256 = "12bnl2fs0h4hcjpr69xqqngjh0117dlvkv56lxski6g6fnbwps2r";
- revision = "2";
- editedCabalFile = "16nmmf3mmkdrssx6i77drh7ac7r6cfb1dnbna62z32h11yyyk49j";
+ version = "1.0.1.0";
+ sha256 = "1ynnplw8iz3v5ld0xxgpxgasb0hg62x62wxxf5lx6lxyb15hmiy0";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base bytestring HUnit QuickCheck test-framework
@@ -37925,23 +37591,6 @@ self: {
"base16-lens" = callPackage
({ mkDerivation, base, base16, bytestring, Cabal, cabal-doctest
- , doctest, lens, text
- }:
- mkDerivation {
- pname = "base16-lens";
- version = "0.1.2.0";
- sha256 = "1mgy1adhlw2sra8lfc2cklfn9w7jj2f9pilifnnfk2jq6hwalpn8";
- revision = "1";
- editedCabalFile = "0ann8lmr7w1p11c0yxb1q1j776hi1dj8xm6xg8c2nq3x396gcnlp";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ base base16 bytestring lens text ];
- testHaskellDepends = [ base doctest lens ];
- description = "Optics for the Base16 library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "base16-lens_0_1_3_0" = callPackage
- ({ mkDerivation, base, base16, bytestring, Cabal, cabal-doctest
, doctest, lens, text, text-short
}:
mkDerivation {
@@ -37955,29 +37604,9 @@ self: {
testHaskellDepends = [ base doctest lens ];
description = "Optics for the Base16 library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base32" = callPackage
- ({ mkDerivation, base, bytestring, criterion, deepseq, memory
- , random-bytestring, tasty, tasty-hunit, text
- }:
- mkDerivation {
- pname = "base32";
- version = "0.1.1.2";
- sha256 = "1mnzjpbsz8lsmn13lsbhj4jxn722vfchv01wb2faxfncijji2qhf";
- libraryHaskellDepends = [ base bytestring text ];
- testHaskellDepends = [
- base bytestring memory random-bytestring tasty tasty-hunit text
- ];
- benchmarkHaskellDepends = [
- base bytestring criterion deepseq memory random-bytestring text
- ];
- description = "RFC 4648-compliant Base32 encodings/decodings";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "base32_0_2_0_0" = callPackage
({ mkDerivation, base, bytestring, criterion, deepseq
, ghc-byteorder, memory, QuickCheck, random-bytestring, tasty
, tasty-hunit, tasty-quickcheck, text, text-short
@@ -38000,7 +37629,6 @@ self: {
];
description = "Fast RFC 4648-compliant Base32 encoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base32-bytestring" = callPackage
@@ -38207,8 +37835,8 @@ self: {
}:
mkDerivation {
pname = "base64-bytestring";
- version = "1.0.0.3";
- sha256 = "1iwg03z1w9n3n3q68siwk0dmwkb3sygmravbwbrs7h0lxih9s5gg";
+ version = "1.1.0.0";
+ sha256 = "1adcnkcx4nh3d59k94bkndj0wkgbvchz576qwlpaa7148a86q391";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base bytestring containers HUnit QuickCheck split test-framework
@@ -38221,23 +37849,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "base64-bytestring_1_2_0_0" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, deepseq
- , HUnit, QuickCheck, split, test-framework, test-framework-hunit
+ "base64-bytestring_1_2_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, criterion, deepseq, HUnit
+ , QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "base64-bytestring";
- version = "1.2.0.0";
- sha256 = "1vz4dbbsymjrw5dmb62yw41v126narlb3dpa037hgldlw1fw2iip";
+ version = "1.2.0.1";
+ sha256 = "0f66mzsyik3zrn72cygg8w3375qpvn3422z3j4fkkc9f0xyv22dg";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring containers HUnit QuickCheck split test-framework
+ base bytestring HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- benchmarkHaskellDepends = [
- base bytestring containers criterion deepseq
- ];
+ benchmarkHaskellDepends = [ base bytestring criterion deepseq ];
description = "Fast base64 encoding and decoding for ByteStrings";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -38536,8 +38162,6 @@ self: {
testHaskellDepends = [ base hspec stm timespan ];
description = "Simplify queuing up data and processing it in batch";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"batch-rename" = callPackage
@@ -38984,6 +38608,45 @@ self: {
broken = true;
}) {};
+ "beam-automigrate" = callPackage
+ ({ mkDerivation, aeson, base, beam-core, beam-postgres, bytestring
+ , containers, criterion, deepseq, dlist
+ , gargoyle-postgresql-connect, microlens, mtl, postgresql-simple
+ , pretty-simple, QuickCheck, quickcheck-instances, resource-pool
+ , scientific, splitmix, string-conv, tasty, tasty-quickcheck, text
+ , time, transformers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "beam-automigrate";
+ version = "0.1.1.0";
+ sha256 = "14h8zbxyrkhajjbhjmdib9s99xv0bmar4s6gb4mpqkvhakj7a76n";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base beam-core beam-postgres bytestring containers deepseq
+ dlist microlens mtl postgresql-simple pretty-simple QuickCheck
+ quickcheck-instances scientific splitmix string-conv text time
+ transformers uuid vector
+ ];
+ executableHaskellDepends = [
+ aeson base beam-core beam-postgres bytestring containers
+ gargoyle-postgresql-connect postgresql-simple resource-pool text
+ time
+ ];
+ testHaskellDepends = [
+ base containers pretty-simple QuickCheck tasty tasty-quickcheck
+ text
+ ];
+ benchmarkHaskellDepends = [
+ base beam-postgres bytestring containers criterion deepseq
+ postgresql-simple QuickCheck splitmix
+ ];
+ description = "DB migration library for beam, targeting Postgres";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"beam-core" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, dlist, free
, ghc-prim, hashable, microlens, mtl, network-uri, scientific
@@ -38991,8 +38654,8 @@ self: {
}:
mkDerivation {
pname = "beam-core";
- version = "0.8.0.0";
- sha256 = "1l71xvmny0nf6fdhsffvfj764h4d97icgc291kfqz25n511b74r8";
+ version = "0.9.0.0";
+ sha256 = "0ixaxjmgg162ff7srvwmkv5lp1kfb0b6wmrpaz97rsmlpa5vf6ji";
libraryHaskellDepends = [
aeson base bytestring containers dlist free ghc-prim hashable
microlens mtl network-uri scientific tagged text time vector
@@ -39015,8 +38678,8 @@ self: {
}:
mkDerivation {
pname = "beam-migrate";
- version = "0.4.0.1";
- sha256 = "12c5yibargwrw9z806bik7rly9njq0qa60gsqlh8pbzaaji5fknf";
+ version = "0.5.0.0";
+ sha256 = "0xrmb5nmn5ffzgcpsjilagz5ppm283kfjvvbnsvpvnh6p6i0xc99";
libraryHaskellDepends = [
aeson base beam-core bytestring containers deepseq dependent-map
dependent-sum free ghc-prim hashable haskell-src-exts microlens mtl
@@ -39067,16 +38730,16 @@ self: {
"beam-postgres" = callPackage
({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate
- , bytestring, case-insensitive, conduit, directory, filepath, free
- , hashable, haskell-src-exts, hedgehog, lifted-base, monad-control
- , mtl, network-uri, postgresql-libpq, postgresql-simple, process
- , scientific, tagged, tasty, tasty-hunit, temporary, text, time
+ , bytestring, case-insensitive, conduit, free, hashable
+ , haskell-src-exts, hedgehog, lifted-base, monad-control, mtl
+ , network-uri, postgresql-libpq, postgresql-simple, scientific
+ , tagged, tasty, tasty-hunit, text, time, tmp-postgres
, unordered-containers, uuid, uuid-types, vector
}:
mkDerivation {
pname = "beam-postgres";
- version = "0.4.0.0";
- sha256 = "0dxnp6zsyy30vrlv15iw4qwyzwawg468zqqsjnzk9h3g9k9xzj3v";
+ version = "0.5.0.0";
+ sha256 = "03dd9qzw3b2rqva2pn4iaq5lswn8gb7lrlsa6nmc0bfn1w9i4a7k";
libraryHaskellDepends = [
aeson attoparsec base beam-core beam-migrate bytestring
case-insensitive conduit free hashable haskell-src-exts lifted-base
@@ -39084,8 +38747,8 @@ self: {
scientific tagged text time unordered-containers uuid-types vector
];
testHaskellDepends = [
- base beam-core beam-migrate bytestring directory filepath hedgehog
- postgresql-simple process tasty tasty-hunit temporary text uuid
+ aeson base beam-core beam-migrate bytestring hedgehog
+ postgresql-simple tasty tasty-hunit text tmp-postgres uuid vector
];
description = "Connection layer between beam and postgres";
license = stdenv.lib.licenses.mit;
@@ -39096,16 +38759,21 @@ self: {
"beam-sqlite" = callPackage
({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate
, bytestring, dlist, free, hashable, mtl, network-uri, scientific
- , sqlite-simple, text, time, unix
+ , sqlite-simple, tasty, tasty-expected-failure, tasty-hunit, text
+ , time, unix
}:
mkDerivation {
pname = "beam-sqlite";
- version = "0.4.0.0";
- sha256 = "09va580nv05xavcrqw9drh86xgqgzl98bvh707xjn1d6wh3miizw";
+ version = "0.5.0.0";
+ sha256 = "1ng67jspdwp4prfzp9lzhl1g26q9bfpmxpwv0q392y8wwrq6zxrj";
libraryHaskellDepends = [
aeson attoparsec base beam-core beam-migrate bytestring dlist free
hashable mtl network-uri scientific sqlite-simple text time unix
];
+ testHaskellDepends = [
+ base beam-core beam-migrate sqlite-simple tasty
+ tasty-expected-failure tasty-hunit text time
+ ];
description = "Beam driver for SQLite";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -39174,8 +38842,6 @@ self: {
];
description = "FRP Yampa replacement implemented with Monadic Stream Functions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"beautifHOL" = callPackage
@@ -39194,28 +38860,6 @@ self: {
}) {};
"bech32" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, deepseq
- , extra, hspec, hspec-discover, QuickCheck, text, vector
- }:
- mkDerivation {
- pname = "bech32";
- version = "1.0.2";
- sha256 = "0km1jy3fhpnzqhi4pd5yn6y7214ij7rg47xwnp915c0x6j72ykym";
- revision = "1";
- editedCabalFile = "00zw8s5gp7l9872mhm4xcra6z1maw3pwb8klvaik9r7w3gwx6b4h";
- libraryHaskellDepends = [
- array base bytestring containers extra text
- ];
- testHaskellDepends = [
- base bytestring containers deepseq extra hspec QuickCheck text
- vector
- ];
- testToolDepends = [ hspec-discover ];
- description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "bech32_1_1_0" = callPackage
({ mkDerivation, array, base, base58-bytestring, bytestring
, containers, deepseq, extra, hspec, hspec-discover, memory
, optparse-applicative, process, QuickCheck, text, vector
@@ -39241,6 +38885,7 @@ self: {
description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bech32-th" = callPackage
@@ -39258,6 +38903,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Template Haskell extensions to the Bech32 library";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bed-and-breakfast" = callPackage
@@ -39391,6 +39038,8 @@ self: {
testHaskellDepends = [ base split text ];
description = "Plot and compare benchmarks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bench-show" = callPackage
@@ -39417,6 +39066,8 @@ self: {
testHaskellDepends = [ base split text ];
description = "Show, plot and compare benchmark results";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"benchmark-function" = callPackage
@@ -39434,22 +39085,6 @@ self: {
({ mkDerivation, base, bytestring, mtl, time }:
mkDerivation {
pname = "benchpress";
- version = "0.2.2.14";
- sha256 = "02d4ndwz0xyvfa5j1a4564sfn6fmpf4757dfxr6k20z5vgcdbqih";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base mtl time ];
- executableHaskellDepends = [ base bytestring time ];
- description = "Micro-benchmarking with detailed statistics";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "benchpress_0_2_2_15" = callPackage
- ({ mkDerivation, base, bytestring, mtl, time }:
- mkDerivation {
- pname = "benchpress";
version = "0.2.2.15";
sha256 = "0bffchlwcyqgbnviqvm01lyj7zldvd3yj9yqnc8150lgxr29kvf9";
isLibrary = true;
@@ -39458,8 +39093,6 @@ self: {
executableHaskellDepends = [ base bytestring time ];
description = "Micro-benchmarking with detailed statistics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"bencode" = callPackage
@@ -39860,6 +39493,8 @@ self: {
testHaskellDepends = [ base hedgehog mtl ];
description = "Simple bidirectional serialization and deserialization";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bidirectionalization-combined" = callPackage
@@ -39929,30 +39564,6 @@ self: {
}:
mkDerivation {
pname = "bifunctors";
- version = "5.5.7";
- sha256 = "0cimvd64jzd6dyxjw2kx8wqhd1x0z89pj0ppmsikj4afa3aa5cw8";
- revision = "2";
- editedCabalFile = "0w7fscgxin56pcl2p04gbvd5g2y5pk0dg1cx9qrxwshn1x30gn8r";
- libraryHaskellDepends = [
- base base-orphans comonad containers tagged template-haskell
- th-abstraction transformers
- ];
- testHaskellDepends = [
- base hspec QuickCheck template-haskell transformers
- transformers-compat
- ];
- testToolDepends = [ hspec-discover ];
- description = "Bifunctors";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bifunctors_5_5_8" = callPackage
- ({ mkDerivation, base, base-orphans, comonad, containers, hspec
- , hspec-discover, QuickCheck, tagged, template-haskell
- , th-abstraction, transformers, transformers-compat
- }:
- mkDerivation {
- pname = "bifunctors";
version = "5.5.8";
sha256 = "0gffvmxmpxljivg4j7p5l46kxiv29ml0h23361dh23gsy5m4jz41";
libraryHaskellDepends = [
@@ -39966,7 +39577,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Bifunctors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bighugethesaurus" = callPackage
@@ -40177,31 +39787,6 @@ self: {
license = stdenv.lib.licenses.gpl2Plus;
}) {};
- "binary_0_7_6_1" = callPackage
- ({ mkDerivation, array, attoparsec, base, bytestring, Cabal, cereal
- , containers, criterion, deepseq, directory, filepath, HUnit, mtl
- , QuickCheck, random, test-framework, test-framework-quickcheck2
- }:
- mkDerivation {
- pname = "binary";
- version = "0.7.6.1";
- sha256 = "0rqhz349w72h1bi79lga5x1d95g59h15srlahxbhfrmy2pycm1cg";
- revision = "3";
- editedCabalFile = "0j9wsnqs0hymwwnp4n5qsqnz7lwcvblj3xa1b0yg0h8zwfsrfkci";
- libraryHaskellDepends = [ array base bytestring containers ];
- testHaskellDepends = [
- array base bytestring Cabal containers directory filepath HUnit
- QuickCheck random test-framework test-framework-quickcheck2
- ];
- benchmarkHaskellDepends = [
- array attoparsec base bytestring cereal containers criterion
- deepseq mtl
- ];
- description = "Binary serialisation for Haskell values using lazy ByteStrings";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"binary_0_8_8_0" = callPackage
({ mkDerivation, array, attoparsec, base, base-orphans, bytestring
, Cabal, cereal, containers, criterion, deepseq, directory
@@ -40416,6 +40001,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "binary-instances_1_0_1" = callPackage
+ ({ mkDerivation, aeson, base, binary, binary-orphans
+ , case-insensitive, hashable, QuickCheck, quickcheck-instances
+ , scientific, tagged, tasty, tasty-quickcheck, text, text-binary
+ , time-compat, unordered-containers, vector
+ , vector-binary-instances
+ }:
+ mkDerivation {
+ pname = "binary-instances";
+ version = "1.0.1";
+ sha256 = "0whqjziwqrqslf6byliry84pg47z7vc6yjligpzb8gb5db2gw1h0";
+ libraryHaskellDepends = [
+ aeson base binary binary-orphans case-insensitive hashable
+ scientific tagged text text-binary time-compat unordered-containers
+ vector vector-binary-instances
+ ];
+ testHaskellDepends = [
+ aeson base binary case-insensitive hashable QuickCheck
+ quickcheck-instances scientific tagged tasty tasty-quickcheck text
+ time-compat unordered-containers vector
+ ];
+ description = "Orphan instances for binary";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"binary-io" = callPackage
({ mkDerivation, async, base, binary, bytestring, concurrency
, deque, exceptions, hspec, process, stm, transformers
@@ -40760,16 +40371,17 @@ self: {
}) {};
"binaryen" = callPackage
- ({ mkDerivation, base, binaryen }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "binaryen";
- version = "0.0.4.0";
- sha256 = "1kgvzn5m2pq7ncid27n68p9axrdganna08wlp8csg9c22jixg7rg";
+ version = "0.0.5.0";
+ sha256 = "0n3w222k1jbijqgjy1kngwx4hjny7qzw3w2gx82qxycbmm1sb1qg";
libraryHaskellDepends = [ base ];
- librarySystemDepends = [ binaryen ];
+ testHaskellDepends = [ base ];
+ doHaddock = false;
description = "Haskell bindings to binaryen";
license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) binaryen;};
+ }) {};
"bind-marshal" = callPackage
({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim
@@ -42468,6 +42080,29 @@ self: {
broken = true;
}) {};
+ "bitcoin-scripting" = callPackage
+ ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring
+ , cereal, containers, haskoin-core, tasty, tasty-hunit
+ , tasty-quickcheck, text, transformers
+ }:
+ mkDerivation {
+ pname = "bitcoin-scripting";
+ version = "0.1.0";
+ sha256 = "1hd45rr4mq7dizdw7d1wkypr15azaaqc4fy6rkr9gim93jzc8707";
+ libraryHaskellDepends = [
+ attoparsec base base16-bytestring bytestring cereal containers
+ haskoin-core text transformers
+ ];
+ testHaskellDepends = [
+ base base16-bytestring bytestring cereal haskoin-core tasty
+ tasty-hunit tasty-quickcheck text
+ ];
+ description = "Resources for working with miniscript, and script descriptors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"bitcoin-tx" = callPackage
({ mkDerivation, base, binary, bitcoin-script, bitcoin-types
, bytestring, cryptohash, hexstring, hspec, lens
@@ -42510,44 +42145,51 @@ self: {
}) {};
"bitcoind-regtest" = callPackage
- ({ mkDerivation, base, bitcoind-rpc, cereal, containers
- , haskoin-core, http-client, process, servant, servant-client
- , tasty, tasty-hunit, temporary, text
+ ({ mkDerivation, base, bitcoind-rpc, bytestring, cereal, containers
+ , haskoin-core, http-client, optparse-applicative, process, servant
+ , servant-client, tasty, tasty-hunit, temporary, text
}:
mkDerivation {
pname = "bitcoind-regtest";
- version = "0.1.0.0";
- sha256 = "078834ndl253d1s6f68a8cq1dc0hq3r3ic4a90wbr4msw9zn626q";
+ version = "0.2.0.0";
+ sha256 = "06sk8kb3vjf7a2k7rhqpc7j1lbqd69xyhb25dc8bk7110m5l38cf";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [
base bitcoind-rpc cereal containers haskoin-core http-client
process servant servant-client temporary text
];
+ executableHaskellDepends = [
+ base bitcoind-rpc bytestring cereal haskoin-core http-client
+ optparse-applicative process servant servant-client temporary text
+ ];
testHaskellDepends = [
base bitcoind-rpc cereal haskoin-core http-client process servant
servant-client tasty tasty-hunit temporary text
];
description = "A library for working with bitcoin-core regtest networks";
- license = stdenv.lib.licenses.isc;
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
"bitcoind-rpc" = callPackage
- ({ mkDerivation, aeson, base, bytestring, cereal, haskoin-core
+ ({ mkDerivation, aeson, base, base16-bytestring
+ , bitcoin-compact-filters, bytestring, cereal, haskoin-core
, http-client, scientific, servant, servant-client
, servant-jsonrpc-client, text, time, transformers
}:
mkDerivation {
pname = "bitcoind-rpc";
- version = "0.1.0.0";
- sha256 = "1a3p49lzzsqd9m7ivisxksb6c7yc0dg5rps6ym85s4aasr1ln1j8";
+ version = "0.2.0.0";
+ sha256 = "0y5y5bdbhc1kcdk2nwjv2x5nz9vg5j38mc3l9pjyizz1s5yzn9rc";
libraryHaskellDepends = [
- aeson base bytestring cereal haskoin-core http-client scientific
- servant servant-client servant-jsonrpc-client text time
- transformers
+ aeson base base16-bytestring bitcoin-compact-filters bytestring
+ cereal haskoin-core http-client scientific servant servant-client
+ servant-jsonrpc-client text time transformers
];
description = "A streamlined interface to bitcoin core using Haskoin types and Servant";
- license = stdenv.lib.licenses.isc;
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -42812,8 +42454,6 @@ self: {
];
description = "Fast, packed, strict and lazy bit streams with stream fusion";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"bitstring" = callPackage
@@ -42905,6 +42545,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) gmp;};
+ "bitvec_1_1_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, deepseq, gauge
+ , ghc-prim, integer-gmp, primitive, quickcheck-classes, random
+ , tasty, tasty-hunit, tasty-quickcheck, vector
+ }:
+ mkDerivation {
+ pname = "bitvec";
+ version = "1.1.0.0";
+ sha256 = "1blfi62immsx7hvg9krdbcp9n1p2a9qyhm9j30lc0g2jcl1n11mz";
+ libraryHaskellDepends = [
+ base bytestring deepseq ghc-prim integer-gmp primitive vector
+ ];
+ testHaskellDepends = [
+ base integer-gmp primitive quickcheck-classes tasty tasty-hunit
+ tasty-quickcheck vector
+ ];
+ benchmarkHaskellDepends = [
+ base containers gauge integer-gmp random vector
+ ];
+ description = "Space-efficient bit vectors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bitwise" = callPackage
({ mkDerivation, array, base, bytestring, criterion, QuickCheck }:
mkDerivation {
@@ -42941,6 +42605,8 @@ self: {
];
description = "Bitwise operations on bounded enumerations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bitx-bitcoin" = callPackage
@@ -43189,38 +42855,13 @@ self: {
}) {};
"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;
- }) {};
-
- "blanks_0_4_2" = callPackage
({ mkDerivation, adjunctions, base, containers, deepseq
, distributive, megaparsec, mtl, tasty, tasty-hunit, text
}:
mkDerivation {
pname = "blanks";
- version = "0.4.2";
- sha256 = "0dbp923x0zy94kc61j2szmib299y99v208fqs5wir3lzyd55gdsc";
+ version = "0.5.0";
+ sha256 = "1a38cwk65zkzhq8yc95v4kamyp9k1y1vnfii84yqzvrrlbfzxbqf";
libraryHaskellDepends = [
adjunctions base containers deepseq distributive mtl
];
@@ -43230,7 +42871,6 @@ self: {
];
description = "Fill-in-the-blanks - A library factoring out substitution from ASTs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blas" = callPackage
@@ -43303,8 +42943,6 @@ self: {
testHaskellDepends = [ base vector ];
description = "Low-level Haskell bindings to Blas";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) blas;};
"blastxml" = callPackage
@@ -43423,6 +43061,8 @@ self: {
pname = "blaze-colonnade";
version = "1.2.2.1";
sha256 = "1wh0q72qv2s6a42i13lqb94i0b5bgmqwqw7d5xy89dc76j0ncd2d";
+ revision = "1";
+ editedCabalFile = "0b8imj6i3map53b3j9i7rz9wc65s10qd4hndpq6nik2xd6shdip3";
libraryHaskellDepends = [
base blaze-html blaze-markup colonnade profunctors text
];
@@ -44264,6 +43904,8 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Generate Haskell boilerplate";
license = stdenv.lib.licenses.gpl3Plus;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bolt" = callPackage
@@ -44559,6 +44201,8 @@ self: {
];
description = "Boolean normal form: NNF, DNF & CNF";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"boolector" = callPackage
@@ -44952,31 +44596,6 @@ self: {
({ mkDerivation, base, bifunctors, binary, bytes, Cabal
, cabal-doctest, cereal, comonad, deepseq, deriving-compat, doctest
, functor-classes-compat, hashable, mmorph, profunctors
- , template-haskell, transformers, transformers-compat, vector, void
- }:
- mkDerivation {
- pname = "bound";
- version = "2.0.1";
- sha256 = "0xmvkwambzmji1czxipl9cms5l3v98765b9spmb3wn5n6dpj0ji9";
- revision = "9";
- editedCabalFile = "1vy84wc79a64f9qa2x9s3rs8g0kz45khh3l6sjqpmfm8xafvv2hq";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base bifunctors binary bytes cereal comonad deepseq hashable mmorph
- profunctors template-haskell transformers transformers-compat
- ];
- testHaskellDepends = [
- base deriving-compat doctest functor-classes-compat transformers
- transformers-compat vector void
- ];
- description = "Making de Bruijn Succ Less";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bound_2_0_2" = callPackage
- ({ mkDerivation, base, bifunctors, binary, bytes, Cabal
- , cabal-doctest, cereal, comonad, deepseq, deriving-compat, doctest
- , functor-classes-compat, hashable, mmorph, profunctors
, template-haskell, th-abstraction, transformers
, transformers-compat, vector, void
}:
@@ -44996,7 +44615,6 @@ self: {
];
description = "Making de Bruijn Succ Less";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bound-extras" = callPackage
@@ -45119,18 +44737,20 @@ self: {
"box" = callPackage
({ mkDerivation, attoparsec, base, comonad, concurrency
, contravariant, dejafu, doctest, exceptions, generic-lens, lens
- , mmorph, mtl, numhask, optparse-generic, profunctors, random, text
- , time, transformers, transformers-base, websockets
+ , mmorph, mtl, numhask, numhask-space, optparse-generic
+ , profunctors, random, text, time, transformers, transformers-base
+ , websockets
}:
mkDerivation {
pname = "box";
- version = "0.6.0";
- sha256 = "0kv3j0fh2ahn4x2lgpghhkrbw5y1cy5mdlrriycqv4slrdzaqyks";
+ version = "0.6.2";
+ sha256 = "1mwmz97s8mvan8fn8ps0gnzsidar1ygjfkgrcjglfklh5bmm8823";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
attoparsec base comonad concurrency contravariant exceptions lens
- mmorph numhask profunctors text time transformers transformers-base
+ mmorph numhask numhask-space profunctors text time transformers
+ transformers-base
];
executableHaskellDepends = [
base concurrency dejafu exceptions generic-lens lens mtl numhask
@@ -45149,8 +44769,8 @@ self: {
}:
mkDerivation {
pname = "box-csv";
- version = "0.0.2";
- sha256 = "09qmxd9mxyag6zx8y5yv7bphycbs35zfkkf7kvkdmjqdk7l7b0fd";
+ version = "0.0.3";
+ sha256 = "16kg45hma04r6slw2fic5jbamkcbv6mgqybw081w76hckcg72522";
libraryHaskellDepends = [
attoparsec base box generic-lens lens numhask scientific text time
];
@@ -45162,24 +44782,25 @@ self: {
}) {};
"box-socket" = callPackage
- ({ mkDerivation, base, box, concurrency, doctest, exceptions
- , generic-lens, lens, numhask, optparse-generic, websockets
+ ({ mkDerivation, base, box, bytestring, concurrency, doctest
+ , exceptions, generic-lens, lens, network, network-simple, numhask
+ , optparse-generic, websockets
}:
mkDerivation {
pname = "box-socket";
- version = "0.0.2";
- sha256 = "0wf7smpzczqm0yqnphmp46bgm67nyhj0swn0vxhdgb8z0362szsp";
+ version = "0.1.2";
+ sha256 = "0ybv8amph38s2yz8qpwjrn7428d09ikl7d5ljqkbivydripg6ybc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base box concurrency exceptions generic-lens lens numhask
- websockets
+ base box bytestring concurrency exceptions generic-lens lens
+ network network-simple numhask websockets
];
executableHaskellDepends = [
base box concurrency generic-lens lens numhask optparse-generic
];
testHaskellDepends = [ base doctest numhask ];
- description = "See readme.md";
+ description = "Box websockets";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -45363,6 +44984,8 @@ self: {
];
description = "a url shortener";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"brians-brain" = callPackage
@@ -45389,34 +45012,10 @@ self: {
}:
mkDerivation {
pname = "brick";
- version = "0.52.1";
- sha256 = "1jqs75k7r98c6k8d14arhiz49xy7k0jaymlmijx0pma3yrha90pl";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring config-ini containers contravariant data-clist
- deepseq directory dlist exceptions filepath microlens microlens-mtl
- microlens-th stm template-haskell text text-zipper transformers
- unix vector vty word-wrap
- ];
- testHaskellDepends = [
- base containers microlens QuickCheck vector
- ];
- description = "A declarative terminal user interface library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "brick_0_57" = callPackage
- ({ mkDerivation, base, bytestring, config-ini, containers
- , contravariant, data-clist, deepseq, directory, dlist, exceptions
- , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm
- , template-haskell, text, text-zipper, transformers, unix, vector
- , vty, word-wrap
- }:
- mkDerivation {
- pname = "brick";
- version = "0.57";
- sha256 = "15481cmm208gxcs96rcvg6qgx87b2fk7ws82675viasw64mhvmg1";
+ version = "0.57.1";
+ sha256 = "0amqh0xjgylndz0wp23r5m7w8m7j280dyf1j1mybmmb93s8yz269";
+ revision = "1";
+ editedCabalFile = "00jg403q7aaah9hr37n8wa11lljf2909hpmxz7qf4c9ck79pcaj0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -45430,7 +45029,6 @@ self: {
];
description = "A declarative terminal user interface library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"brick-dropdownmenu" = callPackage
@@ -45643,38 +45241,29 @@ self: {
({ mkDerivation, aeson, base, butcher, bytestring, cmdargs
, containers, czipwith, data-tree-print, deepseq, directory, extra
, filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, hspec
- , monad-memo, mtl, multistate, neat-interpolation, parsec, pretty
- , random, safe, semigroups, strict, syb, text, transformers
- , uniplate, unsafe, yaml
+ , monad-memo, mtl, multistate, parsec, pretty, random, safe
+ , semigroups, strict, syb, text, transformers, uniplate, unsafe
+ , yaml
}:
mkDerivation {
pname = "brittany";
- version = "0.12.1.1";
- sha256 = "0nw7ymdb7xam634w42l1xjgyvpla8grcg02aj19fscw2fn9gfh7z";
- revision = "2";
- editedCabalFile = "0pfrm5vvh7x94f8gy8ka6rmq6yk6xxxgba68rd91bk8lbjxsmkxl";
+ version = "0.12.2.0";
+ sha256 = "03v7lhy6i7fk3sskimzb3hs9qi1g9b9w7zfvmc9m4606673ysdzl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base butcher bytestring cmdargs containers czipwith
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
- ghc-exactprint ghc-paths monad-memo mtl multistate
- neat-interpolation pretty random safe semigroups strict syb text
- transformers uniplate unsafe yaml
- ];
- executableHaskellDepends = [
- aeson base butcher bytestring cmdargs containers czipwith
- data-tree-print deepseq directory extra filepath ghc ghc-boot-th
- ghc-exactprint ghc-paths monad-memo mtl multistate
- neat-interpolation pretty safe semigroups strict syb text
- transformers uniplate unsafe yaml
+ ghc-exactprint ghc-paths monad-memo mtl multistate pretty random
+ safe semigroups strict syb text transformers uniplate unsafe yaml
];
+ executableHaskellDepends = [ base ];
testHaskellDepends = [
aeson base butcher bytestring cmdargs containers czipwith
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
- ghc-exactprint ghc-paths hspec monad-memo mtl multistate
- neat-interpolation parsec pretty safe semigroups strict syb text
- transformers uniplate unsafe yaml
+ ghc-exactprint ghc-paths hspec monad-memo mtl multistate parsec
+ pretty safe semigroups strict syb text transformers uniplate unsafe
+ yaml
];
description = "Haskell source code formatter";
license = stdenv.lib.licenses.agpl3;
@@ -45745,8 +45334,8 @@ self: {
pname = "broadcast-chan-tests";
version = "0.2.1.1";
sha256 = "0qx8j9sfky5qvrxrn4is9sja4qh6jh7jahq3zkyyq3a54jkwc8d3";
- revision = "2";
- editedCabalFile = "0dc7drwischhs0k95hjrlssxlqdg3ickrbbrki7wjslmk8k00bki";
+ revision = "4";
+ editedCabalFile = "04hgr1ik1z9v317x8rw6amxqrmc94g6cghzxghddszqismz44gaq";
libraryHaskellDepends = [
async base broadcast-chan clock containers optparse-applicative
paramtree stm tagged tasty tasty-golden tasty-hunit tasty-travis
@@ -45973,6 +45562,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "Access to the BSD sysctl(3) interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bson" = callPackage
@@ -46278,19 +45869,21 @@ self: {
"buffet" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, cassava
, containers, directory, filepath, language-docker, mustache
- , optparse-applicative, parsec, random, split, tasty, tasty-hunit
- , text, typed-process, unordered-containers, vector, yaml
+ , optparse-applicative, parsec, prettyprinter, random, split, tasty
+ , tasty-hunit, text, typed-process, unordered-containers, vector
+ , yaml
}:
mkDerivation {
pname = "buffet";
- version = "0.4.0";
- sha256 = "04q4k7bfbh41jg869w71wv4idlxbpf48cz2sg5m3ds66wknnhqwq";
+ version = "1.0.1";
+ sha256 = "0y8qinbsnc3dm3yl5ik65lgnn9xq54087mqi7p1qfql9nfcx3g6r";
isLibrary = false;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty base bytestring cassava containers directory
filepath language-docker mustache optparse-applicative parsec
- random split text typed-process unordered-containers vector yaml
+ prettyprinter random split text typed-process unordered-containers
+ vector yaml
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
@@ -46351,12 +45944,12 @@ self: {
, case-insensitive, containers, doctest, Glob, hspec, http-client
, http-client-tls, http-conduit, http-types, iproute, network
, parsec, template-haskell, text, th-lift-instances, time
- , ua-parser, unliftio, wai
+ , ua-parser, unliftio, wai, yaml
}:
mkDerivation {
pname = "bugsnag-haskell";
- version = "0.0.3.1";
- sha256 = "0ka4sj415pn2r2f037hyxw3fwsjzad9g67llm4yx1d3b15zzdxx9";
+ version = "0.0.4.0";
+ sha256 = "1vmbyyya221f6nkk6j1wxscwcxmh10f0hwsy9ib460d59vf607ym";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -46365,31 +45958,15 @@ self: {
template-haskell text th-lift-instances time ua-parser wai
];
testHaskellDepends = [
- aeson aeson-qq base doctest hspec text time unliftio
+ aeson aeson-qq base doctest hspec text time unliftio yaml
];
description = "Bugsnag error reporter for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"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.3";
- sha256 = "0xm7qf4kzbgk3qnchns7bb2578x4ivmym5a93272849klybjjqk9";
- 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;
- }) {};
-
- "bugsnag-hs_0_2_0_3" = callPackage
({ mkDerivation, aeson, base, bytestring, hedgehog, http-client
, text, time, unordered-containers
}:
@@ -46404,7 +45981,6 @@ self: {
testHaskellDepends = [ aeson base bytestring hedgehog ];
description = "A Bugsnag client for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bugzilla" = callPackage
@@ -46528,6 +46104,8 @@ self: {
];
description = "bounded ByteArray builder type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"buildwrapper" = callPackage
@@ -46619,6 +46197,8 @@ self: {
];
description = "Bulletproofs are short zero-knowledge proofs without a trusted setup";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bulmex" = callPackage
@@ -46980,22 +46560,23 @@ self: {
}) {};
"byline" = callPackage
- ({ mkDerivation, ansi-terminal, base, colour, exceptions, free
- , haskeline, mtl, relude, tasty, tasty-hunit, terminfo-hs, text
+ ({ mkDerivation, ansi-terminal, attoparsec, base, colour
+ , exceptions, free, haskeline, mtl, optparse-applicative, relude
+ , tasty, tasty-hunit, terminfo-hs, text
}:
mkDerivation {
pname = "byline";
- version = "1.0.0.0";
- sha256 = "1jwjdjiraq37pr2ysc9h5qqlma6j7rd2dkip2y2f6bx07d1v7fpr";
+ version = "1.1.0.1";
+ sha256 = "1vj17x2czfks5bdns8181iw7rbfghk9pgx5f75xwzn9p6xycg9hy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- ansi-terminal base colour exceptions free haskeline mtl relude
- terminfo-hs text
+ ansi-terminal attoparsec base colour exceptions free haskeline mtl
+ optparse-applicative relude terminfo-hs text
];
testHaskellDepends = [
- ansi-terminal base colour exceptions free haskeline mtl relude
- tasty tasty-hunit terminfo-hs text
+ ansi-terminal attoparsec base colour exceptions free haskeline mtl
+ optparse-applicative relude tasty tasty-hunit terminfo-hs text
];
description = "Library for creating command-line interfaces (colors, menus, etc.)";
license = stdenv.lib.licenses.bsd2;
@@ -47021,8 +46602,8 @@ self: {
}:
mkDerivation {
pname = "byte-count-reader";
- version = "0.10.1.1";
- sha256 = "0amzhcy60rmiyfp7cgdg7g1xcf7z5zz43kg18i1bwwj565ipb6p8";
+ version = "0.10.1.2";
+ sha256 = "11mzz8ahjlqq910s27wggk0vz9bjqxkyqs7lk8kr20cpx0by26s1";
libraryHaskellDepends = [ base extra parsec parsec-numbers text ];
testHaskellDepends = [
base extra hspec parsec parsec-numbers text
@@ -47078,8 +46659,8 @@ self: {
}:
mkDerivation {
pname = "bytebuild";
- version = "0.3.6.0";
- sha256 = "15nk9r9mx798kmjl04qf01il1csfjyi3jx44yhi4hmgl66p9fdx3";
+ version = "0.3.7.0";
+ sha256 = "1vckm98sarxzqh6ib89y5kzhbf1yxc9wgrbpwbsrh0dv5gi3pclj";
libraryHaskellDepends = [
base byteslice bytestring integer-logarithms natural-arithmetic
primitive primitive-offset primitive-unlifted run-st text-short
@@ -47096,6 +46677,8 @@ self: {
];
description = "Serialize to a small byte arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bytedump" = callPackage
@@ -47136,6 +46719,8 @@ self: {
];
description = "Universal hashing of bytes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bytelog" = callPackage
@@ -47222,6 +46807,8 @@ self: {
benchmarkHaskellDepends = [ base gauge primitive ];
description = "Slicing managed and unmanaged memory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bytesmith" = callPackage
@@ -47246,6 +46833,8 @@ self: {
];
description = "Nonresumable byte parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bytestring_0_11_0_0" = callPackage
@@ -47432,8 +47021,8 @@ self: {
pname = "bytestring-handle";
version = "0.1.0.6";
sha256 = "18f17aja1ivhr3zyg2cccn2m03hdn5jf5410dndkhf12gvgiqs7y";
- revision = "1";
- editedCabalFile = "0x11aj6w1lijh84jcdq1qgyvdnc7i9ivbyq4wf9rxicg57viisz9";
+ revision = "2";
+ editedCabalFile = "1x1sy3dz2ph9v6jk22wmcv5gk2bka5fv4s68i8q0j9m9pk085w37";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base bytestring HUnit QuickCheck test-framework
@@ -47441,8 +47030,6 @@ self: {
];
description = "ByteString-backed Handles";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"bytestring-lexing" = callPackage
@@ -47661,8 +47248,8 @@ self: {
}:
mkDerivation {
pname = "bytestring-tree-builder";
- version = "0.2.7.5";
- sha256 = "0mja4hfqn2p73hslsabgxmsj9i0990p217882ydb479vpdvy74m4";
+ version = "0.2.7.7";
+ sha256 = "193nryzgbjij6md84i2w2jhpsgsqz94g71744wj45qr2gzivyxfb";
libraryHaskellDepends = [ base base-prelude bytestring text ];
testHaskellDepends = [
base-prelude bytestring QuickCheck quickcheck-instances tasty
@@ -47686,6 +47273,8 @@ self: {
libraryHaskellDepends = [ base binary bytestring ];
description = "An efficient finite map from (byte)strings to values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"bytestring-typenats" = callPackage
@@ -47760,30 +47349,6 @@ self: {
}) {};
"bz2" = callPackage
- ({ mkDerivation, base, bytestring, c2hs, criterion, deepseq
- , directory, filepath, tasty, tasty-golden, tasty-hunit, temporary
- }:
- mkDerivation {
- pname = "bz2";
- version = "1.0.0.1";
- sha256 = "055sfi658z8sxznzdnj40hwzj89nfa0dk4x59b5z43lah9m3hpa2";
- revision = "2";
- editedCabalFile = "1kf9phb27cy7yk06sdd3bgh39ym0gb988h6zx315gcmlxncj71jb";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [ base bytestring ];
- libraryToolDepends = [ c2hs ];
- testHaskellDepends = [
- base bytestring deepseq directory filepath tasty tasty-golden
- tasty-hunit
- ];
- benchmarkHaskellDepends = [
- base bytestring criterion filepath temporary
- ];
- description = "Bindings to libbz2";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bz2_1_0_1_0" = callPackage
({ mkDerivation, base, bytestring, bzlib, c2hs, cpphs, criterion
, deepseq, directory, filepath, tasty, tasty-golden, tasty-hunit
, temporary
@@ -47805,7 +47370,6 @@ self: {
benchmarkToolDepends = [ cpphs ];
description = "Bindings to libbz2";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bzip-signature" = callPackage
@@ -47831,8 +47395,6 @@ self: {
librarySystemDepends = [ bzip2 ];
description = "Compression and decompression in the bzip2 format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) bzip2;};
"bzlib-conduit" = callPackage
@@ -48117,6 +47679,8 @@ self: {
];
description = "A maintenance command of Haskell cabal packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal" = callPackage
@@ -48144,6 +47708,8 @@ self: {
libraryHaskellDepends = [ base Cabal filepath ];
description = "Cabal support for creating AppImage applications";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-audit" = callPackage
@@ -48198,6 +47764,8 @@ self: {
];
description = "A command line program for managing the dependency versions in a cabal file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-build-programs" = callPackage
@@ -48335,30 +47903,6 @@ self: {
}:
mkDerivation {
pname = "cabal-debian";
- version = "5.0.3";
- sha256 = "11imbizfa65fdqydpxvcdv0a80gsd6szzl33b312myw3il2xr5hi";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-wl-pprint base bifunctors Cabal containers data-default debian
- deepseq Diff directory exceptions filepath hsemail HUnit lens mtl
- network-uri newtype-generics optparse-applicative parsec pretty
- process pureMD5 regex-tdfa syb text unix unliftio utf8-string
- ];
- executableHaskellDepends = [ base Cabal debian lens mtl pretty ];
- description = "Create a Debianization for a Cabal package";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "cabal-debian_5_1" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
- , containers, data-default, debian, deepseq, Diff, directory
- , exceptions, filepath, hsemail, HUnit, lens, mtl, network-uri
- , newtype-generics, optparse-applicative, parsec, pretty, process
- , pureMD5, regex-tdfa, syb, text, unix, unliftio, utf8-string
- }:
- mkDerivation {
- pname = "cabal-debian";
version = "5.1";
sha256 = "14kh2s61m7wm9h0ms4dlpfvqr2gd8fv0w44ar3c3dg5053hwrvny";
isLibrary = true;
@@ -48372,7 +47916,6 @@ self: {
executableHaskellDepends = [ base Cabal debian lens mtl pretty ];
description = "Create a Debianization for a Cabal package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-dependency-licenses" = callPackage
@@ -48472,8 +48015,8 @@ self: {
}:
mkDerivation {
pname = "cabal-file";
- version = "0.1.0";
- sha256 = "1khf39awvpnqxs0rlqa6n5810x9kkn31975v6kbmwwdrjjp2qlqw";
+ version = "0.1.1";
+ sha256 = "05sah1w0nbvirnvj520ijyz2jrdbp5cciryhziyrgaimfvi9kbnb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -48501,6 +48044,8 @@ self: {
testHaskellDepends = [ base Cabal ];
description = "Template Haskell expressions for reading fields from a project's cabal file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-flatpak" = callPackage
@@ -48534,8 +48079,8 @@ self: {
}:
mkDerivation {
pname = "cabal-fmt";
- version = "0.1.4";
- sha256 = "0akc63g7h21nyyr9m0dwjlnxqw8k26zx5s2mzn8zak2q9i88ds1b";
+ version = "0.1.5.1";
+ sha256 = "0z8zc48lb6nnf12477j3x5dq7nkfk877q8q1kcrdsvdkz07nzz57";
isLibrary = false;
isExecutable = true;
libraryHaskellDepends = [
@@ -48761,24 +48306,25 @@ self: {
}:
mkDerivation {
pname = "cabal-install-parsers";
- version = "0.3.0.1";
- sha256 = "1skv3psqs26m68n5xqsw4jil2f3dz5yv8hmskl58sg0q22mjbspm";
- revision = "1";
- editedCabalFile = "1q89viamcwb49qi8as9pdscsi2a0pkjpfj275ch4rx0qj0vwkr67";
+ version = "0.4";
+ sha256 = "12z9gz1afra0fqd79j1r9fsdc7k8r6v1saw14l42kd2dqxdjqwcf";
libraryHaskellDepends = [
aeson base base16-bytestring binary binary-instances bytestring
Cabal containers cryptohash-sha256 deepseq directory filepath lukko
network-uri parsec pretty tar text time transformers
];
testHaskellDepends = [
- ansi-terminal base bytestring Cabal containers directory filepath
- pretty tasty tasty-golden tasty-hunit tree-diff
+ ansi-terminal base base16-bytestring bytestring Cabal containers
+ directory filepath pretty tar tasty tasty-golden tasty-hunit
+ tree-diff
];
benchmarkHaskellDepends = [
base bytestring Cabal containers criterion directory filepath
];
description = "Utilities to work with cabal-install files";
license = "GPL-2.0-or-later AND BSD-3-Clause";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-lenses" = callPackage
@@ -48795,6 +48341,8 @@ self: {
];
description = "Lenses and traversals for the Cabal library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-macosx" = callPackage
@@ -48893,8 +48441,8 @@ self: {
}:
mkDerivation {
pname = "cabal-plan";
- version = "0.7.1.0";
- sha256 = "01hd6wl80j6njlg3h4rxsf5izyx49bs6v1j5756g2pyxc9h4hrs4";
+ version = "0.7.2.0";
+ sha256 = "118g2ywzgjny57c2iysnj5f7rlriwic3f0k9c54f6bvkc0a3sfi3";
configureFlags = [ "-fexe" ];
isLibrary = true;
isExecutable = true;
@@ -49110,6 +48658,8 @@ self: {
libraryHaskellDepends = [ base Cabal QuickCheck ];
description = "QuickCheck for Cabal";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cabal-toolkit" = callPackage
@@ -49274,6 +48824,8 @@ self: {
pname = "cabal2spec";
version = "2.6.2";
sha256 = "0x1r01fk5mch76zindalvmlkfaca4y1x89zw2dm0d46fncsfgdrv";
+ revision = "1";
+ editedCabalFile = "196j1fga9cqlc0nbxbgl0c3g0ic8sf618whps95zzp58lac9dqak";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base Cabal filepath time ];
@@ -49475,6 +49027,8 @@ self: {
];
description = "cached hashmaps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cached" = callPackage
@@ -49541,6 +49095,8 @@ self: {
];
description = "Cache combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cachix" = callPackage
@@ -49557,8 +49113,8 @@ self: {
}:
mkDerivation {
pname = "cachix";
- version = "0.3.8";
- sha256 = "0n05ys0jz6if3k121hr5znzbbd0v6xmckhh4vyya90r3kvgp1526";
+ version = "0.5.1";
+ sha256 = "13xl87jgpa1swgppr86dylp8ndisasdr8zcmk1l2jjb7vgyly8mb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -49576,7 +49132,8 @@ self: {
executableHaskellDepends = [ base cachix-api ];
executableToolDepends = [ hspec-discover ];
testHaskellDepends = [
- base cachix-api directory here hspec protolude temporary
+ base cachix-api directory here hspec protolude servant-auth-client
+ temporary
];
description = "Command line client for Nix binary cache hosting https://cachix.org";
license = stdenv.lib.licenses.asl20;
@@ -49586,25 +49143,22 @@ self: {
({ mkDerivation, aeson, base, base16-bytestring, bytestring
, conduit, cookie, cryptonite, deepseq, exceptions, hspec
, 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
- , transformers
+ , nix-narinfo, protolude, resourcet, servant, servant-auth
+ , servant-auth-server, servant-auth-swagger, servant-client
+ , servant-swagger, servant-swagger-ui-core, string-conv, swagger2
+ , text, time, transformers
}:
mkDerivation {
pname = "cachix-api";
- version = "0.4.0";
- sha256 = "14hwn9nrnaypwzgy70l4kcscq7fcw1z5rs3a46cm2v5qqj72r2jx";
- isLibrary = true;
- isExecutable = true;
+ version = "0.5.0";
+ sha256 = "14b4vg6wv7kzxkfbh64ml2wvm9w8fyv2k2sm7ncaa0pp0f26pswy";
libraryHaskellDepends = [
aeson base base16-bytestring bytestring conduit cookie cryptonite
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
+ nix-narinfo protolude resourcet servant servant-auth
+ servant-auth-server servant-client string-conv swagger2 text time
+ transformers
];
- executableHaskellDepends = [ aeson base protolude ];
testHaskellDepends = [
aeson base base16-bytestring bytestring conduit cookie cryptonite
hspec http-api-data http-media lens memory protolude servant
@@ -49919,8 +49473,8 @@ self: {
}:
mkDerivation {
pname = "calamity";
- version = "0.1.21.0";
- sha256 = "0hh3kfcs2wjmkz8ggzshb1535rz13nl1d9yaa73rm2arn73jfsi1";
+ version = "0.1.22.1";
+ sha256 = "0mwpggxkag3l4ql75yhp5a0mpmwah44a9rqpsln0ds405jydjw92";
libraryHaskellDepends = [
aeson async base bytestring colour concurrent-extra containers
data-default-class data-flags deepseq deque df1 di-core di-polysemy
@@ -50044,6 +49598,8 @@ self: {
];
description = "Commandline tool to get week of the year";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"call" = callPackage
@@ -50080,8 +49636,8 @@ self: {
}:
mkDerivation {
pname = "call-alloy";
- version = "0.2.0.5";
- sha256 = "1qgvrvb9la7nsx04ql8qvlsavalyimbsc7j6pdc14pmyqnrh3y60";
+ version = "0.2.1.0";
+ sha256 = "0k75fcrn2r4yk59i8r7qwirg0b9vwga9gmibmj4lznqg44yy2bhi";
libraryHaskellDepends = [
base bytestring containers directory file-embed filepath hashable
lens mtl process split trifecta unix
@@ -50213,6 +49769,40 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "candid" = callPackage
+ ({ mkDerivation, base, base32, bytestring, cereal, constraints
+ , containers, crc, directory, dlist, doctest, filepath, hex-text
+ , leb128-cereal, megaparsec, mtl, optparse-applicative
+ , prettyprinter, row-types, scientific, smallcheck, split, tasty
+ , tasty-hunit, tasty-rerun, tasty-smallcheck, template-haskell
+ , text, transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "candid";
+ version = "0.1";
+ sha256 = "0mg7h936if93wdrhnri07530rnz7mnwlz5hpj1qp4bcwknsjs3b4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base32 bytestring cereal constraints containers crc dlist
+ hex-text leb128-cereal megaparsec mtl prettyprinter row-types
+ scientific split template-haskell text transformers
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ base bytestring hex-text optparse-applicative prettyprinter text
+ ];
+ testHaskellDepends = [
+ base bytestring directory doctest filepath leb128-cereal
+ prettyprinter row-types smallcheck tasty tasty-hunit tasty-rerun
+ tasty-smallcheck template-haskell text unordered-containers vector
+ ];
+ description = "Candid integration";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"canon" = callPackage
({ mkDerivation, arithmoi, array, base, containers, random }:
mkDerivation {
@@ -50485,24 +50075,22 @@ self: {
];
description = "OTP-like supervision trees in Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"capnp" = callPackage
- ({ mkDerivation, async, base, bytes, bytestring, containers, cpu
- , data-default, data-default-instances-vector, deepseq, directory
- , exceptions, filepath, focus, hashable, heredoc, hspec, list-t
- , monad-stm, mtl, network, network-simple, pretty-show, primitive
- , process, process-extras, QuickCheck, quickcheck-instances
- , quickcheck-io, reinterpret-cast, resourcet, safe-exceptions, stm
- , stm-containers, supervisors, text, transformers, vector
- , wl-pprint-text
+ ({ mkDerivation, async, base, bifunctors, bytes, bytestring
+ , containers, cpu, data-default, data-default-instances-vector
+ , deepseq, directory, exceptions, filepath, focus, hashable
+ , heredoc, hspec, list-t, monad-stm, mtl, network, network-simple
+ , pretty-show, primitive, process, process-extras, QuickCheck
+ , quickcheck-instances, quickcheck-io, reinterpret-cast, resourcet
+ , safe-exceptions, stm, stm-containers, supervisors, text
+ , transformers, vector, wl-pprint-text
}:
mkDerivation {
pname = "capnp";
- version = "0.6.0.3";
- sha256 = "0zrga41zk41881kr79grdwzl5caawv3khnvpbkhmhfzq3snmnhgd";
+ version = "0.8.0.0";
+ sha256 = "0jqq1yal41rnc8z66b24kiycyxdzwpqykx1p8v1rc3qbn4i3n255";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -50513,9 +50101,9 @@ self: {
text transformers vector
];
executableHaskellDepends = [
- base bytes bytestring containers data-default directory exceptions
- filepath monad-stm mtl primitive reinterpret-cast safe-exceptions
- text transformers vector wl-pprint-text
+ base bifunctors bytes bytestring containers data-default directory
+ exceptions filepath monad-stm mtl primitive reinterpret-cast
+ safe-exceptions text transformers vector wl-pprint-text
];
testHaskellDepends = [
async base bytes bytestring containers data-default deepseq
@@ -50664,6 +50252,8 @@ self: {
];
description = "Algorithms for coin selection and fee balancing";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cardano-transactions" = callPackage
@@ -50903,6 +50493,8 @@ self: {
pname = "casa-types";
version = "0.0.1";
sha256 = "0f8c4a43rh6zr5cwingxyjfpisipy4x4xc0lpasfjaj4vhjgwqkp";
+ revision = "1";
+ editedCabalFile = "101hhpwc7nhg2laywv2jnqa3jsjkvbvc30i6cs4srvdv2n87jlcb";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring bytestring hashable
path-pieces persistent text
@@ -50911,6 +50503,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "casa-types_0_0_2" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
+ , bytestring, hashable, path-pieces, persistent, text
+ }:
+ mkDerivation {
+ pname = "casa-types";
+ version = "0.0.2";
+ sha256 = "1c3qvph690pgnqmj132sn1zh878n3ljvmp913vvhwynfhyixs1v7";
+ libraryHaskellDepends = [
+ aeson attoparsec base base16-bytestring bytestring hashable
+ path-pieces persistent text
+ ];
+ description = "Types for Casa";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"casadi-bindings" = callPackage
({ mkDerivation, base, binary, casadi, casadi-bindings-core
, casadi-bindings-internal, cereal, containers, doctest, HUnit
@@ -51115,6 +50724,8 @@ self: {
libraryHaskellDepends = [ base template-haskell ];
description = "Combinators for casing on constructors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cases" = callPackage
@@ -51408,28 +51019,6 @@ self: {
}:
mkDerivation {
pname = "cassava-conduit";
- version = "0.5.1";
- sha256 = "1y3pjvc273vxb8lr3wckliw23n8vninl034wc0zlfh1asplp4nxm";
- libraryHaskellDepends = [
- array base bifunctors bytestring cassava conduit containers mtl
- text
- ];
- testHaskellDepends = [
- base bytestring cassava conduit QuickCheck text
- ];
- benchmarkHaskellDepends = [ base criterion ];
- description = "Conduit interface for cassava package";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "cassava-conduit_0_6_0" = callPackage
- ({ mkDerivation, array, base, bifunctors, bytestring, cassava
- , conduit, containers, criterion, mtl, QuickCheck, text
- }:
- mkDerivation {
- pname = "cassava-conduit";
version = "0.6.0";
sha256 = "114ab0kxy7rj1hps1sy9i0mkj2lp046zjlpll2apmf3mxdminva0";
libraryHaskellDepends = [
@@ -51528,8 +51117,8 @@ self: {
}:
mkDerivation {
pname = "cassava-streams";
- version = "0.3.0.4";
- sha256 = "17g3qrinzfpmbcqyjrnwaycplmys0p93hb6841cp5rr1pjramb55";
+ version = "0.3.0.5";
+ sha256 = "1zv5y5jnzbpm407zz3lhfzsf7hr923dzshb2w2xyh5y3v427rwn5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -52890,25 +52479,6 @@ self: {
}) {};
"character-cases" = callPackage
- ({ mkDerivation, base, containers, doctest, Glob, here, megaparsec
- , prettyprinter, template-haskell
- }:
- mkDerivation {
- pname = "character-cases";
- version = "0.1.0.4";
- sha256 = "0097d5p1q2l76jb1qm8zsqm7d3qfcr35v2ip0v52i1ri57b03iya";
- libraryHaskellDepends = [
- base containers here megaparsec prettyprinter template-haskell
- ];
- testHaskellDepends = [
- base containers doctest Glob here megaparsec prettyprinter
- template-haskell
- ];
- description = "Exposes subspecies types of Char. And naming cases.";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "character-cases_0_1_0_6" = callPackage
({ mkDerivation, base, containers, doctest, Glob, megaparsec
, prettyprinter, template-haskell
}:
@@ -52926,6 +52496,7 @@ self: {
description = "Exposes subspecies types of Char. And naming cases.";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"charade" = callPackage
@@ -53104,6 +52675,35 @@ self: {
broken = true;
}) {};
+ "charter" = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, containers
+ , http-types, MonadRandom, mtl, one-liner, process, random
+ , scientific, text, wai, warp
+ }:
+ mkDerivation {
+ pname = "charter";
+ version = "0.1.1.1";
+ sha256 = "04yspisrm08364j5i5q2xi0p8lhhhn3dk7l85z4fb9jl4d1ypk2q";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring containers http-types mtl one-liner
+ process scientific text wai warp
+ ];
+ executableHaskellDepends = [
+ aeson async base bytestring containers http-types MonadRandom mtl
+ one-liner process random scientific text wai warp
+ ];
+ testHaskellDepends = [
+ aeson async base bytestring containers http-types mtl one-liner
+ process scientific text wai warp
+ ];
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"chaselev-deque" = callPackage
({ mkDerivation, abstract-deque, abstract-deque-tests, array
, atomic-primops, base, containers, ghc-prim, HUnit, test-framework
@@ -53467,33 +53067,31 @@ self: {
"chessIO" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring, containers
, directory, extra, file-embed, haskeline, megaparsec, MonadRandom
- , mtl, o-clock, optparse-applicative, parallel, parser-combinators
- , prettyprinter, process, random, stm, text, time
- , unordered-containers, vector
+ , mtl, o-clock, optparse-applicative, parallel, prettyprinter
+ , process, random, stm, text, time, unordered-containers, vector
}:
mkDerivation {
pname = "chessIO";
- version = "0.3.1.2";
- sha256 = "0x79cgngxbrk43f28pprqq85n54cg2i2chhpycdcnkx16iva5bbf";
+ version = "0.5.0.0";
+ sha256 = "14di8x8r7q2sjwipx8crgr0bcy3qhr58knf6paqkfqsxc3iynr0h";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base binary bytestring containers file-embed megaparsec
- MonadRandom o-clock parser-combinators prettyprinter process random
- stm text unordered-containers vector
+ attoparsec base binary bytestring containers extra file-embed
+ megaparsec MonadRandom o-clock prettyprinter process random stm
+ text unordered-containers vector
];
executableHaskellDepends = [
attoparsec base binary bytestring containers extra file-embed
haskeline megaparsec MonadRandom mtl o-clock optparse-applicative
- parser-combinators prettyprinter process random stm text time
- unordered-containers vector
- ];
- testHaskellDepends = [
- attoparsec base binary bytestring containers directory file-embed
- megaparsec MonadRandom o-clock parallel parser-combinators
prettyprinter process random stm text time unordered-containers
vector
];
+ testHaskellDepends = [
+ attoparsec base binary bytestring containers directory extra
+ file-embed megaparsec MonadRandom o-clock parallel prettyprinter
+ process random stm text time unordered-containers vector
+ ];
description = "Basic chess library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -53593,6 +53191,8 @@ self: {
libraryToolDepends = [ c2hs ];
description = "Haskell bindings for Chipmunk2D physics engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"chitauri" = callPackage
@@ -53953,6 +53553,8 @@ self: {
];
description = "A performant time library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"chronos-bench" = callPackage
@@ -53973,6 +53575,8 @@ self: {
benchmarkHaskellDepends = [ base ];
description = "Benchmarking tool with focus on comparing results";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"chs-cabal" = callPackage
@@ -54144,8 +53748,8 @@ self: {
}:
mkDerivation {
pname = "churros";
- version = "0.1.2.0";
- sha256 = "0djfcvr81gl6lcz8pb3v0432jh49v8phwp513ca1fz1i75a2nx43";
+ version = "0.1.5.0";
+ sha256 = "05fb9vmx18dypfw6303y74cbag9vv187w6z402dv4vff35ya4bvh";
libraryHaskellDepends = [
async base containers random stm time unagi-chan
];
@@ -54211,8 +53815,6 @@ self: {
testHaskellDepends = [ base hspec ];
description = "Simple C-like programming language";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"cinvoke" = callPackage
@@ -54492,19 +54094,21 @@ self: {
"circular" = callPackage
({ mkDerivation, aeson, base, criterion, hspec, hspec-discover
- , QuickCheck, quickcheck-instances, vector
+ , primitive, QuickCheck, quickcheck-instances, vector
}:
mkDerivation {
pname = "circular";
- version = "0.1.1";
- sha256 = "0kj9sfal78k0ba5djq10xddy2h8lq0grf5cknwcr96j555nlwhk9";
- libraryHaskellDepends = [ aeson base vector ];
+ version = "0.3.1";
+ sha256 = "14fyhqyqv08yml0bsxpjqv3x1alnwdsp9yx5f035vwp9p1mh7rll";
+ libraryHaskellDepends = [ aeson base primitive vector ];
testHaskellDepends = [
- aeson base hspec hspec-discover QuickCheck quickcheck-instances
- vector
+ aeson base hspec hspec-discover primitive QuickCheck
+ quickcheck-instances vector
];
testToolDepends = [ hspec-discover ];
- benchmarkHaskellDepends = [ aeson base criterion vector ];
+ benchmarkHaskellDepends = [
+ aeson base criterion primitive vector
+ ];
description = "Circular fixed-sized mutable vectors";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -54582,8 +54186,8 @@ self: {
}:
mkDerivation {
pname = "citeproc";
- version = "0.1.0.2";
- sha256 = "184d633d186sa9rshh8im6xxars0x26623sym9pw2h2h709xsg4n";
+ version = "0.2";
+ sha256 = "1jibg9yzcdafijy5c8khgavirbxq44plsw81gkxya24yc9ag5bi6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -54712,6 +54316,8 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Clifford Algebra of three dimensional space";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cl3-hmatrix-interface" = callPackage
@@ -54723,6 +54329,8 @@ self: {
libraryHaskellDepends = [ base cl3 hmatrix ];
description = "Interface to/from Cl3 and HMatrix";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cl3-linear-interface" = callPackage
@@ -54734,6 +54342,8 @@ self: {
libraryHaskellDepends = [ base cl3 linear ];
description = "Interface to/from Cl3 and Linear";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"clac" = callPackage
@@ -54945,22 +54555,23 @@ self: {
"clash-ghc" = callPackage
({ mkDerivation, array, base, bifunctors, bytestring, Cabal
, clash-lib, clash-prelude, concurrent-supply, containers, deepseq
- , directory, filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra
- , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable
- , haskeline, integer-gmp, lens, mtl, primitive, process, reflection
- , split, template-haskell, text, time, transformers, uniplate, unix
+ , directory, exceptions, filepath, ghc, ghc-boot, ghc-prim
+ , ghc-typelits-extra, ghc-typelits-knownnat
+ , ghc-typelits-natnormalise, ghci, hashable, haskeline, integer-gmp
+ , lens, mtl, primitive, process, reflection, split
+ , template-haskell, text, time, transformers, uniplate, unix
, unordered-containers, utf8-string, vector
}:
mkDerivation {
pname = "clash-ghc";
- version = "1.2.4";
- sha256 = "1xzpz0bkdfvhkk496q4zr7f6ix23dgg6w5r14j5gxy4jb8f8bxln";
+ version = "1.2.5";
+ sha256 = "1wxlhcpwq0m7k4f12x16ybvp4s5m45p9qk27wjkgk133fw35y3pz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array base bifunctors bytestring Cabal clash-lib clash-prelude
- concurrent-supply containers deepseq directory filepath ghc
- ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat
+ concurrent-supply containers deepseq directory exceptions filepath
+ ghc ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat
ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens
mtl primitive process reflection split template-haskell text time
transformers uniplate unix unordered-containers utf8-string vector
@@ -54968,6 +54579,8 @@ self: {
executableHaskellDepends = [ base ];
description = "CAES Language for Synchronous Hardware";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"clash-lib" = callPackage
@@ -54985,8 +54598,8 @@ self: {
}:
mkDerivation {
pname = "clash-lib";
- version = "1.2.4";
- sha256 = "147cahsid3l6ff8d96ndzli1v79i9lbmad0bkmy0s5vcbgp90q7c";
+ version = "1.2.5";
+ sha256 = "14xi0llzm6f3ymlcfwq67d16ggdkqxrxkvr6rwmykxrca3j1b6r3";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-terminal attoparsec base binary bytestring clash-prelude
@@ -55005,6 +54618,8 @@ self: {
];
description = "CAES Language for Synchronous Hardware - As a Library";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"clash-multisignal" = callPackage
@@ -55028,17 +54643,17 @@ self: {
, cabal-doctest, constraints, containers, criterion
, data-binary-ieee754, data-default-class, deepseq, doctest
, ghc-prim, ghc-typelits-extra, ghc-typelits-knownnat
- , ghc-typelits-natnormalise, half, hashable, hint, integer-gmp
- , interpolate, lens, QuickCheck, quickcheck-classes-base
- , recursion-schemes, reflection, singletons, tasty, tasty-hunit
- , tasty-quickcheck, template-haskell, text, text-show
- , th-abstraction, th-lift, th-orphans, time, transformers
- , type-errors, uniplate, vector
+ , ghc-typelits-natnormalise, half, hashable, hedgehog, hint
+ , integer-gmp, interpolate, lens, QuickCheck
+ , quickcheck-classes-base, recursion-schemes, reflection
+ , singletons, tasty, tasty-hedgehog, tasty-hunit, tasty-quickcheck
+ , template-haskell, text, text-show, th-abstraction, th-lift
+ , th-orphans, time, transformers, type-errors, uniplate, vector
}:
mkDerivation {
pname = "clash-prelude";
- version = "1.2.4";
- sha256 = "1yizprs6i4y2vyhjj6pvpd5xmdbxyqjwclk6saaws0g3xv008ffg";
+ version = "1.2.5";
+ sha256 = "0q97ap4a6cbf6s06934639pws9z1yyzmmaw6gj05p8jv7r4is239";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
array base bifunctors binary bytestring constraints containers
@@ -55050,14 +54665,17 @@ self: {
type-errors uniplate vector
];
testHaskellDepends = [
- base doctest ghc-typelits-knownnat hint quickcheck-classes-base
- tasty tasty-hunit tasty-quickcheck template-haskell
+ base doctest ghc-typelits-extra ghc-typelits-knownnat
+ ghc-typelits-natnormalise hedgehog hint quickcheck-classes-base
+ tasty tasty-hedgehog tasty-hunit tasty-quickcheck template-haskell
];
benchmarkHaskellDepends = [
base criterion deepseq template-haskell
];
description = "CAES Language for Synchronous Hardware - Prelude library";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"clash-prelude-quickcheck" = callPackage
@@ -55337,8 +54955,8 @@ self: {
}:
mkDerivation {
pname = "clckwrks";
- version = "0.26.2.2";
- sha256 = "1m6a043y72da9nyr8x35v5lrh12is49rwarj5dlrm8clp8n987dp";
+ version = "0.26.3";
+ sha256 = "119hybfny3sriscgk8zjf56yfc36jxnzydkhb04wxfip9r84mn03";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
acid-state aeson aeson-qq attoparsec base blaze-html bytestring
@@ -55518,8 +55136,8 @@ self: {
}:
mkDerivation {
pname = "clckwrks-plugin-page";
- version = "0.4.3.23";
- sha256 = "0mk6vz98l2xxhk8w457mbgbcjslnbv34swjrwfjjqk9jhmcnmxss";
+ version = "0.4.3.24";
+ sha256 = "0zsf8j8l99cxskjql8zh407ar7920ph6xn42j8nxnh6qir16wdar";
libraryHaskellDepends = [
acid-state aeson attoparsec base clckwrks containers directory
filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl
@@ -55535,6 +55153,32 @@ self: {
broken = true;
}) {};
+ "clckwrks-plugin-redirect" = callPackage
+ ({ mkDerivation, acid-state, aeson, attoparsec, base, clckwrks
+ , containers, filepath, happstack-hsp, happstack-server, hsp
+ , hsx2hs, ixset, mtl, old-locale, random, reform, reform-happstack
+ , reform-hsp, safecopy, template-haskell, text, uuid, uuid-orphans
+ , web-plugins, web-routes, web-routes-happstack, web-routes-th
+ }:
+ mkDerivation {
+ pname = "clckwrks-plugin-redirect";
+ version = "0.0.1";
+ sha256 = "1946m4fxdj8kr7n1q39j2q9j6srdz97srq0fifnk7mil23lw2vyj";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ acid-state aeson attoparsec base clckwrks containers filepath
+ happstack-hsp happstack-server hsp hsx2hs ixset mtl old-locale
+ random reform reform-happstack reform-hsp safecopy template-haskell
+ text uuid uuid-orphans web-plugins web-routes web-routes-happstack
+ web-routes-th
+ ];
+ description = "support redirects for CMS/Blogging in clckwrks";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"clckwrks-theme-bootstrap" = callPackage
({ mkDerivation, base, clckwrks, happstack-authenticate, hsp
, hsx-jmacro, hsx2hs, jmacro, mtl, text, web-plugins
@@ -55596,6 +55240,8 @@ self: {
libraryHaskellDepends = [ base bytestring hashable text ];
description = "Haskell bindings to Google's Compact Language Detector 2";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"clean-home" = callPackage
@@ -55713,16 +55359,17 @@ self: {
"cli-extras" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers
- , exceptions, io-streams, lens, logging-effect, monad-loops, mtl
- , process, terminal-size, text, time, transformers, which
+ , exceptions, io-streams, lens, logging-effect, monad-logger
+ , monad-loops, mtl, process, terminal-size, text, time
+ , transformers, which
}:
mkDerivation {
pname = "cli-extras";
- version = "0.1.0.0";
- sha256 = "14li1rkkaihklq62m9v9in2lbsr19v1h228a77ik25qarqw4xp9d";
+ version = "0.1.0.1";
+ sha256 = "1fggrnhdbr2ialdd93d0m81b85izs1gvcs8bkmwm8wdxgw4v7hsi";
libraryHaskellDepends = [
aeson ansi-terminal base bytestring containers exceptions
- io-streams lens logging-effect monad-loops mtl process
+ io-streams lens logging-effect monad-logger monad-loops mtl process
terminal-size text time transformers which
];
description = "Miscellaneous utilities for building and working with command line interfaces";
@@ -55737,8 +55384,8 @@ self: {
}:
mkDerivation {
pname = "cli-git";
- version = "0.1.0.0";
- sha256 = "1d9b8wyxzi233lq8qh3fh6v7icikjy4ryhhw033s5207biqqrifh";
+ version = "0.1.0.1";
+ sha256 = "0jchv1j7dgay6xzny9rinsybavs4ggk93450cka6sp7015z06ysr";
libraryHaskellDepends = [
base cli-extras containers data-default exceptions lens
logging-effect megaparsec mtl text
@@ -55755,8 +55402,8 @@ self: {
}:
mkDerivation {
pname = "cli-nix";
- version = "0.1.0.0";
- sha256 = "0z858fjsrnfb9cwzq8hxyhpwn61m50rjv1916c7zf8nrfsa82z0y";
+ version = "0.1.0.1";
+ sha256 = "1ynrni7zyhw8g70bdmd5vamnkw5vac4n5nmxwyka52nqy3zrrlwj";
libraryHaskellDepends = [
base cli-extras data-default exceptions lens logging-effect mtl
text
@@ -55797,6 +55444,44 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "clickhouse-haskell" = callPackage
+ ({ mkDerivation, aeson, array, async, attoparsec, base, binary
+ , bytestring, bytestring-to-vector, call-stack, containers
+ , data-default-class, data-dword, exceptions, filepath, hashable
+ , hashmap, haxl, hspec, http-client, HUnit, io-streams, monad-loops
+ , monad-parallel, mtl, network, network-ip, network-simple, parsec
+ , QuickCheck, resource-pool, split, streaming-commons, text, time
+ , transformers, tz, unix-time, unordered-containers, uri-encode
+ , uuid, vector, word8
+ }:
+ mkDerivation {
+ pname = "clickhouse-haskell";
+ version = "0.1.2.0";
+ sha256 = "0mys7l7sncrdwd673p0s4ls3ir5i26kcjl7x0hpd9a4ms8y04fxx";
+ libraryHaskellDepends = [
+ aeson array async attoparsec base binary bytestring
+ bytestring-to-vector call-stack containers data-default-class
+ data-dword exceptions filepath hashable hashmap haxl http-client
+ io-streams monad-loops monad-parallel mtl network network-ip
+ network-simple parsec resource-pool split streaming-commons text
+ time transformers tz unix-time unordered-containers uri-encode uuid
+ vector word8
+ ];
+ testHaskellDepends = [
+ aeson array async attoparsec base binary bytestring
+ bytestring-to-vector call-stack containers data-default-class
+ data-dword exceptions filepath hashable hashmap haxl hspec
+ http-client HUnit io-streams monad-loops monad-parallel mtl network
+ network-ip network-simple parsec QuickCheck resource-pool split
+ streaming-commons text time transformers tz unix-time
+ unordered-containers uri-encode uuid vector word8
+ ];
+ description = "A Haskell library as database client for Clickhouse";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"clientsession" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, cereal
, cipher-aes, containers, cprng-aes, crypto-api, crypto-random
@@ -56252,8 +55937,8 @@ self: {
}:
mkDerivation {
pname = "cloudi";
- version = "2.0.0";
- sha256 = "0jkikp92k6pdqpa0c2mda81pplshyn7rdw1g2h2hhpjjg0g9npd1";
+ version = "2.0.1";
+ sha256 = "0s01582a2iyibwhlkmmf4n9h0fs3w0sjip65j78c4hldc91ylvqd";
libraryHaskellDepends = [
array base binary bytestring containers network time unix zlib
];
@@ -56728,8 +56413,6 @@ self: {
];
description = "Helper to enter cmdargs command lines using a web browser";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"cmdlib" = callPackage
@@ -56780,6 +56463,8 @@ self: {
testHaskellDepends = [ base containers hedgehog ];
description = "(C)oncurrent (M)onoidal (F)olds";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cml" = callPackage
@@ -57001,6 +56686,21 @@ self: {
license = stdenv.lib.licenses.mpl20;
}) {};
+ "co-log-json" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, co-log-core, containers
+ , string-conv, text
+ }:
+ mkDerivation {
+ pname = "co-log-json";
+ version = "0.0.1.0";
+ sha256 = "1ap62gq3s08fif96jwssp7aj6kldsiwf2qx0f5yffl3zna4h6j2p";
+ libraryHaskellDepends = [
+ aeson base bytestring co-log-core containers string-conv text
+ ];
+ description = "Structured messages support in co-log ecosystem";
+ license = stdenv.lib.licenses.mpl20;
+ }) {};
+
"co-log-polysemy" = callPackage
({ mkDerivation, base, co-log-core, polysemy }:
mkDerivation {
@@ -57013,6 +56713,8 @@ self: {
executableHaskellDepends = [ base co-log-core polysemy ];
description = "Composable Contravariant Comonadic Logging Library";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"co-log-polysemy-formatting" = callPackage
@@ -57115,8 +56817,8 @@ self: {
}:
mkDerivation {
pname = "cobot-io";
- version = "0.1.3.7";
- sha256 = "04861j2g4pa05p788inkyvgwqjn1c6jsalkrlmin8j3nd0gw2ggq";
+ version = "0.1.3.12";
+ sha256 = "1jj9ip12zmy8qh080skm9fawasxprfbwiyzywilga7lr573wxb88";
libraryHaskellDepends = [
array attoparsec base binary bytestring containers data-msgpack
deepseq http-conduit hyraxAbif lens linear mtl split text vector
@@ -57351,8 +57053,8 @@ self: {
}:
mkDerivation {
pname = "codeworld-api";
- version = "0.6.0";
- sha256 = "1m1kqr8gniqcxc3s8yvk4rb2v0cg7wl0m3dam3g4ida2i8r5p22a";
+ version = "0.7.0";
+ sha256 = "1l1w4mrw4b2njz4kmfvd94mlwn776vryy1y9x9cb3r69fw5qy2f3";
libraryHaskellDepends = [
aeson base base64-bytestring blank-canvas bytestring cereal
cereal-text containers deepseq dependent-sum ghc-prim hashable
@@ -57462,6 +57164,8 @@ self: {
benchmarkHaskellDepends = [ base gauge ];
description = "Utility functions for Coercible types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"coercion-extras" = callPackage
@@ -58026,21 +57730,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "colour_2_3_3" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "colour";
- version = "2.3.3";
- sha256 = "1qmn1778xzg07jg9nx4k1spdz2llivpblf6wwrps1qpqjhsac5cd";
- revision = "1";
- editedCabalFile = "0r0pgrsbk4a3fp9pig7q1d8wrc6cd411gb58qiq3wd5dqw0lbmjk";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [ base ];
- description = "A model for human colour/color perception";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"colour" = callPackage
({ mkDerivation, base, QuickCheck, random, test-framework
, test-framework-quickcheck2
@@ -58067,8 +57756,6 @@ self: {
libraryHaskellDepends = [ accelerate base ];
description = "Working with colours in Accelerate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"colour-space" = callPackage
@@ -58576,8 +58263,8 @@ self: {
}:
mkDerivation {
pname = "commonmark";
- version = "0.1.0.2";
- sha256 = "00rqy02pn4gg0wpwvxyqxvzqg75lvb1qawn4m8rnjq6v43c4g23l";
+ version = "0.1.1.2";
+ sha256 = "13gk08gigih75zq7kwc101yxmxvj3hvfyi67ap13nrabv70l6zjm";
libraryHaskellDepends = [
base bytestring containers parsec text transformers
];
@@ -58618,8 +58305,8 @@ self: {
}:
mkDerivation {
pname = "commonmark-extensions";
- version = "0.2.0.1";
- sha256 = "08i6167d78b5wf6aqsrjz2sb1qaanwrjzhpfg1jn4grd9g8i2ql6";
+ version = "0.2.0.4";
+ sha256 = "166ywkh6vyyrrwq7ww68pwzdkwmhi23hjvw28769m010ksimz2wh";
libraryHaskellDepends = [
base bytestring commonmark containers emojis parsec text
transformers
@@ -58787,8 +58474,6 @@ self: {
testHaskellDepends = [ base directory ];
description = "Non-GC'd, contiguous storage for immutable data structures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"compact-list" = callPackage
@@ -58801,6 +58486,8 @@ self: {
testHaskellDepends = [ base ];
description = "An append only list in a compact region";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"compact-map" = callPackage
@@ -58930,6 +58617,8 @@ self: {
];
description = "Small vectors of small integers stored very compactly";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"compactable" = callPackage
@@ -59081,16 +58770,32 @@ self: {
}:
mkDerivation {
pname = "compdoc";
- version = "0.1.0.0";
- sha256 = "0m7xrl1ki3agp69yczgy396xlb84kggslmqnjglziyg6sziv58ak";
+ version = "0.2.0.0";
+ sha256 = "0cdgyvbx2xf7dgvg0h6k980yfh9vj7yg5vsg08i7cb8iik2w0k0m";
libraryHaskellDepends = [
aeson base composite-aeson composite-aeson-throw composite-base
pandoc pandoc-throw path rio vinyl
];
description = "Parse a Pandoc to a composite value";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ }) {};
+
+ "compdoc-dhall-decoder" = callPackage
+ ({ mkDerivation, base, compdoc, composite-aeson, composite-base
+ , dhall, either, pandoc, text
+ }:
+ mkDerivation {
+ pname = "compdoc-dhall-decoder";
+ version = "0.2.0.0";
+ sha256 = "0iygbgcqcs3ixdnphhrp57s1ihpwnf9q59z7r74qqj7qx1yjrxig";
+ revision = "1";
+ editedCabalFile = "1g15qxkxfipvf6al3k8bdcvvcl1vyhjhg3r1w2z2g91ngz0b5y18";
+ libraryHaskellDepends = [
+ base compdoc composite-aeson composite-base dhall either pandoc
+ text
+ ];
+ description = "Allows you to write FromDhall instances for Compdoc";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"compendium-client" = callPackage
@@ -59099,14 +58804,16 @@ self: {
}:
mkDerivation {
pname = "compendium-client";
- version = "0.2.0.0";
- sha256 = "1jsl2li88wvw61r38gcwdn7y6gf7q6br50i4mfnh40mzq1qqgkm0";
+ version = "0.2.1.1";
+ sha256 = "0iqk3lyfayy7xwa97jzzch2mhg8zam3ip2i524ki5qnw2ih3mizv";
libraryHaskellDepends = [
aeson base http-client language-protobuf megaparsec servant
servant-client text
];
description = "Client for the Compendium schema server";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"compensated" = callPackage
@@ -59185,6 +58892,8 @@ self: {
libraryHaskellDepends = [ base template-haskell ];
description = "complex numbers with non-mandatory RealFloat";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"complex-integrate" = callPackage
@@ -59330,8 +59039,6 @@ self: {
];
description = "JSON for Vinyl records";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-aeson-cofree-list" = callPackage
@@ -59347,8 +59054,6 @@ self: {
];
description = "Print a Cofree [] as a JSON value";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-aeson-path" = callPackage
@@ -59360,8 +59065,6 @@ self: {
libraryHaskellDepends = [ base composite-aeson path ];
description = "Formatting data for the path library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-aeson-refined" = callPackage
@@ -59377,8 +59080,6 @@ self: {
];
description = "composite-aeson support for Refined from the refined package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-aeson-throw" = callPackage
@@ -59394,8 +59095,6 @@ self: {
];
description = "MonadThrow behaviour for composite-aeson";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-aeson-writeonly" = callPackage
@@ -59410,8 +59109,6 @@ self: {
];
description = "WriteOnly indicators for composite-aeson";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-base" = callPackage
@@ -59446,8 +59143,6 @@ self: {
libraryHaskellDepends = [ base binary composite-base ];
description = "Orphan binary instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-ekg" = callPackage
@@ -59462,8 +59157,6 @@ self: {
];
description = "EKG Metrics for Vinyl records";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"composite-hashable" = callPackage
@@ -59571,8 +59264,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "composition-prelude";
- version = "3.0.0.0";
- sha256 = "14dpxpcbpchlppx64k3i7rwq94f1x4vvnd0d6bnwfcpw46hbjlsl";
+ version = "3.0.0.2";
+ sha256 = "151inlk43m96pnasc6llsjh8vxyc9b1i7xdgf1sp5p5072bzq305";
libraryHaskellDepends = [ base ];
description = "Higher-order function combinators";
license = stdenv.lib.licenses.bsd3;
@@ -59623,8 +59316,6 @@ self: {
benchmarkHaskellDepends = [ base-prelude ];
description = "Sum and Product types and such";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"comprehensions-ghc" = callPackage
@@ -60084,6 +59775,8 @@ self: {
];
description = "Benchmarks to compare concurrency APIs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"concurrent-barrier" = callPackage
@@ -60331,8 +60024,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "More utilities and broad-used datastructures for concurrency";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"concurrentoutput" = callPackage
@@ -60464,33 +60155,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "conduit_1_2_13_1" = callPackage
- ({ mkDerivation, base, containers, criterion, deepseq, exceptions
- , hspec, kan-extensions, lifted-base, mmorph, monad-control, mtl
- , mwc-random, primitive, QuickCheck, resourcet, safe, split
- , transformers, transformers-base, transformers-compat, vector
- }:
- mkDerivation {
- pname = "conduit";
- version = "1.2.13.1";
- sha256 = "185kdjmbghpvhsvqxh9c9qsh8y987m1kgdagsbwy6c93nlqvbdkp";
- libraryHaskellDepends = [
- base exceptions lifted-base mmorph monad-control mtl primitive
- resourcet transformers transformers-base transformers-compat
- ];
- testHaskellDepends = [
- base containers exceptions hspec mtl QuickCheck resourcet safe
- split transformers
- ];
- benchmarkHaskellDepends = [
- base containers criterion deepseq hspec kan-extensions mwc-random
- transformers vector
- ];
- description = "Streaming data processing library";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"conduit" = callPackage
({ mkDerivation, base, bytestring, containers, deepseq, directory
, exceptions, filepath, gauge, hspec, kan-extensions
@@ -60500,36 +60164,8 @@ self: {
}:
mkDerivation {
pname = "conduit";
- version = "1.3.2.1";
- sha256 = "0kyl1zspkp14vrgxgc2zpy9rd9h6aa7m9f385sgshysnhbc7hbg5";
- libraryHaskellDepends = [
- base bytestring directory exceptions filepath mono-traversable mtl
- primitive resourcet text transformers unix unliftio-core vector
- ];
- testHaskellDepends = [
- base bytestring containers directory exceptions filepath hspec
- mono-traversable mtl QuickCheck resourcet safe silently split text
- transformers unliftio vector
- ];
- benchmarkHaskellDepends = [
- base containers deepseq gauge hspec kan-extensions mwc-random
- transformers vector
- ];
- description = "Streaming data processing library";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "conduit_1_3_3" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, directory
- , exceptions, filepath, gauge, hspec, kan-extensions
- , mono-traversable, mtl, mwc-random, primitive, QuickCheck
- , resourcet, safe, silently, split, text, transformers, unix
- , unliftio, unliftio-core, vector
- }:
- mkDerivation {
- pname = "conduit";
- version = "1.3.3";
- sha256 = "0jv3j1dc7iswi3kljn9y3jq7rn2aiq9d1vkn2xdpirc519ckxfnl";
+ version = "1.3.4";
+ sha256 = "1w30chhqryhkv82mvwqi1q09fvfxva70280q3nf4h97amld860lz";
libraryHaskellDepends = [
base bytestring directory exceptions filepath mono-traversable mtl
primitive resourcet text transformers unix unliftio-core vector
@@ -60545,7 +60181,6 @@ self: {
];
description = "Streaming data processing library";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conduit-algorithms" = callPackage
@@ -60702,39 +60337,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "conduit-extra_1_2_3_2" = callPackage
- ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring
- , bytestring-builder, conduit, criterion, directory, exceptions
- , filepath, hspec, monad-control, network, primitive, process
- , QuickCheck, resourcet, stm, streaming-commons, text, transformers
- , transformers-base, typed-process, unliftio-core
- }:
- mkDerivation {
- pname = "conduit-extra";
- version = "1.2.3.2";
- sha256 = "1xihl8zrd6jyfnlmsrqshwwqc8176whs5im4jvxvk9038wl6cnqx";
- revision = "3";
- editedCabalFile = "0m68hvcmg4wwn12wcczqx1i60i8g2nv95c05abnl8ymq0377c7wi";
- libraryHaskellDepends = [
- async attoparsec base blaze-builder bytestring conduit directory
- exceptions filepath monad-control network primitive process
- resourcet stm streaming-commons text transformers transformers-base
- typed-process unliftio-core
- ];
- testHaskellDepends = [
- async attoparsec base blaze-builder bytestring bytestring-builder
- conduit directory exceptions hspec process QuickCheck resourcet stm
- streaming-commons text transformers transformers-base
- ];
- benchmarkHaskellDepends = [
- base blaze-builder bytestring bytestring-builder conduit criterion
- transformers
- ];
- description = "Batteries included conduit: adapters for common libraries";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"conduit-extra" = callPackage
({ mkDerivation, async, attoparsec, base, bytestring
, bytestring-builder, conduit, directory, exceptions, filepath
@@ -61106,8 +60708,6 @@ self: {
testHaskellDepends = [ base conferer hedis hspec text ];
description = "conferer's FromConfig instances for hedis settings";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"conferer-hspec" = callPackage
@@ -61202,8 +60802,6 @@ self: {
];
description = "conferer's FromConfig instances for snap Config";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"conferer-source-dhall" = callPackage
@@ -61404,6 +61002,7 @@ self: {
testHaskellDepends = [ base config-value text ];
description = "Schema definitions for the config-value package";
license = stdenv.lib.licenses.isc;
+ maintainers = with stdenv.lib.maintainers; [ kiwi ];
}) {};
"config-select" = callPackage
@@ -61428,13 +61027,14 @@ self: {
}:
mkDerivation {
pname = "config-value";
- version = "0.8";
- sha256 = "1l2w2ylxx9d48pjnc9490kisawz48mf038f108g3zvb0j3iz9vyn";
+ version = "0.8.1";
+ sha256 = "086jv01a737547w6x9w1951vq0p7mx6vqw9ifw5kcs5nvhj5rx2q";
libraryHaskellDepends = [ array base containers pretty text ];
libraryToolDepends = [ alex happy ];
testHaskellDepends = [ base text ];
description = "Simple, layout-based value language similar to YAML or JSON";
license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ kiwi ];
}) {};
"config-value-getopt" = callPackage
@@ -61448,6 +61048,8 @@ self: {
libraryHaskellDepends = [ base config-value text ];
description = "Interface between config-value and System.GetOpt";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"configifier" = callPackage
@@ -61522,8 +61124,6 @@ self: {
];
description = "Tools for specifying and parsing configurations";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"configurator" = callPackage
@@ -61597,8 +61197,8 @@ self: {
}:
mkDerivation {
pname = "configurator-pg";
- version = "0.2.4";
- sha256 = "07zhvfky3p4wv6hc48hclmgkz465wpbqwx4yfljby82hgnrkdarh";
+ version = "0.2.5";
+ sha256 = "1wmdg9zxfz8vhhsq5rraynhrhqc8fjrdhfrky2mfajzbp8dpaqsm";
libraryHaskellDepends = [
base containers megaparsec protolude scientific text
];
@@ -61779,8 +61379,6 @@ self: {
testHaskellDepends = [ base hedgehog ];
description = "Orders, Galois connections, and lattices";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"consistent" = callPackage
@@ -61893,17 +61491,15 @@ self: {
}) {};
"constrained-categories" = callPackage
- ({ mkDerivation, base, contravariant, semigroups, tagged
+ ({ mkDerivation, base, contravariant, fail, semigroups, tagged
, trivial-constraint, void
}:
mkDerivation {
pname = "constrained-categories";
- version = "0.4.0.0";
- sha256 = "1wq4ivkgxbwxxrfk5lwn2psbbiaq87dr8zf1z9b9yhw2hi75lsgw";
- revision = "1";
- editedCabalFile = "0f96xmq5j03f9ks9cjlgbc5wq0azdbrbj2lh3kr3ybz658dli3j7";
+ version = "0.4.1.0";
+ sha256 = "0n9xi24jc590hmhz8b8g6rhfkbapq62h74mjkhs4mcsj58inx90p";
libraryHaskellDepends = [
- base contravariant semigroups tagged trivial-constraint void
+ base contravariant fail semigroups tagged trivial-constraint void
];
description = "Constrained clones of the category-theory type classes, using ConstraintKinds";
license = stdenv.lib.licenses.gpl3;
@@ -62165,8 +61761,6 @@ self: {
testToolDepends = [ markdown-unlit ];
description = "Haskell version of the Construct library for easy specification of file formats";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"constructible" = callPackage
@@ -62290,20 +61884,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "containers_0_4_2_1" = callPackage
- ({ mkDerivation, array, base, deepseq }:
- mkDerivation {
- pname = "containers";
- version = "0.4.2.1";
- sha256 = "10xjyxlx6raz5jx17wyw7zqif3bp3xsbzb1756l263g91gd20rsm";
- revision = "2";
- editedCabalFile = "1j3hr5gqq14bj0yxaz2nyv106zgqf1s12m90y0sgw7xmw1xpipsc";
- libraryHaskellDepends = [ array base deepseq ];
- description = "Assorted concrete container types";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"containers_0_6_4_1" = callPackage
({ mkDerivation, array, base, deepseq }:
mkDerivation {
@@ -62374,8 +61954,6 @@ self: {
libraryHaskellDepends = [ base base-unicode-symbols containers ];
description = "Unicode alternatives for common functions and operators";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"containers-verified" = callPackage
@@ -62423,8 +62001,8 @@ self: {
}:
mkDerivation {
pname = "context";
- version = "0.1.0.0";
- sha256 = "17w0narhg25ls1rs2xp8x0yxh5jhw52b0c3zgi9ivn99j7c8qrhd";
+ version = "0.1.1.1";
+ sha256 = "0zn8hnyf04q7brchll3xnk0ifxadl050wric191irmnl29m6p5k8";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [ async base ghc-prim hspec ];
testToolDepends = [ hspec-discover ];
@@ -62565,6 +62143,8 @@ self: {
];
description = "Unified interface for primitive arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"contiguous-checked" = callPackage
@@ -62589,6 +62169,8 @@ self: {
libraryHaskellDepends = [ base contiguous primitive semirings ];
description = "dft of contiguous memory structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"continue" = callPackage
@@ -62828,8 +62410,6 @@ self: {
];
description = "Explicitly typed, checked exceptions with stack traces";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"control-monad-exception-monadsfd" = callPackage
@@ -62862,8 +62442,6 @@ self: {
];
description = "Monads-tf instances for the EMT exceptions monad transformer";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"control-monad-exception-mtl" = callPackage
@@ -62876,8 +62454,6 @@ self: {
doHaddock = false;
description = "MTL instances for the EMT exceptions monad transformer";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"control-monad-failure" = callPackage
@@ -62906,18 +62482,6 @@ self: {
broken = true;
}) {};
- "control-monad-free_0_5_3" = callPackage
- ({ mkDerivation, base, deepseq, transformers }:
- mkDerivation {
- pname = "control-monad-free";
- version = "0.5.3";
- sha256 = "1igwawcdpg8irayjax1xdrlpa9587k1v4y28ib3xfb7yk0xv7vk1";
- libraryHaskellDepends = [ base deepseq transformers ];
- description = "Free monads and monad transformers";
- license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"control-monad-free" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
@@ -63078,11 +62642,11 @@ self: {
}:
mkDerivation {
pname = "conversions";
- version = "0.0.3";
- sha256 = "1fn7ras17maswl7fw5hdbw02b8wjlzs2gcfwdxrw9xipjbw81hir";
+ version = "0.0.4";
+ sha256 = "1r5k2fqhcyfhrji4ivylx91idhckg0yhkhcrv0pwgqila0xr38p8";
libraryHaskellDepends = [
- base bytestring control-bool devtools exceptions mtl
- source-constraints template-haskell text unliftio-core
+ base bytestring control-bool exceptions mtl source-constraints
+ template-haskell text unliftio-core
];
testHaskellDepends = [
base bytestring control-bool devtools exceptions mtl
@@ -63237,6 +62801,8 @@ self: {
];
description = "web cookies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"coordinate" = callPackage
@@ -63447,17 +63013,16 @@ self: {
"core-data" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, core-text
- , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific
- , text, unordered-containers, vector
+ , hashable, prettyprinter, scientific, text, unordered-containers
+ , vector
}:
mkDerivation {
pname = "core-data";
- version = "0.2.1.8";
- sha256 = "1hgvvkk3m3ykdndmf2hbm59v0pim68jwgl2a6n5hw1dv4xwd3fay";
+ version = "0.2.1.9";
+ sha256 = "098bxx2g4mh3agpx7bccxhq8lpxjgl7a017vzp3ab65ni8126b1r";
libraryHaskellDepends = [
aeson base bytestring containers core-text hashable prettyprinter
- prettyprinter-ansi-terminal scientific text unordered-containers
- vector
+ scientific text unordered-containers vector
];
description = "Convenience wrappers around common data structures and encodings";
license = stdenv.lib.licenses.bsd3;
@@ -63483,36 +63048,36 @@ self: {
"core-program" = callPackage
({ mkDerivation, async, base, bytestring, chronologique, core-data
, 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
+ , hourglass, mtl, prettyprinter, safe-exceptions, stm
+ , template-haskell, terminal-size, text, text-short, transformers
+ , unix
}:
mkDerivation {
pname = "core-program";
- version = "0.2.4.5";
- sha256 = "1a2zjdywmgniwcj649f43hri55bh30vz2s00r3yqj3gvhhighi86";
+ version = "0.2.6.0";
+ sha256 = "1qyl7kcdqxfl2inx66n7pa1z2pqjxrz1bpg3jjknjj0kpw9rlhf3";
libraryHaskellDepends = [
async base bytestring chronologique core-data 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
+ safe-exceptions stm template-haskell terminal-size text text-short
+ transformers unix
];
description = "Opinionated Haskell Interoperability";
license = stdenv.lib.licenses.bsd3;
}) {};
"core-text" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable
- , prettyprinter, prettyprinter-ansi-terminal, template-haskell
- , text, text-short
+ ({ mkDerivation, ansi-terminal, base, bytestring, colour, deepseq
+ , fingertree, hashable, prettyprinter, template-haskell, text
+ , text-short
}:
mkDerivation {
pname = "core-text";
- version = "0.2.3.6";
- sha256 = "13sdgym8xhljpc465bq1h066mrcvk77568viklhib255skjl56gn";
+ version = "0.3.0.0";
+ sha256 = "103fd1bbhkh1l9di0f88yxl9mdaxjh31pgg49bk6yhx9cmdhgn1x";
libraryHaskellDepends = [
- base bytestring deepseq fingertree hashable prettyprinter
- prettyprinter-ansi-terminal template-haskell text text-short
+ ansi-terminal base bytestring colour deepseq fingertree hashable
+ prettyprinter template-haskell text text-short
];
description = "A rope type based on a finger tree over UTF-8 fragments";
license = stdenv.lib.licenses.bsd3;
@@ -63691,7 +63256,6 @@ self: {
description = "A modern, lightweight, complete client for CouchDB";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) couchdb;};
"couchdb-conduit" = callPackage
@@ -63922,8 +63486,6 @@ self: {
];
description = "Coya monoids";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"cparsing" = callPackage
@@ -64450,20 +64012,6 @@ self: {
({ mkDerivation, array, base, FloatingHex }:
mkDerivation {
pname = "crackNum";
- version = "2.3";
- sha256 = "1wrqq2g6hvqa8w0c4nad35d1favcjqi93ywnxqkc3i7pl37jb3s2";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ array base FloatingHex ];
- executableHaskellDepends = [ array base FloatingHex ];
- description = "Crack various integer, floating-point data formats";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "crackNum_2_4" = callPackage
- ({ mkDerivation, array, base, FloatingHex }:
- mkDerivation {
- pname = "crackNum";
version = "2.4";
sha256 = "1fa9rlknmilc8rnm7yvmjrbc9jydpvk30gj7lq79nqbifig6229a";
isLibrary = true;
@@ -64472,7 +64020,6 @@ self: {
executableHaskellDepends = [ array base FloatingHex ];
description = "Crack various integer, floating-point data formats";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"craft" = callPackage
@@ -64689,6 +64236,25 @@ self: {
broken = true;
}) {};
+ "crdt-event-fold" = callPackage
+ ({ mkDerivation, base, binary, containers, data-default-class
+ , data-dword, hspec, mtl, transformers
+ }:
+ mkDerivation {
+ pname = "crdt-event-fold";
+ version = "1.2.1.1";
+ sha256 = "0qwc72j2v3kdvh3iq6vn0anwicpqpx59in6q9yvc5jbk4f24zpl2";
+ libraryHaskellDepends = [
+ base binary containers data-default-class data-dword mtl
+ transformers
+ ];
+ testHaskellDepends = [ base hspec ];
+ description = "Garbage collected event folding CRDT";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"creatur" = callPackage
({ mkDerivation, array, base, binary, bytestring, cereal, cond
, directory, exceptions, filepath, gray-extended, hdaemonize
@@ -64896,7 +64462,7 @@ self: {
({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat
, base-compat-batteries, binary, binary-orphans, bytestring
, cassava, code-page, containers, criterion-measurement, deepseq
- , directory, exceptions, filepath, Glob, HUnit, js-flot, js-jquery
+ , directory, exceptions, filepath, Glob, HUnit, js-chart
, microstache, mtl, mwc-random, optparse-applicative, parsec
, QuickCheck, statistics, tasty, tasty-hunit, tasty-quickcheck
, text, time, transformers, transformers-compat, vector
@@ -64904,8 +64470,8 @@ self: {
}:
mkDerivation {
pname = "criterion";
- version = "1.5.7.0";
- sha256 = "1qzn2k1b2all543v47p93p15a5y8lps002vbxmkr6xrinp91cvqk";
+ version = "1.5.9.0";
+ sha256 = "0qhlylhra1d3vzk6miqv0gdrn10gw03bdwv8b4bfmdzgpf0zgqr1";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -64913,8 +64479,8 @@ self: {
aeson ansi-wl-pprint base base-compat-batteries binary
binary-orphans bytestring cassava code-page containers
criterion-measurement deepseq directory exceptions filepath Glob
- js-flot js-jquery microstache mtl mwc-random optparse-applicative
- parsec statistics text time transformers transformers-compat vector
+ js-chart microstache mtl mwc-random optparse-applicative parsec
+ statistics text time transformers transformers-compat vector
vector-algorithms
];
executableHaskellDepends = [
@@ -65214,6 +64780,8 @@ self: {
];
description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"crypto-api" = callPackage
@@ -65319,6 +64887,8 @@ self: {
testHaskellDepends = [ base bytestring QuickCheck ];
description = "An educational tool for studying classical cryptography schemes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"crypto-conduit" = callPackage
@@ -65376,6 +64946,8 @@ self: {
];
description = "Like crypto-pubkey-openssh but not dependent on any specific crypto library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"crypto-multihash" = callPackage
@@ -65543,8 +65115,6 @@ self: {
];
description = "Cryptographic random number generator";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"crypto-simple" = callPackage
@@ -65582,8 +65152,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Easy-and-safe-to-use high-level cryptography based on Sodium";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"crypto-token" = callPackage
@@ -65808,6 +65376,8 @@ self: {
benchmarkHaskellDepends = [ base bytestring criterion ];
description = "Fast, pure and practical SHA-512 implementation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cryptoids" = callPackage
@@ -65842,6 +65412,8 @@ self: {
libraryHaskellDepends = [ base cryptoids-types exceptions ];
description = "Typeclass-based interface to cryptoids";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cryptoids-types" = callPackage
@@ -65859,30 +65431,33 @@ self: {
];
description = "Shared types for encrypting internal object identifiers before exposure";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"cryptol" = callPackage
({ mkDerivation, alex, ansi-terminal, array, async, base
, base-compat, blaze-html, bv-sized, bytestring, containers
, criterion, cryptohash-sha1, deepseq, directory, exceptions
- , filepath, gitrev, GraphSCC, happy, haskeline, heredoc, libBF
- , monad-control, monadLib, mtl, panic, parameterized-utils, pretty
- , process, random, sbv, simple-smt, strict, text, tf-random, time
- , transformers, transformers-base, what4
+ , filepath, ghc-prim, gitrev, GraphSCC, happy, haskeline, heredoc
+ , integer-gmp, libBF, MemoTrie, monad-control, monadLib, mtl, panic
+ , parameterized-utils, pretty, process, random, sbv, simple-smt
+ , stm, strict, text, tf-random, time, transformers
+ , transformers-base, what4
}:
mkDerivation {
pname = "cryptol";
- version = "2.9.1";
- sha256 = "0c484pla89igj77x5n2n50a1la8j4jaqpc0pc58c1pcijffxac5l";
+ version = "2.10.0";
+ sha256 = "0qzgfd0nn070rca8mdm2gi7ah9aghn1kpr3fl4dx56kbfva23yhb";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array async base base-compat bv-sized bytestring containers
- cryptohash-sha1 deepseq directory exceptions filepath gitrev
- GraphSCC heredoc libBF monad-control monadLib mtl panic
- parameterized-utils pretty process random sbv simple-smt strict
- text tf-random time transformers-base what4
+ cryptohash-sha1 deepseq directory exceptions filepath ghc-prim
+ gitrev GraphSCC heredoc integer-gmp libBF MemoTrie monad-control
+ monadLib mtl panic parameterized-utils pretty process random sbv
+ simple-smt stm strict text tf-random time transformers-base what4
];
libraryToolDepends = [ alex happy ];
executableHaskellDepends = [
@@ -65905,28 +65480,6 @@ self: {
}:
mkDerivation {
pname = "cryptonite";
- version = "0.26";
- sha256 = "1pdf0zzbfr0cdzls6bab6f6kpx08wa8c2qc1zfqzv5ajapgr0wy4";
- libraryHaskellDepends = [
- base basement bytestring deepseq ghc-prim integer-gmp memory
- ];
- testHaskellDepends = [
- base bytestring memory tasty tasty-hunit tasty-kat tasty-quickcheck
- ];
- benchmarkHaskellDepends = [
- base bytestring deepseq gauge memory random
- ];
- description = "Cryptography Primitives sink";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "cryptonite_0_27" = callPackage
- ({ mkDerivation, base, basement, bytestring, deepseq, gauge
- , ghc-prim, integer-gmp, memory, random, tasty, tasty-hunit
- , tasty-kat, tasty-quickcheck
- }:
- mkDerivation {
- pname = "cryptonite";
version = "0.27";
sha256 = "1c68wvn2b49gijq9day2bzi0axcbdz41ip3j0wdahdhcjfl4a9y8";
libraryHaskellDepends = [
@@ -65940,7 +65493,6 @@ self: {
];
description = "Cryptography Primitives sink";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cryptonite-conduit" = callPackage
@@ -66109,15 +65661,24 @@ self: {
}:
mkDerivation {
pname = "csound-catalog";
- version = "0.7.3";
- sha256 = "18xn06drza3pwyhidlkr478hvn8ss93f3f30wmfrh79ngabip4kp";
+ version = "0.7.4";
+ sha256 = "1ca70yk13b239383q9d8fwc4qd6jm22dqinfhasd88b4iv9p46h8";
libraryHaskellDepends = [
base csound-expression csound-sampler sharc-timbre transformers
];
description = "a gallery of Csound instruments";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ }) {};
+
+ "csound-controllers" = callPackage
+ ({ mkDerivation, base, csound-expression }:
+ mkDerivation {
+ pname = "csound-controllers";
+ version = "0.1.1.0";
+ sha256 = "1p2fa00djwyrv7fdrngawmk3r41q6a4mlsqgdm4qajmivbj0sg9m";
+ libraryHaskellDepends = [ base csound-expression ];
+ testHaskellDepends = [ base csound-expression ];
+ license = stdenv.lib.licenses.bsd3;
}) {};
"csound-expression" = callPackage
@@ -66128,8 +65689,8 @@ self: {
}:
mkDerivation {
pname = "csound-expression";
- version = "5.3.3";
- sha256 = "0g6djh3ijvka6hkw4nhb7vhhyl4i268rdxvnwmm6ayg6a8kg8p0g";
+ version = "5.3.4";
+ sha256 = "0v5mv2yhw114y7hixh3qjy88sfrry7xfyzkwwk1dpwnq8yycp0ir";
libraryHaskellDepends = [
base Boolean colour containers csound-expression-dynamic
csound-expression-opcodes csound-expression-typed data-default
@@ -66137,8 +65698,6 @@ self: {
];
description = "library to make electronic music";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"csound-expression-dynamic" = callPackage
@@ -66148,16 +65707,14 @@ self: {
}:
mkDerivation {
pname = "csound-expression-dynamic";
- version = "0.3.5";
- sha256 = "07xykqpym48bvvs7sa0m12psahsn7z245cd89akv9flkgwjwaa29";
+ version = "0.3.6";
+ sha256 = "1s4gyn4rpkpfpb0glbb39hnzkw9vr4his3s4a4azx894cymyhzg0";
libraryHaskellDepends = [
array base Boolean containers data-default data-fix data-fix-cse
deriving-compat hashable transformers wl-pprint
];
description = "dynamic core for csound-expression library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"csound-expression-opcodes" = callPackage
@@ -66166,15 +65723,13 @@ self: {
}:
mkDerivation {
pname = "csound-expression-opcodes";
- version = "0.0.4.0";
- sha256 = "1rzkv24xppysmx20x453wzxfapkic99c98jqzpf2iyfyny1qya2w";
+ version = "0.0.5.0";
+ sha256 = "1qif8nx3652883zf84w4d0l2lzlbrk9n25rn4i5mxcmlv9px06ha";
libraryHaskellDepends = [
base csound-expression-dynamic csound-expression-typed transformers
];
description = "opcodes for the library csound-expression";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"csound-expression-typed" = callPackage
@@ -66185,8 +65740,8 @@ self: {
}:
mkDerivation {
pname = "csound-expression-typed";
- version = "0.2.3.1";
- sha256 = "02zd41sz1y8qfchdyhgiddi6s1p5081nr5haq04qdmbz5bgpdmbq";
+ version = "0.2.4";
+ sha256 = "1hqmwlgx0dcci7z76w4i5xcq10c4jigzbm7fvf0xxwffmhf6j752";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base Boolean colour containers csound-expression-dynamic
@@ -66195,21 +65750,17 @@ self: {
];
description = "typed core for the library csound-expression";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"csound-sampler" = callPackage
({ mkDerivation, base, csound-expression, transformers }:
mkDerivation {
pname = "csound-sampler";
- version = "0.0.9.0";
- sha256 = "0vvsqbnd1yjwijz4g0y9av6d20m73b5swln4v7gna3jd16mrg2k1";
+ version = "0.0.10.0";
+ sha256 = "0mi7w39adkn5l1h05arfap3c0ddb8j65wv96i3jrswpc3ljf3b2y";
libraryHaskellDepends = [ base csound-expression transformers ];
description = "A musical sampler based on Csound";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"csp" = callPackage
@@ -66329,8 +65880,6 @@ self: {
];
description = "High-performance CSS tokenizer and serializer";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"css-text" = callPackage
@@ -66366,8 +65915,8 @@ self: {
}:
mkDerivation {
pname = "csv-conduit";
- version = "0.7.1.0";
- sha256 = "01wmf2kzy483k3dbmcmf1mziwwrchdj7nxl63wakynsddh1zjv9v";
+ version = "0.7.2.0";
+ sha256 = "1bclavsan00mv0n0dy0ap6byk4w5fwnhpvxhdhx94r7bxfqi2r0q";
libraryHaskellDepends = [
array attoparsec base blaze-builder bytestring conduit
conduit-extra containers data-default exceptions ghc-prim mmorph
@@ -66701,8 +66250,6 @@ self: {
libraryToolDepends = [ c2hs ];
description = "Bindings to the CUDD binary decision diagrams library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) cudd;};
"cue-sheet" = callPackage
@@ -66818,6 +66365,8 @@ self: {
];
description = "A framework for declaratively writing curl based API tests";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"curlhs" = callPackage
@@ -67129,8 +66678,6 @@ self: {
];
description = "Fast implementations of the curve25519 elliptic curve primitives";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"curves" = callPackage
@@ -67206,8 +66753,8 @@ self: {
}:
mkDerivation {
pname = "cut-the-crap";
- version = "2.1.1";
- sha256 = "0w0ir436gmh3d9ycdcjyxkgblrah7ij5njqmm44lx1kyhih6bk2x";
+ version = "2.3.1";
+ sha256 = "1q7jp39xyhximpb9k4yw2baccpgixgsdcrrlx1a0s84nxv8d0hl6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -67377,8 +66924,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Digits 0-9";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"d3d11binding" = callPackage
@@ -67576,17 +67121,17 @@ self: {
, filepath, FindBin, hashable, haskeline, html, http-conduit
, http-types, HUnit, leancheck, memory, mmap, monad-control, mtl
, network, network-uri, old-time, parsec, process, QuickCheck
- , regex-applicative, regex-compat-tdfa, sandi, split, stm
- , system-fileio, system-filepath, tar, temporary, terminfo
- , test-framework, test-framework-hunit, test-framework-leancheck
+ , regex-applicative, regex-compat-tdfa, stm, system-fileio
+ , system-filepath, tar, temporary, terminfo, test-framework
+ , test-framework-hunit, test-framework-leancheck
, test-framework-quickcheck2, text, time, transformers
, transformers-base, unix, unix-compat, utf8-string, vector
, zip-archive, zlib
}:
mkDerivation {
pname = "darcs";
- version = "2.16.2";
- sha256 = "1nsmaai4l5zas4v1vk92nvh721dykcxrpd4c2v9bh3wi3n2m45qn";
+ version = "2.16.3";
+ sha256 = "1bf11ndz6k7fx9bb31l4l6dqfkrld3gxsrrqggcg7d57wa3yw9c9";
configureFlags = [ "-fforce-char8-encoding" "-flibrary" ];
isLibrary = true;
isExecutable = true;
@@ -67596,16 +67141,16 @@ self: {
conduit constraints containers cryptonite data-ordlist directory
fgl filepath hashable haskeline html http-conduit http-types memory
mmap mtl network network-uri old-time parsec process
- regex-applicative regex-compat-tdfa sandi stm tar temporary
- terminfo text time transformers unix unix-compat utf8-string vector
- zip-archive zlib
+ regex-applicative regex-compat-tdfa stm tar temporary terminfo text
+ time transformers unix unix-compat utf8-string vector zip-archive
+ zlib
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
array async base bytestring cmdargs constraints containers
directory exceptions filepath FindBin HUnit leancheck monad-control
- mtl process QuickCheck split system-fileio system-filepath
- test-framework test-framework-hunit test-framework-leancheck
+ mtl process QuickCheck system-fileio system-filepath test-framework
+ test-framework-hunit test-framework-leancheck
test-framework-quickcheck2 text time transformers transformers-base
unix-compat vector zip-archive
];
@@ -68074,6 +67619,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-as" = callPackage
+ ({ mkDerivation, base, profunctors }:
+ mkDerivation {
+ pname = "data-as";
+ version = "0.0.0.2";
+ sha256 = "1rqdffwyxrnvsrqchnknjdmdz7afzhplyalnrclrm5zm6gj0dlia";
+ libraryHaskellDepends = [ base profunctors ];
+ description = "Simple extensible sum";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"data-ascii" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
, hashable, semigroups, text
@@ -68185,8 +67741,6 @@ self: {
sha256 = "1mb72r17982w2sslmvi5nzpf7i702iikc7j4h68gzlfnm426jk9q";
description = "Category theory";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"data-cell" = callPackage
@@ -68780,19 +68334,6 @@ self: {
}) {};
"data-fix" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "data-fix";
- version = "0.2.1";
- sha256 = "05mhbcb04gxj1zl5y3zjss4p5lab5wyvzwk9pbg04ax2l24qmwih";
- revision = "1";
- editedCabalFile = "1rjz9w5rs48nia2imk4345h8daczlgk85ak2k0dssframi2w8v3s";
- libraryHaskellDepends = [ base ];
- description = "Fixpoint data types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "data-fix_0_3_0" = callPackage
({ mkDerivation, base, deepseq, hashable }:
mkDerivation {
pname = "data-fix";
@@ -68801,7 +68342,6 @@ self: {
libraryHaskellDepends = [ base deepseq hashable ];
description = "Fixpoint data types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-fix-cse" = callPackage
@@ -68813,8 +68353,6 @@ self: {
libraryHaskellDepends = [ base containers data-fix transformers ];
description = "Common subexpression elimination for the fixploint types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"data-flags" = callPackage
@@ -68862,8 +68400,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "A simple multi-way tree data structure";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"data-fresh" = callPackage
@@ -68903,8 +68439,8 @@ self: {
({ mkDerivation, base, criterion, transformers }:
mkDerivation {
pname = "data-has";
- version = "0.3.0.0";
- sha256 = "0ybkm9zvl0l60f44p80fislbdmwwhavqz31wymnikjsyc01x899w";
+ version = "0.4.0.0";
+ sha256 = "1zkjn2m4s59h09i3kgqxr45xw8kr34d1f2fxanac1c7y8242vdbz";
libraryHaskellDepends = [ base ];
benchmarkHaskellDepends = [ base criterion transformers ];
description = "Simple extensible product";
@@ -69364,22 +68900,6 @@ self: {
}) {};
"data-reify" = callPackage
- ({ mkDerivation, base, containers, hashable, unordered-containers
- }:
- mkDerivation {
- pname = "data-reify";
- version = "0.6.2";
- sha256 = "19mljyx1v86plnwqm5y1livw5qd8cc9z5k1kfchqiiwj1vsq660v";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base containers hashable unordered-containers
- ];
- description = "Reify a recursive data structure into an explicit graph";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "data-reify_0_6_3" = callPackage
({ mkDerivation, base, base-compat, containers, hashable, hspec
, hspec-discover, unordered-containers
}:
@@ -69396,7 +68916,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Reify a recursive data structure into an explicit graph";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-reify-cse" = callPackage
@@ -69706,8 +69225,6 @@ self: {
libraryHaskellDepends = [ base containers mtl ];
description = "Functions to transform data structures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"data-tree-print" = callPackage
@@ -69716,8 +69233,8 @@ self: {
pname = "data-tree-print";
version = "0.1.0.2";
sha256 = "00jh37anim8qsn553467gmfhajcz1c61zrgh1ypkqsll0gc29vy3";
- revision = "1";
- editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4";
+ revision = "2";
+ editedCabalFile = "00qpzhm3lndhpql8aj93aj6r3x9n0gw3nx6n0q60xxrd6agyjifq";
libraryHaskellDepends = [ base pretty syb ];
description = "Print Data instances as a nested tree";
license = stdenv.lib.licenses.bsd3;
@@ -69761,13 +69278,18 @@ self: {
}) {};
"data-validation" = callPackage
- ({ mkDerivation, base, containers, hspec, template-haskell }:
+ ({ mkDerivation, base, containers, hspec, regex-tdfa
+ , template-haskell
+ }:
mkDerivation {
pname = "data-validation";
- version = "0.1.0.2";
- sha256 = "15mc3m48jnn5fjr3bm02j9raxclqwd8qnb0bx0w2jz5y3asnfx5f";
- libraryHaskellDepends = [ base containers template-haskell ];
+ version = "0.1.2.0";
+ sha256 = "1qka2f0gl48yi2hfiqphk94srh5lq7i14vx0qmj09fgv8xn65n15";
+ libraryHaskellDepends = [
+ base containers regex-tdfa template-haskell
+ ];
testHaskellDepends = [ base containers hspec template-haskell ];
+ doHaddock = false;
description = "A library for creating type safe validations";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -69796,6 +69318,8 @@ self: {
libraryHaskellDepends = [ aeson base ];
description = "Class for types with a database id";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"database-id-groundhog" = callPackage
@@ -70255,8 +69779,6 @@ self: {
];
description = "Directed acyclic word graphs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dbcleaner" = callPackage
@@ -70415,35 +69937,6 @@ self: {
broken = true;
}) {};
- "dbus_0_10_15" = callPackage
- ({ mkDerivation, base, bytestring, cereal, containers, criterion
- , deepseq, directory, extra, filepath, libxml-sax, network, parsec
- , process, QuickCheck, random, resourcet, tasty, tasty-hunit
- , tasty-quickcheck, text, transformers, unix, vector, xml-types
- }:
- mkDerivation {
- pname = "dbus";
- version = "0.10.15";
- sha256 = "1a5sjavq8mfzz4zxpkd9b6jxsvy0kl1rjq2hhy40gcz2qjfnamb4";
- revision = "2";
- editedCabalFile = "0v9k4yrpzpkk3k33gp3z8qmv0q6kf0d6xps3ar4d3xs9ybrwvg0c";
- libraryHaskellDepends = [
- base bytestring cereal containers deepseq libxml-sax network parsec
- random text transformers unix vector xml-types
- ];
- testHaskellDepends = [
- base bytestring cereal containers directory extra filepath
- libxml-sax network parsec process QuickCheck random resourcet tasty
- tasty-hunit tasty-quickcheck text transformers unix vector
- xml-types
- ];
- benchmarkHaskellDepends = [ base criterion ];
- doCheck = false;
- description = "A client library for the D-Bus IPC system";
- license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"dbus" = callPackage
({ mkDerivation, base, bytestring, cereal, conduit, containers
, criterion, deepseq, directory, exceptions, extra, filepath, lens
@@ -71276,6 +70769,8 @@ self: {
];
description = "Combinators for manipulating dependently-typed predicates";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"decimal-arithmetic" = callPackage
@@ -71306,6 +70801,8 @@ self: {
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Preprocessing decimal literals more or less as they are (instead of via fractions)";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"declarative" = callPackage
@@ -71325,8 +70822,6 @@ self: {
testHaskellDepends = [ base mwc-probability ];
description = "DIY Markov Chains";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"decode-utf8" = callPackage
@@ -71382,6 +70877,26 @@ self: {
broken = true;
}) {};
+ "deep-transformations" = callPackage
+ ({ mkDerivation, base, Cabal, cabal-doctest, doctest, generic-lens
+ , markdown-unlit, rank2classes, template-haskell
+ }:
+ mkDerivation {
+ pname = "deep-transformations";
+ version = "0.1";
+ sha256 = "007j67gx2nq77d5zcikywjjc5hs14x95hn94sbzrjh708azbb7gc";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ base generic-lens rank2classes template-haskell
+ ];
+ testHaskellDepends = [ base doctest rank2classes ];
+ testToolDepends = [ markdown-unlit ];
+ description = "Deep natural and unnatural tree transformations, including attribute grammars";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"deepcontrol" = callPackage
({ mkDerivation, base, containers, doctest, HUnit, mmorph, mtl
, QuickCheck, safe, transformers
@@ -71429,18 +70944,6 @@ self: {
broken = true;
}) {};
- "deepseq_1_3_0_1" = callPackage
- ({ mkDerivation, array, base }:
- mkDerivation {
- pname = "deepseq";
- version = "1.3.0.1";
- sha256 = "068zka6rwprbzpx7yisi1ajsxdly23zaf2vjklx1wp66yypx54lp";
- libraryHaskellDepends = [ array base ];
- description = "Deep evaluation of data structures";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"deepseq_1_4_4_0" = callPackage
({ mkDerivation, array, base, ghc-prim, HUnit, test-framework
, test-framework-hunit
@@ -71570,38 +71073,16 @@ self: {
"deferred-folds" = callPackage
({ mkDerivation, base, bytestring, containers, foldl, hashable
, primitive, QuickCheck, quickcheck-instances, rerebase, tasty
- , tasty-hunit, tasty-quickcheck, transformers, unordered-containers
- , vector
- }:
- mkDerivation {
- pname = "deferred-folds";
- version = "0.9.10.1";
- sha256 = "15lwcc7i7wmi1gkkmak677qw0fnz4a4ldnv842xaimfi64753shv";
- libraryHaskellDepends = [
- base bytestring containers foldl hashable primitive transformers
- unordered-containers vector
- ];
- testHaskellDepends = [
- QuickCheck quickcheck-instances rerebase tasty tasty-hunit
- tasty-quickcheck
- ];
- description = "Abstractions over deferred folds";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "deferred-folds_0_9_11" = callPackage
- ({ mkDerivation, base, bytestring, containers, foldl, hashable
- , primitive, QuickCheck, quickcheck-instances, rerebase, tasty
- , tasty-hunit, tasty-quickcheck, transformers, unordered-containers
- , vector
+ , tasty-hunit, tasty-quickcheck, text, transformers
+ , unordered-containers, vector
}:
mkDerivation {
pname = "deferred-folds";
- version = "0.9.11";
- sha256 = "02j1akzjdi73l7adlhv49sln5saq2j53pziqwzw6zw0bsf53q00k";
+ version = "0.9.15";
+ sha256 = "0jijnjy6x6f86dmlhiaj9gl13zbwzaz4gpb8svzdwwws48bwwyqr";
libraryHaskellDepends = [
- base bytestring containers foldl hashable primitive transformers
- unordered-containers vector
+ base bytestring containers foldl hashable primitive text
+ transformers unordered-containers vector
];
testHaskellDepends = [
QuickCheck quickcheck-instances rerebase tasty tasty-hunit
@@ -71609,7 +71090,6 @@ self: {
];
description = "Abstractions over deferred folds";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"definitive-base" = callPackage
@@ -71751,22 +71231,6 @@ self: {
}:
mkDerivation {
pname = "dejafu";
- version = "2.3.0.1";
- sha256 = "0klw2knnhqanmfjz2hjrj5sag6bqkh1g6vhgbvyk3d532m748wx1";
- libraryHaskellDepends = [
- base concurrency containers contravariant deepseq exceptions
- leancheck profunctors random transformers
- ];
- description = "A library for unit-testing concurrent programs";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "dejafu_2_4_0_0" = callPackage
- ({ mkDerivation, base, concurrency, containers, contravariant
- , deepseq, exceptions, leancheck, profunctors, random, transformers
- }:
- mkDerivation {
- pname = "dejafu";
version = "2.4.0.0";
sha256 = "1kj4ygdbbkr54bqknxk3jqif74jxgpid7cz9vzcm2m15h8q2z9k2";
libraryHaskellDepends = [
@@ -71775,7 +71239,6 @@ self: {
];
description = "A library for unit-testing concurrent programs";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"deka" = callPackage
@@ -71994,8 +71457,8 @@ self: {
}:
mkDerivation {
pname = "dense";
- version = "0.1.0.0";
- sha256 = "1cyprx6z66cmg98j2zijjjznicfvybr678h4vaj4ppmfxgalkz99";
+ version = "0.1.0.1";
+ sha256 = "00hm40myj6m7hh9v5w75252wi7azf5fq6ldmpn7p0cv4sxj8mnmg";
libraryHaskellDepends = [
base binary bytes cereal comonad deepseq ghc-prim hashable lens
linear primitive semigroupoids template-haskell transformers
@@ -72177,15 +71640,15 @@ self: {
"dependent-sum-aeson-orphans" = callPackage
({ mkDerivation, aeson, base, constraints, constraints-extras
- , dependent-map, dependent-sum
+ , dependent-map, dependent-sum, some
}:
mkDerivation {
pname = "dependent-sum-aeson-orphans";
- version = "0.2.1.0";
- sha256 = "04flfszrn4ah9vrm6hyp2pk0sbldcjp0jjibdny7lxdmv0fskzj5";
+ version = "0.3.0.0";
+ sha256 = "1wpjrynv9zva3hw1wgmqd5pmhhpa491yh85p1dnbpkj7h0g1pl1a";
libraryHaskellDepends = [
aeson base constraints constraints-extras dependent-map
- dependent-sum
+ dependent-sum some
];
description = "JSON instances for DSum, DMap, and Some";
license = stdenv.lib.licenses.bsd3;
@@ -72343,6 +71806,8 @@ self: {
testHaskellDepends = [ base Cabal cabal-test-quickcheck ];
description = "A typeclass and an implementation for double-ended queues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"derangement" = callPackage
@@ -72478,8 +71943,8 @@ self: {
({ mkDerivation, base, criterion, deepseq, hspec, QuickCheck }:
mkDerivation {
pname = "derive-storable";
- version = "0.2.0.0";
- sha256 = "0cr13ydc3p5zsrzimha4xkaj5hmf2bj3hylzjh2llgcgi2l8vc53";
+ version = "0.3.0.0";
+ sha256 = "1qxf729wmvcszw9bs2w9h7ww9sh55576hvalpg0qp6l3zlp3f4sq";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec QuickCheck ];
benchmarkHaskellDepends = [ base criterion deepseq ];
@@ -72493,10 +71958,8 @@ self: {
}:
mkDerivation {
pname = "derive-storable-plugin";
- version = "0.2.3.0";
- sha256 = "0yr9s33drw5l4ckqipqpmgrsrnm18yr4742mmyjqm3x7wai7d99q";
- revision = "1";
- editedCabalFile = "0wrynvd305bk3mvm9rbs9vrfb65yhiy2s83r8hs690r1vsw4mdkj";
+ version = "0.2.3.1";
+ sha256 = "1g2i2l97jldw9yv10dbcbaq54lz1k1aajhxr28m7fgjwf2mry3gi";
libraryHaskellDepends = [ base derive-storable ghc ghci ];
testHaskellDepends = [
base derive-storable ghc ghci hspec QuickCheck
@@ -72506,6 +71969,8 @@ self: {
];
description = "GHC core plugin supporting the derive-storable package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"derive-topdown" = callPackage
@@ -72521,8 +71986,6 @@ self: {
];
description = "Help Haskellers derive class instances for composited data types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"derive-trie" = callPackage
@@ -72574,10 +72037,8 @@ self: {
}:
mkDerivation {
pname = "deriving-compat";
- version = "0.5.9";
- sha256 = "1i0sc77h2902b0xc722v87iwdnwayn1y5mpiy700nclmfrrw2jy4";
- revision = "1";
- editedCabalFile = "07vw03bi7gajfnampd98jyxjkidnkj4zyaxl7pr248qsgrvcf123";
+ version = "0.5.10";
+ sha256 = "1ah04xsb71wv6iax47xpdykfadxp3lcw2l6vkg15723l1xgy8ach";
libraryHaskellDepends = [
base containers ghc-boot-th ghc-prim template-haskell
th-abstraction transformers transformers-compat
@@ -72591,28 +72052,16 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "deriving-compat_0_5_10" = callPackage
- ({ mkDerivation, base, base-compat, base-orphans, containers
- , ghc-boot-th, ghc-prim, hspec, hspec-discover, QuickCheck, tagged
- , template-haskell, th-abstraction, transformers
- , transformers-compat, void
- }:
+ "deriving-show-simple" = callPackage
+ ({ mkDerivation, base, HUnit }:
mkDerivation {
- pname = "deriving-compat";
- version = "0.5.10";
- sha256 = "1ah04xsb71wv6iax47xpdykfadxp3lcw2l6vkg15723l1xgy8ach";
- libraryHaskellDepends = [
- base containers ghc-boot-th ghc-prim template-haskell
- th-abstraction transformers transformers-compat
- ];
- testHaskellDepends = [
- base base-compat base-orphans hspec QuickCheck tagged
- template-haskell transformers transformers-compat void
- ];
- testToolDepends = [ hspec-discover ];
- description = "Backports of GHC deriving extensions";
+ pname = "deriving-show-simple";
+ version = "0";
+ sha256 = "0m0sill0h6k651l1il6g4g5ypinwq77x9xy01jbj5gawcs9mln0i";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base HUnit ];
+ description = "Derive a Show instance without field selector names";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derp" = callPackage
@@ -72893,18 +72342,12 @@ self: {
}:
mkDerivation {
pname = "devtools";
- version = "0.0.3";
- sha256 = "09lwvi4mbwkhazzmngpblxh2bvvxz1j4ndzsh3bp3nwwwa0xiihm";
- isLibrary = true;
- isExecutable = true;
+ version = "0.1.0";
+ sha256 = "09md1na64p3881d2j9l64m730gvmkl47az8hajm6yh578q14v50j";
libraryHaskellDepends = [
base bytestring cmdargs Diff filepath hlint mprelude
source-constraints tasty tasty-mgolden text typed-process
];
- executableHaskellDepends = [
- base bytestring cmdargs Diff filepath hlint mprelude
- source-constraints tasty tasty-mgolden text typed-process
- ];
testHaskellDepends = [
base bytestring cmdargs Diff filepath hlint mprelude
source-constraints tasty tasty-mgolden text typed-process
@@ -73124,60 +72567,6 @@ self: {
, doctest, dotgen, either, exceptions, filepath, foldl, gauge
, generic-random, half, hashable, haskeline, http-client
, http-client-tls, http-types, lens-family-core, megaparsec, memory
- , mockery, mtl, network-uri, optparse-applicative
- , parser-combinators, parsers, pretty-simple, prettyprinter
- , prettyprinter-ansi-terminal, profunctors, QuickCheck
- , quickcheck-instances, repline, scientific, semigroups, serialise
- , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit
- , tasty-quickcheck, template-haskell, text, text-manipulate
- , th-lift-instances, transformers, transformers-compat, turtle
- , unordered-containers, uri-encode, vector
- }:
- mkDerivation {
- pname = "dhall";
- version = "1.32.0";
- sha256 = "1imj0bh5365pdizvjbw2wqz0g9hakigf1zm4fr6379qdchxpp90p";
- revision = "4";
- editedCabalFile = "17mq04cla4367gb14g8jlzywgg5m3dbz02xxqm6ynyf9k8dnnr2x";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty ansi-terminal atomic-write base bytestring
- case-insensitive cborg cborg-json containers contravariant
- cryptonite data-fix deepseq Diff directory dotgen either exceptions
- filepath half hashable haskeline http-client http-client-tls
- http-types lens-family-core megaparsec memory mtl network-uri
- optparse-applicative parser-combinators parsers pretty-simple
- prettyprinter prettyprinter-ansi-terminal profunctors repline
- scientific serialise template-haskell text text-manipulate
- th-lift-instances transformers transformers-compat
- unordered-containers uri-encode vector
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- base bytestring cborg containers data-fix deepseq directory doctest
- either filepath foldl generic-random lens-family-core megaparsec
- mockery prettyprinter QuickCheck quickcheck-instances scientific
- semigroups serialise special-values spoon tasty
- tasty-expected-failure tasty-hunit tasty-quickcheck
- template-haskell text transformers turtle unordered-containers
- vector
- ];
- benchmarkHaskellDepends = [
- base bytestring containers directory gauge serialise text
- ];
- doCheck = false;
- description = "A configuration language guaranteed to terminate";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "dhall_1_35_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
- , doctest, dotgen, either, exceptions, filepath, foldl, gauge
- , generic-random, half, hashable, haskeline, http-client
- , http-client-tls, http-types, lens-family-core, megaparsec, memory
, mmorph, mockery, mtl, network-uri, optparse-applicative
, parser-combinators, parsers, pretty-simple, prettyprinter
, prettyprinter-ansi-terminal, profunctors, QuickCheck
@@ -73190,10 +72579,10 @@ self: {
}:
mkDerivation {
pname = "dhall";
- version = "1.35.0";
- sha256 = "19h0afgxqq9da1apx4xx9p4p0f2r6miivc4l1dkhbbvfk2r5wkw3";
- revision = "2";
- editedCabalFile = "0jfgmh4mh7v2srwvz76zpffhgnrqx9fgrhn2hdsfgrzh95zjx0my";
+ version = "1.36.0";
+ sha256 = "014bdxmrcxzc2yrk838fxbz521714fk3a7c6idb9065wrfzch1wj";
+ revision = "1";
+ editedCabalFile = "1561i0rv0qx4mizwg1k04qynwdz6gsx4fifps9415rwdfki6dyxw";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -73212,11 +72601,12 @@ self: {
executableHaskellDepends = [ base ];
testHaskellDepends = [
base bytestring cborg containers data-fix deepseq directory doctest
- either filepath foldl generic-random lens-family-core megaparsec
- mockery prettyprinter QuickCheck quickcheck-instances scientific
- serialise special-values spoon tasty tasty-expected-failure
- tasty-hunit tasty-quickcheck tasty-silver template-haskell text
- transformers turtle unordered-containers vector
+ either filepath foldl generic-random http-client http-client-tls
+ lens-family-core megaparsec mockery prettyprinter QuickCheck
+ quickcheck-instances scientific serialise special-values spoon
+ tasty tasty-expected-failure tasty-hunit tasty-quickcheck
+ tasty-silver template-haskell text transformers turtle
+ unordered-containers vector
];
benchmarkHaskellDepends = [
base bytestring containers directory gauge text
@@ -73224,7 +72614,6 @@ self: {
doCheck = false;
description = "A configuration language guaranteed to terminate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dhall-bash" = callPackage
@@ -73233,10 +72622,8 @@ self: {
}:
mkDerivation {
pname = "dhall-bash";
- version = "1.0.30";
- sha256 = "1r2xr8c8kzmrxrb8m6f9dzjn81sqxzx97w0406kwrx9vzfj7ci1q";
- revision = "1";
- editedCabalFile = "0x7lkh86sr08qm53ycmka1vpxn7y60l01dm6hh70rhzn435ilvj1";
+ version = "1.0.34";
+ sha256 = "1p1zylrjk80lh8rxpw2z3wyvk9x7q65lwyfwfacx8rrbgzx54riy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -73250,30 +72637,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "dhall-bash_1_0_33" = callPackage
- ({ mkDerivation, base, bytestring, containers, dhall
- , neat-interpolation, optparse-generic, shell-escape, text
- }:
- mkDerivation {
- pname = "dhall-bash";
- version = "1.0.33";
- sha256 = "0b920cscim2mqcav0yy4s00gcgjqfybvbmfvnnbvarxswknw8z1v";
- revision = "1";
- editedCabalFile = "1r01himc5n19q9675i6i27yrfrx9l362ycsnvk48mcbrbmv1z5lf";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers dhall neat-interpolation shell-escape
- text
- ];
- executableHaskellDepends = [
- base bytestring dhall optparse-generic text
- ];
- description = "Compile Dhall to Bash";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"dhall-check" = callPackage
({ mkDerivation, base, containers, dhall, directory, filepath
, fsnotify, text, trifecta
@@ -73302,8 +72665,8 @@ self: {
}:
mkDerivation {
pname = "dhall-docs";
- version = "1.0.1";
- sha256 = "0632l4h72zrddknhha8lz53ynzbdrhb11mvj09qfmr4b1rd01amz";
+ version = "1.0.2";
+ sha256 = "17l8vwj02lbkqy8p4j7rhmwidrxx1ln375cv8lgwwx4n0fgvmgfc";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -73320,8 +72683,6 @@ self: {
];
description = "Generate HTML docs from a dhall package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dhall-fly" = callPackage
@@ -73361,45 +72722,14 @@ self: {
"dhall-json" = callPackage
({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal
, base, bytestring, containers, dhall, exceptions, filepath
- , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
- , scientific, tasty, tasty-hunit, text, unordered-containers
- , vector
- }:
- mkDerivation {
- pname = "dhall-json";
- version = "1.6.4";
- sha256 = "0vr6a02frfk5bh0qj0m4qlc5pp08m29gxp8ixqihrqakkna6409z";
- revision = "3";
- editedCabalFile = "09yifah6mfy8k1qi5d2fibw62hjnxfcr7fx3wvyf4n16nq1mhshx";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty aeson-yaml base bytestring containers dhall
- exceptions filepath optparse-applicative prettyprinter scientific
- text unordered-containers vector
- ];
- executableHaskellDepends = [
- aeson aeson-pretty ansi-terminal base bytestring dhall exceptions
- optparse-applicative prettyprinter prettyprinter-ansi-terminal text
- ];
- testHaskellDepends = [
- aeson base bytestring dhall tasty tasty-hunit text
- ];
- description = "Convert between Dhall and JSON or YAML";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "dhall-json_1_7_2" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal
- , base, bytestring, containers, dhall, exceptions, filepath
, lens-family-core, optparse-applicative, prettyprinter
, prettyprinter-ansi-terminal, scientific, tasty, tasty-hunit
, tasty-silver, text, unordered-containers, vector
}:
mkDerivation {
pname = "dhall-json";
- version = "1.7.2";
- sha256 = "189mpnh2fnm1gwc1lvqa3wy9wk2wh8jj3216dvidik545008yvcj";
+ version = "1.7.3";
+ sha256 = "0as1n4qy0rynmj1y7h39l1lazqarwgizbzsn0g7apixzzdfm53kx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -73416,7 +72746,6 @@ self: {
];
description = "Convert between Dhall and JSON or YAML";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dhall-lex" = callPackage
@@ -73448,37 +72777,8 @@ self: {
}:
mkDerivation {
pname = "dhall-lsp-server";
- version = "1.0.8";
- sha256 = "1ig90w8iwyq5qwx5rd9zrd0mvrfksn6x1qh0hqxqvjdxrxk9lqnk";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring containers data-default dhall
- dhall-json directory filepath haskell-lsp hslogger lens
- lens-family-core megaparsec mtl network-uri prettyprinter
- rope-utf16-splay text transformers unordered-containers uri-encode
- ];
- executableHaskellDepends = [ base optparse-applicative ];
- testHaskellDepends = [
- base directory doctest filepath haskell-lsp-types lsp-test
- QuickCheck tasty tasty-hspec text
- ];
- description = "Language Server Protocol (LSP) server for Dhall";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "dhall-lsp-server_1_0_10" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
- , data-default, dhall, dhall-json, directory, doctest, filepath
- , haskell-lsp, haskell-lsp-types, hslogger, lens, lens-family-core
- , lsp-test, megaparsec, mtl, network-uri, optparse-applicative
- , prettyprinter, QuickCheck, rope-utf16-splay, tasty, tasty-hspec
- , text, transformers, unordered-containers, uri-encode
- }:
- mkDerivation {
- pname = "dhall-lsp-server";
- version = "1.0.10";
- sha256 = "0z6b3yq8fijxycabwrbqn2z94lb2ak2fmajlxgawyd1723cl2wsb";
+ version = "1.0.11";
+ sha256 = "0xp4mbk26p22xs5f2bz493yi9ijbiiz1jwmc462yk1bxxz5lbx5n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -73494,7 +72794,6 @@ self: {
];
description = "Language Server Protocol (LSP) server for Dhall";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dhall-nix" = callPackage
@@ -73503,10 +72802,8 @@ self: {
}:
mkDerivation {
pname = "dhall-nix";
- version = "1.1.17";
- sha256 = "1c696f0if218pbmir4rmkb6shcgk9acw5g1iwcb2mslshmncbyfd";
- revision = "1";
- editedCabalFile = "0vdni3cmx3p6a0p587avja4zg6278fmdfv6jh5h4wfx0b7z1sphg";
+ version = "1.1.18";
+ sha256 = "0d947iz98mkmz7chxcp2402kid711na7xwwx8xzh8jg5lh41sm7w";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -73518,6 +72815,8 @@ self: {
];
description = "Dhall to Nix compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dhall-nixpkgs" = callPackage
@@ -73528,8 +72827,8 @@ self: {
}:
mkDerivation {
pname = "dhall-nixpkgs";
- version = "1.0.1";
- sha256 = "1dw3bygs3da7yfcm5h376ppswv3dcny42yqjy7fabyzw72d4586z";
+ version = "1.0.2";
+ sha256 = "1r76zbqk2pc5pryrbdj425j6bb86x28pqfkav3kw9kr4703afhni";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -73539,6 +72838,8 @@ self: {
];
description = "Convert Dhall projects to Nix packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dhall-text" = callPackage
@@ -73598,40 +72899,8 @@ self: {
}:
mkDerivation {
pname = "dhall-yaml";
- version = "1.1.0";
- sha256 = "06lwzis9jjfis6rv4r9gd0iq1da5ymcd6jl8x3rbcimg87k9r4bj";
- revision = "2";
- editedCabalFile = "1vflfl8j0fjvf5a8mz90d71myii4s2k98186gidxv0dkll8dix9a";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson
- optparse-applicative text vector
- ];
- executableHaskellDepends = [
- aeson ansi-terminal base bytestring dhall dhall-json exceptions
- optparse-applicative prettyprinter prettyprinter-ansi-terminal text
- ];
- testHaskellDepends = [
- base bytestring dhall dhall-json tasty tasty-expected-failure
- tasty-hunit text
- ];
- description = "Convert between Dhall and YAML";
- license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "dhall-yaml_1_2_2" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall
- , dhall-json, exceptions, HsYAML, HsYAML-aeson
- , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
- , tasty, tasty-expected-failure, tasty-hunit, text, vector
- }:
- mkDerivation {
- pname = "dhall-yaml";
- version = "1.2.2";
- sha256 = "1mswyac77p0zpjdfr86x4ddwlnvqz0ibf98hr8q0zm1a9ibds982";
+ version = "1.2.3";
+ sha256 = "1n42brr1yifb4pyl26960rsm8b1wzw0hvv6mmq8m5ml5av61ymf3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -73648,8 +72917,6 @@ self: {
];
description = "Convert between Dhall and YAML";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dhcp-lease-parser" = callPackage
@@ -73799,8 +73066,6 @@ self: {
];
description = "DI logger wrapped for Polysemy";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dia-base" = callPackage
@@ -73851,6 +73116,8 @@ self: {
doHaddock = false;
description = "Embedded domain-specific language for declarative vector graphics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-boolean" = callPackage
@@ -73891,6 +73158,8 @@ self: {
];
description = "Braille diagrams with plain text";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-builder" = callPackage
@@ -73943,6 +73212,8 @@ self: {
];
description = "Cairo backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-canvas" = callPackage
@@ -73991,6 +73262,8 @@ self: {
];
description = "Collection of user contributions to diagrams EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-core" = callPackage
@@ -74010,6 +73283,8 @@ self: {
];
description = "Core libraries for diagrams EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-graphviz" = callPackage
@@ -74025,6 +73300,8 @@ self: {
];
description = "Graph layout and drawing with GraphViz and diagrams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-gtk" = callPackage
@@ -74040,6 +73317,8 @@ self: {
];
description = "Backend for rendering diagrams directly to GTK windows";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-haddock" = callPackage
@@ -74089,7 +73368,6 @@ self: {
description = "HsQML (Qt5) backend for Diagrams";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"diagrams-html5" = callPackage
@@ -74143,6 +73421,8 @@ self: {
benchmarkHaskellDepends = [ base criterion diagrams-core ];
description = "Embedded domain-specific language for declarative graphics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-pandoc" = callPackage
@@ -74208,6 +73488,8 @@ self: {
];
description = "PGF backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-postscript" = callPackage
@@ -74228,6 +73510,8 @@ self: {
];
description = "Postscript backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-qrcode" = callPackage
@@ -74266,6 +73550,8 @@ self: {
testHaskellDepends = [ base diagrams-core diagrams-lib ];
description = "Rasterific backend for diagrams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-reflex" = callPackage
@@ -74299,6 +73585,8 @@ self: {
];
description = "Library for drawing the Rubik's Cube";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-solve" = callPackage
@@ -74336,6 +73624,8 @@ self: {
];
description = "SVG backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"diagrams-tikz" = callPackage
@@ -74408,8 +73698,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A Dialogflow Fulfillment library for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dib" = callPackage
@@ -74448,8 +73736,6 @@ self: {
libraryHaskellDepends = [ base parsec random-fu transformers ];
description = "Simplistic D&D style dice-rolling system";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dice-entropy-conduit" = callPackage
@@ -74469,8 +73755,6 @@ self: {
];
description = "Cryptographically secure n-sided dice via rejection sampling";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dice2tex" = callPackage
@@ -75022,8 +74306,8 @@ self: {
}:
mkDerivation {
pname = "digit";
- version = "0.9";
- sha256 = "0xyghgg8kzjrvhrcjizqnbprcyq5a3ma3x0dfijrdvbyd3lzghvm";
+ version = "0.10";
+ sha256 = "1qvz2gj4f2fcq8m8s4h6q5r2y3z55dhk4zxxijxha3mqfiybh4ky";
libraryHaskellDepends = [
base lens parsers scientific semigroupoids semigroups
template-haskell
@@ -75085,8 +74369,6 @@ self: {
testHaskellDepends = [ base fgl hashable massiv QuickCheck ];
description = "Directed Graphs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dihaa" = callPackage
@@ -75600,6 +74882,25 @@ self: {
broken = true;
}) {};
+ "dirichlet" = callPackage
+ ({ mkDerivation, base, hspec, hspec-discover, log-domain
+ , math-functions, mwc-random, primitive, vector
+ }:
+ mkDerivation {
+ pname = "dirichlet";
+ version = "0.1.0.0";
+ sha256 = "173mw8706fjrqdjwrjfcb8g140hp4xdjbpvhvq71f8lj8527b9ia";
+ libraryHaskellDepends = [
+ base log-domain math-functions mwc-random primitive vector
+ ];
+ testHaskellDepends = [
+ base hspec hspec-discover log-domain mwc-random vector
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Multivariate dirichlet distribution";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dirstream" = callPackage
({ mkDerivation, base, directory, pipes, pipes-safe, system-fileio
, system-filepath, unix
@@ -75637,8 +74938,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A small library for working with directories";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"disassembler" = callPackage
@@ -75715,8 +75014,8 @@ self: {
}:
mkDerivation {
pname = "discord-haskell";
- version = "1.8.0";
- sha256 = "1zh4xf5a8ppfhcnkhai4mi0a7aj7m8qp8hcnyfi6s3nc86k7wj2w";
+ version = "1.8.1";
+ sha256 = "07rhg7r4v05q1y6rin4b5v49231r2w35jfwnrbg7b7s1skdld9g3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -75728,8 +75027,6 @@ self: {
executableHaskellDepends = [ base text unliftio ];
description = "Write bots for Discord in Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"discord-hs" = callPackage
@@ -75750,6 +75047,39 @@ self: {
broken = true;
}) {};
+ "discord-register" = callPackage
+ ({ mkDerivation, base, calamity, dhall, di, di-polysemy
+ , generic-lens, hspec, hspec-megaparsec, megaparsec, polysemy
+ , polysemy-plugin, text, text-show, unboxing-vector
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "discord-register";
+ version = "0.0.1";
+ sha256 = "1crwbdkyg6k4777lcc7yi5n47xpsnvl3s1652n896k1hck7ckrr8";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ testHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ description = "Discord verification bot";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"discord-rest" = callPackage
({ mkDerivation, aeson, base, bytestring, comonad, data-default
, discord-types, hashable, hslogger, http-client, mtl, req, stm
@@ -76665,8 +75995,6 @@ self: {
];
description = "Compositional, type-safe, polymorphic static values and closures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"distribution" = callPackage
@@ -77041,6 +76369,8 @@ self: {
];
description = "AVAYA DMCC API bindings and WebSockets server for AVAYA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dmenu" = callPackage
@@ -77239,6 +76569,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "Creates the time intervals for CLI changing messages on the screen";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dobutokO" = callPackage
@@ -77476,6 +76808,8 @@ self: {
];
description = "An API client for docker written in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"docker-build-cacher" = callPackage
@@ -77643,33 +76977,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "doctemplates_0_8" = 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";
- sha256 = "0zhnhdpbh0cyh6nr655yfik135gssa1qhfhzsvaph2n1qwq1l6nn";
- 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;
- }) {};
-
"doctemplates" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
, doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific
@@ -77678,8 +76985,8 @@ self: {
}:
mkDerivation {
pname = "doctemplates";
- version = "0.8.2";
- sha256 = "14xymm4lp0nfbm2y8jcyaisb52mrwjz40dz5n5c8m48rkqqb4qzl";
+ version = "0.8.3";
+ sha256 = "0pzzcy2f1ysnqzkv14h7x9dp9ywf5rn5k8cvwwwvlg6sjizgvfpd";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base containers doclayout filepath HsYAML mtl parsec safe
@@ -77874,6 +77181,8 @@ self: {
];
description = "Low-level bindings to the DocuSign API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"docusign-base-minimal" = callPackage
@@ -77890,6 +77199,8 @@ self: {
];
description = "Low-level bindings to the DocuSign API (only what is necessary for docusign-client)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"docusign-client" = callPackage
@@ -77909,6 +77220,8 @@ self: {
];
description = "Client bindings for the DocuSign API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"docusign-example" = callPackage
@@ -78044,8 +77357,6 @@ self: {
benchmarkHaskellDepends = [ base containers criterion deepseq ];
description = "The Lengauer-Tarjan graph dominators algorithm";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dom-parser" = callPackage
@@ -78089,6 +77400,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "domain" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, domain-core, foldl
+ , hashable, parser-combinators, QuickCheck, quickcheck-instances
+ , rerebase, tasty, tasty-hunit, tasty-quickcheck, template-haskell
+ , template-haskell-compat-v0208, text, th-lego, th-orphans
+ , yaml-unscrambler
+ }:
+ mkDerivation {
+ pname = "domain";
+ version = "0.1";
+ sha256 = "1lr97k14wc35myckknsv3vyximqfv5vq04f5kpd8167lk3vjahm2";
+ libraryHaskellDepends = [
+ attoparsec base bytestring domain-core foldl hashable
+ parser-combinators template-haskell template-haskell-compat-v0208
+ text th-lego yaml-unscrambler
+ ];
+ testHaskellDepends = [
+ base domain-core QuickCheck quickcheck-instances rerebase tasty
+ tasty-hunit tasty-quickcheck template-haskell text th-orphans
+ ];
+ description = "Codegen helping you define domain models";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"domain-auth" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, attoparsec, base
, bytestring, containers, cryptonite, dns, doctest, iproute, memory
@@ -78107,6 +77444,44 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "domain-core" = callPackage
+ ({ mkDerivation, base, template-haskell
+ , template-haskell-compat-v0208, text, th-lego, th-lift-instances
+ }:
+ mkDerivation {
+ pname = "domain-core";
+ version = "0.1";
+ sha256 = "1qxscw4rcbnak9mp21455gzjdnjj6cqisdhq63gdibhrazfsjvd3";
+ libraryHaskellDepends = [
+ base template-haskell template-haskell-compat-v0208 text th-lego
+ th-lift-instances
+ ];
+ description = "Low-level API of \"domain\"";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "domain-optics" = callPackage
+ ({ mkDerivation, base, domain, domain-core, optics, optics-core
+ , rerebase, template-haskell, template-haskell-compat-v0208, text
+ , th-lego, unordered-containers
+ }:
+ mkDerivation {
+ pname = "domain-optics";
+ version = "0.1";
+ sha256 = "0nivzn3nw30n1wb0i2j9qzxfmqcyknc187z3rkfyz5a5y7iq7x4m";
+ libraryHaskellDepends = [
+ base domain-core optics-core template-haskell
+ template-haskell-compat-v0208 text th-lego unordered-containers
+ ];
+ testHaskellDepends = [ domain optics rerebase ];
+ description = "Integration of domain with optics";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"dominion" = callPackage
({ mkDerivation, base, containers, hspec, lens, mtl, random }:
mkDerivation {
@@ -78907,6 +78282,36 @@ self: {
broken = true;
}) {};
+ "dropbox" = callPackage
+ ({ mkDerivation, aeson, aeson-qq, base, hspec, hspec-core
+ , http-api-data, http-client-tls, servant, servant-auth
+ , servant-auth-client, servant-client, servant-client-core, text
+ }:
+ mkDerivation {
+ pname = "dropbox";
+ version = "0.0.4";
+ sha256 = "1syfzlgjph7nn2231sn0cm3q0f32inc5r9zc95f8kl43qa003zrz";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base http-api-data http-client-tls servant servant-auth
+ servant-auth-client servant-client servant-client-core text
+ ];
+ executableHaskellDepends = [
+ aeson base http-api-data http-client-tls servant servant-auth
+ servant-auth-client servant-client servant-client-core text
+ ];
+ testHaskellDepends = [
+ aeson aeson-qq base hspec hspec-core http-api-data http-client-tls
+ servant servant-auth servant-auth-client servant-client
+ servant-client-core text
+ ];
+ description = "Dropbox API client";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"dropbox-sdk" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
, certificate, conduit, HTTP, http-conduit, http-types, json
@@ -78998,6 +78403,8 @@ self: {
];
description = "Helper functions for setting up Double Submit Cookie defense for forms";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dsh-sql" = callPackage
@@ -79122,6 +78529,28 @@ self: {
broken = true;
}) {};
+ "dsv" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, cassava, containers
+ , doctest, foldl, hedgehog, pipes, pipes-bytestring, pipes-safe
+ , safe-exceptions, template-haskell, text, validation, vector
+ }:
+ mkDerivation {
+ pname = "dsv";
+ version = "1.0.0.0";
+ sha256 = "0fjfpa8qfaiy7wxmq9lsacxywrsqahl8s8wamxfiai7mzq2201gn";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ attoparsec base bytestring cassava containers foldl pipes
+ pipes-bytestring pipes-safe template-haskell text validation vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers doctest foldl hedgehog safe-exceptions
+ text vector
+ ];
+ description = "DSV (delimiter-separated values)";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"dtab" = callPackage
({ mkDerivation, alex, array, base, binary, bytestring, containers
, data-binary-ieee754, happy, pretty, transformers
@@ -79253,8 +78682,6 @@ self: {
];
description = "Network multiplayer 2D shooting game";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dual-tree" = callPackage
@@ -79273,6 +78700,8 @@ self: {
];
description = "Rose trees with cached and accumulating monoidal annotations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"dualizer" = callPackage
@@ -79481,8 +78910,6 @@ self: {
];
description = "Testing library for Dunai";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"duplo" = callPackage
@@ -79720,8 +79147,6 @@ self: {
testHaskellDepends = [ base ];
description = "A minimal testing library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dx9base" = callPackage
@@ -79848,8 +79273,6 @@ self: {
];
description = "Draw and update graphs in real time with OpenGL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"dynamic-graphs" = callPackage
@@ -80172,6 +79595,8 @@ self: {
testHaskellDepends = [ base hspec QuickCheck ];
description = "Template Haskell library for writing monadic expressions more easily";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"eager-sockets" = callPackage
@@ -80242,8 +79667,6 @@ self: {
libraryHaskellDepends = [ base data-default ];
description = "Robert Penner's easing equations";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"easy-api" = callPackage
@@ -80263,6 +79686,18 @@ self: {
broken = true;
}) {};
+ "easy-args" = callPackage
+ ({ mkDerivation, base, hspec }:
+ mkDerivation {
+ pname = "easy-args";
+ version = "0.1.0.1";
+ sha256 = "07gafpn0nmkbk8hwrqgv3kyrdxhqh8ljrky6hzq2q9yylilvfr3n";
+ libraryHaskellDepends = [ base hspec ];
+ testHaskellDepends = [ base hspec ];
+ description = "Parses command line arguments";
+ license = stdenv.lib.licenses.lgpl3;
+ }) {};
+
"easy-bitcoin" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, binary, byteable
, bytestring, cryptohash, deepseq, lens, postgresql-simple, safe
@@ -80353,6 +79788,8 @@ self: {
];
description = "Pure, type-indexed haskell vector, matrix, and tensor library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"easytensor-vulkan" = callPackage
@@ -80364,6 +79801,8 @@ self: {
libraryHaskellDepends = [ base dimensions easytensor vulkan-api ];
description = "Use easytensor with vulkan-api";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"easytest" = callPackage
@@ -80456,6 +79895,8 @@ self: {
];
description = "A handy tool for uploading unikernels to Amazon's EC2";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"eccrypto" = callPackage
@@ -80474,6 +79915,8 @@ self: {
benchmarkHaskellDepends = [ base bytestring criterion random ];
description = "Elliptic Curve Cryptography for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"eccrypto-ed25519-bindings" = callPackage
@@ -80625,29 +80068,36 @@ self: {
}) {};
"ede" = callPackage
- ({ mkDerivation, aeson, ansi-wl-pprint, base, bifunctors
- , bytestring, comonad, directory, double-conversion, filepath, free
- , lens, mtl, parsers, scientific, semigroups, tasty, tasty-golden
- , text, text-format, text-manipulate, trifecta
- , unordered-containers, vector
+ ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
+ , comonad, directory, filepath, free, lens, mtl
+ , optparse-applicative, parsers, prettyprinter
+ , prettyprinter-ansi-terminal, scientific, tasty, tasty-golden
+ , text, text-manipulate, trifecta, unordered-containers, vector
}:
mkDerivation {
pname = "ede";
- version = "0.2.9";
- sha256 = "0gvs9kyq4xyz11x5cqmr7vnh4d1vany36rfpmm4dg23w3yj36fab";
+ version = "0.3.2.0";
+ sha256 = "1y78l8b6wnl621nlfm3jwf9qskfnyd4ian1sxjsmk2jw22z1yp4d";
+ isLibrary = true;
+ isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson ansi-wl-pprint base bifunctors bytestring comonad directory
- double-conversion filepath free lens mtl parsers scientific
- semigroups text text-format text-manipulate trifecta
- unordered-containers vector
+ aeson base bytestring comonad directory filepath free lens mtl
+ parsers prettyprinter prettyprinter-ansi-terminal scientific text
+ text-manipulate trifecta unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson attoparsec base bytestring optparse-applicative prettyprinter
+ prettyprinter-ansi-terminal text
];
testHaskellDepends = [
- aeson base bifunctors bytestring directory tasty tasty-golden text
+ aeson base bifunctors bytestring directory filepath tasty
+ tasty-golden text
];
description = "Templating language with similar syntax and features to Liquid or Jinja2";
- license = "unknown";
+ license = stdenv.lib.licenses.mpl20;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"edenmodules" = callPackage
@@ -80767,6 +80217,8 @@ self: {
libraryHaskellDepends = [ base bytestring cereal hedis ];
description = "Statically typechecked client for Redis";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"edit" = callPackage
@@ -81053,17 +80505,21 @@ self: {
}) {};
"effet" = callPackage
- ({ mkDerivation, base, containers, monad-control, template-haskell
- , transformers, transformers-base
+ ({ mkDerivation, base, containers, hspec, monad-control
+ , template-haskell, transformers, transformers-base
}:
mkDerivation {
pname = "effet";
- version = "0.3.0.1";
- sha256 = "18cmgap4a3qnglmysh2l8pmag0vx8nqrrzx52zn9zrb54l1ldgm2";
+ version = "0.3.0.2";
+ sha256 = "1yy8hpq74bp4ffz7b5h7j9ja6akizl7d3b9n7n42c0iwlzr1hi4s";
libraryHaskellDepends = [
base containers monad-control template-haskell transformers
transformers-base
];
+ testHaskellDepends = [
+ base containers hspec monad-control template-haskell transformers
+ transformers-base
+ ];
description = "An Effect System based on Type Classes";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -81082,43 +80538,6 @@ self: {
}) {};
"egison" = callPackage
- ({ mkDerivation, array, base, containers, criterion, deepseq
- , directory, filepath, ghc, ghc-paths, Glob, hashable, haskeline
- , HUnit, megaparsec, mini-egison, mtl, optparse-applicative, parsec
- , parser-combinators, prettyprinter, process, random, regex-tdfa
- , split, test-framework, test-framework-hunit, text, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "egison";
- version = "4.0.3";
- sha256 = "0wav3cbp8yxkx9ajhcfqws9y1xhs36gw01spwi7x7s4l6x7fkqlm";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- array base containers directory ghc ghc-paths hashable haskeline
- megaparsec mini-egison mtl optparse-applicative parsec
- parser-combinators prettyprinter process random regex-tdfa split
- text transformers unordered-containers vector
- ];
- executableHaskellDepends = [
- array base containers directory filepath ghc ghc-paths haskeline
- mtl optparse-applicative parsec prettyprinter process regex-tdfa
- split text transformers unordered-containers vector
- ];
- testHaskellDepends = [
- base filepath Glob HUnit mtl test-framework test-framework-hunit
- transformers
- ];
- benchmarkHaskellDepends = [
- base criterion deepseq mtl transformers
- ];
- description = "Programming language with non-linear pattern-matching against non-free data";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "egison_4_1_1" = callPackage
({ mkDerivation, array, base, containers, criterion, directory
, exceptions, filepath, ghc, ghc-paths, Glob, hashable, haskeline
, HUnit, megaparsec, mtl, optparse-applicative, parsec
@@ -81128,8 +80547,8 @@ self: {
}:
mkDerivation {
pname = "egison";
- version = "4.1.1";
- sha256 = "16z2zp3gjm3gwp884ab86g0vhkxkkfxma0p9h1as5fyc6kvnsdbn";
+ version = "4.1.2";
+ sha256 = "1h388s7pagjipzgxyy1l3w3f03vl17bg9vl0afidjdmqm294mp8m";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -81145,13 +80564,14 @@ self: {
regex-tdfa split text transformers unordered-containers vector
];
testHaskellDepends = [
- base filepath Glob HUnit mtl test-framework test-framework-hunit
- transformers
+ base filepath Glob HUnit mtl process test-framework
+ test-framework-hunit transformers
];
- benchmarkHaskellDepends = [ base criterion ];
+ benchmarkHaskellDepends = [ base criterion transformers ];
description = "Programming language with non-linear pattern-matching against non-free data";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"egison-pattern-src" = callPackage
@@ -81161,29 +80581,8 @@ self: {
}:
mkDerivation {
pname = "egison-pattern-src";
- version = "0.2.1.0";
- sha256 = "0zfqrjmbzh7s88dkqc5mabb2yhb3xz88y10n5npkz9f6cjas4cxf";
- libraryHaskellDepends = [
- base containers free megaparsec mtl parser-combinators
- prettyprinter recursion-schemes text
- ];
- testHaskellDepends = [
- base megaparsec mtl tasty tasty-hunit text
- ];
- testToolDepends = [ tasty-discover ];
- description = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "egison-pattern-src_0_2_1_1" = callPackage
- ({ mkDerivation, base, containers, free, megaparsec, mtl
- , parser-combinators, prettyprinter, recursion-schemes, tasty
- , tasty-discover, tasty-hunit, text
- }:
- mkDerivation {
- pname = "egison-pattern-src";
- version = "0.2.1.1";
- sha256 = "0zpaxkskpdhq5nm1h6fh1klww4cslz96a3w4fhlaz0v0wdbkbrfs";
+ version = "0.2.1.2";
+ sha256 = "14g13m9c4353j8hir5inqhfzwapkxdkbvkzfbrrgca6hyj7mn1vf";
libraryHaskellDepends = [
base containers free megaparsec mtl parser-combinators
prettyprinter recursion-schemes text
@@ -81195,6 +80594,7 @@ self: {
description = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"egison-pattern-src-haskell-mode" = callPackage
@@ -81203,8 +80603,8 @@ self: {
}:
mkDerivation {
pname = "egison-pattern-src-haskell-mode";
- version = "0.2.1.1";
- sha256 = "0k21fi28imqnn2rp5182mjxnrahssbdxay3pzhzj5yyfjp8qymwp";
+ version = "0.2.1.2";
+ sha256 = "1v76k77p8d86sp8lpd9h7gqdd9srbbiq8sd3bvvdvn7sj44gzw9m";
libraryHaskellDepends = [
base egison-pattern-src haskell-src-exts mtl text
];
@@ -81214,6 +80614,8 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Parser and pretty printer for Egison pattern expressions in Haskell source code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"egison-pattern-src-th-mode" = callPackage
@@ -81223,8 +80625,8 @@ self: {
}:
mkDerivation {
pname = "egison-pattern-src-th-mode";
- version = "0.2.1.1";
- sha256 = "110rykbxkpv9vrqvwdxm0fa73djy2g5swcxzpx61zh6cl4wk949g";
+ version = "0.2.1.2";
+ sha256 = "0zm3ds6vcxhahcwwryhk8f65141f0bnzj6mxy681npzwzgvljiyd";
libraryHaskellDepends = [
base egison-pattern-src haskell-src-exts haskell-src-meta mtl
pretty template-haskell text
@@ -81236,6 +80638,8 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Parser and pretty printer for Egison pattern expressions to use with TH";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"egison-quote" = callPackage
@@ -81409,6 +80813,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Functions involving lists of Either";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"either-result" = callPackage
@@ -81544,6 +80950,8 @@ self: {
];
description = "An ekg backend for Amazon Cloudwatch";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ekg-core" = callPackage
@@ -81855,26 +81263,6 @@ self: {
}:
mkDerivation {
pname = "eliminators";
- version = "0.6";
- sha256 = "1mxjp2ygf72k3yaiqpfi4lrmhwhx69zkm5kznrb6wainw5r6h0if";
- revision = "1";
- editedCabalFile = "03gq3c04arywpp60n5cb6prvwn0yk7ccc5gfpbxl9vdjp5dbikkd";
- libraryHaskellDepends = [
- base extra singleton-nats singletons template-haskell
- th-abstraction th-desugar
- ];
- testHaskellDepends = [ base hspec singleton-nats singletons ];
- testToolDepends = [ hspec-discover ];
- description = "Dependently typed elimination functions using singletons";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "eliminators_0_7" = callPackage
- ({ mkDerivation, base, extra, hspec, hspec-discover, singleton-nats
- , singletons, template-haskell, th-abstraction, th-desugar
- }:
- mkDerivation {
- pname = "eliminators";
version = "0.7";
sha256 = "1h3h0f7s0gjbza7lij8y2pg5hl6zrf8cqslh5f0hpwnfxh3yls6v";
revision = "1";
@@ -81887,7 +81275,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Dependently typed elimination functions using singletons";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"elision" = callPackage
@@ -81929,6 +81316,8 @@ self: {
];
description = "Elliptic curve library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"elm-bridge" = callPackage
@@ -82330,8 +81719,8 @@ self: {
}:
mkDerivation {
pname = "elm2nix";
- version = "0.2";
- sha256 = "1bv2sid1adrg3327h9611kspfxkhgwcawjq59iapp776n74x2iq4";
+ version = "0.2.1";
+ sha256 = "1lgqbmd5419apak7hy22p0fpjzcki74snpgqsq2qmhpvyi5qbf3r";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -82419,6 +81808,8 @@ self: {
testHaskellDepends = [ base directory filepath tasty tasty-hunit ];
description = "A tiny language for understanding the lambda-calculus";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"elynx" = callPackage
@@ -82427,8 +81818,8 @@ self: {
}:
mkDerivation {
pname = "elynx";
- version = "0.4.1";
- sha256 = "0pz4s53mn1511hda16qi7l28whq05fcyrf1s8ywq42a3mbayw964";
+ version = "0.5.0";
+ sha256 = "0paxrh39ags55jg7pxb29dwb6cn7sakxdpkdf1fffrqsr3inpr9n";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -82436,8 +81827,6 @@ self: {
];
description = "Validate and (optionally) redo ELynx analyses";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"elynx-markov" = callPackage
@@ -82448,8 +81837,8 @@ self: {
}:
mkDerivation {
pname = "elynx-markov";
- version = "0.4.1";
- sha256 = "1qzyfxzg6qq7ajm7b3v62qqychhzh4ms2677acvzjgvc51syk1fq";
+ version = "0.5.0";
+ sha256 = "0l66zaf4mj117pz16apdr4fi47xv9slay459lzjpdawmm6ppwlgc";
libraryHaskellDepends = [
async attoparsec base bytestring containers elynx-seq hmatrix
integration math-functions mwc-random parallel primitive statistics
@@ -82460,22 +81849,18 @@ self: {
];
description = "Simulate molecular sequences along trees";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"elynx-nexus" = callPackage
({ mkDerivation, attoparsec, base, bytestring, hspec }:
mkDerivation {
pname = "elynx-nexus";
- version = "0.4.1";
- sha256 = "0p2kww6fqmfv3bmd5z0c3n8s0rhfbm480jqh16s794xndbbxd15i";
+ version = "0.5.0";
+ sha256 = "03rhhbyhd1z95kl0ds204z4zywgy9anvhashpw2p311dq1g4axrs";
libraryHaskellDepends = [ attoparsec base bytestring ];
testHaskellDepends = [ base hspec ];
description = "Import and export Nexus files";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"elynx-seq" = callPackage
@@ -82485,8 +81870,8 @@ self: {
}:
mkDerivation {
pname = "elynx-seq";
- version = "0.4.1";
- sha256 = "1mdl7fzzax4dn68paxivms96jfxriladbkwkbq6hff1z5xdwvj2h";
+ version = "0.5.0";
+ sha256 = "0bqlv3i7qhnkal8yiwvkp7175jdb9bcg7szkx0b352zfr4qhhmpa";
libraryHaskellDepends = [
aeson attoparsec base bytestring containers matrices mwc-random
parallel primitive vector vector-th-unbox word8
@@ -82496,8 +81881,6 @@ self: {
];
description = "Handle molecular sequences";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"elynx-tools" = callPackage
@@ -82509,8 +81892,8 @@ self: {
}:
mkDerivation {
pname = "elynx-tools";
- version = "0.4.1";
- sha256 = "0dxhwmpaf9r8kr67sa2kn1i7w06skcl1hvxkcranw0xvijwm8g5r";
+ version = "0.5.0";
+ sha256 = "0lhkgi6wa90wniszkhmnnzmxa3cx1bvzbsy7cwrslmg8iqcxyin0";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring bytestring
cryptohash-sha256 deepseq directory fast-logger hmatrix
@@ -82520,20 +81903,18 @@ self: {
];
description = "Tools for ELynx";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"elynx-tree" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, comonad
, containers, criterion, deepseq, double-conversion, elynx-nexus
- , elynx-tools, hspec, math-functions, mwc-random, parallel
- , primitive, QuickCheck, statistics
+ , elynx-tools, hspec, math-functions, microlens, mwc-random
+ , parallel, primitive, QuickCheck, statistics
}:
mkDerivation {
pname = "elynx-tree";
- version = "0.4.1";
- sha256 = "1yd2gk0y55vjaw6b2m6cm25qidmznmvhrb3ypr4rb3bg4yck5ydh";
+ version = "0.5.0";
+ sha256 = "0b3dmz6hlbawwpnn84qx0w1g5jymgs7b05jxvx83q365vw8pw6aj";
libraryHaskellDepends = [
aeson attoparsec base bytestring comonad containers deepseq
double-conversion elynx-nexus math-functions mwc-random parallel
@@ -82543,12 +81924,11 @@ self: {
attoparsec base bytestring containers elynx-tools hspec QuickCheck
];
benchmarkHaskellDepends = [
- base bytestring criterion deepseq elynx-tools mwc-random parallel
+ base bytestring criterion deepseq elynx-tools microlens mwc-random
+ parallel
];
description = "Handle phylogenetic trees";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"emacs-keys" = callPackage
@@ -82588,6 +81968,8 @@ self: {
];
description = "Utilities to write Emacs dynamic modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"email" = callPackage
@@ -82718,6 +82100,8 @@ self: {
testHaskellDepends = [ base doctest Glob ];
description = "Wrapper around email-validate library adding instances for common type classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"emailparse" = callPackage
@@ -83505,8 +82889,6 @@ self: {
];
description = "TH-generated EnumSet/EnumMap wrappers around IntSet/IntMap";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"enumset" = callPackage
@@ -83703,6 +83085,8 @@ self: {
];
description = "A library for simulating epidemics as birth-death processes";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"epic" = callPackage
@@ -83887,6 +83271,8 @@ self: {
];
description = "Proof assistant for Haskell using DataKinds & PolyKinds";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"equeue" = callPackage
@@ -83908,6 +83294,8 @@ self: {
];
description = "Application level triggered, and edge triggered event multiqueues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"equivalence" = callPackage
@@ -84096,6 +83484,8 @@ self: {
testHaskellDepends = [ base ];
description = "Error code functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"error-context" = callPackage
@@ -84193,13 +83583,24 @@ self: {
({ mkDerivation, base, containers, text }:
mkDerivation {
pname = "error-or";
- version = "0.1.0.0";
- sha256 = "1bpazb078xfbylzpzh9dq3p3fgddpizv118n31papi0fr7xddrli";
+ version = "0.1.1.0";
+ sha256 = "0xh47kyzdyycvi6dxlw736zsa4pxplh9ariw7p2mcr64rx2r77cl";
libraryHaskellDepends = [ base containers text ];
description = "Composable, hierarchical errors";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "error-or-utils" = callPackage
+ ({ mkDerivation, base, containers, error-or, text }:
+ mkDerivation {
+ pname = "error-or-utils";
+ version = "0.1.1";
+ sha256 = "14n5h69wknns3b6ij8avdijwlpwykalkpvx2q57cg6zv0ywnvmwz";
+ libraryHaskellDepends = [ base containers error-or text ];
+ description = "Utilities using ErrorOr datatype";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"error-util" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
@@ -84523,8 +83924,8 @@ self: {
}:
mkDerivation {
pname = "esqueleto";
- version = "3.3.4.0";
- sha256 = "1w46sfh4rrj7lvsdyzwphcv8n00v6kr3padkk8v5lr0r40w5n60r";
+ version = "3.4.0.1";
+ sha256 = "1vq8yfrixgqps8g6wvfgr9n42zmwj1jybiq3sbrgfj318n6dm5mc";
libraryHaskellDepends = [
aeson attoparsec base blaze-html bytestring conduit containers
monad-logger persistent resourcet tagged text time transformers
@@ -84555,28 +83956,6 @@ self: {
}) {};
"essence-of-live-coding" = callPackage
- ({ mkDerivation, base, foreign-store, QuickCheck, syb
- , test-framework, test-framework-quickcheck2, transformers
- , vector-sized
- }:
- mkDerivation {
- pname = "essence-of-live-coding";
- version = "0.1.0.3";
- sha256 = "1kycm3a2rbz8shcjz8j1yl2c5pvpkr9mp3g3pgmcnhdr7wq4smlk";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base foreign-store syb transformers vector-sized
- ];
- executableHaskellDepends = [ base transformers ];
- testHaskellDepends = [
- base QuickCheck syb test-framework test-framework-quickcheck2
- ];
- description = "General purpose live coding framework";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "essence-of-live-coding_0_2_4" = callPackage
({ mkDerivation, base, containers, foreign-store, mtl, QuickCheck
, syb, test-framework, test-framework-quickcheck2, time
, transformers, vector-sized
@@ -84597,7 +83976,6 @@ self: {
];
description = "General purpose live coding framework";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"essence-of-live-coding-gloss" = callPackage
@@ -84606,21 +83984,6 @@ self: {
}:
mkDerivation {
pname = "essence-of-live-coding-gloss";
- version = "0.1.0.3";
- sha256 = "0ggwh1d57isda9k5l4g7g92l77m1b9hj2vva3r0fvmnidsny41n0";
- libraryHaskellDepends = [
- base essence-of-live-coding foreign-store gloss syb transformers
- ];
- description = "General purpose live coding framework - Gloss backend";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "essence-of-live-coding-gloss_0_2_4" = callPackage
- ({ mkDerivation, base, essence-of-live-coding, foreign-store, gloss
- , syb, transformers
- }:
- mkDerivation {
- pname = "essence-of-live-coding-gloss";
version = "0.2.4";
sha256 = "11hnzax39g7yaqwaaxi3niipamd65mcrdi431fxrspkhgcm1nx2y";
libraryHaskellDepends = [
@@ -84628,7 +83991,6 @@ self: {
];
description = "General purpose live coding framework - Gloss backend";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"essence-of-live-coding-gloss-example" = callPackage
@@ -84647,8 +84009,6 @@ self: {
];
description = "General purpose live coding framework - Gloss example";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"essence-of-live-coding-pulse" = callPackage
@@ -84657,21 +84017,6 @@ self: {
}:
mkDerivation {
pname = "essence-of-live-coding-pulse";
- version = "0.1.0.3";
- sha256 = "044vjp637gaq2q2c8d83c9ixp6zg5x752ifw4nmnwigi1w53y1wq";
- libraryHaskellDepends = [
- base essence-of-live-coding foreign-store pulse-simple transformers
- ];
- description = "General purpose live coding framework - pulse backend";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "essence-of-live-coding-pulse_0_2_4" = callPackage
- ({ mkDerivation, base, essence-of-live-coding, foreign-store
- , pulse-simple, transformers
- }:
- mkDerivation {
- pname = "essence-of-live-coding-pulse";
version = "0.2.4";
sha256 = "0lhnq85bi22mwnw4fcg9hzr18mdifxlr833pwsc7ch401y2mf1kz";
libraryHaskellDepends = [
@@ -84679,7 +84024,6 @@ self: {
];
description = "General purpose live coding framework - pulse backend";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"essence-of-live-coding-pulse-example" = callPackage
@@ -84698,8 +84042,6 @@ self: {
];
description = "General purpose live coding framework - pulse backend example";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"essence-of-live-coding-quickcheck" = callPackage
@@ -84708,22 +84050,6 @@ self: {
}:
mkDerivation {
pname = "essence-of-live-coding-quickcheck";
- version = "0.1.0.3";
- sha256 = "1sp4s69jlc679yhix5smwx1n0gk8msrjmrsyca2lf59l71l3gadc";
- libraryHaskellDepends = [
- base boltzmann-samplers essence-of-live-coding QuickCheck syb
- transformers
- ];
- description = "General purpose live coding framework - QuickCheck integration";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "essence-of-live-coding-quickcheck_0_2_4" = callPackage
- ({ mkDerivation, base, boltzmann-samplers, essence-of-live-coding
- , QuickCheck, syb, transformers
- }:
- mkDerivation {
- pname = "essence-of-live-coding-quickcheck";
version = "0.2.4";
sha256 = "1ic2wvk4fc7jb6dkfy6fypmyw7hfbn79m51gn4z4c35ddhsfpngd";
libraryHaskellDepends = [
@@ -84732,7 +84058,6 @@ self: {
];
description = "General purpose live coding framework - QuickCheck integration";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"essence-of-live-coding-warp" = callPackage
@@ -85117,8 +84442,6 @@ self: {
];
description = "Ethereum Recursive Length Prefix Encoding";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ety" = callPackage
@@ -85175,8 +84498,6 @@ self: {
];
description = "Euler tour trees";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"euphoria" = callPackage
@@ -85263,8 +84584,8 @@ self: {
}:
mkDerivation {
pname = "eve";
- version = "0.1.8";
- sha256 = "1bhv9mh61f69xff5y8nagri1flc3m87sxx3b17kbxi5d2hhzsaqz";
+ version = "0.1.9.0";
+ sha256 = "06b2qybglsww0f7wpy2fnmr3l9r5a0aikybd23cjl6ribq86l8y9";
libraryHaskellDepends = [
base containers data-default free lens mtl
];
@@ -85273,8 +84594,6 @@ self: {
];
description = "An extensible event framework";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"eve-cli" = callPackage
@@ -85879,8 +85198,8 @@ self: {
}:
mkDerivation {
pname = "exact-real";
- version = "0.12.4";
- sha256 = "09i0pi141cmqc09mxgsmdk7n3a0rcmjc7w2j4a0ckf0i41vb9yni";
+ version = "0.12.4.1";
+ sha256 = "194qx4dq8c9w1nbr4vyalmvp0m1a0q1pxjckg59m7c3fsz9r88jg";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [ base integer-gmp random ];
testHaskellDepends = [
@@ -85890,8 +85209,6 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Exact real arithmetic";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exact-real-positional" = callPackage
@@ -86020,6 +85337,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "exception-via" = callPackage
+ ({ mkDerivation, base, template-haskell }:
+ mkDerivation {
+ pname = "exception-via";
+ version = "0.1.0.0";
+ sha256 = "046f787jw3v1c61q9c9canq0m266wv39rsk0613fyrhl96sss66m";
+ libraryHaskellDepends = [ base template-haskell ];
+ description = "DerivingVia for your hierarchical exceptions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"exceptional" = callPackage
({ mkDerivation, base, exceptions }:
mkDerivation {
@@ -86050,7 +85378,7 @@ self: {
broken = true;
}) {};
- "exceptions" = callPackage
+ "exceptions_0_10_4" = callPackage
({ mkDerivation, base, mtl, QuickCheck, stm, template-haskell
, test-framework, test-framework-hunit, test-framework-quickcheck2
, transformers
@@ -86070,6 +85398,7 @@ self: {
];
description = "Extensible optionally-pure exceptions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exchangerates" = callPackage
@@ -86316,8 +85645,6 @@ self: {
];
description = "Dependent pairs and their instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exinst-aeson" = callPackage
@@ -86336,8 +85663,6 @@ self: {
];
description = "Dependent pairs and their instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exinst-bytes" = callPackage
@@ -86358,8 +85683,6 @@ self: {
];
description = "Dependent pairs and their instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exinst-cereal" = callPackage
@@ -86379,8 +85702,6 @@ self: {
];
description = "Dependent pairs and their instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exinst-deepseq" = callPackage
@@ -86427,8 +85748,6 @@ self: {
];
description = "Dependent pairs and their instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"exist" = callPackage
@@ -86585,31 +85904,11 @@ self: {
libraryHaskellDepends = [ base ];
description = "floating point with extended exponent range";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"exp-pairs" = callPackage
- ({ mkDerivation, base, containers, deepseq, ghc-prim, matrix
- , prettyprinter, QuickCheck, random, smallcheck, tasty, tasty-hunit
- , tasty-quickcheck, tasty-smallcheck
- }:
- mkDerivation {
- pname = "exp-pairs";
- version = "0.2.0.0";
- sha256 = "0ry9k89xfy2493j7yypyiqcj0v7h5x9w8gl60dy28w4597yinisp";
- revision = "1";
- editedCabalFile = "1fkllbgsygzm1lw3g3a9l8fg8ap74bx0x7ja8yx3lbrjjsaqh8pa";
- libraryHaskellDepends = [
- base containers deepseq ghc-prim prettyprinter
- ];
- testHaskellDepends = [
- base matrix QuickCheck random smallcheck tasty tasty-hunit
- tasty-quickcheck tasty-smallcheck
- ];
- description = "Linear programming over exponent pairs";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "exp-pairs_0_2_1_0" = callPackage
({ mkDerivation, base, bimap, containers, deepseq, gauge, ghc-prim
, matrix, prettyprinter, QuickCheck, random, raw-strings-qq
, smallcheck, tasty, tasty-hunit, tasty-quickcheck
@@ -86631,7 +85930,6 @@ self: {
];
description = "Linear programming over exponent pairs";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"expand" = callPackage
@@ -87694,6 +86992,8 @@ self: {
testHaskellDepends = [ base hspec random text time ];
description = "Randomly generated fake data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fake-type" = callPackage
@@ -87711,36 +87011,6 @@ self: {
}) {inherit (pkgs.xorg) libXtst;};
"fakedata" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, directory
- , exceptions, filepath, gauge, hashable, hspec, hspec-discover
- , random, template-haskell, text, time, unordered-containers
- , vector, yaml
- }:
- mkDerivation {
- pname = "fakedata";
- version = "0.6.1";
- sha256 = "0qqc0hq7lg1s5fpflmnalcsy0043vqd8iiblwa6lvm45h7af8ii2";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bytestring containers directory exceptions filepath hashable
- random template-haskell text time unordered-containers vector yaml
- ];
- testHaskellDepends = [
- base bytestring containers directory exceptions filepath hashable
- hspec hspec-discover random template-haskell text time
- unordered-containers vector yaml
- ];
- testToolDepends = [ hspec-discover ];
- benchmarkHaskellDepends = [
- base bytestring containers deepseq directory exceptions filepath
- gauge hashable random template-haskell text time
- unordered-containers vector yaml
- ];
- description = "Library for producing fake data";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "fakedata_0_8_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
, directory, exceptions, fakedata-parser, filepath, gauge, hashable
, hspec, hspec-discover, random, string-random, template-haskell
@@ -87770,7 +87040,6 @@ self: {
];
description = "Library for producing fake data";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fakedata-parser" = callPackage
@@ -87847,8 +87116,8 @@ self: {
}:
mkDerivation {
pname = "faktory";
- version = "1.0.1.2";
- sha256 = "12pabsmy21il88qmdbg91152y9nzqci9y2cn9ljizlcndnsy7s5l";
+ version = "1.0.1.3";
+ sha256 = "1mxgkf54hxlj753dva21gxdqamq4mgfslcq5gqhp154gi0xmm79w";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -88279,8 +87548,6 @@ self: {
benchmarkHaskellDepends = [ base bytestring criterion ];
description = "A fast, but bare bones, bytestring parser combinators library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fastpbkdf2" = callPackage
@@ -88311,6 +87578,8 @@ self: {
pname = "fastsum";
version = "0.1.1.1";
sha256 = "0j9jd068xgk7nn2ilgdkv1pxngflqqgxz1pnhdssgiih04v8zw5l";
+ revision = "1";
+ editedCabalFile = "0mmdkpgxlc6fsl5pq8kgdh41h08m86s0y4wnan293h3c74q1xd6x";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -88318,6 +87587,8 @@ self: {
];
description = "A fast open-union type suitable for 100+ contained alternatives";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fathead-util" = callPackage
@@ -89556,10 +88827,8 @@ self: {
}:
mkDerivation {
pname = "ffmpeg-light";
- version = "0.12.2.2";
- sha256 = "0yn1qhj2kzicxpjmy09lb660psjavbrfib29q0m1b8zx0fvn5xzk";
- revision = "1";
- editedCabalFile = "1wwfbrpr5hz1a9lppn73j2gpal3l2jnn554k6w9n181fbk67xvjd";
+ version = "0.13.0";
+ sha256 = "1xvhpzd3kf2xn6s94lmpkxp9nv1jy20pr3x2qmqhc2gjxx9vcqg1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89571,8 +88840,6 @@ self: {
];
description = "Minimal bindings to the FFmpeg library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null;
libavformat = null; libswscale = null;};
@@ -89706,8 +88973,6 @@ self: {
libraryHaskellDepends = [ base-noprelude integer-gmp semirings ];
description = "fibonacci algebra";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fibon" = callPackage
@@ -89863,22 +89128,6 @@ self: {
}:
mkDerivation {
pname = "file-embed";
- version = "0.0.11.2";
- sha256 = "0bgysf6z13cmr5lsrhzrkv33sw9x1lkfnga3la2mcakh1aa3ijm4";
- libraryHaskellDepends = [
- base bytestring directory filepath template-haskell
- ];
- testHaskellDepends = [ base filepath ];
- description = "Use Template Haskell to embed file contents directly";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "file-embed_0_0_13_0" = callPackage
- ({ mkDerivation, base, bytestring, directory, filepath
- , template-haskell
- }:
- mkDerivation {
- pname = "file-embed";
version = "0.0.13.0";
sha256 = "1sp1qq1ph2gr5a8ismn7n9vijnfwjyh38iqn338wa8mxn2mnhc6i";
libraryHaskellDepends = [
@@ -89887,7 +89136,6 @@ self: {
testHaskellDepends = [ base filepath ];
description = "Use Template Haskell to embed file contents directly";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"file-embed-lzma" = callPackage
@@ -89925,6 +89173,8 @@ self: {
];
description = "Use Template Haskell to embed file contents directly";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"file-location" = callPackage
@@ -90020,6 +89270,8 @@ self: {
];
description = "A cache system associating values to files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"filediff" = callPackage
@@ -90604,8 +89856,6 @@ self: {
];
description = "Prisms and Isos between finitary types";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"finite-field" = callPackage
@@ -90921,6 +90171,8 @@ self: {
];
description = "Program to manage the imports of a haskell module";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fix-parser-simple" = callPackage
@@ -91438,8 +90690,6 @@ self: {
];
description = "Verify FLAC files ripped form CD using AccurateRip™";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"flags-applicative" = callPackage
@@ -91490,31 +90740,49 @@ self: {
}) {};
"flashblast" = callPackage
- ({ mkDerivation, attoparsec, base, composite-base, dhall
- , formatting, lucid, megaparsec, path, path-dhall-instance
- , path-utils, polysemy, polysemy-video, replace-megaparsec, rio
- , semialign, subtitleParser, these, turtle, unliftio-path, vinyl
+ ({ mkDerivation, aeson, attoparsec, base, co-log-polysemy
+ , co-log-polysemy-formatting, comonad, composite-base, dhall
+ , either, extra, first-class-families, formatting, generic-monoid
+ , ghc-clippy-plugin, http-conduit, lucid, megaparsec, optics
+ , optics-extra, path, path-dhall-instance, path-utils, polysemy
+ , polysemy-extra, polysemy-fs, polysemy-fskvstore, polysemy-http
+ , polysemy-methodology, polysemy-methodology-composite
+ , polysemy-plugin, polysemy-video, polysemy-vinyl, polysemy-zoo
+ , relude, replace-megaparsec, rio, semialign, subtitleParser
+ , temporary, text, these, turtle, unliftio-path, vinyl
}:
mkDerivation {
pname = "flashblast";
- version = "0.0.1.1";
- sha256 = "0syqfjg373sq3326nxqaq4zipb342df8av78cm63j78mnl7xjq0x";
+ version = "0.0.9.0";
+ sha256 = "14fbdn72x0kb267j5a4inii0y43s03r1mnsnvzmx4wd5kkp0k3d2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base composite-base dhall formatting lucid megaparsec
- path path-dhall-instance path-utils polysemy polysemy-video
- replace-megaparsec rio semialign subtitleParser these turtle
- unliftio-path vinyl
+ aeson attoparsec base co-log-polysemy co-log-polysemy-formatting
+ comonad composite-base dhall either extra first-class-families
+ formatting generic-monoid ghc-clippy-plugin http-conduit lucid
+ megaparsec optics optics-extra path path-dhall-instance path-utils
+ polysemy polysemy-extra polysemy-fs polysemy-fskvstore
+ polysemy-http polysemy-methodology polysemy-methodology-composite
+ polysemy-plugin polysemy-video polysemy-vinyl polysemy-zoo relude
+ replace-megaparsec rio semialign subtitleParser temporary text
+ these turtle unliftio-path vinyl
];
executableHaskellDepends = [
- attoparsec base composite-base dhall formatting lucid megaparsec
- path path-dhall-instance path-utils polysemy polysemy-video
- replace-megaparsec rio semialign subtitleParser these turtle
- unliftio-path vinyl
+ aeson attoparsec base co-log-polysemy co-log-polysemy-formatting
+ comonad composite-base dhall either extra first-class-families
+ formatting generic-monoid ghc-clippy-plugin http-conduit lucid
+ megaparsec optics optics-extra path path-dhall-instance path-utils
+ polysemy polysemy-extra polysemy-fs polysemy-fskvstore
+ polysemy-http polysemy-methodology polysemy-methodology-composite
+ polysemy-plugin polysemy-video polysemy-vinyl polysemy-zoo relude
+ replace-megaparsec rio semialign subtitleParser temporary text
+ these turtle unliftio-path vinyl
];
description = "Generate language learning flashcards from video";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"flat" = callPackage
@@ -91594,14 +90862,14 @@ self: {
, containers, criterion, directory, filepath, hedgehog, hspec
, hspec-core, hspec-expectations-pretty-diff, hspec-megaparsec
, http-client, http-types, HUnit, hw-hspec-hedgehog, megaparsec
- , mono-traversable, mtl, parser-combinators, process
+ , mono-traversable, mtl, parser-combinators, pretty-simple, process
, raw-strings-qq, scientific, template-haskell, text
, text-manipulate, th-pprint, utf8-string, vector
}:
mkDerivation {
pname = "flatbuffers";
- version = "0.2.0.0";
- sha256 = "02d270qkrlwn2x0aiasrf614jdirngswxcs30dawpc1zap56bf7r";
+ version = "0.3.0.0";
+ sha256 = "1mryx9xivy8bqv43dz3m92cq5ivk445g49cszk143arg4wqgw8kn";
libraryHaskellDepends = [
base binary bytestring containers directory filepath megaparsec
mono-traversable mtl parser-combinators scientific template-haskell
@@ -91611,9 +90879,9 @@ self: {
aeson aeson-pretty base binary bytestring containers directory
filepath hedgehog hspec hspec-core hspec-expectations-pretty-diff
hspec-megaparsec http-client http-types HUnit hw-hspec-hedgehog
- megaparsec mono-traversable mtl parser-combinators process
- raw-strings-qq scientific template-haskell text text-manipulate
- th-pprint utf8-string
+ megaparsec mono-traversable mtl parser-combinators pretty-simple
+ process raw-strings-qq scientific template-haskell text
+ text-manipulate th-pprint utf8-string
];
benchmarkHaskellDepends = [
aeson base binary bytestring containers criterion directory
@@ -91797,6 +91065,8 @@ self: {
libraryToolDepends = [ proto-lens-protoc ];
description = "Flink stateful functions SDK";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"flip-cmd" = callPackage
@@ -92013,8 +91283,6 @@ self: {
];
description = "Library and binary to generate sequence/flow diagrams from plain text source";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"flowdock" = callPackage
@@ -92214,6 +91482,8 @@ self: {
];
description = "FLTK bindings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) fltk14; inherit (pkgs) libGL;
inherit (pkgs) libGLU; inherit (pkgs) pkg-config;};
@@ -92550,6 +91820,8 @@ self: {
testHaskellDepends = [ ansi-terminal base fmt ];
description = "ANSI terminal colors formatters for fmt library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fn" = callPackage
@@ -92600,8 +91872,8 @@ self: {
}:
mkDerivation {
pname = "focus";
- version = "1.0.1.3";
- sha256 = "1g10fzy76k5bjn8ysym8ywvrqrvxvhdi4b99wabhzznhzmankddx";
+ version = "1.0.1.4";
+ sha256 = "1knaiwnxcl2hrx4b3k954rd5v995gxa48db1z9mp58s646ymlmfl";
libraryHaskellDepends = [ base transformers ];
testHaskellDepends = [
QuickCheck quickcheck-instances rerebase tasty tasty-hunit
@@ -92684,36 +91956,13 @@ self: {
"foldl" = callPackage
({ mkDerivation, base, bytestring, comonad, containers
, contravariant, criterion, doctest, hashable, mwc-random
- , primitive, profunctors, semigroupoids, semigroups, text
- , transformers, unordered-containers, vector, vector-builder
- }:
- mkDerivation {
- pname = "foldl";
- 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;
- }) {};
-
- "foldl_1_4_9" = callPackage
- ({ mkDerivation, base, bytestring, comonad, containers
- , contravariant, criterion, doctest, hashable, mwc-random
, primitive, profunctors, semigroupoids, text, transformers
, unordered-containers, vector
}:
mkDerivation {
pname = "foldl";
- version = "1.4.9";
- sha256 = "06cl9nyamzrmk894zm5na5hkbvnfyla1yvs2dk2ydms5m0v7z1na";
- revision = "1";
- editedCabalFile = "1fp5fym1620zcp570naa3wqhs4x3l9qgdxk77ddmijm9q3j0vqmm";
+ version = "1.4.10";
+ sha256 = "1fl1vahga6dv21nkgjd265nlhmgqzr8sa0fb5dfqzk34fb01vvvq";
libraryHaskellDepends = [
base bytestring comonad containers contravariant hashable
mwc-random primitive profunctors semigroupoids text transformers
@@ -92723,7 +91972,6 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Composable, streaming, and efficient left folds";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"foldl-exceptions" = callPackage
@@ -93099,6 +92347,8 @@ self: {
];
description = "Simple force-directed layout";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fordo" = callPackage
@@ -93320,6 +92570,25 @@ self: {
broken = true;
}) {};
+ "formatn" = callPackage
+ ({ mkDerivation, attoparsec, base, containers, doctest, foldl
+ , generic-lens, numhask, scientific, tdigest, text, transformers
+ }:
+ mkDerivation {
+ pname = "formatn";
+ version = "0.0.1";
+ sha256 = "0rw1xli4df72wxylf211jhm0v2y842rfn8nalrp04yzklvyrri84";
+ libraryHaskellDepends = [
+ attoparsec base containers foldl generic-lens numhask scientific
+ tdigest text transformers
+ ];
+ testHaskellDepends = [ base doctest numhask ];
+ description = "Number text formatting";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"formattable" = callPackage
({ mkDerivation, base, bytestring, data-default-class
, double-conversion, hspec, HUnit, lens, old-locale, QuickCheck
@@ -94088,25 +93357,6 @@ self: {
"free" = callPackage
({ mkDerivation, base, comonad, containers, distributive
, exceptions, mtl, profunctors, semigroupoids, template-haskell
- , transformers, transformers-base
- }:
- mkDerivation {
- pname = "free";
- version = "5.1.3";
- sha256 = "0b9f9jrfgkq13333px6p1faxpcypqvzi0m9dnbj2rm8s79pdcw1c";
- revision = "1";
- editedCabalFile = "0w0bxkdsspw1blhr01bb9n98wlmqpgjpdbbp2f50qmhapav2fk30";
- libraryHaskellDepends = [
- base comonad containers distributive exceptions mtl profunctors
- semigroupoids template-haskell transformers transformers-base
- ];
- description = "Monads for free";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "free_5_1_4" = callPackage
- ({ mkDerivation, base, comonad, containers, distributive
- , exceptions, mtl, profunctors, semigroupoids, template-haskell
, th-abstraction, transformers, transformers-base
}:
mkDerivation {
@@ -94120,7 +93370,6 @@ self: {
];
description = "Monads for free";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-algebras" = callPackage
@@ -94141,6 +93390,8 @@ self: {
];
description = "Free algebras";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"free-categories" = callPackage
@@ -94169,6 +93420,8 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "efficient data types for free categories and arrows";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"free-concurrent" = callPackage
@@ -94213,8 +93466,6 @@ 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
@@ -94885,8 +94136,8 @@ self: {
({ mkDerivation, base, bifunctors, lens, optparse-applicative }:
mkDerivation {
pname = "friendly";
- version = "0.1.0.1";
- sha256 = "0860zmvlccdnjycmjr4wmi8ighps9dig5zik8hpj2h3z208ph8qp";
+ version = "0.1.0.2";
+ sha256 = "18j9nw76rwsikf5wyv33mw04mn4xmdnk757c26zfbcx8rkcwjqzn";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -95366,8 +94617,6 @@ self: {
testHaskellDepends = [ base bytestring tasty tasty-hspec ];
description = "Transfer files with FTP and FTPS";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ftp-client-conduit" = callPackage
@@ -95384,8 +94633,6 @@ self: {
testHaskellDepends = [ base ];
description = "Transfer file with FTP and FTPS with Conduit";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ftp-conduit" = callPackage
@@ -95847,6 +95094,8 @@ self: {
];
description = "Tools for functor combinator-based program design";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"functor-combo" = callPackage
@@ -95874,6 +95123,8 @@ self: {
libraryHaskellDepends = [ base recursion-schemes ];
description = "Friendly helpers for your recursion schemes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"functor-infix" = callPackage
@@ -95911,6 +95162,8 @@ self: {
libraryHaskellDepends = [ base microlens singletons text vinyl ];
description = "General functor products for various Foldable instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"functor-utils" = callPackage
@@ -96122,26 +95375,6 @@ self: {
}:
mkDerivation {
pname = "fused-effects";
- version = "1.0.2.2";
- sha256 = "1n9nal5kz2gpi58jc7xspj100ibn582f8vgndc9ra84fbp380yy2";
- libraryHaskellDepends = [ base transformers ];
- testHaskellDepends = [
- base containers hedgehog hedgehog-fn inspection-testing tasty
- tasty-hedgehog tasty-hunit transformers
- ];
- testToolDepends = [ markdown-unlit ];
- benchmarkHaskellDepends = [ base gauge ];
- description = "A fast, flexible, fused effect system";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "fused-effects_1_1_0_0" = callPackage
- ({ mkDerivation, base, containers, gauge, hedgehog, hedgehog-fn
- , inspection-testing, markdown-unlit, tasty, tasty-hedgehog
- , tasty-hunit, transformers
- }:
- mkDerivation {
- pname = "fused-effects";
version = "1.1.0.0";
sha256 = "0ns1h03skgywfm3i5748q9hxvla5769p7hb72zw8yhdfpgwh9rlx";
libraryHaskellDepends = [ base transformers ];
@@ -96153,7 +95386,6 @@ self: {
benchmarkHaskellDepends = [ base gauge transformers ];
description = "A fast, flexible, fused effect system";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fused-effects-exceptions" = callPackage
@@ -96171,8 +95403,6 @@ self: {
testToolDepends = [ markdown-unlit ];
description = "Handle exceptions thrown in IO with fused-effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fused-effects-lens" = callPackage
@@ -96214,8 +95444,6 @@ self: {
libraryHaskellDepends = [ base fused-effects optics-core ];
description = "Bridge between the optics and fused-effects ecosystems";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fused-effects-random" = callPackage
@@ -96227,28 +95455,25 @@ self: {
libraryHaskellDepends = [ base fused-effects random transformers ];
description = "Random number generation for fused-effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fused-effects-readline" = callPackage
- ({ mkDerivation, base, directory, filepath, fused-effects
- , haskeline, prettyprinter, prettyprinter-ansi-terminal
- , terminal-size, transformers
+ ({ mkDerivation, base, directory, exceptions, filepath
+ , fused-effects, haskeline, prettyprinter
+ , prettyprinter-ansi-terminal, terminal-size, transformers
}:
mkDerivation {
pname = "fused-effects-readline";
version = "0.1.0.1";
sha256 = "1n1rdwrjww6hihryigk33bk9wcy69hi80c82kcbkclbmmaziz3j2";
libraryHaskellDepends = [
- base directory filepath fused-effects haskeline prettyprinter
- prettyprinter-ansi-terminal terminal-size transformers
+ base directory exceptions filepath fused-effects haskeline
+ prettyprinter prettyprinter-ansi-terminal terminal-size
+ transformers
];
testHaskellDepends = [ base ];
description = "A readline-like effect and carrier for fused-effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fused-effects-resumable" = callPackage
@@ -96262,6 +95487,8 @@ self: {
];
description = "Resumable exceptions for the fused-effects ecosystem";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"fused-effects-squeal" = callPackage
@@ -96330,8 +95557,6 @@ self: {
];
description = "GHC plugin to make stream fusion more predictable";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"fusion-plugin-types" = callPackage
@@ -96359,8 +95584,8 @@ self: {
}:
mkDerivation {
pname = "futhark";
- version = "0.18.1";
- sha256 = "12nbksr3qywqg88cj4yy5z9qnn24cdxjg8ym70bxym8a8m52928c";
+ version = "0.18.3";
+ sha256 = "15x528wskfl158909y0qapq72084kq4rjbpp2yd96gh2ycgawz7b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -96820,6 +96045,8 @@ self: {
];
description = "FFTs over finite fields";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"galois-field" = callPackage
@@ -96845,6 +96072,8 @@ self: {
];
description = "Galois field library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"game-of-life" = callPackage
@@ -96994,39 +96223,79 @@ self: {
"gargoyle" = callPackage
({ mkDerivation, base, directory, filelock, filepath, network
- , process
+ , process, unix
}:
mkDerivation {
pname = "gargoyle";
- version = "0.1";
- sha256 = "1yjvn1bfjnr8prs6inz5nhmywszwp8f38iz6v6i3lfazcck8qb43";
+ version = "0.1.1.0";
+ sha256 = "1rjkz0v8jmzxxh41fs777fyhdp7lizwngg33886awmg08hdk24rq";
libraryHaskellDepends = [
- base directory filelock filepath network process
+ base directory filelock filepath network process unix
];
description = "Automatically spin up and spin down local daemons";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gargoyle-postgresql" = callPackage
- ({ mkDerivation, base, bytestring, directory, gargoyle, process
- , stringsearch, text, unix
+ ({ mkDerivation, base, bytestring, directory, gargoyle
+ , posix-escape, process, stringsearch, text, unix
}:
mkDerivation {
pname = "gargoyle-postgresql";
- version = "0.1";
- sha256 = "13s2r5kxqkpq4g13dpqig7y2ya0n19xw5ng1sw093kp2kmfjs4h4";
+ version = "0.2.0.1";
+ sha256 = "1k12cfrz58hmdrjnrxyb3dixj8yfz41xpq0dqgvxzwlrd3d4nb9g";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bytestring directory gargoyle process stringsearch text unix
+ base bytestring directory gargoyle posix-escape process
+ stringsearch text unix
];
executableHaskellDepends = [
base bytestring gargoyle process text unix
];
description = "Manage PostgreSQL servers with gargoyle";
license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "gargoyle-postgresql-connect" = callPackage
+ ({ mkDerivation, base, bytestring, directory, gargoyle
+ , gargoyle-postgresql, gargoyle-postgresql-nix, postgresql-simple
+ , resource-pool
+ }:
+ mkDerivation {
+ pname = "gargoyle-postgresql-connect";
+ version = "0.1.0.0";
+ sha256 = "00gfs33hcmjla7h32hiazjpsdcszvig7fajhsx48yr8jq9srkm3d";
+ revision = "2";
+ editedCabalFile = "052glxfxsd9wvdyqxdj49vp1b1vvqr77zrdv85r3iqm7mvf16gmk";
+ libraryHaskellDepends = [
+ base bytestring directory gargoyle gargoyle-postgresql
+ gargoyle-postgresql-nix postgresql-simple resource-pool
+ ];
+ description = "Connect to gargoyle-managed postgresql instances";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "gargoyle-postgresql-nix" = callPackage
+ ({ mkDerivation, base, bytestring, gargoyle, gargoyle-postgresql
+ , which
+ }:
+ mkDerivation {
+ pname = "gargoyle-postgresql-nix";
+ version = "0.3.0.0";
+ sha256 = "1cjh9hqk4ba1bz29b4vj0h249vpfpdgn8zsznqcr7b58czd8cf4y";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring gargoyle gargoyle-postgresql which
+ ];
+ executableHaskellDepends = [
+ base gargoyle gargoyle-postgresql which
+ ];
+ description = "Manage PostgreSQL servers with gargoyle and nix";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -97068,12 +96337,12 @@ self: {
}) {};
"gasp" = callPackage
- ({ mkDerivation, base, binary, containers, mtl }:
+ ({ mkDerivation, base, binary, containers, mtl, QuickCheck }:
mkDerivation {
pname = "gasp";
- version = "1.2.0.0";
- sha256 = "0dq867kgil7xp7wqk8ylmx9ninxrqwc375g5l13iskvyz1li7474";
- libraryHaskellDepends = [ base binary containers mtl ];
+ version = "1.3.0.0";
+ sha256 = "0dhna3mj7mdyk1n0x3barpn5g4hkjl9fnbr403xym1dm8rl7r7hg";
+ libraryHaskellDepends = [ base binary containers mtl QuickCheck ];
description = "A framework of algebraic classes";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -97087,6 +96356,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "An applicative for parsing unordered things, heterogenous sorting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gauge" = callPackage
@@ -97821,16 +97092,14 @@ self: {
}:
mkDerivation {
pname = "generic-aeson";
- version = "0.2.0.10";
- sha256 = "0dz7kib81234xmp7lzwww4vfnbpkq1pdalzvxxxqcjj31l0i803c";
+ version = "0.2.0.11";
+ sha256 = "0pwmfkw0ydbb9422ic4cpnj8lv0l80mj7y1par0s3qk4vz6vvg97";
libraryHaskellDepends = [
aeson attoparsec base generic-deriving mtl tagged text
unordered-containers vector
];
description = "Derivation of Aeson instances using GHC generics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"generic-arbitrary" = callPackage
@@ -97887,27 +97156,6 @@ self: {
}) {};
"generic-data" = callPackage
- ({ mkDerivation, base, base-orphans, contravariant, criterion
- , deepseq, doctest, generic-lens, ghc-boot-th, Glob, one-liner
- , QuickCheck, show-combinators, tasty, tasty-hunit
- }:
- mkDerivation {
- pname = "generic-data";
- version = "0.8.3.0";
- sha256 = "090qwd898sacn0d4ryfhbx0jdcvhy84df5f10929zng7swh88hk7";
- libraryHaskellDepends = [
- base base-orphans contravariant ghc-boot-th show-combinators
- ];
- testHaskellDepends = [
- base doctest generic-lens Glob one-liner QuickCheck
- show-combinators tasty tasty-hunit
- ];
- benchmarkHaskellDepends = [ base criterion deepseq ];
- description = "Deriving instances with GHC.Generics and related utilities";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "generic-data_0_9_1_0" = callPackage
({ mkDerivation, ap-normalize, base, base-orphans, Cabal
, cabal-doctest, contravariant, criterion, deepseq, doctest
, generic-lens, ghc-boot-th, inspection-testing, one-liner
@@ -97916,8 +97164,8 @@ self: {
}:
mkDerivation {
pname = "generic-data";
- version = "0.9.1.0";
- sha256 = "0p58z70wp3vapxrwg7hkr5n6px7hws9398v9shc08c2aigq36kqa";
+ version = "0.9.2.0";
+ sha256 = "00zwfr21kmgcdjfjvacn4pvs5i8bl6xbbzw95746g67ap5nz624d";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
ap-normalize base base-orphans contravariant ghc-boot-th
@@ -97931,7 +97179,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq ];
description = "Deriving instances with GHC.Generics and related utilities";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"generic-data-surgery" = callPackage
@@ -97963,20 +97210,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "generic-deriving_1_10_5" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
- mkDerivation {
- pname = "generic-deriving";
- version = "1.10.5";
- sha256 = "03aghpvgrx38h2q8imv1xhvmjdlfdsxzfvkxdi4xyb5jjsdaz8pn";
- libraryHaskellDepends = [
- base containers ghc-prim template-haskell
- ];
- description = "Generic programming library for generalised deriving";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"generic-deriving" = callPackage
({ mkDerivation, base, containers, ghc-prim, hspec, hspec-discover
, template-haskell, th-abstraction
@@ -98040,13 +97273,13 @@ self: {
}) {};
"generic-functor" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation, ap-normalize, base, transformers }:
mkDerivation {
pname = "generic-functor";
- version = "0.1.0.0";
- sha256 = "02anlx3l0zn4hx9pckpdpp93yp1xyqcafpy6rk7s1zpv7nqk12z2";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base ];
+ version = "0.2.0.0";
+ sha256 = "0zrjsn78ip9kigqgw5cxzm9d7pqf1svdzrc3rm041889ca0szwjv";
+ libraryHaskellDepends = [ ap-normalize base ];
+ testHaskellDepends = [ base transformers ];
description = "Deriving generalized functors with GHC.Generics";
license = stdenv.lib.licenses.mit;
}) {};
@@ -98218,6 +97451,8 @@ self: {
testHaskellDepends = [ aeson base generic-override hspec text ];
description = "Provides orphan instances necessary for integrating generic-override and aeson";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"generic-pretty" = callPackage
@@ -98348,6 +97583,8 @@ self: {
testHaskellDepends = [ base hxt tasty tasty-hunit tasty-th ];
description = "Generic generation of HXT XmlPickler instances using GHC Generics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"generics-eot" = callPackage
@@ -98737,29 +97974,6 @@ self: {
}:
mkDerivation {
pname = "genvalidity-containers";
- version = "0.8.0.2";
- sha256 = "0nqxjs9nb080zlf2qys07dq1kfwwg1sg7jh0lnzl1zm9f228q701";
- libraryHaskellDepends = [
- base containers genvalidity QuickCheck validity validity-containers
- ];
- testHaskellDepends = [
- base containers genvalidity genvalidity-hspec genvalidity-property
- hspec validity
- ];
- benchmarkHaskellDepends = [
- base containers criterion genvalidity-criterion QuickCheck
- ];
- description = "GenValidity support for containers";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "genvalidity-containers_0_9_0_0" = callPackage
- ({ mkDerivation, base, containers, criterion, genvalidity
- , genvalidity-criterion, genvalidity-hspec, genvalidity-property
- , hspec, QuickCheck, validity, validity-containers
- }:
- mkDerivation {
- pname = "genvalidity-containers";
version = "0.9.0.0";
sha256 = "0g9drk60pf78j7qqh01a1yjqz93rv5irwhgi27qjda6siii5r3bk";
libraryHaskellDepends = [
@@ -98775,7 +97989,6 @@ self: {
];
description = "GenValidity support for containers";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"genvalidity-criterion" = callPackage
@@ -98958,8 +98171,6 @@ self: {
base criterion genvalidity-criterion mergeful
];
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"genvalidity-mergeless" = callPackage
@@ -99208,8 +98419,6 @@ self: {
];
description = "High precision conversion between GPS and UK Grid";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"geocalc" = callPackage
@@ -99389,8 +98598,8 @@ self: {
}:
mkDerivation {
pname = "geos";
- version = "0.3.0";
- sha256 = "1nv4x881ds6492lq1r14fd6isfb65b0cpxvgh6gpy5l0wyyap1gp";
+ version = "0.4.1";
+ sha256 = "1b6dp3vzp8jpgdzkqzfyjk8n26w8jb06adp77qzfbjmik0lw8b03";
libraryHaskellDepends = [
base bytestring mtl transformers vector
];
@@ -99650,8 +98859,8 @@ self: {
}:
mkDerivation {
pname = "ghc-check";
- version = "0.5.0.1";
- sha256 = "08z7jgp2gdf1ki69w34i87g5bhrcv2laqsjma5ki97l62bgsr808";
+ version = "0.5.0.3";
+ sha256 = "0crhlqs296zsz7bhy3zqaqhglxg45i6z7d1iqj9v7nr9crimxyjn";
libraryHaskellDepends = [
base containers directory filepath ghc ghc-paths process
safe-exceptions template-haskell transformers
@@ -99675,6 +98884,8 @@ self: {
];
description = "Override GHC error messages to the user's liking";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ghc-compact_0_1_0_0" = callPackage
@@ -99840,8 +99051,8 @@ self: {
}:
mkDerivation {
pname = "ghc-events";
- version = "0.13.0";
- sha256 = "1b4d1h71czskm2vgbhkrkdkj5h218b34zn7pjhyp314wfqkmn935";
+ version = "0.14.0";
+ sha256 = "1k7ky564x8s596axh0x006y4avr4dcb1h6nsvh8pbzj1ffi68sk1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -99857,20 +99068,20 @@ self: {
({ mkDerivation, base, blaze-svg, bytestring, containers
, diagrams-lib, diagrams-svg, filepath, ghc-events, hashable, lens
, mtl, optparse-applicative, parsec, regex-base, regex-pcre-builtin
- , SVGFonts, template-haskell, th-lift, transformers
- , unordered-containers
+ , SVGFonts, template-haskell, text, th-lift, th-lift-instances
+ , transformers, unordered-containers
}:
mkDerivation {
pname = "ghc-events-analyze";
- version = "0.2.7";
- sha256 = "01395ncya596fw6il2ddlziwcygvahswx0q9fjy7j7v7jqgzva3x";
+ version = "0.2.8";
+ sha256 = "1aam80l76dy76b8wbkjnbmxkmbgvczs591yjnbb9rm5bv9ggcb29";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base blaze-svg bytestring containers diagrams-lib diagrams-svg
filepath ghc-events hashable lens mtl optparse-applicative parsec
- regex-base regex-pcre-builtin SVGFonts template-haskell th-lift
- transformers unordered-containers
+ regex-base regex-pcre-builtin SVGFonts template-haskell text
+ th-lift th-lift-instances transformers unordered-containers
];
description = "Analyze and visualize event logs";
license = stdenv.lib.licenses.bsd3;
@@ -99910,31 +99121,8 @@ self: {
}:
mkDerivation {
pname = "ghc-exactprint";
- version = "0.6.2";
- sha256 = "1c36f7vjk3gapp761c7w1ncg9hyhx2kxwk51s0d9fvapi1bkxw9j";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers directory filepath free ghc ghc-boot
- ghc-paths mtl syb
- ];
- testHaskellDepends = [
- base bytestring containers Diff directory filemanip filepath ghc
- ghc-boot ghc-paths HUnit mtl silently syb
- ];
- description = "ExactPrint for GHC";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ghc-exactprint_0_6_3_2" = callPackage
- ({ mkDerivation, base, bytestring, containers, Diff, directory
- , filemanip, filepath, free, ghc, ghc-boot, ghc-paths, HUnit, mtl
- , silently, syb
- }:
- mkDerivation {
- pname = "ghc-exactprint";
- version = "0.6.3.2";
- sha256 = "1bzf8mafz20pn7cq2483b9w3hjrwfbb0ahbcb3y7xy5yy52qvmln";
+ version = "0.6.3.3";
+ sha256 = "1psrr6iaa7k5f3zz7j82crg052n3x1h2dljyb16qzbv98bqny6nb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -99947,7 +99135,6 @@ self: {
];
description = "ExactPrint for GHC";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-gc-tune" = callPackage
@@ -100078,6 +99265,8 @@ self: {
testHaskellDepends = [ base inspection-testing ];
description = "A magic typeclass that just does it";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ghc-lib" = callPackage
@@ -100120,17 +99309,19 @@ self: {
"ghc-lib-parser-ex" = callPackage
({ mkDerivation, base, bytestring, containers, directory, extra
- , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate
+ , filepath, ghc, ghc-boot, ghc-boot-th, tasty, tasty-hunit
+ , uniplate
}:
mkDerivation {
pname = "ghc-lib-parser-ex";
version = "8.10.0.16";
sha256 = "1kqff62ml38hxwfnfq7ni0z65b3d3l7xqa5c5lxf3kzm9h7bdwb8";
libraryHaskellDepends = [
- base bytestring containers ghc-lib-parser uniplate
+ base bytestring containers ghc ghc-boot ghc-boot-th uniplate
];
testHaskellDepends = [
- base directory extra filepath ghc-lib-parser tasty tasty-hunit
+ base directory extra filepath ghc ghc-boot ghc-boot-th tasty
+ tasty-hunit
];
description = "Algorithms on GHC parse trees";
license = stdenv.lib.licenses.bsd3;
@@ -100698,8 +99889,8 @@ self: {
}:
mkDerivation {
pname = "ghc-typelits-extra";
- version = "0.4";
- sha256 = "0511vpwn8hz1hvn58g49l95iqcgqr8l8bqy5qwijy2bzad2nhcbg";
+ version = "0.4.1";
+ sha256 = "0wfv0cympdrz999qml8j1cqrqppb22xm4gcn4k8i2hd31j748zb6";
libraryHaskellDepends = [
base containers ghc ghc-prim ghc-tcplugins-extra
ghc-typelits-knownnat ghc-typelits-natnormalise integer-gmp
@@ -100857,6 +100048,8 @@ self: {
];
description = "ghci-dap is a GHCi having DAP interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ghci-diagrams" = callPackage
@@ -101013,11 +100206,11 @@ self: {
({ mkDerivation, aeson, array, async, base, base16-bytestring
, binary, bytestring, Chart, Chart-diagrams, containers
, cryptohash-sha1, data-default, deepseq, diagrams, diagrams-svg
- , directory, extra, filepath, fuzzy, ghc, ghc-boot, ghc-boot-th
- , ghc-check, ghc-paths, ghc-typelits-knownnat, gitrev
- , haddock-library, hashable, haskell-lsp, haskell-lsp-types
- , hie-bios, hslogger, implicit-hie-cradle, lens, lsp-test, mtl
- , network-uri, optparse-applicative, prettyprinter
+ , directory, extra, filepath, fingertree, fuzzy, ghc, ghc-boot
+ , ghc-boot-th, ghc-check, ghc-paths, ghc-typelits-knownnat, gitrev
+ , Glob, haddock-library, hashable, haskell-lsp, haskell-lsp-types
+ , hie-bios, hie-compat, hslogger, implicit-hie-cradle, lens
+ , lsp-test, mtl, network-uri, optparse-applicative, prettyprinter
, prettyprinter-ansi-terminal, process, QuickCheck
, quickcheck-instances, record-dot-preprocessor, record-hasfield
, regex-tdfa, rope-utf16-splay, safe, safe-exceptions, shake
@@ -101027,25 +100220,26 @@ self: {
}:
mkDerivation {
pname = "ghcide";
- version = "0.4.0";
- sha256 = "0h714pfdjkb4rbq9kz3ilj52nxdvr3c0w5nms5znxjlaysgaqp5l";
+ version = "0.5.0";
+ sha256 = "1l3h12jksxh1ds68zkslwmssfsdspxvyp0gqr5n8hgkymr4p896a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson array async base base16-bytestring binary bytestring
containers cryptohash-sha1 data-default deepseq directory extra
- filepath fuzzy ghc ghc-boot ghc-boot-th ghc-check ghc-paths
- haddock-library hashable haskell-lsp haskell-lsp-types hie-bios
- hslogger implicit-hie-cradle mtl network-uri prettyprinter
- prettyprinter-ansi-terminal regex-tdfa rope-utf16-splay safe
- safe-exceptions shake sorted-list stm syb text time transformers
- unix unordered-containers utf8-string
+ filepath fingertree fuzzy ghc ghc-boot ghc-boot-th ghc-check
+ ghc-paths Glob haddock-library hashable haskell-lsp
+ haskell-lsp-types hie-bios hie-compat hslogger implicit-hie-cradle
+ mtl network-uri prettyprinter prettyprinter-ansi-terminal
+ regex-tdfa rope-utf16-splay safe safe-exceptions shake sorted-list
+ stm syb text time transformers unix unordered-containers
+ utf8-string
];
executableHaskellDepends = [
aeson base bytestring containers data-default directory extra
filepath gitrev hashable haskell-lsp haskell-lsp-types hie-bios
- lens lsp-test optparse-applicative process safe-exceptions text
- unordered-containers
+ lens lsp-test optparse-applicative process safe-exceptions shake
+ text unordered-containers
];
testHaskellDepends = [
aeson base binary bytestring containers directory extra filepath
@@ -101425,25 +100619,6 @@ self: {
}:
mkDerivation {
pname = "gi-atk";
- version = "2.0.21";
- sha256 = "0npcz82l5ssbrgzr99a94nlirmfdy9z5p2k0nrk7357bawpiv7sk";
- setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ atk ];
- description = "Atk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) atk;};
-
- "gi-atk_2_0_22" = callPackage
- ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading
- , text, transformers
- }:
- mkDerivation {
- pname = "gi-atk";
version = "2.0.22";
sha256 = "1jx0wy3a0vzclqpysks3nllvm2163svll1iakh3ar7njba7ihq2x";
setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
@@ -101454,7 +100629,6 @@ self: {
libraryPkgconfigDepends = [ atk ];
description = "Atk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) atk;};
"gi-cairo" = callPackage
@@ -101464,29 +100638,6 @@ self: {
}:
mkDerivation {
pname = "gi-cairo";
- version = "1.0.23";
- sha256 = "1y479ll6pzf5qjf18ziqgvfi6zq4jyajkq9zlggmh9pjhxpwj8nh";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ cairo ];
- preCompileBuildDriver = ''
- PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
- setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
- '';
- description = "Cairo bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) cairo;};
-
- "gi-cairo_1_0_24" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cairo, containers
- , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-cairo";
version = "1.0.24";
sha256 = "1g8dvfhsncigi4xrdydp8bxjrcajk1794xb24wpvqpnnbmmykpwk";
setupHaskellDepends = [ base Cabal haskell-gi ];
@@ -101501,7 +100652,6 @@ self: {
'';
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) cairo;};
"gi-cairo-again" = callPackage
@@ -101527,23 +100677,6 @@ self: {
}:
mkDerivation {
pname = "gi-cairo-connector";
- version = "0.0.1";
- sha256 = "0lhaki2qjk8f6bn78sag4g38g549sjzbjbah27j2i46xj7j08png";
- libraryHaskellDepends = [
- base gi-cairo gi-cairo-render haskell-gi-base mtl
- ];
- description = "GI friendly Binding to the Cairo library";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "gi-cairo-connector_0_1_0" = callPackage
- ({ mkDerivation, base, gi-cairo, gi-cairo-render, haskell-gi-base
- , mtl
- }:
- mkDerivation {
- pname = "gi-cairo-connector";
version = "0.1.0";
sha256 = "115iy6sd77aabzghdmfpn5w2zqqalrxgbs5i93z49y3vz4wsjiwf";
libraryHaskellDepends = [
@@ -101551,8 +100684,6 @@ self: {
];
description = "GI friendly Binding to the Cairo library";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gi-cairo-render" = callPackage
@@ -101561,27 +100692,6 @@ self: {
}:
mkDerivation {
pname = "gi-cairo-render";
- version = "0.0.1";
- sha256 = "0arbynn7ilrc3shddff1rxcvlg6k3m617lrq4fdsqfas3amxarm4";
- revision = "1";
- editedCabalFile = "10lpmb8js19zfgnph31yz4nzyv7kbqvq1lx07w12q702khqcqb7z";
- libraryHaskellDepends = [
- array base bytestring haskell-gi-base mtl text utf8-string
- ];
- libraryPkgconfigDepends = [ cairo ];
- libraryToolDepends = [ c2hs ];
- description = "GI friendly Binding to the Cairo library";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {inherit (pkgs) cairo;};
-
- "gi-cairo-render_0_1_0" = callPackage
- ({ mkDerivation, array, base, bytestring, c2hs, cairo
- , haskell-gi-base, mtl, text, utf8-string
- }:
- mkDerivation {
- pname = "gi-cairo-render";
version = "0.1.0";
sha256 = "1b2qxfahs4w288i6w5m0rs74amnm3zp0mj2vsccf34q437yni2gx";
libraryHaskellDepends = [
@@ -101591,8 +100701,6 @@ self: {
libraryToolDepends = [ c2hs ];
description = "GI friendly Binding to the Cairo library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) cairo;};
"gi-dbusmenu" = callPackage
@@ -101602,27 +100710,6 @@ self: {
}:
mkDerivation {
pname = "gi-dbusmenu";
- version = "0.4.7";
- sha256 = "0av2628vylmkk566f2zbzbwygni4rawrk14yamc6m9s9rsw2scf9";
- setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ libdbusmenu ];
- description = "Dbusmenu bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {inherit (pkgs) libdbusmenu;};
-
- "gi-dbusmenu_0_4_8" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading
- , libdbusmenu, text, transformers
- }:
- mkDerivation {
- pname = "gi-dbusmenu";
version = "0.4.8";
sha256 = "15nvfap39ayw34282br4rch1aias0m1sbapc0nkla8h5ip2naqi6";
setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
@@ -101633,8 +100720,6 @@ self: {
libraryPkgconfigDepends = [ libdbusmenu ];
description = "Dbusmenu bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) libdbusmenu;};
"gi-dbusmenugtk3" = callPackage
@@ -101645,32 +100730,6 @@ self: {
}:
mkDerivation {
pname = "gi-dbusmenugtk3";
- version = "0.4.8";
- sha256 = "0ncn2i0bvsqsi785bjhdxr77hyxsp2dm26ihn7nxbvdkvn0mafhz";
- setupHaskellDepends = [
- base Cabal gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf gi-glib
- gi-gobject gi-gtk haskell-gi
- ];
- libraryHaskellDepends = [
- base bytestring containers gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf
- gi-glib gi-gobject gi-gtk haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ gtk3 libdbusmenu-gtk3 ];
- description = "DbusmenuGtk bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;};
-
- "gi-dbusmenugtk3_0_4_9" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
- , gi-dbusmenu, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk
- , gtk3, haskell-gi, haskell-gi-base, haskell-gi-overloading
- , libdbusmenu-gtk3, text, transformers
- }:
- mkDerivation {
- pname = "gi-dbusmenugtk3";
version = "0.4.9";
sha256 = "1cni5368ldyblwh0jr6wva8fhi3574d258xzw49prwbjxngmjiv0";
setupHaskellDepends = [
@@ -101685,8 +100744,6 @@ self: {
libraryPkgconfigDepends = [ gtk3 libdbusmenu-gtk3 ];
description = "DbusmenuGtk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;};
"gi-gdk" = callPackage
@@ -101697,30 +100754,6 @@ self: {
}:
mkDerivation {
pname = "gi-gdk";
- version = "3.0.22";
- sha256 = "0a6qkikk31n5qc85zp8l8kcaf0804c52gp02hban3c8a9rbq1lgr";
- setupHaskellDepends = [
- base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango
- haskell-gi
- ];
- libraryHaskellDepends = [
- base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ gtk3 ];
- description = "Gdk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) gtk3;};
-
- "gi-gdk_3_0_23" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
- , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-gdk";
version = "3.0.23";
sha256 = "18v3kb6kmryymmrz0d88nf25priwyh3yzh7raghc5ph2rv7n4w8m";
setupHaskellDepends = [
@@ -101735,7 +100768,6 @@ self: {
libraryPkgconfigDepends = [ gtk3 ];
description = "Gdk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gtk3;};
"gi-gdk_4_0_2" = callPackage
@@ -101770,27 +100802,6 @@ self: {
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "2.0.23";
- sha256 = "0jphrxqdbls3l73is1k93fizghbxgkf14q57l4w3m559vgk34anp";
- setupHaskellDepends = [
- base Cabal gi-gio gi-glib gi-gobject haskell-gi
- ];
- libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ gdk-pixbuf ];
- description = "GdkPixbuf bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) gdk-pixbuf;};
-
- "gi-gdkpixbuf_2_0_24" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf
- , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base
- , haskell-gi-overloading, text, transformers
- }:
- mkDerivation {
- pname = "gi-gdkpixbuf";
version = "2.0.24";
sha256 = "00hgfyln0pqx4fmffc24mx818y1lladfc288qq0f03345p5dnbna";
setupHaskellDepends = [
@@ -101803,7 +100814,6 @@ self: {
libraryPkgconfigDepends = [ gdk-pixbuf ];
description = "GdkPixbuf bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gdk-pixbuf;};
"gi-gdkx11" = callPackage
@@ -101813,8 +100823,8 @@ self: {
}:
mkDerivation {
pname = "gi-gdkx11";
- version = "3.0.9";
- sha256 = "0z3vwwpv8a85nvg2bc4cdaa8w4jmdl5mm5bxfpwmssyxcnm1xdnc";
+ version = "3.0.10";
+ sha256 = "0kfn4l5jqhllz514zw5cxf7181ybb5c11r680nwhr99b97yy0q9f";
setupHaskellDepends = [
base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi
];
@@ -101826,8 +100836,6 @@ self: {
libraryPkgconfigDepends = [ gtk3 ];
description = "GdkX11 bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) gtk3;};
"gi-gdkx11_4_0_2" = callPackage
@@ -101851,7 +100859,6 @@ self: {
description = "GdkX11 bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {gtk4-x11 = null;};
"gi-ggit" = callPackage
@@ -101882,25 +100889,6 @@ self: {
}:
mkDerivation {
pname = "gi-gio";
- version = "2.0.26";
- sha256 = "0a75azw25aww3pbhmjpvqn2w3qr430c4s8kk70xf87af0nlv21sp";
- setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- description = "Gio bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-gio_2_0_27" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, glib, haskell-gi, haskell-gi-base
- , haskell-gi-overloading, text, transformers
- }:
- mkDerivation {
- pname = "gi-gio";
version = "2.0.27";
sha256 = "08qc0ahj0qmmibf92m48hv8q2x47q83c6j9a49h11dyc8l4nclx6";
setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
@@ -101911,7 +100899,6 @@ self: {
libraryPkgconfigDepends = [ glib ];
description = "Gio bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-girepository" = callPackage
@@ -101940,25 +100927,6 @@ self: {
}:
mkDerivation {
pname = "gi-glib";
- version = "2.0.23";
- sha256 = "1wsix558lj58i8mdwikb2q78941dxl3pchhd75xkk5hq8rknp37x";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- description = "GLib bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-glib_2_0_24" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, glib
- , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-glib";
version = "2.0.24";
sha256 = "0zrajclbjbq6d6pyvz3s0kjq997w7j8nghi3i89l8fjw16gbmjxn";
setupHaskellDepends = [ base Cabal haskell-gi ];
@@ -101969,7 +100937,6 @@ self: {
libraryPkgconfigDepends = [ glib ];
description = "GLib bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-gobject" = callPackage
@@ -101979,27 +100946,8 @@ self: {
}:
mkDerivation {
pname = "gi-gobject";
- version = "2.0.22";
- sha256 = "0c1ia60793dly5y5xd2s1qs5a37f0r3jypzc21r0yswgqdlsi7g6";
- setupHaskellDepends = [ base Cabal gi-glib haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- description = "GObject bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-gobject_2_0_24" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
- , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-gobject";
- version = "2.0.24";
- sha256 = "1i19s7pcs3gnhhyif8y3j7hngmdzfqbgaw52j8dvrz7w11fbx9sj";
+ version = "2.0.25";
+ sha256 = "0yz80wcxhy1mm441507qsj2f7380l2iwh4s1miwpd8kb5m147n9w";
setupHaskellDepends = [ base Cabal gi-glib haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib haskell-gi haskell-gi-base
@@ -102008,7 +100956,6 @@ self: {
libraryPkgconfigDepends = [ glib ];
description = "GObject bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-graphene" = callPackage
@@ -102018,27 +100965,6 @@ self: {
}:
mkDerivation {
pname = "gi-graphene";
- version = "1.0.1";
- sha256 = "04aiq9zqjxaky48j57nakx0alhc9j1g6ydki7fww7r4jajmf6pjv";
- setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ graphene-gobject ];
- description = "Graphene bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {graphene-gobject = null;};
-
- "gi-graphene_1_0_2" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, graphene-gobject, haskell-gi, haskell-gi-base
- , haskell-gi-overloading, text, transformers
- }:
- mkDerivation {
- pname = "gi-graphene";
version = "1.0.2";
sha256 = "1mszvx58mdazy8202s0c05hp800b92n21g4rxwvp5k0ms7qz95nq";
setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
@@ -102117,6 +101043,8 @@ self: {
libraryPkgconfigDepends = [ gst-plugins-base ];
description = "GStreamerAudio bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs.gst_all_1) gst-plugins-base;};
"gi-gstbase" = callPackage
@@ -102218,32 +101146,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk";
- version = "3.0.33";
- sha256 = "03fvazdkg1m9svp39bn4gz7cfy23pp01yfcf6ambkdrq9msqsjak";
- setupHaskellDepends = [
- base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi
- ];
- libraryHaskellDepends = [
- base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ gtk3 ];
- description = "Gtk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) gtk3;};
-
- "gi-gtk_3_0_35" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
- , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
- , gi-pango, gtk3, haskell-gi, haskell-gi-base
- , haskell-gi-overloading, text, transformers
- }:
- mkDerivation {
- pname = "gi-gtk";
- version = "3.0.35";
- sha256 = "08z6kc9m7xb24d9z08yy3g66l8i7nircnaiy5i82yfl2l4slvz2w";
+ version = "3.0.36";
+ sha256 = "0bzb3xrax5k5r5fd6vv4by6hprmk77qrqr9mqn3dxqm6an8jwjn9";
setupHaskellDepends = [
base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib
gi-gobject gi-pango haskell-gi
@@ -102256,10 +101160,9 @@ self: {
libraryPkgconfigDepends = [ gtk3 ];
description = "Gtk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gtk3;};
- "gi-gtk_4_0_2" = callPackage
+ "gi-gtk_4_0_3" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
, gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
, gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base
@@ -102267,8 +101170,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk";
- version = "4.0.2";
- sha256 = "1lmbb3q4f73f7yihnl4qjv7qvzrys3jqsh3dg9wwdg9bxg900ghp";
+ version = "4.0.3";
+ sha256 = "1zfqnjnzlrry7cbrzfamrh5465h06y6px0b1xh1yz7iaacg0739z";
setupHaskellDepends = [
base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib
gi-gobject gi-graphene gi-gsk gi-pango haskell-gi
@@ -102337,25 +101240,6 @@ self: {
}:
mkDerivation {
pname = "gi-gtk-hs";
- version = "0.3.8.1";
- sha256 = "05j26w01izxwjq2jg2nds20p6vgd5b974b07cr0m7w6hhm4v51hk";
- libraryHaskellDepends = [
- base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject
- gi-gtk haskell-gi-base mtl text transformers
- ];
- description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "gi-gtk-hs_0_3_9" = callPackage
- ({ mkDerivation, base, base-compat, containers, gi-gdk
- , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl
- , text, transformers
- }:
- mkDerivation {
- pname = "gi-gtk-hs";
version = "0.3.9";
sha256 = "1ql14ripivfh1w65wnr6mw64f2vlwi54gz70c8qql9f5szbnjky1";
libraryHaskellDepends = [
@@ -102364,8 +101248,6 @@ self: {
];
description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gi-gtkosxapplication" = callPackage
@@ -102413,6 +101295,8 @@ self: {
libraryPkgconfigDepends = [ gtksheet ];
description = "GtkSheet bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {gtksheet = null;};
"gi-gtksource" = callPackage
@@ -102570,29 +101454,6 @@ self: {
"gi-pango" = callPackage
({ mkDerivation, base, bytestring, Cabal, cairo, containers
- , gi-glib, gi-gobject, haskell-gi, haskell-gi-base
- , haskell-gi-overloading, pango, text, transformers
- }:
- mkDerivation {
- pname = "gi-pango";
- version = "1.0.22";
- sha256 = "09dz13wai7cyp24vhc6wxyyg2g89dsqq40r80j56xgpyvfki8yf2";
- setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ cairo pango ];
- preCompileBuildDriver = ''
- PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
- setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
- '';
- description = "Pango bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) cairo; inherit (pkgs) pango;};
-
- "gi-pango_1_0_23" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cairo, containers
, gi-glib, gi-gobject, gi-harfbuzz, haskell-gi, haskell-gi-base
, haskell-gi-overloading, pango, text, transformers
}:
@@ -102614,7 +101475,6 @@ self: {
'';
description = "Pango bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) cairo; inherit (pkgs) pango;};
"gi-pangocairo" = callPackage
@@ -102837,27 +101697,6 @@ self: {
}:
mkDerivation {
pname = "gi-xlib";
- version = "2.0.8";
- sha256 = "0gixgql24zx04sph7kn4n5gmgmz5xbw2f15mqfw0i5igad2pvsj3";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base
- haskell-gi-overloading text transformers
- ];
- libraryPkgconfigDepends = [ xlibsWrapper ];
- description = "xlib bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {inherit (pkgs) xlibsWrapper;};
-
- "gi-xlib_2_0_9" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
- , haskell-gi-base, haskell-gi-overloading, text, transformers
- , xlibsWrapper
- }:
- mkDerivation {
- pname = "gi-xlib";
version = "2.0.9";
sha256 = "02n2iz30dkkfqpsc3ngpx0zxrl6fbsafzrjf0im8an783jp3vm80";
setupHaskellDepends = [ base Cabal haskell-gi ];
@@ -102868,8 +101707,6 @@ self: {
libraryPkgconfigDepends = [ xlibsWrapper ];
description = "xlib bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) xlibsWrapper;};
"giak" = callPackage
@@ -103047,6 +101884,8 @@ self: {
];
description = "Giphy HTTP API wrapper and CLI search tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gist" = callPackage
@@ -103138,8 +101977,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "8.20201007";
- sha256 = "0v11yc4kkxnzvwqry277dpjwlavinrjiagfw0ayhrfwd703j1y8a";
+ version = "8.20201127";
+ sha256 = "0n9m5ffgbzms0nh9dskrc7vjgwwwi9f9gxyh498wnspf96729zz7";
configureFlags = [
"-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime"
"-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser"
@@ -103195,8 +102034,8 @@ self: {
}:
mkDerivation {
pname = "git-brunch";
- version = "1.4.2.0";
- sha256 = "0zbbd3hga2qh043xw6igsjk14wh0d3hq5naxich88wg1ig4w28j5";
+ version = "1.4.4.0";
+ sha256 = "0kj22hx2ibidrnx19wb8kh6vyv4v0b5im616bywwhjqzspjqppmi";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -103399,8 +102238,8 @@ self: {
}:
mkDerivation {
pname = "git-lfs";
- version = "1.1.0";
- sha256 = "1llg50517xw4nccjik63gsg0nwkb4lhp0fs0lbi3q38xv9a3imyz";
+ version = "1.1.1";
+ sha256 = "1jjr73knvc8b7mlabb3yyyc5blfxiwgbdk6lylshfp2fqsmkvhnx";
libraryHaskellDepends = [
aeson base bytestring case-insensitive containers http-client
http-types network-uri text
@@ -103425,8 +102264,6 @@ self: {
];
description = "Tool to help resolving git conflicts";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"git-monitor" = callPackage
@@ -103650,8 +102487,8 @@ self: {
}:
mkDerivation {
pname = "githash";
- version = "0.1.4.0";
- sha256 = "0rsz230srhszwybg5a40vhzzp9z0r4yvdz4xg2hwwwphmbi8pfy3";
+ version = "0.1.5.0";
+ sha256 = "1m2dhmddn9k75j5wyjilbh40n7fkgi7cyic9l0k2s7g9z93yyvql";
libraryHaskellDepends = [
base bytestring directory filepath process template-haskell
];
@@ -103783,8 +102620,6 @@ self: {
executableHaskellDepends = [ base ];
description = "Upload files to GitHub releases";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"github-rest" = callPackage
@@ -103919,25 +102754,23 @@ self: {
testHaskellDepends = [ aeson base bytestring hspec text vector ];
description = "Aeson instances for GitHub Webhook payloads";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"githud" = callPackage
({ mkDerivation, base, bytestring, daemons, data-default, directory
- , mtl, network, parsec, process, tasty, tasty-hunit
+ , filelock, mtl, network, parsec, process, tasty, tasty-hunit
, tasty-quickcheck, tasty-smallcheck, temporary, text, unix
, utf8-string
}:
mkDerivation {
pname = "githud";
- version = "3.2.1";
- sha256 = "1vvqn7wvalywnimv5kxz44pv4szm5csmvk54jbmsls2x0qginmqb";
+ version = "3.2.2";
+ sha256 = "19z21w6qxfndh381gcyi1ap14map886pkkc3nax8s417mv744ag3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bytestring daemons data-default directory mtl network parsec
- process temporary text unix utf8-string
+ base bytestring daemons data-default directory filelock mtl network
+ parsec process temporary text unix utf8-string
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
@@ -104028,22 +102861,6 @@ self: {
"gitlab-haskell" = callPackage
({ mkDerivation, aeson, base, bytestring, connection, http-conduit
- , http-types, text, time, transformers, unliftio, unliftio-core
- }:
- mkDerivation {
- pname = "gitlab-haskell";
- version = "0.1.8";
- sha256 = "13s2vpxvcm000b817p9w8v05frdmsq9xjm9g6i07v97vrgpch1mv";
- libraryHaskellDepends = [
- aeson base bytestring connection http-conduit http-types text time
- transformers unliftio unliftio-core
- ];
- description = "A Haskell library for the GitLab web API";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "gitlab-haskell_0_2_3" = callPackage
- ({ mkDerivation, aeson, base, bytestring, connection, http-conduit
, http-types, tasty, tasty-hunit, text, time, transformers
, unliftio, unliftio-core
}:
@@ -104059,7 +102876,6 @@ self: {
testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ];
description = "A Haskell library for the GitLab web API";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitlib" = callPackage
@@ -104332,6 +103148,8 @@ self: {
];
description = "CLI Giphy search tool with previews in iTerm 2";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gjk" = callPackage
@@ -104350,8 +103168,8 @@ self: {
({ mkDerivation, base, linear }:
mkDerivation {
pname = "gjk2d";
- version = "0.1.0.2";
- sha256 = "163av54lmkqbayx9vkvviv3mdqq60zwkk9kjn75j7mk13d0iwpp3";
+ version = "0.1.0.3";
+ sha256 = "1wpaiaki61a7wl56qv6ycz9hgc9f8wvqdcqxpxaqvndxmri4njsv";
libraryHaskellDepends = [ base linear ];
testHaskellDepends = [ base linear ];
license = stdenv.lib.licenses.bsd3;
@@ -104711,6 +103529,8 @@ self: {
pname = "glirc";
version = "2.37";
sha256 = "1222dz42lyk44xgs10wwjpd2qn4l0ak3v98vj103xh535hki9ibn";
+ revision = "1";
+ editedCabalFile = "19y9hhn24w6lqdwv1skijrvj5plqs3xqcz3h8wv1ax8g8ak07xsx";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal filepath ];
@@ -104854,30 +103674,14 @@ self: {
broken = true;
}) {};
- "gloss_1_9_2_1" = callPackage
- ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim
- , gloss-rendering, GLUT, OpenGL
- }:
- mkDerivation {
- pname = "gloss";
- version = "1.9.2.1";
- sha256 = "1fk7472lw4621gv64fv4mna8z1av15f7d0didpc9r22rdlkpa80l";
- libraryHaskellDepends = [
- base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
- ];
- description = "Painless 2D vector graphics, animations and simulations";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"gloss" = callPackage
({ mkDerivation, base, bmp, bytestring, containers, ghc-prim
, gloss-rendering, GLUT, OpenGL
}:
mkDerivation {
pname = "gloss";
- version = "1.13.1.2";
- sha256 = "0jyvjpd1gzzb9aiw5708822p8qyw14jj6j19gby9q9wjbpd4sd4d";
+ version = "1.13.2.1";
+ sha256 = "0ladpnk2zw27bz895b9gphhrmawb0gwvzrmnisk56msjdxwqq5pn";
libraryHaskellDepends = [
base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
];
@@ -104898,8 +103702,6 @@ self: {
];
description = "Extras to interface Gloss and Accelerate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gloss-algorithms" = callPackage
@@ -104911,8 +103713,6 @@ self: {
libraryHaskellDepends = [ base containers ghc-prim gloss ];
description = "Data structures and algorithms for working with 2D graphics";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gloss-banana" = callPackage
@@ -105032,8 +103832,6 @@ self: {
];
description = "Parallel rendering of raster images";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gloss-raster-accelerate" = callPackage
@@ -107947,8 +106745,8 @@ self: {
}:
mkDerivation {
pname = "goldplate";
- version = "0.1.1";
- sha256 = "0qjqx3yxlyfdj6glych7vwrrh47nrp6xi0vncga2a94hb5sljzzl";
+ version = "0.1.2";
+ sha256 = "1qbh23sqx0jvwrmhb88683z3rx31jy99xh8h24iqv1ykmjvmqwvf";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -107958,6 +106756,8 @@ self: {
];
description = "A lightweight golden test runner";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gooey" = callPackage
@@ -108173,6 +106973,8 @@ self: {
];
description = "Get a signed JWT for Google Service Accounts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"google-search" = callPackage
@@ -108198,8 +107000,8 @@ self: {
}:
mkDerivation {
pname = "google-server-api";
- version = "0.3.2.1";
- sha256 = "1bvj8pihsz4w53lax5k234p58v9r2k1gpkvdgjwl6n0vkqbw1qy8";
+ version = "0.3.3.1";
+ sha256 = "17lsjlfkr3crxyxhj7w77ga7h7c6va6z5qmyvmhwapmym1zmsqrs";
libraryHaskellDepends = [
aeson aeson-casing base base64-bytestring bytestring HsOpenSSL
http-api-data http-client http-client-tls http-media mime-mail
@@ -108332,15 +107134,16 @@ self: {
"gopro-plus" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, exceptions
- , filepath, generic-deriving, HUnit, lens, lens-aeson, mtl, random
+ , filepath, generic-deriving, generic-random, HUnit, lens
+ , lens-aeson, mtl, QuickCheck, quickcheck-instances, random
, raw-strings-qq, retry, tasty, tasty-hunit, tasty-quickcheck, text
, time, transformers, unix, unliftio, unordered-containers, vector
, wreq
}:
mkDerivation {
pname = "gopro-plus";
- version = "0.3.1.1";
- sha256 = "0gjdz5c165hk4nbynp3s633kzivq62y3riz45w0l0k2qrirpkd14";
+ version = "0.4.1.3";
+ sha256 = "1924d0qymm18zy5pw04irf1nmwdbkbscxcvw4cmjqm9xj7cnyja0";
libraryHaskellDepends = [
aeson base bytestring containers exceptions filepath
generic-deriving lens lens-aeson mtl random retry text time
@@ -108348,12 +107151,15 @@ self: {
];
testHaskellDepends = [
aeson base bytestring containers exceptions filepath
- generic-deriving HUnit lens lens-aeson mtl random raw-strings-qq
- retry tasty tasty-hunit tasty-quickcheck text time transformers
- unix unliftio unordered-containers vector wreq
+ generic-deriving generic-random HUnit lens lens-aeson mtl
+ QuickCheck quickcheck-instances random raw-strings-qq retry tasty
+ tasty-hunit tasty-quickcheck text time transformers unix unliftio
+ unordered-containers vector wreq
];
description = "GoPro Plus Client API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"gore-and-ash" = callPackage
@@ -108594,8 +107400,8 @@ self: {
}:
mkDerivation {
pname = "gotta-go-fast";
- version = "0.3.0.0";
- sha256 = "067jmp0p21bw7mpsrlpawphjmlq9f85lsfiihp37pvs8sxb36lg9";
+ version = "0.3.0.6";
+ sha256 = "1cv8l54wg2gsbk7wr0zmw47k9v8vs5dzj4k1wp5b17p3wp92s1av";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -108604,8 +107410,6 @@ self: {
];
description = "A command line utility for practicing typing";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gpah" = callPackage
@@ -108747,6 +107551,8 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Applicative non-linear consumption";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"grab-form" = callPackage
@@ -108759,6 +107565,8 @@ self: {
testHaskellDepends = [ base containers hedgehog text ];
description = "Applicative parsers for form parameter lists";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"graceful" = callPackage
@@ -108864,20 +107672,22 @@ self: {
}) {};
"grammatical-parsers" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, checkers, containers
- , criterion, deepseq, doctest, markdown-unlit, monoid-subclasses
- , parsers, QuickCheck, rank2classes, size-based, tasty
- , tasty-quickcheck, testing-feat, text, transformers
+ ({ mkDerivation, attoparsec, base, bytestring, Cabal, cabal-doctest
+ , checkers, containers, criterion, deepseq, doctest, input-parsers
+ , markdown-unlit, monoid-subclasses, parsers, QuickCheck
+ , rank2classes, size-based, tasty, tasty-quickcheck, testing-feat
+ , text, transformers
}:
mkDerivation {
pname = "grammatical-parsers";
- version = "0.4.1.2";
- sha256 = "0aa7lqny3627f4d3z7xjmr9ywh94h5akhg89jabh05mvaykr34kf";
+ version = "0.5";
+ sha256 = "1kf3wwbk1skp6cm78h6fs2494597sdz82gaq5zx3cwfzgn4swmgx";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
- base containers monoid-subclasses parsers rank2classes transformers
+ attoparsec base bytestring containers input-parsers
+ monoid-subclasses parsers rank2classes transformers
];
executableHaskellDepends = [
base containers monoid-subclasses parsers rank2classes
@@ -108894,6 +107704,8 @@ self: {
];
description = "parsers that combine into grammars";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"grapefruit-examples" = callPackage
@@ -109472,8 +108284,8 @@ self: {
}:
mkDerivation {
pname = "graphql";
- version = "0.10.0.0";
- sha256 = "0j0l8jmfnn3aw9vmk5z571ly9vk711hsz7cdklc243539vfnsywn";
+ version = "0.11.0.0";
+ sha256 = "1jg0cdyq0z1r752cx9mnbxj2rxd5s723zfvpk3mwcsvx5ygkhm0p";
libraryHaskellDepends = [
aeson base conduit containers exceptions hspec-expectations
megaparsec parser-combinators scientific text transformers
@@ -109485,7 +108297,7 @@ self: {
raw-strings-qq scientific text transformers unordered-containers
];
description = "Haskell GraphQL implementation";
- license = stdenv.lib.licenses.bsd3;
+ license = "MPL-2.0 AND BSD-3-Clause";
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -109517,6 +108329,8 @@ self: {
];
description = "GraphQL API";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"graphql-client" = callPackage
@@ -109547,6 +108361,8 @@ self: {
];
description = "A client for Haskell programs to query a GraphQL API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"graphql-utils" = callPackage
@@ -109628,6 +108444,64 @@ self: {
broken = true;
}) {};
+ "graphula" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, directory
+ , generics-eot, hspec, http-api-data, HUnit, markdown-unlit
+ , monad-logger, mtl, path-pieces, persistent, persistent-sqlite
+ , persistent-template, QuickCheck, random, resourcet, semigroups
+ , temporary, text, transformers, unliftio, unliftio-core, uuid
+ }:
+ mkDerivation {
+ pname = "graphula";
+ version = "2.0.0.1";
+ sha256 = "1sd89mkbqflyzvsszmiddcssnkjn27dgh5dpp082xqla4b7grhml";
+ libraryHaskellDepends = [
+ base containers directory generics-eot HUnit mtl persistent
+ QuickCheck random semigroups temporary text transformers unliftio
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers hspec http-api-data markdown-unlit
+ monad-logger path-pieces persistent persistent-sqlite
+ persistent-template QuickCheck resourcet semigroups text
+ transformers unliftio-core uuid
+ ];
+ testToolDepends = [ markdown-unlit ];
+ description = "A declarative library for describing dependencies between data";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "graphula-core" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, directory
+ , generics-eot, hspec, http-api-data, HUnit, markdown-unlit
+ , monad-logger, mtl, path-pieces, persistent, persistent-sqlite
+ , persistent-template, QuickCheck, random, resourcet, semigroups
+ , temporary, text, transformers, unliftio, unliftio-core, uuid
+ }:
+ mkDerivation {
+ pname = "graphula-core";
+ version = "2.0.0.1";
+ sha256 = "0yl1x5dw70rds9fk7ijsyrksharjm2fhvbihybjbjpj89s1n1zir";
+ libraryHaskellDepends = [
+ base containers directory generics-eot HUnit mtl persistent
+ QuickCheck random semigroups temporary text transformers unliftio
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers hspec http-api-data markdown-unlit
+ monad-logger path-pieces persistent persistent-sqlite
+ persistent-template QuickCheck resourcet semigroups text
+ transformers unliftio-core uuid
+ ];
+ testToolDepends = [ markdown-unlit ];
+ description = "A declarative library for describing dependencies between data";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"graphviz" = callPackage
({ mkDerivation, base, bytestring, colour, containers, criterion
, deepseq, directory, dlist, fgl, fgl-arbitrary, filepath, graphviz
@@ -109815,6 +108689,8 @@ self: {
executablePkgconfigDepends = [ libXau xcb xdmcp xlibsWrapper ];
description = "Simple clipboard manager to be integrated with rofi";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs.xorg) libXau; xcb = null; xdmcp = null;
inherit (pkgs) xlibsWrapper;};
@@ -110423,23 +109299,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "groups";
- version = "0.4.1.0";
- sha256 = "0ggkygkyxw5ga4cza82bjvdraavl294k0h6b62d2px7z3nvqhifx";
- libraryHaskellDepends = [ base ];
- description = "Haskell 98 groups";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "groups_0_5" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "groups";
version = "0.5";
sha256 = "1ivz03k5bk6d72bibn8jyq4wkivkyakbmvbrp270b33282a4lkpc";
libraryHaskellDepends = [ base ];
description = "Groups";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"groups-generic" = callPackage
@@ -110957,8 +109821,6 @@ self: {
];
description = "A standalone StatusNotifierItem/AppIndicator tray";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) gtk3;};
"gtk-strut" = callPackage
@@ -110970,8 +109832,6 @@ self: {
libraryHaskellDepends = [ base gi-gdk gi-gtk text transformers ];
description = "Libary for creating strut windows with gi-gtk";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"gtk-toggle-button-list" = callPackage
@@ -111447,6 +110307,8 @@ self: {
];
description = "REST client to the gym-http-api project";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"h-booru" = callPackage
@@ -111641,6 +110503,8 @@ self: {
testHaskellDepends = [ base hashable ];
description = "Conceptual modelling support for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hCsound" = callPackage
@@ -111782,48 +110646,45 @@ self: {
, bz2, conduit, conduit-extra, containers, criterion
, crypto-cipher-types, cryptonite, errors, hashable
, incremental-parser, ixset-typed, lens, memory, monad-loops
- , nettle, network, network-uri, newtype, openpgp-asciiarmor
- , prettyprinter, QuickCheck, quickcheck-instances, resourcet
- , semigroups, split, tasty, tasty-hunit, tasty-quickcheck, text
- , time, time-locale-compat, transformers, unliftio-core
- , unordered-containers, zlib
+ , nettle, network, network-uri, openpgp-asciiarmor, prettyprinter
+ , QuickCheck, quickcheck-instances, resourcet, split, tasty
+ , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat
+ , transformers, unliftio-core, unordered-containers, zlib
}:
mkDerivation {
pname = "hOpenPGP";
- version = "2.9.4";
- sha256 = "15895a6vqaz69za63hxkbn01sji91hlsqiyg3lbzwi1qfvl3b98b";
+ version = "2.9.5";
+ sha256 = "1wzvlk7my7a8rwmsw1glw2dlph3b2hwyz2jkcjr0hd1jj8ywksnx";
libraryHaskellDepends = [
aeson asn1-encoding attoparsec base base16-bytestring bifunctors
binary binary-conduit bytestring bz2 conduit conduit-extra
containers crypto-cipher-types cryptonite errors hashable
incremental-parser ixset-typed lens memory monad-loops nettle
- network-uri newtype openpgp-asciiarmor prettyprinter resourcet
- semigroups split text time time-locale-compat transformers
- unliftio-core unordered-containers zlib
+ network-uri openpgp-asciiarmor prettyprinter resourcet split text
+ time time-locale-compat transformers unliftio-core
+ unordered-containers zlib
];
testHaskellDepends = [
aeson asn1-encoding attoparsec base base16-bytestring bifunctors
binary binary-conduit bytestring bz2 conduit conduit-extra
containers crypto-cipher-types cryptonite errors hashable
incremental-parser ixset-typed lens memory monad-loops nettle
- network network-uri newtype prettyprinter QuickCheck
- quickcheck-instances resourcet semigroups split tasty tasty-hunit
- tasty-quickcheck text time time-locale-compat transformers
- unliftio-core unordered-containers zlib
+ network network-uri prettyprinter QuickCheck quickcheck-instances
+ resourcet split tasty tasty-hunit tasty-quickcheck text time
+ time-locale-compat transformers unliftio-core unordered-containers
+ zlib
];
benchmarkHaskellDepends = [
aeson base base16-bytestring bifunctors binary binary-conduit
bytestring bz2 conduit conduit-extra containers criterion
crypto-cipher-types cryptonite errors hashable incremental-parser
ixset-typed lens memory monad-loops nettle network network-uri
- newtype openpgp-asciiarmor prettyprinter resourcet semigroups split
- text time time-locale-compat transformers unliftio-core
- unordered-containers zlib
+ openpgp-asciiarmor prettyprinter resourcet split text time
+ time-locale-compat transformers unliftio-core unordered-containers
+ zlib
];
description = "native Haskell implementation of OpenPGP (RFC4880)";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hPDB" = callPackage
@@ -112130,6 +110991,8 @@ self: {
executableHaskellDepends = [ base optparse-applicative text ];
description = "A blog system";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hacanon-light" = callPackage
@@ -112751,17 +111614,13 @@ self: {
}:
mkDerivation {
pname = "hackage-security-HTTP";
- version = "0.1.1";
- sha256 = "0chkrn4d33qjh50fpbkrkqj6jsxd5y5c2mrgqgwsdx3x08kaq8nd";
- revision = "1";
- editedCabalFile = "11k2jqnkqywdm2rzvcgib0p9i11z5g4d2yikfn932mjfr4ss51bj";
+ version = "0.1.1.1";
+ sha256 = "14hp7gssf80b9937j7m56w8sxrv3hrzjf2s9kgfk76v6llgx79k2";
libraryHaskellDepends = [
base bytestring hackage-security HTTP mtl network network-uri zlib
];
description = "Hackage security bindings against the HTTP library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hackage-server" = callPackage
@@ -112986,8 +111845,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Hackage and Portage integration tool";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hactor" = callPackage
@@ -113021,23 +111878,6 @@ self: {
broken = true;
}) {};
- "haddock_2_22_0" = callPackage
- ({ mkDerivation, base, filepath, haddock-api }:
- mkDerivation {
- pname = "haddock";
- version = "2.22.0";
- sha256 = "1k42z2zh550rl93c8pa9cg2xsanp6wvb031xvan6cmngnplmdib6";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [ base haddock-api ];
- testHaskellDepends = [ base filepath ];
- doCheck = false;
- preCheck = "unset GHC_PACKAGE_PATH";
- description = "A documentation-generation tool for Haskell libraries";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"haddock_2_23_1" = callPackage
({ mkDerivation, base, filepath, haddock-api }:
mkDerivation {
@@ -113053,6 +111893,7 @@ self: {
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haddock" = callPackage
@@ -113069,6 +111910,8 @@ self: {
preCheck = "unset GHC_PACKAGE_PATH";
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haddock-api_2_23_1" = callPackage
@@ -113094,6 +111937,7 @@ self: {
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haddock-api" = callPackage
@@ -113118,6 +111962,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haddock-cheatsheet" = callPackage
@@ -113181,30 +112027,6 @@ self: {
}:
mkDerivation {
pname = "haddock-library";
- version = "1.8.0";
- sha256 = "15xpv29yh3kb9qq9gmws2l8m64i7phvf47y08vxc2j55101sg4vh";
- revision = "1";
- editedCabalFile = "09v6lq3ncf3ax7b6n36vhsflm488x0qc8sgc3w17m09x1jl48d99";
- libraryHaskellDepends = [
- base bytestring containers parsec text transformers
- ];
- testHaskellDepends = [
- base base-compat bytestring containers deepseq directory filepath
- hspec optparse-applicative parsec QuickCheck text transformers
- tree-diff
- ];
- testToolDepends = [ hspec-discover ];
- description = "Library exposing some functionality of Haddock";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "haddock-library_1_9_0" = callPackage
- ({ mkDerivation, base, base-compat, bytestring, containers, deepseq
- , directory, filepath, hspec, hspec-discover, optparse-applicative
- , parsec, QuickCheck, text, transformers, tree-diff
- }:
- mkDerivation {
- pname = "haddock-library";
version = "1.9.0";
sha256 = "0c37mhmvr4saw5m4snyj1nij786dwmk9kch7hafgd1xswb9k4c5c";
libraryHaskellDepends = [
@@ -113218,7 +112040,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Library exposing some functionality of Haddock";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haddock-test" = callPackage
@@ -113262,20 +112083,20 @@ self: {
}) {};
"hadolint" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, directory
- , filepath, gitrev, hspec, HsYAML, HUnit, language-docker
- , megaparsec, mtl, optparse-applicative, ShellCheck, split, text
- , void
+ ({ mkDerivation, aeson, async, base, bytestring, containers
+ , directory, filepath, gitrev, hspec, HsYAML, HUnit
+ , language-docker, megaparsec, mtl, optparse-applicative, parallel
+ , ShellCheck, split, text, void
}:
mkDerivation {
pname = "hadolint";
- version = "1.18.0";
- sha256 = "1pvf1wr8sg2yv439yyd08jz75jzmpys5629pcii1kdx5vh2rp1yx";
+ version = "1.19.0";
+ sha256 = "0idvjk0nz9m28qcbkzcs2mjrbx543jj0gh8hj0s0lnj3nlpk0b46";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring containers directory filepath HsYAML
- language-docker megaparsec mtl ShellCheck split text void
+ aeson async base bytestring containers directory filepath HsYAML
+ language-docker megaparsec mtl parallel ShellCheck split text void
];
executableHaskellDepends = [
base containers gitrev language-docker megaparsec
@@ -113529,8 +112350,6 @@ self: {
];
description = "A service for pull-based continuous deployment based on hydra";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hailgun" = callPackage
@@ -113781,47 +112600,10 @@ self: {
}:
mkDerivation {
pname = "hakyll";
- version = "4.13.4.0";
- sha256 = "0gcs79jmpayndfsmmb40avrgyl4f0f1brprm2l0mvybfah84h2m3";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base binary blaze-html blaze-markup bytestring containers
- cryptonite data-default deepseq directory file-embed filepath
- fsnotify http-conduit http-types lrucache memory mtl network-uri
- optparse-applicative pandoc pandoc-citeproc parsec process random
- regex-tdfa resourcet scientific tagsoup template-haskell text time
- time-locale-compat unordered-containers vector wai wai-app-static
- warp yaml
- ];
- executableHaskellDepends = [ base directory filepath ];
- testHaskellDepends = [
- base bytestring containers filepath QuickCheck tasty tasty-hunit
- tasty-quickcheck text unordered-containers yaml
- ];
- testToolDepends = [ utillinux ];
- description = "A static website compiler library";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {inherit (pkgs) utillinux;};
-
- "hakyll_4_13_4_1" = callPackage
- ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
- , containers, cryptonite, data-default, deepseq, directory
- , file-embed, filepath, fsnotify, http-conduit, http-types
- , lrucache, memory, mtl, network-uri, optparse-applicative, pandoc
- , pandoc-citeproc, parsec, process, QuickCheck, random, regex-tdfa
- , resourcet, scientific, tagsoup, tasty, tasty-hunit
- , tasty-quickcheck, template-haskell, text, time
- , time-locale-compat, unordered-containers, utillinux, vector, wai
- , wai-app-static, warp, yaml
- }:
- mkDerivation {
- pname = "hakyll";
version = "4.13.4.1";
sha256 = "1z9k3029bjyxy2aqmqr6gzsva50154y4bfxqkmsjgl38lx3s6kk9";
+ revision = "1";
+ editedCabalFile = "1hv80gqq50zz791620lgdvkspspii0z59ngj7la69cdw2739cc5g";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -113979,6 +112761,31 @@ self: {
broken = true;
}) {};
+ "hakyll-contrib-i18n" = callPackage
+ ({ mkDerivation, base, binary-instances, bytestring, filepath
+ , hakyll, pandoc, pandoc-include-code, pandoc-types, text, time
+ , time-locale-compat, unordered-containers, yaml
+ }:
+ mkDerivation {
+ pname = "hakyll-contrib-i18n";
+ version = "0.1.1.0";
+ sha256 = "1jmw3ns8s0l974b2xb6ylwd0swjcq69fwpakb4g4k2rvhqnzd6jg";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base binary-instances bytestring filepath hakyll text time
+ time-locale-compat unordered-containers yaml
+ ];
+ executableHaskellDepends = [
+ base filepath hakyll pandoc pandoc-include-code pandoc-types
+ unordered-containers
+ ];
+ description = "A Hakyll library for internationalization";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hakyll-contrib-links" = callPackage
({ mkDerivation, base, binary, containers, hakyll, pandoc
, pandoc-types, parsec, QuickCheck, test-framework
@@ -114001,26 +112808,31 @@ self: {
}) {};
"hakyll-convert" = callPackage
- ({ mkDerivation, base, binary, bytestring, cmdargs, containers
- , data-default, directory, feed, filepath, hakyll, text, time, xml
+ ({ mkDerivation, base, bytestring, cmdargs, containers
+ , data-default, directory, feed, filepath, tasty
+ , tasty-expected-failure, tasty-golden, tasty-hunit
+ , tasty-quickcheck, temporary, text, time, xml-conduit, xml-types
}:
mkDerivation {
pname = "hakyll-convert";
- version = "0.2.0.0";
- sha256 = "0p4qxpspmm6b5cdq0jjx56yidwi82mrzq3zv7diryvbcbb6smzi7";
+ version = "0.3.0.3";
+ sha256 = "0i5g4xs0az8znisl8vm60r3m2y3s9dhh8cdb0bl8c5ikqcrlscjf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base binary bytestring containers data-default feed filepath hakyll
- text time xml
+ base bytestring containers data-default directory feed filepath
+ text time xml-conduit xml-types
];
executableHaskellDepends = [
- base bytestring cmdargs directory feed filepath text time xml
+ base cmdargs filepath text xml-types
+ ];
+ testHaskellDepends = [
+ base bytestring data-default directory feed filepath tasty
+ tasty-expected-failure tasty-golden tasty-hunit tasty-quickcheck
+ temporary text time xml-types
];
description = "Convert from other blog engines to Hakyll";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hakyll-dhall" = callPackage
@@ -114096,8 +112908,8 @@ self: {
}:
mkDerivation {
pname = "hakyll-filestore";
- version = "0.1.7";
- sha256 = "1xwx58dpwzvl4nk92k357bwxl88wvngkicj4d266gmxmq6j4pg52";
+ version = "0.1.8";
+ sha256 = "02lza2nkq2y2m9zb03ipmgd0cnfjv38cyym7jbakg7v8arkymcrc";
libraryHaskellDepends = [
base filestore hakyll time time-locale-compat
];
@@ -114114,8 +112926,8 @@ self: {
}:
mkDerivation {
pname = "hakyll-images";
- version = "0.4.4";
- sha256 = "0d837i2nsg6drwfsrxfnpzmzmzxqxvabjlrlml38z99pyp7m3h9b";
+ version = "1.0.0";
+ sha256 = "0433jha6rnw4c80igx6hka9a943b9qimscyda93mgn7v7pakw6l2";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base binary bytestring hakyll JuicyPixels JuicyPixels-extra
@@ -114247,15 +113059,15 @@ self: {
}) {};
"hakyll-typescript" = callPackage
- ({ mkDerivation, base, bytestring, directory, hakyll, hjsmin, tasty
- , tasty-hunit, typed-process
+ ({ mkDerivation, base, bytestring, directory, hakyll
+ , hakyll-process, hjsmin, tasty, tasty-hunit
}:
mkDerivation {
pname = "hakyll-typescript";
- version = "0.0.1.0";
- sha256 = "1vhkhbmy0pflcnzfhb9gck436rr5wr6hfpcb3sz8r27l1fml26ji";
+ version = "0.0.2.0";
+ sha256 = "03vxfv693grnyrkr3qz9vxh97dmaw1qqnb4hrfi8hpkqb094yw5d";
libraryHaskellDepends = [
- base bytestring hakyll hjsmin typed-process
+ base bytestring hakyll hakyll-process hjsmin
];
testHaskellDepends = [ base directory hakyll tasty tasty-hunit ];
description = "Typescript and javascript hakyll compilers";
@@ -114433,6 +113245,8 @@ self: {
];
description = "Library implementing Halma rules";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"halma-gui" = callPackage
@@ -114552,6 +113366,8 @@ self: {
];
testHaskellDepends = [ base bytestring ];
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hamid" = callPackage
@@ -115035,8 +113851,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A deployment library for Haskell applications";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"happindicator" = callPackage
@@ -115264,16 +114078,14 @@ self: {
}:
mkDerivation {
pname = "happstack-clientsession";
- version = "7.3.1";
- sha256 = "1sl67wdzaf6j773iapjnc1v2k19ycd18irkdpb4px1a1mq6ym0sv";
+ version = "7.3.2";
+ sha256 = "0kl4g1y68hnj188n5a7hkj4a9s70943f837yyijanwahnmkgi1nc";
libraryHaskellDepends = [
base bytestring cereal clientsession happstack-server monad-control
mtl safecopy transformers-base
];
description = "client-side session data";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"happstack-contrib" = callPackage
@@ -115498,8 +114310,8 @@ self: {
}:
mkDerivation {
pname = "happstack-hsp";
- version = "7.3.7.4";
- sha256 = "188fqqpq7m921qkfv2b64pikcx8zzsy376l4py4wxlkabl7fkydr";
+ version = "7.3.7.5";
+ sha256 = "1krjas0id8an3ry83xrgxl9cb18n17r394ivz05c45mwan6sbpqf";
libraryHaskellDepends = [
base bytestring happstack-server harp hsp hsx2hs mtl syb text
utf8-string
@@ -115552,8 +114364,8 @@ self: {
}:
mkDerivation {
pname = "happstack-jmacro";
- version = "7.0.12.2";
- sha256 = "0zgmh75z59g6hs8n924sbnhswjdd6b947ywiird2a3y6d2zwqj3v";
+ version = "7.0.12.3";
+ sha256 = "1phhy9sq7hiz3c50k5wyclrsjqacw8mcdyg80h3xi43zgjmff23w";
libraryHaskellDepends = [
base base64-bytestring bytestring cereal digest happstack-server
jmacro text utf8-string wl-pprint-text
@@ -115624,8 +114436,8 @@ self: {
}:
mkDerivation {
pname = "happstack-server";
- version = "7.6.1";
- sha256 = "0l4vfw7jslsjgm2mszlwxlm2mql6ppim2blhwpwd23r7hw8kx5xx";
+ version = "7.7.0";
+ sha256 = "0jyjnksgwvasnhwwn8scqms1kja4hzlbpn0lmyr6yng5n4989d0x";
libraryHaskellDepends = [
base base64-bytestring blaze-html bytestring containers directory
exceptions extensible-exceptions filepath hslogger html
@@ -115648,8 +114460,8 @@ self: {
}:
mkDerivation {
pname = "happstack-server-tls";
- version = "7.2.1";
- sha256 = "1cihzjxl1v5sgmaxn8qny8b9yzm7p1gccgy1iaa3dk2jpl07a2dp";
+ version = "7.2.1.1";
+ sha256 = "0bply7dxz2046h0v0ydkicjvl491k0llapf2shxjqnskjjr5rqnk";
libraryHaskellDepends = [
base bytestring extensible-exceptions happstack-server hslogger
HsOpenSSL network sendfile time unix
@@ -115713,8 +114525,6 @@ self: {
];
description = "Support for static URL routing with overlap detection for Happstack";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"happstack-util" = callPackage
@@ -115765,26 +114575,6 @@ self: {
broken = true;
}) {};
- "happy_1_19_5" = callPackage
- ({ mkDerivation, array, base, Cabal, containers, directory
- , filepath, mtl, process
- }:
- mkDerivation {
- pname = "happy";
- version = "1.19.5";
- sha256 = "1nj353q4z1g186fpjzf0dnsg71qhxqpamx8jy89rjjvv3p0kmw32";
- revision = "2";
- editedCabalFile = "1dvhv94lzmya938i5crshg9qbx7dxvkyxkhfbqimxkydxn7l2w7w";
- isLibrary = false;
- isExecutable = true;
- setupHaskellDepends = [ base Cabal directory filepath ];
- executableHaskellDepends = [ array base containers mtl ];
- testHaskellDepends = [ base process ];
- description = "Happy is a parser generator for Haskell";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"happy_1_19_9" = callPackage
({ mkDerivation, array, base, Cabal, containers, directory
, filepath, mtl, process
@@ -115809,21 +114599,6 @@ self: {
({ mkDerivation, array, base, containers, mtl, process }:
mkDerivation {
pname = "happy";
- version = "1.19.12";
- sha256 = "03xlmq6qmdx4zvzw8bp33kd9g7yvcq5cz4wg50xilw812kj276pv";
- isLibrary = false;
- isExecutable = true;
- enableSeparateDataOutput = true;
- executableHaskellDepends = [ array base containers mtl ];
- testHaskellDepends = [ base process ];
- description = "Happy is a parser generator for Haskell";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "happy_1_20_0" = callPackage
- ({ mkDerivation, array, base, containers, mtl, process }:
- mkDerivation {
- pname = "happy";
version = "1.20.0";
sha256 = "1346r2x5ravs5fqma65bzjragqbb2g6v41wz9maknwm2jf7kl79v";
isLibrary = false;
@@ -115833,7 +114608,6 @@ self: {
testHaskellDepends = [ base process ];
description = "Happy is a parser generator for Haskell";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happy-dot" = callPackage
@@ -115858,10 +114632,8 @@ self: {
({ mkDerivation, base, Chart, Chart-diagrams }:
mkDerivation {
pname = "happy-hour";
- version = "0.0.0.1";
- sha256 = "1dhqgv7q2qw9fc19mpsnfkc4y3h0d68433p2mrpx5fz81slfy4cf";
- revision = "1";
- editedCabalFile = "1yvz6nbqwxjyw7ffs95na7x75xc9ap8hp6m5jdvfqlgqcwlzmd6j";
+ version = "0.0.0.2";
+ sha256 = "1pj61x1ynspk3avfsy9735blzggz78r4b35gin1bza619gp9yzsb";
libraryHaskellDepends = [ base Chart Chart-diagrams ];
description = "Generate simple okay-looking bar plots without much effort";
license = stdenv.lib.licenses.mit;
@@ -116254,6 +115026,8 @@ self: {
];
description = "Haskell driver for Neo4j 3+ (BOLT protocol)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hasbolt-extras" = callPackage
@@ -116279,6 +115053,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Extras for hasbolt library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hascal" = callPackage
@@ -116320,8 +115096,6 @@ self: {
];
description = "Decompress SAPCAR archives";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hascard" = callPackage
@@ -116333,8 +115107,8 @@ self: {
}:
mkDerivation {
pname = "hascard";
- version = "0.4.0.0";
- sha256 = "1rkcnpv22bfiyzmfdk82531yv6mh6g7imjch9qy8sxda2d73fdm7";
+ version = "0.5.0.0";
+ sha256 = "1lic3s5z3rq2m3hpf9626k8k3a8vrx267afavzvzcngkfdl3bfap";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -117315,6 +116089,8 @@ self: {
doHaddock = false;
description = "Cabal package script generator for Travis-CI";
license = stdenv.lib.licenses.gpl3Plus;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-cnc" = callPackage
@@ -117386,6 +116162,8 @@ self: {
];
description = "Core Types for NLP";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-course-preludes" = callPackage
@@ -117512,14 +116290,12 @@ self: {
({ mkDerivation, base, syb, template-haskell }:
mkDerivation {
pname = "haskell-exp-parser";
- version = "0.1.3";
- sha256 = "0cswfpdw6sgmd0fhdpyfi2nk0mhvl8xpv4zfkl9l3wdk5ipbcxdf";
+ version = "0.1.4";
+ sha256 = "0adz1bazcayyhlwpcqn7nn73pv1mwmagslq0b3mjpgr9wg8lx2ys";
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base syb template-haskell ];
description = "Simple parser parser from Haskell to TemplateHaskell expressions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haskell-fake-user-agent" = callPackage
@@ -117533,8 +116309,6 @@ self: {
libraryHaskellDepends = [ base bytestring lens tagsoup wreq ];
description = "Simple library for retrieving current user agent strings";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haskell-formatter" = callPackage
@@ -117545,8 +116319,8 @@ self: {
}:
mkDerivation {
pname = "haskell-formatter";
- version = "2.0.2";
- sha256 = "0rnx34nkgw4zsyagl38vqd322fzp3kfi16p60dhffadga8v4gajd";
+ version = "2.0.3";
+ sha256 = "16r5pq9sk5ra4ba29w6i88pcfwasffrfd85yhran68b6d8d7s2aj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -117635,35 +116409,14 @@ self: {
"haskell-gi" = callPackage
({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal
- , containers, directory, doctest, filepath, glib
- , gobject-introspection, haskell-gi-base, mtl, pretty-show, process
- , regex-tdfa, safe, text, transformers, xdg-basedir, xml-conduit
- }:
- mkDerivation {
- pname = "haskell-gi";
- version = "0.23.1";
- sha256 = "1jvl9b229b43pcnp9fadkls7ym9laqyjcdzwxzdc4j2mpchysva8";
- libraryHaskellDepends = [
- ansi-terminal attoparsec base bytestring Cabal containers directory
- filepath haskell-gi-base mtl pretty-show process regex-tdfa safe
- text transformers xdg-basedir xml-conduit
- ];
- libraryPkgconfigDepends = [ glib gobject-introspection ];
- testHaskellDepends = [ attoparsec base doctest process ];
- description = "Generate Haskell bindings for GObject Introspection capable libraries";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;};
-
- "haskell-gi_0_24_5" = callPackage
- ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal
, cabal-doctest, containers, directory, doctest, filepath, glib
, gobject-introspection, haskell-gi-base, mtl, pretty-show, process
, regex-tdfa, safe, text, transformers, xdg-basedir, xml-conduit
}:
mkDerivation {
pname = "haskell-gi";
- version = "0.24.5";
- sha256 = "0cb7qbi92zgqv9nx0v6pggw3lwv931hpph2jnrbmr1vl7sz48rqn";
+ version = "0.24.7";
+ sha256 = "10xp6z6whfx3iad09l83mcszzj99cc9wcnvk593ypx6zhjv0r555";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
ansi-terminal attoparsec base bytestring Cabal containers directory
@@ -117674,46 +116427,20 @@ self: {
testHaskellDepends = [ base doctest process ];
description = "Generate Haskell bindings for GObject Introspection capable libraries";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;};
"haskell-gi-base" = callPackage
({ mkDerivation, base, bytestring, containers, glib, text }:
mkDerivation {
pname = "haskell-gi-base";
- version = "0.23.0";
- sha256 = "1f22d4pvmyy52w9hqa36b6psw34j562rayqgk052ng1ax9yvwzn0";
- libraryHaskellDepends = [ base bytestring containers text ];
- libraryPkgconfigDepends = [ glib ];
- description = "Foundation for libraries generated by haskell-gi";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "haskell-gi-base_0_24_3" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib, text }:
- mkDerivation {
- pname = "haskell-gi-base";
- version = "0.24.3";
- sha256 = "007qy63s9d6rdhybnd7cfb5jsx0kzg7lbgximxkh5rd66bjbk9pc";
+ version = "0.24.5";
+ sha256 = "0fd5bsf2bnjaq9j8zs9l5837z9x2iryivs57y96c7fx6vxxb9xai";
libraryHaskellDepends = [ base bytestring containers text ];
libraryPkgconfigDepends = [ glib ];
description = "Foundation for libraries generated by haskell-gi";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
- "haskell-gi-overloading_0_0" = callPackage
- ({ mkDerivation }:
- mkDerivation {
- pname = "haskell-gi-overloading";
- version = "0.0";
- sha256 = "1smz5fr5saw1l129h21qcywyp47mrbf7355kmwkspjh75yl2gix5";
- doHaddock = false;
- description = "Overloading support for haskell-gi";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"haskell-gi-overloading" = callPackage
({ mkDerivation }:
mkDerivation {
@@ -117756,8 +116483,6 @@ self: {
];
description = "Simple library for accessing Google Trends";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haskell-holes-th" = callPackage
@@ -117770,6 +116495,8 @@ self: {
testHaskellDepends = [ base template-haskell transformers ];
description = "Infer haskell code by given type";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-igraph" = callPackage
@@ -117792,6 +116519,8 @@ self: {
];
description = "Bindings to the igraph C library (v0.8.0).";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-import-graph" = callPackage
@@ -118072,8 +116801,6 @@ self: {
];
description = "Name resolution library for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haskell-neo4j-client" = callPackage
@@ -118439,29 +117166,8 @@ self: {
libraryToolDepends = [ happy ];
description = "Support for manipulating Haskell source code";
license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-src-exts_1_19_1" = callPackage
- ({ mkDerivation, array, base, containers, cpphs, directory
- , filepath, ghc-prim, happy, mtl, pretty, pretty-show, smallcheck
- , tasty, tasty-golden, tasty-smallcheck
- }:
- mkDerivation {
- pname = "haskell-src-exts";
- version = "1.19.1";
- sha256 = "0wd93cqzdk1wq8csha8c8sphksi2jb3gr9g8rk3m9mkkfs3b5xgh";
- revision = "1";
- editedCabalFile = "120jvvksnzj3dfgxx1774asalw4wn2i507n3lyhfp95k9z1ny5rh";
- libraryHaskellDepends = [ array base cpphs ghc-prim pretty ];
- libraryToolDepends = [ happy ];
- testHaskellDepends = [
- base containers directory filepath mtl pretty-show smallcheck tasty
- tasty-golden tasty-smallcheck
- ];
- doCheck = false;
- description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
- license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskell-src-exts" = callPackage
@@ -119166,23 +117872,28 @@ self: {
}) {};
"haskell-xmpp" = callPackage
- ({ mkDerivation, array, base, HaXml, html, mtl, network, polyparse
- , pretty, random, regex-compat, stm, utf8-string
+ ({ mkDerivation, aeson, array, base, blaze-markup, bytestring
+ , HaXml, hspec, hspec-discover, html, http-client, http-conduit
+ , mtl, network, network-bsd, polyparse, pretty, random
+ , regex-compat, singlethongs, stm, text, time, unliftio
+ , utf8-string, uuid, xml-conduit, xml-hamlet
}:
mkDerivation {
pname = "haskell-xmpp";
- version = "1.0.2";
- sha256 = "1z4x4mn0vry8mwq6ily668ignmf4s9m92fmga15dr83y7aq5wd59";
+ version = "2.0.1";
+ sha256 = "0x06a43h930ad17shvc8iwibkpgbfk6lkkr9mnp0xnwaf6kzrf47";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- array base HaXml html mtl network polyparse pretty random
- regex-compat stm utf8-string
+ aeson array base blaze-markup bytestring HaXml html http-client
+ http-conduit mtl network network-bsd polyparse pretty random
+ regex-compat singlethongs stm text time unliftio utf8-string uuid
+ xml-conduit xml-hamlet
];
+ executableHaskellDepends = [ base hspec text ];
+ executableToolDepends = [ hspec-discover ];
description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haskell2010" = callPackage
@@ -119965,36 +118676,6 @@ self: {
"haskoin-core" = 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.13.4";
- sha256 = "0bxn1jfb2s308gpdiwwnvar606qc3fqnvf6k0hdz2x43pqkc15lb";
- libraryHaskellDepends = [
- aeson array base base16-bytestring bytestring cereal conduit
- containers cryptonite deepseq entropy hashable memory mtl murmur3
- network safe scientific secp256k1-haskell split string-conversions
- text time transformers unordered-containers vector
- ];
- testHaskellDepends = [
- 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
- ];
- testToolDepends = [ hspec-discover ];
- description = "Bitcoin & Bitcoin Cash library for Haskell";
- license = stdenv.lib.licenses.publicDomain;
- }) {};
-
- "haskoin-core_0_15_0" = callPackage
- ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring
- , cereal, conduit, containers, cryptonite, deepseq, entropy
, hashable, hspec, hspec-discover, HUnit, lens, lens-aeson, memory
, mtl, murmur3, network, QuickCheck, safe, scientific
, secp256k1-haskell, split, string-conversions, text, time
@@ -120002,8 +118683,8 @@ self: {
}:
mkDerivation {
pname = "haskoin-core";
- version = "0.15.0";
- sha256 = "1mvhp7khbjf3wxvgwgdxgbl8ylb4vhgiirq50dwi62p65w75xw1v";
+ version = "0.17.5";
+ sha256 = "1isfxzn5gz7py469mh9m6jd430w9alp0x8b75rymd3sp2ihwc3mz";
libraryHaskellDepends = [
aeson array base base16-bytestring bytestring cereal conduit
containers cryptonite deepseq entropy hashable hspec memory mtl
@@ -120022,6 +118703,7 @@ self: {
description = "Bitcoin & Bitcoin Cash library for Haskell";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskoin-crypto" = callPackage
@@ -120052,46 +118734,14 @@ self: {
({ mkDerivation, base, base64, bytestring, cereal, conduit
, conduit-extra, containers, data-default, hashable, haskoin-core
, hspec, hspec-discover, HUnit, monad-logger, mtl, network, nqe
- , random, resourcet, rocksdb-haskell, rocksdb-query, safe
- , string-conversions, text, time, transformers, unliftio
- , unordered-containers
- }:
- mkDerivation {
- pname = "haskoin-node";
- version = "0.13.0";
- sha256 = "0s6l25n9w4g5r2xafb6x1gdqaghfmrnzh9i3nn64c3g26xzk3vnp";
- libraryHaskellDepends = [
- base bytestring cereal conduit conduit-extra containers
- data-default hashable haskoin-core monad-logger mtl network nqe
- random resourcet rocksdb-haskell rocksdb-query string-conversions
- text time transformers unliftio unordered-containers
- ];
- testHaskellDepends = [
- base base64 bytestring cereal conduit conduit-extra containers
- data-default hashable haskoin-core hspec HUnit monad-logger mtl
- network nqe random resourcet rocksdb-haskell rocksdb-query safe
- string-conversions text time transformers unliftio
- unordered-containers
- ];
- testToolDepends = [ hspec-discover ];
- description = "Haskoin Node P2P library for Bitcoin and Bitcoin Cash";
- license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "haskoin-node_0_16_0" = callPackage
- ({ mkDerivation, base, base64, bytestring, cereal, conduit
- , conduit-extra, containers, data-default, hashable, haskoin-core
- , hspec, hspec-discover, HUnit, monad-logger, mtl, network, nqe
, random, resourcet, rocksdb-haskell-jprupp, rocksdb-query, safe
, string-conversions, text, time, transformers, unliftio
, unordered-containers
}:
mkDerivation {
pname = "haskoin-node";
- version = "0.16.0";
- sha256 = "0az8lv5xkbhfff9hq3r0kndz2hp3q6f1h6za85qj8v5755za61c8";
+ version = "0.17.1";
+ sha256 = "07p58jf2vn7hyk260ijimg2lyg3jcsqnza8v6kjcn6rjlsvcakvp";
libraryHaskellDepends = [
base bytestring cereal conduit conduit-extra containers
data-default hashable haskoin-core monad-logger mtl network nqe
@@ -120171,8 +118821,8 @@ self: {
}:
mkDerivation {
pname = "haskoin-store";
- version = "0.37.5";
- sha256 = "0ac1znif59fzcxcl3nmvrv6v49rzlcgsv138zgjnk7zxarp8alyg";
+ version = "0.38.4";
+ sha256 = "1kiqib85rblq9y8mz5fsiqv4w9i5bzqj6h62yxd7riigc82h10g3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -120186,9 +118836,10 @@ self: {
executableHaskellDepends = [
aeson aeson-pretty base bytestring cereal conduit containers
data-default deepseq filepath hashable haskoin-core haskoin-node
- haskoin-store-data monad-logger mtl nqe optparse-applicative random
- string-conversions text time transformers unliftio
- unordered-containers
+ haskoin-store-data hedis http-types monad-logger mtl network nqe
+ optparse-applicative random rocksdb-haskell-jprupp rocksdb-query
+ scotty string-conversions text time transformers unliftio
+ unordered-containers wai warp
];
testHaskellDepends = [
aeson aeson-pretty base base64 bytestring cereal conduit containers
@@ -120213,8 +118864,8 @@ self: {
}:
mkDerivation {
pname = "haskoin-store-data";
- version = "0.37.5";
- sha256 = "1p8hsnwr0h0sbnwg1kwbal36q4bh3s0daz1a5n2c8xal5xdkbdra";
+ version = "0.38.1";
+ sha256 = "0x3p0fylfc8llv94nmjaz9537qp2jwm5zlbs8mw7b4lh9z69f3ba";
libraryHaskellDepends = [
aeson base bytestring cereal containers data-default deepseq
hashable haskoin-core http-client http-types lens mtl network
@@ -120476,8 +119127,6 @@ self: {
];
description = "Simple unsupervised segmentation model";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hasktags" = callPackage
@@ -120888,6 +119537,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Haskus data utility modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskus-utils-types" = callPackage
@@ -120902,6 +119553,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Haskus types utility modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskus-utils-variant" = callPackage
@@ -120924,6 +119577,8 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ];
description = "Variant and EADT";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"haskus-web" = callPackage
@@ -121079,34 +119734,6 @@ self: {
}:
mkDerivation {
pname = "hasql";
- version = "1.4.3";
- sha256 = "1g9xm2md7zaja3kka6jdgdkjnp1vj96b7hjgymvjcd0dp59kkd2q";
- 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;
- }) {};
-
- "hasql_1_4_4_2" = 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.4.2";
sha256 = "09j532mcgs9q1gwr7czvcd85byf3ds3gs4nr5cvlajv4ciaym0di";
libraryHaskellDepends = [
@@ -121122,7 +119749,6 @@ self: {
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
@@ -121266,8 +119892,6 @@ self: {
];
description = "Implicit definitions for Hasql, such as default codecs for standard types";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hasql-migration" = callPackage
@@ -121325,8 +119949,6 @@ self: {
];
description = "\"optparse-applicative\" parsers for \"hasql\"";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hasql-pipes" = callPackage
@@ -121514,8 +120136,6 @@ self: {
];
description = "composable SQL generation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hastache" = callPackage
@@ -121890,6 +120510,28 @@ self: {
broken = true;
}) {};
+ "haveibeenpwned" = callPackage
+ ({ mkDerivation, base, bytestring, cryptonite, data-default
+ , http-client, http-client-tls, http-types, monad-logger, mtl, safe
+ , text
+ }:
+ mkDerivation {
+ pname = "haveibeenpwned";
+ version = "0.2.0.1";
+ sha256 = "0zbxqhn76cknqmilzv7s11hwbq09if6pyc5p111vnxpd7xas6hwl";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring cryptonite data-default http-client http-types
+ monad-logger mtl safe text
+ ];
+ executableHaskellDepends = [
+ base http-client http-client-tls monad-logger text
+ ];
+ description = "Library for checking for weak/compromised passwords";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"haven" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, http-conduit, http-types, mtl, process, SHA, temporary
@@ -121989,30 +120631,28 @@ self: {
"haxl" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, containers
- , deepseq, exceptions, filepath, ghc-prim, hashable, HUnit, pretty
- , stm, test-framework, test-framework-hunit, text, time
- , transformers, unordered-containers, vector
+ , deepseq, exceptions, filepath, ghc-prim, hashable, hashtables
+ , HUnit, pretty, stm, test-framework, test-framework-hunit, text
+ , time, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "haxl";
- version = "2.1.2.0";
- sha256 = "1lwm9rs9r0qs32n3nw49j3sz41qzq2wxv0a9gpiziaw0sjlk00jy";
+ version = "2.3.0.0";
+ sha256 = "149k26iaas3sb9qyagzjkb0n86k34nf0r06fyvvqyap1w476fd3c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base binary bytestring containers deepseq exceptions filepath
- ghc-prim hashable pretty stm text time transformers
+ ghc-prim hashable hashtables pretty stm text time transformers
unordered-containers vector
];
testHaskellDepends = [
aeson base binary bytestring containers deepseq filepath hashable
- HUnit test-framework test-framework-hunit text time
+ hashtables HUnit test-framework test-framework-hunit text time
unordered-containers
];
description = "A Haskell library for efficient, concurrent, and concise data access";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"haxl-amazonka" = callPackage
@@ -123143,8 +121783,8 @@ self: {
}:
mkDerivation {
pname = "hdocs";
- version = "0.5.4.0";
- sha256 = "1qj7kcpfwpsgzbmhiix22n66173kgxqgf3fb6mc2ybdc4zmkfa29";
+ version = "0.5.5.0";
+ sha256 = "1bwwvqlxpjh77fi443ay269i8n9cxzdv7nspql6lrks9wh8jf8cf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -123265,39 +121905,15 @@ self: {
}) {};
"headroom" = callPackage
- ({ mkDerivation, aeson, base, doctest, either, file-embed, hspec
- , mustache, optparse-applicative, pcre-light, QuickCheck, rio, time
- , yaml
- }:
- mkDerivation {
- pname = "headroom";
- version = "0.2.2.1";
- sha256 = "02s1s6v0fsn5a2anpi91za3dqafcp50lckr4xpir270l66lzdc2g";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base either file-embed mustache optparse-applicative
- pcre-light rio time yaml
- ];
- executableHaskellDepends = [ base optparse-applicative rio ];
- testHaskellDepends = [
- aeson base doctest hspec optparse-applicative pcre-light QuickCheck
- rio
- ];
- description = "License Header Manager";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "headroom_0_3_1_0" = callPackage
({ mkDerivation, aeson, base, data-default-class, doctest, either
- , file-embed, hspec, microlens, microlens-th, mustache
- , optparse-applicative, pcre-heavy, pcre-light, QuickCheck, rio
- , template-haskell, time, yaml
+ , file-embed, hspec, hspec-discover, microlens, microlens-th
+ , mustache, optparse-applicative, pcre-heavy, pcre-light
+ , QuickCheck, rio, template-haskell, time, yaml
}:
mkDerivation {
pname = "headroom";
- version = "0.3.1.0";
- sha256 = "0md8yzjq92xc9pq9h8a78irgyka23ck7nlhdbdyfnm2f490fx2yw";
+ version = "0.3.2.0";
+ sha256 = "0770d1b8ikijkmqqnb6nygqj7cv6fphz1165x478ry61sr3i6hs3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -123310,9 +121926,9 @@ self: {
aeson base doctest hspec optparse-applicative pcre-light QuickCheck
rio time
];
+ testToolDepends = [ hspec-discover ];
description = "License Header Manager";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"heap" = callPackage
@@ -123327,6 +121943,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "heap-console" = callPackage
+ ({ mkDerivation, base, containers, exceptions, ghc-heap, ghc-prim
+ , haskeline, hspec, hspec-discover, mtl, show-combinators
+ }:
+ mkDerivation {
+ pname = "heap-console";
+ version = "0.1.0.1";
+ sha256 = "1z2sdw64w50q2353ccsjpahncdp8czihpkizclgvx1gkqiv9mv02";
+ libraryHaskellDepends = [
+ base containers exceptions ghc-heap ghc-prim haskeline mtl
+ show-combinators
+ ];
+ testHaskellDepends = [ base hspec ];
+ testToolDepends = [ hspec-discover ];
+ description = "interactively inspect Haskell values at runtime";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"heaps" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -123339,15 +121975,17 @@ self: {
}) {};
"heapsize" = callPackage
- ({ mkDerivation, base, criterion, deepseq, ghc-heap, hashable
- , primitive, unordered-containers
+ ({ mkDerivation, base, criterion, deepseq, exceptions, ghc-heap
+ , hashable, hashtables, primitive, transformers
+ , unordered-containers
}:
mkDerivation {
pname = "heapsize";
- version = "0.1";
- sha256 = "0cmzmz6f572is70sp79fxriywl5d19rcb8c32x22c2yazyl6c6d9";
+ version = "0.3.0";
+ sha256 = "14i4yfk8qfpkcajb9h500dx4s5mqnpvfnyh1v3rp8pxcb93ffgc1";
libraryHaskellDepends = [
- base deepseq ghc-heap hashable primitive unordered-containers
+ base deepseq exceptions ghc-heap hashable hashtables primitive
+ transformers unordered-containers
];
benchmarkHaskellDepends = [ base criterion deepseq primitive ];
description = "Determine the size of runtime data structures";
@@ -123416,6 +122054,8 @@ self: {
libraryHaskellDepends = [ async base io-streams time ];
description = "Heartbeats for io-streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"heatitup" = callPackage
@@ -123706,8 +122346,6 @@ self: {
];
description = "Hedgehog will eat your typeclass bugs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hedgehog-corpus" = callPackage
@@ -123759,8 +122397,6 @@ self: {
];
description = "Customizable Gen for ADT using Generics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hedgehog-gen-json" = callPackage
@@ -123853,6 +122489,8 @@ self: {
];
description = "Hedgehog property testing for Servant APIs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hedis" = callPackage
@@ -123864,33 +122502,8 @@ self: {
}:
mkDerivation {
pname = "hedis";
- version = "0.12.14";
- sha256 = "14qd248ccijakksbaj72nwz8dx8qg4bifla3p0vsm6v96xb2qjbw";
- libraryHaskellDepends = [
- async base bytestring bytestring-lexing deepseq errors exceptions
- HTTP mtl network network-uri resource-pool scanner stm text time
- tls unordered-containers vector
- ];
- testHaskellDepends = [
- async base bytestring doctest HUnit mtl stm test-framework
- test-framework-hunit text time
- ];
- benchmarkHaskellDepends = [ base mtl time ];
- description = "Client library for the Redis datastore: supports full command set, pipelining";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hedis_0_12_15" = callPackage
- ({ mkDerivation, async, base, bytestring, bytestring-lexing
- , deepseq, doctest, errors, exceptions, HTTP, HUnit, mtl, network
- , network-uri, resource-pool, scanner, stm, test-framework
- , test-framework-hunit, text, time, tls, unordered-containers
- , vector
- }:
- mkDerivation {
- pname = "hedis";
- version = "0.12.15";
- sha256 = "0zkavyx4nbdrwl5sywl2rn9lmakpfw2jgs8sjqzjsnnkbk62i33j";
+ version = "0.13.1";
+ sha256 = "1x1hm0cw0ccx3zcwirs5m3fkbvqc2mcyn5pvsx5fczzpnwzj4d2g";
libraryHaskellDepends = [
async base bytestring bytestring-lexing deepseq errors exceptions
HTTP mtl network network-uri resource-pool scanner stm text time
@@ -123903,7 +122516,6 @@ self: {
benchmarkHaskellDepends = [ base mtl time ];
description = "Client library for the Redis datastore: supports full command set, pipelining";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hedis-config" = callPackage
@@ -123962,6 +122574,8 @@ self: {
testHaskellDepends = [ base ];
description = "Initial project template from stack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hedis-pile" = callPackage
@@ -124026,10 +122640,8 @@ self: {
}:
mkDerivation {
pname = "hedn";
- version = "0.3.0.1";
- sha256 = "02pwwxdgw3kkqwckap9mf015bbd27mgblfz7k4y63v0gppw6fqm7";
- revision = "1";
- editedCabalFile = "0nbkc1hj0b5q2c3mcz6v2drq8mrh06aryq7gy8cnhhiqzwflk1fh";
+ version = "0.3.0.2";
+ sha256 = "1w9p9h06rgz80153b2q59bblpn124nicn1sscyyjc1cfwda2h0b4";
libraryHaskellDepends = [
base containers deepseq deriving-compat megaparsec
parser-combinators prettyprinter scientific template-haskell text
@@ -124646,8 +123258,8 @@ self: {
}:
mkDerivation {
pname = "hercules-ci-agent";
- version = "0.7.4";
- sha256 = "0yj9njd168xpj4har99mbb9rr5dqsbnzqs1061s3czrzlp229z3l";
+ version = "0.7.5";
+ sha256 = "0v3wyz8fm3n6rwanjgfxws6f18kp3qmgwx5g4f0xy00mxjzswjrq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -124796,8 +123408,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "haskell time manipulation in a 'kerf like' style";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hermit" = callPackage
@@ -124910,8 +123520,6 @@ self: {
testHaskellDepends = [ base hspec persistent-postgresql ];
description = "Parse DATABASE_URL into configuration types for Persistent";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"herringbone" = callPackage
@@ -125058,24 +123666,6 @@ self: {
}:
mkDerivation {
pname = "heterocephalus";
- version = "1.0.5.3";
- sha256 = "0kvrv15xm6igd6nkyfij1h982jqpbf61pzinv8jdb4fcjqwf08s7";
- libraryHaskellDepends = [
- base blaze-html blaze-markup containers dlist mtl parsec
- shakespeare template-haskell text transformers
- ];
- testHaskellDepends = [ base doctest Glob ];
- description = "A type-safe template engine for working with popular front end development tools";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "heterocephalus_1_0_5_4" = callPackage
- ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist
- , doctest, Glob, mtl, parsec, shakespeare, template-haskell, text
- , transformers
- }:
- mkDerivation {
- pname = "heterocephalus";
version = "1.0.5.4";
sha256 = "06fv3bhnj80cjli1v2drkpkmx76i81cpawlci7agcxxd8fd8zplc";
libraryHaskellDepends = [
@@ -125085,7 +123675,6 @@ self: {
testHaskellDepends = [ base doctest Glob ];
description = "A type-safe template engine for working with front end development tools";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"heterogeneous-list-literals" = callPackage
@@ -125157,34 +123746,34 @@ self: {
"hevm" = callPackage
({ mkDerivation, abstract-par, aeson, ansi-wl-pprint, async, base
- , base16-bytestring, binary, brick, bytestring, cborg, cereal
- , containers, cryptonite, data-dword, deepseq, directory, ff, fgl
- , filepath, free, haskeline, here, HUnit, lens, lens-aeson
- , megaparsec, memory, monad-par, mtl, multiset, operational
- , optparse-generic, process, QuickCheck, quickcheck-text
- , regex-tdfa, restless-git, rosezipper, s-cargot, sbv, scientific
- , secp256k1, semver-range, tasty, tasty-hunit, tasty-quickcheck
- , temporary, text, text-format, time, transformers, tree-view
- , unordered-containers, vector, vty, witherable, wreq
+ , base16-bytestring, binary, brick, bytestring, cereal, containers
+ , cryptonite, data-dword, deepseq, directory, fgl, filepath, free
+ , haskeline, here, HUnit, lens, lens-aeson, libff, megaparsec
+ , memory, monad-par, mtl, multiset, operational, optparse-generic
+ , process, QuickCheck, quickcheck-text, regex-tdfa, restless-git
+ , rosezipper, s-cargot, sbv, scientific, secp256k1, semver-range
+ , tasty, tasty-hunit, tasty-quickcheck, temporary, text
+ , text-format, time, transformers, tree-view, unordered-containers
+ , vector, vty, witherable, wreq
}:
mkDerivation {
pname = "hevm";
- version = "0.41.0";
- sha256 = "13qf0bh47dppqbxv1g07411c1lfmfxl0pm2s3xkwdf7kr219l0hw";
+ version = "0.42.0";
+ sha256 = "0p736bxsg91l7n82xad52j5gqvyx6ik7hbmlnnz5bsrnsm05maxz";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
abstract-par aeson ansi-wl-pprint base base16-bytestring binary
- brick bytestring cborg cereal containers cryptonite data-dword
- deepseq directory fgl filepath free haskeline lens lens-aeson
- megaparsec memory monad-par mtl multiset operational
- optparse-generic process QuickCheck quickcheck-text regex-tdfa
- restless-git rosezipper s-cargot sbv scientific semver-range
- temporary text text-format time transformers tree-view
- unordered-containers vector vty witherable wreq
+ brick bytestring cereal containers cryptonite data-dword deepseq
+ directory fgl filepath free haskeline lens lens-aeson megaparsec
+ memory monad-par mtl multiset operational optparse-generic process
+ QuickCheck quickcheck-text regex-tdfa restless-git rosezipper
+ s-cargot sbv scientific semver-range temporary text text-format
+ time transformers tree-view unordered-containers vector vty
+ witherable wreq
];
- librarySystemDepends = [ ff secp256k1 ];
+ librarySystemDepends = [ libff secp256k1 ];
executableHaskellDepends = [
aeson ansi-wl-pprint async base base16-bytestring binary brick
bytestring containers cryptonite data-dword deepseq directory
@@ -125200,9 +123789,7 @@ self: {
testSystemDepends = [ secp256k1 ];
description = "Ethereum virtual machine evaluator";
license = stdenv.lib.licenses.agpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {ff = null; inherit (pkgs) secp256k1;};
+ }) {inherit (pkgs) libff; inherit (pkgs) secp256k1;};
"hevolisa" = callPackage
({ mkDerivation, base, bytestring, cairo, filepath, haskell98 }:
@@ -125251,8 +123838,6 @@ self: {
libraryHaskellDepends = [ base bytestring ];
description = "Convert strings into hexadecimal and back";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hex-text" = callPackage
@@ -125260,12 +123845,14 @@ self: {
}:
mkDerivation {
pname = "hex-text";
- version = "0.1.0.0";
- sha256 = "0if46jkzd67jwp56vmvd021qq2vfzpmaf1v2w07cy0w61icfvjxr";
+ version = "0.1.0.2";
+ sha256 = "0wgqm1ziblgljrh679i44gvdq7bqym37y1lnnpb1mk7qlv664c9h";
libraryHaskellDepends = [ base base16-bytestring bytestring text ];
testHaskellDepends = [ base doctest ];
description = "ByteString-Text hexidecimal conversions";
- license = stdenv.lib.licenses.asl20;
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hexchat" = callPackage
@@ -125446,6 +124033,21 @@ self: {
broken = true;
}) {};
+ "hexpat-streamparser" = callPackage
+ ({ mkDerivation, base, bytestring, hexpat, List, mtl
+ , parser-combinators, text, transformers
+ }:
+ mkDerivation {
+ pname = "hexpat-streamparser";
+ version = "0.0.1";
+ sha256 = "09klv9if55rlhjrh7cw68kk9z3mrwm1p2agb7a23j8a68iga5gvi";
+ libraryHaskellDepends = [
+ base bytestring hexpat List mtl parser-combinators text
+ transformers
+ ];
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hexpat-tagsoup" = callPackage
({ mkDerivation, base, hexpat, tagsoup }:
mkDerivation {
@@ -125553,8 +124155,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "Generic and niche utility functions and more for Haskell";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hextream" = callPackage
@@ -126176,6 +124776,8 @@ self: {
testHaskellDepends = [ base QuickCheck ];
description = "Haskell interface to GMP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hgom" = callPackage
@@ -126513,34 +125115,6 @@ self: {
"hie-bios" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
, conduit, conduit-extra, containers, cryptohash-sha1, deepseq
- , directory, extra, file-embed, filepath, ghc, hslogger, process
- , tasty, tasty-hunit, temporary, text, time, transformers
- , unix-compat, unordered-containers, vector, yaml
- }:
- mkDerivation {
- pname = "hie-bios";
- version = "0.5.1";
- sha256 = "0b6kll3w8g0nb1ijz8kw39dmiksyaq30nk5b5gmdgjdycz5hp9vm";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base base16-bytestring bytestring conduit conduit-extra
- containers cryptohash-sha1 deepseq directory extra file-embed
- filepath ghc hslogger process temporary text time transformers
- unix-compat unordered-containers vector yaml
- ];
- executableHaskellDepends = [ base directory filepath ghc ];
- testHaskellDepends = [
- base directory extra filepath ghc tasty tasty-hunit text
- unordered-containers yaml
- ];
- description = "Set up a GHC API session";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hie-bios_0_7_1" = callPackage
- ({ mkDerivation, aeson, base, base16-bytestring, bytestring
- , conduit, conduit-extra, containers, cryptohash-sha1, deepseq
, directory, extra, file-embed, filepath, ghc, hslogger
, hspec-expectations, process, tasty, tasty-expected-failure
, tasty-hunit, temporary, text, time, transformers, unix-compat
@@ -126568,7 +125142,22 @@ self: {
];
description = "Set up a GHC API session";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hie-compat" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, directory
+ , filepath, ghc, ghc-boot, transformers
+ }:
+ mkDerivation {
+ pname = "hie-compat";
+ version = "0.1.0.0";
+ sha256 = "00wnb7ylahglw167n2n1b2a6b0b75ay167zzrl10jsskivxwx3h3";
+ libraryHaskellDepends = [
+ array base bytestring containers directory filepath ghc ghc-boot
+ transformers
+ ];
+ description = "HIE files for GHC 8.6 and other HIE file backports";
+ license = stdenv.lib.licenses.asl20;
}) {};
"hie-core" = callPackage
@@ -126652,6 +125241,8 @@ self: {
];
description = "Draw diagrams of dendrograms made by hierarchical-clustering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hierarchical-exceptions" = callPackage
@@ -126804,27 +125395,6 @@ self: {
}:
mkDerivation {
pname = "higher-leveldb";
- version = "0.5.0.2";
- sha256 = "1wmgz2aqz0vg0fnnigpg27gnzs9i6slyn6lb41myv6m20j0j5z1a";
- libraryHaskellDepends = [
- base bytestring cereal data-default exceptions leveldb-haskell mtl
- resourcet transformers transformers-base unliftio-core
- ];
- testHaskellDepends = [
- base bytestring cereal hspec leveldb-haskell mtl process resourcet
- transformers transformers-base unliftio
- ];
- description = "A rich monadic API for working with leveldb databases";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "higher-leveldb_0_6_0_0" = callPackage
- ({ mkDerivation, base, bytestring, cereal, data-default, exceptions
- , hspec, leveldb-haskell, mtl, process, resourcet, transformers
- , transformers-base, unliftio, unliftio-core
- }:
- mkDerivation {
- pname = "higher-leveldb";
version = "0.6.0.0";
sha256 = "0gsqf92vp92a0jl3nchm40mxi5k7hnm7wjczhpkq0akka6b7ciy7";
revision = "2";
@@ -126839,7 +125409,6 @@ self: {
];
description = "A rich monadic API for working with leveldb databases";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"higherorder" = callPackage
@@ -127040,8 +125609,6 @@ self: {
];
description = "Generate STL models from SRTM elevation data";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"himerge" = callPackage
@@ -127282,8 +125849,8 @@ self: {
}:
mkDerivation {
pname = "hinotify";
- version = "0.4";
- sha256 = "1x1lm685ws2q0z0ibwq6x3l72xh67mj06s36xiga3al48d92q63x";
+ version = "0.4.1";
+ sha256 = "06pqfikfa61i45g92b65br83kplwmizqkm42yp8d0ddgmq0b21qk";
libraryHaskellDepends = [ async base bytestring containers unix ];
testHaskellDepends = [ base bytestring directory unix ];
description = "Haskell binding to inotify";
@@ -127409,15 +125976,15 @@ self: {
"hinterface" = callPackage
({ mkDerivation, array, async, base, binary, bytestring, containers
- , cryptonite, deepseq, exceptions, hspec, lifted-async, lifted-base
- , memory, monad-control, monad-logger, mtl, network, QuickCheck
- , random, resourcet, safe-exceptions, stm, text, transformers
- , transformers-base, vector
+ , cryptonite, deepseq, exceptions, hspec, hspec-discover
+ , lifted-async, lifted-base, memory, monad-control, monad-logger
+ , mtl, network, QuickCheck, random, resourcet, safe-exceptions, stm
+ , text, transformers, transformers-base, vector
}:
mkDerivation {
pname = "hinterface";
- version = "2.0.0";
- sha256 = "1n1mp34s0ks7hkd2ddhfva9pbjwkciy1jjmqznmca244xg095yia";
+ version = "2.0.1";
+ sha256 = "0gxzkw1acvw8awmc5c52wxxhg7qda5sr0kh7g6ywy20xw231glf4";
libraryHaskellDepends = [
array async base binary bytestring containers cryptonite deepseq
exceptions lifted-async lifted-base memory monad-control
@@ -127428,6 +125995,7 @@ self: {
async base binary bytestring hspec monad-logger QuickCheck
transformers vector
];
+ testToolDepends = [ hspec-discover ];
description = "Haskell / Erlang interoperability library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -127485,6 +126053,8 @@ self: {
];
description = "Haskell Image Processing (HIP) Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hipbot" = callPackage
@@ -128199,8 +126769,6 @@ self: {
];
description = "A library to build valid LaTeX files";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hlbfgsb" = callPackage
@@ -128715,21 +127283,21 @@ self: {
"hlint" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs
, containers, cpphs, data-default, directory, extra, file-embed
- , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex
- , hscolour, process, refact, text, transformers, uniplate
- , unordered-containers, utf8-string, vector, yaml
+ , filepath, filepattern, ghc, ghc-boot, ghc-boot-th
+ , ghc-lib-parser-ex, hscolour, process, refact, text, transformers
+ , uniplate, unordered-containers, utf8-string, vector, yaml
}:
mkDerivation {
pname = "hlint";
- version = "3.2.1";
- sha256 = "16r2s65238yaqkiqhc31zwgv5r9743d5qrdwkahn9zpwj0x0sp5f";
+ version = "3.2.3";
+ sha256 = "1y6drmvcz90cpih446k1kjbyhin652wi9b9x7xjylxxp8jksd8x0";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-terminal base bytestring cmdargs containers cpphs
- data-default directory extra file-embed filepath filepattern
- ghc-lib-parser ghc-lib-parser-ex hscolour process refact text
+ data-default directory extra file-embed filepath filepattern ghc
+ ghc-boot ghc-boot-th ghc-lib-parser-ex hscolour process refact text
transformers uniplate unordered-containers utf8-string vector yaml
];
executableHaskellDepends = [ base ];
@@ -128826,8 +127394,8 @@ self: {
pname = "hlrdb";
version = "0.3.1.0";
sha256 = "19sxpyv331sjldanf40gw598gcj98n9xwc985cz9k2m38ck3vwhr";
- revision = "1";
- editedCabalFile = "0ikina8r7b3n7gywj0fclarj8g4m20wd23vxwlswikbx4f9mpwgf";
+ revision = "2";
+ editedCabalFile = "11f2vv95kmk4k07yzvzma7714p148sfyn9k3zx94h5y0zihgn49g";
libraryHaskellDepends = [
base base64-bytestring bytestring cryptonite hashable hedis
hlrdb-core memory random store time unordered-containers
@@ -128846,12 +127414,16 @@ self: {
pname = "hlrdb-core";
version = "0.1.6.0";
sha256 = "13hb0657y5cqhbl2m27v28b6zl9mgcq17r983rds3l3bccn67ayv";
+ revision = "1";
+ editedCabalFile = "163scamdjq98zk039qv3r4xqz7hmixa136gfkifx757fy4nigdiy";
libraryHaskellDepends = [
base bytestring hashable hedis lens mtl profunctors random time
unordered-containers
];
description = "High-level Redis Database Core API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hls" = callPackage
@@ -128870,18 +127442,16 @@ self: {
"hls-plugin-api" = callPackage
({ mkDerivation, aeson, base, containers, data-default, Diff, ghc
- , ghc-boot-th, ghcide, haskell-lsp, hslogger, lens, process
- , regex-tdfa, shake, text, unordered-containers
+ , ghc-boot-th, ghcide, hashable, haskell-lsp, hslogger, lens
+ , process, regex-tdfa, shake, text, unordered-containers
}:
mkDerivation {
pname = "hls-plugin-api";
- version = "0.4.1.0";
- sha256 = "00ms2m9sn7a935fh6l3grzvbfq67acjymqmy9rjpn30d0slr1672";
- revision = "1";
- editedCabalFile = "09fd4br6s8lddl98nmwybayqr0z58k8h8fdw5r3jxw00cr13vw31";
+ version = "0.5.0.0";
+ sha256 = "18bahpndgic8g259v4blckybc5mlp7snaqh1gmnd7kh39p8kf1v4";
libraryHaskellDepends = [
aeson base containers data-default Diff ghc ghc-boot-th ghcide
- haskell-lsp hslogger lens process regex-tdfa shake text
+ hashable haskell-lsp hslogger lens process regex-tdfa shake text
unordered-containers
];
description = "Haskell Language Server API for plugin communication";
@@ -128958,17 +127528,17 @@ self: {
"hmatrix" = callPackage
({ mkDerivation, array, base, binary, bytestring, deepseq
- , openblasCompat, random, semigroups, split, storable-complex
- , vector
+ , openblasCompat, primitive, random, semigroups, split
+ , storable-complex, vector
}:
mkDerivation {
pname = "hmatrix";
- version = "0.20.0.0";
- sha256 = "1sqy1aci5zfagkb34mz3xdil7cl96z4b4cx28cha54vc5sx1lhpg";
+ version = "0.20.1";
+ sha256 = "0v690zml7yqj6ndjszwqpfsad2vma3m6rdkjs6bnb9k2v35l905i";
configureFlags = [ "-fdisable-default-paths" "-fopenblas" ];
libraryHaskellDepends = [
- array base binary bytestring deepseq random semigroups split
- storable-complex vector
+ array base binary bytestring deepseq primitive random semigroups
+ split storable-complex vector
];
librarySystemDepends = [ openblasCompat ];
description = "Numeric Linear Algebra";
@@ -129098,8 +127668,6 @@ self: {
benchmarkHaskellDepends = [ base criterion hmatrix ];
description = "Low-level machine learning auxiliary functions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) blas; liblapack = null;};
"hmatrix-nipals" = callPackage
@@ -129624,21 +128192,21 @@ self: {
({ mkDerivation, aeson, array, base, base16-bytestring, binary
, bytestring, comonad, containers, criterion, data-fix, deepseq
, deriving-compat, Diff, directory, exceptions, filepath, free
- , gitrev, Glob, hashable, hashing, hedgehog, hnix-store-core
- , http-client, http-client-tls, http-types, lens-family
- , lens-family-core, lens-family-th, logict, megaparsec
+ , gitrev, Glob, hashable, hashing, haskeline, hedgehog
+ , hnix-store-core, http-client, http-client-tls, http-types
+ , lens-family, lens-family-core, lens-family-th, logict, megaparsec
, monad-control, monadlist, mtl, neat-interpolation
, optparse-applicative, parser-combinators, pretty-show
- , prettyprinter, process, ref-tf, regex-tdfa, scientific, semialign
- , semialign-indexed, serialise, some, split, syb, tasty
+ , prettyprinter, process, ref-tf, regex-tdfa, repline, scientific
+ , semialign, semialign-indexed, serialise, some, split, syb, tasty
, tasty-hedgehog, tasty-hunit, tasty-th, template-haskell, text
, these, time, transformers, transformers-base, unix
, unordered-containers, vector, xml
}:
mkDerivation {
pname = "hnix";
- version = "0.10.1";
- sha256 = "19a5pa1ji4hjr3vjvbkjmhnysnd8jcpkzlj9f2qw67h5iagysccy";
+ version = "0.11.0";
+ sha256 = "01m23sn3r2pr6ldblk4m41y082jc0lrgpfzbx63sx168ldhwxar3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -129653,6 +128221,12 @@ self: {
template-haskell text these time transformers transformers-base
unix unordered-containers vector xml
];
+ executableHaskellDepends = [
+ aeson base base16-bytestring bytestring comonad containers data-fix
+ deepseq exceptions filepath free haskeline mtl optparse-applicative
+ pretty-show prettyprinter ref-tf repline serialise template-haskell
+ text time transformers unordered-containers
+ ];
testHaskellDepends = [
base base16-bytestring bytestring containers data-fix deepseq Diff
directory exceptions filepath Glob hedgehog megaparsec mtl
@@ -129697,24 +128271,52 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "hnix-store-core_0_3_0_1" = callPackage
+ ({ mkDerivation, algebraic-graphs, attoparsec, base
+ , base16-bytestring, base64-bytestring, binary, bytestring, cereal
+ , containers, cryptohash-md5, cryptohash-sha1, cryptohash-sha256
+ , cryptohash-sha512, directory, filepath, hashable, io-streams
+ , lifted-base, monad-control, mtl, nix-derivation, process
+ , process-extras, saltine, tasty, tasty-discover, tasty-golden
+ , tasty-hspec, tasty-hunit, tasty-quickcheck, temporary, text, time
+ , unix, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "hnix-store-core";
+ version = "0.3.0.1";
+ sha256 = "186r0z8csvj7ly9ag9lpvc6nm4x3hzx18rdc1jxzavaavcpdpn00";
+ libraryHaskellDepends = [
+ algebraic-graphs attoparsec base base16-bytestring
+ base64-bytestring binary bytestring cereal containers
+ cryptohash-md5 cryptohash-sha1 cryptohash-sha256 cryptohash-sha512
+ directory filepath hashable lifted-base monad-control mtl
+ nix-derivation saltine text time unix unordered-containers vector
+ ];
+ testHaskellDepends = [
+ attoparsec base base16-bytestring base64-bytestring binary
+ bytestring containers directory filepath io-streams process
+ process-extras tasty tasty-discover tasty-golden tasty-hspec
+ tasty-hunit tasty-quickcheck temporary text unix
+ ];
+ testToolDepends = [ tasty-discover ];
+ description = "Core effects for interacting with the Nix store";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hnix-store-remote" = callPackage
- ({ mkDerivation, base, base64-bytestring, binary, bytestring
- , containers, hnix-store-core, mtl, network, pretty-simple, text
- , unix, unordered-containers
+ ({ mkDerivation, attoparsec, base, binary, bytestring, containers
+ , filepath, hnix-store-core, mtl, network, nix-derivation, text
+ , time, unix, unordered-containers, vector
}:
mkDerivation {
pname = "hnix-store-remote";
- version = "0.1.0.0";
- sha256 = "04dmql5235z05hq36wnbgc3sk0izqryv7n8dh8r3dq2j87zvv3y8";
- isLibrary = true;
- isExecutable = true;
+ version = "0.3.0.0";
+ sha256 = "0spvbix7m70v95fvkcs0vxas8nmwpjh4lfaglyvw1ijkf71xn9gl";
libraryHaskellDepends = [
- base base64-bytestring binary bytestring containers hnix-store-core
- mtl network text unix unordered-containers
- ];
- executableHaskellDepends = [
- base bytestring hnix-store-core mtl pretty-simple
- unordered-containers
+ attoparsec base binary bytestring containers filepath
+ hnix-store-core mtl network nix-derivation text time unix
+ unordered-containers vector
];
description = "Remote hnix store";
license = stdenv.lib.licenses.asl20;
@@ -129730,6 +128332,8 @@ self: {
pname = "hnn";
version = "0.3";
sha256 = "0hqmzl95riis1m6f0zfp303f2k0j8szkcb6rcfmx6d3grm38b7fr";
+ revision = "1";
+ editedCabalFile = "18lmh6fpkpxa9lfcygzag60nrxl5qab1gllpfamgz0l5ydph9f3z";
libraryHaskellDepends = [
base binary bytestring hmatrix mwc-random random vector
vector-binary-instances zlib
@@ -129852,26 +128456,6 @@ self: {
}:
mkDerivation {
pname = "hoauth2";
- version = "1.14.0";
- sha256 = "0szcg4bvzs8djmq5k47czyk7hv9nassahd0ngd127hcab5afmbxk";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base binary bytestring exceptions http-conduit http-types
- microlens text unordered-containers uri-bytestring
- uri-bytestring-aeson
- ];
- description = "Haskell OAuth2 authentication client";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hoauth2_1_16_0" = 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.16.0";
sha256 = "0s69fs131djsrdqsmb4ics90g9by1k7yy8q9qq2m3gdbdp7xln86";
isLibrary = true;
@@ -129883,7 +128467,6 @@ self: {
];
description = "Haskell OAuth2 authentication client";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hob" = callPackage
@@ -129941,8 +128524,8 @@ self: {
}:
mkDerivation {
pname = "hobbits";
- version = "1.3";
- sha256 = "1w8bz1z747dd7vh110iynmsq5n0a84zw1gk7jcxfwl5lpfrqz97s";
+ version = "1.3.1";
+ sha256 = "0jpm65s2f0fz5ipppryy2k8qja2ijmfd56a65z5k0hsx4j93ipva";
libraryHaskellDepends = [
base containers deepseq haskell-src-exts haskell-src-meta mtl syb
tagged template-haskell th-expand-syns transformers vector
@@ -130016,6 +128599,18 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "hocon" = callPackage
+ ({ mkDerivation, base, hspec, MissingH, parsec, split }:
+ mkDerivation {
+ pname = "hocon";
+ version = "0.1.0.4";
+ sha256 = "1wncdrqrvd2dhzrnsizxx95h022wmlnw9i9yjgn9k2j6yl7j1iiz";
+ libraryHaskellDepends = [ base hspec MissingH parsec split ];
+ testHaskellDepends = [ base hspec MissingH parsec split ];
+ description = "Small library for typesafe's configuration specification";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hodatime" = callPackage
({ mkDerivation, base, binary, bytestring, containers, criterion
, directory, exceptions, filepath, fingertree, mtl, parsec
@@ -130195,11 +128790,13 @@ self: {
pname = "hoist-error";
version = "0.2.1.0";
sha256 = "028lczd80nhj3yj5dq9qixzdzkyisl34qpi6bb28r8b9nj2i2nss";
- revision = "3";
- editedCabalFile = "1g80simnv15dqlch83mgn6yj8z93g0wpj0y1xz53p4dvafs18zlc";
+ revision = "4";
+ editedCabalFile = "1xp8l236gflh5njl3s8f0d2ahqypks70pfjnawskc0fcnl818qpa";
libraryHaskellDepends = [ base either mtl ];
description = "Some convenience facilities for hoisting errors into a monad";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hol" = callPackage
@@ -130741,40 +129338,6 @@ self: {
broken = true;
}) {};
- "hoogle_5_0_14" = callPackage
- ({ mkDerivation, aeson, base, binary, bytestring, cmdargs, conduit
- , conduit-extra, connection, containers, deepseq, directory, extra
- , filepath, haskell-src-exts, http-conduit, http-types, js-flot
- , js-jquery, mmap, network, network-uri, old-locale, process
- , process-extras, QuickCheck, resourcet, storable-tuple, tar
- , template-haskell, text, time, transformers, uniplate, utf8-string
- , vector, wai, wai-logger, warp, warp-tls, zlib
- }:
- mkDerivation {
- pname = "hoogle";
- version = "5.0.14";
- sha256 = "1y5vjwp60s35h13bnhjh4ga731m3vz004dbg8w5s7mwnfk5akkz7";
- revision = "3";
- editedCabalFile = "14973295rif9gsyaxfrw7y5p59sxnz4znki3jm3bk73y0b3j1l5d";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson base binary bytestring cmdargs conduit conduit-extra
- connection containers deepseq directory extra filepath
- haskell-src-exts http-conduit http-types js-flot js-jquery mmap
- network network-uri old-locale process process-extras QuickCheck
- resourcet storable-tuple tar template-haskell text time
- transformers uniplate utf8-string vector wai wai-logger warp
- warp-tls zlib
- ];
- executableHaskellDepends = [ base ];
- testTarget = "--test-option=--no-net";
- description = "Haskell API Search";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"hoogle" = callPackage
({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup
, bytestring, cmdargs, conduit, conduit-extra, connection
@@ -130966,37 +129529,34 @@ self: {
}) {OpenCL = null;};
"hopenpgp-tools" = callPackage
- ({ mkDerivation, aeson, alex, array, attoparsec, base
- , base16-bytestring, binary, binary-conduit, bytestring, conduit
- , conduit-extra, containers, crypto-pubkey, cryptohash, cryptonite
- , directory, errors, fgl, graphviz, happy, hOpenPGP, http-client
- , http-client-tls, http-types, ixset-typed, lens, monad-loops, mtl
- , openpgp-asciiarmor, optparse-applicative, prettyprinter
- , prettyprinter-ansi-terminal, prettyprinter-convert-ansi-wl-pprint
- , resourcet, text, time, time-locale-compat, transformers
- , unordered-containers, vector, yaml
+ ({ mkDerivation, aeson, alex, array, base, base16-bytestring
+ , binary, binary-conduit, bytestring, conduit, conduit-extra
+ , containers, cryptonite, directory, errors, fgl, graphviz, happy
+ , hOpenPGP, http-client, http-client-tls, http-types, ixset-typed
+ , lens, memory, monad-loops, mtl, openpgp-asciiarmor
+ , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
+ , prettyprinter-convert-ansi-wl-pprint, resourcet, text, time
+ , time-locale-compat, transformers, unordered-containers, vector
+ , yaml
}:
mkDerivation {
pname = "hopenpgp-tools";
- version = "0.23.1";
- sha256 = "0jq1if7c78758fnsb6wxsky0jn9mhmzwhb5jpyrpigx08diwd2mj";
+ version = "0.23.3";
+ sha256 = "1h6hg05i7vm0cnhn3sifmmv01hjxy0w030j4m3fig3ic57658q2p";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson array attoparsec base base16-bytestring binary binary-conduit
- bytestring conduit conduit-extra containers crypto-pubkey
- cryptohash cryptonite directory errors fgl graphviz hOpenPGP
- http-client http-client-tls http-types ixset-typed lens monad-loops
- mtl openpgp-asciiarmor optparse-applicative prettyprinter
- prettyprinter-ansi-terminal prettyprinter-convert-ansi-wl-pprint
- resourcet text time time-locale-compat transformers
- unordered-containers vector yaml
+ aeson array base base16-bytestring binary binary-conduit bytestring
+ conduit conduit-extra containers cryptonite directory errors fgl
+ graphviz hOpenPGP http-client http-client-tls http-types
+ ixset-typed lens memory monad-loops mtl openpgp-asciiarmor
+ optparse-applicative prettyprinter prettyprinter-ansi-terminal
+ prettyprinter-convert-ansi-wl-pprint resourcet text time
+ time-locale-compat transformers unordered-containers vector yaml
];
executableToolDepends = [ alex happy ];
description = "hOpenPGP-based command-line tools";
- license = stdenv.lib.licenses.agpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ license = stdenv.lib.licenses.agpl3Plus;
}) {};
"hopenssl" = callPackage
@@ -131096,6 +129656,8 @@ self: {
];
description = "C++ FFI generator - Documentation";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hoppy-generator" = callPackage
@@ -131112,6 +129674,8 @@ self: {
];
description = "C++ FFI generator - Code generator";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hoppy-runtime" = callPackage
@@ -131125,6 +129689,8 @@ self: {
];
description = "C++ FFI generator - Runtime support";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hoppy-std" = callPackage
@@ -131139,6 +129705,8 @@ self: {
];
description = "C++ FFI generator - Standard library bindings";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hops" = callPackage
@@ -131252,23 +129820,6 @@ self: {
}:
mkDerivation {
pname = "hosc";
- version = "0.17";
- sha256 = "0340lldzim02ixj4n0smfwn20y5i0z7v0gqgbb0mdjs6c90rqhv6";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base binary blaze-builder bytestring data-binary-ieee754 network
- time transformers
- ];
- description = "Haskell Open Sound Control";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "hosc_0_18_1" = callPackage
- ({ mkDerivation, base, binary, blaze-builder, bytestring
- , data-binary-ieee754, network, time, transformers
- }:
- mkDerivation {
- pname = "hosc";
version = "0.18.1";
sha256 = "0ygyvwzsvqv4pihzdm6i3kzkr01nh3qpk9g9f9ap6243yx7003vj";
enableSeparateDataOutput = true;
@@ -131278,7 +129829,6 @@ self: {
];
description = "Haskell Open Sound Control";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hosc-json" = callPackage
@@ -132065,8 +130615,6 @@ self: {
];
description = "A tool for looking through PDF file using Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hpg" = callPackage
@@ -132228,10 +130776,8 @@ self: {
}:
mkDerivation {
pname = "hpqtypes-extras";
- version = "1.10.2.1";
- sha256 = "06vx7llfyidldp5ar80a3dkw14xv19v1s8kc7kf6vs1gb3vx8r5n";
- revision = "1";
- editedCabalFile = "0vn0396jhxnrnp8724kpl7yjy4aywa2nm1vb7znz0fmzr0vp54yi";
+ version = "1.10.3.0";
+ sha256 = "1ifr6z89ki541b9x3kpyf10vbn3anhfcq8ppqwyp5zvmkx0q3wqs";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash exceptions
fields-json hpqtypes lifted-base log-base monad-control mtl safe
@@ -132254,8 +130800,10 @@ self: {
}:
mkDerivation {
pname = "hprotoc";
- version = "2.4.13";
- sha256 = "0z88kiirwpnzw6hxg99kg42j2hkf002vcsmbcm7nqdfqajrggiy0";
+ version = "2.4.17";
+ sha256 = "1r7zr4sbg6355zavbzjixvfv10aglz1zs9ajnznpjhnj6lfisf32";
+ revision = "2";
+ editedCabalFile = "0hxhvjk3mswx712viv7krcgiynxq4bjs71vbk2pgm2d50i5qr8mr";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132560,6 +131108,8 @@ self: {
testHaskellDepends = [ base hset transformers-base ];
description = "Generalization of MonadReader and ReaderT using hset";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hreader-lens" = callPackage
@@ -132575,6 +131125,8 @@ self: {
];
description = "Optics for hreader package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hreq-client" = callPackage
@@ -132651,6 +131203,8 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Core functionality for Hreq Http client library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hrfsize" = callPackage
@@ -132688,8 +131242,8 @@ self: {
}:
mkDerivation {
pname = "hriemann";
- version = "0.3.3.3";
- sha256 = "0xxdzbx5wqmz62k8jka2k896sdz49j2aqivmcic9fsrar5inalyp";
+ version = "0.3.3.4";
+ sha256 = "0hgnpxldj4wag582h0qnf0nchjxbdmd6ydl8xadi278wpv0hdqnw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -133012,8 +131566,6 @@ self: {
libraryHaskellDepends = [ base mtl ];
description = "Haskell wrapper for the Google Chart API";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hs-gen-iface" = callPackage
@@ -133063,6 +131615,8 @@ self: {
testHaskellDepends = [ base haskell-src hspec ];
description = "Haskell source code analyzer";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hs-ix" = callPackage
@@ -133163,7 +131717,6 @@ self: {
];
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {mesos = null; inherit (pkgs) protobuf;};
"hs-multiaddr" = callPackage
@@ -133349,6 +131902,8 @@ self: {
];
description = "A Haskell client for RQlite";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hs-rs-notify" = callPackage
@@ -133744,23 +132299,23 @@ self: {
, bytestring, cryptonite, data-default, http-types, HUnit, hxt
, hxt-charproperties, hxt-http, hxt-unicode, invertible
, invertible-hxt, lens, libxml2, memory, mtl, network-uri, process
- , semigroups, template-haskell, time, x509, zlib
+ , semigroups, string-conversions, template-haskell, time
+ , utf8-string, x509, zlib
}:
mkDerivation {
pname = "hsaml2";
- version = "0.1";
- sha256 = "0mpw13cicx16zhsk7km2qsndah9cdmyylz4r5ank5cxj0rzmkjck";
- revision = "1";
- editedCabalFile = "0xvyzq2y94za0ggrlcxvpz4g29jxdcjp3ga8f77hr0f4hfz4z10l";
+ version = "0.1.1";
+ sha256 = "1jlsmsnrr3ya7az4mpb6f2spwcw3m45yzix2p3lkajbz8a6kfzac";
libraryHaskellDepends = [
asn1-encoding asn1-types base base64-bytestring bytestring
cryptonite data-default http-types hxt hxt-charproperties
hxt-unicode invertible invertible-hxt lens memory mtl network-uri
- process semigroups template-haskell time x509 zlib
+ process semigroups template-haskell time utf8-string x509 zlib
];
libraryPkgconfigDepends = [ libxml2 ];
testHaskellDepends = [
- base bytestring HUnit hxt hxt-http network-uri semigroups time x509
+ base base64-bytestring bytestring cryptonite HUnit hxt hxt-http
+ network-uri semigroups string-conversions time x509
];
description = "OASIS Security Assertion Markup Language (SAML) V2.0";
license = stdenv.lib.licenses.asl20;
@@ -134604,30 +133159,31 @@ self: {
({ mkDerivation, aeson, aeson-pretty, array, async, attoparsec
, base, bytestring, Cabal, containers, cpphs, data-default, deepseq
, direct-sqlite, directory, exceptions, filepath, fsnotify, ghc
- , ghc-boot, ghc-paths, haddock-api, haddock-library, haskell-names
- , haskell-src-exts, hdocs, hformat, hlint, hspec, http-client, lens
- , lens-aeson, lifted-base, mmorph, monad-control, monad-loops, mtl
- , network, network-uri, optparse-applicative, process
- , regex-pcre-builtin, scientific, simple-log, sqlite-simple, stm
- , syb, template-haskell, text, text-region, time, transformers
- , transformers-base, uniplate, unix, unordered-containers, vector
+ , ghc-boot, ghc-lib-parser, ghc-paths, haddock-api, haddock-library
+ , haskell-names, haskell-src-exts, hdocs, hformat, hlint, hspec
+ , http-client, lens, lens-aeson, lifted-base, mmorph, monad-control
+ , monad-loops, mtl, network, network-uri, optparse-applicative
+ , process, regex-pcre-builtin, scientific, simple-log
+ , sqlite-simple, stm, syb, template-haskell, text, text-region
+ , time, transformers, transformers-base, uniplate, unix
+ , unordered-containers, vector
}:
mkDerivation {
pname = "hsdev";
- version = "0.3.3.8";
- sha256 = "01dagwpg70h9af5kzr2f19qsvy4h5cx5rjdrcq0r36fbmdkbza2z";
+ version = "0.3.4.0";
+ sha256 = "1qp1rsqxnv842kamhcf9hylj7ja1hwxni4m29d7pqfwbqsfwf55h";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty array async attoparsec base bytestring Cabal
containers cpphs data-default deepseq direct-sqlite directory
- exceptions filepath fsnotify ghc ghc-boot ghc-paths haddock-api
- haddock-library haskell-names haskell-src-exts hdocs hformat hlint
- http-client lens lifted-base mmorph monad-control monad-loops mtl
- network network-uri optparse-applicative process regex-pcre-builtin
- scientific simple-log sqlite-simple stm syb template-haskell text
- text-region time transformers transformers-base uniplate unix
- unordered-containers vector
+ exceptions filepath fsnotify ghc ghc-boot ghc-lib-parser ghc-paths
+ haddock-api haddock-library haskell-names haskell-src-exts hdocs
+ hformat hlint http-client lens lifted-base mmorph monad-control
+ monad-loops mtl network network-uri optparse-applicative process
+ regex-pcre-builtin scientific simple-log sqlite-simple stm syb
+ template-haskell text text-region time transformers
+ transformers-base uniplate unix unordered-containers vector
];
executableHaskellDepends = [
aeson aeson-pretty base bytestring containers deepseq directory
@@ -134740,8 +133296,8 @@ self: {
({ mkDerivation, base, hspec, parsec, time, time-compat }:
mkDerivation {
pname = "hsemail";
- version = "2.2.0";
- sha256 = "0078n2snnrgsnl6az7c6jpmgyfsls4k1zr09f7ny7kn6g33g5z84";
+ version = "2.2.1";
+ sha256 = "108xjspr7apx248gvv7w1hh2pqnb7qg699a8l8f8z64cv6s9ksmm";
libraryHaskellDepends = [ base parsec time time-compat ];
testHaskellDepends = [ base hspec parsec time ];
description = "Parsec parsers for the Internet Message format (e-mail)";
@@ -134824,6 +133380,8 @@ self: {
testHaskellDepends = [ base HUnit tagged ];
description = "Primitive list with elements of unique types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hsexif" = callPackage
@@ -135001,8 +133559,6 @@ self: {
libraryPkgconfigDepends = [ gsl ];
description = "Signal processing and EEG data analysis";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) blas; inherit (pkgs) gsl; liblapack = null;};
"hsilop" = callPackage
@@ -135087,6 +133643,8 @@ self: {
];
description = "Inspect Haskell source files";
license = stdenv.lib.licenses.gpl3Plus;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hsinspect-lsp" = callPackage
@@ -135297,37 +133855,14 @@ self: {
}) {};
"hslua" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, deepseq
- , exceptions, fail, lua5_3, mtl, QuickCheck, quickcheck-instances
- , tasty, tasty-hunit, tasty-quickcheck, text
- }:
- mkDerivation {
- pname = "hslua";
- version = "1.0.3.2";
- sha256 = "183bgl5jcx5y2r94lviqfw0a5w9089nxjd1z40k8vx9y2h60pm6j";
- configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ];
- libraryHaskellDepends = [
- base bytestring containers exceptions fail mtl text
- ];
- librarySystemDepends = [ lua5_3 ];
- testHaskellDepends = [
- base bytestring containers exceptions fail mtl QuickCheck
- quickcheck-instances tasty tasty-hunit tasty-quickcheck text
- ];
- benchmarkHaskellDepends = [ base bytestring criterion deepseq ];
- description = "Bindings to Lua, an embeddable scripting language";
- license = stdenv.lib.licenses.mit;
- }) {inherit (pkgs) lua5_3;};
-
- "hslua_1_1_2" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, lua5_3
, mtl, QuickCheck, quickcheck-instances, tasty, tasty-hunit
, tasty-quickcheck, text
}:
mkDerivation {
pname = "hslua";
- version = "1.1.2";
- sha256 = "1cv4lwr91ckscwm2jksrg29ka1z32974xgkcgmna4ibpyjwkslbl";
+ version = "1.2.0";
+ sha256 = "0a295zqpbrv8a2hw7msz5p7brlswag16sg08dyz399ij6b7q5x0h";
configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ];
libraryHaskellDepends = [
base bytestring containers exceptions mtl text
@@ -135339,7 +133874,6 @@ self: {
];
description = "Bindings to Lua, an embeddable scripting language";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) lua5_3;};
"hslua_1_3_0" = callPackage
@@ -135372,8 +133906,8 @@ self: {
}:
mkDerivation {
pname = "hslua-aeson";
- version = "1.0.3";
- sha256 = "0qqcf9km39bmw29d2s5zw91rxgmmm8nqfnfs5hkhmsgh5kvaal5h";
+ version = "1.0.3.1";
+ sha256 = "0kvsk0lfhg29dy5qlays9xbd5h9as01mcdbdx2ingx94br6d3h5r";
libraryHaskellDepends = [
aeson base hashable hslua scientific text unordered-containers
vector
@@ -135392,31 +133926,14 @@ self: {
}:
mkDerivation {
pname = "hslua-module-doclayout";
- version = "0.1.0";
- sha256 = "1hkzddgz427fh69bdyiyx5vyngslw3ab9xjg7i5rfjhzzmsn0hha";
- libraryHaskellDepends = [ base doclayout hslua text ];
- testHaskellDepends = [
- base doclayout hslua tasty tasty-hunit tasty-lua
- ];
- description = "Lua module wrapping Text.DocLayout.";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hslua-module-doclayout_0_2_0" = callPackage
- ({ mkDerivation, base, doclayout, hslua, tasty, tasty-hunit
- , tasty-lua, text
- }:
- mkDerivation {
- pname = "hslua-module-doclayout";
- version = "0.2.0";
- sha256 = "1ilkyv0wscz2kv0jkn45qc8ng5l1hvvbkwh972zvisys1m3hri4y";
+ version = "0.2.0.1";
+ sha256 = "1fwzx85lv2547gs42lp7mx9w7b0vl4hpc0ql7ip5yqp17q58a08y";
libraryHaskellDepends = [ base doclayout hslua text ];
testHaskellDepends = [
base doclayout hslua tasty tasty-hunit tasty-lua
];
description = "Lua module wrapping Text.DocLayout.";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hslua-module-system" = callPackage
@@ -135425,24 +133942,6 @@ self: {
}:
mkDerivation {
pname = "hslua-module-system";
- version = "0.2.2";
- sha256 = "0swl20v40kkh67vn6546a0afjcsq56x3ww854x3pwypxz1p6dyri";
- libraryHaskellDepends = [
- base containers directory exceptions hslua temporary
- ];
- testHaskellDepends = [
- base hslua tasty tasty-hunit tasty-lua text
- ];
- description = "Lua module wrapper around Haskell's System module";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hslua-module-system_0_2_2_1" = callPackage
- ({ mkDerivation, base, containers, directory, exceptions, hslua
- , tasty, tasty-hunit, tasty-lua, temporary, text
- }:
- mkDerivation {
- pname = "hslua-module-system";
version = "0.2.2.1";
sha256 = "0hk2splyasbplnggknjhlb423axc5b32xq8aq8zal4vvwlqhzvf1";
libraryHaskellDepends = [
@@ -135453,23 +133952,9 @@ self: {
];
description = "Lua module wrapper around Haskell's System module";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hslua-module-text" = callPackage
- ({ mkDerivation, base, bytestring, hslua, tasty, tasty-hunit, text
- }:
- mkDerivation {
- pname = "hslua-module-text";
- version = "0.2.1";
- sha256 = "1ikdwvvxhbd5wmfr85dzs2ccamh9rbbpgy899z7s1vlv5q1dj0hk";
- libraryHaskellDepends = [ base bytestring hslua text ];
- testHaskellDepends = [ base hslua tasty tasty-hunit text ];
- description = "Lua module for text";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hslua-module-text_0_3_0_1" = callPackage
({ mkDerivation, base, bytestring, hslua, tasty, tasty-hunit
, tasty-lua, text
}:
@@ -135483,7 +133968,6 @@ self: {
];
description = "Lua module for text";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsluv-haskell" = callPackage
@@ -136000,6 +134484,8 @@ self: {
testHaskellDepends = [ aeson-qq base hspec ];
description = "Hspec expectations for JSON Values";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hspec-expectations-lens" = callPackage
@@ -136138,8 +134624,8 @@ self: {
}:
mkDerivation {
pname = "hspec-hashable";
- version = "0.1.0.0";
- sha256 = "1gqlw2k6k37m25292dpm8j8k0f2jdqz7lmsisa2f1mqlqxpm9k0i";
+ version = "0.1.0.1";
+ sha256 = "0gvqi8600vm3ms1b45qvx32kw7g7pgwxkmbfbdmicxxlbp2da6qy";
libraryHaskellDepends = [ base hashable hspec QuickCheck ];
testHaskellDepends = [
base hashable hspec hspec-core QuickCheck silently
@@ -136212,22 +134698,6 @@ self: {
}:
mkDerivation {
pname = "hspec-megaparsec";
- version = "2.1.0";
- sha256 = "1x8qbih5ci9flc3b5c1g4cc8xgq504bw5q26cpkcnlaanrp01p5x";
- libraryHaskellDepends = [
- base containers hspec-expectations megaparsec
- ];
- testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
- description = "Utility functions for testing Megaparsec parsers with Hspec";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hspec-megaparsec_2_2_0" = callPackage
- ({ mkDerivation, base, containers, hspec, hspec-expectations
- , megaparsec
- }:
- mkDerivation {
- pname = "hspec-megaparsec";
version = "2.2.0";
sha256 = "0hyf06gzzqd6sqd76crwxycwgx804sd39z7i0c2vmv1qgsxv82gn";
libraryHaskellDepends = [
@@ -136236,7 +134706,6 @@ self: {
testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
description = "Utility functions for testing Megaparsec parsers with Hspec";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-meta" = callPackage
@@ -136409,12 +134878,16 @@ self: {
}) {};
"hspec-slow" = callPackage
- ({ mkDerivation, base, hspec, mtl, stm, time, transformers }:
+ ({ mkDerivation, base, hspec, hspec-core, mtl, stm, time
+ , transformers
+ }:
mkDerivation {
pname = "hspec-slow";
- version = "0.1.0.0";
- sha256 = "1nvhvxqmvlkg7zjh0b59rfdjghcinal7ncf3l1jin21zrjcwzfhq";
- libraryHaskellDepends = [ base hspec mtl stm time transformers ];
+ version = "0.2.0.1";
+ sha256 = "1rik9r0y6zzc92dzdzhmxj05hr1yacvdrfvsxqqqavxd7v0pp6y6";
+ libraryHaskellDepends = [
+ base hspec hspec-core mtl stm time transformers
+ ];
testHaskellDepends = [ base hspec mtl stm ];
description = "Find slow test cases";
license = stdenv.lib.licenses.bsd3;
@@ -136460,6 +134933,8 @@ self: {
];
description = "A library for testing with Hspec and the Snap Web Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hspec-stack-rerun" = callPackage
@@ -136855,7 +135330,6 @@ self: {
description = "Haskell binding for Qt Quick";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {qt5 = null;};
"hsqml-datamodel" = callPackage
@@ -136869,7 +135343,6 @@ self: {
description = "HsQML (Qt5) data model";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {qt5 = null;};
"hsqml-datamodel-vinyl" = callPackage
@@ -136886,7 +135359,6 @@ self: {
description = "HsQML DataModel instances for Vinyl Rec";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsqml-demo-manic" = callPackage
@@ -136904,7 +135376,6 @@ self: {
description = "HsQML-based clone of Pipe Mania";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsqml-demo-morris" = callPackage
@@ -136924,7 +135395,6 @@ self: {
description = "HsQML-based implementation of Nine Men's Morris";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsqml-demo-notes" = callPackage
@@ -136944,7 +135414,6 @@ self: {
description = "Sticky notes example program implemented in HsQML";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsqml-demo-samples" = callPackage
@@ -136960,7 +135429,6 @@ self: {
description = "HsQML sample programs";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsqml-morris" = callPackage
@@ -136980,7 +135448,6 @@ self: {
description = "HsQML-based implementation of Nine Men's Morris";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hsreadability" = callPackage
@@ -137169,8 +135636,6 @@ self: {
];
description = "Statistics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hstats" = callPackage
@@ -137260,7 +135725,6 @@ self: {
description = "Distributed instant messaging over Tor";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hstox" = callPackage
@@ -137619,6 +136083,8 @@ self: {
];
description = "A Haskell98 parsing tags program similar to ctags";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"htar" = callPackage
@@ -137783,27 +136249,6 @@ self: {
broken = true;
}) {};
- "html-conduit_1_2_1_2" = callPackage
- ({ mkDerivation, base, bytestring, conduit, conduit-extra
- , containers, hspec, HUnit, resourcet, tagstream-conduit, text
- , transformers, xml-conduit, xml-types
- }:
- mkDerivation {
- pname = "html-conduit";
- version = "1.2.1.2";
- sha256 = "172ip4rkn2y3mpzjrj2h3nrmxrf90gcl8ax6dgdhrdjsyg4h8vjk";
- libraryHaskellDepends = [
- base bytestring conduit conduit-extra containers resourcet
- tagstream-conduit text transformers xml-conduit xml-types
- ];
- testHaskellDepends = [
- base bytestring containers hspec HUnit xml-conduit
- ];
- description = "Parse HTML documents using xml-conduit datatypes";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"html-conduit" = callPackage
({ mkDerivation, attoparsec, base, bytestring, conduit
, conduit-extra, containers, deepseq, hspec, HUnit, resourcet, text
@@ -137941,8 +136386,6 @@ self: {
];
description = "A high-performance HTML tokenizer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"html-rules" = callPackage
@@ -138341,7 +136784,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "http-client_0_7_2_1" = callPackage
+ "http-client_0_7_3" = callPackage
({ mkDerivation, array, async, base, blaze-builder, bytestring
, case-insensitive, containers, cookie, deepseq, directory
, exceptions, filepath, ghc-prim, hspec, http-types, memory
@@ -138350,8 +136793,8 @@ self: {
}:
mkDerivation {
pname = "http-client";
- version = "0.7.2.1";
- sha256 = "0b699f07yqa525xqqcs4cn32fryjc2212sv8v83yfqlqwdwzr7jg";
+ version = "0.7.3";
+ sha256 = "0jpy5rlv4iwq79h5p37g0nnh5ff2qi4swxx8xmr98v0znvz6wc8i";
libraryHaskellDepends = [
array base blaze-builder bytestring case-insensitive containers
cookie deepseq exceptions filepath ghc-prim http-types memory
@@ -138450,15 +136893,15 @@ self: {
}) {};
"http-client-openssl" = callPackage
- ({ mkDerivation, base, bytestring, HsOpenSSL, hspec, http-client
- , http-types, network
+ ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system
+ , hspec, http-client, http-types, network
}:
mkDerivation {
pname = "http-client-openssl";
- version = "0.3.1.0";
- sha256 = "16h2f4ap35g63mdg66iihp10p1s4nwsrb06hplwm9i4akdr9gws2";
+ version = "0.3.2.0";
+ sha256 = "114aci8nvbzvhscla6172y7s47yp689rslhg8h7y3hmkh2zq7r65";
libraryHaskellDepends = [
- base bytestring HsOpenSSL http-client network
+ base bytestring HsOpenSSL HsOpenSSL-x509-system http-client network
];
testHaskellDepends = [
base HsOpenSSL hspec http-client http-types
@@ -138468,6 +136911,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "http-client-openssl_0_3_3" = callPackage
+ ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system
+ , hspec, http-client, http-types, network
+ }:
+ mkDerivation {
+ pname = "http-client-openssl";
+ version = "0.3.3";
+ sha256 = "03rr1wz1907v3gx5qsqdkd850hy47glb574s69265pv6yspaivdx";
+ libraryHaskellDepends = [
+ base bytestring HsOpenSSL HsOpenSSL-x509-system http-client network
+ ];
+ testHaskellDepends = [
+ base HsOpenSSL hspec http-client http-types
+ ];
+ doCheck = false;
+ description = "http-client backend using the OpenSSL library";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"http-client-overrides" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client
, http-client-tls, http-types, network-uri, tasty, tasty-hunit
@@ -138591,10 +137054,8 @@ self: {
}:
mkDerivation {
pname = "http-client-websockets";
- version = "0.1.0.0";
- sha256 = "1wx1dx3n8vjz3qa9l2a7l6i2scwbwxavjh0ss6awwphyirfl0v6p";
- revision = "1";
- editedCabalFile = "0wj1b817w8c0cjpqkbganvrbhz99hnr5gcj47l3g4bv4n90ygrpn";
+ version = "0.1.1.0";
+ sha256 = "1kmvwhfsp1l672km2a06pww0a3wmwbxcwwg1k78xcnc767wj0g1m";
libraryHaskellDepends = [
base bytestring http-client network-uri utf8-string websockets
];
@@ -138604,6 +137065,8 @@ self: {
];
description = "Glue code for http-client and websockets";
license = stdenv.lib.licenses.cc0;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"http-common" = callPackage
@@ -138623,50 +137086,48 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "http-conduit_2_2_4" = callPackage
- ({ mkDerivation, aeson, base, blaze-builder, bytestring
+ "http-conduit" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
, case-insensitive, conduit, conduit-extra, connection, cookie
- , data-default-class, exceptions, hspec, http-client
- , http-client-tls, http-types, HUnit, lifted-base, monad-control
- , mtl, network, resourcet, streaming-commons, temporary, text, time
- , transformers, utf8-string, wai, wai-conduit, warp, warp-tls
+ , data-default-class, hspec, http-client, http-client-tls
+ , http-types, HUnit, mtl, network, resourcet, streaming-commons
+ , temporary, text, time, transformers, unliftio, unliftio-core
+ , utf8-string, wai, wai-conduit, warp, warp-tls
}:
mkDerivation {
pname = "http-conduit";
- version = "2.2.4";
- sha256 = "1wcl3lpg4v1ylq9j77j9fmf6l9qbmp8dmj3a9829q19q6bbgza7l";
+ version = "2.3.7.3";
+ sha256 = "00rshi1y0h8y4rvsnnad0bppxgpvp40sk7lw1kxmdwy8pi8xrvbs";
+ revision = "1";
+ editedCabalFile = "0d9mkg8wm943avghjwvq986m667fx63pvvgn2y8gvr6nla8740an";
libraryHaskellDepends = [
- aeson base bytestring conduit conduit-extra exceptions http-client
- http-client-tls http-types lifted-base monad-control mtl resourcet
- transformers
+ aeson attoparsec base bytestring conduit conduit-extra http-client
+ http-client-tls http-types mtl resourcet transformers unliftio-core
];
testHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive conduit
conduit-extra connection cookie data-default-class hspec
- http-client http-types HUnit lifted-base network resourcet
- streaming-commons temporary text time transformers utf8-string wai
+ http-client http-types HUnit network resourcet streaming-commons
+ temporary text time transformers unliftio utf8-string wai
wai-conduit warp warp-tls
];
doCheck = false;
description = "HTTP client package with conduit interface and HTTPS support";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-conduit" = callPackage
+ "http-conduit_2_3_7_4" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
, case-insensitive, conduit, conduit-extra, connection, cookie
, data-default-class, hspec, http-client, http-client-tls
, http-types, HUnit, mtl, network, resourcet, streaming-commons
- , temporary, text, time, transformers, unliftio, unliftio-core
+ , temporary, text, time, tls, transformers, unliftio, unliftio-core
, utf8-string, wai, wai-conduit, warp, warp-tls
}:
mkDerivation {
pname = "http-conduit";
- version = "2.3.7.3";
- sha256 = "00rshi1y0h8y4rvsnnad0bppxgpvp40sk7lw1kxmdwy8pi8xrvbs";
- revision = "1";
- editedCabalFile = "0d9mkg8wm943avghjwvq986m667fx63pvvgn2y8gvr6nla8740an";
+ version = "2.3.7.4";
+ sha256 = "1mbaasmxx90gzfirwn8lmjpwj34gf1dk9y3m9mm88rzmy3s6czbb";
libraryHaskellDepends = [
aeson attoparsec base bytestring conduit conduit-extra http-client
http-client-tls http-types mtl resourcet transformers unliftio-core
@@ -138675,12 +137136,13 @@ self: {
aeson base blaze-builder bytestring case-insensitive conduit
conduit-extra connection cookie data-default-class hspec
http-client http-types HUnit network resourcet streaming-commons
- temporary text time transformers unliftio utf8-string wai
+ temporary text time tls transformers unliftio utf8-string wai
wai-conduit warp warp-tls
];
doCheck = false;
description = "HTTP client package with conduit interface and HTTPS support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-conduit-browser" = callPackage
@@ -138713,18 +137175,21 @@ self: {
"http-conduit-downloader" = callPackage
({ mkDerivation, base, bytestring, data-default, HsOpenSSL
- , http-client, http-types, network, network-uri, text, time, zlib
+ , http-client, http-client-openssl, http-types, network
+ , network-uri, text, time, zlib
}:
mkDerivation {
pname = "http-conduit-downloader";
- version = "1.1.2";
- sha256 = "188rhadf1dya2iyvcvfp1xvnhjmhkf06i606mrkrlmzbds2kb8hh";
+ version = "1.1.3";
+ sha256 = "12fv42jnh2glnav082a1d67za9ya9v0zpnxsphxhcy90b4s4rr6x";
libraryHaskellDepends = [
- base bytestring data-default HsOpenSSL http-client http-types
- network network-uri text time zlib
+ base bytestring data-default HsOpenSSL http-client
+ http-client-openssl http-types network network-uri text time zlib
];
description = "HTTP downloader tailored for web-crawler needs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"http-date" = callPackage
@@ -138873,8 +137338,8 @@ self: {
}:
mkDerivation {
pname = "http-io-streams";
- version = "0.1.5.0";
- sha256 = "0c8x4iyvg2yjsvvfvvp96ddw9fpmjiaql4c7kpf93f9i5rkyxjy5";
+ version = "0.1.6.0";
+ sha256 = "03wndmw1pblnjqhni76s5lyyw3l8zbl1csydzl8bp0h1g5vmfpmp";
libraryHaskellDepends = [
attoparsec base base64-bytestring binary blaze-builder
brotli-streams bytestring case-insensitive containers
@@ -139241,6 +137706,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http-rfc7807" = callPackage
+ ({ mkDerivation, aeson, base, call-stack, hspec-expectations-json
+ , http-media, http-types, servant, servant-server, tasty
+ , tasty-hunit, text
+ }:
+ mkDerivation {
+ pname = "http-rfc7807";
+ version = "0.1.0.0";
+ sha256 = "1wysqi3rfyg1fb7p9plb6ihcqzvyb2cqhsfx46ciwgym9nxg8lr4";
+ libraryHaskellDepends = [
+ aeson base http-media http-types servant servant-server text
+ ];
+ testHaskellDepends = [
+ aeson base call-stack hspec-expectations-json tasty tasty-hunit
+ text
+ ];
+ description = "RFC7807 style response messages";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"http-server" = callPackage
({ mkDerivation, base, HTTP, mime, network, network-uri, text, unix
, url, utf8-string
@@ -139411,10 +137898,8 @@ self: {
}:
mkDerivation {
pname = "http2-client";
- version = "0.9.0.0";
- sha256 = "1z46an4sign2ashjsj2y07vkf73i2wzx5x10qsdaf4av5ib8ykxq";
- revision = "1";
- editedCabalFile = "00fg9a62qkjwp7rb38j7z7yy6dk3mkh6mgwspd79v2ycmn4mr25q";
+ version = "0.10.0.0";
+ sha256 = "0kv4qa9cbwwj6b62manzpl1sk4jnsb5vx2y73w49drlfkrw1vpgy";
libraryHaskellDepends = [
async base bytestring containers deepseq http2 lifted-async
lifted-base mtl network stm time tls transformers-base
@@ -139422,8 +137907,6 @@ 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
@@ -139443,8 +137926,6 @@ self: {
];
description = "A command-line http2 client";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"http2-client-grpc" = callPackage
@@ -139494,14 +137975,14 @@ self: {
pname = "http2-grpc-proto3-wire";
version = "0.1.0.0";
sha256 = "00k7sm7z0q8k1zr3lcsyaciylk03c18cpdciqq33rfj6p7jwyphv";
+ revision = "1";
+ editedCabalFile = "0454bzkjf63avp8rckl5pp3l30nc41d3ixzbh9diaml70hkhsv2g";
libraryHaskellDepends = [
base binary bytestring case-insensitive http2-grpc-types
proto3-wire zlib
];
description = "Encoders based on `proto3-wire` for gRPC over HTTP2";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"http2-grpc-types" = callPackage
@@ -139867,6 +138348,8 @@ self: {
libraryHaskellDepends = [ base bytestring deepseq ghc text ];
description = "Redefinition-free prelude alternative";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hums" = callPackage
@@ -140147,8 +138630,8 @@ self: {
}:
mkDerivation {
pname = "hurl";
- version = "1.4.2.0";
- sha256 = "19qf4akwx7aazzy86zhkm5z60342hz07msqxir6ism98dd33fpwl";
+ version = "1.4.2.1";
+ sha256 = "158p0fnlvz03vj29q4b5lzv4070d3l64wa1zsg9v2xlcrr6lrp87";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -140160,8 +138643,6 @@ self: {
executableHaskellDepends = [ base directory network-uri ];
description = "Haskell URL resolver";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hurriyet" = callPackage
@@ -140314,27 +138795,8 @@ self: {
}:
mkDerivation {
pname = "hvega";
- version = "0.9.1.0";
- sha256 = "0gy7f6amg5mvr1lc7s98ld445h4s0j8xjilpdq6c6yy5kgd5hdyp";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ aeson base text unordered-containers ];
- testHaskellDepends = [
- aeson aeson-pretty base bytestring containers filepath tasty
- tasty-golden text unordered-containers
- ];
- description = "Create Vega-Lite visualizations (version 4) in Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hvega_0_10_0_0" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
- , filepath, tasty, tasty-golden, text, unordered-containers
- }:
- mkDerivation {
- pname = "hvega";
- version = "0.10.0.0";
- sha256 = "0jp9sfmyvscxn415z3mv5i2kjrwwabwy4v4qc709qkrfgzd9mmwn";
+ version = "0.11.0.0";
+ sha256 = "1lz5f04yi97wkqhyxvav262ayyvvl96xrgvgzyk1ca1g299dw866";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ aeson base text unordered-containers ];
@@ -140344,7 +138806,6 @@ self: {
];
description = "Create Vega-Lite visualizations (version 4) in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hvega-theme" = callPackage
@@ -140356,8 +138817,6 @@ self: {
libraryHaskellDepends = [ base hvega text ];
description = "Theme for hvega";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-aeson" = callPackage
@@ -140442,8 +138901,6 @@ self: {
doHaddock = false;
description = "Balanced parentheses";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-bits" = callPackage
@@ -140660,8 +139117,6 @@ self: {
];
description = "Elias-Fano";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-excess" = callPackage
@@ -140821,10 +139276,8 @@ self: {
}:
mkDerivation {
pname = "hw-json";
- version = "1.3.2.1";
- sha256 = "11lf4nxnkk8l25a44g1pkr9j1w03l69gqjgli5yfj6k68lzml7bf";
- revision = "2";
- editedCabalFile = "0ks3aj2xdphq9sp5vsblyz13fmwl5cb402awqy3pz3d21g8fl4sn";
+ version = "1.3.2.2";
+ sha256 = "03h5zv94ndsz4vh0jql8rg8pl95rbf8xkyzvr3r55i3kpmb85sbg";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -141020,8 +139473,6 @@ self: {
];
description = "Avro support for Kafka infrastructure";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-kafka-client" = callPackage
@@ -141031,8 +139482,8 @@ self: {
}:
mkDerivation {
pname = "hw-kafka-client";
- version = "3.1.2";
- sha256 = "1yqzh9cvs9yr88wa0r26izd35hg2vfzqvzxbx0l6c1apgc3m7hd6";
+ version = "4.0.0";
+ sha256 = "0cwiaxri121lh713sisy9mka0h6z2ip82hzqbyzqj1dnljkqry9c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -141234,8 +139685,6 @@ self: {
doHaddock = false;
description = "Rank-select";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-rankselect-base" = callPackage
@@ -141354,8 +139803,6 @@ self: {
];
description = "Succint datastructures";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hw-uri" = callPackage
@@ -141391,6 +139838,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Supports IO on URIs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"hw-vector" = callPackage
@@ -141448,8 +139897,6 @@ self: {
];
description = "XML parser based on succinct data structures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hwall-auth-iitk" = callPackage
@@ -142422,27 +140869,23 @@ self: {
({ mkDerivation, base, blaze-html, deepseq, text }:
mkDerivation {
pname = "hyper";
- version = "0.1.0.3";
- sha256 = "0bc2mvxaggdyikdx51qc1li8idmnlw3ha2n3qli6jf1zz8mlqx0s";
- revision = "1";
- editedCabalFile = "1qfavgvdlmsip57grhxs0mawh82nxrq4m0mv9z3vam1b9j6nw2cc";
+ version = "0.2.1.0";
+ sha256 = "14vl52v4qshdyp45qrg8ii8xzpi6n05qdgz3ri59wis8hdw1v06z";
libraryHaskellDepends = [ base blaze-html deepseq text ];
description = "Display class for the HyperHaskell graphical Haskell interpreter";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"hyper-extra" = callPackage
({ mkDerivation, base, diagrams-lib, diagrams-svg, hyper
- , svg-builder, text
+ , QuickCheck, svg-builder, text
}:
mkDerivation {
pname = "hyper-extra";
- version = "0.1.0.3";
- sha256 = "0wscbw5k5gry6p1k6v44fhknhx7wq70bh8kb3k2q0mmxif75j8fa";
+ version = "0.2.0.0";
+ sha256 = "1zcbs9cpr6rfzhsqrv867j79gb3521pyrl32qbp5jwqiy1iyddm5";
libraryHaskellDepends = [
- base diagrams-lib diagrams-svg hyper svg-builder text
+ base diagrams-lib diagrams-svg hyper QuickCheck svg-builder text
];
description = "Display instances for the HyperHaskell graphical Haskell interpreter";
license = stdenv.lib.licenses.bsd3;
@@ -142452,17 +140895,18 @@ self: {
"hyper-haskell-server" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, exceptions
- , haskell-src-exts, hint, hyper, scotty, text, transformers
+ , filepath, haskell-src-exts, hint, hyper, scotty, text
+ , transformers
}:
mkDerivation {
pname = "hyper-haskell-server";
- version = "0.2.1.0";
- sha256 = "0pjyyf0hqdy62nhsllfindl0w5nfz7bj1i7n4l421bsf2hk2cz72";
+ version = "0.2.3.0";
+ sha256 = "1kb7cfniws4qd10swy7vspgbr93xxnzlbcq5jarmdas2kpn3nyhd";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson base bytestring deepseq exceptions haskell-src-exts hint
- hyper scotty text transformers
+ aeson base bytestring deepseq exceptions filepath haskell-src-exts
+ hint hyper scotty text transformers
];
description = "Server back-end for the HyperHaskell graphical Haskell interpreter";
license = stdenv.lib.licenses.bsd3;
@@ -142666,10 +141110,8 @@ self: {
}:
mkDerivation {
pname = "hyraxAbif";
- version = "0.2.3.21";
- sha256 = "0ghhfv8gzs9sg13nj3mhqd24zbrkjj1dgsjz3sql6276kpa1p2kc";
- revision = "3";
- editedCabalFile = "12ka2k7z7yg3jbx6ya409flyqpl6i29hcf445dicbp1jpra2d70f";
+ version = "0.2.3.27";
+ sha256 = "1ww4lgf280sjj9bhj8s6pxadqwk91jkx6lngb2cqcf81gr38drhm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -142831,8 +141273,6 @@ self: {
];
description = "Base i3blocks written in haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"i3ipc" = callPackage
@@ -143309,8 +141749,6 @@ self: {
];
description = "Squares style for the identicon package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"identifiers" = callPackage
@@ -143452,6 +141890,8 @@ self: {
];
description = "Functional Programming Language with Dependent Types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) gmp;};
"ieee" = callPackage
@@ -143701,8 +142141,6 @@ self: {
];
description = "International Geomagnetic Reference Field";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ihaskell" = callPackage
@@ -143877,8 +142315,8 @@ self: {
({ mkDerivation, aeson, base, hvega, ihaskell, text }:
mkDerivation {
pname = "ihaskell-hvega";
- version = "0.3.1.0";
- sha256 = "1zfk58f10r8mkj9wwi4mgqm6hyf2x6zkrxm7rdi8yfvfya38m7fy";
+ version = "0.3.2.0";
+ sha256 = "0k7h33cqj58dv4hrsdjgnbykh036mrvbw6cbr98xlkdq5062pnzp";
libraryHaskellDepends = [ aeson base hvega ihaskell text ];
description = "IHaskell display instance for hvega types";
license = stdenv.lib.licenses.bsd3;
@@ -144470,6 +142908,8 @@ self: {
];
description = "Create worker threads that logs exceptions and restarts";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"imparse" = callPackage
@@ -144592,8 +143032,8 @@ self: {
}:
mkDerivation {
pname = "implicit-hie";
- version = "0.1.2.0";
- sha256 = "0scg27iz2yhkfrsj5hw11qi1gdivgnskmcl4v4111zlvyy14lhc9";
+ version = "0.1.2.5";
+ sha256 = "0jgnsbd38gw20h1lv39bh3n9bhawkjq90ajalgjyy5pih434mphf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -144620,8 +143060,8 @@ self: {
}:
mkDerivation {
pname = "implicit-hie-cradle";
- version = "0.2.0.1";
- sha256 = "1l2i05w547sdgh7dhvwvc8x6i100lb2l3zwr6bhjmapdj5sjnqd1";
+ version = "0.3.0.2";
+ sha256 = "185pisgqp95zkpcksqiwiyghmg01cvfa7g6wzc31004mwwb114ih";
libraryHaskellDepends = [
base base16-bytestring bytestring containers directory extra
filepath hie-bios hslogger implicit-hie process temporary text time
@@ -144821,8 +143261,8 @@ self: {
}:
mkDerivation {
pname = "in-other-words";
- version = "0.1.0.0";
- sha256 = "06ipmkbgncsgcq5rfyn0v4plhbbrzrcx3r4xr1f3f6xv760pfyra";
+ version = "0.1.1.0";
+ sha256 = "0f11si2bnxw2bm5mfnnqh9cfwhlzdcqkw5dfjql1y618db808am9";
libraryHaskellDepends = [
async base exceptions monad-control mtl stm transformers
transformers-base
@@ -144836,6 +143276,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "inbox" = callPackage
+ ({ mkDerivation, async, base, error-or, text, time }:
+ mkDerivation {
+ pname = "inbox";
+ version = "0.1.0";
+ sha256 = "12012di97775da8ijv0qjwaxls36kvly0j7nvqqj15ai3kf9yarq";
+ libraryHaskellDepends = [ async base error-or text time ];
+ description = "Inbox for asychronous messages";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"inc-ref" = callPackage
({ mkDerivation, base, stm }:
mkDerivation {
@@ -144967,28 +143418,6 @@ self: {
"incremental-parser" = callPackage
({ mkDerivation, base, bytestring, checkers, criterion, deepseq
- , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty
- , tasty-quickcheck, text, transformers
- }:
- mkDerivation {
- pname = "incremental-parser";
- version = "0.4.0.2";
- sha256 = "11vip6qxw0y5yza4dcq4iah4kw3lyjsbxgbq1j17p1gr3c3xiafa";
- 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;
- }) {};
-
- "incremental-parser_0_5" = callPackage
- ({ mkDerivation, base, bytestring, checkers, criterion, deepseq
, input-parsers, monoid-subclasses, parsers, QuickCheck
, rank2classes, tasty, tasty-quickcheck, text, transformers
}:
@@ -145008,7 +143437,6 @@ self: {
];
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
@@ -145347,8 +143775,8 @@ self: {
}:
mkDerivation {
pname = "indigo";
- version = "0.3.0";
- sha256 = "1xga3i9rdd2y53m6c8v4c2r44clhs2f82nyynf81n8zjqfgxybkl";
+ version = "0.3.1";
+ sha256 = "1xc2gk7bihgpv78cl1c15x1izwsazmdpdsagan4d6yd0zw30xci4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -145550,33 +143978,6 @@ self: {
}:
mkDerivation {
pname = "influxdb";
- version = "1.7.1.6";
- sha256 = "1psx9v95fhlapizhh7jdz4cvynwv9jiqn09z0843lhc74jqf65in";
- isLibrary = true;
- isExecutable = true;
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- aeson attoparsec base bytestring clock containers foldl http-client
- http-types lens network optional-args scientific tagged text time
- unordered-containers vector
- ];
- testHaskellDepends = [
- base containers doctest raw-strings-qq tasty tasty-hunit
- template-haskell time
- ];
- description = "Haskell client library for InfluxDB";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "influxdb_1_9_0" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal
- , cabal-doctest, clock, containers, doctest, foldl, http-client
- , http-types, lens, network, optional-args, raw-strings-qq
- , scientific, tagged, tasty, tasty-hunit, template-haskell, text
- , time, unordered-containers, vector
- }:
- mkDerivation {
- pname = "influxdb";
version = "1.9.0";
sha256 = "1d580f2j71x0iww0q2mg47jbhjsd83yarrnnmcp9f2bx7cix174v";
isLibrary = true;
@@ -145593,7 +143994,6 @@ self: {
];
description = "Haskell client library for InfluxDB";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"informative" = callPackage
@@ -145775,35 +144175,6 @@ self: {
broken = true;
}) {};
- "inline-c_0_5_6_1" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring
- , containers, cryptohash, directory, filepath, hashable, hspec, mtl
- , parsec, parsers, QuickCheck, raw-strings-qq, regex-posix
- , template-haskell, transformers, unordered-containers, vector
- }:
- mkDerivation {
- pname = "inline-c";
- version = "0.5.6.1";
- sha256 = "0kpbwrri9idllwd7gfamghrdrz16zqjphmb3cp5nq160dxz73brd";
- revision = "1";
- editedCabalFile = "0q8wxvsi2gycyv98hw910p87633l9azchnn9783vsknbycsi1c64";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-wl-pprint base binary bytestring containers cryptohash
- directory filepath hashable mtl parsec parsers QuickCheck
- template-haskell transformers unordered-containers vector
- ];
- testHaskellDepends = [
- ansi-wl-pprint base containers hashable hspec parsers QuickCheck
- raw-strings-qq regex-posix template-haskell transformers
- unordered-containers vector
- ];
- description = "Write Haskell source files including C code inline. No FFI required.";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"inline-c" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, containers
, hashable, hspec, mtl, parsec, parsers, QuickCheck, raw-strings-qq
@@ -145812,31 +144183,6 @@ self: {
}:
mkDerivation {
pname = "inline-c";
- version = "0.9.1.2";
- sha256 = "1lvsjjxnjwfnqlq4i5mz2xizpx052nq25wjgm47302akpjzpym6n";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-wl-pprint base bytestring containers hashable mtl parsec
- parsers template-haskell transformers unordered-containers vector
- ];
- testHaskellDepends = [
- ansi-wl-pprint base containers hashable hspec parsers QuickCheck
- raw-strings-qq regex-posix split template-haskell transformers
- unordered-containers vector
- ];
- description = "Write Haskell source files including C code inline. No FFI required.";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "inline-c_0_9_1_3" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers
- , hashable, hspec, mtl, parsec, parsers, QuickCheck, raw-strings-qq
- , regex-posix, split, template-haskell, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "inline-c";
version = "0.9.1.3";
sha256 = "1b2dcyg6b15q5n7k9k391y78wblqlvkrwxr8hbnp0y6x8h8l8ma8";
isLibrary = true;
@@ -145852,20 +144198,6 @@ self: {
];
description = "Write Haskell source files including C code inline. No FFI required.";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "inline-c-cpp_0_1_0_0" = callPackage
- ({ mkDerivation, base, inline-c, template-haskell }:
- mkDerivation {
- pname = "inline-c-cpp";
- version = "0.1.0.0";
- sha256 = "0iba77p2ncxbg5sb4ks8f3lgp6zdnjhzvrr2ap3yg49is5b9f5rf";
- libraryHaskellDepends = [ base inline-c template-haskell ];
- testHaskellDepends = [ base ];
- description = "Lets you embed C++ code into Haskell";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"inline-c-cpp" = callPackage
@@ -145904,17 +144236,20 @@ self: {
"inline-java" = callPackage
({ mkDerivation, base, bytestring, Cabal, criterion, deepseq
, directory, filepath, ghc, hspec, jni, jvm, language-java, mtl
- , process, singletons, template-haskell, temporary, text
+ , process, QuickCheck, quickcheck-unicode, singletons
+ , template-haskell, temporary, text, vector
}:
mkDerivation {
pname = "inline-java";
- version = "0.9.1";
- sha256 = "12p59gf4dk4q00zpjwp0bzgljfa0nhr32x5schg0hj9bgsj6c6pk";
+ version = "0.10.0";
+ sha256 = "0rs2rw21y0yc0h4c1rz25qblk39flkg19fwjz87s6l0ly1hvcrm5";
libraryHaskellDepends = [
base bytestring Cabal directory filepath ghc jni jvm language-java
mtl process template-haskell temporary text
];
- testHaskellDepends = [ base hspec jni jvm text ];
+ testHaskellDepends = [
+ base hspec jni jvm QuickCheck quickcheck-unicode text vector
+ ];
benchmarkHaskellDepends = [
base criterion deepseq jni jvm singletons
];
@@ -145956,6 +144291,8 @@ self: {
];
description = "Seamlessly call R from Haskell and vice versa. No FFI required.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) R;};
"inliterate" = callPackage
@@ -146358,6 +144695,8 @@ self: {
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_3_0" = callPackage
@@ -146379,10 +144718,8 @@ self: {
}:
mkDerivation {
pname = "integer-logarithms";
- version = "1.0.3";
- sha256 = "05pc5hws66csvcvfswlwcr2fplwn1lbssvwifjxkbbwqhq0n5qjs";
- revision = "2";
- editedCabalFile = "0a6j3313vz7n7dn8abddyib4jggblaq89f87ib4imdwjxjajbm33";
+ version = "1.0.3.1";
+ sha256 = "0zzapclfabc76g8jzsbsqwdllx2zn0gp4raq076ib6v0mfgry2lv";
libraryHaskellDepends = [ array base ghc-prim integer-gmp ];
testHaskellDepends = [
base QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck
@@ -146718,8 +145055,6 @@ self: {
];
description = "Tracery-like randomized text interpolation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"interpol" = callPackage
@@ -146858,27 +145193,6 @@ self: {
}:
mkDerivation {
pname = "interpolator";
- version = "1.0.0";
- sha256 = "0kkasycgba525mag4362w8kirnxjydrmh7gjqk5xs6zgcp1ralb7";
- libraryHaskellDepends = [
- aeson base containers either mono-traversable mtl
- product-profunctors profunctors QuickCheck template-haskell text
- ];
- testHaskellDepends = [
- aeson base containers either hspec mono-traversable mtl
- product-profunctors profunctors QuickCheck template-haskell text
- ];
- description = "Runtime interpolation of environment variables in records using profunctors";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "interpolator_1_1_0_2" = callPackage
- ({ mkDerivation, aeson, base, containers, either, hspec
- , mono-traversable, mtl, product-profunctors, profunctors
- , QuickCheck, template-haskell, text
- }:
- mkDerivation {
- pname = "interpolator";
version = "1.1.0.2";
sha256 = "1lrng3y109brnm6jlqnbhrdi38qgwlb0lymxjdv2yv71x7rwdgvf";
libraryHaskellDepends = [
@@ -146891,7 +145205,6 @@ self: {
];
description = "Runtime interpolation of environment variables in records using profunctors";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interprocess" = callPackage
@@ -147013,13 +145326,13 @@ self: {
"intricacy" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, crypto-api, crypto-pubkey-types, cryptohash, directory, filepath
- , hscurses, mtl, network-fancy, random, RSA, safe, SDL, SDL-gfx
- , SDL-mixer, SDL-ttf, stm, time, transformers, vector
+ , hscurses, mtl, ncurses, network-fancy, random, RSA, safe, SDL
+ , SDL-gfx, SDL-mixer, SDL-ttf, stm, time, transformers, vector
}:
mkDerivation {
pname = "intricacy";
- version = "0.7.2";
- sha256 = "0iv79rlgi7xi5l0a530m8vniba5jnn45hddwfrrm9yyfvpfgx1sw";
+ version = "0.7.2.3";
+ sha256 = "1651ivbk4iiwhy5hwwhc8s2dgfxdm9f4hswfxkdb06yp7i6y2pyj";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -147029,9 +145342,10 @@ self: {
network-fancy random RSA safe SDL SDL-gfx SDL-mixer SDL-ttf stm
time transformers vector
];
+ executablePkgconfigDepends = [ ncurses ];
description = "A game of competitive puzzle-design";
license = stdenv.lib.licenses.gpl3;
- }) {};
+ }) {inherit (pkgs) ncurses;};
"intrinsic-superclasses" = callPackage
({ mkDerivation, base, containers, haskell-src-meta, mtl
@@ -147049,28 +145363,6 @@ self: {
}) {};
"intro" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, dlist
- , extra, hashable, lens, mtl, optics, QuickCheck, safe, text
- , transformers, unordered-containers, writer-cps-mtl
- }:
- mkDerivation {
- pname = "intro";
- version = "0.7.0.0";
- sha256 = "18ddkcm77jxqpqjaaqs1qmzvn8zgincrybb3d4zcsggrp6llghc3";
- libraryHaskellDepends = [
- base bytestring containers deepseq dlist extra hashable mtl safe
- text transformers unordered-containers writer-cps-mtl
- ];
- testHaskellDepends = [
- base bytestring containers deepseq dlist extra hashable lens mtl
- optics QuickCheck safe text transformers unordered-containers
- writer-cps-mtl
- ];
- description = "Safe and minimal prelude";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "intro_0_9_0_0" = callPackage
({ mkDerivation, base, bytestring, containers, extra, hashable
, lens, mtl, optics, QuickCheck, safe, text, transformers
, unordered-containers, writer-cps-mtl
@@ -147090,7 +145382,6 @@ self: {
];
description = "Safe and minimal prelude";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"intro-prelude" = callPackage
@@ -147194,30 +145485,6 @@ self: {
}:
mkDerivation {
pname = "invariant";
- version = "0.5.3";
- sha256 = "03245nhcqxx6b0yw81fzqaqd7cgllmx8awzhvs2xv7ys73pmsgnp";
- revision = "2";
- editedCabalFile = "0vsil8x0z283n4993nk9m0v0y0za1b6lph59k1rb2i4wj05syx2v";
- libraryHaskellDepends = [
- array base bifunctors comonad containers contravariant ghc-prim
- profunctors StateVar stm tagged template-haskell th-abstraction
- transformers transformers-compat unordered-containers
- ];
- testHaskellDepends = [ base hspec QuickCheck template-haskell ];
- testToolDepends = [ hspec-discover ];
- description = "Haskell98 invariant functors";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "invariant_0_5_4" = callPackage
- ({ mkDerivation, array, base, bifunctors, comonad, containers
- , contravariant, ghc-prim, hspec, hspec-discover, profunctors
- , QuickCheck, StateVar, stm, tagged, template-haskell
- , th-abstraction, transformers, transformers-compat
- , unordered-containers
- }:
- mkDerivation {
- pname = "invariant";
version = "0.5.4";
sha256 = "1jlp0gbfjsx7k08275djh8m3v4rpg8llw5gdkg9s9qfx0lc0mymr";
libraryHaskellDepends = [
@@ -147229,7 +145496,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Haskell98 invariant functors";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"invertible" = callPackage
@@ -147641,6 +145907,8 @@ self: {
];
description = "Library for IP and MAC addresses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ip-quoter" = callPackage
@@ -147655,6 +145923,8 @@ self: {
testHaskellDepends = [ base cpu network tasty tasty-hunit ];
description = "Quasiquoter for IP addresses";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ip2location" = callPackage
@@ -147757,8 +146027,8 @@ self: {
}:
mkDerivation {
pname = "ipfs";
- version = "1.1.5.0";
- sha256 = "050zj21m4pg8jnpd594p2wc5m3nn4j6cmmv0069mi7kg473dqz2m";
+ version = "1.1.5.1";
+ sha256 = "0c93s1s3l72yw2lb28v37bnhmvcn5s2w1620fsx0z4ij1z8dnk19";
libraryHaskellDepends = [
aeson base bytestring envy flow Glob http-media ip lens
monad-logger regex-compat rio servant servant-client servant-server
@@ -147771,7 +146041,7 @@ self: {
text vector yaml
];
description = "Access IPFS locally and remotely";
- license = stdenv.lib.licenses.agpl3Plus;
+ license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -147789,6 +146059,8 @@ self: {
];
description = "Auto-generated IPFS HTTP API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ipld-cid" = callPackage
@@ -147856,10 +146128,8 @@ self: {
}:
mkDerivation {
pname = "iproute";
- version = "1.7.9";
- sha256 = "1m306fi39ifqq53sklwn81q96wam8nvx7mr5hv4m9f26kiczlism";
- revision = "1";
- editedCabalFile = "1vbzch9lainl05ydym5z8x0kz0a0ywwba45d7xgg5fb8cp2n5zxh";
+ version = "1.7.10";
+ sha256 = "0libq5v22cm6bj1lga1rrkgww50bhnpns7rz7da90yycqv2k7d5m";
libraryHaskellDepends = [
appar base byteorder bytestring containers network
];
@@ -148047,6 +146317,8 @@ self: {
pname = "irc-core";
version = "2.9";
sha256 = "1n1fd46am795bsb96jnq2kj3gn787q5j41115g1smfp01zbnjp1b";
+ revision = "1";
+ editedCabalFile = "12z28f96iw9jni57rdzy8kz7sa1zwfs5k3fvfmf6sgx6wzhwcm6h";
libraryHaskellDepends = [
attoparsec base base64-bytestring bytestring hashable primitive
text time vector
@@ -148054,6 +146326,7 @@ self: {
testHaskellDepends = [ base hashable HUnit text ];
description = "IRC core library for glirc";
license = stdenv.lib.licenses.isc;
+ maintainers = with stdenv.lib.maintainers; [ kiwi ];
}) {};
"irc-ctcp" = callPackage
@@ -148201,8 +146474,6 @@ self: {
];
description = "A library for writing IRC bots";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ircbouncer" = callPackage
@@ -148350,25 +146621,12 @@ self: {
({ mkDerivation, base, hspec, text }:
mkDerivation {
pname = "isbn";
- version = "1.0.0.0";
- sha256 = "0cxffahx54mf0baib9w2g2gbmcpmnzvpga71zggjaqkl0l7a7hf5";
- libraryHaskellDepends = [ base text ];
- testHaskellDepends = [ base hspec text ];
- description = "ISBN Validation and Manipulation";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "isbn_1_1_0_1" = callPackage
- ({ mkDerivation, base, hspec, text }:
- mkDerivation {
- pname = "isbn";
- version = "1.1.0.1";
- sha256 = "0s7b06a0d37bhb38k2my6g6brn6bywxr59kw2c103dp4y4kzrcpn";
+ version = "1.1.0.2";
+ sha256 = "0gvygq19skhjx946nyahyvkm4j60s9fj1jcdzi9435apmjpra32j";
libraryHaskellDepends = [ base text ];
testHaskellDepends = [ base hspec text ];
description = "ISBN Validation and Manipulation";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"isdicom" = callPackage
@@ -148888,14 +147146,16 @@ self: {
pname = "iterm-show";
version = "0.1.0.1";
sha256 = "1wlrn6q3v5a4pqmk3a3syir7szq97g658s1bzrq5p65frs7i7daw";
- revision = "1";
- editedCabalFile = "1xyb5dj53vl4nf2a68zda95lz0fr987rghvh3610bmrgr8hg3y02";
+ revision = "2";
+ editedCabalFile = "0qz82j4gz226qhqhmami40ws6r8rlwf0l22hilzk1n4x00bvcdm7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base base64-bytestring bytestring ];
executableHaskellDepends = [ base bytestring ];
description = "Enable graphical display of images inline on some terminals";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"iterm-show-JuicyPixels" = callPackage
@@ -148904,6 +147164,8 @@ self: {
pname = "iterm-show-JuicyPixels";
version = "0.1.0.0";
sha256 = "1r4if1izanpz7kc2hl8vcn6iz7p0sk5dqq8rxvrpclcx3dklhh6z";
+ revision = "1";
+ editedCabalFile = "0pd14gfdpd12h1vlrk3dfg5vxlpd1jv2zi32nxic7p09wz59dkpk";
libraryHaskellDepends = [ base iterm-show JuicyPixels ];
description = "Orphan Show instances for JuciyPixels image types";
license = stdenv.lib.licenses.bsd3;
@@ -148919,6 +147181,8 @@ self: {
pname = "iterm-show-diagrams";
version = "0.1.0.0";
sha256 = "1szan9v24d8fksxcw3fqvzppf49664xm5y1zdk9yv007r5pfxr4c";
+ revision = "1";
+ editedCabalFile = "0yfc7phc2566mc7cqbin2px2l22nfg0xssf0vp0xkd4zqchji453";
libraryHaskellDepends = [
base diagrams-lib diagrams-rasterific iterm-show JuicyPixels
];
@@ -149010,6 +147274,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ivory-avr-atmega328p-registers" = callPackage
+ ({ mkDerivation, base, base-compat, ivory, ivory-hw, monadLib }:
+ mkDerivation {
+ pname = "ivory-avr-atmega328p-registers";
+ version = "0.1.0.0";
+ sha256 = "07janz4d196p0q3578gs77d2vbnmaz67wdb6swpdkxbhl8s7zpcg";
+ libraryHaskellDepends = [
+ base base-compat ivory ivory-hw monadLib
+ ];
+ description = "Ivory register bindings for the Atmega328p";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"ivory-backend-c" = callPackage
({ mkDerivation, base, base-compat, bytestring, containers
, directory, filepath, ivory, ivory-artifact, ivory-opts
@@ -149391,12 +147670,16 @@ self: {
}:
mkDerivation {
pname = "j";
- version = "0.1.1.0";
- sha256 = "0a3xl4sr5s7436z8fnjg6vknk7wi202b8ryvswxrv1ks49h2zg8s";
+ version = "0.2.1.0";
+ sha256 = "1r2lldy35sfzqrd82v2fj113l10mhvllf4yxbkrfy0y7wv0c5v8n";
+ revision = "1";
+ editedCabalFile = "022ah42q1ba8ank33jn5r9h7fbs3579mlrk6ks8q7vbcm4rnalj0";
libraryHaskellDepends = [ base bytestring repa unix ];
testHaskellDepends = [ base bytestring repa tasty tasty-hunit ];
description = "J in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"j2hs" = callPackage
@@ -149553,18 +147836,16 @@ self: {
}) {};
"jalaali" = callPackage
- ({ mkDerivation, base, deepseq, time }:
+ ({ mkDerivation, base, deepseq, hspec, time }:
mkDerivation {
pname = "jalaali";
- version = "0.2.0";
- sha256 = "025ryrz87bii3401nq0bhyigzrs6lkippds6r4h0qzpq4pg8l7m0";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base ];
+ version = "1.0.0.0";
+ sha256 = "0hf0vgvjcklf8iq7gcrncmw4pm2c6aawx3cp34fji2bl14dgv4zr";
+ libraryHaskellDepends = [ base time ];
+ testHaskellDepends = [ base hspec time ];
benchmarkHaskellDepends = [ base deepseq time ];
- description = "Convert Jalaali and Gregorian calendar systems to each other";
+ description = "Jalaali calendar systems";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"jalla" = callPackage
@@ -150067,21 +148348,6 @@ self: {
({ mkDerivation, base, mtl, parsec, tasty, tasty-hunit, text }:
mkDerivation {
pname = "jira-wiki-markup";
- version = "1.1.4";
- sha256 = "0riwi6i0vvmfffprzd4gklxjivjv1x7cmb2vx43x6n8yfrd75yzv";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base mtl parsec text ];
- executableHaskellDepends = [ base text ];
- testHaskellDepends = [ base parsec tasty tasty-hunit text ];
- description = "Handle Jira wiki markup";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "jira-wiki-markup_1_3_2" = callPackage
- ({ mkDerivation, base, mtl, parsec, tasty, tasty-hunit, text }:
- mkDerivation {
- pname = "jira-wiki-markup";
version = "1.3.2";
sha256 = "16vcy9gn6qrzvr99l26az4yi2dy9xngcb1wmj86yl7bmk1hcq3wc";
isLibrary = true;
@@ -150091,7 +148357,6 @@ self: {
testHaskellDepends = [ base parsec tasty tasty-hunit text ];
description = "Handle Jira wiki markup";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jmacro" = callPackage
@@ -150214,16 +148479,17 @@ self: {
}) {};
"jni" = callPackage
- ({ mkDerivation, base, bytestring, choice, constraints, containers
- , cpphs, deepseq, hspec, inline-c, jdk, singletons
+ ({ mkDerivation, async, base, bytestring, choice, constraints
+ , containers, cpphs, deepseq, hspec, inline-c, jdk, singletons, stm
+ , text
}:
mkDerivation {
pname = "jni";
- version = "0.7.0";
- sha256 = "0dznaw0aqkmmymabws4dg7d71acgj72gfn5r587bi5gq0x86sgr3";
+ version = "0.8.0";
+ sha256 = "0m94p2zx877snh3imwcdnwa8ajfb76cg2rjgjx3pan508ham1h5i";
libraryHaskellDepends = [
- base bytestring choice constraints containers deepseq inline-c
- singletons
+ async base bytestring choice constraints containers deepseq
+ inline-c singletons stm text
];
librarySystemDepends = [ jdk ];
libraryToolDepends = [ cpphs ];
@@ -150326,12 +148592,16 @@ self: {
}) {};
"joint" = callPackage
- ({ mkDerivation, base, transformers }:
+ ({ mkDerivation, adjunctions, base, comonad, distributive
+ , transformers
+ }:
mkDerivation {
pname = "joint";
- version = "0.1.7";
- sha256 = "193ygi06hfn1smdhh7fz74lz2gffcvg66cxp6qlvi7m3rbhm1f1l";
- libraryHaskellDepends = [ base transformers ];
+ version = "0.1.8";
+ sha256 = "174i51nlck81h9pc9jgmd0yj3d6xpvza0i4a8y4f1fpnz1zrqxg5";
+ libraryHaskellDepends = [
+ adjunctions base comonad distributive transformers
+ ];
description = "Trying to compose non-composable";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -150394,36 +148664,6 @@ self: {
}:
mkDerivation {
pname = "jose";
- version = "0.8.3.1";
- sha256 = "14cbdah9khw8z876c1fn26asp1xa3azn7hh7a04chznmqagnmbmj";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson attoparsec base base64-bytestring bytestring concise
- containers cryptonite lens memory monad-time mtl network-uri
- QuickCheck quickcheck-instances safe template-haskell text time
- unordered-containers vector x509
- ];
- testHaskellDepends = [
- aeson attoparsec base base64-bytestring bytestring concise
- containers cryptonite hspec lens memory monad-time mtl network-uri
- pem QuickCheck quickcheck-instances safe tasty tasty-hspec
- tasty-quickcheck template-haskell text time unordered-containers
- vector x509
- ];
- description = "Javascript Object Signing and Encryption and JSON Web Token library";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "jose_0_8_4" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
- , bytestring, concise, containers, cryptonite, hspec, lens, memory
- , monad-time, mtl, network-uri, pem, QuickCheck
- , quickcheck-instances, safe, tasty, tasty-hspec, tasty-quickcheck
- , template-haskell, text, time, unordered-containers, vector, x509
- }:
- mkDerivation {
- pname = "jose";
version = "0.8.4";
sha256 = "0xs4r4znbgfc407q3zndhffk6l9m57wml29pcwyqywd5i3xl5pyb";
isLibrary = true;
@@ -150443,7 +148683,6 @@ self: {
];
description = "Javascript Object Signing and Encryption and JSON Web Token library";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jose-jwt" = callPackage
@@ -150514,6 +148753,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "js-chart" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "js-chart";
+ version = "2.9.4.1";
+ sha256 = "03mxr6xr9z20m2hy7hvl9cq3a67k0n9zaqwi7wlqy6xx6pfyy20a";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ description = "Obtain minified chart.js code";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"js-dgtable" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -150773,6 +149025,8 @@ self: {
libraryHaskellDepends = [ aeson base ];
description = "Union 'alternative' or Either that has untagged JSON encoding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"json-api" = callPackage
@@ -150919,6 +149173,8 @@ self: {
];
description = "Automatic type declaration for JSON input data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"json-b" = callPackage
@@ -150978,8 +149234,6 @@ self: {
benchmarkHaskellDepends = [ aeson criterion rebase ];
description = "Direct-to-bytes JSON Builder";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"json-directory" = callPackage
@@ -150990,6 +149244,8 @@ self: {
pname = "json-directory";
version = "0.1.0.1";
sha256 = "145z46hh3ba3g7niwv9kf5djfv3xa1q5fmwadi629h7grfij0rr3";
+ revision = "1";
+ editedCabalFile = "193f2vndgfhhb26yq15nai22cmzdlcypby8bbyy93hyidr7rd981";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -151333,8 +149589,8 @@ self: {
pname = "json-rpc-server";
version = "0.2.6.0";
sha256 = "1xfcxbwri9a5p3xxbc4kvr1kqdnm4c1axd8kgb8dglabffbrk7hn";
- revision = "7";
- editedCabalFile = "1fjkl0p5glkk01jny6ar62356pmp2a2vf9v1jq67ly3y14dcvywq";
+ revision = "8";
+ editedCabalFile = "0cg2b7jggjpk6cryc1v7cx06nvkffsh6xz76gp0pz0wfn1m96pxy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -151437,8 +149693,8 @@ self: {
}:
mkDerivation {
pname = "json-syntax";
- version = "0.1.1.0";
- sha256 = "08an68dh7ci5a84p25qzyfijhqbqsmsps0cyv8j5s3jfisaggbp5";
+ version = "0.1.2.0";
+ sha256 = "0i0b54ykfd530wl8gmqw13wjwj5m6wdfgc1nyxxdz1abydxy5bpn";
libraryHaskellDepends = [
array-builder array-chunks base bytebuild byteslice bytesmith
bytestring primitive scientific-notation text-short
@@ -151449,8 +149705,8 @@ self: {
tasty-hunit text text-short unordered-containers vector
];
benchmarkHaskellDepends = [
- aeson base byteslice bytestring gauge neat-interpolation primitive
- scientific-notation text
+ aeson base bytebuild byteslice bytestring gauge neat-interpolation
+ primitive scientific-notation text
];
description = "High-performance JSON parser and encoder";
license = stdenv.lib.licenses.bsd3;
@@ -151458,6 +149714,37 @@ self: {
broken = true;
}) {};
+ "json-to-haskell" = callPackage
+ ({ mkDerivation, aeson, aeson-extra, ansi-wl-pprint, base, bimap
+ , bytestring, casing, containers, hspec, microlens-platform, mtl
+ , nonempty-containers, optparse-applicative, raw-strings-qq
+ , recursion-schemes, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-to-haskell";
+ version = "0.1.1.2";
+ sha256 = "0l4i613xd00vrfihh7yrkj1vp99vyvxgbb4902yla9bl80qb3khz";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-extra base bimap casing containers microlens-platform
+ mtl nonempty-containers recursion-schemes text unordered-containers
+ vector
+ ];
+ executableHaskellDepends = [
+ aeson aeson-extra ansi-wl-pprint base bimap bytestring casing
+ containers microlens-platform mtl nonempty-containers
+ optparse-applicative raw-strings-qq recursion-schemes text
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson aeson-extra base bimap bytestring casing containers hspec
+ microlens-platform mtl nonempty-containers raw-strings-qq
+ recursion-schemes text unordered-containers vector
+ ];
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"json-togo" = callPackage
({ mkDerivation, aeson, attoparsec, attoparsec-trans, base
, bytestring, scientific, text, transformers, unordered-containers
@@ -151523,6 +149810,8 @@ self: {
];
description = "A collection of JSON tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"json-tracer" = callPackage
@@ -151633,8 +149922,6 @@ self: {
];
description = "Serialising to and from JSON5";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"jsonextfilter" = callPackage
@@ -151660,21 +149947,25 @@ self: {
}) {};
"jsonifier" = callPackage
- ({ mkDerivation, aeson, base, bytestring, gauge, hedgehog
- , numeric-limits, ptr-poker, rerebase, scientific, text
+ ({ mkDerivation, aeson, base, buffer-builder, bytestring, gauge
+ , hedgehog, numeric-limits, ptr-poker, rerebase, scientific, text
, text-builder
}:
mkDerivation {
pname = "jsonifier";
- version = "0.1.0.2";
- sha256 = "1vm7qp38wkv2l3wi32kv2hcbzpzk7yf9xffh09ani395dggw94hx";
+ version = "0.1.0.5";
+ sha256 = "0qx296dnhb7gdf1zybs20pa0fgi2zz6wbb4x9kcr31p7z51hd07v";
libraryHaskellDepends = [
base bytestring ptr-poker scientific text
];
testHaskellDepends = [ aeson hedgehog numeric-limits rerebase ];
- benchmarkHaskellDepends = [ aeson gauge rerebase text-builder ];
+ benchmarkHaskellDepends = [
+ aeson buffer-builder gauge rerebase text-builder
+ ];
description = "Fast and simple JSON encoding toolkit";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"jsonpath" = callPackage
@@ -151789,6 +150080,8 @@ self: {
];
description = "JSON Schema generator from Algebraic data type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"jsonsql" = callPackage
@@ -151879,8 +150172,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Cherry picking in JSON objects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"jspath" = callPackage
@@ -152003,8 +150294,6 @@ self: {
];
description = "SVG to G-Code converter";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"jukebox" = callPackage
@@ -152058,8 +150347,8 @@ self: {
({ mkDerivation, base, tasty, tasty-golden, text, xml-conduit }:
mkDerivation {
pname = "junit-xml";
- version = "0.1.0.1";
- sha256 = "1r75ncsmr5yj7xbgrw4sipjii7l3v7hj6nfi1lidc26n4m7r8ib1";
+ version = "0.1.0.2";
+ sha256 = "0sm738irwvmdnn8cvf0rnvp8s5gmr0ih241l27sasqq18nra2v04";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base text xml-conduit ];
testHaskellDepends = [ base tasty tasty-golden ];
@@ -152114,18 +150403,20 @@ self: {
"jvm" = callPackage
({ mkDerivation, base, bytestring, choice, constraints, criterion
- , deepseq, distributed-closure, exceptions, hspec, jni, singletons
- , template-haskell, text, vector
+ , deepseq, distributed-closure, exceptions, hspec, jni, QuickCheck
+ , quickcheck-text, singletons, template-haskell, text, vector
}:
mkDerivation {
pname = "jvm";
- version = "0.5.0";
- sha256 = "18n0b5bvy5hhq5x4ynbxa3zbqbh4z5isvzgg9h6hgs7366jyrqhf";
+ version = "0.6.0";
+ sha256 = "119davscv5mrw2mnlrklx8hbjrc7lhf5a9jphdnnxs6bywi8i2zm";
libraryHaskellDepends = [
base bytestring choice constraints distributed-closure exceptions
jni singletons template-haskell text vector
];
- testHaskellDepends = [ base bytestring hspec jni text ];
+ testHaskellDepends = [
+ base bytestring hspec jni QuickCheck quickcheck-text text
+ ];
benchmarkHaskellDepends = [
base criterion deepseq jni singletons text
];
@@ -152142,15 +150433,15 @@ self: {
}:
mkDerivation {
pname = "jvm-batching";
- version = "0.1.2";
- sha256 = "1if6yklllgja48bhaqggvmhsx5klbscx2clq37am7vapic5gydai";
+ version = "0.2.0";
+ sha256 = "19z0db10y181n4adkz23cmly0q4zp953zh6f3r7rmxcd78758pbk";
setupHaskellDepends = [ base Cabal inline-java ];
libraryHaskellDepends = [
base bytestring distributed-closure inline-java jni jvm singletons
text vector
];
testHaskellDepends = [
- base bytestring hspec inline-java jvm text vector
+ base bytestring hspec inline-java jni jvm text vector
];
benchmarkHaskellDepends = [
base criterion deepseq jvm split vector
@@ -152220,14 +150511,16 @@ self: {
}:
mkDerivation {
pname = "jvm-streaming";
- version = "0.3.2";
- sha256 = "16qr1wb8ria2n26irpirfvgr43ibhjfypxbyvzc0vwi941m7np4m";
+ version = "0.4.0";
+ sha256 = "0k8y6kvbymmjlr3bvgcws0z2hwdznyr3b3alkwsjag49lsgp21sd";
setupHaskellDepends = [ base Cabal inline-java jvm-batching ];
libraryHaskellDepends = [
base distributed-closure inline-java jni jvm jvm-batching
singletons streaming vector
];
- testHaskellDepends = [ base hspec inline-java jvm streaming text ];
+ testHaskellDepends = [
+ base hspec inline-java jni jvm streaming text
+ ];
benchmarkHaskellDepends = [
base criterion deepseq jvm streaming text vector
];
@@ -152777,8 +151070,6 @@ self: {
];
description = "Datadog scribe for the Katip logging framework";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"katip-elasticsearch" = callPackage
@@ -153061,8 +151352,6 @@ self: {
];
description = "Fast concurrent queues much inspired by unagi-chan";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"kbq-gu" = callPackage
@@ -153225,6 +151514,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "keep-alive" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "keep-alive";
+ version = "0.1.1.0";
+ sha256 = "1h1x28adh7y561pmmbw064vyz9qx013spkcr8pwg9hjcnzn03yvw";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ description = "TCP keep alive implementation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"keera-callbacks" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
@@ -153607,6 +151908,40 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "kempe" = callPackage
+ ({ mkDerivation, alex, array, base, bytestring, composition-prelude
+ , containers, criterion, deepseq, extra, filepath, happy, microlens
+ , microlens-mtl, mtl, optparse-applicative, prettyprinter, process
+ , tasty, tasty-golden, tasty-hunit, temporary, text, transformers
+ }:
+ mkDerivation {
+ pname = "kempe";
+ version = "0.1.0.1";
+ sha256 = "0wnjljwnwy9qq575v493y2dsbimks3plbsripfrjph0ldpianrdm";
+ isLibrary = false;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ array base bytestring composition-prelude containers deepseq extra
+ microlens microlens-mtl mtl prettyprinter process temporary text
+ transformers
+ ];
+ libraryToolDepends = [ alex happy ];
+ executableHaskellDepends = [ base optparse-applicative ];
+ testHaskellDepends = [
+ base bytestring deepseq filepath prettyprinter process tasty
+ tasty-golden tasty-hunit temporary
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion prettyprinter text
+ ];
+ doHaddock = false;
+ description = "Kempe compiler";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"kerry" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
, errors, hedgehog, hedgehog-corpus, mmorph, mtl, process
@@ -153631,6 +151966,27 @@ self: {
broken = true;
}) {};
+ "kesha" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers
+ , cryptohash-md5, cryptohash-sha1, cryptohash-sha256, directory
+ , filepath, hspec, process, QuickCheck, temporary, text
+ }:
+ mkDerivation {
+ pname = "kesha";
+ version = "0.1.0.1";
+ sha256 = "1pcr284hcbswfh2bfx1ga0wz135ffzcn9g52am1ig6ayfb0b589c";
+ libraryHaskellDepends = [
+ base binary bytestring containers cryptohash-md5 cryptohash-sha1
+ cryptohash-sha256 directory filepath text
+ ];
+ testHaskellDepends = [
+ base bytestring containers directory filepath hspec process
+ QuickCheck temporary
+ ];
+ description = "Haskell implementation of nix-hash";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"keter" = callPackage
({ mkDerivation, aeson, array, async, attoparsec, base
, blaze-builder, bytestring, case-insensitive, conduit
@@ -153727,22 +152083,24 @@ self: {
"keycloak-hs" = callPackage
({ mkDerivation, aeson, aeson-casing, base, base64-bytestring
- , bytestring, containers, exceptions, hslogger, http-api-data
- , http-client, http-types, jwt, lens, mtl, safe, string-conversions
- , text, word8, wreq
+ , bytestring, containers, exceptions, hashable, hslogger
+ , http-api-data, http-client, http-types, jose, lens, lens-aeson
+ , mtl, safe, string-conversions, text, unordered-containers, word8
+ , wreq
}:
mkDerivation {
pname = "keycloak-hs";
- version = "1.1.1";
- sha256 = "1ycr1q7sfr68zbx1jxnfv0c19w2nv2rxczi5aixd01ck8v1kx798";
+ version = "2.1.0";
+ sha256 = "0yki4fqbgirnvcaf5p00pskh91abspivgkkdi9m93andz56vl23v";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-casing base base64-bytestring bytestring containers
- exceptions hslogger http-api-data http-client http-types jwt lens
- mtl safe string-conversions text word8 wreq
+ exceptions hashable hslogger http-api-data http-client http-types
+ jose lens lens-aeson mtl safe string-conversions text
+ unordered-containers word8 wreq
];
- executableHaskellDepends = [ base ];
+ executableHaskellDepends = [ base hslogger ];
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -153933,6 +152291,22 @@ self: {
broken = true;
}) {};
+ "ki" = callPackage
+ ({ mkDerivation, base, concurrency, containers, dejafu, stm }:
+ mkDerivation {
+ pname = "ki";
+ version = "0.1.0.1";
+ sha256 = "16hw0y7r76gqhn3qnr8ac49yr1xq33g6rcfh8zxgkg59zf5bl35a";
+ revision = "1";
+ editedCabalFile = "03j64ya9n2ck6ddqk3dsvghnnqq6pfc6l9q4xj9ir8ry5cgxhrqp";
+ libraryHaskellDepends = [ base containers stm ];
+ testHaskellDepends = [ base concurrency dejafu stm ];
+ description = "A lightweight, structured concurrency library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"kibro" = callPackage
({ mkDerivation }:
mkDerivation {
@@ -154204,6 +152578,8 @@ self: {
executableHaskellDepends = [ base ];
description = "Advanced keyboard remapping utility";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"kmp-dfa" = callPackage
@@ -154510,6 +152886,8 @@ self: {
];
description = "Krank checks your code source comments for important markers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"krapsh" = callPackage
@@ -154637,8 +153015,8 @@ self: {
}:
mkDerivation {
pname = "kubernetes-client";
- version = "0.3.0.0";
- sha256 = "1wpcamcvyphs2y370qzn5fmc18zyn8nb0099si12n9xgk5zdmcrq";
+ version = "0.3.2.0";
+ sha256 = "1z7ic3kqskbn59q9kifn3glnnnbaixcb7rhahw115i6s8yqql9rk";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring connection
containers data-default-class either filepath hoauth2 http-client
@@ -154672,8 +153050,8 @@ self: {
}:
mkDerivation {
pname = "kubernetes-client-core";
- version = "0.3.0.0";
- sha256 = "0ifn69iqxwxkl4y2qlz5d25fbyqb2pks0cd064j54hc0fjwlxlzk";
+ version = "0.3.1.0";
+ sha256 = "0rb5iyln1grpdg36hf2655sm3chrw4cddbmfhxjpispybr1ypl9c";
libraryHaskellDepends = [
aeson base base64-bytestring bytestring case-insensitive containers
deepseq exceptions http-api-data http-client http-client-tls
@@ -154972,6 +153350,8 @@ self: {
testHaskellDepends = [ base hspec servant servant-foreign text ];
description = "Generate Ruby clients from Servant APIs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lacroix" = callPackage
@@ -155272,8 +153652,6 @@ self: {
];
description = "Lambdabot is a development tool and advanced IRC bot";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-core" = callPackage
@@ -155299,8 +153677,6 @@ self: {
];
description = "Lambdabot core functionality";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-haskell-plugins" = callPackage
@@ -155326,8 +153702,6 @@ self: {
];
description = "Lambdabot Haskell plugins";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-irc-plugins" = callPackage
@@ -155345,8 +153719,6 @@ self: {
];
description = "IRC plugins for lambdabot";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-misc-plugins" = callPackage
@@ -155368,8 +153740,6 @@ self: {
];
description = "Lambdabot miscellaneous plugins";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-novelty-plugins" = callPackage
@@ -155387,8 +153757,6 @@ self: {
];
description = "Novelty plugins for Lambdabot";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-reference-plugins" = callPackage
@@ -155406,8 +153774,6 @@ self: {
];
description = "Lambdabot reference plugins";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-social-plugins" = callPackage
@@ -155423,8 +153789,6 @@ self: {
];
description = "Social plugins for Lambdabot";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-trusted" = callPackage
@@ -155436,8 +153800,6 @@ self: {
libraryHaskellDepends = [ base oeis QuickCheck QuickCheck-safe ];
description = "Lambdabot trusted code";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lambdabot-utils" = callPackage
@@ -155898,6 +154260,40 @@ self: {
broken = true;
}) {};
+ "language-Modula2" = callPackage
+ ({ mkDerivation, base, containers, deep-transformations, directory
+ , either, filepath, grammatical-parsers, input-parsers
+ , language-oberon, optparse-applicative, parsers, prettyprinter
+ , rank2classes, repr-tree-syb, tasty, tasty-hunit, template-haskell
+ , text
+ }:
+ mkDerivation {
+ pname = "language-Modula2";
+ version = "0.1";
+ sha256 = "0bwgvag1y5ik3rn9c45y7lldqpsg62yc9cr8ahvijpfz0f4hlq1m";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers deep-transformations directory filepath
+ grammatical-parsers input-parsers language-oberon parsers
+ prettyprinter rank2classes template-haskell text
+ ];
+ executableHaskellDepends = [
+ base containers deep-transformations either filepath
+ grammatical-parsers language-oberon optparse-applicative
+ prettyprinter rank2classes repr-tree-syb text
+ ];
+ testHaskellDepends = [
+ base deep-transformations directory either filepath
+ grammatical-parsers language-oberon prettyprinter tasty tasty-hunit
+ text
+ ];
+ description = "Parser, pretty-printer, and more for the Modula-2 programming language";
+ license = stdenv.lib.licenses.gpl3Plus;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"language-asn" = callPackage
({ mkDerivation, aeson, base, bytestring, contravariant, hashable
, pretty, primitive, text, vector
@@ -155914,6 +154310,8 @@ self: {
];
description = "ASN.1 encoding and decoding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"language-asn1" = callPackage
@@ -155993,8 +154391,6 @@ self: {
];
description = "Parsing and pretty-printing Bash shell scripts";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"language-boogie" = callPackage
@@ -156211,8 +154607,6 @@ self: {
libraryHaskellDepends = [ base pretty ];
description = "CSS 2.1 syntax";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"language-dart" = callPackage
@@ -156239,8 +154633,8 @@ self: {
}:
mkDerivation {
pname = "language-dickinson";
- version = "1.4.0.0";
- sha256 = "139y3kgbrjv8x16rda9ixhcdl6xs26blq0sgcz7zpzwgbp60yflb";
+ version = "1.4.1.2";
+ sha256 = "0z6bri73gprs485pjhwvwd37p9lfqvy15k9ws5p4178m538bxmmq";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -156277,8 +154671,8 @@ self: {
}:
mkDerivation {
pname = "language-docker";
- version = "9.1.1";
- sha256 = "1smrayjp8d8vqvn7lg2mg3lzsqqslysj6syh1ckbn1a5fmjpzfv2";
+ version = "9.1.2";
+ sha256 = "014rb5jf650fhsmc02v4xc60w7v1261ri1w9ig6dw0xjdgxalvbs";
libraryHaskellDepends = [
base bytestring containers data-default-class megaparsec
prettyprinter split text time
@@ -156359,6 +154753,8 @@ self: {
];
description = "JavaScript parser and pretty-printer library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"language-ecmascript-analysis" = callPackage
@@ -156428,6 +154824,8 @@ self: {
libraryToolDepends = [ alex happy ];
description = "Fortran lexer and parser, language support, and extensions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"language-gcl" = callPackage
@@ -156783,31 +155181,33 @@ self: {
}) {};
"language-oberon" = callPackage
- ({ mkDerivation, base, containers, directory, either, filepath
- , grammatical-parsers, optparse-applicative, parsers, prettyprinter
- , rank2classes, repr-tree-syb, tasty, tasty-hunit, template-haskell
- , text, transformers
+ ({ mkDerivation, base, base-orphans, containers
+ , deep-transformations, directory, either, filepath
+ , grammatical-parsers, input-parsers, optparse-applicative, parsers
+ , prettyprinter, rank2classes, repr-tree-syb, tasty, tasty-hunit
+ , template-haskell, text, transformers
}:
mkDerivation {
pname = "language-oberon";
- version = "0.2.1";
- sha256 = "1ia0m9bgrz1jksw349a0pgmkfvy5ykc29n55w7w457c60y37bs02";
+ version = "0.3";
+ sha256 = "0rpx80zyq4g71sjarjdyx6z919k3140d00ffmv4g14njnd6xb9fw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers directory either filepath grammatical-parsers
- parsers prettyprinter rank2classes template-haskell text
- transformers
+ base base-orphans containers deep-transformations directory either
+ filepath grammatical-parsers input-parsers parsers prettyprinter
+ rank2classes template-haskell text transformers
];
executableHaskellDepends = [
- base containers either filepath grammatical-parsers
- optparse-applicative prettyprinter rank2classes repr-tree-syb text
+ base containers deep-transformations either filepath
+ grammatical-parsers input-parsers optparse-applicative
+ prettyprinter rank2classes repr-tree-syb text
];
testHaskellDepends = [
- base directory either filepath grammatical-parsers prettyprinter
- tasty tasty-hunit text
+ base deep-transformations directory either filepath
+ grammatical-parsers prettyprinter tasty tasty-hunit text
];
- description = "Parser, pretty-printer, and type checker for the Oberon programming language";
+ description = "Parser, pretty-printer, and more for the Oberon programming language";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -156950,6 +155350,8 @@ self: {
];
description = "Tools to parse and evaluate the Puppet DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"language-python" = callPackage
@@ -156966,8 +155368,6 @@ self: {
libraryToolDepends = [ alex happy ];
description = "Parsing and pretty printing of Python code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"language-python-colour" = callPackage
@@ -156998,8 +155398,6 @@ self: {
executableHaskellDepends = [ base language-python ];
description = "testing code for the language-python library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"language-qux" = callPackage
@@ -157198,6 +155596,8 @@ self: {
];
description = "A Parser for the Type Language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"language-typescript" = callPackage
@@ -157265,6 +155665,8 @@ self: {
pname = "lapack";
version = "0.3.2";
sha256 = "12h9k8hx3qpfa3ma24glngpk1x9m8h17qzv86sfq54br19ikz5y0";
+ revision = "1";
+ editedCabalFile = "1ji3cj8ggj6prxcn9z0678x1i5j25cwxj3bxnv4s9nn8qayyflpn";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -157505,6 +155907,8 @@ self: {
];
description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"latex-formulae-pandoc" = callPackage
@@ -157599,6 +156003,8 @@ self: {
];
description = "A library for rendering LaTeX formulae as SVG using an actual LaTeX";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"latex-svg-pandoc" = callPackage
@@ -157850,6 +156256,8 @@ self: {
libraryHaskellDepends = [ alex-tools base text ];
description = "A collection of different layout implementations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"layouting" = callPackage
@@ -157989,6 +156397,8 @@ self: {
libraryHaskellDepends = [ base size-based ];
description = "Finds values satisfying a lazy predicate";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lazyarray" = callPackage
@@ -158162,8 +156572,6 @@ self: {
testHaskellDepends = [ base bytestring hspec process semigroups ];
description = "Pure Haskell LDAP Client Library";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ldapply" = callPackage
@@ -158461,8 +156869,6 @@ self: {
];
description = "Yet another library for hidden Markov models";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"leb128" = callPackage
@@ -158490,8 +156896,8 @@ self: {
}:
mkDerivation {
pname = "leb128-cereal";
- version = "1.1";
- sha256 = "08jmd5v36p2vwlx3rw22h762jp7arq06fsmdipff72bvs2cn0fld";
+ version = "1.2";
+ sha256 = "0a2zdm0zd7kpid3da5k5pifkyil048j5y4fvknbs96bky74yz95m";
libraryHaskellDepends = [ base bytestring cereal ];
testHaskellDepends = [
base bytestring tasty tasty-hunit tasty-quickcheck
@@ -158719,48 +157125,6 @@ self: {
}) {};
"lens" = callPackage
- ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring
- , Cabal, cabal-doctest, call-stack, comonad, containers
- , contravariant, criterion, deepseq, directory, distributive
- , doctest, exceptions, filepath, free, generic-deriving, ghc-prim
- , hashable, HUnit, kan-extensions, mtl, nats, parallel, profunctors
- , QuickCheck, reflection, semigroupoids, semigroups, simple-reflect
- , tagged, template-haskell, test-framework, test-framework-hunit
- , test-framework-quickcheck2, test-framework-th, text
- , th-abstraction, transformers, transformers-compat, type-equality
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "lens";
- version = "4.18.1";
- sha256 = "1lmxjaj32v06l12gy00rpjp2lk1cblh3k7kwklk655ss2vas61ri";
- revision = "1";
- editedCabalFile = "1ajb19bhxyg9i11pj6b9p43y0c0wjg6ap4vk6jl0a67gdxyjkki1";
- setupHaskellDepends = [ base Cabal cabal-doctest filepath ];
- libraryHaskellDepends = [
- array base base-orphans bifunctors bytestring call-stack comonad
- containers contravariant distributive exceptions filepath free
- ghc-prim hashable kan-extensions mtl parallel profunctors
- reflection semigroupoids tagged template-haskell text
- th-abstraction transformers transformers-compat type-equality
- unordered-containers 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 bytestring comonad containers criterion deepseq
- generic-deriving transformers unordered-containers vector
- ];
- description = "Lenses, Folds and Traversals";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "lens_4_19_2" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
, bytestring, Cabal, cabal-doctest, call-stack, comonad, containers
, contravariant, criterion, deepseq, directory, distributive
@@ -158799,7 +157163,6 @@ self: {
];
description = "Lenses, Folds and Traversals";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-accelerate" = callPackage
@@ -158811,8 +157174,6 @@ self: {
libraryHaskellDepends = [ accelerate base lens ];
description = "Instances to mix lens with Accelerate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lens-action" = callPackage
@@ -158866,8 +157227,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "A placeholder for a future lens core package";
license = "(BSD-2-Clause OR Apache-2.0)";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lens-csv" = callPackage
@@ -158976,27 +157335,15 @@ self: {
}:
mkDerivation {
pname = "lens-filesystem";
- version = "0.0.0.0";
- sha256 = "0295n9hfdq72c1knx170ccfyi93wp09szahb2q5jym0mcryvdls8";
+ version = "0.1.0.1";
+ sha256 = "0rx5b49ka3281nnwvfmkdnfrv56kvfkl2h45nf54rdgxj11b7v28";
libraryHaskellDepends = [
base directory filepath lens lens-action
];
testHaskellDepends = [
base directory filepath hspec lens lens-action
];
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "lens-labels_0_1_0_2" = callPackage
- ({ mkDerivation, base, ghc-prim }:
- mkDerivation {
- pname = "lens-labels";
- version = "0.1.0.2";
- sha256 = "11pwdqnjd0gybjrfz79fbd9vdwcimkzqqr91zy6hswlylp42dvq1";
- libraryHaskellDepends = [ base ghc-prim ];
- description = "Integration of lenses with OverloadedLabels";
+ description = "Lens interface for your filesystem; still a bit experimental";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -159187,6 +157534,8 @@ self: {
executableHaskellDepends = [ base ghc ghc-exactprint lens ];
description = "Rewrites Template Haskell splices using the API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lens-time" = callPackage
@@ -159312,10 +157661,8 @@ self: {
}:
mkDerivation {
pname = "lentil";
- version = "1.3.2.0";
- sha256 = "134f9ijnd1dw2l9k5m1ay643pc4jqmq5kx17cnijb7ff93442s0n";
- revision = "2";
- editedCabalFile = "0xijjp1ysybbd9n3f5vcaph1qdad5v9ynp0jia5aaizr34lwx94z";
+ version = "1.4.1.0";
+ sha256 = "07zlmds8450sa54axx91ppxil6jfafx78ba3lxrr6jpdvzc73w55";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -159387,6 +157734,34 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "less-arbitrary" = callPackage
+ ({ mkDerivation, base, containers, email-validate
+ , generic-arbitrary, genvalidity, genvalidity-hspec
+ , genvalidity-property, hashable, hspec, mtl, QuickCheck
+ , quickcheck-classes, quickcheck-instances, random, scientific
+ , text, time, transformers, unordered-containers, validity, vector
+ }:
+ mkDerivation {
+ pname = "less-arbitrary";
+ version = "0.1.0.2";
+ sha256 = "0xqhlk4qqykb173pm6akd7jvygm5ya3qqw3xc649aiq053ralvif";
+ libraryHaskellDepends = [
+ base containers email-validate generic-arbitrary genvalidity
+ genvalidity-hspec genvalidity-property hashable hspec mtl
+ QuickCheck random scientific text time transformers
+ unordered-containers validity vector
+ ];
+ testHaskellDepends = [
+ base containers email-validate generic-arbitrary genvalidity
+ genvalidity-hspec genvalidity-property hashable hspec mtl
+ QuickCheck quickcheck-classes quickcheck-instances random
+ scientific text time transformers unordered-containers validity
+ vector
+ ];
+ description = "Linear time testing with variant of Arbitrary class that always terminates";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"level-monad" = callPackage
({ mkDerivation, base, fmlist }:
mkDerivation {
@@ -159730,8 +158105,8 @@ self: {
}:
mkDerivation {
pname = "libarchive";
- version = "3.0.0.0";
- sha256 = "0qwnp5jzmlvi7bpbh1dhz3lp91qf5phr8hb7m3h5q0a50d72dqpp";
+ version = "3.0.1.1";
+ sha256 = "1i5801prr06vachxrpcc31bsxhsb6f8ik91mx7a9hmqkwhpr986b";
setupHaskellDepends = [ base Cabal chs-cabal ];
libraryHaskellDepends = [
base bytestring composition-prelude deepseq dlist filepath mtl
@@ -159853,13 +158228,15 @@ self: {
}) {ffi = null;};
"libfuse3" = callPackage
- ({ mkDerivation, base, bytestring, clock, directory, filepath
- , fuse3, hspec, process, resourcet, temporary, time, unix
+ ({ mkDerivation, base, bytestring, clock, criterion, directory
+ , filepath, fuse3, hspec, process, resourcet, temporary, time, unix
}:
mkDerivation {
pname = "libfuse3";
- version = "0.1.1.1";
- sha256 = "0fvkyfdl342zi436n1xqvsvazflkm60wdcq0qzspg6q5pr7s094f";
+ version = "0.1.2.0";
+ sha256 = "0a59b4xag5vzisrnvf4v1zkdsdzky96h8w2mdj6cip3vgr196frb";
+ revision = "1";
+ editedCabalFile = "0gnq6aav00xx7dc8am87q2n6xw7cf7jm29g5bq5n1b72gqs91rzf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -159869,6 +158246,7 @@ self: {
testHaskellDepends = [
base bytestring directory filepath hspec process temporary unix
];
+ benchmarkHaskellDepends = [ base bytestring criterion unix ];
description = "A Haskell binding for libfuse-3.x";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -160006,6 +158384,8 @@ self: {
];
description = "A Haskell implementation of JSON Web Token (JWT)";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liblastfm" = callPackage
@@ -160189,6 +158569,8 @@ self: {
];
description = "Bindings to the nix package manager";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"libnotify" = callPackage
@@ -160228,8 +158610,8 @@ self: {
}:
mkDerivation {
pname = "liboath-hs";
- version = "0.0.1.1";
- sha256 = "0ikh4rch2zdv9xan70qkf68m9hdz8k86ji7jw9xci1cvg318zd1k";
+ version = "0.0.1.2";
+ sha256 = "08wnzsk82ahyb3fy2sd1ci6aw0h3wiiad2j4kxs1j90wbrwkd3ri";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -160552,8 +158934,6 @@ self: {
libraryPkgconfigDepends = [ systemd ];
description = "Haskell bindings to libsystemd-journal";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) systemd;};
"libtagc" = callPackage
@@ -160729,8 +159109,6 @@ self: {
];
description = "A license compatibility helper";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lie" = callPackage
@@ -160787,31 +159165,10 @@ self: {
];
description = "Synchronize personal configs across multiple machines";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lift-generics" = callPackage
({ mkDerivation, base, base-compat, generic-deriving, ghc-prim
- , hspec, hspec-discover, template-haskell
- }:
- mkDerivation {
- pname = "lift-generics";
- version = "0.1.3";
- sha256 = "0r2rbik5lh5x8psy5cblzd1ly1ybizdcyjdg8n79m7k3rqp2w6v7";
- libraryHaskellDepends = [
- base generic-deriving ghc-prim template-haskell
- ];
- testHaskellDepends = [
- base base-compat generic-deriving hspec template-haskell
- ];
- testToolDepends = [ hspec-discover ];
- description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "lift-generics_0_2" = callPackage
- ({ mkDerivation, base, base-compat, generic-deriving, ghc-prim
, hspec, hspec-discover, mtl, template-haskell, th-compat
}:
mkDerivation {
@@ -160830,7 +159187,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lift-read-show" = callPackage
@@ -160944,8 +159300,6 @@ self: {
];
description = "STM operations lifted through monad transformer stacks";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lifted-threads" = callPackage
@@ -161386,8 +159740,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "Lifting linear vector spaces into Accelerate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"linear-algebra-cblas" = callPackage
@@ -161556,8 +159908,6 @@ self: {
libraryHaskellDepends = [ base sbv ];
description = "Use SMT solvers to solve linear systems over integers and rationals";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"linearmap-category" = callPackage
@@ -161805,6 +160155,8 @@ self: {
];
description = "A Haskell library for the Slack API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"linnet" = callPackage
@@ -161831,6 +160183,8 @@ self: {
];
description = "Lightweight library for building HTTP API";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"linnet-aeson" = callPackage
@@ -161848,6 +160202,8 @@ self: {
];
description = "Aeson JSON support for Linnet";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"linnet-conduit" = callPackage
@@ -161868,6 +160224,8 @@ self: {
];
description = "Conduit-backed support for streaming in Linnet";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"linode" = callPackage
@@ -161989,8 +160347,6 @@ self: {
libraryHaskellDepends = [ base bytestring hashable unix ];
description = "Thinner binding to the Linux Kernel's inotify interface";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"linux-kmod" = callPackage
@@ -162114,8 +160470,6 @@ self: {
libraryHaskellDepends = [ base bytestring containers hashable ];
description = "Labeled IO Information Flow Control Library";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lio-eci11" = callPackage
@@ -162150,8 +160504,6 @@ self: {
description = "Labeled File System interface for LIO";
license = "GPL";
platforms = [ "i686-linux" "x86_64-linux" ];
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lio-simple" = callPackage
@@ -162215,6 +160567,8 @@ self: {
benchmarkHaskellDepends = [ aeson attoparsec base criterion text ];
description = "Liquid template language library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-base" = callPackage
@@ -162228,6 +160582,8 @@ self: {
libraryHaskellDepends = [ base liquid-ghc-prim liquidhaskell ];
description = "Drop-in base replacement for LiquidHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-bytestring" = callPackage
@@ -162243,6 +160599,8 @@ self: {
libraryHaskellDepends = [ bytestring liquid-base liquidhaskell ];
description = "LiquidHaskell specs for the bytestring package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-containers" = callPackage
@@ -162258,6 +160616,8 @@ self: {
libraryHaskellDepends = [ containers liquid-base liquidhaskell ];
description = "LiquidHaskell specs for the containers package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-fixpoint" = callPackage
@@ -162305,6 +160665,8 @@ self: {
libraryHaskellDepends = [ ghc-prim liquidhaskell ];
description = "Drop-in ghc-prim replacement for LiquidHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-parallel" = callPackage
@@ -162319,18 +160681,29 @@ self: {
libraryHaskellDepends = [ liquid-base liquidhaskell parallel ];
description = "LiquidHaskell specs for the parallel package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-platform" = callPackage
- ({ mkDerivation }:
+ ({ mkDerivation, cmdargs, liquid-base, liquid-bytestring
+ , liquid-containers, liquid-prelude, liquid-vector, liquidhaskell
+ , process
+ }:
mkDerivation {
pname = "liquid-platform";
version = "0.8.10.2";
sha256 = "1rhpq04nl9gcm9rwjd261ssn8q59pdcpfna0xwkcv3gmkgirwzgf";
isLibrary = false;
isExecutable = true;
+ executableHaskellDepends = [
+ cmdargs liquid-base liquid-bytestring liquid-containers
+ liquid-prelude liquid-vector liquidhaskell process
+ ];
description = "A battery-included platform for LiquidHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-prelude" = callPackage
@@ -162347,6 +160720,8 @@ self: {
];
description = "General utility modules for LiquidHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquid-vector" = callPackage
@@ -162360,6 +160735,8 @@ self: {
libraryHaskellDepends = [ liquid-base liquidhaskell vector ];
description = "LiquidHaskell specs for the vector package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"liquidhaskell" = callPackage
@@ -162682,8 +161059,6 @@ self: {
];
description = "A \"libcurl\"-based streaming HTTP client";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"list-t-text" = callPackage
@@ -162735,8 +161110,6 @@ self: {
];
description = "Tries and Patricia tries: finite sets and maps for list keys";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"list-tuple" = callPackage
@@ -162756,8 +161129,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "List-like operations for tuples";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"list-witnesses" = callPackage
@@ -162774,6 +161145,8 @@ self: {
];
description = "Witnesses for working with type-level lists";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"list-zip-def" = callPackage
@@ -162950,33 +161323,19 @@ self: {
}) {};
"little-logger" = callPackage
- ({ mkDerivation, base, co-log, co-log-core, microlens, mtl, text }:
- mkDerivation {
- pname = "little-logger";
- version = "0.1.0";
- sha256 = "1ibcvcjh5wfdzi2p30dy7q1n6ac34mjckybmp8cn0xwyf9zs9zlw";
- libraryHaskellDepends = [
- base co-log co-log-core microlens mtl text
- ];
- description = "Basic logging based on co-log";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "little-logger_0_2_0" = callPackage
({ mkDerivation, base, co-log, co-log-core, microlens, mtl, tasty
- , tasty-hunit, text
+ , tasty-hunit, text, unliftio-core
}:
mkDerivation {
pname = "little-logger";
- version = "0.2.0";
- sha256 = "0bzfd0s67g074vp274jq83fdl8z2m87qjkslkxvl29bdlrl3w17b";
+ version = "0.3.1";
+ sha256 = "0iqnidlv7r2kw6764aq3dlvxbmvm1c7qk8jkgbhbpm5g07k97c68";
libraryHaskellDepends = [
- base co-log co-log-core microlens mtl text
+ base co-log co-log-core microlens mtl text unliftio-core
];
testHaskellDepends = [
base co-log co-log-core microlens mtl tasty tasty-hunit text
+ unliftio-core
];
description = "Basic logging based on co-log";
license = stdenv.lib.licenses.bsd3;
@@ -162985,21 +161344,6 @@ self: {
}) {};
"little-rio" = callPackage
- ({ mkDerivation, base, exceptions, microlens, microlens-mtl, mtl
- , unliftio-core
- }:
- mkDerivation {
- pname = "little-rio";
- version = "0.1.1";
- sha256 = "0yxxmad9709h1gpxzjhvqmjhn3m8dcishd9gs6bakc2hrapw2ss2";
- libraryHaskellDepends = [
- base exceptions microlens microlens-mtl mtl unliftio-core
- ];
- description = "When you need just the RIO monad";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "little-rio_0_2_2" = callPackage
({ mkDerivation, base, deepseq, exceptions, microlens
, microlens-mtl, mtl, primitive, resourcet, unliftio-core
}:
@@ -163013,7 +161357,6 @@ self: {
];
description = "When you need just the RIO monad";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"live-sequencer" = callPackage
@@ -163764,8 +162107,8 @@ self: {
({ mkDerivation, base, containers, doctest, hedgehog }:
mkDerivation {
pname = "loc";
- version = "0.1.3.8";
- sha256 = "11xlpi1g4m0wcjahf1brs77g52pn45g7rglkqz8c6y81y8vllppd";
+ version = "0.1.3.10";
+ sha256 = "0vl0pyimcm7jp4lgdmsqgcg9shqfrj60lz4psjkdfdcm3vkdqnkw";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [ base containers doctest hedgehog ];
description = "Types representing line and column positions and ranges in text files";
@@ -164039,25 +162382,6 @@ self: {
}:
mkDerivation {
pname = "log-base";
- version = "0.8.0.1";
- sha256 = "0s8w464yalbcgq3vq819mw9fsgj6a9rfbf00843311kqryml2a49";
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring deepseq exceptions mmorph
- monad-control monad-time mtl semigroups stm text time
- transformers-base unliftio-core unordered-containers
- ];
- description = "Structured logging solution (base package)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "log-base_0_9_0_0" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq
- , exceptions, mmorph, monad-control, monad-time, mtl, semigroups
- , stm, text, time, transformers-base, unliftio-core
- , unordered-containers
- }:
- mkDerivation {
- pname = "log-base";
version = "0.9.0.0";
sha256 = "0rlwr80636b4rrjgqg7ri5cfz95v9h47r9k413r9wvldfvz2abyg";
libraryHaskellDepends = [
@@ -164067,7 +162391,6 @@ self: {
];
description = "Structured logging solution (base package)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log-domain" = callPackage
@@ -164149,8 +162472,6 @@ self: {
];
description = "Structured logging solution (Elasticsearch back end)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"log-postgres" = callPackage
@@ -164163,6 +162484,8 @@ self: {
pname = "log-postgres";
version = "0.7.1.4";
sha256 = "1m96d5486xadypm5iby8rkb979k82md394j5iaik6xk5aavcn6xx";
+ revision = "1";
+ editedCabalFile = "0yyaxibkq8c9bwhaday8ijmfbm8k3i14wd9zsgfby99b6rxra351";
libraryHaskellDepends = [
aeson aeson-pretty base base64-bytestring bytestring deepseq
hpqtypes http-client lifted-base log-base mtl semigroups split text
@@ -164231,6 +162554,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Flexible, configurable, monadic and pretty logging";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"log2json" = callPackage
@@ -164388,8 +162713,6 @@ self: {
];
description = "A mtl-style monad transformer for general purpose & compositional logging";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"logging-effect-extra" = callPackage
@@ -164482,8 +162805,6 @@ self: {
];
description = "Journald back-end for logging-facade";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"logging-facade-syslog" = callPackage
@@ -165023,6 +163344,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "inline self-recursive definitions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"looper" = callPackage
@@ -165145,22 +163468,24 @@ self: {
({ mkDerivation, aeson-pretty, base, bimap, bytestring, constraints
, containers, data-default, first-class-families, fmt, interpolate
, lens, morley, morley-prelude, mtl, named, optparse-applicative
- , pretty-terminal, QuickCheck, singletons, template-haskell, text
- , text-manipulate, unordered-containers, vinyl, with-utf8
+ , singletons, template-haskell, text, text-manipulate
+ , unordered-containers, vinyl, with-utf8
}:
mkDerivation {
pname = "lorentz";
- version = "0.6.2";
- sha256 = "13xl9f538h729zn9dqjcj10qav1ggbma9rp4pyj0cdgj5mq8mv8w";
+ version = "0.8.0";
+ sha256 = "1mzpi5vx18vi06bd5jkpixws01in69jqvg6hkzc7mxn75cw8gb34";
libraryHaskellDepends = [
aeson-pretty base bimap bytestring constraints containers
data-default first-class-families fmt interpolate lens morley
- morley-prelude mtl named optparse-applicative pretty-terminal
- QuickCheck singletons template-haskell text text-manipulate
- unordered-containers vinyl with-utf8
+ morley-prelude mtl named optparse-applicative singletons
+ template-haskell text text-manipulate unordered-containers vinyl
+ with-utf8
];
description = "EDSL for the Michelson Language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"loris" = callPackage
@@ -165284,8 +163609,8 @@ self: {
}:
mkDerivation {
pname = "lp-diagrams";
- version = "2.1.2";
- sha256 = "0q0qzij6j0nv01hhrd417swyyf5vhgi2m83bmk98dvrd0309l9xl";
+ version = "2.1.4";
+ sha256 = "035kaj2cawpkd5xry3wkl8slzga4qxklvjw91g9lh179zzpq6skj";
libraryHaskellDepends = [
base containers gasp graphviz labeled-tree lens mtl parsek
polynomials-bernstein process reflection text typography-geometry
@@ -165293,8 +163618,6 @@ self: {
];
description = "An EDSL for diagrams based based on linear constraints";
license = stdenv.lib.licenses.agpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lp-diagrams-svg" = callPackage
@@ -165358,8 +163681,6 @@ self: {
libraryHaskellDepends = [ base hashable haxl lrucaching psqueues ];
description = "Combine lrucaching and haxl";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ls-usb" = callPackage
@@ -165411,8 +163732,8 @@ self: {
}:
mkDerivation {
pname = "lsp";
- version = "1.0.0.0";
- sha256 = "05m9kxcf7g2xb4bhbn08bfbf09b8vvvw3nvpcfldpx180yz3n02r";
+ version = "1.0.0.1";
+ sha256 = "1h7ymzzm00dnvbqxz4g0zp3mvm6v9bjbgkazz514wqrcmma27cm1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -165434,23 +163755,25 @@ self: {
"lsp-test" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base
, bytestring, conduit, conduit-parse, containers, data-default
- , Diff, directory, filepath, haskell-lsp, hspec, lens, mtl
+ , Diff, directory, filepath, Glob, haskell-lsp, hspec, lens, mtl
, parser-combinators, process, text, transformers, unix
, unordered-containers
}:
mkDerivation {
pname = "lsp-test";
- version = "0.10.3.0";
- sha256 = "1gj6f99k3kd0flh2nbpj5wnhi1ql5rlijw0vf4l53zwxy203r7k8";
+ version = "0.11.0.5";
+ sha256 = "0r038x65lc0ij6hs8klgj8v8f0fqqrn12dyxc0k8zf9pan9bwnph";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty ansi-terminal async base bytestring conduit
- conduit-parse containers data-default Diff directory filepath
+ conduit-parse containers data-default Diff directory filepath Glob
haskell-lsp lens mtl parser-combinators process text transformers
unix unordered-containers
];
testHaskellDepends = [
- aeson base data-default haskell-lsp hspec lens text
- unordered-containers
+ aeson base data-default directory filepath haskell-lsp hspec lens
+ text unordered-containers
];
description = "Functional test framework for LSP servers";
license = stdenv.lib.licenses.bsd3;
@@ -165493,8 +163816,8 @@ self: {
}:
mkDerivation {
pname = "lsp-types";
- version = "1.0.0.0";
- sha256 = "1cf07hdzgh5inskabdyli3zg95grc3qlw9d5xiqf1hwlspsyxis9";
+ version = "1.0.0.1";
+ sha256 = "1yrm42qsbqk94ql0khifcpvicy9lbvwwrvnr41lplbb1vhqvqc27";
libraryHaskellDepends = [
aeson base binary bytestring containers data-default deepseq
dependent-sum-template directory filepath hashable hslogger lens
@@ -165573,8 +163896,6 @@ self: {
];
description = "Parameterized file evaluator";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"lti13" = callPackage
@@ -165936,8 +164257,8 @@ self: {
}:
mkDerivation {
pname = "lumberjack";
- version = "0.1.0.2";
- sha256 = "1qixhfalj22zgfmg3q0jk7ci4nafdwbhrbpgiwzjmah11219jib1";
+ version = "0.1.0.3";
+ sha256 = "03y9v9ajh89ffacmnq0zfb83dyk6gd72msln7kksb69kkgcizd96";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -166197,6 +164518,8 @@ self: {
];
description = "Bindings to LZ4";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lz4-conduit" = callPackage
@@ -166260,8 +164583,8 @@ self: {
}:
mkDerivation {
pname = "lz4-hs";
- version = "0.1.5.0";
- sha256 = "0qqv6n7hjcjkc1pzhwkdr9l1kfb8rqndx2lfm6j4bhmvrwwrn8lw";
+ version = "0.1.5.1";
+ sha256 = "1kl8zxladsby7y5fk2gdkipjn6kb8kkzdpf8xccnvhmgzn8qj4cn";
libraryHaskellDepends = [ base bytestring ];
libraryToolDepends = [ c2hs ];
testHaskellDepends = [ base bytestring tasty tasty-hunit ];
@@ -166281,6 +164604,8 @@ self: {
libraryHaskellDepends = [ base bytestring ];
description = "Lzip compression / Lzlib bindings";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"lzlib" = callPackage
@@ -166624,6 +164949,8 @@ self: {
];
description = "Parse machines streams with attoparsec parsers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"machines-binary" = callPackage
@@ -166832,6 +165159,32 @@ self: {
broken = true;
}) {};
+ "macrm" = callPackage
+ ({ mkDerivation, base, bytestring, cmdargs, cond, directory
+ , exceptions, filepath, githash, hspec, inline-c, main-tester
+ , MissingH, process, text, time, unix, uuid
+ }:
+ mkDerivation {
+ pname = "macrm";
+ version = "1.0.0.5";
+ sha256 = "0j1lcg5igypppj7c5plxifyvcl065j0mqhkdyb8nkpgjp95f7r0n";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base cmdargs cond directory exceptions githash inline-c MissingH
+ process text time unix
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring directory filepath hspec main-tester MissingH
+ process unix uuid
+ ];
+ description = "Alternative rm command for macOS that remove files/dirs to the system trash";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"mad-props" = callPackage
({ mkDerivation, base, containers, lens, logict, MonadRandom, mtl
, psqueues, random, random-shuffle, raw-strings-qq, transformers
@@ -166973,8 +165326,8 @@ self: {
}:
mkDerivation {
pname = "magicbane";
- version = "0.4.0";
- sha256 = "0n2yn3jbklibb21pm2ifiy9035d3xmrh8cgywnpawm51p5q3klwl";
+ version = "0.5.1";
+ sha256 = "18kxixk0cj32pjpwp96mpnppy21xn4gy4xksb97m31j30kmlas91";
libraryHaskellDepends = [
aeson aeson-qq attoparsec base bytestring conduit
conduit-combinators data-has ekg-core ekg-wai envy errors
@@ -167083,21 +165436,21 @@ self: {
}) {};
"mail-pool" = callPackage
- ({ mkDerivation, base, HaskellNet, HaskellNet-SSL, microlens
+ ({ mkDerivation, aeson, base, HaskellNet, HaskellNet-SSL, microlens
, mime-mail, network, optparse-applicative, resource-pool, time
}:
mkDerivation {
pname = "mail-pool";
- version = "2.1.0";
- sha256 = "1cjl7y6djiwr94h6vhrmwjv381xp89y8hv1zmbzz8fy0dywsiyiz";
+ version = "2.2.3";
+ sha256 = "1pqizx02p2iiqkl4kg3izkg477bh69jrk75insbfw30k3ay3g330";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base HaskellNet HaskellNet-SSL microlens mime-mail network
+ aeson base HaskellNet HaskellNet-SSL microlens mime-mail network
optparse-applicative resource-pool time
];
executableHaskellDepends = [
- base HaskellNet HaskellNet-SSL microlens mime-mail network
+ aeson base HaskellNet HaskellNet-SSL microlens mime-mail network
optparse-applicative resource-pool time
];
description = "Preconfigured email connection pool on top of smtp";
@@ -167812,6 +166165,8 @@ self: {
];
description = "Library for interfacing with the Mandrill JSON API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mandulia" = callPackage
@@ -168516,8 +166871,6 @@ self: {
];
description = "Markup language preprocessor for Haskell";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"masakazu-bot" = callPackage
@@ -168567,8 +166920,8 @@ self: {
}:
mkDerivation {
pname = "massiv";
- version = "0.5.4.0";
- sha256 = "0dmm6x5izmjl1l803fvmxzqrh0jpg56z2aid228a4c44n620dzln";
+ version = "0.5.7.0";
+ sha256 = "04vv16h048gkfgqsdf3a42qrg62cik9j30p4s13rykq0shzcaf62";
libraryHaskellDepends = [
base bytestring data-default-class deepseq exceptions primitive
scheduler unliftio-core vector
@@ -168579,38 +166932,9 @@ self: {
];
description = "Massiv (Массив) is an Array Library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"massiv-io" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, Color
- , data-default-class, deepseq, doctest, exceptions, filepath, hspec
- , JuicyPixels, massiv, massiv-test, netpbm, QuickCheck, random
- , template-haskell, unliftio, vector
- }:
- mkDerivation {
- pname = "massiv-io";
- version = "0.2.1.0";
- sha256 = "0p7z4nk0fv9lql17s9d18hi5mrnvr4zry6rghqnhjmhlp97g4yi6";
- revision = "1";
- editedCabalFile = "0sqlkva81p748537vwbg0pzgvlx8xs7560rpd0fjcxafhj32m03x";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base bytestring Color data-default-class deepseq exceptions
- filepath JuicyPixels massiv netpbm unliftio vector
- ];
- testHaskellDepends = [
- base bytestring doctest hspec JuicyPixels massiv massiv-test
- QuickCheck random template-haskell
- ];
- description = "Import/export of Image files into massiv Arrays";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "massiv-io_0_3_0_1" = callPackage
({ mkDerivation, base, bytestring, Color, data-default-class
, deepseq, doctest, exceptions, filepath, hspec, JuicyPixels
, massiv, massiv-test, netpbm, QuickCheck, random, template-haskell
@@ -168618,8 +166942,8 @@ self: {
}:
mkDerivation {
pname = "massiv-io";
- version = "0.3.0.1";
- sha256 = "0r0nkgpdkjwsdxcfys3idk1m7q0paz5c3gx1sx7xwsj7c5gyp5gs";
+ version = "0.4.0.0";
+ sha256 = "18q09pz563jp8lmnvmcynmhrk6pmqxr8whlcp6f9kilkzy7hzy9k";
libraryHaskellDepends = [
base bytestring Color data-default-class deepseq exceptions
filepath JuicyPixels massiv netpbm unliftio vector
@@ -168630,8 +166954,6 @@ self: {
];
description = "Import/export of Image files into massiv Arrays";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"massiv-scheduler" = callPackage
@@ -168662,8 +166984,10 @@ self: {
}:
mkDerivation {
pname = "massiv-test";
- version = "0.1.4";
- sha256 = "1qhvph2s6bkw3zb43arq1zvrfyr09phqjwxhzsqxi2x2fcrdyvyn";
+ version = "0.1.5";
+ sha256 = "0n9fcdz9v7j1r2iln9h0wkjr7jkghi3r3a3lm0713p6hwy6cpgff";
+ revision = "1";
+ editedCabalFile = "0v6vnjsqklb8yaf63zhx9ni0ak83zyjq2l3mb8zazp54inyyfjr0";
libraryHaskellDepends = [
base bytestring data-default-class deepseq exceptions hspec massiv
primitive QuickCheck scheduler unliftio vector
@@ -168674,8 +166998,6 @@ self: {
];
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
@@ -168733,8 +167055,6 @@ self: {
testHaskellDepends = [ base containers doctest hspec ];
description = "A type class for Matchable Functors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"matchable-th" = callPackage
@@ -168751,8 +167071,6 @@ self: {
testHaskellDepends = [ base containers matchable ];
description = "Generates Matchable instances using TemplateHaskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"matcher" = callPackage
@@ -169159,8 +167477,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "Optics for the \"matrix\" package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"matrix-market" = callPackage
@@ -169669,18 +167985,19 @@ self: {
"mcmc" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
- , data-default, directory, double-conversion, hspec, hspec-discover
- , log-domain, microlens, mwc-random, QuickCheck, statistics, time
- , transformers, vector, zlib
+ , data-default, directory, dirichlet, double-conversion, hspec
+ , hspec-discover, log-domain, math-functions, microlens, mwc-random
+ , primitive, QuickCheck, statistics, time, transformers, vector
+ , zlib
}:
mkDerivation {
pname = "mcmc";
- version = "0.2.4";
- sha256 = "17ahxp7p1klg1j416gvs76a3x1hii5j0fv80rxfrw0w076gn3yy1";
+ version = "0.3.0";
+ sha256 = "1xkg16gmhqh60z69gz6d51c9yb7q9j2w8aylhpxgh18yz35mw4j1";
libraryHaskellDepends = [
- aeson base bytestring containers data-default directory
- double-conversion log-domain microlens mwc-random statistics time
- transformers vector zlib
+ aeson base bytestring containers data-default directory dirichlet
+ double-conversion log-domain math-functions microlens mwc-random
+ primitive statistics time transformers vector zlib
];
testHaskellDepends = [
base directory hspec hspec-discover log-domain mwc-random
@@ -169956,39 +168273,14 @@ self: {
, containers, deepseq, directory, filepath, free, hashable, hspec
, hspec-core, megaparsec, microlens-ghc, mtl, nonempty-containers
, parser-combinators, QuickCheck, quickcheck-instances, scientific
- , text, unordered-containers, vector, vector-instances
- }:
- mkDerivation {
- pname = "medea";
- version = "1.1.2";
- sha256 = "0s5ra1a9p8yj2ddwlz58i1ajd7dmxz9rxrdckfmajpzgq9vyskpl";
- revision = "1";
- editedCabalFile = "1ick6yjqdk7wg75fzd496r1nyzhphzpz21lcalpicd34bkbzk6dd";
- libraryHaskellDepends = [
- aeson algebraic-graphs base bytestring containers deepseq free
- hashable megaparsec microlens-ghc mtl nonempty-containers
- parser-combinators scientific text unordered-containers vector
- vector-instances
- ];
- testHaskellDepends = [
- aeson base directory filepath hspec hspec-core mtl QuickCheck
- quickcheck-instances text unordered-containers vector
- ];
- description = "A schema language for JSON";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "medea_1_2_0" = callPackage
- ({ mkDerivation, aeson, algebraic-graphs, base, bytestring
- , containers, deepseq, directory, filepath, free, hashable, hspec
- , hspec-core, megaparsec, microlens-ghc, mtl, nonempty-containers
- , parser-combinators, QuickCheck, quickcheck-instances, scientific
, smash, text, unordered-containers, vector, vector-instances
}:
mkDerivation {
pname = "medea";
version = "1.2.0";
sha256 = "019jfz29gz3d06b5yi7fygqa79lp6c6vbzxcb5ka7d8w0zv7w60v";
+ revision = "1";
+ editedCabalFile = "1zkwy3p9q3rd4qcnmgr67xi3fv9frw35rsqpwh5l1mfvv772qap9";
libraryHaskellDepends = [
aeson algebraic-graphs base bytestring containers deepseq free
hashable megaparsec microlens-ghc mtl nonempty-containers
@@ -170001,7 +168293,6 @@ self: {
];
description = "A schema language for JSON";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mediabus" = callPackage
@@ -170230,27 +168521,8 @@ self: {
libraryHaskellDepends = [ base megaparsec mtl text ];
description = "lisp parser using mega-parsec";
license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "megaparsec_7_0_5" = callPackage
- ({ mkDerivation, base, bytestring, case-insensitive, containers
- , criterion, deepseq, mtl, parser-combinators, scientific, text
- , transformers, weigh
- }:
- mkDerivation {
- pname = "megaparsec";
- version = "7.0.5";
- sha256 = "0bqx1icbmk8s7wmbcdzsgnlh607c7kzg8l80cp02dxr5valjxp7j";
- libraryHaskellDepends = [
- base bytestring case-insensitive containers deepseq mtl
- parser-combinators scientific text transformers
- ];
- benchmarkHaskellDepends = [
- base containers criterion deepseq text weigh
- ];
- description = "Monadic parser combinators";
- license = stdenv.lib.licenses.bsd2;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"megaparsec" = callPackage
@@ -170260,28 +168532,8 @@ self: {
}:
mkDerivation {
pname = "megaparsec";
- version = "8.0.0";
- sha256 = "0633rqzrxzhq43z6i7ancncd633fm2b8755683si4v818r3cdmxm";
- libraryHaskellDepends = [
- base bytestring case-insensitive containers deepseq mtl
- parser-combinators scientific text transformers
- ];
- benchmarkHaskellDepends = [
- base containers criterion deepseq text weigh
- ];
- description = "Monadic parser combinators";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "megaparsec_9_0_0" = callPackage
- ({ mkDerivation, base, bytestring, case-insensitive, containers
- , criterion, deepseq, mtl, parser-combinators, scientific, text
- , transformers, weigh
- }:
- mkDerivation {
- pname = "megaparsec";
- version = "9.0.0";
- sha256 = "1x10f2b14ww306am9w06s23va26ab3vwdh0jk67ql6ybigxh0asi";
+ version = "9.0.1";
+ sha256 = "00953zvxfyjibw8c1ssmixxh0cwn59pz24zbh6s34rk3v14vqa3j";
libraryHaskellDepends = [
base bytestring case-insensitive containers deepseq mtl
parser-combinators scientific text transformers
@@ -170291,7 +168543,6 @@ self: {
];
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"megaparsec-tests" = callPackage
@@ -170302,34 +168553,8 @@ self: {
}:
mkDerivation {
pname = "megaparsec-tests";
- version = "8.0.0";
- sha256 = "1l71s16fhl2054myj02fnnjr71pfypjvwxd0hxzf83zwmqnv558f";
- revision = "1";
- editedCabalFile = "1hawpdlx2nwyi5s06vh5lvccyjzsxzns02mhggzy0kb33xb9c818";
- libraryHaskellDepends = [
- base bytestring containers hspec hspec-expectations
- hspec-megaparsec megaparsec mtl QuickCheck text transformers
- ];
- testHaskellDepends = [
- base bytestring case-insensitive containers hspec
- hspec-expectations hspec-megaparsec megaparsec mtl
- parser-combinators QuickCheck scientific text transformers
- ];
- testToolDepends = [ hspec-discover ];
- description = "Test utilities and the test suite of Megaparsec";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "megaparsec-tests_9_0_0" = callPackage
- ({ mkDerivation, base, bytestring, case-insensitive, containers
- , hspec, hspec-discover, hspec-expectations, hspec-megaparsec
- , megaparsec, mtl, parser-combinators, QuickCheck, scientific, text
- , transformers
- }:
- mkDerivation {
- pname = "megaparsec-tests";
- version = "9.0.0";
- sha256 = "0zm246r8k48mj5v2dxjan7dsrcnw54bcm27swi5mh8c0yb3vcvab";
+ version = "9.0.1";
+ sha256 = "0synm14x1k9r5q7xmv21z0y95b42g7lvwn78mcnc3cx62x6393ng";
libraryHaskellDepends = [
base bytestring containers hspec hspec-expectations
hspec-megaparsec megaparsec mtl QuickCheck text transformers
@@ -170342,7 +168567,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Test utilities and the test suite of Megaparsec";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"meldable-heap" = callPackage
@@ -170628,8 +168852,8 @@ self: {
pname = "meminfo";
version = "0.2.0.0";
sha256 = "1mxk57qr4d1k6sz4qld09d61nc15hixggc5klfj5xr0n8rw1za3x";
- revision = "1";
- editedCabalFile = "10r7ji1xb8zv7a1ilyp626chly9y8m1i67adxqrj8lwgkqxpl8nk";
+ revision = "2";
+ editedCabalFile = "0i6znbcw4yyf8jzkixx5dxbklzfnh79hmywvwwamdmjgi39akpi5";
libraryHaskellDepends = [ attoparsec base bytestring containers ];
description = "Library for reading `/proc/meminfo`";
license = stdenv.lib.licenses.bsd3;
@@ -171038,6 +169262,8 @@ self: {
];
description = "An implementation of a Merkle tree and merkle tree proofs of inclusion";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mersenne-random" = callPackage
@@ -171600,8 +169826,6 @@ self: {
];
description = "A tiny JSON library with light dependency footprint";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"microbase" = callPackage
@@ -171614,8 +169838,6 @@ self: {
doHaddock = false;
description = "A minimal base to work around GHC bugs";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"microbench" = callPackage
@@ -171723,6 +169945,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "microlens_0_4_12_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "microlens";
+ version = "0.4.12.0";
+ sha256 = "10q7gl9yavcln58sxdxzih7ff0ixxq5hpd87icvxw97yqf1p6hmm";
+ libraryHaskellDepends = [ base ];
+ description = "A tiny lens library with no dependencies";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"microlens-aeson" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq
, hashable, microlens, scientific, tasty, tasty-hunit, text
@@ -171783,6 +170017,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "microlens-ghc_0_4_13" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, microlens
+ , transformers
+ }:
+ mkDerivation {
+ pname = "microlens-ghc";
+ version = "0.4.13";
+ sha256 = "1r6x788br3f9rksj0dmk1nyh5mfvd9zzasclf1mi3rxhb7c0j926";
+ libraryHaskellDepends = [
+ array base bytestring containers microlens transformers
+ ];
+ description = "microlens + array, bytestring, containers, transformers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"microlens-mtl" = callPackage
({ mkDerivation, base, microlens, mtl, transformers
, transformers-compat
@@ -171814,6 +170064,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "microlens-platform_0_4_2" = callPackage
+ ({ mkDerivation, base, hashable, microlens, microlens-ghc
+ , microlens-mtl, microlens-th, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "microlens-platform";
+ version = "0.4.2";
+ sha256 = "0yf0z0glq2d6mpclzswc64h9w2cck4fd8l8ffm89pyb0a5n8m4c7";
+ libraryHaskellDepends = [
+ base hashable microlens microlens-ghc microlens-mtl microlens-th
+ text unordered-containers vector
+ ];
+ description = "microlens + all batteries included (best for apps)";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"microlens-process" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, doctest, filepath
, microlens, process
@@ -171822,8 +170089,8 @@ self: {
pname = "microlens-process";
version = "0.2.0.2";
sha256 = "0dvhvrk1v0kjb45xnpjbr8b97vc6dx4cq34jfzkazqdp5jk5nlxp";
- revision = "1";
- editedCabalFile = "0l0c6s655ramncmww146had034n58p4bgxsv3wqggjcjnb26j2d0";
+ revision = "2";
+ editedCabalFile = "04j2yap3ha45wq0slvxkd3gm7gkx2dks9abxfd6mg3asmdp743gk";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [ base filepath microlens process ];
testHaskellDepends = [ base doctest microlens process ];
@@ -171837,8 +170104,8 @@ self: {
}:
mkDerivation {
pname = "microlens-th";
- version = "0.4.3.6";
- sha256 = "1pw0ljpyhpj4jsgs25i4mi1a07vpbwfik84fc2kip1pzajflrcql";
+ version = "0.4.3.8";
+ sha256 = "0dy3vrqcw7ahlcwcqfw8jhisy4yj58f91pk4djqqvj8lnx74cm9f";
libraryHaskellDepends = [
base containers microlens template-haskell th-abstraction
transformers
@@ -172196,6 +170463,83 @@ self: {
];
description = "The Metropolis algorithm";
license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "migrant-core" = callPackage
+ ({ mkDerivation, base, HUnit, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "migrant-core";
+ version = "0.1.0.2";
+ sha256 = "1na0vcrmw3vy6v9qxxpprhga9ja7izwbp856pdpqiq98p4h8xmiw";
+ libraryHaskellDepends = [ base text ];
+ testHaskellDepends = [
+ base HUnit QuickCheck tasty tasty-hunit tasty-quickcheck text
+ ];
+ description = "Semi-automatic database schema migrations";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "migrant-hdbc" = callPackage
+ ({ mkDerivation, base, HDBC, HDBC-sqlite3, HUnit, migrant-core
+ , process, QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck
+ , text
+ }:
+ mkDerivation {
+ pname = "migrant-hdbc";
+ version = "0.1.0.2";
+ sha256 = "084vqb1z0ipxn07nswlcw0bbh0bfywm7hyvakb75xg8rv5kfak15";
+ libraryHaskellDepends = [ base HDBC migrant-core text ];
+ testHaskellDepends = [
+ base HDBC HDBC-sqlite3 HUnit migrant-core process QuickCheck random
+ tasty tasty-hunit tasty-quickcheck text
+ ];
+ description = "Semi-automatic database schema migrations";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "migrant-postgresql-simple" = callPackage
+ ({ mkDerivation, base, HUnit, migrant-core, postgresql-simple
+ , process, QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck
+ , text
+ }:
+ mkDerivation {
+ pname = "migrant-postgresql-simple";
+ version = "0.1.0.2";
+ sha256 = "1x1gsf0vp82n6dmyiamj1cvs9fww7j1ffh6d9qr075z5sj8zbhzx";
+ libraryHaskellDepends = [
+ base migrant-core postgresql-simple text
+ ];
+ testHaskellDepends = [
+ base HUnit migrant-core postgresql-simple process QuickCheck random
+ tasty tasty-hunit tasty-quickcheck text
+ ];
+ description = "Semi-automatic database schema migrations";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "migrant-sqlite-simple" = callPackage
+ ({ mkDerivation, base, HUnit, migrant-core, QuickCheck
+ , sqlite-simple, tasty, tasty-hunit, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "migrant-sqlite-simple";
+ version = "0.1.0.2";
+ sha256 = "140fchiid0kjp1cdw114w497h0fsrskn9195bkjv44sdmq2l8car";
+ libraryHaskellDepends = [ base migrant-core sqlite-simple text ];
+ testHaskellDepends = [
+ base HUnit migrant-core QuickCheck sqlite-simple tasty tasty-hunit
+ tasty-quickcheck text
+ ];
+ description = "Semi-automatic database schema migrations";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
@@ -172492,6 +170836,8 @@ self: {
testHaskellDepends = [ base hspec primes ];
description = "Template Haskell Implementation of Egison Pattern Matching";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"miniball" = callPackage
@@ -172618,22 +170964,6 @@ self: {
}:
mkDerivation {
pname = "minimorph";
- version = "0.2.2.0";
- sha256 = "1fmnlv2qr8vnxk82b208fp7ckp920zrj9z9xv7lv6d5lgnsasf2c";
- libraryHaskellDepends = [ base text ];
- testHaskellDepends = [
- base HUnit test-framework test-framework-hunit text
- ];
- description = "English spelling functions with an emphasis on simplicity";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "minimorph_0_3_0_0" = callPackage
- ({ mkDerivation, base, HUnit, test-framework, test-framework-hunit
- , text
- }:
- mkDerivation {
- pname = "minimorph";
version = "0.3.0.0";
sha256 = "1jq2yrvhknnbc4b44nk2k6ynivn6s2j43w8bq1vi8gix7k4sazf4";
libraryHaskellDepends = [ base text ];
@@ -172642,7 +170972,6 @@ self: {
];
description = "English spelling functions with an emphasis on simplicity";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minimung" = callPackage
@@ -172672,8 +171001,8 @@ self: {
}:
mkDerivation {
pname = "minio-hs";
- version = "1.5.2";
- sha256 = "1yhaijz0cazgwz0fdvnx951g1s64zybbnl6n93bmxbdd7m6ydbml";
+ version = "1.5.3";
+ sha256 = "0nbrvkj8dn9m2i60iqk2wmf7fnj8bv4n65r4wxpimwb06yrvrfj2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -172834,23 +171163,6 @@ self: {
}:
mkDerivation {
pname = "miniutter";
- version = "0.5.1.0";
- sha256 = "0871hhpj5fl5si6rwg9l1lpdarlva3y888rgrrb4gaqsssnh0kk1";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [ base binary containers minimorph text ];
- testHaskellDepends = [
- base containers HUnit test-framework test-framework-hunit text
- ];
- description = "Simple English clause creation from arbitrary words";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "miniutter_0_5_1_1" = callPackage
- ({ mkDerivation, base, binary, containers, HUnit, minimorph
- , test-framework, test-framework-hunit, text
- }:
- mkDerivation {
- pname = "miniutter";
version = "0.5.1.1";
sha256 = "126gwbii4j8j778h7c8vwapn6dya8phbjja37pys4kly0p877mp4";
enableSeparateDataOutput = true;
@@ -172860,23 +171172,28 @@ self: {
];
description = "Simple English clause creation from arbitrary words";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minizinc-process" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, directory
- , hashable, process-extras, stringsearch, text
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, containers
+ , directory, hashable, hedgehog, hspec, hspec-hedgehog, process
+ , process-extras, template-haskell, text
}:
mkDerivation {
pname = "minizinc-process";
- version = "0.1.0.0";
- sha256 = "0p2jb69k2n3dy47vx56pwh6pafccsm9r0nzqd60zss5fdrnxddf8";
+ version = "0.1.4.1";
+ sha256 = "0sihpmjzda7kph8mds4p4fn4pgbiay6v680pcqv2d116a5di2c5g";
libraryHaskellDepends = [
- aeson base bytestring containers directory hashable process-extras
- stringsearch text
+ aeson attoparsec base bytestring containers directory hashable
+ process process-extras template-haskell text
+ ];
+ testHaskellDepends = [
+ aeson base hashable hedgehog hspec hspec-hedgehog
];
description = "A set of helpers to call minizinc models";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"minlen" = callPackage
@@ -172983,8 +171300,6 @@ self: {
executableHaskellDepends = [ monad-loops regex-base regex-pcre ];
description = "fortune-mod clone";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mismi-core" = callPackage
@@ -173099,25 +171414,6 @@ self: {
}:
mkDerivation {
pname = "miso";
- version = "1.6.0.0";
- sha256 = "1mzsih2hga62sf33m4cwf1v0107p2ydc32wq7n3hsapzx69sm2j3";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring containers http-api-data http-types lucid
- network-uri servant servant-lucid text transformers vector
- ];
- description = "A tasty Haskell front-end framework";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "miso_1_7_1_0" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, http-api-data
- , http-types, lucid, network-uri, servant, servant-lucid, text
- , transformers, vector
- }:
- mkDerivation {
- pname = "miso";
version = "1.7.1.0";
sha256 = "1hkfcinwymrff8mmvywhnlzbj5804hwkk4rhzxzhzsycdf4v7a41";
isLibrary = true;
@@ -173129,6 +171425,7 @@ self: {
description = "A tasty Haskell front-end framework";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"miso-action-logger" = callPackage
@@ -173256,19 +171553,20 @@ self: {
"miv" = callPackage
({ mkDerivation, aeson, async, base, concurrent-output, directory
- , filepath, ghc-prim, hashable, hspec, monad-parallel, process
- , text, time, unix-compat, unordered-containers, xdg-basedir, yaml
+ , filepath, filepattern, ghc-prim, hashable, hspec, monad-parallel
+ , process, SafeSemaphore, text, time, unix-compat
+ , unordered-containers, xdg-basedir, yaml
}:
mkDerivation {
pname = "miv";
- version = "0.4.2";
- sha256 = "0yhfinygsb2fnjspg87fx447kajrbldhddm24vxl41741xmwjl8a";
+ version = "0.4.6";
+ sha256 = "1xf4frjvccjvkzgx9ha9q2i6ig5bx3z37igjb3s7a9zvqnvig06g";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson async base concurrent-output directory filepath ghc-prim
- hashable monad-parallel process text time unix-compat
- unordered-containers xdg-basedir yaml
+ aeson async base concurrent-output directory filepath filepattern
+ ghc-prim hashable monad-parallel process SafeSemaphore text time
+ unix-compat unordered-containers xdg-basedir yaml
];
testHaskellDepends = [
aeson base directory ghc-prim hashable hspec monad-parallel process
@@ -173437,8 +171735,6 @@ self: {
];
description = "Machine Learning Toolbox";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mm2" = callPackage
@@ -173558,8 +171854,8 @@ self: {
({ mkDerivation, base, vector }:
mkDerivation {
pname = "mmsyn2";
- version = "0.2.0.0";
- sha256 = "1lxfl6gr42x9rhy4jpig9hwl0bnbidrv65i8f4fr39ifrx43fgxw";
+ version = "0.3.1.0";
+ sha256 = "06n8vxqafc698ahml782klb41g9bfsvqdrl4k0blnn3m3vavnzxy";
libraryHaskellDepends = [ base vector ];
description = "The library that can be used for multiple (Ord a) => a -> b transformations";
license = stdenv.lib.licenses.mit;
@@ -173581,8 +171877,8 @@ self: {
}:
mkDerivation {
pname = "mmsyn4";
- version = "0.4.0.0";
- sha256 = "0qfr2dlzigggbwgznh1sxxkp7qwvcba2rlhwdqs4rzaz53sx2xzj";
+ version = "0.5.0.0";
+ sha256 = "05r33lx2cxsf7a14809dgs7lhfqlglshpv22jfzrl2xy0rl3x4qz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -173599,8 +171895,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "mmsyn5";
- version = "0.4.4.0";
- sha256 = "1yvsx82x7m5y2swxllhb7zzgspb3lfdhrbw6n5v3xsa9vxhwa35l";
+ version = "0.5.0.0";
+ sha256 = "0xbdmlq71pjnsls67mydrfzajnnyyzp0dvzgrg2lms3pssvzs6f1";
libraryHaskellDepends = [ base ];
description = "Various additional operations on lists (some with intermediate Monads)";
license = stdenv.lib.licenses.mit;
@@ -173608,20 +171904,22 @@ self: {
"mmsyn6ukr" = callPackage
({ mkDerivation, base, bytestring, directory, mmsyn2, mmsyn3
- , mmsyn5, process, vector
+ , mmsyn5, process, ukrainian-phonetics-basic, vector
}:
mkDerivation {
pname = "mmsyn6ukr";
- version = "0.8.1.0";
- sha256 = "0r5lnx1m57kjfb1cfm9a22l9kn552y6vpfbkxpffi03ni407q65q";
+ version = "0.9.0.0";
+ sha256 = "1knq7yqgsk3hjvpfb1f3igq7flrmsjafp669d24ww7ijcxs7rpda";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base bytestring directory mmsyn2 mmsyn3 mmsyn5 process vector
+ base bytestring directory mmsyn2 mmsyn3 mmsyn5 process
+ ukrainian-phonetics-basic vector
];
executableHaskellDepends = [
- base bytestring directory mmsyn2 mmsyn3 mmsyn5 process vector
+ base bytestring directory mmsyn2 mmsyn3 mmsyn5 process
+ ukrainian-phonetics-basic vector
];
description = "A musical instrument synthesizer or a tool for Ukrainian language listening";
license = stdenv.lib.licenses.mit;
@@ -173633,8 +171931,8 @@ self: {
}:
mkDerivation {
pname = "mmsyn7h";
- version = "0.8.0.0";
- sha256 = "0mj96p3f96brv7cw3mkigngxnmqcn9r1yfghdx1jplrw5wycy80j";
+ version = "0.8.1.0";
+ sha256 = "0n1rs92cgand8sb7597ph18dmrxf5czkrx5wx90qi58w7m1fqh9p";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -173647,6 +171945,8 @@ self: {
];
description = "Produces a sound recording specified by the Ukrainian text";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mmsyn7l" = callPackage
@@ -173791,8 +172091,8 @@ self: {
}:
mkDerivation {
pname = "mock-httpd";
- version = "0.0.0.0";
- sha256 = "0mv669gvn61by4j7sd4w2hvzr3vpa0szrhgzdciv5g1a0gsh3kk7";
+ version = "1.0.0";
+ sha256 = "1dn680lpvh2ww0ab4wgp9a7k2w309zymkjlp3igwk01q4cbjpsg2";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -173803,6 +172103,28 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "mock-time" = callPackage
+ ({ mkDerivation, base, error-or, error-or-utils, exceptions, inbox
+ , mtl, primitive, QuickCheck, resourcet, stm, tasty, tasty-hunit
+ , tasty-quickcheck, time, unliftio-core
+ }:
+ mkDerivation {
+ pname = "mock-time";
+ version = "0.1.0";
+ sha256 = "0fwnlkg3kbi7qh43ycymxxywsh8cw5f5km0ni4plf63k931y40jg";
+ libraryHaskellDepends = [
+ base error-or exceptions mtl primitive resourcet stm time
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ base error-or error-or-utils exceptions inbox mtl primitive
+ QuickCheck resourcet stm tasty tasty-hunit tasty-quickcheck time
+ unliftio-core
+ ];
+ description = "Mock time in tests";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"mockazo" = callPackage
({ mkDerivation, base, constraints, hspec, multistate, relude
, template-haskell
@@ -173920,10 +172242,8 @@ self: {
}:
mkDerivation {
pname = "modern-uri";
- version = "0.3.2.0";
- sha256 = "162s88yayalh4vlngman5gz3k0gnszxrksh1wk5227qihbpsiwhb";
- revision = "3";
- editedCabalFile = "1md8x7ql885g3n55yfd2kgs4np74d7s6rdzlw69bs4zk8074b4q0";
+ version = "0.3.3.0";
+ sha256 = "184vhcnpwjsvxwbdsipz7kc2xylfwfqflbbbyipag610w07a3qk2";
libraryHaskellDepends = [
base bytestring containers contravariant deepseq exceptions
megaparsec mtl profunctors QuickCheck reflection tagged
@@ -174268,8 +172588,6 @@ self: {
];
description = "A better error monad transformer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"monad-atom" = callPackage
@@ -174339,6 +172657,8 @@ self: {
];
description = "A library for probabilistic programming";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"monad-bool" = callPackage
@@ -174434,8 +172754,6 @@ self: {
];
description = "monad-classes based typeclass for Ollie's logging-effect LoggingT";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"monad-codec" = callPackage
@@ -174589,8 +172907,6 @@ self: {
];
description = "Guard monadic computations with cleanup actions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"monad-fork" = callPackage
@@ -174782,8 +173098,8 @@ self: {
}:
mkDerivation {
pname = "monad-logger";
- version = "0.3.35";
- sha256 = "1mrwwv3h3wy84kgphwn6ahjzxab0bzgzzbqla1c3jx02xl9x3q72";
+ version = "0.3.36";
+ sha256 = "12rw0k01gkhiqjm2fhxgkmribksmizhj14xphfn8fkd86wzl0vbh";
libraryHaskellDepends = [
base bytestring conduit conduit-extra exceptions fast-logger
lifted-base monad-control monad-loops mtl resourcet stm stm-chans
@@ -174794,6 +173110,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "monad-logger-extras" = callPackage
+ ({ mkDerivation, ansi-terminal, base, bytestring, hsyslog
+ , monad-logger, mtl
+ }:
+ mkDerivation {
+ pname = "monad-logger-extras";
+ version = "0.1.1.1";
+ sha256 = "1zxwvaqw6ihhg945hr4ysk66prhbh00i6qipig44nx65fcwh835b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-terminal base bytestring hsyslog monad-logger mtl
+ ];
+ executableHaskellDepends = [ base monad-logger ];
+ description = "Utilities for composing loggers, coloring output, plus a few orphan instances";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"monad-logger-json" = callPackage
({ mkDerivation, aeson, base, monad-logger, template-haskell, text
}:
@@ -174842,8 +173176,6 @@ self: {
];
description = "syslog output for monad-logger";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"monad-loops" = callPackage
@@ -175338,7 +173670,6 @@ self: {
description = "Stateful supply monad";
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"monad-task" = callPackage
@@ -176097,6 +174428,8 @@ self: {
benchmarkHaskellDepends = [ base criterion semigroups ];
description = "Various extra monoid-related definitions and utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"monoid-owns" = callPackage
@@ -176182,8 +174515,8 @@ self: {
pname = "monoidal-containers";
version = "0.6.0.1";
sha256 = "1j5mfs0ysvwk3jsmq4hlj4l3kasfc28lk1b3xaymf9dw48ac5j82";
- revision = "1";
- editedCabalFile = "06agyfnhr4cr42m4zj7xwl5an3skbjvba53a5i6sl9890gx7mml3";
+ revision = "2";
+ editedCabalFile = "1b98zf8c2mz7qrp24pyq6wqx5ljlckc7hyk62kiyj23svq7sxpzz";
libraryHaskellDepends = [
aeson base containers deepseq hashable lens newtype semialign
semigroups these unordered-containers
@@ -176338,6 +174671,8 @@ self: {
];
description = "Month, YearMonth, Quarter, YearQuarter types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"monus" = callPackage
@@ -176492,16 +174827,16 @@ self: {
, cryptonite, data-default, first-class-families, fmt
, generic-deriving, gitrev, haskeline, hex-text, interpolate, lens
, megaparsec, memory, morley-prelude, mtl, named
- , optparse-applicative, parser-combinators, pretty-simple
- , QuickCheck, quickcheck-arbitrary-adt, quickcheck-instances
- , semigroups, show-type, singletons, syb, template-haskell, text
- , th-lift, th-lift-instances, time, timerep, transformers-compat
- , unordered-containers, vector, vinyl, with-utf8, wl-pprint-text
+ , optparse-applicative, parser-combinators, scientific, semigroups
+ , show-type, singletons, syb, template-haskell, text
+ , text-manipulate, th-lift, th-lift-instances, time, timerep
+ , uncaught-exception, unordered-containers, vector, vinyl
+ , with-utf8, wl-pprint-text
}:
mkDerivation {
pname = "morley";
- version = "1.7.1";
- sha256 = "0za05qqx64zx92fsrnlk78m0d2g3ircw0k67fym7k5a9mck6bxg0";
+ version = "1.10.0";
+ sha256 = "08mj8jzrbqqzn3vr5hlpbzhgik3i3544xn5inm28j40vhlahvmzk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -176509,18 +174844,19 @@ self: {
bytestring constraints containers cryptonite data-default
first-class-families fmt generic-deriving gitrev hex-text
interpolate lens megaparsec memory morley-prelude mtl named
- optparse-applicative parser-combinators QuickCheck
- quickcheck-arbitrary-adt quickcheck-instances semigroups show-type
- singletons syb template-haskell text th-lift th-lift-instances time
- timerep transformers-compat unordered-containers vector vinyl
- with-utf8 wl-pprint-text
+ optparse-applicative parser-combinators scientific semigroups
+ show-type singletons syb template-haskell text text-manipulate
+ th-lift th-lift-instances time timerep uncaught-exception
+ unordered-containers vector vinyl with-utf8 wl-pprint-text
];
executableHaskellDepends = [
- aeson base bytestring fmt haskeline megaparsec morley-prelude named
- optparse-applicative pretty-simple text vinyl with-utf8
+ aeson base bytestring data-default fmt haskeline megaparsec
+ morley-prelude named optparse-applicative text vinyl with-utf8
];
description = "Developer tools for the Michelson Language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"morley-prelude" = callPackage
@@ -176534,6 +174870,46 @@ self: {
license = stdenv.lib.licenses.agpl3Plus;
}) {};
+ "morloc" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, directory
+ , docopt, extra, filepath, haskell-src-meta, megaparsec, mtl
+ , parsec, partial-order, pretty-simple, prettyprinter
+ , prettyprinter-ansi-terminal, process, QuickCheck, raw-strings-qq
+ , safe, scientific, tasty, tasty-golden, tasty-hunit
+ , tasty-quickcheck, template-haskell, text, unordered-containers
+ , yaml
+ }:
+ mkDerivation {
+ pname = "morloc";
+ version = "0.33.0";
+ sha256 = "089p6hajqlzsgpgmn1s467c4m9d3d0h507vml6vvxlhlph1gda76";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers directory extra filepath
+ haskell-src-meta megaparsec mtl parsec partial-order pretty-simple
+ prettyprinter prettyprinter-ansi-terminal process raw-strings-qq
+ safe scientific template-haskell text unordered-containers yaml
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers directory docopt extra filepath
+ haskell-src-meta megaparsec mtl parsec partial-order pretty-simple
+ prettyprinter prettyprinter-ansi-terminal process raw-strings-qq
+ safe scientific template-haskell text unordered-containers yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers directory extra filepath
+ haskell-src-meta megaparsec mtl parsec partial-order pretty-simple
+ prettyprinter prettyprinter-ansi-terminal process QuickCheck
+ raw-strings-qq safe scientific tasty tasty-golden tasty-hunit
+ tasty-quickcheck template-haskell text unordered-containers yaml
+ ];
+ description = "A multi-lingual, typed, workflow language";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"morph" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, filepath
, optparse-applicative, postgresql-simple, text, yaml
@@ -176554,54 +174930,27 @@ self: {
}) {};
"morpheus-graphql" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, megaparsec
- , morpheus-graphql-core, mtl, scientific, tasty, tasty-hunit
- , template-haskell, text, transformers, unliftio-core
- , unordered-containers, uuid, vector, websockets
- }:
- mkDerivation {
- pname = "morpheus-graphql";
- version = "0.12.0";
- sha256 = "11f0niq2rv6kyrscl0dgi75vcxrz4vhy4yka2jxhrmx6klzi908p";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson base bytestring containers megaparsec morpheus-graphql-core
- mtl scientific template-haskell text transformers unliftio-core
- unordered-containers uuid vector websockets
- ];
- testHaskellDepends = [
- aeson base bytestring containers megaparsec morpheus-graphql-core
- mtl scientific tasty tasty-hunit template-haskell text transformers
- unliftio-core unordered-containers uuid vector websockets
- ];
- description = "Morpheus GraphQL";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "morpheus-graphql_0_15_1" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, megaparsec
- , morpheus-graphql-core, mtl, scientific, tasty, tasty-hunit
- , template-haskell, text, transformers, unliftio-core
- , unordered-containers, uuid, vector, websockets
+ ({ mkDerivation, aeson, base, bytestring, containers
+ , morpheus-graphql-core, morpheus-graphql-subscriptions, mtl
+ , relude, tasty, tasty-hunit, template-haskell, text, transformers
+ , unordered-containers, vector
}:
mkDerivation {
pname = "morpheus-graphql";
- version = "0.15.1";
- sha256 = "1vk1rzrham61pnn5c77rvrn0zb02hc1birxdnyz80sjdap5fk8in";
+ version = "0.16.0";
+ sha256 = "18sayr7avxdavppzj8nh3fli0cdryl4yyrzw8d38qk0p8hw84wgc";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base bytestring containers megaparsec morpheus-graphql-core
- mtl scientific template-haskell text transformers unliftio-core
- unordered-containers uuid vector websockets
+ aeson base bytestring containers morpheus-graphql-core mtl relude
+ template-haskell text transformers unordered-containers vector
];
testHaskellDepends = [
- aeson base bytestring containers megaparsec morpheus-graphql-core
- mtl scientific tasty tasty-hunit template-haskell text transformers
- unliftio-core unordered-containers uuid vector websockets
+ aeson base bytestring containers morpheus-graphql-core
+ morpheus-graphql-subscriptions mtl relude tasty tasty-hunit
+ template-haskell text transformers unordered-containers vector
];
description = "Morpheus GraphQL";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"morpheus-graphql-cli" = callPackage
@@ -176628,76 +174977,73 @@ self: {
"morpheus-graphql-client" = callPackage
({ mkDerivation, aeson, base, bytestring, directory
- , morpheus-graphql-core, mtl, tasty, tasty-hunit, template-haskell
- , text, transformers, unordered-containers
+ , morpheus-graphql-core, mtl, relude, tasty, tasty-hunit
+ , template-haskell, text, transformers, unordered-containers
}:
mkDerivation {
pname = "morpheus-graphql-client";
- version = "0.15.1";
- sha256 = "1gmyil518qjn5l30kljrm52fznkib1d1qyxnjhyb535jc9f44zhz";
+ version = "0.16.0";
+ sha256 = "1apm35yy1f1hkqihk4ilzzlg1p4fk13i7zmd7fkcd33aiajzw5mh";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base bytestring morpheus-graphql-core mtl template-haskell
- text transformers unordered-containers
+ aeson base bytestring morpheus-graphql-core mtl relude
+ template-haskell text transformers unordered-containers
];
testHaskellDepends = [
- aeson base bytestring directory morpheus-graphql-core mtl tasty
- tasty-hunit template-haskell text transformers unordered-containers
+ aeson base bytestring directory morpheus-graphql-core mtl relude
+ tasty tasty-hunit template-haskell text transformers
+ unordered-containers
];
description = "Morpheus GraphQL Client";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"morpheus-graphql-core" = callPackage
- ({ mkDerivation, aeson, base, bytestring, hashable, megaparsec
- , scientific, tasty, tasty-hunit, template-haskell, text
- , th-lift-instances, transformers, unordered-containers, vector
+ ({ mkDerivation, aeson, base, bytestring, directory, hashable
+ , megaparsec, mtl, relude, scientific, tasty, tasty-hunit
+ , template-haskell, text, th-lift-instances, transformers
+ , unordered-containers, vector
}:
mkDerivation {
pname = "morpheus-graphql-core";
- version = "0.12.0";
- sha256 = "1ay37r73sqs5c8ixaz9mr9x1ps58jg4sgrlw5dmq7hkzy9993ccv";
+ version = "0.16.0";
+ sha256 = "0c5gbqrxgib2irysmvl35j7ccz5fi1aqb3p3fyxkvcw44nnmkl5g";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base bytestring hashable megaparsec scientific
+ aeson base bytestring hashable megaparsec mtl relude scientific
template-haskell text th-lift-instances transformers
unordered-containers vector
];
testHaskellDepends = [
- aeson base bytestring hashable megaparsec scientific tasty
- tasty-hunit template-haskell text th-lift-instances transformers
- unordered-containers vector
+ aeson base bytestring directory hashable megaparsec mtl relude
+ scientific tasty tasty-hunit template-haskell text
+ th-lift-instances transformers unordered-containers vector
];
description = "Morpheus GraphQL Core";
license = stdenv.lib.licenses.mit;
}) {};
- "morpheus-graphql-core_0_15_1" = callPackage
- ({ mkDerivation, aeson, base, bytestring, directory, hashable
- , megaparsec, mtl, scientific, tasty, tasty-hunit, template-haskell
- , text, th-lift-instances, transformers, unordered-containers
- , vector
+ "morpheus-graphql-subscriptions" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory
+ , morpheus-graphql-core, mtl, relude, tasty, tasty-hunit, text
+ , transformers, unliftio-core, unordered-containers, uuid
+ , websockets
}:
mkDerivation {
- pname = "morpheus-graphql-core";
- version = "0.15.1";
- sha256 = "0nakm33ybrj8y3ci0a4697dvz8q38z17vr2mkcbm7h14h06kg8wr";
- enableSeparateDataOutput = true;
+ pname = "morpheus-graphql-subscriptions";
+ version = "0.16.0";
+ sha256 = "1bilw276nlzx9fqcc6g5cmnf4jws17v7djz1m8n184a1skxbd02l";
libraryHaskellDepends = [
- aeson base bytestring hashable megaparsec mtl scientific
- template-haskell text th-lift-instances transformers
- unordered-containers vector
+ aeson base bytestring morpheus-graphql-core mtl relude text
+ transformers unliftio-core unordered-containers uuid websockets
];
testHaskellDepends = [
- aeson base bytestring directory hashable megaparsec mtl scientific
- tasty tasty-hunit template-haskell text th-lift-instances
- transformers unordered-containers vector
+ aeson base bytestring directory morpheus-graphql-core mtl relude
+ tasty tasty-hunit text transformers unliftio-core
+ unordered-containers uuid websockets
];
- description = "Morpheus GraphQL Core";
+ description = "Morpheus GraphQL Subscriptions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"morphisms" = callPackage
@@ -176821,8 +175167,8 @@ self: {
}:
mkDerivation {
pname = "moss";
- version = "0.1.0.0";
- sha256 = "19gy0x191gk6wa85vp5nhh0xgmr3mj2daiqx8bap452fm1y85qcr";
+ version = "0.2.0.0";
+ sha256 = "17ac31r26c8zddp3qdk573lyry2bz7c0y49q0adln3psd39czzw0";
libraryHaskellDepends = [
base bytestring conduit-extra mtl network network-simple
unix-compat
@@ -176854,8 +175200,6 @@ self: {
];
description = "General purpose migrations library";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"moto-postgresql" = callPackage
@@ -177086,8 +175430,6 @@ self: {
testSystemDepends = [ mpich ];
description = "MPI bindings for Haskell";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) mpich;};
"mpi-hs-binary" = callPackage
@@ -177105,8 +175447,6 @@ self: {
testHaskellDepends = [ base ];
description = "MPI bindings for Haskell";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mpi-hs-cereal" = callPackage
@@ -177124,8 +175464,6 @@ self: {
testHaskellDepends = [ base ];
description = "MPI bindings for Haskell";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mpi-hs-store" = callPackage
@@ -177143,8 +175481,6 @@ self: {
testHaskellDepends = [ base ];
description = "MPI bindings for Haskell";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mplayer-spot" = callPackage
@@ -177188,8 +175524,8 @@ self: {
}:
mkDerivation {
pname = "mprelude";
- version = "0.2.0";
- sha256 = "0llkcbilz138zlrqmsny74g9ybjf665h7w84g0q0rli9dvjnc4bl";
+ version = "0.2.1";
+ sha256 = "103720ngsryi6x084nbjg6cw0rpsbnmhmxbz54zc09zggh8w1ccv";
libraryHaskellDepends = [
base source-constraints text unliftio-core
];
@@ -177722,18 +176058,6 @@ self: {
broken = true;
}) {};
- "mtl_2_1_3_1" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "mtl";
- version = "2.1.3.1";
- sha256 = "1xpn2wjmqbh2cg1yssc6749xpgcqlrrg4iilwqgkcjgvaxlpdbvp";
- libraryHaskellDepends = [ base transformers ];
- description = "Monad classes, using functional dependencies";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"mtl_2_2_2" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
@@ -177801,18 +176125,6 @@ self: {
broken = true;
}) {};
- "mtl-prelude_1_0_3" = callPackage
- ({ mkDerivation, base, mtl, transformers }:
- mkDerivation {
- pname = "mtl-prelude";
- version = "1.0.3";
- sha256 = "1qr0bwcg9rlj53gbnji969s86qh8laaiibkfy2msziqnp011108x";
- libraryHaskellDepends = [ base mtl transformers ];
- description = "Reexports of most definitions from \"mtl\" and \"transformers\"";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"mtl-prelude" = callPackage
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
@@ -177936,8 +176248,8 @@ self: {
}:
mkDerivation {
pname = "mu-avro";
- version = "0.4.0.0";
- sha256 = "08hkw54llgyc7gmr3srx0im6im3x23cc0fkgmfv541ak6sq7by3h";
+ version = "0.4.0.2";
+ sha256 = "1g8cww3lz5dlgri34m0fjpc8sbs64f4fcxx8h1mamgzn5f3f2z7h";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -177954,24 +176266,24 @@ self: {
}) {};
"mu-graphql" = callPackage
- ({ mkDerivation, aeson, async, attoparsec, base, bytestring
- , conduit, foldl, graphql-parser, http-types, list-t, mtl, mu-rpc
- , mu-schema, parsers, regex-tdfa, scientific, sop-core, stm
- , stm-chans, stm-conduit, stm-containers, template-haskell, text
+ ({ mkDerivation, aeson, async, base, bytestring, conduit, foldl
+ , graphql, http-types, list-t, megaparsec, mtl, mu-rpc, mu-schema
+ , parsers, regex-tdfa, scientific, sop-core, stm, stm-chans
+ , stm-conduit, stm-containers, template-haskell, text
, unordered-containers, uuid, wai, wai-extra, wai-websockets, warp
, warp-tls, websockets
}:
mkDerivation {
pname = "mu-graphql";
- version = "0.4.0.0";
- sha256 = "0vww6kv76sfi4931265gmbmyd67qlijxwiyl2z0lbcj1gs95j6x2";
+ version = "0.4.1.0";
+ sha256 = "0qi6sc0vwzdayjhfr0rqvrfp1ydcy9fwhyzkmc488gfafi0xc1gj";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson async attoparsec base bytestring conduit foldl graphql-parser
- http-types list-t mtl mu-rpc mu-schema parsers scientific sop-core
- stm stm-chans stm-conduit stm-containers template-haskell text
+ aeson async base bytestring conduit foldl graphql http-types list-t
+ megaparsec mtl mu-rpc mu-schema parsers scientific sop-core stm
+ stm-chans stm-conduit stm-containers template-haskell text
unordered-containers uuid wai wai-websockets warp warp-tls
websockets
];
@@ -177982,7 +176294,7 @@ self: {
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
- }) {graphql-parser = null;};
+ }) {};
"mu-grpc-client" = callPackage
({ mkDerivation, async, avro, base, bytestring, conduit, http2
@@ -177993,8 +176305,8 @@ self: {
}:
mkDerivation {
pname = "mu-grpc-client";
- version = "0.4.0.0";
- sha256 = "0j1dn2c95rzm8h6yzw5h5r3yhk5p1i51kx4px668hb3m9wss5qdr";
+ version = "0.4.0.1";
+ sha256 = "030b8ajbplb1w5llzm8vn8jpwa7v4kw0y8zli8xagc50k19wp75v";
libraryHaskellDepends = [
async avro base bytestring conduit http2 http2-client
http2-client-grpc http2-grpc-types mu-grpc-common mu-optics
@@ -178085,6 +176397,8 @@ self: {
];
description = "Lenses for @mu-schema@ terms";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-optics" = callPackage
@@ -178092,28 +176406,33 @@ self: {
}:
mkDerivation {
pname = "mu-optics";
- version = "0.3.0.0";
- sha256 = "0263nd5xwyn2jb99d6vn7fk8lzmkgarfx9n6lrc4dpa5immfypnq";
+ version = "0.3.0.1";
+ sha256 = "0sshv28n569zgcw464xjv8czs5ya17csl927a176d43mkss6w6jw";
libraryHaskellDepends = [
base containers mu-schema optics-core sop-core
];
description = "Optics for @mu-schema@ terms";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-persistent" = callPackage
({ mkDerivation, base, monad-logger, mu-schema, persistent
- , resourcet, transformers
+ , resource-pool, resourcet, transformers
}:
mkDerivation {
pname = "mu-persistent";
- version = "0.3.0.0";
- sha256 = "1jd0h2cqr4nbwk2vyaq3wamrgwi1dkzmyhqg6b7002wdvm1h822j";
+ version = "0.3.1.0";
+ sha256 = "0xhqp2ljgh9vjga1crqvb2gk3al3v0mw26aivd1pyi6rq9ncwcca";
libraryHaskellDepends = [
- base monad-logger mu-schema persistent resourcet transformers
+ base monad-logger mu-schema persistent resource-pool resourcet
+ transformers
];
description = "Utilities for interoperation between Mu and Persistent";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-prometheus" = callPackage
@@ -178130,6 +176449,8 @@ self: {
];
description = "Metrics support for Mu using Prometheus";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-protobuf" = callPackage
@@ -178140,8 +176461,8 @@ self: {
}:
mkDerivation {
pname = "mu-protobuf";
- version = "0.4.0.0";
- sha256 = "13323mk6maj4fn1vg98nkb80k1975mqaszbj67a4mr5n2s9vrlz2";
+ version = "0.4.0.3";
+ sha256 = "0wc562fw89l3qmyf28axj41cyj88ppkg0jsif9rsrdgj4ypq2zrj";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -178165,31 +176486,36 @@ self: {
}:
mkDerivation {
pname = "mu-rpc";
- version = "0.4.0.0";
- sha256 = "06aly31vqf4i96p62i7pjp9xr9rwvnrmg31qpvirjzgn6jq5dyk3";
+ version = "0.4.0.1";
+ sha256 = "0s1q12nl6q3smnmmk2f1qhs0bk3sarmjcabvnj06vw6ciivnx16z";
libraryHaskellDepends = [
aeson base conduit http-types mtl mu-schema sop-core
template-haskell text wai
];
description = "Protocol-independent declaration of services and servers";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-schema" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, sop-core
- , template-haskell, text, th-abstraction, unordered-containers
- , uuid, vector
+ ({ mkDerivation, aeson, base, bytestring, containers
+ , first-class-families, sop-core, template-haskell, text
+ , th-abstraction, unordered-containers, uuid, vector
}:
mkDerivation {
pname = "mu-schema";
- version = "0.3.1.0";
- sha256 = "1kl62ask8cvjimjcb9f3y3vpvk544m3zlzp4jn1yrvbmzn3px0d1";
+ version = "0.3.1.1";
+ sha256 = "0n30xn2z1dl4n28mbfnif8csvz0namll0hab1r7mhnamp0yc3gs8";
libraryHaskellDepends = [
- aeson base bytestring containers sop-core template-haskell text
- th-abstraction unordered-containers uuid vector
+ aeson base bytestring containers first-class-families sop-core
+ template-haskell text th-abstraction unordered-containers uuid
+ vector
];
description = "Format-independent schemas for serialization";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mu-servant-server" = callPackage
@@ -178228,6 +176554,8 @@ self: {
];
description = "Tracing support for Mu";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"mucipher" = callPackage
@@ -178591,8 +176919,6 @@ self: {
testHaskellDepends = [ base cryptonite doctest hedgehog ];
description = "Self-identifying hashes, implementation of <https://github.com/multiformats/multihash>";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"multihash-serialise" = callPackage
@@ -178688,8 +177014,8 @@ self: {
({ mkDerivation, base, bytestring, parsec, stringsearch }:
mkDerivation {
pname = "multipart";
- version = "0.2.0";
- sha256 = "1rw668hxj04zpkfwhjqbd0ph0wy9k2khsrbsni9sxi2px49vnmym";
+ version = "0.2.1";
+ sha256 = "0p6n4knxpjv70nbl6cmd6x7gkdjsjqp4ya7fz00bfrqp7jvhlivn";
libraryHaskellDepends = [ base bytestring parsec stringsearch ];
description = "Parsers for the HTTP multipart format";
license = stdenv.lib.licenses.bsd3;
@@ -179486,8 +177812,8 @@ self: {
}:
mkDerivation {
pname = "musicw";
- version = "0.3.5.2";
- sha256 = "0mn5vnjxqkpd2pgjxmchlih74a1m52v06h6f08kyb26l0sjpbfx7";
+ version = "0.3.6";
+ sha256 = "0bi57x087r22547z90n58faz78ha6z6pfmf2chwrfdys48lr8wfq";
libraryHaskellDepends = [
array base bytestring containers data-default file-embed ghcjs-base
ghcjs-dom ghcjs-prim json monad-loops mtl safe text time
@@ -179531,8 +177857,6 @@ self: {
];
description = "A representation of the MusicXML format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mustache" = callPackage
@@ -179628,8 +177952,6 @@ self: {
];
description = "Automatic piecewise-mutable references for your types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mutable-containers" = callPackage
@@ -179669,18 +177991,19 @@ self: {
}) {};
"mutable-lens" = callPackage
- ({ mkDerivation, base, containers, doctest, lens, primitive, stm
- , tasty, tasty-hunit, transformers
+ ({ mkDerivation, base, containers, doctest, extra, lens, primitive
+ , stm, tasty, tasty-hunit, transformers
}:
mkDerivation {
pname = "mutable-lens";
- version = "0.4.0.0";
- sha256 = "14mywx7lh3yw8gfqy8h2hml2vr3vjfnxnvfvcg37kfskkfyaf6lm";
+ version = "0.4.1.0";
+ sha256 = "013z1jj8g996vzwal7vlkfy4h3s67y03k5j1sg78dc9abpc87l2z";
libraryHaskellDepends = [ base lens primitive stm ];
testHaskellDepends = [
base containers doctest lens primitive stm tasty tasty-hunit
transformers
];
+ benchmarkHaskellDepends = [ base extra primitive ];
description = "Interoperate mutable references with regular lens";
license = stdenv.lib.licenses.asl20;
}) {};
@@ -179801,8 +178124,6 @@ self: {
];
description = "A Markov stochastic transition operator with logging";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mwc-random" = callPackage
@@ -179853,8 +178174,6 @@ self: {
libraryHaskellDepends = [ accelerate base mwc-random ];
description = "Generate Accelerate arrays filled with high quality pseudorandom numbers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mwc-random-monad" = callPackage
@@ -180167,8 +178486,8 @@ self: {
}:
mkDerivation {
pname = "mysql";
- version = "0.1.7";
- sha256 = "1nbj958nsr568c1mhwhcidz8d1p35c6b99m8xz2z0w8ig737nbgg";
+ version = "0.1.7.2";
+ sha256 = "0vkc39hx55hqwgkhqm80ckabbjaq4f9840msznf71glzihzg8k0n";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base bytestring containers ];
librarySystemDepends = [ mysql ];
@@ -180205,8 +178524,8 @@ self: {
}:
mkDerivation {
pname = "mysql-haskell";
- version = "0.8.4.2";
- sha256 = "1lg9w9kwjnrx948r24flw0yjwxc8f93ygg45dl2djk4kfxdfnlaz";
+ version = "0.8.4.3";
+ sha256 = "1gjq8spl6s05kcckw78d1wi2k8blr25mbvicd1kwr653lj2d3w74";
libraryHaskellDepends = [
base binary binary-ieee754 binary-parsers blaze-textual bytestring
bytestring-lexing cryptonite io-streams memory monad-loops network
@@ -180217,8 +178536,6 @@ self: {
];
description = "pure haskell MySQL driver";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mysql-haskell-nem" = callPackage
@@ -180234,8 +178551,6 @@ self: {
];
description = "Adds a interface like mysql-simple to mysql-haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"mysql-haskell-openssl" = callPackage
@@ -180244,8 +178559,8 @@ self: {
}:
mkDerivation {
pname = "mysql-haskell-openssl";
- version = "0.8.3.0";
- sha256 = "0pm5vd2gpb1x68n2i5brvspngfplp283jlw9a351z2yrnpwmwd24";
+ version = "0.8.3.1";
+ sha256 = "1fq1990423is1zmyd3qa6dxyyj5ackrgsr9i3wvzkw3xys472j2w";
libraryHaskellDepends = [
base binary HsOpenSSL mysql-haskell tcp-streams tcp-streams-openssl
wire-streams
@@ -180688,6 +179003,8 @@ self: {
sha256 = "0ixpm43sgir02a9y8i7rvalxh6h7vlcwgi2hmis0lq0w8pmw5m53";
libraryHaskellDepends = [ base named servant ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"named-servant-client" = callPackage
@@ -180703,6 +179020,8 @@ self: {
];
description = "client support for named-servant";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"named-servant-server" = callPackage
@@ -180718,6 +179037,8 @@ self: {
];
description = "server support for named-servant";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"named-sop" = callPackage
@@ -180730,6 +179051,8 @@ self: {
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Dependently-typed sums and products, tagged by field name";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"namelist" = callPackage
@@ -180784,6 +179107,8 @@ self: {
testHaskellDepends = [ base ];
description = "A Generic Haskell library for managing namespaces";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"nano-cryptr" = callPackage
@@ -181199,8 +179524,6 @@ self: {
];
description = "Natural number";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"natural-arithmetic" = callPackage
@@ -181275,8 +179598,8 @@ self: {
pname = "natural-transformation";
version = "0.4";
sha256 = "1by8xwjc23l6pa9l4iv7zp82dykpll3vc3hgxk0pgva724n8xhma";
- revision = "8";
- editedCabalFile = "007vgw2zaf2z9fyi9f0spmqn6fd8j438r3vnkgmazzvb43szmi0n";
+ revision = "9";
+ editedCabalFile = "1db5ln24wcn4fcf92096iff8jp7q531ccm8pgbqincrbxayahl1s";
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base containers quickcheck-instances tasty tasty-quickcheck
@@ -181416,24 +179739,6 @@ self: {
}:
mkDerivation {
pname = "neat-interpolation";
- version = "0.3.2.6";
- sha256 = "10k5x47i84nycl54p61l8v1bpvi7mw663vnj8nn1qjpn03anz8z2";
- libraryHaskellDepends = [ base megaparsec template-haskell text ];
- testHaskellDepends = [
- QuickCheck quickcheck-instances rerebase tasty tasty-hunit
- tasty-quickcheck
- ];
- description = "A quasiquoter for neat and simple multiline text interpolation";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "neat-interpolation_0_5_1_2" = callPackage
- ({ mkDerivation, base, megaparsec, QuickCheck, quickcheck-instances
- , rerebase, tasty, tasty-hunit, tasty-quickcheck, template-haskell
- , text
- }:
- mkDerivation {
- pname = "neat-interpolation";
version = "0.5.1.2";
sha256 = "18c48r5qwrapkjh35l5dng3ahkkn1ch47vc4nzjwh4a9va94laln";
libraryHaskellDepends = [ base megaparsec template-haskell text ];
@@ -181443,7 +179748,6 @@ self: {
];
description = "A quasiquoter for neat and simple multiline text interpolation";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"needle" = callPackage
@@ -181894,8 +180198,6 @@ self: {
];
description = "A graph database middleware to maintain a time-varying graph";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"net-spider-cli" = callPackage
@@ -181916,8 +180218,6 @@ self: {
];
description = "CLI option parsers for NetSpider objects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"net-spider-pangraph" = callPackage
@@ -182298,8 +180598,6 @@ self: {
];
description = "safe nettle binding";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) nettle;};
"nettle-frp" = callPackage
@@ -182457,22 +180755,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "network_3_0_1_1" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, directory, hspec
- , hspec-discover, HUnit
- }:
- mkDerivation {
- pname = "network";
- version = "3.0.1.1";
- sha256 = "1xacvl5wf47cz61igb94zf961b9ks0yhr02myxgjf53clm70dg6j";
- libraryHaskellDepends = [ base bytestring deepseq ];
- testHaskellDepends = [ base bytestring directory hspec HUnit ];
- testToolDepends = [ hspec-discover ];
- description = "Low-level networking interface";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"network" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, hspec
, hspec-discover, HUnit
@@ -182488,16 +180770,16 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "network_3_1_2_0" = callPackage
+ "network_3_1_2_1" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, hspec
, hspec-discover, HUnit, QuickCheck, temporary
}:
mkDerivation {
pname = "network";
- version = "3.1.2.0";
- sha256 = "07zbaaa4f0rnc4xqg5kbzqivmr9lqz2g6bw01gmqkmh9k9svsap0";
+ version = "3.1.2.1";
+ sha256 = "0jlx8dls0h95znpcb66bd95k4mp3aaa733h89pq5ymyb8m29bapw";
revision = "1";
- editedCabalFile = "079svy0nr035xhz4gd6cila0wvsjl23hi3hq5407m3qdmcf4rkis";
+ editedCabalFile = "12swsygnsnyvfjm3p9b6z8jh8vbw3q5akmggacsvr4fdm2p6v38q";
libraryHaskellDepends = [ base bytestring deepseq directory ];
testHaskellDepends = [
base bytestring directory hspec HUnit QuickCheck temporary
@@ -182609,8 +180891,8 @@ self: {
}:
mkDerivation {
pname = "network-arbitrary";
- version = "0.6.0.0";
- sha256 = "0yj93r7p4nbfwhklxb7wgkaq1bfl7qjqmn3q0qlxlghbb2xhmmh1";
+ version = "0.7.0.0";
+ sha256 = "0n3c9hm8p404diksx23l4afa7i4lcl92m2zp2aw4zy8n9vhpz8sv";
libraryHaskellDepends = [
base bytestring http-media http-types network-uri QuickCheck
];
@@ -183446,8 +181728,6 @@ self: {
];
description = "TCP instantiation of Network.Transport";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"network-transport-tests" = callPackage
@@ -183578,8 +181858,6 @@ self: {
testHaskellDepends = [ base doctest ];
description = "A small utility to declare type-safe static URIs";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"network-voicetext" = callPackage
@@ -183997,8 +182275,8 @@ self: {
}:
mkDerivation {
pname = "newtype-zoo";
- version = "1.2.0.0";
- sha256 = "12p2nyjpvbqjc7p6jd59ggl37jlg5rh9z8y1bxy4w98m47p8lj31";
+ version = "1.2.1.0";
+ sha256 = "0zb4fm6c3m88xk76lr1d6b5yhnx45mb77m0srhq43r168rhk69d7";
libraryHaskellDepends = [
base comonad data-default deepseq pointed profunctors QuickCheck
random
@@ -184138,8 +182416,8 @@ self: {
}:
mkDerivation {
pname = "ngx-export-tools";
- version = "0.4.8.0";
- sha256 = "1jw6ny4qnckxyvszislqy079bh6vnq9q0f4wig8n1diljs057waj";
+ version = "0.4.9.0";
+ sha256 = "0z1b3vzq11ifx3n8pmwary138ccqsfafzpl1nf27094rvr1ijjyn";
libraryHaskellDepends = [
aeson base binary bytestring ngx-export safe template-haskell
];
@@ -184148,21 +182426,22 @@ self: {
}) {};
"ngx-export-tools-extra" = callPackage
- ({ mkDerivation, aeson, ansi-wl-pprint, array, base, base64, binary
- , bytestring, case-insensitive, containers, ede
- , enclosed-exceptions, http-client, http-types, ngx-export
- , ngx-export-tools, safe, snap-core, snap-server, template-haskell
+ ({ mkDerivation, aeson, array, base, base64, binary, bytestring
+ , case-insensitive, containers, ede, enclosed-exceptions
+ , http-client, http-types, network, ngx-export, ngx-export-tools
+ , prettyprinter, safe, snap-core, snap-server, template-haskell
, text, time, trifecta, unordered-containers
}:
mkDerivation {
pname = "ngx-export-tools-extra";
- version = "0.5.5.1";
- sha256 = "0x3c1r0ddbk740182gwv43s2zxr6aj9k6y4npv7vi0fwyxjcqgkj";
+ version = "0.6.0.1";
+ sha256 = "0xgnjriq9c3r9vpnkm0ldjqghss9ahjzk8ckrwq59bmdhns3fvx9";
libraryHaskellDepends = [
- aeson ansi-wl-pprint array base base64 binary bytestring
- case-insensitive containers ede enclosed-exceptions http-client
- http-types ngx-export ngx-export-tools safe snap-core snap-server
- template-haskell text time trifecta unordered-containers
+ aeson array base base64 binary bytestring case-insensitive
+ containers ede enclosed-exceptions http-client http-types network
+ ngx-export ngx-export-tools prettyprinter safe snap-core
+ snap-server template-haskell text time trifecta
+ unordered-containers
];
description = "More extra tools for Nginx haskell module";
license = stdenv.lib.licenses.bsd3;
@@ -184528,6 +182807,8 @@ self: {
pname = "nix-freeze-tree";
version = "0.1.0.0";
sha256 = "06l323g6qx87lbs9hbmnjr0b40f548w8496p7pihxrla1kb2v31x";
+ revision = "1";
+ editedCabalFile = "1lhhaaisiaj9hsifn5nv3mmkp10cn3szal3gsn4dx2j0h23b4f3p";
isLibrary = false;
isExecutable = true;
libraryHaskellDepends = [
@@ -184582,27 +182863,28 @@ self: {
"nix-thunk" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, cli-extras
- , cli-git, cli-nix, containers, data-default, directory, either
- , exceptions, extra, filepath, git, github, here, lens
- , logging-effect, megaparsec, modern-uri, mtl, optparse-applicative
- , temporary, text, time, unix, which, yaml
+ , cli-git, cli-nix, containers, cryptonite, data-default, directory
+ , either, exceptions, extra, filepath, github, here, lens
+ , logging-effect, megaparsec, memory, modern-uri, monad-logger, mtl
+ , optparse-applicative, temporary, text, time, unix, which, yaml
}:
mkDerivation {
pname = "nix-thunk";
- version = "0.1.0.0";
- sha256 = "0jg3j78dwq31g18fkmcbn4d8vlmdb0vpnicac2kmg0dwrw64v2gb";
+ version = "0.2.0.2";
+ sha256 = "1jxdxb8ri0cd7ni9z80xlb86d81bb83c6ki5wj7jx7sn9inzz8z7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty base bytestring cli-extras cli-git cli-nix
- containers data-default directory either exceptions extra filepath
- git github here lens logging-effect megaparsec modern-uri mtl
- optparse-applicative temporary text time unix which yaml
+ containers cryptonite data-default directory either exceptions
+ extra filepath github here lens logging-effect megaparsec memory
+ modern-uri monad-logger mtl optparse-applicative temporary text
+ time unix which yaml
];
executableHaskellDepends = [
base cli-extras optparse-applicative text
];
- description = "Virtual vendorization with Nix";
+ description = "Lightweight dependency management with Nix";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -184647,8 +182929,8 @@ self: {
}:
mkDerivation {
pname = "nix-tree";
- version = "0.1.1.0";
- sha256 = "1dciwsw7cv1f73awrqr3gw3zj3mizaw53q3ibkawq9gbfsfg8yiz";
+ version = "0.1.2.0";
+ sha256 = "0indbvsjsl0m325f0vhzhllrhkq27agnbrmhzz7k0klprssf1hsn";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -185036,6 +183318,8 @@ self: {
];
description = "A static site generator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"nom" = callPackage
@@ -185371,8 +183655,8 @@ self: {
}:
mkDerivation {
pname = "nonempty-vector";
- version = "0.2.0.2";
- sha256 = "1w7nmjqlrrymgpainzm7fx4fc6jfl45j7rx73xfcwjsdxl0fl3c2";
+ version = "0.2.1.0";
+ sha256 = "0w6fn8dinf8lcbhr5797i5kyixpasylpwn97ljmkjc6n3ad1b21y";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [ base deepseq primitive vector ];
testHaskellDepends = [ base doctest ];
@@ -185599,20 +183883,22 @@ self: {
"nothunks" = callPackage
({ mkDerivation, base, bytestring, containers, ghc-heap, ghc-prim
- , hedgehog, random, tasty, tasty-hedgehog, text, time, vector
+ , hedgehog, random, stm, tasty, tasty-hedgehog, text, time, vector
}:
mkDerivation {
pname = "nothunks";
- version = "0.1.1.0";
- sha256 = "1nnkdzr3ffhy7yqi068ay3p1bc0g0lmpyps3pqf0267vcx8lf8zn";
+ version = "0.1.2";
+ sha256 = "0z9calmdw4bk4cdwrfq5nkxxks2f82q59i7kv6lnsgwyl4nqvg2y";
libraryHaskellDepends = [
- base bytestring containers ghc-heap text time vector
+ base bytestring containers ghc-heap stm text time vector
];
testHaskellDepends = [
- base containers ghc-prim hedgehog random tasty tasty-hedgehog
+ base containers ghc-prim hedgehog random stm tasty tasty-hedgehog
];
description = "Examine values for unexpected thunks";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"notifications-tray-icon" = callPackage
@@ -185866,15 +184152,13 @@ self: {
}:
mkDerivation {
pname = "nri-env-parser";
- version = "0.1.0.1";
- sha256 = "1v6984ndlalrvdff10frik8bxqskmzf8cr13q6095jl6krjivkay";
+ version = "0.1.0.2";
+ sha256 = "0cl9f6p83k0r7ha6hzgmrv0abi9rw5p0wr838jyhazk179g37rrn";
libraryHaskellDepends = [
base modern-uri network-uri nri-prelude text
];
description = "Read environment variables as settings to build 12-factor apps";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"nri-prelude" = callPackage
@@ -185886,8 +184170,8 @@ self: {
}:
mkDerivation {
pname = "nri-prelude";
- version = "0.1.0.4";
- sha256 = "0x8jvrp2kcj9a23g370fj9v6mmp3c3vi05dg3arq1ri5in4y6psa";
+ version = "0.2.0.0";
+ sha256 = "061klliw29a8kkbwgqkhqbil7jq85pxgmqn21xwszi0g16jb8ayx";
libraryHaskellDepends = [
aeson ansi-terminal async auto-update base bytestring
concurrent-output containers directory exceptions filepath hedgehog
@@ -185902,8 +184186,6 @@ self: {
];
description = "A Prelude inspired by the Elm programming language";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"nsis" = callPackage
@@ -186031,12 +184313,14 @@ self: {
({ mkDerivation, base, vector }:
mkDerivation {
pname = "nuha";
- version = "0.2.0.0";
- sha256 = "1xcxr7nq8k2lj3xl3h3p2d4wn4zqjzy5bwc8pixl3nf5q57nz3gi";
+ version = "0.3.0.0";
+ sha256 = "15lb19gj146zkq2bgpp03jscw5bb3xys1yylvla5sqrnjqjw5r1d";
libraryHaskellDepends = [ base vector ];
testHaskellDepends = [ base vector ];
- description = "Multidimensional arrays, Linear algebra";
+ description = "Multidimensional arrays, Linear algebra, Numerical analysis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"null-canvas" = callPackage
@@ -186150,6 +184434,8 @@ self: {
libraryHaskellDepends = [ base call-stack semigroups ];
description = "A sequence of semigroups, for composing stuff in multiple spatial directions";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"numbering" = callPackage
@@ -186401,17 +184687,6 @@ self: {
}) {};
"numhask" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "numhask";
- version = "0.4.0";
- sha256 = "1wwhpsrbnaa0nmb9x31wnk66dbvajd54mflvbnifff2dkaha89x1";
- libraryHaskellDepends = [ base ];
- description = "numeric classes";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "numhask_0_6_0_2" = callPackage
({ mkDerivation, base, bifunctors, mmorph, protolude, text
, transformers
}:
@@ -186424,22 +184699,40 @@ self: {
];
description = "numeric classes";
license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "numhask_0_7_0_0" = callPackage
+ ({ mkDerivation, base, bifunctors, doctest, mmorph, protolude
+ , QuickCheck, random, text, transformers
+ }:
+ mkDerivation {
+ pname = "numhask";
+ version = "0.7.0.0";
+ sha256 = "03rf8yk30kqbmq4jdvm3jnqdfx09nmki0kd7y9g2v7g07j2y1qx9";
+ revision = "1";
+ editedCabalFile = "1n1kilds4c98swbjrybl18d7z82bq4m56nlv03an7b9002wv8xn4";
+ libraryHaskellDepends = [
+ base bifunctors mmorph protolude random text transformers
+ ];
+ testHaskellDepends = [ base doctest QuickCheck ];
+ description = "A numeric class hierarchy";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numhask-array" = callPackage
({ mkDerivation, adjunctions, base, deepseq, distributive, doctest
- , hmatrix, numhask, vector
+ , numhask, vector
}:
mkDerivation {
pname = "numhask-array";
- version = "0.7.0";
- sha256 = "1izfym0y9920i2pbzil3z3sn8rzk23lj1rbgj0x0hc7y2p0w5lbm";
+ version = "0.8.0";
+ sha256 = "03c12d34s20f01vc9kpgrm3n4xi8h4kqzlndj1ncpqb69xx3fhc5";
libraryHaskellDepends = [
- adjunctions base deepseq distributive hmatrix numhask vector
+ adjunctions base deepseq distributive numhask vector
];
testHaskellDepends = [ base doctest numhask ];
- description = "n-dimensional arrays";
+ description = "Multi-dimensional array interface for numhask";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -186451,14 +184744,16 @@ self: {
}:
mkDerivation {
pname = "numhask-free";
- version = "0.0.1";
- sha256 = "1n786zg3sbc9zjr4972b837p459qx8yc1jqh0qlq1yw50yd9ic79";
+ version = "0.0.3";
+ sha256 = "1agfha5bxiq153jgknjriawyirbcw3ksbhb88y3v55wqjcwyqfiy";
libraryHaskellDepends = [
attoparsec base containers free numhask text
];
testHaskellDepends = [ base doctest numhask ];
- description = "See readme.md";
+ description = "numerical free algebras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"numhask-hedgehog" = callPackage
@@ -186539,14 +184834,14 @@ self: {
}:
mkDerivation {
pname = "numhask-space";
- version = "0.6.0";
- sha256 = "0zm64spljv7pvl68b60y7hr46fa82i44j7yk8q6i33nhr78qv7wy";
+ version = "0.7.0.0";
+ sha256 = "1vvm6px9wlqm07sc2p2df100x1pg2rgy363c59v1c910120lpdjd";
libraryHaskellDepends = [
adjunctions base containers distributive numhask semigroupoids
tdigest text time
];
testHaskellDepends = [ base doctest numhask ];
- description = "numerical spaces";
+ description = "Numerical spaces";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -186692,8 +184987,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Haskell plugin backend for neovim";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"nvim-hs-contrib" = callPackage
@@ -186717,8 +185010,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Haskell plugin backend for neovim";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"nvim-hs-ghcid" = callPackage
@@ -186739,8 +185030,6 @@ self: {
executableHaskellDepends = [ base nvim-hs ];
description = "Neovim plugin that runs ghcid to update the quickfix list";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"nvvm" = callPackage
@@ -186847,27 +185136,6 @@ self: {
}:
mkDerivation {
pname = "o-clock";
- version = "1.1.0";
- sha256 = "15lad2rjnam0b1ny5zccd0ir3q4i559y28r93sqkws4j74mx8b4c";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base ghc-prim ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- base doctest Glob hedgehog markdown-unlit tasty tasty-hedgehog
- tasty-hspec type-spec
- ];
- testToolDepends = [ doctest markdown-unlit ];
- description = "Type-safe time library";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "o-clock_1_2_0" = callPackage
- ({ mkDerivation, base, doctest, ghc-prim, Glob, hedgehog
- , markdown-unlit, tasty, tasty-hedgehog, tasty-hspec, type-spec
- }:
- mkDerivation {
- pname = "o-clock";
version = "1.2.0";
sha256 = "0l8bwv0sagfpyfray4g1nnwb8zl4b2nljwxxwhh71vfhz620vrkx";
isLibrary = true;
@@ -186881,7 +185149,6 @@ self: {
testToolDepends = [ doctest markdown-unlit ];
description = "Type-safe time library";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"oanda-rest-api" = callPackage
@@ -187156,6 +185423,8 @@ self: {
testToolDepends = [ tasty-discover ];
description = "An implementation of the Oblivious Transfer protocol in Haskell";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"observable" = callPackage
@@ -187610,8 +185879,8 @@ self: {
}:
mkDerivation {
pname = "oidc-client";
- version = "0.5.1.0";
- sha256 = "1qp69bdfam86y90vrm3z1nlk4kh03pnyzc5k06w9xvaq6i0965z6";
+ version = "0.6.0.0";
+ sha256 = "0r359hwx4zh5mjh2p4abfkgnkkhzbhdn6fn5dlja8pvyvi18a3kk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -188157,34 +186426,6 @@ self: {
}:
mkDerivation {
pname = "opaleye";
- version = "0.6.7006.1";
- sha256 = "0qg42qdk6gcziwfvjsjbwyj629grna2ay4pmh8myy3d1rznp6s93";
- libraryHaskellDepends = [
- aeson base base16-bytestring bytestring case-insensitive
- contravariant postgresql-simple pretty product-profunctors
- profunctors scientific semigroups text time time-locale-compat
- transformers uuid void
- ];
- testHaskellDepends = [
- aeson base bytestring containers contravariant dotenv hspec
- hspec-discover multiset postgresql-simple product-profunctors
- profunctors QuickCheck semigroups text time transformers uuid
- ];
- testToolDepends = [ hspec-discover ];
- description = "An SQL-generating DSL targeting PostgreSQL";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "opaleye_0_7_1_0" = callPackage
- ({ mkDerivation, aeson, base, base16-bytestring, bytestring
- , case-insensitive, containers, contravariant, dotenv, hspec
- , hspec-discover, multiset, postgresql-simple, pretty
- , product-profunctors, profunctors, QuickCheck, scientific
- , semigroups, text, time, time-locale-compat, transformers, uuid
- , void
- }:
- mkDerivation {
- pname = "opaleye";
version = "0.7.1.0";
sha256 = "0i4ndy9dd6jb4dzx8a5fv8jsmnmp7p1kx2qr012xj1qjq36sqpy6";
revision = "3";
@@ -188203,7 +186444,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "An SQL-generating DSL targeting PostgreSQL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opaleye-classy" = callPackage
@@ -188271,6 +186511,8 @@ self: {
];
description = "A monad transformer for Opaleye";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"open-adt" = callPackage
@@ -188286,6 +186528,8 @@ self: {
];
description = "Open algebraic data types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"open-adt-tutorial" = callPackage
@@ -188305,6 +186549,8 @@ self: {
executableHaskellDepends = [ base ];
description = "Open algebraic data type examples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"open-browser" = callPackage
@@ -188415,6 +186661,8 @@ self: {
executableHaskellDepends = [ base type-fun ];
description = "Extensible, type-safe unions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"open-witness" = callPackage
@@ -188432,8 +186680,6 @@ self: {
testHaskellDepends = [ base mtl tasty tasty-hunit witness ];
description = "open witnesses";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"openapi-petstore" = callPackage
@@ -188519,6 +186765,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "OpenAPI 3.0 data model";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"openapi3-code-generator" = callPackage
@@ -188555,6 +186803,8 @@ self: {
];
description = "OpenAPI3 Haskell Client Code Generator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"opench-meteo" = callPackage
@@ -189019,16 +187269,6 @@ self: {
}) {};
"opentelemetry" = callPackage
- ({ mkDerivation, base, bytestring, exceptions }:
- mkDerivation {
- pname = "opentelemetry";
- version = "0.4.2";
- sha256 = "12myg932dpf6zz38ahf9dmx449dkp9kf9pi79j8bdlz4v2fl3jzj";
- libraryHaskellDepends = [ base bytestring exceptions ];
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "opentelemetry_0_6_1" = callPackage
({ mkDerivation, base, bytestring, exceptions, ghc-trace-events
, hashable
}:
@@ -189040,46 +187280,9 @@ self: {
base bytestring exceptions ghc-trace-events hashable
];
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opentelemetry-extra" = callPackage
- ({ mkDerivation, aeson, async, base, bytestring, clock, containers
- , directory, exceptions, filepath, ghc-events, hashable
- , http-client, http-client-tls, http-types, opentelemetry
- , optparse-applicative, process, QuickCheck, random, scientific
- , splitmix, stm, tasty, tasty-discover, tasty-hunit
- , tasty-quickcheck, text, text-show, typed-process
- , unordered-containers
- }:
- mkDerivation {
- pname = "opentelemetry-extra";
- version = "0.4.2";
- sha256 = "1qr2pz08n7kqx5jcyxhfwrsqlw7lbkkjbrm0fdj5mxykwznqidb8";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson async base bytestring clock containers directory exceptions
- filepath ghc-events hashable http-client http-client-tls http-types
- opentelemetry random scientific splitmix stm text text-show
- unordered-containers
- ];
- executableHaskellDepends = [
- async base clock exceptions filepath http-client http-client-tls
- opentelemetry optparse-applicative process text typed-process
- ];
- testHaskellDepends = [
- base bytestring ghc-events hashable opentelemetry QuickCheck tasty
- tasty-discover tasty-hunit tasty-quickcheck text text-show
- unordered-containers
- ];
- testToolDepends = [ tasty-discover ];
- license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "opentelemetry-extra_0_6_1" = callPackage
({ mkDerivation, aeson, async, base, binary, bytestring, clock
, containers, directory, exceptions, filepath, gauge
, generic-arbitrary, ghc-events, hashable, hashtables, http-client
@@ -189113,8 +187316,6 @@ self: {
testToolDepends = [ tasty-discover ];
benchmarkHaskellDepends = [ base gauge opentelemetry ];
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"opentelemetry-http-client" = callPackage
@@ -189141,34 +187342,6 @@ self: {
}:
mkDerivation {
pname = "opentelemetry-lightstep";
- version = "0.4.2";
- sha256 = "1srzm9d4sc9rgfgq2yyfn5avs9n8bjx9mhz124dhkn3j361sr5g2";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson async base bytestring exceptions http-client http-client-tls
- http-types network opentelemetry opentelemetry-extra scientific stm
- text unordered-containers
- ];
- executableHaskellDepends = [
- async base bytestring clock containers exceptions filepath
- ghc-events http-client http-types opentelemetry opentelemetry-extra
- splitmix text typed-process unordered-containers
- ];
- license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "opentelemetry-lightstep_0_6_1" = callPackage
- ({ mkDerivation, aeson, async, base, bytestring, clock, containers
- , exceptions, filepath, ghc-events, http-client, http-client-tls
- , http-types, network, opentelemetry, opentelemetry-extra
- , scientific, splitmix, stm, text, typed-process
- , unordered-containers
- }:
- mkDerivation {
- pname = "opentelemetry-lightstep";
version = "0.6.1";
sha256 = "1a7rrm5aahqh63j0rr7nvd4y3q64m8qr7is0r0a17fwkkpppmyln";
isLibrary = true;
@@ -189184,8 +187357,6 @@ self: {
splitmix text typed-process unordered-containers
];
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"opentelemetry-wai" = callPackage
@@ -189194,30 +187365,12 @@ self: {
}:
mkDerivation {
pname = "opentelemetry-wai";
- version = "0.4.2";
- sha256 = "01jim0634pzf49l18s7512y7a3dkjpif492k6a5j81jg1nylkm1a";
- libraryHaskellDepends = [
- base bytestring http-types opentelemetry text wai
- ];
- license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "opentelemetry-wai_0_6_1" = callPackage
- ({ mkDerivation, base, bytestring, http-types, opentelemetry, text
- , wai
- }:
- mkDerivation {
- pname = "opentelemetry-wai";
version = "0.6.1";
sha256 = "0g1a044sphd35z9crc8wbxsk4hfh1gpfi4g8rr1k4f842hznj7nf";
libraryHaskellDepends = [
base bytestring http-types opentelemetry text wai
];
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"opentheory" = callPackage
@@ -189586,6 +187739,8 @@ self: {
];
description = "Compiler for OpLang, an esoteric programming language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"opml" = callPackage
@@ -189625,8 +187780,6 @@ self: {
];
description = "Streaming parser/renderer for the OPML 2.0 format.";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"opn" = callPackage
@@ -189652,32 +187805,6 @@ self: {
"optics" = callPackage
({ mkDerivation, array, base, bytestring, containers, criterion
, indexed-profunctors, inspection-testing, lens, mtl, optics-core
- , optics-extra, optics-th, random, tasty, tasty-hunit
- , template-haskell, transformers, unordered-containers, vector
- }:
- mkDerivation {
- pname = "optics";
- version = "0.2";
- sha256 = "0q80rambmw387dq23nsywzpwrvi8vjy9sg1fl2qwc2is6xki6pcl";
- libraryHaskellDepends = [
- array base containers mtl optics-core optics-extra optics-th
- transformers
- ];
- testHaskellDepends = [
- base containers indexed-profunctors inspection-testing mtl
- optics-core random tasty tasty-hunit template-haskell
- ];
- benchmarkHaskellDepends = [
- base bytestring containers criterion lens transformers
- unordered-containers vector
- ];
- description = "Optics as an abstract interface";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "optics_0_3" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, criterion
- , indexed-profunctors, inspection-testing, lens, mtl, optics-core
, optics-extra, optics-th, QuickCheck, random, tasty, tasty-hunit
, tasty-quickcheck, template-haskell, transformers
, unordered-containers, vector
@@ -189701,7 +187828,6 @@ self: {
];
description = "Optics as an abstract interface";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optics-core" = callPackage
@@ -189710,23 +187836,6 @@ self: {
}:
mkDerivation {
pname = "optics-core";
- version = "0.2";
- sha256 = "19hsax8wxxgr28rjz6p9afb06f338xnyvws7salmm1dsik1ghzr8";
- revision = "1";
- editedCabalFile = "1sghrm6xyflzkv350phcm344ljv82wk2vjnwhwyvcqwirkwg8rk9";
- libraryHaskellDepends = [
- array base containers indexed-profunctors transformers
- ];
- description = "Optics as an abstract interface: core definitions";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "optics-core_0_3_0_1" = callPackage
- ({ mkDerivation, array, base, containers, indexed-profunctors
- , transformers
- }:
- mkDerivation {
- pname = "optics-core";
version = "0.3.0.1";
sha256 = "01z1rjrmj3jqh3fygqa1asr4azhdnqpix27sdw3ygi5dnbcmn49h";
libraryHaskellDepends = [
@@ -189734,7 +187843,6 @@ self: {
];
description = "Optics as an abstract interface: core definitions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optics-extra" = callPackage
@@ -189744,23 +187852,6 @@ self: {
}:
mkDerivation {
pname = "optics-extra";
- version = "0.2";
- sha256 = "16n64dyii8b9w1prc73qwfjhinzixckd1xlmb4x8i1jlw2dbz5d1";
- libraryHaskellDepends = [
- array base bytestring containers hashable indexed-profunctors mtl
- optics-core text transformers unordered-containers vector
- ];
- description = "Extra utilities and instances for optics-core";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "optics-extra_0_3" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, hashable
- , indexed-profunctors, mtl, optics-core, text, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "optics-extra";
version = "0.3";
sha256 = "15vnznmi4h9xrrp7dk6fqgz9cwlqlmdr2h4nx1n5q6hi2ic1bmm4";
libraryHaskellDepends = [
@@ -189769,27 +187860,9 @@ self: {
];
description = "Extra utilities and instances for optics-core";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optics-th" = callPackage
- ({ mkDerivation, base, containers, mtl, optics-core
- , template-haskell, th-abstraction, transformers
- }:
- mkDerivation {
- pname = "optics-th";
- version = "0.2";
- sha256 = "12hij9b5gqq1gdh7zbv09dsqbf9pr7wf2ywjnbf319sn20cn8fv8";
- libraryHaskellDepends = [
- base containers mtl optics-core template-haskell th-abstraction
- transformers
- ];
- testHaskellDepends = [ base optics-core ];
- description = "Optics construction using TemplateHaskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "optics-th_0_3_0_2" = callPackage
({ mkDerivation, base, containers, mtl, optics-core, tagged
, template-haskell, th-abstraction, transformers
}:
@@ -189806,7 +187879,6 @@ self: {
testHaskellDepends = [ base optics-core tagged ];
description = "Optics construction using TemplateHaskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optics-vl" = callPackage
@@ -189815,21 +187887,6 @@ self: {
}:
mkDerivation {
pname = "optics-vl";
- version = "0.2";
- sha256 = "0gd61ha93bws7fchjghc6bca9g8jgli0v6cl24g8ii2c22jgga6x";
- libraryHaskellDepends = [
- base indexed-profunctors optics-core profunctors
- ];
- description = "Utilities for compatibility with van Laarhoven optics";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "optics-vl_0_2_1" = callPackage
- ({ mkDerivation, base, indexed-profunctors, optics-core
- , profunctors
- }:
- mkDerivation {
- pname = "optics-vl";
version = "0.2.1";
sha256 = "1xrkak0cn2imgqr641wzysgynykyj438m3ywgdm9h14k17inv55v";
libraryHaskellDepends = [
@@ -189837,7 +187894,6 @@ self: {
];
description = "Utilities for compatibility with van Laarhoven optics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optima" = callPackage
@@ -190027,18 +188083,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "optparse-applicative_0_16_0_0" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bytestring, process
- , QuickCheck, transformers, transformers-compat
+ "optparse-applicative_0_16_1_0" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, process, QuickCheck
+ , transformers, transformers-compat
}:
mkDerivation {
pname = "optparse-applicative";
- version = "0.16.0.0";
- sha256 = "0aybamakg9zjac0b78lhfa1bvilkb76yryis6h0pf5j1khrkri89";
+ version = "0.16.1.0";
+ sha256 = "16nnrkmgd28h540f17nb017ziq4gbzgkxpdraqicaczkca1jf1b2";
libraryHaskellDepends = [
ansi-wl-pprint base process transformers transformers-compat
];
- testHaskellDepends = [ base bytestring QuickCheck ];
+ testHaskellDepends = [ base QuickCheck ];
description = "Utilities and combinators for parsing command line options";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -190066,8 +188122,8 @@ self: {
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "optparse-declarative";
- version = "0.3.1";
- sha256 = "1s3bkkn5a8bgkbqdsf5ir18r0j0r2r0agz04q2ccafd26d8xdx2s";
+ version = "0.4.1";
+ sha256 = "0paa7r64y0nb9yv3x387pdid68lnc1gn2m28kcli55dvh1x4wwxr";
libraryHaskellDepends = [ base mtl ];
description = "Declarative command line option parser";
license = stdenv.lib.licenses.mit;
@@ -190196,8 +188252,6 @@ self: {
];
description = "Types and functions for Kepler orbits";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"orc" = callPackage
@@ -190395,20 +188449,18 @@ self: {
libraryHaskellDepends = [ base containers ];
description = "basic orders";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ordinal" = callPackage
- ({ mkDerivation, base, containers, hspec, hspec-discover
- , QuickCheck, regex, template-haskell, text, vector
+ ({ mkDerivation, base, containers, data-default, hspec
+ , hspec-discover, QuickCheck, regex, template-haskell, text, vector
}:
mkDerivation {
pname = "ordinal";
- version = "0.2.0.0";
- sha256 = "01ja268zk5pwdjzl5msiycy41zkg66apchjg5g2x4642qmn0rsxd";
+ version = "0.3.1.0";
+ sha256 = "16y8a4xrrna6cwzy8lvvykdb9jgk5qswrwd8dn7iqgmhqck271x8";
libraryHaskellDepends = [
- base containers regex template-haskell text vector
+ base containers data-default regex template-haskell text vector
];
testHaskellDepends = [ base hspec QuickCheck text ];
testToolDepends = [ hspec-discover ];
@@ -190463,6 +188515,8 @@ self: {
testHaskellDepends = [ base megaparsec tasty tasty-hunit text ];
description = "Parser for Emacs org-mode files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"org-mode-lucid" = callPackage
@@ -190477,6 +188531,8 @@ self: {
];
description = "Lucid integration for org-mode";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"org2anki" = callPackage
@@ -190581,6 +188637,8 @@ self: {
];
description = "Statistics visualizer for org-mode";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"origami" = callPackage
@@ -190645,54 +188703,25 @@ self: {
broken = true;
}) {};
- "ormolu_0_0_5_0" = callPackage
- ({ mkDerivation, base, bytestring, containers, dlist, exceptions
- , filepath, ghc-lib-parser, gitrev, hspec, hspec-discover, mtl
- , optparse-applicative, path, path-io, syb, text
- }:
- mkDerivation {
- pname = "ormolu";
- version = "0.0.5.0";
- sha256 = "1sf22silpj89sldd7wanlr34nsv77bq0cf4i0q1x2r20pz7s4w4m";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bytestring containers dlist exceptions ghc-lib-parser mtl syb
- text
- ];
- executableHaskellDepends = [
- base ghc-lib-parser gitrev optparse-applicative text
- ];
- testHaskellDepends = [
- base containers filepath hspec path path-io text
- ];
- testToolDepends = [ hspec-discover ];
- description = "A formatter for Haskell source code";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"ormolu" = callPackage
- ({ mkDerivation, base, bytestring, containers, dlist, exceptions
- , filepath, ghc-lib-parser, gitrev, hspec, hspec-discover, mtl
- , optparse-applicative, path, path-io, syb, text
+ ({ mkDerivation, ansi-terminal, base, bytestring, containers, Diff
+ , dlist, exceptions, filepath, ghc-lib-parser, gitrev, hspec
+ , hspec-discover, mtl, optparse-applicative, path, path-io, syb
+ , text
}:
mkDerivation {
pname = "ormolu";
- version = "0.1.3.0";
- sha256 = "13s8irk1w7yrh9algbnvv5hjvnxmi3fndz34rncp33cyfnjv18j7";
- revision = "1";
- editedCabalFile = "1x8zkrrldalawrc7az5i1bdp4w1xvl195d9wq2mwyzkv5nih8gaa";
+ version = "0.1.4.1";
+ sha256 = "1aamgzimjn9h7kwby9ajfgbj5dx08nmxyalwvpg9rs4xd8pbpd9s";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base bytestring containers dlist exceptions ghc-lib-parser mtl syb
- text
+ ansi-terminal base bytestring containers Diff dlist exceptions
+ ghc-lib-parser mtl syb text
];
executableHaskellDepends = [
- base ghc-lib-parser gitrev optparse-applicative text
+ base filepath ghc-lib-parser gitrev optparse-applicative text
];
testHaskellDepends = [
base containers filepath hspec path path-io text
@@ -191003,8 +189032,6 @@ self: {
];
description = "Finite overloading";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"overloaded" = callPackage
@@ -191178,8 +189205,6 @@ self: {
];
description = "Check your cabal packages for lagging dependencies";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"packed" = callPackage
@@ -191557,6 +189582,8 @@ self: {
];
description = "Bilinear pairings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"palette" = callPackage
@@ -191572,6 +189599,8 @@ self: {
];
description = "Utilities for choosing and creating color schemes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"palindromes" = callPackage
@@ -191593,6 +189622,8 @@ self: {
pname = "pam";
version = "0.2.0.0";
sha256 = "0j4hm7ph0iszf8wyqpy5jiplr14jj37z2yvgcgy7p5ab5p5r38gx";
+ revision = "1";
+ editedCabalFile = "09d6acii3gimk3f04scy9k5f7di4sdam753ddi587px530pwdigb";
libraryHaskellDepends = [ base ];
librarySystemDepends = [ pam ];
libraryToolDepends = [ c2hs ];
@@ -191645,63 +189676,6 @@ self: {
}) {};
"pandoc" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, attoparsec, base-compat
- , base-noprelude, base64-bytestring, binary, blaze-html
- , blaze-markup, bytestring, case-insensitive, cmark-gfm, containers
- , criterion, data-default, deepseq, Diff, directory, doclayout
- , doctemplates, emojis, exceptions, executable-path, filepath, Glob
- , haddock-library, hslua, hslua-module-system, hslua-module-text
- , HsYAML, HTTP, http-client, http-client-tls, http-types, ipynb
- , jira-wiki-markup, JuicyPixels, mtl, network, network-uri
- , pandoc-types, parsec, process, QuickCheck, random, safe
- , scientific, SHA, skylighting, skylighting-core, split, syb
- , tagsoup, tasty, tasty-golden, tasty-hunit, tasty-lua
- , tasty-quickcheck, temporary, texmath, text, text-conversions
- , time, unicode-transforms, unix, unordered-containers, vector
- , weigh, xml, zip-archive, zlib
- }:
- mkDerivation {
- pname = "pandoc";
- version = "2.9.2.1";
- sha256 = "0myz7firqkx4k0vrsd62j443gvm2pk09bi69c8qdbdzq5hvkavf2";
- configureFlags = [ "-fhttps" "-f-trypandoc" ];
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson aeson-pretty attoparsec base-compat base-noprelude
- base64-bytestring binary blaze-html blaze-markup bytestring
- case-insensitive cmark-gfm containers data-default deepseq
- directory doclayout doctemplates emojis exceptions filepath Glob
- haddock-library hslua hslua-module-system hslua-module-text HsYAML
- HTTP http-client http-client-tls http-types ipynb jira-wiki-markup
- JuicyPixels mtl network network-uri pandoc-types parsec process
- random safe scientific SHA skylighting skylighting-core split syb
- tagsoup temporary texmath text text-conversions time
- unicode-transforms unix unordered-containers vector xml zip-archive
- zlib
- ];
- executableHaskellDepends = [ base-compat base-noprelude ];
- testHaskellDepends = [
- base-compat base-noprelude base64-bytestring bytestring containers
- Diff directory doctemplates executable-path filepath Glob hslua mtl
- pandoc-types process QuickCheck tasty tasty-golden tasty-hunit
- tasty-lua tasty-quickcheck temporary text time xml zip-archive
- ];
- benchmarkHaskellDepends = [
- base-compat base-noprelude bytestring containers criterion mtl text
- time weigh
- ];
- postInstall = ''
- mkdir -p $out/share/man/man1
- mv "man/"*.1 $out/share/man/man1/
- '';
- description = "Conversion between markup formats";
- license = stdenv.lib.licenses.gpl2;
- maintainers = with stdenv.lib.maintainers; [ peti ];
- }) {};
-
- "pandoc_2_11_0_2" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base
, base64-bytestring, binary, blaze-html, blaze-markup, bytestring
, case-insensitive, citeproc, commonmark, commonmark-extensions
@@ -191720,8 +189694,8 @@ self: {
}:
mkDerivation {
pname = "pandoc";
- version = "2.11.0.2";
- sha256 = "0lnzypad3jfix7h78gk4fvyl0x3n7f77i8bn6dn2lzdsf6wasy8x";
+ version = "2.11.2";
+ sha256 = "10p2vmdjwgbzrbzrpsplbs67pycwz91aww4iz1rclw382xag42nb";
configureFlags = [ "-fhttps" "-f-trypandoc" ];
isLibrary = true;
isExecutable = true;
@@ -191755,7 +189729,6 @@ self: {
'';
description = "Conversion between markup formats";
license = stdenv.lib.licenses.gpl2Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
@@ -191769,43 +189742,6 @@ self: {
}:
mkDerivation {
pname = "pandoc-citeproc";
- version = "0.17.0.1";
- sha256 = "0hi31h4jxamnyw0jsbwnbzy9gkp3a03mhsgwy9w73hi13lywxrgk";
- revision = "1";
- editedCabalFile = "0z1gnaagylsjx8f1i49bp4zhcx2hlkc3w9wkwzsvvjq0qcfgzis0";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- setupHaskellDepends = [ base Cabal ];
- libraryHaskellDepends = [
- aeson base bytestring containers data-default directory filepath
- hs-bibutils HsYAML HsYAML-aeson mtl network old-locale pandoc
- pandoc-types parsec rfc5051 setenv split syb tagsoup text time
- unordered-containers vector xml-conduit yaml
- ];
- executableHaskellDepends = [
- aeson aeson-pretty attoparsec base bytestring filepath libyaml
- pandoc pandoc-types safe syb text yaml
- ];
- testHaskellDepends = [
- aeson base bytestring containers directory filepath mtl pandoc
- pandoc-types process temporary text yaml
- ];
- doCheck = false;
- description = "Supports using pandoc with citeproc";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pandoc-citeproc_0_17_0_2" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
- , Cabal, containers, data-default, directory, filepath, hs-bibutils
- , HsYAML, HsYAML-aeson, libyaml, mtl, network, old-locale, pandoc
- , pandoc-types, parsec, process, rfc5051, safe, setenv, split, syb
- , tagsoup, temporary, text, time, unordered-containers, vector
- , xml-conduit, yaml
- }:
- mkDerivation {
- pname = "pandoc-citeproc";
version = "0.17.0.2";
sha256 = "1wp16zz740klyn5jr8qxn21zf1waym3pzzv5l6k08w2l6z54d20b";
isLibrary = true;
@@ -191829,7 +189765,6 @@ self: {
doCheck = false;
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pandoc-citeproc-preamble" = callPackage
@@ -191858,8 +189793,10 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.3.8.3";
- sha256 = "0x6l3318g2x3q69drbnk2dkzn8l6c5m0msfnmwzbq6g6952gnsam";
+ version = "0.3.8.4";
+ sha256 = "098xp2n6rmg2vhaip8yyvrr534cllb1s6kj9p6r4iqqv4w3nc2sb";
+ revision = "1";
+ editedCabalFile = "1p1gkq4sgyxnfnna1avjmbw4ifrsmw920qhnaa4nkmbpgmccdca2";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -191883,6 +189820,8 @@ self: {
];
description = "Pandoc filter for cross-references";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pandoc-csv2table" = callPackage
@@ -191902,6 +189841,17 @@ self: {
broken = true;
}) {};
+ "pandoc-dhall-decoder" = callPackage
+ ({ mkDerivation, base, dhall, either, pandoc, text }:
+ mkDerivation {
+ pname = "pandoc-dhall-decoder";
+ version = "0.1.0.1";
+ sha256 = "032fx8fy134hysg10y5c57c7jkvq8lkc0q2r8ylc54qbfmvqd820";
+ libraryHaskellDepends = [ base dhall either pandoc text ];
+ description = "Decodes pandoc to dhall";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"pandoc-emphasize-code" = callPackage
({ mkDerivation, base, filepath, hashable, lucid, mtl, pandoc-types
, process, semigroups, tasty, tasty-discover, tasty-hspec
@@ -191925,8 +189875,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "A Pandoc filter for emphasizing code in fenced blocks";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pandoc-filter-graphviz" = callPackage
@@ -191950,6 +189898,35 @@ self: {
broken = true;
}) {};
+ "pandoc-filter-indent" = callPackage
+ ({ mkDerivation, base, blaze-html, blaze-markup
+ , ghc-syntax-highlighter, HaTeX, optics-core, optics-th
+ , pandoc-types, text
+ }:
+ mkDerivation {
+ pname = "pandoc-filter-indent";
+ version = "0.2.1.0";
+ sha256 = "1jc5a977490jfqnhvqzg5zqs22r10x094mfqd26ynqq9fx7pa580";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-html blaze-markup ghc-syntax-highlighter HaTeX
+ optics-core optics-th pandoc-types text
+ ];
+ executableHaskellDepends = [
+ base blaze-html blaze-markup ghc-syntax-highlighter HaTeX
+ optics-core optics-th pandoc-types text
+ ];
+ testHaskellDepends = [
+ base blaze-html blaze-markup ghc-syntax-highlighter HaTeX
+ optics-core optics-th pandoc-types text
+ ];
+ description = "Pandoc filter formatting Haskell code fragments using GHC lexer";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"pandoc-highlighting-extensions" = callPackage
({ mkDerivation, base, data-default-class, pandoc, skylighting-core
, skylighting-extensions, skylighting-modding, text
@@ -192124,46 +190101,6 @@ self: {
}) {};
"pandoc-plot" = callPackage
- ({ mkDerivation, async, base, bytestring, containers, criterion
- , data-default-class, deepseq, directory, filepath, githash
- , hashable, hspec, hspec-expectations, mtl, open-browser
- , optparse-applicative, pandoc, pandoc-types, shakespeare, tasty
- , tasty-hspec, tasty-hunit, template-haskell, temporary, text
- , turtle, typed-process, yaml
- }:
- mkDerivation {
- pname = "pandoc-plot";
- version = "0.6.1.0";
- sha256 = "0jyhb1ab6h990r159a3gdw0cbxxvjrjsd35yyca5bd5rqxzlvnay";
- revision = "1";
- editedCabalFile = "1kn5k6xrjs1gh273hc8zrp85w8g72g3rz79v5n4qk33n0pg6ydvw";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- async base bytestring containers data-default-class directory
- filepath hashable mtl pandoc pandoc-types shakespeare temporary
- text turtle typed-process yaml
- ];
- executableHaskellDepends = [
- base deepseq directory filepath githash open-browser
- optparse-applicative pandoc pandoc-types template-haskell temporary
- text
- ];
- testHaskellDepends = [
- base containers data-default-class directory filepath hspec
- hspec-expectations mtl pandoc-types tasty tasty-hspec tasty-hunit
- temporary text
- ];
- benchmarkHaskellDepends = [
- base criterion pandoc-types template-haskell text
- ];
- description = "A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice";
- license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "pandoc-plot_1_0_0_0" = callPackage
({ mkDerivation, base, bytestring, containers, criterion
, data-default, directory, filepath, githash, hashable, hspec
, hspec-expectations, lifted-async, lifted-base, mtl
@@ -192195,8 +190132,6 @@ self: {
];
description = "A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice";
license = stdenv.lib.licenses.gpl2Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pandoc-pyplot" = callPackage
@@ -192283,55 +190218,6 @@ self: {
}:
mkDerivation {
pname = "pandoc-types";
- version = "1.20";
- sha256 = "0wz89ywyhvxz8daw4ia132kg6ynx5y4wva4g899wvq4kyjy1dixa";
- revision = "1";
- editedCabalFile = "16l4gy0v34nrb6z3pag6i3gl6m4af5j6wg6yzyiga124xpqzhql3";
- libraryHaskellDepends = [
- aeson base bytestring containers deepseq ghc-prim QuickCheck syb
- text transformers
- ];
- testHaskellDepends = [
- aeson base bytestring containers HUnit QuickCheck string-qq syb
- test-framework test-framework-hunit test-framework-quickcheck2 text
- ];
- benchmarkHaskellDepends = [ base criterion text ];
- description = "Types for representing a structured document";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pandoc-types_1_21" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, criterion
- , deepseq, ghc-prim, HUnit, QuickCheck, string-qq, syb
- , test-framework, test-framework-hunit, test-framework-quickcheck2
- , text, transformers
- }:
- mkDerivation {
- pname = "pandoc-types";
- version = "1.21";
- sha256 = "1wbb0hhjiw0b66kj1ck3qipwgdac5v7qvjaqszsz5fll3cqp4sna";
- libraryHaskellDepends = [
- aeson base bytestring containers deepseq ghc-prim QuickCheck syb
- text transformers
- ];
- testHaskellDepends = [
- aeson base bytestring containers HUnit QuickCheck string-qq syb
- test-framework test-framework-hunit test-framework-quickcheck2 text
- ];
- benchmarkHaskellDepends = [ base criterion text ];
- description = "Types for representing a structured document";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "pandoc-types_1_22" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, criterion
- , deepseq, ghc-prim, HUnit, QuickCheck, string-qq, syb
- , test-framework, test-framework-hunit, test-framework-quickcheck2
- , text, transformers
- }:
- mkDerivation {
- pname = "pandoc-types";
version = "1.22";
sha256 = "0kr5n9yw59513pw2rjc65qs55iq0prn16prk4781arqdh7g7a09q";
libraryHaskellDepends = [
@@ -192345,7 +190231,6 @@ self: {
benchmarkHaskellDepends = [ base criterion text ];
description = "Types for representing a structured document";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pandoc-unlit" = callPackage
@@ -192404,8 +190289,8 @@ self: {
({ mkDerivation }:
mkDerivation {
pname = "pandora";
- version = "0.3.0";
- sha256 = "1k9b714rb9cgapn0vgwymrq7ma1lmq6klmlv37c6gqmb1c5k7ijh";
+ version = "0.3.2";
+ sha256 = "1dj07dnljy1b7m9sq5dlxvvl8rbla8cf129s2wcw24x31j3ga96b";
description = "A box of patterns and paradigms";
license = stdenv.lib.licenses.mit;
}) {};
@@ -192556,59 +190441,6 @@ self: {
broken = true;
}) {};
- "pantry_0_2_0_0" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans
- , base64-bytestring, bytestring, Cabal, conduit, conduit-extra
- , containers, contravariant, cryptonite, cryptonite-conduit
- , deepseq, digest, directory, exceptions, filelock, filepath
- , generic-deriving, ghc-prim, hackage-security, hashable, hedgehog
- , hpack, hspec, http-client, http-client-tls, http-conduit
- , http-download, http-types, integer-gmp, memory, mono-traversable
- , mtl, network, network-uri, path, path-io, persistent
- , persistent-sqlite, persistent-template, primitive, QuickCheck
- , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint
- , safe, syb, tar-conduit, template-haskell, text, text-metrics
- , th-lift, th-lift-instances, th-orphans, th-reify-many
- , th-utilities, time, transformers, unix-compat, unliftio
- , unordered-containers, vector, yaml, zip-archive
- }:
- mkDerivation {
- pname = "pantry";
- version = "0.2.0.0";
- sha256 = "1qp236maks70ah72wmv36fh3xc3di9c6sc2jd1k3f7ha5hcv9n4c";
- libraryHaskellDepends = [
- aeson ansi-terminal array base base-orphans base64-bytestring
- bytestring Cabal conduit conduit-extra containers contravariant
- cryptonite cryptonite-conduit deepseq digest directory filelock
- filepath generic-deriving ghc-prim hackage-security hashable hpack
- http-client http-client-tls http-conduit http-download http-types
- integer-gmp memory mono-traversable mtl network network-uri path
- path-io persistent persistent-sqlite persistent-template primitive
- resourcet rio rio-orphans rio-prettyprint safe syb tar-conduit
- template-haskell text text-metrics th-lift th-lift-instances
- th-orphans th-reify-many th-utilities time transformers unix-compat
- unliftio unordered-containers vector yaml zip-archive
- ];
- testHaskellDepends = [
- aeson ansi-terminal array base base-orphans base64-bytestring
- bytestring Cabal conduit conduit-extra containers contravariant
- cryptonite cryptonite-conduit deepseq digest directory exceptions
- filelock filepath generic-deriving ghc-prim hackage-security
- hashable hedgehog hpack hspec http-client http-client-tls
- http-conduit http-download http-types integer-gmp memory
- mono-traversable mtl network network-uri path path-io persistent
- persistent-sqlite persistent-template primitive QuickCheck
- raw-strings-qq resourcet rio rio-orphans rio-prettyprint safe syb
- tar-conduit template-haskell text text-metrics th-lift
- th-lift-instances th-orphans th-reify-many th-utilities time
- transformers unix-compat unliftio unordered-containers vector yaml
- zip-archive
- ];
- description = "Content addressable Haskell package management";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"pantry" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal
, casa-client, casa-types, conduit, conduit-extra, containers
@@ -192623,49 +190455,8 @@ self: {
}:
mkDerivation {
pname = "pantry";
- version = "0.4.0.2";
- sha256 = "13rrd64qn96r9w623lns4cngalc2c0p2z1xzc0wv35kr3psnxwb4";
- libraryHaskellDepends = [
- aeson ansi-terminal base bytestring Cabal casa-client casa-types
- conduit conduit-extra containers cryptonite cryptonite-conduit
- digest filelock generic-deriving hackage-security hpack http-client
- http-client-tls http-conduit http-download http-types memory mtl
- network-uri path path-io persistent persistent-sqlite
- persistent-template primitive resourcet rio rio-orphans
- rio-prettyprint tar-conduit text text-metrics time transformers
- unix-compat unliftio unordered-containers vector yaml zip-archive
- ];
- testHaskellDepends = [
- aeson ansi-terminal base bytestring Cabal casa-client casa-types
- conduit conduit-extra containers cryptonite cryptonite-conduit
- digest exceptions filelock generic-deriving hackage-security
- hedgehog hpack hspec http-client http-client-tls http-conduit
- http-download http-types memory mtl network-uri path path-io
- persistent persistent-sqlite persistent-template primitive
- QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint
- tar-conduit text text-metrics time transformers unix-compat
- unliftio unordered-containers vector yaml zip-archive
- ];
- description = "Content addressable Haskell package management";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pantry_0_5_1_3" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal
- , casa-client, casa-types, conduit, conduit-extra, containers
- , cryptonite, cryptonite-conduit, digest, exceptions, filelock
- , generic-deriving, hackage-security, hedgehog, hpack, hspec
- , http-client, http-client-tls, http-conduit, http-download
- , http-types, memory, mtl, network-uri, path, path-io, persistent
- , persistent-sqlite, persistent-template, primitive, QuickCheck
- , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint
- , tar-conduit, text, text-metrics, time, transformers, unix-compat
- , unliftio, unordered-containers, vector, yaml, zip-archive
- }:
- mkDerivation {
- pname = "pantry";
- version = "0.5.1.3";
- sha256 = "0yx30zhyq0wbda6z8a9lvp8c83b3nj4l2s8lcxnvwgnzkanvlkss";
+ version = "0.5.1.4";
+ sha256 = "1q66pxacjxc43gbmjjrvs99wcrzp8yya4gx35qhbb6hgkzwssqhb";
libraryHaskellDepends = [
aeson ansi-terminal base bytestring Cabal casa-client casa-types
conduit conduit-extra containers cryptonite cryptonite-conduit
@@ -192689,7 +190480,6 @@ self: {
];
description = "Content addressable Haskell package management";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pantry-tmp" = callPackage
@@ -193148,6 +190938,8 @@ self: {
];
description = "packrat parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pappy" = callPackage
@@ -193258,18 +191050,6 @@ self: {
broken = true;
}) {};
- "parallel_3_2_0_3" = callPackage
- ({ mkDerivation, array, base, containers, deepseq }:
- mkDerivation {
- pname = "parallel";
- version = "3.2.0.3";
- sha256 = "1kbdzdz9s8jq0xysqgvxx1zvzqlxgj1sk476mciwcn327kpl0fhn";
- libraryHaskellDepends = [ array base containers deepseq ];
- description = "Parallel programming library";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"parallel" = callPackage
({ mkDerivation, array, base, containers, deepseq, ghc-prim }:
mkDerivation {
@@ -193321,13 +191101,11 @@ self: {
({ mkDerivation, base, parallel, tree-monad }:
mkDerivation {
pname = "parallel-tree-search";
- version = "0.4.1";
- sha256 = "1x2k649q6gqz9z16vwg1j59ajf2wp59lfwb65g8819fz4rwimncr";
+ version = "0.4.2";
+ sha256 = "08r8xl3x5zvsy3d3ss9m9l7kb0dyp7hjrwxlnz7g2jl7p5x8rjbd";
libraryHaskellDepends = [ base parallel tree-monad ];
description = "Parallel Tree Search";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"parameterized" = callPackage
@@ -193387,8 +191165,8 @@ self: {
pname = "paramtree";
version = "0.1.1.1";
sha256 = "0ls9wzmz5lk7gyl8lx9cjs49zpwhrv955fs5q6ypv7bpbvjbchs1";
- revision = "2";
- editedCabalFile = "17wyi6q6azm2s04pm1alc183yp01a8qbvj1nymjxdzvrl2dkk2g6";
+ revision = "3";
+ editedCabalFile = "1nd342xk0sm9dlh5915b9kbksyd87wpji1mw8m8phm8d72prcxmi";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base bytestring tasty tasty-golden tasty-hunit temporary
@@ -193529,29 +191307,6 @@ self: {
}:
mkDerivation {
pname = "paripari";
- version = "0.6.0.1";
- sha256 = "1i82rwd2ysplqazqnarnshdrg8gjsbgh9kzn0mc4avl2lfi3pk16";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring parser-combinators text
- ];
- executableHaskellDepends = [
- base bytestring parser-combinators text
- ];
- testHaskellDepends = [
- base bytestring parser-combinators random tasty tasty-hunit text
- ];
- description = "Parser combinators with fast-path and slower fallback for error reporting";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "paripari_0_7_0_0" = callPackage
- ({ mkDerivation, base, bytestring, parser-combinators, random
- , tasty, tasty-hunit, text
- }:
- mkDerivation {
- pname = "paripari";
version = "0.7.0.0";
sha256 = "0c5vgnzgmqcrcsaw1l5fy0lh20ns22ych8ydkq7yzb8wr3y4nvr5";
isLibrary = true;
@@ -193567,7 +191322,6 @@ self: {
];
description = "Parser combinators with fast-path and slower fallback for error reporting";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parport" = callPackage
@@ -193847,8 +191601,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "Portable monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"parsec2" = callPackage
@@ -193917,13 +191669,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "parsek";
- version = "1.0.2.0";
- sha256 = "05hi14wn6pzhknahyvjkw4cg9qfy20krig2pkx00r4s095zmpqza";
+ version = "1.0.4.0";
+ sha256 = "090yhbbh2i5lwfwrfml0n54ziy8mz3mgmwnykr4ab06w1ylc2zh4";
libraryHaskellDepends = [ base ];
description = "Parallel Parsing Processes";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"parsely" = callPackage
@@ -194065,6 +191815,8 @@ self: {
];
description = "`parsers` instances for Megaparsec";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"parsestar" = callPackage
@@ -194235,8 +191987,6 @@ self: {
testHaskellDepends = [ base doctest hedgehog ];
description = "A partial binary associative operator";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"partial-semigroup-hedgehog" = callPackage
@@ -194248,8 +191998,6 @@ self: {
libraryHaskellDepends = [ base hedgehog partial-semigroup ];
description = "Property testing for partial semigroups using Hedgehog";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"partial-semigroup-test" = callPackage
@@ -194262,8 +192010,6 @@ self: {
doHaddock = false;
description = "Testing utilities for the partial-semigroup package";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"partial-uri" = callPackage
@@ -194542,15 +192288,15 @@ self: {
}:
mkDerivation {
pname = "patch";
- version = "0.0.3.1";
- sha256 = "1dkms6ngr01d4gvyjbl6z30b6qz4cnxnh0y7advrc9fib0237gnl";
+ version = "0.0.3.2";
+ sha256 = "1b819d1iramxb0sf0zm4ry8mrd74y35iffbb6qys3a2xq1d382xa";
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";
+ description = "Data structures for describing changes to other data structures";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -194715,10 +192461,8 @@ self: {
}:
mkDerivation {
pname = "path-io";
- version = "1.6.0";
- sha256 = "0hcdxxwkhdhm59p6x74k1fsgsrqfa100c83cslm1h9ln0anj1r3k";
- revision = "3";
- editedCabalFile = "0rd7svl3jxzqnf8l2h4f7xwlv8av67y85bwmr40954disq714l74";
+ version = "1.6.2";
+ sha256 = "11mrs0awd343far3rmcphdli65g737haxg7fwx3pl04fgdxfbpdq";
libraryHaskellDepends = [
base containers directory dlist exceptions filepath path temporary
time transformers unix-compat
@@ -194768,8 +192512,6 @@ self: {
];
description = "Read and write UTF-8 text files";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"path-utils" = callPackage
@@ -194874,20 +192616,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "patience_0_1_1" = callPackage
- ({ mkDerivation, base, containers }:
- mkDerivation {
- pname = "patience";
- version = "0.1.1";
- sha256 = "0qyv20gqy9pb1acy700ahv70lc6vprcwb26cc7fcpcs4scsc7irm";
- revision = "1";
- editedCabalFile = "0xj4hypjnhsn5jhs66l9wwhpkn5pbd8xmx7pgcy2ib08cz1087y7";
- libraryHaskellDepends = [ base containers ];
- description = "Patience diff and longest increasing subsequence";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"patience" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -194959,8 +192687,6 @@ self: {
];
description = "Pattern tries";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"patterns" = callPackage
@@ -195180,6 +192906,37 @@ self: {
broken = true;
}) {};
+ "pcapng" = callPackage
+ ({ mkDerivation, base, bytestring, bytestring-arbitrary, cereal
+ , cereal-conduit, conduit, conduit-extra, directory, filepath
+ , genvalidity-hspec, genvalidity-property, hspec, hspec-core, lens
+ , QuickCheck, resourcet, text, unliftio-core, validity
+ }:
+ mkDerivation {
+ pname = "pcapng";
+ version = "0.1.0.0";
+ sha256 = "1mvxl8fjsfs8xvm8v9nrqjidv52sgxqydgfnxh0bckhbzcc7gqaq";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring cereal cereal-conduit conduit conduit-extra lens
+ resourcet text unliftio-core
+ ];
+ executableHaskellDepends = [
+ base bytestring cereal cereal-conduit conduit conduit-extra lens
+ resourcet text unliftio-core
+ ];
+ testHaskellDepends = [
+ base bytestring bytestring-arbitrary cereal cereal-conduit conduit
+ conduit-extra directory filepath genvalidity-hspec
+ genvalidity-property hspec hspec-core lens QuickCheck resourcet
+ text unliftio-core validity
+ ];
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"pcd-loader" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring, deepseq
, directory, HUnit, lens, linear, mtl, string-qq, test-framework
@@ -195264,8 +193021,8 @@ self: {
}:
mkDerivation {
pname = "pcg-random";
- version = "0.1.3.6";
- sha256 = "1m8xnic207ajbpz0q81h7xr9xmp1dzm6474vyvack6iidbzi4l08";
+ version = "0.1.3.7";
+ sha256 = "1l6jq5nvmg1ygk7i7g50s47p6qkh74p9avl1wbcxdl5m85lc5j76";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base bytestring entropy primitive random
@@ -195593,8 +193350,8 @@ self: {
}:
mkDerivation {
pname = "pdftotext";
- version = "0.1.0.0";
- sha256 = "01zdcggm5p52j7bwimfhk5x5mjnbpz4iz8g5jq3lnnc3ddd0ab6y";
+ version = "0.1.0.1";
+ sha256 = "0nilgv9w6i59h99w89q0jimmximpwn62i22z67gi2834bhdaqmn7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring text ];
@@ -195728,6 +193485,8 @@ self: {
];
description = "An implementation of Pedersen commitment schemes";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pedestrian-dag" = callPackage
@@ -195799,6 +193558,8 @@ self: {
];
description = "Package to solve the Generalized Pell Equation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pem" = callPackage
@@ -195873,6 +193634,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Parser combinators for trees in the Penn Treebank format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"penny" = callPackage
@@ -196015,6 +193778,8 @@ self: {
];
description = "Percent encode/decode ByteStrings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"percent-format" = callPackage
@@ -196067,6 +193832,8 @@ self: {
benchmarkToolDepends = [ cpphs ];
description = "Find duplicate images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"perdure" = callPackage
@@ -196303,8 +194070,8 @@ self: {
}:
mkDerivation {
pname = "periodic-client";
- version = "1.1.7.1";
- sha256 = "0d9ngiq064fajiy2c4sddpgr93ia13iv83rdnvbk05x7agi0srjb";
+ version = "1.1.7.2";
+ sha256 = "0ldjxfq8p4spv4vgqjyklmcd8k3n2mrinma5w6k29d1wvyf5kxz5";
libraryHaskellDepends = [
base binary byteable bytestring hslogger metro metro-socket mtl
periodic-common resource-pool transformers unliftio
@@ -196391,6 +194158,8 @@ self: {
];
description = "Periodic task system haskell server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"perm" = callPackage
@@ -196558,60 +194327,51 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "persistent_2_7_3_1" = callPackage
+ "persistent" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
- , blaze-html, blaze-markup, bytestring, conduit, containers
- , exceptions, fast-logger, haskell-src-meta, hspec, http-api-data
- , lifted-base, monad-control, monad-logger, mtl, old-locale
- , path-pieces, resource-pool, resourcet, scientific, silently
- , tagged, template-haskell, text, time, transformers
- , transformers-base, unordered-containers, vector
+ , blaze-html, bytestring, conduit, containers, fast-logger, hspec
+ , http-api-data, monad-logger, mtl, path-pieces, resource-pool
+ , resourcet, scientific, silently, template-haskell, text, time
+ , transformers, unliftio, unliftio-core, unordered-containers
+ , vector
}:
mkDerivation {
pname = "persistent";
- version = "2.7.3.1";
- sha256 = "1jbvavdvr9qz5ld7vf6l1jgiadhmxx6zc4vqsdk9ivfq6d5wlg1p";
- revision = "2";
- editedCabalFile = "0yccajc9j8vih4slpm28dfz2ib1phalbvg7qci78d6vsz1jjilhp";
+ version = "2.10.5.3";
+ sha256 = "18d9x12v4zldyzjm35gxzlcljqrmgpr1501zwdayy1h6iy7lbfb8";
libraryHaskellDepends = [
- aeson attoparsec base base64-bytestring blaze-html blaze-markup
- bytestring conduit containers exceptions fast-logger
- haskell-src-meta http-api-data lifted-base monad-control
- monad-logger mtl old-locale path-pieces resource-pool resourcet
- scientific silently tagged template-haskell text time transformers
- transformers-base unordered-containers vector
+ aeson attoparsec base base64-bytestring blaze-html bytestring
+ conduit containers fast-logger http-api-data monad-logger mtl
+ path-pieces resource-pool resourcet scientific silently
+ template-haskell text time transformers unliftio unliftio-core
+ unordered-containers vector
];
testHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html bytestring
- conduit containers fast-logger hspec http-api-data lifted-base
- monad-control monad-logger mtl old-locale path-pieces resource-pool
- resourcet scientific tagged template-haskell text time transformers
- unordered-containers vector
+ containers hspec http-api-data path-pieces scientific text time
+ transformers unordered-containers vector
];
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent" = callPackage
+ "persistent_2_11_0_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, blaze-html, bytestring, conduit, containers, fast-logger, hspec
, http-api-data, monad-logger, mtl, path-pieces, resource-pool
- , resourcet, scientific, silently, template-haskell, text, time
- , transformers, unliftio, unliftio-core, unordered-containers
- , vector
+ , resourcet, scientific, silently, text, time, transformers
+ , unliftio, unliftio-core, unordered-containers, vector
}:
mkDerivation {
pname = "persistent";
- version = "2.10.5.2";
- sha256 = "1jlkgqr11bprfajadr9z7n0j1w741n8ns6w4fmm3x7prislgnqh1";
+ version = "2.11.0.1";
+ sha256 = "0nmgjk5jpsh7dxwyghvmnislxj8m77sdp9hg6anh7ba94xs7wcjv";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html bytestring
conduit containers fast-logger http-api-data monad-logger mtl
- path-pieces resource-pool resourcet scientific silently
- template-haskell text time transformers unliftio unliftio-core
- unordered-containers vector
+ path-pieces resource-pool resourcet scientific silently text time
+ transformers unliftio unliftio-core unordered-containers vector
];
testHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html bytestring
@@ -196620,6 +194380,7 @@ self: {
];
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
@@ -196694,8 +194455,8 @@ self: {
}:
mkDerivation {
pname = "persistent-documentation";
- version = "0.1.0.1";
- sha256 = "027fxb3ggzyxg2ykml7sdk2hycacd237161yr3w5cwi320b9ghyg";
+ version = "0.1.0.2";
+ sha256 = "0ys864vjzl97c9qv0gg5q9zviammrfvm0schvh7ckr9pdg062z17";
libraryHaskellDepends = [
base containers mtl persistent template-haskell text
];
@@ -196706,8 +194467,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Documentation DSL for persistent entities";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"persistent-equivalence" = callPackage
@@ -196769,16 +194528,14 @@ self: {
}:
mkDerivation {
pname = "persistent-iproute";
- version = "0.2.4";
- sha256 = "1lsprnlgcnj8v38cnbgf2vpj9ivgsvgi3yy3nh1gmvyj7maznkq5";
+ version = "0.2.5";
+ sha256 = "0x5vsincd2gll20agkrsgl8f092x7pc7b22fn5ardcm2fnyl2x8i";
libraryHaskellDepends = [
aeson aeson-iproute base bytestring http-api-data iproute
path-pieces persistent text
];
description = "Persistent instances for types in iproute";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"persistent-map" = callPackage
@@ -196835,10 +194592,8 @@ self: {
}:
mkDerivation {
pname = "persistent-mongoDB";
- version = "2.10.0.1";
- sha256 = "194cxlxyaxwzgm7a7q8530bh842s5s1vmq33pclldp78nfy1dczm";
- revision = "1";
- editedCabalFile = "084gdbb25qn2cw0qz20hksr9ypf401iwwx2kysibi0y4zxvpcy2z";
+ version = "2.11.0.0";
+ sha256 = "19szqr1f028hqhzigvb7sa6r2vm8q9pi5fhvx483ag0agcypmhhb";
libraryHaskellDepends = [
aeson base bson bytestring cereal conduit http-api-data mongoDB
network path-pieces persistent resource-pool resourcet text time
@@ -196882,6 +194637,33 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "persistent-mysql_2_10_3" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit
+ , containers, fast-logger, hspec, HUnit, monad-logger, mysql
+ , mysql-simple, persistent, persistent-qq, persistent-template
+ , persistent-test, QuickCheck, quickcheck-instances, resource-pool
+ , resourcet, text, time, transformers, unliftio-core
+ }:
+ mkDerivation {
+ pname = "persistent-mysql";
+ version = "2.10.3";
+ sha256 = "1da2vbkz55lngpi5ggndnnxv8gm9ckcv3gd3y8z47yh129b04csk";
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring conduit containers monad-logger
+ mysql mysql-simple persistent resource-pool resourcet text
+ transformers unliftio-core
+ ];
+ testHaskellDepends = [
+ base bytestring containers fast-logger hspec HUnit monad-logger
+ mysql persistent persistent-qq persistent-template persistent-test
+ QuickCheck quickcheck-instances resourcet text time transformers
+ unliftio-core
+ ];
+ description = "Backend for the persistent library using MySQL database server";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-mysql-haskell" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, fast-logger, hspec, HUnit, io-streams, monad-logger
@@ -196943,8 +194725,8 @@ self: {
}:
mkDerivation {
pname = "persistent-pagination";
- version = "0.1.1.1";
- sha256 = "03rxynxj2xx25l1zy42f06649m57blpx4inadb2a4dgz62zzyk5q";
+ version = "0.1.1.2";
+ sha256 = "16p89c4rjwak7slb7rmzn0qyap2vg3ayis8q3lkxl0k7a609pf5h";
libraryHaskellDepends = [
base conduit esqueleto foldl microlens mtl persistent
];
@@ -196981,6 +194763,8 @@ self: {
pname = "persistent-postgresql";
version = "2.10.1.2";
sha256 = "1q7n0h16argvpw2y3f8mxzmvy24q6if46ab9nvybviki283zbvlb";
+ revision = "1";
+ editedCabalFile = "0vzm2d9smg9zvskaz3dv7c90d14pb0as7qpnsnvswhh8vn0862g3";
libraryHaskellDepends = [
aeson base blaze-builder bytestring conduit containers monad-logger
persistent postgresql-libpq postgresql-simple resource-pool
@@ -196997,6 +194781,37 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "persistent-postgresql_2_11_0_0" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
+ , conduit, containers, fast-logger, hspec, hspec-expectations
+ , HUnit, monad-logger, mtl, persistent, persistent-qq
+ , persistent-template, persistent-test, postgresql-libpq
+ , postgresql-simple, QuickCheck, quickcheck-instances
+ , resource-pool, resourcet, string-conversions, text, time
+ , transformers, unliftio-core, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "persistent-postgresql";
+ version = "2.11.0.0";
+ sha256 = "12h72dj6zmk8m45m62syc3inwvqgb03whymi7wds0aklzn4j83b4";
+ libraryHaskellDepends = [
+ aeson attoparsec base blaze-builder bytestring conduit containers
+ monad-logger mtl persistent postgresql-libpq postgresql-simple
+ resource-pool resourcet string-conversions text time transformers
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers fast-logger hspec
+ hspec-expectations HUnit monad-logger persistent persistent-qq
+ persistent-template persistent-test QuickCheck quickcheck-instances
+ resourcet text time transformers unliftio-core unordered-containers
+ vector
+ ];
+ description = "Backend for the persistent library using postgresql";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-protobuf" = callPackage
({ mkDerivation, base, bytestring, persistent, protocol-buffers
, protocol-buffers-descriptor, template-haskell, text
@@ -197023,8 +194838,8 @@ self: {
}:
mkDerivation {
pname = "persistent-qq";
- version = "2.9.2";
- sha256 = "1nks3b420g447i3bvlpf3f41ry8jkfkl60m9yl48vyxgbpcjq523";
+ version = "2.9.2.1";
+ sha256 = "0gnwkrjyh9fkli35qp0mvivbsycz58ng26z6rfqv377hgrjsvjiq";
libraryHaskellDepends = [
base haskell-src-meta mtl persistent template-haskell text
];
@@ -197071,8 +194886,6 @@ self: {
];
description = "Backend for persistent library using Redis";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"persistent-refs" = callPackage
@@ -197133,38 +194946,41 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "persistent-sqlite_2_6_4" = callPackage
+ "persistent-sqlite" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
- , hspec, microlens-th, monad-control, monad-logger, old-locale
- , persistent, persistent-template, resource-pool, resourcet, sqlite
- , temporary, text, time, transformers, unordered-containers
+ , exceptions, fast-logger, hspec, HUnit, microlens-th, monad-logger
+ , persistent, persistent-template, persistent-test, QuickCheck
+ , resource-pool, resourcet, sqlite, system-fileio, system-filepath
+ , temporary, text, time, transformers, unliftio-core
+ , unordered-containers
}:
mkDerivation {
pname = "persistent-sqlite";
- version = "2.6.4";
- sha256 = "16mc2ra0hbyyc8ckjlxxc11bpskdymbr8c3g6ih6wzik639xprbm";
+ version = "2.10.6.2";
+ sha256 = "0l6287ni2ksi8l8kv6gbsyjxhjpcqn6a1gw577ii7fixbyvbpbnf";
revision = "1";
- editedCabalFile = "0ddqbj5j2m99a5xrvb31mcav4nh48y0jcazm1jj3z577gqv4lbdq";
+ editedCabalFile = "1kg5cikbw7mpdzwc1f1kfxwjq7q2raqdxsdq5rb65rk87wl3fih5";
configureFlags = [ "-fsystemlib" ];
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring conduit containers microlens-th monad-control
- monad-logger old-locale persistent resource-pool resourcet text
- time transformers unordered-containers
+ aeson base bytestring conduit containers microlens-th monad-logger
+ persistent resource-pool resourcet text time transformers
+ unliftio-core unordered-containers
];
librarySystemDepends = [ sqlite ];
testHaskellDepends = [
- base hspec persistent persistent-template temporary text time
- transformers
+ base bytestring containers exceptions fast-logger hspec HUnit
+ monad-logger persistent persistent-template persistent-test
+ QuickCheck resourcet system-fileio system-filepath temporary text
+ time transformers unliftio-core
];
description = "Backend for the persistent library using sqlite3";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {inherit (pkgs) sqlite;};
- "persistent-sqlite" = callPackage
+ "persistent-sqlite_2_11_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, exceptions, fast-logger, hspec, HUnit, microlens-th, monad-logger
, persistent, persistent-template, persistent-test, QuickCheck
@@ -197174,8 +194990,8 @@ self: {
}:
mkDerivation {
pname = "persistent-sqlite";
- version = "2.10.6.2";
- sha256 = "0l6287ni2ksi8l8kv6gbsyjxhjpcqn6a1gw577ii7fixbyvbpbnf";
+ version = "2.11.0.0";
+ sha256 = "1kfijsn00brqm42ypaa66bmwq41r9n6h66r6jmgldhzpcbv46sfv";
configureFlags = [ "-fsystemlib" ];
isLibrary = true;
isExecutable = true;
@@ -197193,6 +195009,7 @@ self: {
];
description = "Backend for the persistent library using sqlite3";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {inherit (pkgs) sqlite;};
@@ -197207,8 +195024,8 @@ self: {
pname = "persistent-template";
version = "2.8.2.3";
sha256 = "1y96aj5i3c1j2ls6980l8lfjj9b3vfmp3766xk5af1870vj1s1lf";
- revision = "1";
- editedCabalFile = "0ilgcn3k72b2zm53yy4na4y0f8xfrlw6s5w3xhhavg6blyw971j7";
+ revision = "2";
+ editedCabalFile = "0n0zr4fxzrgdbgl26mikfl9hyn0269isblrr9rj3i045p96a0y5s";
libraryHaskellDepends = [
aeson base bytestring containers http-api-data monad-control
monad-logger path-pieces persistent template-haskell text
@@ -197226,7 +195043,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-template_2_9" = callPackage
+ "persistent-template_2_9_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
, deepseq, deepseq-generics, file-embed, hspec, http-api-data
, monad-control, monad-logger, path-pieces, persistent, QuickCheck
@@ -197235,8 +195052,8 @@ self: {
}:
mkDerivation {
pname = "persistent-template";
- version = "2.9";
- sha256 = "181ag017wj41pzlc954mcx7s7v1dnqgjnry03hly8zln4iii63yw";
+ version = "2.9.1.0";
+ sha256 = "19ilgz8r6p5wy111rb4v0d6cnrj8jfiv2pnzdynpxd9ay66vgbca";
libraryHaskellDepends = [
aeson base bytestring containers http-api-data monad-control
monad-logger path-pieces persistent template-haskell text
@@ -197280,29 +195097,6 @@ self: {
"persistent-test" = callPackage
({ mkDerivation, aeson, base, blaze-html, bytestring, conduit
, containers, exceptions, hspec, hspec-expectations, HUnit
- , monad-control, monad-logger, path-pieces, persistent
- , persistent-template, QuickCheck, quickcheck-instances, random
- , resourcet, text, time, transformers, transformers-base, unliftio
- , unliftio-core, unordered-containers
- }:
- mkDerivation {
- pname = "persistent-test";
- version = "2.0.3.1";
- sha256 = "11aq5cy0n43jamf6mg4sr4300bc2zdbjxsczzxwjkb4hzs0ijsdv";
- libraryHaskellDepends = [
- aeson base blaze-html bytestring conduit containers exceptions
- hspec hspec-expectations HUnit monad-control monad-logger
- path-pieces persistent persistent-template QuickCheck
- quickcheck-instances random resourcet text time transformers
- transformers-base unliftio unliftio-core unordered-containers
- ];
- description = "Tests for Persistent";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "persistent-test_2_0_3_2" = callPackage
- ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit
- , containers, exceptions, hspec, hspec-expectations, HUnit
, monad-control, monad-logger, mtl, path-pieces, persistent
, persistent-template, QuickCheck, quickcheck-instances, random
, resourcet, text, time, transformers, transformers-base, unliftio
@@ -197310,8 +195104,8 @@ self: {
}:
mkDerivation {
pname = "persistent-test";
- version = "2.0.3.2";
- sha256 = "0d7a6m4qm6xzyv7h2fqn9hgv7r7q6dwh7x04ddsrygjxdgpwgqf3";
+ version = "2.0.3.5";
+ sha256 = "16m3nlmpwxibfhgrfl3xqh3a518bkrd7qaa8hklfq2qwlvjbb31v";
libraryHaskellDepends = [
aeson base blaze-html bytestring conduit containers exceptions
hspec hspec-expectations HUnit monad-control monad-logger mtl
@@ -197322,6 +195116,7 @@ self: {
description = "Tests for Persistent";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"persistent-typed-db" = callPackage
@@ -197334,6 +195129,8 @@ self: {
pname = "persistent-typed-db";
version = "0.1.0.1";
sha256 = "07yjzxg5yfxv1zbp5pkrvj8nrsxyhy4n11zgmd0q9g186q6283qn";
+ revision = "1";
+ editedCabalFile = "15qqrxjg00xvn9ffdj0yk3zxw5snn91379zzhzzv3kd9w1b25zg0";
libraryHaskellDepends = [
aeson base bytestring conduit http-api-data monad-logger
path-pieces persistent persistent-template resource-pool resourcet
@@ -197348,15 +195145,40 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "persistent-typed-db_0_1_0_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, esqueleto, hspec
+ , http-api-data, monad-logger, path-pieces, persistent
+ , persistent-template, resource-pool, resourcet, template-haskell
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "persistent-typed-db";
+ version = "0.1.0.2";
+ sha256 = "1pdhdb29b7gyaw3kh1vr76dyr7gvwpx9ymib17fzfsxks6s76dxc";
+ libraryHaskellDepends = [
+ aeson base bytestring conduit http-api-data monad-logger
+ path-pieces persistent persistent-template resource-pool resourcet
+ template-haskell text transformers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring conduit esqueleto hspec http-api-data
+ monad-logger path-pieces persistent persistent-template
+ resource-pool resourcet template-haskell text transformers
+ ];
+ description = "Type safe access to multiple database schemata";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-vector" = callPackage
({ mkDerivation, base, containers, criterion, deepseq, QuickCheck
- , test-framework, test-framework-quickcheck2
+ , test-framework, test-framework-quickcheck2, transformers
}:
mkDerivation {
pname = "persistent-vector";
- version = "0.1.1";
- sha256 = "1l5v02pjb24gk4hw28knjp55l7z6jzcfiklfikd2nqbl7866c2j2";
- libraryHaskellDepends = [ base deepseq ];
+ version = "0.2.0";
+ sha256 = "07fxfmkgjszssagj4miw1sx9vi782hwsf6gay7z6mb96mygbld5y";
+ libraryHaskellDepends = [ base deepseq transformers ];
testHaskellDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
@@ -197520,6 +195342,24 @@ self: {
broken = true;
}) {};
+ "pg-extras" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, postgresql-simple
+ , raw-strings-qq, text, time
+ }:
+ mkDerivation {
+ pname = "pg-extras";
+ version = "0.0.1";
+ sha256 = "00vakhrq42y9zdib0qhwm8af2vs3ghhfwjmydipdhsimlk1xzlfg";
+ libraryHaskellDepends = [
+ base bytestring postgresql-simple raw-strings-qq text time
+ ];
+ testHaskellDepends = [ base HUnit text ];
+ description = "PostgreSQL database performance insights";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"pg-harness" = callPackage
({ mkDerivation, async, base, bytestring, HTTP, ini
, postgresql-simple, random, scotty, text, transformers
@@ -197569,6 +195409,8 @@ self: {
];
description = "REST service for creating temporary PostgreSQL databases";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pg-recorder" = callPackage
@@ -197947,28 +195789,235 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "phonetic-languages-common" = callPackage
+ ({ mkDerivation, base, subG, subG-instances, vector }:
+ mkDerivation {
+ pname = "phonetic-languages-common";
+ version = "0.1.2.0";
+ sha256 = "16m215rydybgn7wi5g3lh694z8zja2yr7b5p1rn33vgph2h5i8v7";
+ libraryHaskellDepends = [ base subG subG-instances vector ];
+ description = "A generalization of the uniqueness-periods-vector-common package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-constaints" = callPackage
+ ({ mkDerivation, base, vector }:
+ mkDerivation {
+ pname = "phonetic-languages-constaints";
+ version = "0.3.0.0";
+ sha256 = "17n4m9zbl1h6g76wxrqxc3wwcd0m5qjmbiakvmvbcdv7nffc8xyh";
+ libraryHaskellDepends = [ base vector ];
+ description = "Constraints to filter the needed permutations";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-constraints" = callPackage
+ ({ mkDerivation, base, subG, subG-instances, vector }:
+ mkDerivation {
+ pname = "phonetic-languages-constraints";
+ version = "0.4.0.0";
+ sha256 = "11m389rpz7ddvmkf5wrasc41kmy67fki234fjcgi1djk8iawp5pw";
+ libraryHaskellDepends = [ base subG subG-instances vector ];
+ description = "Constraints to filter the needed permutations";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-examples" = callPackage
+ ({ mkDerivation, base, mmsyn2, parallel, phonetic-languages-common
+ , phonetic-languages-constraints, phonetic-languages-general
+ , phonetic-languages-plus, phonetic-languages-properties
+ , phonetic-languages-rhythmicity, phonetic-languages-ukrainian
+ , phonetic-languages-vector, print-info, subG
+ , ukrainian-phonetics-basic, uniqueness-periods-vector-filters
+ , uniqueness-periods-vector-stats, vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-examples";
+ version = "0.6.2.1";
+ sha256 = "0k9cwvfdxf13izbww7g08p0x702xgmm7dck3mjk4maajjfia34zm";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base mmsyn2 phonetic-languages-common
+ phonetic-languages-constraints phonetic-languages-properties
+ phonetic-languages-vector vector
+ ];
+ executableHaskellDepends = [
+ base mmsyn2 parallel phonetic-languages-common
+ phonetic-languages-constraints phonetic-languages-general
+ phonetic-languages-plus phonetic-languages-properties
+ phonetic-languages-rhythmicity phonetic-languages-ukrainian
+ phonetic-languages-vector print-info subG ukrainian-phonetics-basic
+ uniqueness-periods-vector-filters uniqueness-periods-vector-stats
+ vector
+ ];
+ description = "A generalization of the uniqueness-periods-vector-examples functionality";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-general" = callPackage
+ ({ mkDerivation, base, phonetic-languages-common
+ , phonetic-languages-plus, print-info, subG, vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-general";
+ version = "0.3.0.1";
+ sha256 = "1b99xf5glwdas2s8wsdgpwnzg5gmybdp6c3q547mi5xd7w6flh99";
+ libraryHaskellDepends = [
+ base phonetic-languages-common phonetic-languages-plus print-info
+ subG vector
+ ];
+ description = "A generalization of the uniqueness-periods-vector-general functionality";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-permutations" = callPackage
+ ({ mkDerivation, base, subG, subG-instances, vector }:
+ mkDerivation {
+ pname = "phonetic-languages-permutations";
+ version = "0.2.0.0";
+ sha256 = "1y6izwnlphy528y6j4qg97pzi4nkw7j8vnlp63brnil9wd5765wa";
+ libraryHaskellDepends = [ base subG subG-instances vector ];
+ description = "Commonly used versions of the phonetic-languages-common package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-plus" = callPackage
+ ({ mkDerivation, base, bytestring, lists-flines, parallel
+ , uniqueness-periods-vector-stats
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-plus";
+ version = "0.1.0.0";
+ sha256 = "1yzqrqkikkx6ii1n7zs5vf1k5m26v8bj8m0h43zmxb1j30klh2ir";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base lists-flines ];
+ executableHaskellDepends = [
+ base bytestring lists-flines parallel
+ uniqueness-periods-vector-stats
+ ];
+ description = "Some common shared between different packages functions";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-properties" = callPackage
+ ({ mkDerivation, base, phonetic-languages-common
+ , phonetic-languages-rhythmicity, phonetic-languages-vector
+ , ukrainian-phonetics-basic, vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-properties";
+ version = "0.3.0.1";
+ sha256 = "0b3wnzlka9dapk1478jr35pnd3ykj3mn5nkhvmwjdsxigzzaa1wf";
+ libraryHaskellDepends = [
+ base phonetic-languages-common phonetic-languages-rhythmicity
+ phonetic-languages-vector ukrainian-phonetics-basic vector
+ ];
+ description = "A generalization of the uniqueness-periods-vector-properties package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"phonetic-languages-rhythmicity" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "phonetic-languages-rhythmicity";
- version = "0.1.0.1";
- sha256 = "1qrypqbc9fhnscgxiqr79l25pgphj6wnaw8g4vqpzn3cgw9v70s4";
+ version = "0.1.2.0";
+ sha256 = "1ljblyk0m1fs3n2gj72w6gs62dxjk5gsn8x6p7fwlwhvaa316wm3";
libraryHaskellDepends = [ base ];
description = "Allows to estimate the rhythmicity metrices for the text (usually, the Ukrainian poetic one)";
license = stdenv.lib.licenses.mit;
}) {};
+ "phonetic-languages-simplified-common" = callPackage
+ ({ mkDerivation, base, phonetic-languages-permutations, subG
+ , subG-instances, vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-simplified-common";
+ version = "0.3.4.0";
+ sha256 = "1cf2k35jljcbyzyfz85nsxjzh5wdiipm9sa558gky26yz1h3n54x";
+ libraryHaskellDepends = [
+ base phonetic-languages-permutations subG subG-instances vector
+ ];
+ description = "A simplified version of the phonetic-languages-functionality";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-simplified-lists-examples" = callPackage
+ ({ mkDerivation, base, heaps, mmsyn2, parallel
+ , phonetic-languages-constraints, phonetic-languages-permutations
+ , phonetic-languages-plus, phonetic-languages-rhythmicity
+ , phonetic-languages-simplified-common
+ , phonetic-languages-simplified-properties-lists
+ , phonetic-languages-ukrainian, print-info, subG
+ , ukrainian-phonetics-basic, uniqueness-periods-vector-filters
+ , uniqueness-periods-vector-stats, vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-simplified-lists-examples";
+ version = "0.4.0.0";
+ sha256 = "18n45cz6x8lh8pphnipp24xjjf8j5h6kskmkr6x4l5y5qi13ld4x";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base heaps mmsyn2 phonetic-languages-constraints
+ phonetic-languages-simplified-common
+ phonetic-languages-simplified-properties-lists vector
+ ];
+ executableHaskellDepends = [
+ base heaps mmsyn2 parallel phonetic-languages-constraints
+ phonetic-languages-permutations phonetic-languages-plus
+ phonetic-languages-rhythmicity phonetic-languages-simplified-common
+ phonetic-languages-simplified-properties-lists
+ phonetic-languages-ukrainian print-info subG
+ ukrainian-phonetics-basic uniqueness-periods-vector-filters
+ uniqueness-periods-vector-stats vector
+ ];
+ description = "Simplified and somewhat optimized version of the phonetic-languages-examples";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "phonetic-languages-simplified-properties-lists" = callPackage
+ ({ mkDerivation, base, phonetic-languages-rhythmicity
+ , phonetic-languages-simplified-common, ukrainian-phonetics-basic
+ , vector
+ }:
+ mkDerivation {
+ pname = "phonetic-languages-simplified-properties-lists";
+ version = "0.3.0.0";
+ sha256 = "094fyljkvfi2snj41j00xqflhabnsp5hn50xp6dvmpcr12k6nvs0";
+ libraryHaskellDepends = [
+ base phonetic-languages-rhythmicity
+ phonetic-languages-simplified-common ukrainian-phonetics-basic
+ vector
+ ];
+ description = "A generalization of the uniqueness-periods-vector-properties package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"phonetic-languages-ukrainian" = callPackage
({ mkDerivation, base, mmsyn2, mmsyn5, vector }:
mkDerivation {
pname = "phonetic-languages-ukrainian";
- version = "0.2.3.0";
- sha256 = "0dn81mzqjp7fj5cvv0w1lp72mla5hqzdrbsk0ad22wz43hpvrl1l";
+ version = "0.3.0.0";
+ sha256 = "1z9frcwvy9njq1flk3hd2n4z8l4ad7f248w8h1pgjl1fbz6fv9dc";
libraryHaskellDepends = [ base mmsyn2 mmsyn5 vector ];
description = "Prepares Ukrainian text to be used as a phonetic language text";
license = stdenv.lib.licenses.mit;
}) {};
+ "phonetic-languages-vector" = callPackage
+ ({ mkDerivation, base, vector }:
+ mkDerivation {
+ pname = "phonetic-languages-vector";
+ version = "0.1.0.0";
+ sha256 = "12mhmrfpdkxl00yfvy5jc74c7xnrj10pcydnn3xdhzj0fvp1zrll";
+ libraryHaskellDepends = [ base vector ];
+ description = "A generalization of the functionality of the uniqueness-periods-vector package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"phooey" = callPackage
({ mkDerivation, array, base, mtl, reactive, TypeCompose, wx
, wxcore
@@ -198557,8 +196606,6 @@ self: {
];
description = "Functional 2D Game Framework";
license = stdenv.lib.licenses.zlib;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ping" = callPackage
@@ -198933,8 +196980,6 @@ self: {
benchmarkHaskellDepends = [ base ];
description = "Streaming compression/decompression via pipes";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) bzip2;};
"pipes-cacophony" = callPackage
@@ -199337,8 +197382,6 @@ self: {
libraryHaskellDepends = [ base containers heaps pipes ];
description = "Interleave and merge streams of elements";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pipes-io" = callPackage
@@ -199432,8 +197475,6 @@ self: {
];
description = "LZMA compressors and decompressors for the Pipes package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pipes-misc" = callPackage
@@ -199738,8 +197779,6 @@ self: {
];
description = "properly streaming text";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pipes-transduce" = callPackage
@@ -200250,6 +198289,8 @@ self: {
];
description = "Token Introspection for PlanB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"planet-mitchell" = callPackage
@@ -200380,25 +198421,23 @@ self: {
}) {};
"playlists" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, doctest, filepath
- , hspec, optparse-applicative, text, word8
+ ({ mkDerivation, attoparsec, base, bytestring, filepath, hspec
+ , optparse-applicative, text, word8
}:
mkDerivation {
pname = "playlists";
- version = "0.5.0.0";
- sha256 = "0653aifikinz69wq3d6sfkchcchhwlndh1lf40qrk96941qss0d6";
- revision = "1";
- editedCabalFile = "19vwlvva12p4r3ch1ik7m6h5r7cy0f35qn8smd41pv47v29dsxiq";
+ version = "0.5.1";
+ sha256 = "1hrxmp33pzmvpg9j102hjradnlq261hs9amqkivqjfn9y4pb8inm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
attoparsec base bytestring filepath text word8
];
executableHaskellDepends = [
- base bytestring optparse-applicative text
+ attoparsec base bytestring filepath optparse-applicative text word8
];
testHaskellDepends = [
- base bytestring doctest filepath hspec text
+ attoparsec base bytestring filepath hspec text word8
];
description = "Library and executable for working with playlist files";
license = stdenv.lib.licenses.bsd3;
@@ -200438,8 +198477,6 @@ self: {
];
description = "run a subprocess, combining stdout and stderr";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"plist" = callPackage
@@ -200529,8 +198566,6 @@ self: {
];
description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"plot-gtk" = callPackage
@@ -200798,6 +198833,8 @@ self: {
libraryHaskellDepends = [ base template-haskell ];
description = "Pointless plumbing combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"plur" = callPackage
@@ -201168,6 +199205,39 @@ self: {
broken = true;
}) {};
+ "poke" = callPackage
+ ({ mkDerivation, base, calamity, dhall, di, di-polysemy
+ , generic-lens, hspec, hspec-megaparsec, megaparsec, polysemy
+ , polysemy-plugin, text, text-show, unboxing-vector
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "poke";
+ version = "0.0.0.1";
+ sha256 = "0y63j8pv482f92nmk2x7f8kfkvrqbq9bz2vi9br6hpk4612vas4c";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ testHaskellDepends = [
+ base calamity dhall di di-polysemy generic-lens hspec
+ hspec-megaparsec megaparsec polysemy polysemy-plugin text text-show
+ unboxing-vector unordered-containers vector
+ ];
+ description = "Discord verification bot";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"pokemon-go-protobuf-types" = callPackage
({ mkDerivation, base, bytestring, containers, data-default-class
, lens-family, proto-lens, text
@@ -201326,27 +199396,6 @@ self: {
}) {};
"poly" = callPackage
- ({ mkDerivation, base, deepseq, gauge, mod, primitive, QuickCheck
- , quickcheck-classes, semirings, tasty, tasty-quickcheck, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "poly";
- version = "0.4.0.0";
- sha256 = "14fqwzpivk5ic06ip5b2axvmzyrfqsba8iq4mdl70k6icv7nc8jr";
- libraryHaskellDepends = [
- base deepseq primitive semirings vector vector-algorithms
- ];
- testHaskellDepends = [
- base mod QuickCheck quickcheck-classes semirings tasty
- tasty-quickcheck vector
- ];
- benchmarkHaskellDepends = [ base deepseq gauge semirings vector ];
- description = "Polynomials";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "poly_0_5_0_0" = callPackage
({ mkDerivation, base, deepseq, doctest, finite-typelits, gauge
, mod, primitive, QuickCheck, quickcheck-classes, semirings, tasty
, tasty-quickcheck, vector, vector-algorithms, vector-sized
@@ -201368,7 +199417,6 @@ self: {
];
description = "Polynomials";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"poly-arity" = callPackage
@@ -201391,6 +199439,8 @@ self: {
libraryHaskellDepends = [ base mtl transformers ];
description = "Poly-kinded continuations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"poly-control" = callPackage
@@ -201553,10 +199603,8 @@ self: {
}:
mkDerivation {
pname = "polysemy";
- version = "1.3.0.0";
- sha256 = "0p5g1n5b0dfkadqpqf2ka25dblimwqhxwx5ax0mxwixb0jwd0pvb";
- revision = "2";
- editedCabalFile = "1dn5897ggd6rf5ffl6k52x4ghncgv2ls14nppayw9l9zi1mfjxps";
+ version = "1.4.0.0";
+ sha256 = "1zbfx3l390kqxq45lb1wms72cxckwh3sl7vk52q68d0l7j5cvn8n";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
async base containers first-class-families mtl QuickCheck stm syb
@@ -201575,7 +199623,7 @@ self: {
freer-simple mtl QuickCheck stm syb template-haskell th-abstraction
transformers type-errors type-errors-pretty unagi-chan
];
- description = "Higher-order, low-boilerplate, zero-cost free monads";
+ description = "Higher-order, low-boilerplate free monads";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -201625,6 +199673,51 @@ self: {
broken = true;
}) {};
+ "polysemy-extra" = callPackage
+ ({ mkDerivation, base, containers, exceptions, extra, polysemy
+ , polysemy-zoo
+ }:
+ mkDerivation {
+ pname = "polysemy-extra";
+ version = "0.1.7.0";
+ sha256 = "1cr4gmsxf07754gz1jlv8jr7a4zgs9w5v3s8g8hz1lhps090cdf4";
+ libraryHaskellDepends = [
+ base containers exceptions extra polysemy polysemy-zoo
+ ];
+ description = "Extra Input and Output functions for polysemy..";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "polysemy-fs" = callPackage
+ ({ mkDerivation, base, bytestring, path, polysemy, rio, temporary
+ , text, unliftio-path
+ }:
+ mkDerivation {
+ pname = "polysemy-fs";
+ version = "0.1.0.0";
+ sha256 = "16lf6a5ypf5injdl8aljrnrdrfz21b0rhcmypx5ngvw1k2mgh6zl";
+ libraryHaskellDepends = [
+ base bytestring path polysemy rio temporary text unliftio-path
+ ];
+ description = "Low level filesystem operations for polysemy";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "polysemy-fskvstore" = callPackage
+ ({ mkDerivation, base, bytestring, path, polysemy, polysemy-zoo
+ , rio, unliftio-path
+ }:
+ mkDerivation {
+ pname = "polysemy-fskvstore";
+ version = "0.1.0.0";
+ sha256 = "1hg552w21hgq5jvcbrw1kn1870xdyf44a3xqd87nrj9s9k2j4pk2";
+ libraryHaskellDepends = [
+ base bytestring path polysemy polysemy-zoo rio unliftio-path
+ ];
+ description = "Run a KVStore as a filesystem in polysemy";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"polysemy-http" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring
, case-insensitive, co-log-core, co-log-polysemy, composition
@@ -201659,6 +199752,57 @@ self: {
broken = true;
}) {};
+ "polysemy-kvstore-jsonfile" = callPackage
+ ({ mkDerivation, aeson, base, containers, exceptions, extra, path
+ , polysemy, polysemy-zoo, unliftio-path
+ }:
+ mkDerivation {
+ pname = "polysemy-kvstore-jsonfile";
+ version = "0.1.0.0";
+ sha256 = "1lbjq1hlq6cf6px5f6zqi04sl0yz0rpyq2m2y16zknjz3wi7zqvi";
+ libraryHaskellDepends = [
+ aeson base containers exceptions extra path polysemy polysemy-zoo
+ unliftio-path
+ ];
+ description = "Run a KVStore as a single json file in polysemy";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "polysemy-methodology" = callPackage
+ ({ mkDerivation, base, co-log-polysemy, polysemy, polysemy-plugin
+ , polysemy-zoo
+ }:
+ mkDerivation {
+ pname = "polysemy-methodology";
+ version = "0.1.7.0";
+ sha256 = "1qb2rj2fc7vaf9i0lm9gqzkfy5a8zmsq9ibvhmc4457yd3k7cfcg";
+ libraryHaskellDepends = [
+ base co-log-polysemy polysemy polysemy-plugin polysemy-zoo
+ ];
+ description = "Domain modelling algebra for polysemy";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "polysemy-methodology-composite" = callPackage
+ ({ mkDerivation, base, composite-base, polysemy, polysemy-extra
+ , polysemy-methodology, polysemy-vinyl, vinyl
+ }:
+ mkDerivation {
+ pname = "polysemy-methodology-composite";
+ version = "0.1.4.0";
+ sha256 = "014kfaxxi24n99gvrvf9c6c8cx8csbb9a8fbfb2md5g2d2q4v08g";
+ libraryHaskellDepends = [
+ base composite-base polysemy polysemy-extra polysemy-methodology
+ polysemy-vinyl vinyl
+ ];
+ description = "Functions for using polysemy-methodology with composite";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"polysemy-optics" = callPackage
({ mkDerivation, base, optics, polysemy, polysemy-zoo }:
mkDerivation {
@@ -201672,6 +199816,23 @@ self: {
broken = true;
}) {};
+ "polysemy-path" = callPackage
+ ({ mkDerivation, base, path, polysemy, polysemy-extra
+ , polysemy-plugin
+ }:
+ mkDerivation {
+ pname = "polysemy-path";
+ version = "0.2.0.0";
+ sha256 = "0p5ylp8758zkhlgqrhq6v6fli03q9gmak7bzkw1czrxwdshkv0gi";
+ libraryHaskellDepends = [
+ base path polysemy polysemy-extra polysemy-plugin
+ ];
+ description = "Polysemy versions of Path functions";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"polysemy-plugin" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, containers, doctest
, ghc, ghc-tcplugins-extra, hspec, hspec-discover
@@ -201680,8 +199841,8 @@ self: {
}:
mkDerivation {
pname = "polysemy-plugin";
- version = "0.2.5.1";
- sha256 = "14iz5p5g57ki9lbjyy8i3lx7xk2qmrc8dqkd94jrbilsvn4m5gf3";
+ version = "0.2.5.2";
+ sha256 = "13qfbgwn187vgdqs2rkl5lhcfbaw992qnlpz90pr9nw64k2ylcmp";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base containers ghc ghc-tcplugins-extra polysemy syb transformers
@@ -201701,8 +199862,8 @@ self: {
}:
mkDerivation {
pname = "polysemy-resume";
- version = "0.1.0.0";
- sha256 = "1zpnwrhpb89kg5r3qxbyshpz8sgrfx7p8y0cix3xb70gcb8kf6jj";
+ version = "0.1.0.1";
+ sha256 = "1pgirh7sz1lx45pkss1a4w7xgy7gcxmm7i2vz9hf0z7qdj9wfn8i";
libraryHaskellDepends = [
base polysemy polysemy-plugin relude transformers
];
@@ -201719,21 +199880,21 @@ self: {
"polysemy-test" = callPackage
({ mkDerivation, base, containers, either, hedgehog, path, path-io
, polysemy, polysemy-plugin, relude, string-interpolate, tasty
- , tasty-hedgehog, text, transformers
+ , tasty-hedgehog, template-haskell, text, transformers
}:
mkDerivation {
pname = "polysemy-test";
- version = "0.3.0.1";
- sha256 = "0xy5ax03qy7936jxhbx3wi341z8r00bmjifha83izgi664hzb5fs";
+ version = "0.3.0.2";
+ sha256 = "16xkg6iwb7ms3k7mbrwa152izgs520x6jvc5bwp9pl0mk70qx3nw";
libraryHaskellDepends = [
base containers either hedgehog path path-io polysemy
- polysemy-plugin relude string-interpolate tasty tasty-hedgehog text
- transformers
+ polysemy-plugin relude string-interpolate tasty tasty-hedgehog
+ template-haskell text transformers
];
testHaskellDepends = [
base containers either hedgehog path path-io polysemy
- polysemy-plugin relude string-interpolate tasty tasty-hedgehog text
- transformers
+ polysemy-plugin relude string-interpolate tasty tasty-hedgehog
+ template-haskell text transformers
];
description = "Polysemy effects for testing";
license = "BSD-2-Clause-Patent";
@@ -201749,8 +199910,8 @@ self: {
}:
mkDerivation {
pname = "polysemy-time";
- version = "0.1.0.0";
- sha256 = "1sdi8a2swqy8d2bmkmd2zxr968bzmkz4q07b2qw7840sq8q4bp6f";
+ version = "0.1.1.0";
+ sha256 = "1az7mf2jvd0vhsjpswa37rxrj760n5n3vhxpb4rlx28g8nx2jmkj";
libraryHaskellDepends = [
aeson base composition containers data-default either polysemy
relude string-interpolate template-haskell text time torsor
@@ -201772,14 +199933,25 @@ self: {
}:
mkDerivation {
pname = "polysemy-video";
- version = "0.1.0.1";
- sha256 = "0gpq4105lw24ddp7i4hqc9dnhn9pph4s3p37idfhrmkbyf52y8k8";
+ version = "0.1.2.0";
+ sha256 = "1q6acrcxin32ykhzrmd562xb45d972c37sqydh9mz1xp49764fy9";
libraryHaskellDepends = [
base formatting path path-utils polysemy text turtle
];
license = stdenv.lib.licenses.mit;
}) {};
+ "polysemy-vinyl" = callPackage
+ ({ mkDerivation, base, polysemy, polysemy-extra, vinyl }:
+ mkDerivation {
+ pname = "polysemy-vinyl";
+ version = "0.1.4.0";
+ sha256 = "1545a125bfgi5314dxhak5dnx9h5kwanzgbp1f88f96hlxik1rjh";
+ libraryHaskellDepends = [ base polysemy polysemy-extra vinyl ];
+ description = "Functions for mapping vinyl records in polysemy";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"polysemy-webserver" = callPackage
({ mkDerivation, base, bytestring, hspec, http-conduit, http-types
, polysemy, polysemy-plugin, text, wai, wai-websockets, warp
@@ -201799,8 +199971,6 @@ self: {
];
description = "Start web servers from within a Polysemy effect stack";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"polysemy-zoo" = callPackage
@@ -201825,8 +199995,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Experimental, user-contributed effects and interpreters for polysemy";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"polyseq" = callPackage
@@ -202209,8 +200377,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Static key-value storage backed by poppy";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"poppler" = callPackage
@@ -202566,6 +200732,8 @@ self: {
testHaskellDepends = [ base ];
description = "Experiment";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"posix-acl" = callPackage
@@ -202605,6 +200773,8 @@ self: {
];
description = "posix bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) systemd;};
"posix-error-codes" = callPackage
@@ -202743,8 +200913,6 @@ self: {
];
description = "Sleep tracker for X11, using XScreenSaver extension and manual input";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"possible" = callPackage
@@ -202853,8 +201021,8 @@ self: {
}:
mkDerivation {
pname = "postgres-websockets";
- version = "0.9.0.0";
- sha256 = "1c7has1vyp8i3my5126m8ciimcyyv4prav94wpl861gz7npdqxym";
+ version = "0.10.0.0";
+ sha256 = "1rhpv9dams24iy9wpj0v69blr2109xprz7yj1y0ng9cw3bnsrldm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -202887,8 +201055,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-binary";
- version = "0.12.2";
- sha256 = "1zkhwl8g141p1zgnbxjhh0r6wgvzlpwdbvyl80z31fdxd5v29bv8";
+ version = "0.12.3.3";
+ sha256 = "0aivmhzs1cnr86j6xv6nix913walqfvgirydzrp09l5ppp5i2sps";
libraryHaskellDepends = [
aeson base base-prelude binary-parser bytestring
bytestring-strict-builder containers loch-th network-ip
@@ -202905,36 +201073,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "postgresql-binary_0_12_3_1" = callPackage
- ({ mkDerivation, aeson, base, base-prelude, binary-parser
- , bytestring, bytestring-strict-builder, containers, conversion
- , conversion-bytestring, conversion-text, criterion, json-ast
- , loch-th, network-ip, placeholders, postgresql-libpq, QuickCheck
- , quickcheck-instances, rerebase, scientific, tasty, tasty-hunit
- , tasty-quickcheck, text, time, transformers, unordered-containers
- , uuid, vector
- }:
- mkDerivation {
- pname = "postgresql-binary";
- version = "0.12.3.1";
- sha256 = "0frdyhzdrfnrqmf15all0g817p7i6asj46hzk87rw52qbfiyag2v";
- libraryHaskellDepends = [
- aeson base base-prelude binary-parser bytestring
- bytestring-strict-builder containers loch-th network-ip
- placeholders scientific text time transformers unordered-containers
- uuid vector
- ];
- testHaskellDepends = [
- aeson conversion conversion-bytestring conversion-text json-ast
- loch-th network-ip placeholders postgresql-libpq QuickCheck
- quickcheck-instances rerebase tasty tasty-hunit tasty-quickcheck
- ];
- benchmarkHaskellDepends = [ criterion rerebase ];
- description = "Encoders and decoders for the PostgreSQL's binary format";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"postgresql-common" = callPackage
({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }:
mkDerivation {
@@ -203039,10 +201177,8 @@ self: {
({ mkDerivation, base, bytestring, Cabal, postgresql, unix }:
mkDerivation {
pname = "postgresql-libpq";
- version = "0.9.4.2";
- sha256 = "1y86kysakfcf3zq252yl2llrx3765vxvkdwda4q5ql7ikv3m786f";
- revision = "2";
- editedCabalFile = "1i0z3c0d657050kfggr5z8y4hmcqkckm2x1gn3fjbdzyx3p1rcaa";
+ version = "0.9.4.3";
+ sha256 = "1gfnhc5pibn7zmifdf2g0c112xrpzsk756ln2kjzqljkspf4dqp3";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base bytestring unix ];
librarySystemDepends = [ postgresql ];
@@ -203196,8 +201332,6 @@ self: {
];
description = "pure Haskell PostgreSQL driver";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"postgresql-query" = callPackage
@@ -203264,10 +201398,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-simple";
- version = "0.6.2";
- sha256 = "15pkflx48mgv4fjmnagyfh06q065k8m8c98bysc3gm6m4srz5ypv";
- revision = "4";
- editedCabalFile = "03s0cbwqgkvzr1wkan7icfjb9qlz95pbs3pqv2mkpf117m3y1yb0";
+ version = "0.6.3";
+ sha256 = "193rh38gzgpy41y6826hs4zdp01xw2fpjncwm281cm1ibrmh68pq";
libraryHaskellDepends = [
aeson attoparsec base bytestring bytestring-builder
case-insensitive containers hashable Only postgresql-libpq
@@ -203342,6 +201474,8 @@ self: {
testHaskellDepends = [ base bytestring hspec postgresql-simple ];
description = "PostgreSQL Schema Migrations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"postgresql-simple-named" = callPackage
@@ -203386,8 +201520,6 @@ self: {
];
description = "An optparse-applicative and envy parser for postgres options";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"postgresql-simple-queue" = callPackage
@@ -203607,8 +201739,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
@@ -203645,52 +201775,6 @@ self: {
}:
mkDerivation {
pname = "postgrest";
- version = "7.0.0";
- sha256 = "03iya4w39qp25ms8m58mw6pvlriw80h6rdg1cb7az7353m2ndzys";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson ansi-wl-pprint base base64-bytestring bytestring
- case-insensitive cassava configurator-pg containers contravariant
- contravariant-extras cookie either gitrev hasql hasql-pool
- hasql-transaction heredoc HTTP http-types insert-ordered-containers
- interpolatedstring-perl6 jose lens lens-aeson network-uri
- optparse-applicative parsec protolude Ranged-sets regex-tdfa
- scientific swagger2 text time unordered-containers vector wai
- wai-cors wai-extra wai-middleware-static
- ];
- executableHaskellDepends = [
- auto-update base base64-bytestring bytestring directory either
- hasql hasql-pool hasql-transaction network protolude retry text
- time unix wai warp
- ];
- testHaskellDepends = [
- aeson aeson-qq async auto-update base base64-bytestring bytestring
- case-insensitive cassava containers contravariant hasql hasql-pool
- hasql-transaction heredoc hspec hspec-wai hspec-wai-json http-types
- lens lens-aeson monad-control process protolude regex-tdfa text
- time transformers-base wai wai-extra
- ];
- description = "REST API for any Postgres database";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "postgrest_7_0_1" = callPackage
- ({ mkDerivation, aeson, aeson-qq, ansi-wl-pprint, async
- , auto-update, base, base64-bytestring, bytestring
- , case-insensitive, cassava, configurator-pg, containers
- , contravariant, contravariant-extras, cookie, directory, either
- , gitrev, hasql, hasql-pool, hasql-transaction, heredoc, hspec
- , hspec-wai, hspec-wai-json, HTTP, http-types
- , insert-ordered-containers, interpolatedstring-perl6, jose, lens
- , lens-aeson, monad-control, network, network-uri
- , optparse-applicative, parsec, process, protolude, Ranged-sets
- , regex-tdfa, retry, scientific, swagger2, text, time
- , transformers-base, unix, unordered-containers, vector, wai
- , wai-cors, wai-extra, wai-middleware-static, warp
- }:
- mkDerivation {
- pname = "postgrest";
version = "7.0.1";
sha256 = "1cn69dinfv3y8ymsa364b9b0ly3dg80and902gamymb9v89jpsgf";
revision = "5";
@@ -203722,6 +201806,7 @@ self: {
description = "REST API for any Postgres database";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"postgrest-ws" = callPackage
@@ -203815,6 +201900,8 @@ self: {
];
description = "Send email via Postmark using io-streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"postmaster" = callPackage
@@ -204003,6 +202090,8 @@ self: {
libraryHaskellDepends = [ base diagrams-lib JuicyPixels potrace ];
description = "Potrace bindings for the diagrams library";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"powermate" = callPackage
@@ -204045,8 +202134,6 @@ self: {
testHaskellDepends = [ async base hspec stm ];
description = "A flexible job queue with exchangeable backends";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"powerqueue-distributed" = callPackage
@@ -204065,8 +202152,6 @@ self: {
testHaskellDepends = [ async base hspec powerqueue stm timespan ];
description = "A distributed worker backend for powerqueu";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"powerqueue-levelmem" = callPackage
@@ -204132,6 +202217,8 @@ self: {
libraryHaskellDepends = [ base boxes ];
description = "A library for pretty printing Records";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pptable" = callPackage
@@ -204402,32 +202489,31 @@ self: {
libraryHaskellDepends = [ adjunctions base deepseq lens mtl ];
description = "A library for writing predicates and transformations over predicates in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"predicate-typed" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, binary, bytestring
, comonad, containers, deepseq, directory, doctest, hashable, lens
- , mtl, pcre-heavy, pcre-light, pretty, pretty-terminal, QuickCheck
- , safe, stm, string-conversions, tasty, tasty-hunit
- , tasty-quickcheck, template-haskell, text, th-lift, these, time
- , tree-view
+ , lens-action, pcre-heavy, pcre-light, pretty-terminal, QuickCheck
+ , safe, tasty, tasty-hunit, tasty-quickcheck, template-haskell
+ , text, these, time
}:
mkDerivation {
pname = "predicate-typed";
- version = "0.7.3.0";
- sha256 = "124f9bdvq30xaadg6020q0pmfv56mpkw25ws306xp8mfs61g1src";
+ version = "0.7.4.5";
+ sha256 = "00q5q7s4b208lr3r8nlnchi3racmdcbvqrr7xyzslz6fr4dih112";
libraryHaskellDepends = [
aeson aeson-pretty base binary bytestring comonad containers
- deepseq directory hashable lens mtl pcre-heavy pcre-light pretty
- pretty-terminal QuickCheck safe string-conversions template-haskell
- text th-lift these time tree-view
+ deepseq directory hashable lens pcre-heavy pcre-light
+ pretty-terminal QuickCheck safe template-haskell text these time
];
testHaskellDepends = [
aeson aeson-pretty base binary bytestring comonad containers
- deepseq directory doctest hashable lens mtl pcre-heavy pcre-light
- pretty pretty-terminal QuickCheck safe stm string-conversions tasty
- tasty-hunit tasty-quickcheck template-haskell text th-lift these
- time tree-view
+ deepseq directory doctest hashable lens lens-action pcre-heavy
+ pcre-light pretty-terminal QuickCheck safe tasty tasty-hunit
+ tasty-quickcheck template-haskell text these time
];
description = "Predicates, Refinement types and Dsl";
license = stdenv.lib.licenses.bsd3;
@@ -204919,8 +203005,6 @@ self: {
];
description = "Pretty-printing library";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pretty-diff" = callPackage
@@ -204929,16 +203013,14 @@ self: {
}:
mkDerivation {
pname = "pretty-diff";
- version = "0.2.0.2";
- sha256 = "0nz6shwyw6pkwd8n4rvix4fn0f5mvxx1xkc6q4k1xrg2ylg73ksv";
+ version = "0.2.0.3";
+ sha256 = "1pnq05zw7zyfikga8y27pkya4wrf0m3mrksmzi8l7jp9qdhkyia1";
libraryHaskellDepends = [ base data-default Diff text ];
testHaskellDepends = [
base data-default Diff tasty tasty-hunit tasty-test-reporter text
];
description = "Pretty printing a diff of two values";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"pretty-display" = callPackage
@@ -205090,8 +203172,8 @@ self: {
}:
mkDerivation {
pname = "pretty-simple";
- version = "3.2.3.0";
- sha256 = "1sr66sawacv0ks0znip0jxpz98lvjacara8sqfm53i0pqf8c0qla";
+ version = "3.3.0.0";
+ sha256 = "0g83958npqscqqz2lh5m0m666qp8ldwps4l5gvfip4b1zgy3f5nh";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -205185,6 +203267,8 @@ self: {
testHaskellDepends = [ base hspec tagged ];
description = "A small pretty printing DSL for complex types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"prettyFunctionComposing" = callPackage
@@ -205209,32 +203293,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "prettyprinter_1_6_1" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, base-compat, bytestring
- , containers, deepseq, doctest, gauge, mtl, pgp-wordlist
- , QuickCheck, quickcheck-instances, random, tasty, tasty-hunit
- , tasty-quickcheck, text, transformers
- }:
- mkDerivation {
- pname = "prettyprinter";
- version = "1.6.1";
- sha256 = "10fphxh8lvdaw7i8jyllwmj87w02db92mf99zfw5vddp9mv6b5rz";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base text ];
- testHaskellDepends = [
- base bytestring doctest pgp-wordlist QuickCheck
- quickcheck-instances tasty tasty-hunit tasty-quickcheck text
- ];
- benchmarkHaskellDepends = [
- 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";
- license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"prettyprinter" = callPackage
({ mkDerivation, ansi-wl-pprint, base, base-compat, bytestring
, containers, deepseq, doctest, gauge, mtl, pgp-wordlist
@@ -205373,8 +203431,6 @@ self: {
libraryHaskellDepends = [ base graphviz prettyprinter text ];
description = "A prettyprinter backend for graphviz";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"prettyprinter-lucid" = callPackage
@@ -205431,8 +203487,6 @@ self: {
libraryHaskellDepends = [ ghc-prim ];
description = "An ergonomic but conservative interface to ghc-prim";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"prim-array" = callPackage
@@ -205460,6 +203514,8 @@ self: {
testHaskellDepends = [ base QuickCheck quickcheck-classes ];
description = "Prim typeclass instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"prim-ref" = callPackage
@@ -205579,39 +203635,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) primesieve;};
- "primitive_0_5_1_0" = callPackage
- ({ mkDerivation, base, ghc-prim }:
- mkDerivation {
- pname = "primitive";
- version = "0.5.1.0";
- sha256 = "0a8mf8k62xga5r5dd0fna1swqbx2r94c0mvqnc4mfq640zrsa5w8";
- revision = "1";
- editedCabalFile = "1v4q1mz08fzagp4xpbw5ifmymlrsw380yccdvhcgqfrl2lrgb2zf";
- libraryHaskellDepends = [ base ghc-prim ];
- description = "Primitive memory-related operations";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"primitive" = callPackage
- ({ mkDerivation, base, base-orphans, ghc-prim, QuickCheck
- , semigroups, tagged, tasty, tasty-quickcheck, transformers
- , transformers-compat
- }:
- mkDerivation {
- pname = "primitive";
- version = "0.7.0.1";
- sha256 = "1pgpjzlfn037lw7lsszpqmqhbf33fnd86jna1whdd4pl57cbg2yx";
- libraryHaskellDepends = [ base ghc-prim transformers ];
- testHaskellDepends = [
- base base-orphans ghc-prim QuickCheck semigroups tagged tasty
- tasty-quickcheck transformers transformers-compat
- ];
- description = "Primitive memory-related operations";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "primitive_0_7_1_0" = callPackage
({ mkDerivation, base, base-orphans, deepseq, ghc-prim, QuickCheck
, quickcheck-classes-base, semigroups, tagged, tasty
, tasty-quickcheck, transformers, transformers-compat
@@ -205628,7 +203652,6 @@ self: {
];
description = "Primitive memory-related operations";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"primitive-addr" = callPackage
@@ -205652,6 +203675,8 @@ self: {
testHaskellDepends = [ base primitive primitive-unlifted ];
description = "Wrappers for primops around atomic operations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-checked" = callPackage
@@ -205663,6 +203688,8 @@ self: {
libraryHaskellDepends = [ base primitive ];
description = "primitive functions with bounds-checking";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-containers" = callPackage
@@ -205688,6 +203715,8 @@ self: {
];
description = "containers backed by arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-convenience" = callPackage
@@ -205699,6 +203728,8 @@ self: {
libraryHaskellDepends = [ primitive ];
description = "convenience class for PrimMonad m/PrimState m";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-extras" = callPackage
@@ -205721,6 +203752,8 @@ self: {
];
description = "Extras for the \"primitive\" library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-foreign" = callPackage
@@ -205733,6 +203766,8 @@ self: {
testHaskellDepends = [ base primitive QuickCheck ];
description = "using the `Prim` interface for the FFI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-indexed" = callPackage
@@ -205813,6 +203848,8 @@ self: {
benchmarkHaskellDepends = [ base gauge ghc-prim primitive random ];
description = "Sort primitive arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"primitive-stablename" = callPackage
@@ -205852,6 +203889,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "primitive-unlifted_1_0_0_0" = callPackage
+ ({ mkDerivation, array, base, bytestring, primitive, QuickCheck
+ , quickcheck-classes-base, stm, tasty, tasty-quickcheck, text-short
+ }:
+ mkDerivation {
+ pname = "primitive-unlifted";
+ version = "1.0.0.0";
+ sha256 = "07b53730nxzqyhac71xxijg598304ppb7wa8lfhw1glicj9h0wad";
+ libraryHaskellDepends = [
+ array base bytestring primitive text-short
+ ];
+ testHaskellDepends = [
+ base primitive QuickCheck quickcheck-classes-base stm tasty
+ tasty-quickcheck
+ ];
+ description = "Primitive GHC types with unlifted types inside";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"primula-board" = callPackage
({ mkDerivation, base, ConfigFile, containers, directory, happstack
, happstack-helpers, happstack-server, happstack-state, hsp
@@ -206522,23 +204579,6 @@ self: {
}:
mkDerivation {
pname = "product-profunctors";
- version = "0.10.0.1";
- sha256 = "15q6mgn42in4df61251q8h2d7hgvflik93xngc7jyyxj4ymaz5yh";
- libraryHaskellDepends = [
- base bifunctors contravariant profunctors tagged template-haskell
- ];
- testHaskellDepends = [ base profunctors ];
- benchmarkHaskellDepends = [ base criterion deepseq ];
- description = "product-profunctors";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "product-profunctors_0_11_0_1" = callPackage
- ({ mkDerivation, base, bifunctors, contravariant, criterion
- , deepseq, profunctors, tagged, template-haskell
- }:
- mkDerivation {
- pname = "product-profunctors";
version = "0.11.0.1";
sha256 = "0lwwjnpxgkgk02179j8jj9c1zvaw4f406i9gm7ngqczl8y796q3l";
revision = "1";
@@ -206550,7 +204590,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq ];
description = "product-profunctors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prof-flamegraph" = callPackage
@@ -206641,6 +204680,8 @@ self: {
];
description = "Treemap visualiser for GHC prof files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"profunctor-arrows" = callPackage
@@ -207015,6 +205056,8 @@ self: {
];
description = "Profunctor-based lightweight implementation of optics";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"prolog" = callPackage
@@ -207031,8 +205074,6 @@ self: {
];
description = "A Prolog interpreter written in Haskell";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"prolog-graph" = callPackage
@@ -207063,8 +205104,6 @@ self: {
libraryHaskellDepends = [ base fgl graphviz mtl prolog text ];
description = "Generating images of resolution trees for Prolog queries";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"prologue" = callPackage
@@ -207095,16 +205134,19 @@ self: {
}) {};
"prolude" = callPackage
- ({ mkDerivation, aeson, base, bytestring, mongoDB, safe-exceptions
- , scientific, text, time, vector
+ ({ mkDerivation, aeson, base, bytestring, cassava, containers
+ , generic-random, mongoDB, mtl, persistent, persistent-mongoDB
+ , QuickCheck, quickcheck-instances, safe-exceptions, scientific
+ , swagger2, text, time, uuid, vector
}:
mkDerivation {
pname = "prolude";
- version = "0.0.0.2";
- sha256 = "01md9n18kwsm2myr1wfv16z404c4d92iz4g7nhixrkl6dvgq8fyc";
+ version = "0.0.0.12";
+ sha256 = "09z9716pjyxzpqn3qc0zsi9mz03vf1qnb1q5bcf66bvb1kfj0phw";
libraryHaskellDepends = [
- aeson base bytestring mongoDB safe-exceptions scientific text time
- vector
+ aeson base bytestring cassava containers generic-random mongoDB mtl
+ persistent persistent-mongoDB QuickCheck quickcheck-instances
+ safe-exceptions scientific swagger2 text time uuid vector
];
description = "ITProTV's custom prelude";
license = stdenv.lib.licenses.mit;
@@ -207354,8 +205396,6 @@ self: {
executableHaskellDepends = [ base ];
description = "property-based host configuration management in haskell";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"properties" = callPackage
@@ -207453,6 +205493,8 @@ self: {
];
description = "A simple language for writing documents";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"prosidyc" = callPackage
@@ -207469,6 +205511,8 @@ self: {
];
description = "A DSL for processing Prosidy documents";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"prospect" = callPackage
@@ -207509,19 +205553,41 @@ self: {
}) {};
"proteaaudio" = callPackage
- ({ mkDerivation, base, bytestring, c2hs, libpulseaudio }:
+ ({ mkDerivation, base, bytestring, c2hs, libpulse, libpulse-simple
+ , libpulseaudio
+ }:
mkDerivation {
pname = "proteaaudio";
- version = "0.8.0";
- sha256 = "0fwanb1i4cq7352kci3wxkb5nyi5cm6298r559faw1bfyj2lmfbh";
+ version = "0.9.0";
+ sha256 = "0y1vvcy0rdiraphi6c9i1xsw5zwdqsw0id40xhgvk37va36ryl3p";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
librarySystemDepends = [ libpulseaudio ];
+ libraryPkgconfigDepends = [ libpulse libpulse-simple ];
libraryToolDepends = [ c2hs ];
description = "Simple audio library for Windows, Linux, OSX";
license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) libpulseaudio;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {libpulse = null; libpulse-simple = null;
+ inherit (pkgs) libpulseaudio;};
+
+ "proteaaudio-sdl" = callPackage
+ ({ mkDerivation, base, bytestring, c2hs, SDL2 }:
+ mkDerivation {
+ pname = "proteaaudio-sdl";
+ version = "0.9.0";
+ sha256 = "0ksdb89phsdjjq5q043wvqi3swibfd1840180jg3m8wj3zcy5g3k";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring ];
+ librarySystemDepends = [ SDL2 ];
+ libraryPkgconfigDepends = [ SDL2 ];
+ libraryToolDepends = [ c2hs ];
+ description = "Simple audio library for SDL";
+ license = stdenv.lib.licenses.bsd3;
+ }) {inherit (pkgs) SDL2;};
"proteome" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers
@@ -207655,8 +205721,6 @@ self: {
];
description = "JSON protobuf encoding for proto-lens";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"proto-lens-optparse" = callPackage
@@ -207912,6 +205976,8 @@ self: {
libraryHaskellDepends = [ base freer-indexed singletons ];
description = "Model distributed system as type-level multi-party protocol";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"protocol-buffers" = callPackage
@@ -207921,32 +205987,30 @@ self: {
}:
mkDerivation {
pname = "protocol-buffers";
- version = "2.4.13";
- sha256 = "0xwfb2bkh4nd34s24q786ph4zyrnnl3bcry2kqx3sw20yk3zfdsc";
+ version = "2.4.17";
+ sha256 = "027y1xfk93119d6xfzj0a9n77bdqzkxfp05hz9bn0hyf33lb4jzb";
libraryHaskellDepends = [
aeson array base base16-bytestring binary bytestring containers
directory filepath mtl parsec syb text utf8-string vector
];
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"protocol-buffers-descriptor" = callPackage
({ mkDerivation, base, bytestring, containers, protocol-buffers }:
mkDerivation {
pname = "protocol-buffers-descriptor";
- version = "2.4.13";
- sha256 = "1c3aiysjlk7r02l5902iq020iasiswk9c1mvf4f9h1yijba4x4fp";
+ version = "2.4.17";
+ sha256 = "1dir8v79hzc8smlf405a8m3y5jhjqiphj2jm6rbshd1vg6l3vjia";
+ revision = "1";
+ editedCabalFile = "0zin8qqvb1hg5kq2s17rkik55pjnws556xflg76x1xrqkyivhqlg";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring containers protocol-buffers
];
description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"protocol-buffers-descriptor-fork" = callPackage
@@ -208025,23 +206089,6 @@ self: {
}:
mkDerivation {
pname = "protolude";
- version = "0.2.4";
- sha256 = "0vkrj1fxbndkmsja9d80k4q5c48gwdbjlnzx3iag02dlj05j34hi";
- libraryHaskellDepends = [
- array async base bytestring containers deepseq ghc-prim hashable
- mtl mtl-compat stm text transformers transformers-compat
- ];
- description = "A small prelude";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "protolude_0_3_0" = callPackage
- ({ mkDerivation, array, async, base, bytestring, containers
- , deepseq, ghc-prim, hashable, mtl, mtl-compat, stm, text
- , transformers, transformers-compat
- }:
- mkDerivation {
- pname = "protolude";
version = "0.3.0";
sha256 = "1b6wprbwfdjyvds2bm6na0fbqgzdkj5ikkk33whbkyh3krd3i0s0";
isLibrary = true;
@@ -208052,7 +206099,6 @@ self: {
];
description = "A small prelude";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"protolude-lifted" = callPackage
@@ -208235,8 +206281,8 @@ self: {
pname = "pseudo-boolean";
version = "0.1.9.0";
sha256 = "00n5mf7abprhr9xvh3k1mw40jn4l94wwxpc2h0546h0n9v7srb1b";
- revision = "2";
- editedCabalFile = "1njlypxh9p0dfqywgqgyzgx9h822d37jbnnd9zbl0ci99k1247g6";
+ revision = "3";
+ editedCabalFile = "0x0a5rjylmh4pdmr9iyadywzh06qxypq48b78skvm09bkkvrxghq";
libraryHaskellDepends = [
attoparsec base bytestring bytestring-builder containers deepseq
dlist hashable megaparsec parsec void
@@ -208386,8 +206432,6 @@ self: {
];
description = "Abstractions for operations on pointers";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ptr-poker" = callPackage
@@ -208396,13 +206440,15 @@ self: {
}:
mkDerivation {
pname = "ptr-poker";
- version = "0.1.1";
- sha256 = "09dklmyarwn4s3lp2l2i1641cs57r6jamqkbyn6qb91nl0f46z52";
+ version = "0.1.1.2";
+ sha256 = "06h267z01cvk2sck7ycbi8vssg4985nh7cxx2mw92hiqj1kqp0gp";
libraryHaskellDepends = [ base bytestring scientific text ];
testHaskellDepends = [ hedgehog numeric-limits rerebase ];
benchmarkHaskellDepends = [ gauge rerebase ];
description = "Pointer poking action construction and composition toolkit";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"pub" = callPackage
@@ -208937,22 +206983,21 @@ self: {
];
description = "types and parser for email messages (including MIME)";
license = stdenv.lib.licenses.agpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"purescheme-wai-routing-core" = callPackage
- ({ mkDerivation, aeson, base, bytestring, http-media, http-types
- , interpolate, text, wai, warp
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive
+ , http-media, http-types, interpolate, text, wai, warp
}:
mkDerivation {
pname = "purescheme-wai-routing-core";
- version = "0.1.0.0";
- sha256 = "18ngmq6yb3l1ywigl38jm2x6wi097wjdym5z3hh5qkjndcygkjji";
+ version = "0.1.3.0";
+ sha256 = "0fwgxvn0vblyma3fpbyj9rvbwsrgsqzyd27mripa3yyvm6ygh4s6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring http-media http-types interpolate text wai
+ aeson base bytestring case-insensitive http-media http-types
+ interpolate text wai
];
executableHaskellDepends = [
aeson base bytestring http-types text wai warp
@@ -208960,6 +207005,8 @@ self: {
testHaskellDepends = [ base ];
description = "Simple Routing functions for Wai Applications";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"purescript" = callPackage
@@ -209142,8 +207189,6 @@ self: {
executableHaskellDepends = [ base text ];
description = "A cli client for pursuit";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"push-notifications" = callPackage
@@ -209312,30 +207357,6 @@ self: {
"pusher-http-haskell" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
- , cryptonite, hashable, hspec, http-client, http-types, memory
- , QuickCheck, scientific, text, time, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "pusher-http-haskell";
- version = "1.5.1.14";
- sha256 = "0gfn5rfyyhbrl6sq7b6qyg86afww60c9g8y65m0qci6c91jbrv3a";
- libraryHaskellDepends = [
- aeson base base16-bytestring bytestring cryptonite hashable
- http-client http-types memory text time transformers
- unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base base16-bytestring bytestring cryptonite hspec
- http-client http-types QuickCheck scientific text time transformers
- unordered-containers vector
- ];
- description = "Haskell client library for the Pusher Channels HTTP API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "pusher-http-haskell_2_0_0_2" = callPackage
- ({ mkDerivation, aeson, base, base16-bytestring, bytestring
, cryptonite, hashable, hspec, http-client, http-client-tls
, http-types, memory, QuickCheck, text, time, unordered-containers
}:
@@ -209353,7 +207374,6 @@ self: {
];
description = "Haskell client library for the Pusher Channels HTTP API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pusher-ws" = callPackage
@@ -209501,8 +207521,10 @@ self: {
}:
mkDerivation {
pname = "pvar";
- version = "0.2.0.0";
- sha256 = "183pc9xk4b62rrmchzqxi1wvys8k118zi7060wr0xm2azn7wny6h";
+ version = "1.0.0.0";
+ sha256 = "0f28wb89zlddgmh0302x73lphmd6kmx1829yh6kwsz7a6asq79ln";
+ revision = "1";
+ editedCabalFile = "0r3r7w9x31pimrzmp5fjabgcx8caxf1g0mk9izksw2wnn1anhjix";
libraryHaskellDepends = [ base deepseq primitive ];
testHaskellDepends = [
async base deepseq genvalidity hspec primitive QuickCheck
@@ -209800,6 +207822,8 @@ self: {
];
description = "Command line tool qhs, SQL queries on CSV and TSV files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"qhull-simple" = callPackage
@@ -209855,6 +207879,8 @@ self: {
];
description = "Typesafe library for linear algebra";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"qm-interpolated-string" = callPackage
@@ -210048,6 +208074,8 @@ self: {
librarySystemDepends = [ qtbase ];
description = "Qt bindings for Haskell - C++ library";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs.qt5) qtbase;};
"qtah-examples" = callPackage
@@ -210065,6 +208093,8 @@ self: {
];
description = "Example programs for Qtah Qt bindings";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"qtah-generator" = callPackage
@@ -210087,6 +208117,8 @@ self: {
doHaddock = false;
description = "Generator for Qtah Qt bindings";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"qtah-qt5" = callPackage
@@ -210106,6 +208138,8 @@ self: {
testHaskellDepends = [ base hoppy-runtime HUnit ];
description = "Qt bindings for Haskell";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs.qt5) qtbase;};
"quack" = callPackage
@@ -210193,6 +208227,8 @@ self: {
];
description = "Rage against the quantification";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quantities" = callPackage
@@ -210576,8 +208612,8 @@ self: {
}:
mkDerivation {
pname = "quickcheck-arbitrary-template";
- version = "0.2.1.0";
- sha256 = "1g9b39bhjcx44l8mwj5hwbjkd575prd46v16jz895q4f3ibqnfvp";
+ version = "0.2.1.1";
+ sha256 = "0cmk6kp895qrirdavbfp96k9yggs83bjcknyvwbkfzx5zbdc87y7";
libraryHaskellDepends = [ base QuickCheck safe template-haskell ];
testHaskellDepends = [
base QuickCheck safe tasty tasty-golden tasty-hunit
@@ -210648,8 +208684,6 @@ self: {
sha256 = "0qdjls949kmcv8wj3a27p4dz8nb1dq4i99zizkw7qyqn47r9ccxd";
libraryHaskellDepends = [ base QuickCheck unfoldable-restricted ];
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"quickcheck-enum-instances" = callPackage
@@ -210690,8 +208724,8 @@ self: {
pname = "quickcheck-instances";
version = "0.3.23";
sha256 = "1gig5dwgsahpgdz0cm06wf9lbjnh0qmr5qrlk9bc3v72pa8knc0i";
- revision = "1";
- editedCabalFile = "1lir5ryv2b1hn5n5fbgs9syram71zv4p4chb9xzkxvbszl5inw8k";
+ revision = "2";
+ editedCabalFile = "195l3a41gw34kviqbsa4pg8h92y3gmhvq4x7znrm1h7zlqw2jbb0";
libraryHaskellDepends = [
array base base-compat bytestring case-insensitive containers
hashable old-time QuickCheck scientific splitmix tagged text these
@@ -210706,7 +208740,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "quickcheck-instances_0_3_24" = callPackage
+ "quickcheck-instances_0_3_25_1" = callPackage
({ mkDerivation, array, base, bytestring, case-insensitive
, containers, data-fix, hashable, integer-logarithms, old-time
, QuickCheck, scientific, splitmix, strict, tagged, text, these
@@ -210715,8 +208749,8 @@ self: {
}:
mkDerivation {
pname = "quickcheck-instances";
- version = "0.3.24";
- sha256 = "0jvb3d43hc1sa8aal1gjpwmrh65mswi72yssb98bj5hca4z8grk5";
+ version = "0.3.25.1";
+ sha256 = "06gg3y56ws1bc9yz00fmm0i5vrmqd2mqlxnbxp676yksfyr80qxd";
libraryHaskellDepends = [
array base bytestring case-insensitive containers data-fix hashable
integer-logarithms old-time QuickCheck scientific splitmix strict
@@ -211046,8 +209080,8 @@ self: {
}:
mkDerivation {
pname = "quickjs-hs";
- version = "0.1.2.2";
- sha256 = "1zis42hsvljrqli9469n9k0h44i79a9v9qcd10agq1gylkhgsmkr";
+ version = "0.1.2.3";
+ sha256 = "1azd2173hwij0z2qxn4k6fi7bkiyaar0q751z15byhbdzil7pf1d";
libraryHaskellDepends = [
aeson base bytestring containers exceptions inline-c mtl scientific
string-conv text time transformers unliftio-core
@@ -211232,6 +209266,8 @@ self: {
doHaddock = false;
description = "Meta-package for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-algorithms" = callPackage
@@ -211255,6 +209291,8 @@ self: {
executableHaskellDepends = [ base ];
description = "A set of algorithms implemented in Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-all" = callPackage
@@ -211270,6 +209308,8 @@ self: {
doHaddock = false;
description = "Meta-package for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-cabal" = callPackage
@@ -211281,6 +209321,8 @@ self: {
libraryHaskellDepends = [ base Cabal process quipper-language ];
description = "Some functions to aid in the creation of Cabal packages for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-core" = callPackage
@@ -211318,6 +209360,8 @@ self: {
doHaddock = false;
description = "Miscellaneous code snippets that illustrate various Quipper features";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-language" = callPackage
@@ -211338,6 +209382,8 @@ self: {
executableHaskellDepends = [ base process ];
description = "Quipper, an embedded functional programming language for quantum computation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-libraries" = callPackage
@@ -211360,6 +209406,8 @@ self: {
];
description = "The standard libraries for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-rendering" = callPackage
@@ -211399,6 +209447,8 @@ self: {
doHaddock = false;
description = "Miscellaneous stand-alone tools for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quipper-utils" = callPackage
@@ -211415,6 +209465,8 @@ self: {
];
description = "Utility libraries for Quipper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"quiver" = callPackage
@@ -211659,6 +209711,26 @@ self: {
broken = true;
}) {};
+ "r-glpk-phonetic-languages-ukrainian-durations" = callPackage
+ ({ mkDerivation, base, lists-flines, mmsyn2
+ , ukrainian-phonetics-basic, vector
+ }:
+ mkDerivation {
+ pname = "r-glpk-phonetic-languages-ukrainian-durations";
+ version = "0.2.2.0";
+ sha256 = "1svwml88hfnpdgbnny8nzga9gxnmgjggnkks8gz9dplcf8w1w39d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base lists-flines mmsyn2 ukrainian-phonetics-basic vector
+ ];
+ executableHaskellDepends = [
+ base lists-flines mmsyn2 ukrainian-phonetics-basic vector
+ ];
+ description = "Can be used to calculate the durations of the approximations of the Ukrainian phonemes";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"r3x-haskell-sdk" = callPackage
({ mkDerivation, aeson, base, blaze-html, bytestring
, case-insensitive, containers, cookie, http-types, mtl, regex-pcre
@@ -211796,21 +209868,6 @@ self: {
"radius" = callPackage
({ mkDerivation, base, binary, bytestring, cryptonite, iproute
- , memory
- }:
- mkDerivation {
- pname = "radius";
- version = "0.6.1.0";
- sha256 = "0q12vlqwpnsxr3i26b6v8z4rpvwmqsx0n171lhki9wc57v3mxgdy";
- libraryHaskellDepends = [
- base binary bytestring cryptonite iproute memory
- ];
- description = "Remote Authentication Dial In User Service (RADIUS)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "radius_0_7_1_0" = callPackage
- ({ mkDerivation, base, binary, bytestring, cryptonite, iproute
, lens, memory
}:
mkDerivation {
@@ -211822,7 +209879,6 @@ self: {
];
description = "Remote Authentication Dial In User Service (RADIUS)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"radix" = callPackage
@@ -212310,8 +210366,8 @@ self: {
pname = "random";
version = "1.2.0";
sha256 = "1pmr7zbbqg58kihhhwj8figf5jdchhi7ik2apsyxbgsqq3vrqlg4";
- revision = "2";
- editedCabalFile = "1pjpv8rzbwhr881ayxbvz4filvx3qkdx13pa21407p5fiyf208a3";
+ revision = "3";
+ editedCabalFile = "04hrdpc4h35dqbwyc4vfp2hw7wsr6b121f3rm8l94j11kli4108y";
libraryHaskellDepends = [ base bytestring deepseq mtl splitmix ];
testHaskellDepends = [
base bytestring containers doctest mwc-random primitive smallcheck
@@ -212442,12 +210498,27 @@ self: {
];
description = "Additional functions for random values";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"random-fu" = callPackage
({ mkDerivation, base, erf, math-functions, monad-loops, mtl
+ , random-shuffle, random-source, rvar, syb, template-haskell
+ , transformers, vector
+ }:
+ mkDerivation {
+ pname = "random-fu";
+ version = "0.2.7.4";
+ sha256 = "13dgx069lvdfxm7l2q2l6d7q0gd3wp41b8l4l6wmhlfbl5xici3m";
+ libraryHaskellDepends = [
+ base erf math-functions monad-loops mtl random-shuffle
+ random-source rvar syb template-haskell transformers vector
+ ];
+ description = "Random number generation";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
+ "random-fu_0_2_7_7" = callPackage
+ ({ mkDerivation, base, erf, math-functions, monad-loops, mtl
, random, random-shuffle, random-source, rvar, syb
, template-haskell, transformers, vector
}:
@@ -212462,7 +210533,6 @@ self: {
description = "Random number generation";
license = stdenv.lib.licenses.publicDomain;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"random-fu-multivariate" = callPackage
@@ -212475,8 +210545,6 @@ self: {
testHaskellDepends = [ base ];
description = "Multivariate distributions for random-fu";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"random-hypergeometric" = callPackage
@@ -212527,6 +210595,23 @@ self: {
}:
mkDerivation {
pname = "random-source";
+ version = "0.3.0.8";
+ sha256 = "0kjvpmxhff6id99hhgjp3vvb4vlhs3shkrh1n5cbfm7450lpmmn2";
+ libraryHaskellDepends = [
+ base flexible-defaults mersenne-random-pure64 mtl mwc-random
+ primitive random stateref syb template-haskell th-extras
+ ];
+ description = "Generic basis for random number generators";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
+ "random-source_0_3_0_11" = callPackage
+ ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64
+ , mtl, mwc-random, primitive, random, stateref, syb
+ , template-haskell, th-extras
+ }:
+ mkDerivation {
+ pname = "random-source";
version = "0.3.0.11";
sha256 = "0lwqbd0h495srgi2p8fsmsfk5hv5m3f6cxm12j61xx94fdyn98sv";
libraryHaskellDepends = [
@@ -212536,7 +210621,6 @@ self: {
description = "Generic basis for random number generators";
license = stdenv.lib.licenses.publicDomain;
hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"random-stream" = callPackage
@@ -212758,8 +210842,6 @@ self: {
];
description = "Find the rank product of a data set";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"rank1dynamic" = callPackage
@@ -212768,18 +210850,14 @@ self: {
}:
mkDerivation {
pname = "rank1dynamic";
- version = "0.4.0";
- sha256 = "07dbfp0sc32q1p8xh4ap8m3b287r9hh4r8vfsrppdm5pabz4nhiw";
- revision = "1";
- editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr";
+ version = "0.4.1";
+ sha256 = "19x2w44f31589vf4s428m7g3dz75qykr7mv599rf3gls4zjx781r";
libraryHaskellDepends = [ base binary ];
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"rank2classes" = callPackage
@@ -212789,29 +210867,8 @@ self: {
}:
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;
- }) {};
-
- "rank2classes_1_4_0_1" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, distributive, doctest
- , markdown-unlit, tasty, tasty-hunit, template-haskell
- , transformers
- }:
- mkDerivation {
- pname = "rank2classes";
- version = "1.4.0.1";
- sha256 = "1r72z98jvnih16x074izb0wp9gwbsjs2ihvj8a72xxyakdad71r9";
+ version = "1.4.1";
+ sha256 = "1cmc7xqnvjdvzgfyz7i3nmnhdm92rwfc9bqlpjcirmnkn47va4kb";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base distributive template-haskell transformers
@@ -212822,7 +210879,6 @@ self: {
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
@@ -213195,6 +211251,8 @@ self: {
benchmarkHaskellDepends = [ base-noprelude gauge relude ];
description = "Client for rating.chgk.info API and CSV tables (documentation in Russian)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rating-systems" = callPackage
@@ -214301,22 +212359,22 @@ self: {
"readme-lhs" = callPackage
({ mkDerivation, attoparsec, base, blaze-html, containers, doctest
- , foldl, numhask, pandoc, pandoc-types, scientific, tdigest, text
+ , foldl, generic-lens, numhask, pandoc, pandoc-types, text
, transformers
}:
mkDerivation {
pname = "readme-lhs";
- version = "0.7.0";
- sha256 = "0sgfqx34yzlvn2999wh2681gk6dan9nrlkzd3indybkmal9mc80b";
+ version = "0.8.1";
+ sha256 = "08ah0sbi4km40izgvfmc745zp03n8kkd830mbwga6xk69hm9q821";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base blaze-html containers foldl numhask pandoc
- pandoc-types scientific tdigest text transformers
+ attoparsec base blaze-html containers foldl generic-lens numhask
+ pandoc pandoc-types text transformers
];
- executableHaskellDepends = [ base numhask text ];
- testHaskellDepends = [ base containers doctest ];
- description = "See readme.md";
+ executableHaskellDepends = [ base numhask ];
+ testHaskellDepends = [ base doctest numhask ];
+ description = "Literate programming support";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -214386,33 +212444,6 @@ self: {
}) {};
"reanimate" = callPackage
- ({ mkDerivation, aeson, ansi-wl-pprint, array, attoparsec, base
- , base64-bytestring, bytestring, cassava, cereal, chiphunk, colour
- , containers, cubicbezier, directory, filepath, fingertree
- , fsnotify, geojson, hashable, here, hmatrix, JuicyPixels, lens
- , linear, matrix, mtl, open-browser, optparse-applicative, parallel
- , process, random, random-shuffle, reanimate-svg, split, temporary
- , text, time, vector, vector-space, websockets, xml
- }:
- mkDerivation {
- pname = "reanimate";
- version = "0.3.3.0";
- sha256 = "0yyhspd13wws99kpb61cw3bc6yrvkxrq86y0p9w4sl66jdl1zbli";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson ansi-wl-pprint array attoparsec base base64-bytestring
- bytestring cassava cereal chiphunk colour containers cubicbezier
- directory filepath fingertree fsnotify geojson hashable here
- hmatrix JuicyPixels lens linear matrix mtl open-browser
- optparse-applicative parallel process random random-shuffle
- reanimate-svg split temporary text time vector vector-space
- websockets xml
- ];
- description = "Animation library based on SVGs";
- license = stdenv.lib.licenses.publicDomain;
- }) {};
-
- "reanimate_1_1_1_0" = callPackage
({ mkDerivation, aeson, ansi-terminal, array, attoparsec, base
, base64-bytestring, bytestring, cassava, cereal, colour
, containers, cryptohash-sha256, cubicbezier, directory, filelock
@@ -214427,8 +212458,8 @@ self: {
}:
mkDerivation {
pname = "reanimate";
- version = "1.1.1.0";
- sha256 = "05illhid0nnypkl7znzkmc7b3wc7lmv8jn2sdcj39xr1yr8hji7f";
+ version = "1.1.2.1";
+ sha256 = "043jpim33pliymnks47i39hz36wp61rvwjyk9f0k89whsi74bkd6";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-terminal array attoparsec base base64-bytestring
@@ -214448,29 +212479,10 @@ self: {
description = "Animation library based on SVGs";
license = stdenv.lib.licenses.publicDomain;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"reanimate-svg" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers
- , double-conversion, hspec, JuicyPixels, lens, linear, mtl
- , scientific, svg-tree, text, transformers, vector, xml
- }:
- mkDerivation {
- pname = "reanimate-svg";
- version = "0.9.8.0";
- sha256 = "1q7ij7w7zyjmmhhvfpjcx60jvs1p0w4jq9fbcah4ywn4azvr7gjv";
- libraryHaskellDepends = [
- attoparsec base bytestring containers double-conversion JuicyPixels
- lens linear mtl scientific text transformers vector xml
- ];
- testHaskellDepends = [
- attoparsec base hspec linear scientific svg-tree
- ];
- description = "SVG file loader and serializer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "reanimate-svg_0_13_0_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, Diff
, directory, double-conversion, filepath, hashable, JuicyPixels
, lens, linear, mtl, process, QuickCheck, scientific, tasty
@@ -214494,6 +212506,7 @@ self: {
description = "SVG file loader and serializer";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"reason-export" = callPackage
@@ -214843,33 +212856,14 @@ self: {
({ mkDerivation, base, composition-prelude }:
mkDerivation {
pname = "recursion";
- version = "2.2.4.2";
- sha256 = "15ahlgm0dilapk0y5jhwdvrims7nyzdsbdccq4x9jj0ddsszqr02";
+ version = "2.2.4.3";
+ sha256 = "0k5as7i7xyas6qhpr7wpnnf0rc93nsh4s9gsxdsk72xkwd86chkj";
libraryHaskellDepends = [ base composition-prelude ];
description = "A recursion schemes library for Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
"recursion-schemes" = callPackage
- ({ mkDerivation, base, base-orphans, comonad, free, HUnit
- , template-haskell, th-abstraction, transformers
- }:
- mkDerivation {
- pname = "recursion-schemes";
- version = "5.1.3";
- sha256 = "0a0mkwy3sxg5f1mdlblpn0xl3lwgilnmzs94jqab0pqx9gjkc5xj";
- revision = "2";
- editedCabalFile = "01q18gplv5k328qf74innnx2z2p15pg5nc6sikxq6fkkw4v3rkyb";
- libraryHaskellDepends = [
- base base-orphans comonad free template-haskell th-abstraction
- transformers
- ];
- testHaskellDepends = [ base HUnit template-haskell transformers ];
- description = "Representing common recursion patterns as higher-order functions";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "recursion-schemes_5_2_1" = callPackage
({ mkDerivation, base, base-orphans, comonad, containers, data-fix
, free, HUnit, template-haskell, th-abstraction, transformers
}:
@@ -214884,7 +212878,6 @@ self: {
testHaskellDepends = [ base HUnit template-haskell transformers ];
description = "Representing common recursion patterns as higher-order functions";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"recursion-schemes-ext" = callPackage
@@ -214969,6 +212962,8 @@ self: {
doHaddock = false;
description = "Extensible records and variants indexed by a type-level Red-Black tree";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"red-black-tree" = callPackage
@@ -215040,8 +213035,6 @@ self: {
];
description = "A driver for Redis key-value database";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"redis-hs" = callPackage
@@ -215066,8 +213059,8 @@ self: {
}:
mkDerivation {
pname = "redis-io";
- version = "1.0.0";
- sha256 = "119qga77xv0kq6cppgz6ry3f1ql4slswqwqg7qyiyg639sli9nfp";
+ version = "1.1.0";
+ sha256 = "0q2gr8sbxxpfx2qn9qmyxiwjj4nx32zmx4lv7g2vfmkj329crrdd";
libraryHaskellDepends = [
attoparsec auto-update base bytestring containers exceptions
iproute monad-control mtl network operational redis-resp
@@ -215083,8 +213076,6 @@ self: {
];
description = "Yet another redis client";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"redis-job-queue" = callPackage
@@ -215141,8 +213132,6 @@ self: {
];
description = "Combine redis caching and haxl";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"redland" = callPackage
@@ -215539,7 +213528,7 @@ self: {
, 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
+ , hspec, lens, loch-th, MemoTrie, mmorph, 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
@@ -215547,15 +213536,16 @@ self: {
}:
mkDerivation {
pname = "reflex";
- version = "0.7.1.0";
- sha256 = "0qxxhgkh3cv3fzxd9pgy78kxhi9b4q72jcq4n002h9qh8i6wwp7a";
+ version = "0.8.0.0";
+ sha256 = "14pw033ljs6x5bi5657cm5lpwwj6gkfgskbv5lpdi2hp7svzayql";
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 patch prim-uniq primitive profunctors random ref-tf reflection
- semialign semigroupoids stm syb template-haskell these time
- transformers unbounded-delays witherable
+ haskell-src-meta lens MemoTrie mmorph monad-control
+ monoidal-containers 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 constraints constraints-extras containers deepseq
@@ -215666,8 +213656,8 @@ self: {
}:
mkDerivation {
pname = "reflex-dom";
- version = "0.6.0.0";
- sha256 = "1iimsk89akb7v2i1k1gaa6a6bhdyf2rsggac9k1xizxkylara5k4";
+ version = "0.6.1.0";
+ sha256 = "190g56y16xvj508qdp3znlbbv4gb3ska38jbjpblvq8cz2d4nkdc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -215730,8 +213720,8 @@ self: {
}:
mkDerivation {
pname = "reflex-dom-core";
- version = "0.6.0.0";
- sha256 = "0819858z5p6847ac1rb1hsfr5ikn7x5xii8vgqbih4fg39mqfy14";
+ version = "0.6.1.0";
+ sha256 = "072bkjjmz6mjw42gchlbswhjhr9xs0vaybf6mvdycs618lb1zhf0";
libraryHaskellDepends = [
aeson base bifunctors bimap blaze-builder bytestring
case-insensitive constraints containers contravariant data-default
@@ -215816,8 +213806,8 @@ self: {
}:
mkDerivation {
pname = "reflex-dom-retractable";
- version = "0.1.3.0";
- sha256 = "0l2nz78cjx0p03h0h9pflhfd59p2j4drsglsm9yxys0zglbxnqwl";
+ version = "0.1.7.0";
+ sha256 = "0f40hxnlv7fpdjws0c720dz91zjxg8fxjl9qsmlilhapjzrjz9d2";
libraryHaskellDepends = [
base containers jsaddle mtl ref-tf reflex reflex-dom
];
@@ -215868,33 +213858,70 @@ self: {
broken = true;
}) {};
+ "reflex-external-ref" = callPackage
+ ({ mkDerivation, base, deepseq, reflex }:
+ mkDerivation {
+ pname = "reflex-external-ref";
+ version = "1.0.3.1";
+ sha256 = "0mv17j5g0h7y1ym4563xr1vc0sdvw0g4wdpx0a9aryk3i0k0i4mx";
+ libraryHaskellDepends = [ base deepseq reflex ];
+ description = "External reference with reactivity support";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"reflex-fsnotify" = callPackage
({ mkDerivation, base, containers, directory, filepath, fsnotify
, reflex
}:
mkDerivation {
pname = "reflex-fsnotify";
- version = "0.2.1.1";
- sha256 = "0r7fv01dgg5l45yspgj3n2gh6yq0qkjv19hj9vq6284x04vldnqj";
+ version = "0.2.1.2";
+ sha256 = "1g5zm12ypqr0agrgmbyglhh5f9p933hba2dismbyywsgdmn1i9bl";
libraryHaskellDepends = [
base containers directory filepath fsnotify reflex
];
- description = "reflex-frp interface for watching files";
+ description = "Reflex FRP interface for watching files";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "reflex-gadt-api" = callPackage
+ ({ mkDerivation, aeson, aeson-gadt-th, base, bytestring
+ , constraints, constraints-extras, containers, data-default
+ , jsaddle, reflex, reflex-dom-core, some, text, time
+ }:
+ mkDerivation {
+ pname = "reflex-gadt-api";
+ version = "0.2.1.0";
+ sha256 = "1mcxa87z6cldbc9p2mkdif5a8qa8sa0nhmawwm1gjqgvhzp7kmdp";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-gadt-th base bytestring constraints constraints-extras
+ containers data-default jsaddle reflex reflex-dom-core some text
+ time
+ ];
+ executableHaskellDepends = [
+ aeson aeson-gadt-th base constraints-extras reflex-dom-core text
+ time
+ ];
+ description = "Interact with a GADT API in your reflex-dom application";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {};
"reflex-ghci" = callPackage
- ({ mkDerivation, base, bytestring, dependent-sum, directory
- , filepath, fsnotify, mtl, optparse-applicative, primitive, process
- , ref-tf, reflex, reflex-fsnotify, reflex-process, reflex-vty
- , regex-tdfa, temporary, text, unix, vty
+ ({ mkDerivation, base, bytestring, directory, filepath, fsnotify
+ , optparse-applicative, process, reflex, reflex-fsnotify
+ , reflex-process, reflex-vty, regex-tdfa, temporary, text, unix
+ , vty
}:
mkDerivation {
pname = "reflex-ghci";
- version = "0.1.4.1";
- sha256 = "0505glpxc6yf7nwkgz9l2m8diqm39sal7vg9h1g8f8i3x6ab1rw3";
+ version = "0.1.5.1";
+ sha256 = "1m4sphj2qhj9ckjxjy6m4yzb2d6lq68a0fynv5q9ibc6550bm1sx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -215906,8 +213933,7 @@ self: {
text vty
];
testHaskellDepends = [
- base bytestring dependent-sum directory mtl primitive process
- ref-tf reflex reflex-process reflex-vty temporary text
+ base directory process reflex reflex-process temporary
];
description = "A GHCi widget library for use in reflex applications";
license = stdenv.lib.licenses.bsd3;
@@ -215996,6 +214022,57 @@ self: {
broken = true;
}) {};
+ "reflex-localize" = callPackage
+ ({ mkDerivation, base, jsaddle, mtl, reflex, reflex-external-ref
+ , text
+ }:
+ mkDerivation {
+ pname = "reflex-localize";
+ version = "1.0.2.0";
+ sha256 = "0iwxj8shik06r1wdhl8p5spvvn43xswilzhid8mfc3hj5khpzdzm";
+ libraryHaskellDepends = [
+ base jsaddle mtl reflex reflex-external-ref text
+ ];
+ description = "Localization library for reflex";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "reflex-localize-dom" = callPackage
+ ({ mkDerivation, base, containers, reflex, reflex-dom
+ , reflex-localize, text
+ }:
+ mkDerivation {
+ pname = "reflex-localize-dom";
+ version = "1.0.0.0";
+ sha256 = "1y2m15l6xxcmhhpn5jq3dfvzd04s5d84pm5s7iff9s0gkikhz4ga";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers reflex reflex-dom reflex-localize text
+ ];
+ description = "Helper widgets for reflex-localize";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "reflex-monad-auth" = callPackage
+ ({ mkDerivation, base, jsaddle, mtl, reflex, reflex-external-ref }:
+ mkDerivation {
+ pname = "reflex-monad-auth";
+ version = "0.1.0.1";
+ sha256 = "1gfhh462rd401rmcnb7lgn9443y2fg16xpyp4kgkzi8c4l8ja4af";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base jsaddle mtl reflex reflex-external-ref
+ ];
+ description = "Utilities to split reflex app to authorized and not authorized contexts";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"reflex-orphans" = callPackage
({ mkDerivation, base, deepseq, dependent-map, mtl, ref-tf, reflex
, tasty, tasty-hunit, these
@@ -216021,8 +214098,8 @@ self: {
}:
mkDerivation {
pname = "reflex-process";
- version = "0.3.0.0";
- sha256 = "1hfzp0hnqhpdcri6qqqbndl3nlf028hn78kmdc6h1mzwx5va7rh5";
+ version = "0.3.1.0";
+ sha256 = "1z86h7wkzg69d6kw0y37pzr4ldpg9qkl8wx5mw7r1h82isb9wgbl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -216035,7 +214112,7 @@ self: {
async base bytestring containers dependent-sum hspec mtl primitive
process ref-tf reflex unix
];
- description = "reflex-frp interface for running shell commands";
+ description = "Reflex FRP interface for running system processes";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -216080,8 +214157,6 @@ self: {
];
description = "reflex host methods for testing without external events";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"reflex-transformers" = callPackage
@@ -216109,8 +214184,10 @@ self: {
}:
mkDerivation {
pname = "reflex-vty";
- version = "0.1.4.0";
- sha256 = "0z4yca6hh5rwgybsf6ssklhvpl34ikvi9j6wq99df5y0hpy9185f";
+ version = "0.1.4.1";
+ sha256 = "0hv2h1pzz808bg2bvignb3d2wma1aw96zdf545f9p01vjr1b656a";
+ revision = "1";
+ editedCabalFile = "0gpfbpzcg516kghsgwc4gnbp217p6phw9bh1qhlkzd0ji35gdibm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -216121,7 +214198,7 @@ self: {
executableHaskellDepends = [
base containers reflex text time transformers vty
];
- description = "Reflex FRP host and widgets for vty applications";
+ description = "Reflex FRP host and widgets for VTY applications";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
@@ -216170,8 +214247,8 @@ self: {
}:
mkDerivation {
pname = "reform-happstack";
- version = "0.2.5.3";
- sha256 = "04fnn47rcm7n98q0qifyyg9jrh09mzchirwsgi2zzb6j9mciz6ci";
+ version = "0.2.5.4";
+ sha256 = "1xknj906vr0q6vrxrvna1777v7hsdg1l3r0wwnga7k1yn5hcfc76";
libraryHaskellDepends = [
base bytestring happstack-server mtl random reform text utf8-string
];
@@ -216235,6 +214312,8 @@ self: {
];
description = "See README for more info";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"refresht" = callPackage
@@ -216369,24 +214448,6 @@ self: {
}) {};
"regex-applicative" = callPackage
- ({ mkDerivation, base, containers, criterion, smallcheck, tasty
- , tasty-hunit, tasty-smallcheck, transformers
- }:
- mkDerivation {
- pname = "regex-applicative";
- version = "0.3.3.1";
- sha256 = "0p0anx5vamrhrdvviwkh2zn6pa3pv2bjb7nfyc7dvz2q7g14y1lg";
- libraryHaskellDepends = [ base containers transformers ];
- testHaskellDepends = [
- base containers smallcheck tasty tasty-hunit tasty-smallcheck
- transformers
- ];
- benchmarkHaskellDepends = [ base criterion ];
- description = "Regex-based parsing with applicative interface";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "regex-applicative_0_3_4" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, criterion, deepseq, filtrable, megaparsec, parsec, parsers
, parsers-megaparsec, smallcheck, tasty, tasty-hunit
@@ -216407,7 +214468,6 @@ self: {
];
description = "Regex-based parsing with applicative interface";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-applicative-text" = callPackage
@@ -216644,8 +214704,8 @@ self: {
}:
mkDerivation {
pname = "regex-pcre-builtin";
- version = "0.95.1.2.8.43";
- sha256 = "1bxn8d3g9w1a5q5vcz744yx019d2rd79i07qcjq4jqkjafni1bml";
+ version = "0.95.1.3.8.43";
+ sha256 = "0n1sbsjch0n5cgv2lhw2yfaxb611mckyg0jpz2kcbyj5hcrvzv3c";
libraryHaskellDepends = [
array base bytestring containers regex-base text
];
@@ -216912,6 +214972,8 @@ self: {
pname = "regex-wrapper";
version = "0.1.0.1";
sha256 = "0ibkdd5xpilzm5qngn01csrin6ial1hhjzgpi3wjv6krlswdil34";
+ revision = "1";
+ editedCabalFile = "1ickvkpvxpqbj5fwhf3jajkp90b2sc3vz3l5sqyi7v4xj2bx8m6m";
libraryHaskellDepends = [
aeson base bytestring containers hashable regex-tdfa string-conv
text
@@ -217134,8 +215196,8 @@ self: {
}:
mkDerivation {
pname = "registry";
- version = "0.1.9.3";
- sha256 = "1x418lv2nnw5ryrinciq1dg7wgmz0zsvv8v3mfrp38rx5x88hbic";
+ version = "0.2.0.1";
+ sha256 = "0vpgjxm5mx11vnfhnvlzlawaqwa0a99iyimpd333ibz0psw10wka";
libraryHaskellDepends = [
base containers exceptions hashable mmorph mtl protolude resourcet
semigroupoids semigroups template-haskell text transformers-base
@@ -217150,8 +215212,6 @@ self: {
testToolDepends = [ tasty-discover ];
description = "data structure for assembling components";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"registry-hedgehog" = callPackage
@@ -217203,6 +215263,8 @@ self: {
libraryHaskellDepends = [ base vector ];
description = "Simple linear and quadratic regression";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"regular" = callPackage
@@ -217409,8 +215471,6 @@ self: {
testToolDepends = [ doctest-discover hspec-discover ];
description = "A data structure representing Relations on Sets";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"relational-postgresql8" = callPackage
@@ -217933,6 +215993,8 @@ self: {
];
description = "Simple Utf8 wrapper for ByteString Builder with conversion classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"renderable" = callPackage
@@ -217981,8 +216043,8 @@ self: {
pname = "repa";
version = "3.4.1.4";
sha256 = "17m3wl4hvf04fxwm4fflhnv41yl9bm263hnbpxc8x6xqwifplq23";
- revision = "4";
- editedCabalFile = "0bay8j0fm7l2nhrbdvy9fvrb6hgkrk5qx9y03az2kakvjdc4gvvh";
+ revision = "6";
+ editedCabalFile = "09b2b98pqbjxp4xign29b67yn6za8lfxxqlv1j52sbvh5bbmbd7s";
libraryHaskellDepends = [
base bytestring ghc-prim QuickCheck template-haskell vector
];
@@ -218001,6 +216063,8 @@ self: {
libraryHaskellDepends = [ base repa vector ];
description = "Algorithms using the Repa array library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"repa-array" = callPackage
@@ -218098,6 +216162,8 @@ self: {
];
description = "Examples using the Repa array library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"repa-fftw" = callPackage
@@ -218203,6 +216269,8 @@ self: {
];
description = "Scalar data types and conversions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"repa-series" = callPackage
@@ -218334,6 +216402,23 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "replace-megaparsec_1_4_4_0" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, megaparsec
+ , parser-combinators, text
+ }:
+ mkDerivation {
+ pname = "replace-megaparsec";
+ version = "1.4.4.0";
+ sha256 = "1nlbs01ghm6gllkc7chv06hdrwlb94cipcwcx84wzasdqdzvcdl1";
+ libraryHaskellDepends = [
+ base bytestring megaparsec parser-combinators text
+ ];
+ testHaskellDepends = [ base bytestring Cabal megaparsec text ];
+ description = "Find, replace, and split string patterns with Megaparsec parsers (instead of regex)";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"replica" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, Diff
, file-embed, http-types, QuickCheck, quickcheck-instances
@@ -218391,40 +216476,6 @@ self: {
}:
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;
- }) {};
-
- "repline_0_3_0_0" = callPackage
- ({ mkDerivation, base, containers, exceptions, haskeline, mtl
- , process
- }:
- mkDerivation {
- pname = "repline";
- version = "0.3.0.0";
- sha256 = "0niihfyggg2qisadg7w49cr5k5qyyynia93iip0ng2bbmzwi88g8";
- libraryHaskellDepends = [
- base containers exceptions haskeline mtl process
- ];
- testHaskellDepends = [ base containers mtl process ];
- description = "Haskeline wrapper for GHCi-like REPL interfaces";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "repline_0_4_0_0" = callPackage
- ({ mkDerivation, base, containers, exceptions, haskeline, mtl
- , process
- }:
- mkDerivation {
- pname = "repline";
version = "0.4.0.0";
sha256 = "1dspwi28krinkxdd7waq4y6plz0dfmzz72885p9pcqp1r14qrhj3";
libraryHaskellDepends = [
@@ -218433,7 +216484,6 @@ self: {
testHaskellDepends = [ base containers mtl process ];
description = "Haskeline wrapper for GHCi-like REPL interfaces";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repo-based-blog" = callPackage
@@ -218578,36 +216628,6 @@ self: {
"req" = callPackage
({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder
- , bytestring, case-insensitive, connection, hspec, hspec-core
- , hspec-discover, http-api-data, http-client, http-client-tls
- , http-types, modern-uri, monad-control, mtl, QuickCheck, retry
- , template-haskell, text, time, transformers, transformers-base
- , unordered-containers
- }:
- mkDerivation {
- pname = "req";
- version = "3.2.0";
- sha256 = "1r6fkhn99v6vil8khd23pdai3j6wgn724cy00q5x20fn3jz88ksw";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson authenticate-oauth base blaze-builder bytestring
- case-insensitive connection http-api-data http-client
- http-client-tls http-types modern-uri monad-control mtl retry
- template-haskell text time transformers transformers-base
- ];
- testHaskellDepends = [
- aeson base blaze-builder bytestring case-insensitive hspec
- hspec-core http-client http-types modern-uri monad-control mtl
- QuickCheck retry template-haskell text time unordered-containers
- ];
- testToolDepends = [ hspec-discover ];
- doCheck = false;
- description = "Easy-to-use, type-safe, expandable, high-level HTTP client library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "req_3_6_0" = callPackage
- ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder
, bytestring, case-insensitive, connection, exceptions, hspec
, hspec-core, hspec-discover, http-api-data, http-client
, http-client-tls, http-types, modern-uri, monad-control, mtl
@@ -218616,10 +216636,8 @@ self: {
}:
mkDerivation {
pname = "req";
- version = "3.6.0";
- sha256 = "1ks9iqnnsa8m65ndyblyndb95fc4r4xachq1zrik04adxrdj3b50";
- revision = "1";
- editedCabalFile = "1vr4926n5ac8h4i71q0hqwgf78l7f572wal22ndys3dscvg4a7f1";
+ version = "3.8.0";
+ sha256 = "1qd0bawdxig6sldlhqgj8cpkzfy7da9yy0wkvzs6mps6yk14kbap";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson authenticate-oauth base blaze-builder bytestring
@@ -218637,7 +216655,6 @@ self: {
doCheck = false;
description = "Easy-to-use, type-safe, expandable, high-level HTTP client library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"req-conduit" = callPackage
@@ -218721,6 +216738,8 @@ self: {
];
description = "A local http server to catch the HTTP redirect";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"request-monad" = callPackage
@@ -218743,8 +216762,8 @@ self: {
}:
mkDerivation {
pname = "require";
- version = "0.4.9";
- sha256 = "0f04cpgcgl5d0zj8j5d2wfg8m1g2zw5lw39qj8797y3shxh8jdih";
+ version = "0.4.10";
+ sha256 = "0ha9301ncb5li3sxjlbbq5hgjijr40vl5jy33fsi0wn13zp99x94";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -218765,8 +216784,6 @@ self: {
];
description = "Scrap your qualified import clutter";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"requirements" = callPackage
@@ -219132,27 +217149,6 @@ self: {
broken = true;
}) {};
- "resourcet_1_1_11" = callPackage
- ({ mkDerivation, base, containers, exceptions, hspec, lifted-base
- , mmorph, monad-control, mtl, transformers, transformers-base
- , transformers-compat, unliftio-core
- }:
- mkDerivation {
- pname = "resourcet";
- version = "1.1.11";
- sha256 = "1n94m2c7rxk2bgm8wywrkp9pmqlnv2dl35yaylninzm8xk1xavil";
- revision = "2";
- editedCabalFile = "08v09k5i8nr09f1kscq044hzibq6hsykd3v1xr480dp4hljcw5kc";
- libraryHaskellDepends = [
- base containers exceptions lifted-base mmorph monad-control mtl
- transformers transformers-base transformers-compat unliftio-core
- ];
- testHaskellDepends = [ base hspec lifted-base transformers ];
- description = "Deterministic allocation and freeing of scarce resources";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"resourcet" = callPackage
({ mkDerivation, base, containers, exceptions, hspec, mtl
, primitive, transformers, unliftio-core
@@ -219169,6 +217165,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "resourcet-pool" = callPackage
+ ({ mkDerivation, base, resource-pool, resourcet }:
+ mkDerivation {
+ pname = "resourcet-pool";
+ version = "0.1.0.0";
+ sha256 = "1jf6sbyhxrqbkdxiv330rk46kdvbrr0c4pybnm9cmij9wdqs15bd";
+ libraryHaskellDepends = [ base resource-pool resourcet ];
+ description = "A small library to convert a Pool into an Acquire";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"respond" = callPackage
({ mkDerivation, aeson, base, bifunctors, bytestring, containers
, data-default-class, exceptions, fast-logger, formatting, HList
@@ -219402,6 +217409,19 @@ self: {
broken = true;
}) {};
+ "restartable" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, unix }:
+ mkDerivation {
+ pname = "restartable";
+ version = "0.3.0.0";
+ sha256 = "0bar7sy53pylq13wkbb4j3i7y81g6y203njkh9vlid7nh109j409";
+ libraryHaskellDepends = [ aeson base bytestring unix ];
+ description = "Minimal live coding library for model-view-event-update applications";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"restful-snap" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, containers
, data-default, digestive-functors, errors, heist, lens, map-syntax
@@ -220025,19 +218045,6 @@ self: {
}) {};
"rfc5051" = callPackage
- ({ mkDerivation, base, bytestring, containers }:
- mkDerivation {
- pname = "rfc5051";
- version = "0.1.0.4";
- sha256 = "1lxkq414ni986ciml4gbvf463fn55z299knky7pq3ixb1qislpb1";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base bytestring containers ];
- description = "Simple unicode collation as per RFC5051";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "rfc5051_0_2" = callPackage
({ mkDerivation, base, containers, text }:
mkDerivation {
pname = "rfc5051";
@@ -220047,7 +218054,6 @@ self: {
testHaskellDepends = [ base text ];
description = "Simple unicode collation as per RFC5051";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rg" = callPackage
@@ -220067,6 +218073,8 @@ self: {
];
description = "A dynamic/unbounded alternative to Bounded Enum";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rgb-color-model" = callPackage
@@ -220080,24 +218088,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "rhine" = callPackage
- ({ mkDerivation, base, containers, deepseq, dunai, free
- , MonadRandom, random, simple-affine-space, time, transformers
- , vector-sized
+ "rhbzquery" = callPackage
+ ({ mkDerivation, base, bytestring, config-ini, directory
+ , email-validate, extra, filepath, http-types, optparse-applicative
+ , simple-cmd, simple-cmd-args, text
}:
mkDerivation {
- pname = "rhine";
- version = "0.6.0";
- sha256 = "0dmdf1i1z5xj5l9p6vlln8yyy3pa1nd6m1b7spwm8kpfzzw3545f";
- libraryHaskellDepends = [
- base containers deepseq dunai free MonadRandom random
- simple-affine-space time transformers vector-sized
+ pname = "rhbzquery";
+ version = "0.1.1";
+ sha256 = "0nlh81cmkfsjgsmrrrcbf51vzmni1ddrhb8dzzxk9a8s76ybmcks";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bytestring config-ini directory email-validate extra filepath
+ http-types optparse-applicative simple-cmd simple-cmd-args text
];
- description = "Functional Reactive Programming with type-level clocks";
+ testHaskellDepends = [ base simple-cmd ];
+ description = "Bugzilla query tool";
license = stdenv.lib.licenses.bsd3;
}) {};
- "rhine_0_7_0" = callPackage
+ "rhine" = callPackage
({ mkDerivation, base, containers, deepseq, dunai, free
, MonadRandom, random, simple-affine-space, time, transformers
, vector-sized
@@ -220112,24 +218123,9 @@ self: {
];
description = "Functional Reactive Programming with type-level clocks";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rhine-gloss" = callPackage
- ({ mkDerivation, base, dunai, gloss, rhine }:
- mkDerivation {
- pname = "rhine-gloss";
- version = "0.6.0.1";
- sha256 = "1j3sbdlfn6hkksfxa5nw874pm9yxmc8hy14msjfsl3g3y0d501bh";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base dunai gloss rhine ];
- executableHaskellDepends = [ base ];
- description = "Gloss backend for Rhine";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "rhine-gloss_0_7_0" = callPackage
({ mkDerivation, base, dunai, gloss, rhine, transformers }:
mkDerivation {
pname = "rhine-gloss";
@@ -220141,7 +218137,6 @@ self: {
executableHaskellDepends = [ base ];
description = "Gloss backend for Rhine";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rhythm-game-tutorial" = callPackage
@@ -220263,6 +218258,8 @@ self: {
];
description = "Static site generator based on Shake";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rib-core" = callPackage
@@ -220536,8 +218533,8 @@ self: {
}:
mkDerivation {
pname = "ring-buffers";
- version = "0.1.1";
- sha256 = "1xzvbygwp4zqz1nsbmb70062grzqw3jdwgbaaxn7hgirinims64h";
+ version = "0.2";
+ sha256 = "1bbmc8hasi8ralqzmfg2wq3bqa4qabjjlb9wm3csx2kdlhp4v15y";
libraryHaskellDepends = [
base contiguous primitive primitive-unlifted semirings
];
@@ -221000,8 +218997,6 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "RNG within an IORef for convenient concurrent use";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"rob" = callPackage
@@ -221205,6 +219200,8 @@ self: {
];
description = "Haskell bindings to RocksDB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) rocksdb;};
"rocksdb-haskell-jprupp" = callPackage
@@ -221229,26 +219226,6 @@ self: {
"rocksdb-query" = callPackage
({ mkDerivation, base, bytestring, cereal, conduit, data-default
- , hspec, resourcet, rocksdb-haskell, unliftio
- }:
- mkDerivation {
- pname = "rocksdb-query";
- version = "0.3.2";
- sha256 = "07bp96sfcj34f4vgi3bynxykrad672hlg9d8rsxc0xxai8iamzrm";
- libraryHaskellDepends = [
- base bytestring cereal conduit resourcet rocksdb-haskell unliftio
- ];
- testHaskellDepends = [
- base cereal data-default hspec rocksdb-haskell unliftio
- ];
- description = "RocksDB database querying library for Haskell";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "rocksdb-query_0_4_2" = callPackage
- ({ mkDerivation, base, bytestring, cereal, conduit, data-default
, hspec, resourcet, rocksdb-haskell-jprupp, unliftio
}:
mkDerivation {
@@ -221264,8 +219241,6 @@ self: {
];
description = "RocksDB database querying library for Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"roguestar" = callPackage
@@ -221385,6 +219360,50 @@ self: {
broken = true;
}) {};
+ "rollbar-cli" = callPackage
+ ({ mkDerivation, base, optparse-applicative, rollbar-client }:
+ mkDerivation {
+ pname = "rollbar-cli";
+ version = "0.1.0";
+ sha256 = "1fspvwhgng251m5paps2nj3x73c1bms4s9y202nbdnil0wb1wdlf";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base optparse-applicative rollbar-client
+ ];
+ executableHaskellDepends = [ base rollbar-client ];
+ testHaskellDepends = [ base ];
+ description = "Simple CLI tool to perform commons tasks such as tracking deploys";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "rollbar-client" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory, exceptions
+ , hspec, hspec-discover, mtl, process, req, text
+ , unordered-containers, yaml
+ }:
+ mkDerivation {
+ pname = "rollbar-client";
+ version = "0.1.0";
+ sha256 = "18ca2mrvl7kn226jnrv2yaqwanx6spf0sg034asp5bwnhn15fvb9";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring directory exceptions mtl process req text
+ unordered-containers yaml
+ ];
+ testHaskellDepends = [
+ aeson base hspec mtl text unordered-containers yaml
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Core library to communicate with Rollbar API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"rollbar-hs" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
, hostname, hspec, hspec-golden-aeson, http-client, http-conduit
@@ -221409,6 +219428,55 @@ self: {
broken = true;
}) {};
+ "rollbar-wai" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive, hspec
+ , hspec-discover, http-types, mtl, process, req, rollbar-client
+ , text, unordered-containers, wai, wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "rollbar-wai";
+ version = "0.1.0";
+ sha256 = "19a1pngqprnmpl4547vssbha4nzjj9930ln4qyv8yk4skqkvny4j";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring case-insensitive http-types rollbar-client
+ text unordered-containers wai wai-extra
+ ];
+ testHaskellDepends = [
+ aeson base hspec http-types mtl process req rollbar-client text
+ unordered-containers wai warp
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Provides error reporting capabilities to WAI based applications through Rollbar API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "rollbar-yesod" = callPackage
+ ({ mkDerivation, base, hspec, hspec-discover, rollbar-client
+ , rollbar-wai, unliftio, wai, yesod-core, yesod-test
+ }:
+ mkDerivation {
+ pname = "rollbar-yesod";
+ version = "0.1.0";
+ sha256 = "1azz0braw91mcw3gibixgpa6bd6z76k8q742qzai3xz1pivdf09f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base rollbar-client rollbar-wai unliftio wai yesod-core
+ ];
+ testHaskellDepends = [
+ base hspec rollbar-client wai yesod-core yesod-test
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "Provides error reporting capabilities to Yesod applications through Rollbar API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"roller" = callPackage
({ mkDerivation, base, optparse-applicative, random
, regex-applicative
@@ -221489,8 +219557,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq integer-gmp ];
description = "RON";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ron-rdt" = callPackage
@@ -221658,6 +219724,21 @@ self: {
broken = true;
}) {};
+ "rosebud" = callPackage
+ ({ mkDerivation, base, containers, hspec, hspec-discover
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "rosebud";
+ version = "0.2.0.0";
+ sha256 = "0g21b57qiijd5dmvnzky89kfs4zi2gbgabsj5bgzx2hnban08rm4";
+ libraryHaskellDepends = [ base containers transformers ];
+ testHaskellDepends = [ base containers hspec QuickCheck ];
+ testToolDepends = [ hspec-discover ];
+ description = "Common rose tree/forest functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"rosezipper" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -221839,6 +219920,8 @@ self: {
testHaskellDepends = [ base long-double ];
description = "Correctly-rounded arbitrary-precision floating-point arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) gmp; inherit (pkgs) mpfr;};
"rounded-hw" = callPackage
@@ -221892,8 +219975,6 @@ self: {
];
description = "Bidirectional (de-)serialization";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"roundtrip-aeson" = callPackage
@@ -221927,8 +220008,6 @@ self: {
libraryHaskellDepends = [ base mtl parsec roundtrip ];
description = "Bidirectional (de-)serialization";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"roundtrip-xml" = callPackage
@@ -222040,8 +220119,8 @@ self: {
({ mkDerivation, base, hspec, rowdy, yesod-core }:
mkDerivation {
pname = "rowdy-yesod";
- version = "0.0.1.0";
- sha256 = "17k9bbxwpmxpswkmax6jrlcfrp6qhgdkjixsp4d6rn7mj676010g";
+ version = "0.0.1.1";
+ sha256 = "120n4n17n3pkpc23bpjn2vc7w3zaifmyd4mr86n16hn993482b1s";
libraryHaskellDepends = [ base rowdy yesod-core ];
testHaskellDepends = [ base hspec rowdy yesod-core ];
description = "An EDSL for web application routes";
@@ -222136,24 +220215,6 @@ self: {
}) {};
"rpmbuild-order" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, directory
- , fgl, filepath, optparse-applicative, process, simple-cmd-args
- }:
- mkDerivation {
- pname = "rpmbuild-order";
- version = "0.3.1";
- sha256 = "1xa4crcqm4avkpdcksj610gpzk7crfkwa2pk2nn1qsmjsrixfc2b";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base bytestring Cabal containers directory fgl filepath
- optparse-applicative process simple-cmd-args
- ];
- description = "Order RPM packages by dependencies";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "rpmbuild-order_0_4_3_1" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, directory, extra, fgl, filepath, hspec, optparse-applicative
, process, simple-cmd, simple-cmd-args, unix
@@ -222176,6 +220237,7 @@ self: {
description = "Order RPM packages by dependencies";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rrule" = callPackage
@@ -222184,8 +220246,8 @@ self: {
}:
mkDerivation {
pname = "rrule";
- version = "0.1.0.0";
- sha256 = "0059rrvvfrcsycc8aczayphscviidrq8ig3j4x3ln3xjfscq2l2l";
+ version = "0.1.1";
+ sha256 = "0xb0yf0p5r7szb7zxlcc95d22f49s9ql671f1lmvjvzg1jkmsvva";
libraryHaskellDepends = [
base megaparsec parser-combinators text time
];
@@ -222289,6 +220351,8 @@ self: {
libraryHaskellDepends = [ base HaXml network network-uri time ];
description = "A library for generating RSS 2.0 feeds.";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rss-conduit" = callPackage
@@ -222302,10 +220366,8 @@ self: {
}:
mkDerivation {
pname = "rss-conduit";
- version = "0.6.0.0";
- sha256 = "0crp7z6s5xch5jggyyg1a2jcijgl5cg17wiiqkcfmwjdkraz7ax9";
- revision = "1";
- editedCabalFile = "1xgqfn7dlzz79j4krmqg4d2xlybm6x4b0s8gklphn3lccwpicfy8";
+ version = "0.6.0.1";
+ sha256 = "07fmf5d93ywgqz4fp0aw5n1vzqlphrhcmiqrc0xpcphi17ig9m7l";
libraryHaskellDepends = [
atom-conduit base base-compat-batteries conduit conduit-combinators
containers dublincore-xml-conduit microlens microlens-th safe
@@ -222567,6 +220629,8 @@ self: {
libraryHaskellDepends = [ array base mtl parsec safe strict Vec ];
description = "relatively useful fractal functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"ruin" = callPackage
@@ -222651,6 +220715,8 @@ self: {
libraryHaskellDepends = [ base primitive primitive-unlifted ];
description = "runST without boxing penalty";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"rungekutta" = callPackage
@@ -222777,8 +220843,6 @@ self: {
];
description = "Random Variables";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"rwlock" = callPackage
@@ -223004,8 +221068,6 @@ self: {
];
description = "control-monad-exception Instances for safe-failure";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"safe-foldable" = callPackage
@@ -224207,6 +222269,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "say-my-name" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "say-my-name";
+ version = "0.1.0.0";
+ sha256 = "1fc9jgyapdc0rlni6l60b8ya272vg8km8p97pb52f4gj5z48zk3j";
+ libraryHaskellDepends = [ base ];
+ description = "Require explicit type application for some type variables";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"sbp" = callPackage
({ mkDerivation, aeson, aeson-pretty, array, base
, base64-bytestring, basic-prelude, binary, binary-conduit
@@ -224259,17 +222332,17 @@ self: {
, containers, crackNum, deepseq, directory, doctest, filepath
, gauge, Glob, hlint, mtl, pretty, process, QuickCheck, random
, silently, syb, tasty, tasty-golden, tasty-hunit, tasty-quickcheck
- , template-haskell, time, transformers, z3
+ , template-haskell, time, transformers, uniplate, z3
}:
mkDerivation {
pname = "sbv";
- version = "8.8";
- sha256 = "0xm05g9kxh38jjbssnhyw6c8q4rsyjndm2b8r36cqwx0n607zvgy";
+ version = "8.9";
+ sha256 = "1h8bhi1pjlg0v16wwqcvil7gq98b6dn8ckzmrsgb8sc3qz0nxj51";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array async base containers crackNum deepseq directory filepath mtl
pretty process QuickCheck random syb template-haskell time
- transformers
+ transformers uniplate
];
testHaskellDepends = [
base bytestring containers crackNum directory doctest filepath Glob
@@ -224571,6 +222644,8 @@ self: {
];
description = "Metadata types for Albedo Scanners";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"scan-vector-machine" = callPackage
@@ -224783,15 +222858,15 @@ self: {
"scheduler" = callPackage
({ mkDerivation, atomic-primops, base, deepseq, doctest, exceptions
- , genvalidity-hspec, hspec, mwc-random, primitive, QuickCheck
+ , genvalidity-hspec, hspec, mwc-random, primitive, pvar, QuickCheck
, template-haskell, unliftio, unliftio-core, vector
}:
mkDerivation {
pname = "scheduler";
- version = "1.4.2.3";
- sha256 = "0xf5gmla5h0k0a84f7b5xyk98xr72a9mygjlg5c913vc29i31ccx";
+ version = "1.5.0";
+ sha256 = "19sgc3ydbjjlgd6jh9pqfxv3gq1mbgaicshf7kbj5yf5cnimq5vp";
libraryHaskellDepends = [
- atomic-primops base deepseq exceptions primitive unliftio-core
+ atomic-primops base deepseq exceptions primitive pvar unliftio-core
];
testHaskellDepends = [
base deepseq doctest genvalidity-hspec hspec mwc-random QuickCheck
@@ -224799,8 +222874,6 @@ self: {
];
description = "Work stealing scheduler";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"schedyield" = callPackage
@@ -225296,37 +223369,6 @@ self: {
}:
mkDerivation {
pname = "scotty";
- version = "0.11.6";
- sha256 = "0ghn41nvkr8vajlm6y12wz3jbbyf4vyklspx0bhyisn1mps53p57";
- libraryHaskellDepends = [
- aeson base base-compat-batteries blaze-builder bytestring
- case-insensitive data-default-class exceptions fail http-types
- monad-control mtl nats network regex-compat text transformers
- transformers-base transformers-compat wai wai-extra warp
- ];
- testHaskellDepends = [
- async base bytestring data-default-class directory hspec hspec-wai
- http-types lifted-base network text wai
- ];
- testToolDepends = [ hspec-discover ];
- benchmarkHaskellDepends = [
- base bytestring data-default-class lucid mtl text transformers
- weigh
- ];
- description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "scotty_0_12" = callPackage
- ({ mkDerivation, aeson, async, base, base-compat-batteries
- , blaze-builder, bytestring, case-insensitive, data-default-class
- , directory, exceptions, fail, hspec, hspec-discover, hspec-wai
- , http-types, lifted-base, lucid, monad-control, mtl, nats, network
- , regex-compat, text, transformers, transformers-base
- , transformers-compat, wai, wai-extra, warp, weigh
- }:
- mkDerivation {
- pname = "scotty";
version = "0.12";
sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1";
revision = "2";
@@ -225348,7 +223390,6 @@ self: {
];
description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scotty-binding-play" = callPackage
@@ -225440,6 +223481,8 @@ self: {
];
description = "Html form validation using `ditto`";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"scotty-format" = callPackage
@@ -225487,8 +223530,6 @@ self: {
libraryHaskellDepends = [ base haxl scotty text ];
description = "Combine scotty and haxl";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"scotty-params-parser" = callPackage
@@ -225505,6 +223546,8 @@ self: {
];
description = "HTTP-request's query parameters parser abstraction for \"scotty\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"scotty-path-normalizer" = callPackage
@@ -225594,6 +223637,8 @@ self: {
];
description = "TLS for Scotty";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"scotty-utils" = callPackage
@@ -225959,8 +224004,8 @@ self: {
}:
mkDerivation {
pname = "sdl2";
- version = "2.5.2.0";
- sha256 = "18cgckkq4yj0xwj3pmsfsqxazl7rcmb3f7b45kv9nwvjwyqi0hcw";
+ version = "2.5.3.0";
+ sha256 = "08l24cb92spnx3bn26bj0z2cszpsawhaa9vvhblvsr3d6z76065q";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -226421,29 +224466,6 @@ self: {
({ mkDerivation, base, base16-bytestring, bytestring, cereal
, deepseq, entropy, hashable, hspec, hspec-discover, HUnit
, monad-par, mtl, QuickCheck, secp256k1, string-conversions
- }:
- mkDerivation {
- pname = "secp256k1-haskell";
- version = "0.2.5";
- sha256 = "12hv8fi2acvv0pmk9scsw584sj2b9hfacr7bhbrry10sihrd4xv4";
- libraryHaskellDepends = [
- base base16-bytestring bytestring cereal deepseq entropy hashable
- QuickCheck string-conversions
- ];
- libraryPkgconfigDepends = [ secp256k1 ];
- testHaskellDepends = [
- base base16-bytestring bytestring cereal deepseq entropy hashable
- hspec HUnit monad-par mtl QuickCheck string-conversions
- ];
- testToolDepends = [ hspec-discover ];
- description = "Bindings for secp256k1";
- license = stdenv.lib.licenses.mit;
- }) {inherit (pkgs) secp256k1;};
-
- "secp256k1-haskell_0_5_0" = callPackage
- ({ mkDerivation, base, base16-bytestring, bytestring, cereal
- , deepseq, entropy, hashable, hspec, hspec-discover, HUnit
- , monad-par, mtl, QuickCheck, secp256k1, string-conversions
, unliftio-core
}:
mkDerivation {
@@ -226463,7 +224485,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Bindings for secp256k1";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) secp256k1;};
"secp256k1-legacy" = callPackage
@@ -226530,8 +224551,6 @@ self: {
];
description = "Information-theoretic secure secret sharing";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"secrm" = callPackage
@@ -226710,12 +224729,12 @@ self: {
}) {};
"selections" = callPackage
- ({ mkDerivation, base, bifunctors, comonad, profunctors }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "selections";
- version = "0.2.0.0";
- sha256 = "000hdwdp56pc67j1iw0mc6m74dfim67g16ib4yr7vyilq8rfccb0";
- libraryHaskellDepends = [ base bifunctors comonad profunctors ];
+ version = "0.3.0.0";
+ sha256 = "0vl7rqrz0p5m7iwymaw3b8l2kbaikwhmkhq82hq79581vj99fdpw";
+ libraryHaskellDepends = [ base ];
description = "Combinators for operating with selections over an underlying functor";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -226994,8 +225013,8 @@ self: {
({ mkDerivation, base, containers, lattices }:
mkDerivation {
pname = "semibounded-lattices";
- version = "0.1.0.1";
- sha256 = "0xqxmh0chq4vgga5lx2d5pcz4rq000kgpkglj8jgdv2nx6rf8pka";
+ version = "0.1.1.0";
+ sha256 = "0nlmh84bmizs5dllf3292svs4a5d9yj0l78mcryqmblf1bzp74f4";
libraryHaskellDepends = [ base containers lattices ];
testHaskellDepends = [ base ];
description = "A Haskell implementation of semibounded lattices";
@@ -227177,14 +225196,15 @@ self: {
}:
mkDerivation {
pname = "semver";
- version = "0.3.4";
- sha256 = "0swffqyqraz2nxn64mwxp29zfdq7135q2j815yzwh2pk135xmns2";
+ version = "0.4.0.1";
+ sha256 = "0hgn3wd1wv3y1723kvd9clj72z65f6m28yf75mxl1zjfd0kf6ivw";
+ revision = "1";
+ editedCabalFile = "13c692s2fbn6xygw70aglj84a8hq549gcj1p40g11j77w68p9xx4";
libraryHaskellDepends = [ attoparsec base deepseq hashable text ];
testHaskellDepends = [ base tasty tasty-hunit text ];
benchmarkHaskellDepends = [ base criterion text ];
description = "Representation, manipulation, and de/serialisation of Semantic Versions";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
+ license = stdenv.lib.licenses.mpl20;
}) {};
"semver-range" = callPackage
@@ -227483,18 +225503,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "seqid_0_1_0" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "seqid";
- version = "0.1.0";
- sha256 = "0q5vs8kravhiq906rrzi5iw5837bb8s6fibycgdracyfwrzvxly0";
- libraryHaskellDepends = [ base transformers ];
- description = "Sequence ID production and consumption";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"seqid" = callPackage
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
@@ -227506,18 +225514,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "seqid-streams_0_1_0" = callPackage
- ({ mkDerivation, base, io-streams, seqid }:
- mkDerivation {
- pname = "seqid-streams";
- version = "0.1.0";
- sha256 = "13g0c76lyl3b4qdznpyr2a3szjb1dch2bsvgyv68br94045fk6d2";
- libraryHaskellDepends = [ base io-streams seqid ];
- description = "Sequence ID IO-Streams";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"seqid-streams" = callPackage
({ mkDerivation, base, io-streams, seqid }:
mkDerivation {
@@ -227606,29 +225602,6 @@ self: {
}:
mkDerivation {
pname = "sequence-formats";
- version = "1.4.1";
- sha256 = "1162qvpaj8zs1510pkq9v6pdny51r0r5bhwnpmrv1a6c8vm723n3";
- libraryHaskellDepends = [
- attoparsec base bytestring containers errors exceptions foldl
- lens-family pipes pipes-attoparsec pipes-bytestring pipes-safe
- transformers vector
- ];
- testHaskellDepends = [
- base bytestring containers foldl hspec pipes pipes-safe tasty
- tasty-hunit transformers vector
- ];
- description = "A package with basic parsing utilities for several Bioinformatic data formats";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "sequence-formats_1_5_1_4" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, errors
- , exceptions, foldl, hspec, lens-family, pipes, pipes-attoparsec
- , pipes-bytestring, pipes-safe, tasty, tasty-hunit, transformers
- , vector
- }:
- mkDerivation {
- pname = "sequence-formats";
version = "1.5.1.4";
sha256 = "0qcs8lvv8dww6w9iyca4snxrr3hcjd14kafz59gxmbhx9q8zl8mz";
libraryHaskellDepends = [
@@ -227642,7 +225615,6 @@ self: {
];
description = "A package with basic parsing utilities for several Bioinformatic data formats";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sequenceTools" = callPackage
@@ -227949,51 +225921,20 @@ self: {
"servant" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors
- , bytestring, Cabal, cabal-doctest, case-insensitive, deepseq
- , doctest, 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.16.2";
- sha256 = "0yzl1yklbbymlh8jdc4ncrdxkalx2z349v4msbd6wxxrxfkxbz6n";
- revision = "1";
- editedCabalFile = "0v913vjklgwyfbn7k2v70943gy4i8ja3y6crpyrg5llxkb81jpbc";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- 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 doctest 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;
- }) {};
-
- "servant_0_18" = 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
+ , QuickCheck, quickcheck-instances, singleton-bool, sop-core
, string-conversions, tagged, text, transformers, vault
}:
mkDerivation {
pname = "servant";
- version = "0.18";
- sha256 = "1dcb92q8w2fim087plspf1hs2gq2hdfiaggp71jqbljhnznlf5vj";
+ version = "0.18.2";
+ sha256 = "18mfjj9za8g9rgj7a6j0ly6lf1ykfwrlpy3cf53lv1gxvb19gmk5";
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
+ mtl network-uri QuickCheck singleton-bool sop-core
+ string-conversions tagged text transformers vault
];
testHaskellDepends = [
aeson base base-compat bytestring hspec http-media mtl QuickCheck
@@ -228002,7 +225943,6 @@ self: {
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
@@ -228023,6 +225963,8 @@ self: {
];
description = "Servant support for JuicyPixels";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-aeson-specs" = callPackage
@@ -228053,19 +225995,6 @@ self: {
}) {};
"servant-auth" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "servant-auth";
- version = "0.3.2.0";
- sha256 = "12s1m7vqp0ka8nani4cnrb6fad2y5mxji95bba2b6b07ih8xbd3v";
- revision = "2";
- editedCabalFile = "06jpxqz5444k19p1n4i4yf2pvql37w9ngssp1grxl42dxk2bcg94";
- libraryHaskellDepends = [ base ];
- description = "Authentication combinators for servant";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "servant-auth_0_4_0_0" = callPackage
({ mkDerivation, aeson, base, jose, lens, servant, text
, unordered-containers
}:
@@ -228078,7 +226007,6 @@ self: {
];
description = "Authentication combinators for servant";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-auth-client" = callPackage
@@ -228092,6 +226020,8 @@ self: {
pname = "servant-auth-client";
version = "0.4.1.0";
sha256 = "16rmwdrx0qyqa821ipayczzl3gv8gvqgx8k9q8qaw19w87hwkh83";
+ revision = "1";
+ editedCabalFile = "0q7bazq4ilijclpz23fshpjcspnrfalh7jhqi5gg03m00wwibn4n";
libraryHaskellDepends = [
base bytestring containers servant servant-auth servant-client-core
];
@@ -228208,34 +226138,6 @@ self: {
}:
mkDerivation {
pname = "servant-auth-server";
- version = "0.4.5.1";
- sha256 = "10kcxdh9ba37jra6brrg11rzmx16jmwsk0yib92l0s3mkqp9was6";
- libraryHaskellDepends = [
- aeson base base64-bytestring blaze-builder bytestring
- case-insensitive cookie data-default-class entropy http-types jose
- lens memory monad-time mtl servant servant-auth servant-server
- tagged text time unordered-containers wai
- ];
- testHaskellDepends = [
- aeson base bytestring case-insensitive hspec http-client http-types
- jose lens lens-aeson mtl QuickCheck servant servant-auth
- servant-server time transformers wai warp wreq
- ];
- testToolDepends = [ hspec-discover markdown-unlit ];
- description = "servant-server/servant-auth compatibility";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "servant-auth-server_0_4_6_0" = callPackage
- ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder
- , bytestring, case-insensitive, cookie, data-default-class, entropy
- , hspec, hspec-discover, http-client, http-types, jose, lens
- , lens-aeson, markdown-unlit, memory, monad-time, mtl, QuickCheck
- , servant, servant-auth, servant-server, tagged, text, time
- , transformers, unordered-containers, wai, warp, wreq
- }:
- mkDerivation {
- pname = "servant-auth-server";
version = "0.4.6.0";
sha256 = "0isl9pzzhfbs8pgh3qr2vbgfp0bh741dfa59sq7n3cmbkc6ndpkk";
libraryHaskellDepends = [
@@ -228252,7 +226154,6 @@ self: {
testToolDepends = [ hspec-discover markdown-unlit ];
description = "servant-server/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-auth-swagger" = callPackage
@@ -228261,28 +226162,6 @@ self: {
}:
mkDerivation {
pname = "servant-auth-swagger";
- version = "0.2.10.0";
- sha256 = "04ndbbhdmpgb8yshki6q2j46a5q8fzvlb4nn8x8gv0mqkriq79sh";
- revision = "3";
- editedCabalFile = "087faa5bg2hlxyhg7jzy2jj4fzs3dkp0znsbabrharcvdlkpqj1r";
- libraryHaskellDepends = [
- base lens servant servant-auth servant-swagger swagger2 text
- ];
- testHaskellDepends = [
- base hspec lens QuickCheck servant servant-auth servant-swagger
- swagger2 text
- ];
- testToolDepends = [ hspec-discover ];
- description = "servant-swagger/servant-auth compatibility";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "servant-auth-swagger_0_2_10_1" = callPackage
- ({ mkDerivation, base, hspec, hspec-discover, lens, QuickCheck
- , servant, servant-auth, servant-swagger, swagger2, text
- }:
- mkDerivation {
- pname = "servant-auth-swagger";
version = "0.2.10.1";
sha256 = "029nvb4wxwl98ah26bgcq1b7izrnvssxwn1682liimvsh4a8bady";
libraryHaskellDepends = [
@@ -228295,7 +226174,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "servant-swagger/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-auth-token" = callPackage
@@ -228441,6 +226319,8 @@ self: {
];
description = "Authenticate Routes Using Wordpress Cookies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-avro" = callPackage
@@ -228468,10 +226348,8 @@ self: {
}:
mkDerivation {
pname = "servant-blaze";
- version = "0.9";
- sha256 = "1pfnpc6m7i8knndc1734fbzpfgmvdcpkd8cj0jyw139b70siz63r";
- revision = "3";
- editedCabalFile = "0pn9ca2jmx71clz0j9nlz1lwmr2xv39zqfda10al11am9mc4j8n4";
+ version = "0.9.1";
+ sha256 = "08fvy904mz5xjqda702kq4ch25m3nda1yhpp4g7i62j0jmxs2ji6";
libraryHaskellDepends = [ base blaze-html http-media servant ];
testHaskellDepends = [ base blaze-html servant-server wai warp ];
description = "Blaze-html support for servant";
@@ -228497,6 +226375,8 @@ self: {
];
description = "Servant CSV content-type for cassava";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-checked-exceptions" = callPackage
@@ -228569,6 +226449,8 @@ self: {
];
description = "Command line interface for Servant API clients";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-client" = callPackage
@@ -228577,13 +226459,13 @@ self: {
, 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
+ , servant-server, sop-core, stm, tdigest, text, time, transformers
, transformers-base, transformers-compat, wai, warp
}:
mkDerivation {
pname = "servant-client";
- version = "0.16.0.1";
- sha256 = "1w6rw1bdm5x8swi9dy70n86gq9v85wlgmm6pglfxqbv7bgzpql8c";
+ version = "0.18.2";
+ sha256 = "0acwpjmi5r62jgmpw508jq942kq5dhdy5602w9v7g318inxzwwi1";
libraryHaskellDepends = [
base base-compat bytestring containers deepseq exceptions
http-client http-media http-types kan-extensions monad-control mtl
@@ -228593,88 +226475,35 @@ self: {
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
+ network QuickCheck servant servant-client-core servant-server
+ sop-core 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;
}) {};
- "servant-client_0_18" = 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.18";
- sha256 = "17m0cakf4apdrpq7wic9mbxcn2hd9cwh9xrcbxshabfffgkq791i";
- 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
, hspec-discover, http-media, http-types, network-uri, QuickCheck
- , safe, servant, template-haskell, text, transformers
+ , safe, servant, sop-core, template-haskell, text, transformers
}:
mkDerivation {
pname = "servant-client-core";
- version = "0.16";
- sha256 = "0cvv9a7z6ahwjp433c4sxa9i1ifabbih63bx71r9gvqzl85pb3dz";
- revision = "2";
- editedCabalFile = "172diqnz0ddvlfznfjk0k1l02f1mb11i1dkzr6rizdmhb66qpqil";
- 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;
- }) {};
-
- "servant-client-core_0_18" = 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.18";
- sha256 = "198kixjiy34z05vavs18wb2kp62pk5bzr5cl7dvhkl73alvj3rhn";
+ version = "0.18.2";
+ sha256 = "0b449c28z20sx98pc2d4p65jr3m9glsa47jjc2w4gf90jisl173r";
+ revision = "1";
+ editedCabalFile = "0vwj97h6x7zwvyx3ra09yhpi37mnn2kw5m27wnkzwwvk487swqxd";
libraryHaskellDepends = [
aeson base base-compat base64-bytestring bytestring containers
deepseq exceptions free http-media http-types network-uri safe
- servant template-haskell text transformers
+ servant sop-core 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-js" = callPackage
@@ -228694,6 +226523,8 @@ self: {
];
description = "A servant client for frontend JavaScript";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-client-namedargs" = callPackage
@@ -228831,8 +226662,8 @@ self: {
}:
mkDerivation {
pname = "servant-docs";
- version = "0.11.4";
- sha256 = "1z35rr55mxwi761pmqy176liglms443ynk0sjh8v8hcyfciymq0d";
+ version = "0.11.8";
+ sha256 = "0zbsv75zyfg44l4822qnmvw2naxcxwgnpzc55jnvz766l2dydjrb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -228851,35 +226682,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-docs_0_11_6" = 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.6";
- sha256 = "07qabs5xi6dw8anmrnl2135fps901k4y1s2xywgdxhqyg01rljhq";
- 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-docs-simple" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, hspec
, hspec-core, ordered-containers, prettyprinter, raw-strings-qq
@@ -228887,28 +226689,6 @@ self: {
}:
mkDerivation {
pname = "servant-docs-simple";
- version = "0.2.0.1";
- sha256 = "0r9lq4vv88fvh8dfw5z7kxsw57vr7877gixwjfmsy5q1yam91d9d";
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring ordered-containers prettyprinter
- servant text unordered-containers
- ];
- testHaskellDepends = [
- aeson aeson-pretty base bytestring hspec hspec-core
- ordered-containers prettyprinter raw-strings-qq servant text
- unordered-containers
- ];
- description = "Generate endpoints overview for Servant API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "servant-docs-simple_0_3_0_0" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, hspec
- , hspec-core, ordered-containers, prettyprinter, raw-strings-qq
- , servant, text, unordered-containers
- }:
- mkDerivation {
- pname = "servant-docs-simple";
version = "0.3.0.0";
sha256 = "0nzlgb3ccycqm3v599hh7k7fk7f8wqj0r2c2ldy9fj1c55h9n8hb";
libraryHaskellDepends = [
@@ -228923,6 +226703,7 @@ self: {
description = "Generate endpoints overview for Servant API";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-ede" = callPackage
@@ -228974,6 +226755,8 @@ self: {
];
description = "Helpers for using ekg with servant";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-elm" = callPackage
@@ -228996,6 +226779,8 @@ self: {
];
description = "Automatically derive Elm functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-errors" = callPackage
@@ -229019,8 +226804,6 @@ self: {
testToolDepends = [ markdown-unlit ];
description = "Servant Errors wai-middlware";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-examples" = callPackage
@@ -229048,25 +226831,33 @@ self: {
}) {};
"servant-exceptions" = callPackage
- ({ mkDerivation, aeson, base, exceptions, http-media, http-types
- , mtl, servant, servant-server, text, wai, warp
+ ({ mkDerivation, aeson, base, exceptions, http-types, servant, text
}:
mkDerivation {
pname = "servant-exceptions";
- version = "0.1.1";
- sha256 = "1qdb6ins7l0ryyrmg9j5pw428rlhkmzpbq5jqawfn01j8vf9yav5";
- isLibrary = true;
- isExecutable = true;
+ version = "0.2.1";
+ sha256 = "1bzxac87x3nfg5hllqxfi2qrdkiy2zfxwzkcg6vyjirnwpqvn49b";
libraryHaskellDepends = [
- aeson base exceptions http-media http-types mtl servant
- servant-server text wai
+ aeson base exceptions http-types servant text
];
- executableHaskellDepends = [
- aeson base exceptions http-types servant-server text warp
+ description = "Extensible exceptions for servant APIs";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "servant-exceptions-server" = callPackage
+ ({ mkDerivation, base, exceptions, http-media, http-types, mtl
+ , servant, servant-exceptions, servant-server, text, wai
+ }:
+ mkDerivation {
+ pname = "servant-exceptions-server";
+ version = "0.2.1";
+ sha256 = "1cx9d2hx09mx1kypdhwyqhl6s1aipvxi4ak4xy4jrd0fy8r8wy9g";
+ libraryHaskellDepends = [
+ base exceptions http-media http-types mtl servant
+ servant-exceptions servant-server text wai
];
+ description = "Extensible exceptions for servant API servers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-fiat-content" = callPackage
@@ -229080,6 +226871,8 @@ self: {
];
description = "Fiat content types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-flatten" = callPackage
@@ -229099,27 +226892,8 @@ self: {
}:
mkDerivation {
pname = "servant-foreign";
- version = "0.15";
- sha256 = "0wxx9drycam46vcmf3kxp2lq1drlpxb1b6fxbxyb6dd7349py6gi";
- revision = "2";
- editedCabalFile = "0axz78g0vhasq5cvqg1lq0b2qanmb768f1bvzbfx58rn6arwflnj";
- 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;
- }) {};
-
- "servant-foreign_0_15_2" = callPackage
- ({ mkDerivation, base, base-compat, hspec, hspec-discover
- , http-types, lens, servant, text
- }:
- mkDerivation {
- pname = "servant-foreign";
- version = "0.15.2";
- sha256 = "0vxm80cnd4w8zpyq7brnnjmcarb0vj7xgikwpc0il1w6hjgis7vl";
+ version = "0.15.3";
+ sha256 = "1bz2ry5pd8cx5pmsvg7q29r9gd5kqjjv9nd97f7abwjqi8as2413";
libraryHaskellDepends = [
base base-compat http-types lens servant text
];
@@ -229127,7 +226901,6 @@ self: {
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
@@ -229208,8 +226981,6 @@ self: {
];
description = "Servant combinators to facilitate writing GitHub webhooks";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-haxl-client" = callPackage
@@ -229281,8 +227052,8 @@ self: {
}:
mkDerivation {
pname = "servant-http-streams";
- version = "0.18";
- sha256 = "1krpmmzjc1vagcy8rdgcl3zm8zlfjf8ikicaqrqp6d95f8bz4kaz";
+ version = "0.18.2";
+ sha256 = "1kyiv8qamw9dxv2ax7hx9n7w9507vjvwn89x4nvlsc87nq91hvg0";
libraryHaskellDepends = [
base base-compat bytestring case-insensitive containers deepseq
exceptions http-common http-media http-streams http-types
@@ -229300,8 +227071,6 @@ self: {
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
@@ -229389,6 +227158,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Automatically derive javascript functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-jsonrpc" = callPackage
@@ -229400,8 +227171,6 @@ self: {
libraryHaskellDepends = [ aeson base servant ];
description = "JSON-RPC messages and endpoints";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-jsonrpc-client" = callPackage
@@ -229417,8 +227186,6 @@ self: {
];
description = "Generate JSON-RPC servant clients";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-jsonrpc-server" = callPackage
@@ -229434,8 +227201,6 @@ self: {
];
description = "JSON-RPC servant servers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-kotlin" = callPackage
@@ -229471,29 +227236,12 @@ self: {
}:
mkDerivation {
pname = "servant-lucid";
- version = "0.9";
- sha256 = "1xamwcijd03cynml5c2hr577qairybyrqd90ixyb1a94lql6agbf";
- revision = "3";
- editedCabalFile = "10j29y9zjflh88csvn7zi4pm8jr9dxsglin94wypjrhcwy7yj1ic";
- libraryHaskellDepends = [ base http-media lucid servant text ];
- testHaskellDepends = [ base lucid servant-server wai warp ];
- description = "Servant support for lucid";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "servant-lucid_0_9_0_2" = callPackage
- ({ mkDerivation, base, http-media, lucid, servant, servant-server
- , text, wai, warp
- }:
- mkDerivation {
- pname = "servant-lucid";
version = "0.9.0.2";
sha256 = "0l68dffx746j3p2l5x59cj5cdng2dw6vjq5x5h44m0ccbsmlckpz";
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
@@ -229560,36 +227308,6 @@ self: {
}:
mkDerivation {
pname = "servant-mock";
- version = "0.8.5";
- sha256 = "10bvqwyp5ca53k47a1xfbihdv22gjlj97spr1bn5plf5vlk70m5f";
- revision = "3";
- editedCabalFile = "1137vz9xm8iwj6x8h1q1yify6c1lahy0dxj6hpbhgi4s3mqkhm2g";
- 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;
- }) {};
-
- "servant-mock_0_8_7" = 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.7";
sha256 = "0j8c9wb1njrl77hp94frlnjpbk2axlkcgbcyax6s4pmf9v3c8j6x";
isLibrary = true;
@@ -229609,6 +227327,7 @@ self: {
description = "Derive a mock server for free from your servant API types";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-multipart" = callPackage
@@ -229620,8 +227339,10 @@ self: {
}:
mkDerivation {
pname = "servant-multipart";
- version = "0.11.6";
- sha256 = "0yzr5hv2ki9ig4g6735bjnzv6mkpgj5l68g9hlvp9g9i0ryxqahn";
+ version = "0.12";
+ sha256 = "1hs1h66zjhknfnz1bdi5c0d2sfb20fc7x9adbc87gq168k8riqvl";
+ revision = "1";
+ editedCabalFile = "0pc254b458v4k5xw729fvw3q3klwpkai2mmp455dw2i7g02dv0da";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -229706,8 +227427,8 @@ self: {
}:
mkDerivation {
pname = "servant-openapi3";
- version = "2.0.0.1";
- sha256 = "14vxvvnzjk7w7lzivmjh5ib7byqqywrhr72rx0nafzq2vsw1wzng";
+ version = "2.0.1.1";
+ sha256 = "1cyzyljmdfr3gigdszcpj1i7l698fnxpc9hr83mzspm6qcmbqmgf";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson aeson-pretty base base-compat bytestring hspec http-media
@@ -229722,6 +227443,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-options" = callPackage
@@ -229755,6 +227478,8 @@ self: {
testHaskellDepends = [ base hspec QuickCheck servant-server text ];
description = "Type-safe pagination for Servant APIs";
license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-pandoc" = callPackage
@@ -229797,6 +227522,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-polysemy" = callPackage
+ ({ mkDerivation, base, deepseq, http-client, http-client-tls, lens
+ , mtl, polysemy, polysemy-plugin, polysemy-zoo, servant-client
+ , servant-server, servant-swagger, servant-swagger-ui, swagger2
+ , text, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-polysemy";
+ version = "0.1.0";
+ sha256 = "1isk401bi31s8ldb14cw0bchr3lwjmm2aslrrl3hg21dsr0qfk4y";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base deepseq http-client http-client-tls mtl polysemy
+ polysemy-plugin polysemy-zoo servant-client servant-server wai warp
+ ];
+ executableHaskellDepends = [
+ base deepseq http-client http-client-tls lens mtl polysemy
+ polysemy-plugin polysemy-zoo servant-client servant-server
+ servant-swagger servant-swagger-ui swagger2 text wai warp
+ ];
+ description = "Utilities for using servant in a polysemy stack";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"servant-pool" = callPackage
({ mkDerivation, base, resource-pool, servant, time }:
mkDerivation {
@@ -229875,6 +227627,8 @@ self: {
];
description = "Generate PureScript accessor functions for you servant API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-pushbullet-client" = callPackage
@@ -229952,34 +227706,6 @@ self: {
}) {};
"servant-rawm" = callPackage
- ({ mkDerivation, base, bytestring, doctest, filepath, Glob
- , hspec-wai, http-client, http-media, http-types, lens, resourcet
- , servant, servant-client, servant-client-core, servant-docs
- , servant-server, tasty, tasty-hspec, tasty-hunit, text
- , transformers, wai, wai-app-static, warp
- }:
- mkDerivation {
- pname = "servant-rawm";
- version = "0.3.2.0";
- sha256 = "013d89zmlmwwwhgyc57xbzsd4phz347if5y6iz93wrw4lbvc341d";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring filepath http-client http-media http-types lens
- resourcet servant-client servant-client-core servant-docs
- servant-server wai wai-app-static
- ];
- testHaskellDepends = [
- base bytestring doctest Glob hspec-wai http-client http-media
- http-types servant servant-client servant-client-core
- servant-server tasty tasty-hspec tasty-hunit text transformers wai
- warp
- ];
- description = "Embed a raw 'Application' in a Servant API";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "servant-rawm_1_0_0_0" = callPackage
({ mkDerivation, base, servant }:
mkDerivation {
pname = "servant-rawm";
@@ -229988,7 +227714,6 @@ self: {
libraryHaskellDepends = [ base servant ];
description = "Embed a raw 'Application' in a Servant API";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-rawm-client" = callPackage
@@ -230017,8 +227742,6 @@ self: {
];
description = "Documentation generator for 'RawM' endpoints";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-rawm-server" = callPackage
@@ -230035,8 +227758,6 @@ self: {
];
description = "The server implementation of servant-rawm";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"servant-reason" = callPackage
@@ -230173,6 +227894,8 @@ self: {
];
description = "Generate Robots.txt and Sitemap.xml specification for your servant API.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-serf" = callPackage
@@ -230192,67 +227915,30 @@ self: {
doHaddock = false;
description = "Generates a servant API module";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-server" = callPackage
({ mkDerivation, aeson, base, base-compat, base64-bytestring
- , bytestring, Cabal, cabal-doctest, containers, directory, doctest
- , 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.16.2";
- sha256 = "1l4kgjg5z775bi76hy7cb70qwvmkai4rxqkgp0ildsjgsvf8qb80";
- revision = "1";
- editedCabalFile = "017aw6wyhi5g7zkk59yj44r1n02zzin2w9wdskwqys7iqkvnvczn";
- isLibrary = true;
- isExecutable = true;
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- 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
- doctest 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;
- }) {};
-
- "servant-server_0_18" = 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
+ , safe, servant, should-not-typecheck, sop-core, string-conversions
+ , tagged, temporary, text, transformers, transformers-base
, transformers-compat, wai, wai-app-static, wai-extra, warp, word8
}:
mkDerivation {
pname = "servant-server";
- version = "0.18";
- sha256 = "0knbzr6ls9p2wjn3kfggy99gxavl817xw48m53plhf2r4s4vjrw8";
+ version = "0.18.2";
+ sha256 = "05ricb3w1app6c094zwaq2jnqv53jpf4n89ffynm31dvf6h9qdih";
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
+ network network-uri resourcet servant sop-core string-conversions
+ tagged text transformers transformers-base wai wai-app-static word8
];
executableHaskellDepends = [
aeson base base-compat servant text wai warp
@@ -230266,7 +227952,6 @@ self: {
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
@@ -230347,6 +228032,8 @@ self: {
];
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-stache" = callPackage
@@ -230523,36 +228210,6 @@ self: {
}:
mkDerivation {
pname = "servant-swagger";
- version = "1.1.7.1";
- sha256 = "0vdjvn5bsd26q8wx1qdwn7vdfnd9jk8m9jzzm251gyn1ijxv8ild";
- revision = "2";
- editedCabalFile = "0ij93pd7lsq39grglhfrdjrg21bxigmhavy51xilg6rrpnfcj2wv";
- 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;
- }) {};
-
- "servant-swagger_1_1_10" = 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.10";
sha256 = "0y6zylhs4z0nfz75d4i2azcq0yh2bd4inanwblx4035dgkk1q78a";
setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -230569,7 +228226,6 @@ self: {
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
@@ -230596,10 +228252,8 @@ self: {
}:
mkDerivation {
pname = "servant-swagger-ui";
- version = "0.3.4.3.23.11";
- sha256 = "0ryr6h74vz6q6q0c9aixb7kwhq1vn95m3m0799cvc0xkfvm0ljha";
- revision = "2";
- editedCabalFile = "1wmxiihiwjkzwqqj2996fqmixz6jblj5gh43p7dxbww3g9fdz8qi";
+ version = "0.3.4.3.37.2";
+ sha256 = "1kx8i2x3ffbwbjh2i2ljha2cl6vfj1fcad9wkmc9ll9mbj6cpl8v";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -230615,10 +228269,8 @@ self: {
}:
mkDerivation {
pname = "servant-swagger-ui-core";
- version = "0.3.3";
- sha256 = "0gpdjnclbjjr6gwc0gyx1d4w06cjf6z5b2ngjfcgbn885wqllwh3";
- revision = "3";
- editedCabalFile = "0yx3q7y533v61ca4bm4wi8h7chbghj2rz92b330a544w7ac8il0p";
+ version = "0.3.4";
+ sha256 = "05vi74kgsf3yhkbw9cjl1zxs5swhh9jib6bwqf1h11cg0nr5i8ab";
libraryHaskellDepends = [
base blaze-markup bytestring http-media servant servant-blaze
servant-server swagger2 text transformers transformers-compat
@@ -230636,8 +228288,8 @@ self: {
pname = "servant-swagger-ui-jensoleg";
version = "0.3.3";
sha256 = "02zwymqxq54xwc8wmzhbcfgx9plvk0n4kp1907sbl98mhh2frwrw";
- revision = "3";
- editedCabalFile = "08fwi8zq3clski4bac2p2ahqf4475xwzba31jw4f4lcr01rickqk";
+ revision = "4";
+ editedCabalFile = "19h7n1g847ly7addv03vzy5915n48xa0y7l88dzamy6ly1jrmdg2";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -230654,8 +228306,8 @@ self: {
pname = "servant-swagger-ui-redoc";
version = "0.3.3.1.22.3";
sha256 = "0bzkrh1hf29vfa1r1sgifb9j2zcg6i43fal4abbx4lcqvf155pzv";
- revision = "2";
- editedCabalFile = "195vfc3871l1clk85kzxjvz1zr986lbvgy26fazfkfsn032s74c6";
+ revision = "3";
+ editedCabalFile = "1csz8gzmrrjbjvr6kx4vmyp419i5vbzk84a01vh5zr6ncrpx5nf3";
libraryHaskellDepends = [
base bytestring file-embed-lzma servant servant-server
servant-swagger-ui-core swagger2 text
@@ -230818,6 +228470,8 @@ self: {
];
description = "Servant support for yaml";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"servant-zeppelin" = callPackage
@@ -230927,33 +228581,6 @@ self: {
({ mkDerivation, aeson, aeson-casing, amazonka-core
, amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive
, hspec, hspec-discover, http-client, http-types, iproute, lens
- , raw-strings-qq, safe-exceptions, text, time, unix
- , unordered-containers
- }:
- mkDerivation {
- pname = "serverless-haskell";
- version = "0.11.3";
- sha256 = "14jaykiwi5xzf9cvkkk35gqgk203yah1ln0skr7gi847bh95v7qf";
- libraryHaskellDepends = [
- aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base
- bytestring case-insensitive http-client http-types iproute lens
- safe-exceptions text time unix unordered-containers
- ];
- testHaskellDepends = [
- aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base
- bytestring case-insensitive hspec hspec-discover http-client
- http-types iproute lens raw-strings-qq safe-exceptions text time
- unix unordered-containers
- ];
- testToolDepends = [ hspec-discover ];
- description = "Deploying Haskell code onto AWS Lambda using Serverless";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "serverless-haskell_0_12_4" = callPackage
- ({ mkDerivation, aeson, aeson-casing, amazonka-core
- , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive
- , hspec, hspec-discover, http-client, http-types, iproute, lens
, raw-strings-qq, safe-exceptions, text, time, transformers, unix
, unordered-containers
}:
@@ -230975,7 +228602,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Deploying Haskell code onto AWS Lambda using Serverless";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"serversession" = callPackage
@@ -231377,8 +229003,6 @@ self: {
executableToolDepends = [ alex happy ];
description = "Treating files as sets to perform rapid set manipulation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"setenv" = callPackage
@@ -231408,6 +229032,8 @@ self: {
executableHaskellDepends = [ base ];
description = "A console interface to the game of Set";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"setlocale" = callPackage
@@ -231561,48 +229187,19 @@ self: {
"sexp-grammar" = callPackage
({ mkDerivation, alex, array, base, bytestring, containers
- , criterion, deepseq, happy, invertible-grammar, prettyprinter
- , QuickCheck, recursion-schemes, scientific, semigroups, tasty
- , tasty-hunit, tasty-quickcheck, text, utf8-string
- }:
- mkDerivation {
- pname = "sexp-grammar";
- version = "2.1.0";
- sha256 = "139sqr50bba74h2r6gdivzsgkqjwq1gcah54zw2jkwzhlfk03fm1";
- revision = "1";
- editedCabalFile = "07rjcyk1zz775znhibaaqwxfkb8vfdbr5qsd20g5ywld0302scb1";
- libraryHaskellDepends = [
- array base bytestring containers deepseq invertible-grammar
- prettyprinter recursion-schemes scientific semigroups text
- utf8-string
- ];
- libraryToolDepends = [ alex happy ];
- testHaskellDepends = [
- base containers invertible-grammar prettyprinter QuickCheck
- scientific semigroups tasty tasty-hunit tasty-quickcheck text
- utf8-string
- ];
- benchmarkHaskellDepends = [
- base bytestring criterion deepseq text
- ];
- description = "Invertible grammar combinators for S-expressions";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "sexp-grammar_2_2_1" = callPackage
- ({ mkDerivation, alex, array, base, bytestring, containers
- , criterion, deepseq, happy, invertible-grammar, prettyprinter
- , QuickCheck, recursion-schemes, scientific, semigroups, tasty
- , tasty-hunit, tasty-quickcheck, text, utf8-string
+ , criterion, data-fix, deepseq, happy, invertible-grammar
+ , prettyprinter, QuickCheck, recursion-schemes, scientific
+ , semigroups, tasty, tasty-hunit, tasty-quickcheck, text
+ , utf8-string
}:
mkDerivation {
pname = "sexp-grammar";
- version = "2.2.1";
- sha256 = "0nf3b3cibqi2jv9jg742jknqpfgwvc7iwjw7a2jgpf55nrgs6lvz";
+ version = "2.3.0";
+ sha256 = "1ky0jj47xp6g8shk5znrhncj71sg0p653csj1ds2yl36s7fiwgdk";
libraryHaskellDepends = [
- array base bytestring containers deepseq invertible-grammar
- prettyprinter recursion-schemes scientific semigroups text
- utf8-string
+ array base bytestring containers data-fix deepseq
+ invertible-grammar prettyprinter recursion-schemes scientific
+ semigroups text utf8-string
];
libraryToolDepends = [ alex happy ];
testHaskellDepends = [
@@ -231615,7 +229212,6 @@ self: {
];
description = "Invertible grammar combinators for S-expressions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sexp-show" = callPackage
@@ -231983,15 +229579,14 @@ self: {
"shake" = callPackage
({ mkDerivation, base, binary, bytestring, deepseq, directory
- , extra, file-embed, filepath, filepattern, hashable, heaps
- , js-dgtable, js-flot, js-jquery, primitive, process, QuickCheck
- , random, template-haskell, time, transformers, unix
- , unordered-containers, utf8-string
+ , extra, filepath, filepattern, hashable, heaps, js-dgtable
+ , js-flot, js-jquery, primitive, process, QuickCheck, random, time
+ , transformers, unix, unordered-containers, utf8-string
}:
mkDerivation {
pname = "shake";
- version = "0.19.1";
- sha256 = "14znwscqdhac421igz26r0p1im9p0zawxzmi3hh1lhmxc5fprk2n";
+ version = "0.19.2";
+ sha256 = "0s34c40zvr0ny5n0p2g85rzkx3789r20627gykkpsn5cvnc7pj5s";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -232001,10 +229596,9 @@ self: {
random time transformers unix unordered-containers utf8-string
];
executableHaskellDepends = [
- base binary bytestring deepseq directory extra file-embed filepath
- filepattern hashable heaps js-dgtable js-flot js-jquery primitive
- process random template-haskell time transformers unix
- unordered-containers utf8-string
+ base binary bytestring deepseq directory extra filepath filepattern
+ hashable heaps js-dgtable js-flot js-jquery primitive process
+ random time transformers unix unordered-containers utf8-string
];
testHaskellDepends = [
base binary bytestring deepseq directory extra filepath filepattern
@@ -232291,30 +229885,14 @@ self: {
}) {};
"shake-plus" = callPackage
- ({ mkDerivation, aeson, base, comonad, extra, path, rio, shake
- , within
- }:
- mkDerivation {
- pname = "shake-plus";
- version = "0.1.10.0";
- sha256 = "0jp0b593162y2m9mxrh4fhgvjiwyxx4zk5spmr46aby5hhrgdwcr";
- libraryHaskellDepends = [
- aeson base comonad extra path rio shake within
- ];
- description = "Re-export of Shake using well-typed paths and ReaderT";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "shake-plus_0_3_3_0" = callPackage
({ mkDerivation, base, extra, path, rio, shake }:
mkDerivation {
pname = "shake-plus";
- version = "0.3.3.0";
- sha256 = "13a5n6gh1msrygi671lk5y83shcd75yz64x3r2smxif5hsfazwqv";
+ version = "0.3.3.1";
+ sha256 = "09zinaphlmdshny3hiyibbqqkfflj2rkxh8zkpnnk5dvf2qb15p5";
libraryHaskellDepends = [ base extra path rio shake ];
description = "Re-export of Shake using well-typed paths and ReaderT";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shake-plus-extended" = callPackage
@@ -232334,42 +229912,49 @@ self: {
];
description = "Experimental extensions to shake-plus";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"shakebook" = callPackage
({ mkDerivation, aeson, aeson-better-errors, aeson-with, base
- , binary, binary-instances, comonad, comonad-extras
- , composite-aeson, composite-base, doctemplates, feed, free
- , hashable-time, http-conduit, ixset-typed, ixset-typed-conversions
- , lens, lens-aeson, lucid, lucid-cdn, mtl, mustache, pandoc
- , pandoc-types, path, path-extensions, rio, shake-plus
- , shake-plus-extended, sitemap-gen, slick, split, tasty
- , tasty-golden, text-time, vinyl, zipper-extra
+ , binary-instances, comonad, comonad-extras, compdoc
+ , composite-aeson, composite-aeson-cofree-list
+ , composite-aeson-path, composite-aeson-throw
+ , composite-aeson-writeonly, composite-base, composite-binary
+ , composite-hashable, composite-tuple, composite-xstep
+ , doctemplates, feed, free, hashable-time, ixset-typed
+ , ixset-typed-conversions, lens, lens-aeson, lucid, lucid-cdn, mtl
+ , pandoc, pandoc-throw, pandoc-types, path, path-extensions
+ , path-utils, rio, shake-plus, shake-plus-extended, sitemap-gen
+ , skylighting, split, stache, tasty, tasty-golden, vinyl
+ , zipper-extra
}:
mkDerivation {
pname = "shakebook";
- version = "0.11.0.0";
- sha256 = "0h6pq3y7ll5l83a682mwk60zipsm91w0srgrigdgi7l4wdhn7qzb";
- libraryHaskellDepends = [
- aeson aeson-better-errors aeson-with base binary binary-instances
- comonad comonad-extras composite-aeson composite-base doctemplates
- feed free hashable-time http-conduit ixset-typed
- ixset-typed-conversions lens lens-aeson lucid lucid-cdn mtl
- mustache pandoc pandoc-types path path-extensions rio shake-plus
- shake-plus-extended sitemap-gen slick split text-time vinyl
+ version = "0.13.1.0";
+ sha256 = "1c2qklpjyszc3rfqm7p73bkb4ma43lwvsc9h8p8dyc5s1dxv8d4f";
+ libraryHaskellDepends = [
+ aeson aeson-better-errors aeson-with base binary-instances comonad
+ comonad-extras compdoc composite-aeson composite-aeson-cofree-list
+ composite-aeson-path composite-aeson-throw
+ composite-aeson-writeonly composite-base composite-binary
+ composite-hashable composite-tuple composite-xstep doctemplates
+ feed free hashable-time ixset-typed ixset-typed-conversions lens
+ lens-aeson lucid lucid-cdn mtl pandoc pandoc-throw pandoc-types
+ path path-extensions path-utils rio shake-plus shake-plus-extended
+ sitemap-gen skylighting stache vinyl zipper-extra
+ ];
+ testHaskellDepends = [
+ aeson aeson-better-errors aeson-with base binary-instances comonad
+ comonad-extras compdoc composite-aeson composite-aeson-cofree-list
+ composite-aeson-path composite-aeson-throw
+ composite-aeson-writeonly composite-base composite-binary
+ composite-hashable composite-tuple composite-xstep doctemplates
+ feed free hashable-time ixset-typed ixset-typed-conversions lens
+ lens-aeson lucid lucid-cdn mtl pandoc pandoc-throw pandoc-types
+ path path-extensions path-utils rio shake-plus shake-plus-extended
+ sitemap-gen skylighting split stache tasty tasty-golden vinyl
zipper-extra
];
- testHaskellDepends = [
- aeson aeson-better-errors aeson-with base binary binary-instances
- comonad comonad-extras composite-aeson composite-base doctemplates
- feed free hashable-time http-conduit ixset-typed
- ixset-typed-conversions lens lens-aeson lucid lucid-cdn mtl
- mustache pandoc pandoc-types path path-extensions rio shake-plus
- shake-plus-extended sitemap-gen slick split tasty tasty-golden
- text-time vinyl zipper-extra
- ];
description = "Shake-based technical documentation generator; HTML & PDF";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -232555,8 +230140,6 @@ self: {
];
description = "Shannon-fano compression algorithm in Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"shapefile" = callPackage
@@ -232791,29 +230374,6 @@ self: {
}:
mkDerivation {
pname = "shell-conduit";
- version = "4.7.0";
- sha256 = "0c5yvm08l37qblqks1r23znixxas39gl1d3mlm6rq8a6zfvcacbg";
- libraryHaskellDepends = [
- async base bytestring conduit conduit-extra directory filepath
- monads-tf process resourcet semigroups split template-haskell text
- transformers unix unliftio
- ];
- testHaskellDepends = [
- base bytestring conduit conduit-extra hspec hspec-expectations
- template-haskell
- ];
- description = "Write shell scripts with Conduit";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "shell-conduit_5_0_0" = callPackage
- ({ mkDerivation, async, base, bytestring, conduit, conduit-extra
- , directory, filepath, hspec, hspec-expectations, monads-tf
- , process, resourcet, semigroups, split, template-haskell, text
- , transformers, unix, unliftio
- }:
- mkDerivation {
- pname = "shell-conduit";
version = "5.0.0";
sha256 = "02zilgrb64x0rk4b4bihprwq9fr5gydzj003y3fq8ryf7r60g41w";
libraryHaskellDepends = [
@@ -232827,7 +230387,6 @@ self: {
];
description = "Write shell scripts with Conduit";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shell-escape" = callPackage
@@ -232999,38 +230558,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "shelly_1_8_1" = callPackage
- ({ mkDerivation, async, base, bytestring, containers, directory
- , enclosed-exceptions, exceptions, filepath, hspec, hspec-contrib
- , HUnit, lifted-async, lifted-base, monad-control, mtl, process
- , system-fileio, system-filepath, text, time, transformers
- , transformers-base, unix, unix-compat
- }:
- mkDerivation {
- pname = "shelly";
- version = "1.8.1";
- sha256 = "023fbvbqs5gdwm30j5517gbdcc7fvz0md70dgwgpypkskj3i926y";
- revision = "1";
- editedCabalFile = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- async base bytestring containers directory enclosed-exceptions
- exceptions lifted-async lifted-base monad-control mtl process
- system-fileio system-filepath text time transformers
- transformers-base unix unix-compat
- ];
- testHaskellDepends = [
- async base bytestring containers directory enclosed-exceptions
- exceptions filepath hspec hspec-contrib HUnit lifted-async
- lifted-base monad-control mtl process system-fileio system-filepath
- text time transformers transformers-base unix unix-compat
- ];
- description = "shell-like (systems) programming in Haskell";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"shelly" = callPackage
({ mkDerivation, async, base, bytestring, containers, directory
, enclosed-exceptions, exceptions, filepath, hspec, hspec-contrib
@@ -233104,6 +230631,8 @@ self: {
pname = "shh";
version = "0.7.1.0";
sha256 = "03b8h6sjnrlksvpr9f451469j5xngqpb6g3hyxmxp7h7h4xrsvq2";
+ revision = "1";
+ editedCabalFile = "1sv4rxkwvsb1j42k6bhbvig8215xzmgmqaxacljq03aqqv3x3jf2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -233129,8 +230658,8 @@ self: {
pname = "shh-extras";
version = "0.1.0.1";
sha256 = "0w4ddjszs0lrpr4zcggcwb80bg3yd8lr628jngmh4a05ypv3hxkk";
- revision = "1";
- editedCabalFile = "0kcnk1f1jgaxaqsrnhv2s17firjsms9xvx8d7jvv6ys5iq4nynya";
+ revision = "2";
+ editedCabalFile = "1sfj2li0p0bq1dmk85i74jmgcz28vb2q151d16rcjzx8x07kyrq4";
libraryHaskellDepends = [ base hostname shh time ];
testHaskellDepends = [ base tasty ];
description = "Utility functions for using shh";
@@ -233578,6 +231107,8 @@ self: {
];
description = "Generate swift types from haskell types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"si-clock" = callPackage
@@ -233768,6 +231299,8 @@ self: {
];
description = "Deterministic serialisation and signatures with proto-lens support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"signable-haskell-protoc" = callPackage
@@ -233867,11 +231400,13 @@ self: {
({ mkDerivation, base, prettyprinter }:
mkDerivation {
pname = "silkscreen";
- version = "0.0.0.2";
- sha256 = "0839minsb7n7170xw3qh62sszggh4ap95v06s3d4l7a76s42bmic";
+ version = "0.0.0.3";
+ sha256 = "0gmp71cipwc0ymydckhvw9g8q3j4pm8cq2la2rbvm0rr9z7c2l40";
libraryHaskellDepends = [ base prettyprinter ];
description = "Prettyprinting transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"silvi" = callPackage
@@ -233957,8 +231492,6 @@ self: {
];
description = "A minimalist web framework for the WAI server interface";
license = stdenv.lib.licenses.lgpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"simple-actors" = callPackage
@@ -234186,8 +231719,6 @@ self: {
benchmarkHaskellDepends = [ base criterion mtl transformers ];
description = "A simple effect system that integrates with MTL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"simple-enumeration" = callPackage
@@ -234354,8 +231885,6 @@ self: {
libraryHaskellDepends = [ base fast-logger mtl text ];
description = "A very simple but efficient logging framework";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"simple-logging" = callPackage
@@ -234517,8 +232046,6 @@ self: {
];
description = "Connector package for integrating postgresql-orm with the Simple web framework";
license = stdenv.lib.licenses.lgpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"simple-reflect" = callPackage
@@ -234595,8 +232122,6 @@ self: {
];
description = "Cookie-based session management for the Simple web framework";
license = stdenv.lib.licenses.lgpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"simple-sessions" = callPackage
@@ -234965,6 +232490,8 @@ self: {
librarySystemDepends = [ sqlite ];
description = "Simplest SQLite3 binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) sqlite;};
"simplex" = callPackage
@@ -235161,27 +232688,6 @@ self: {
}) {};
"singletons" = callPackage
- ({ mkDerivation, base, Cabal, containers, directory, filepath
- , ghc-boot-th, mtl, pretty, process, syb, tasty, tasty-golden
- , template-haskell, text, th-desugar, transformers, turtle
- }:
- mkDerivation {
- pname = "singletons";
- version = "2.6";
- sha256 = "1lc6p1f3h0j4nq5ppqwjihrjlgcwl5sx5fsw449m9lvs07vp39xy";
- setupHaskellDepends = [ base Cabal directory filepath ];
- libraryHaskellDepends = [
- base containers ghc-boot-th mtl pretty syb template-haskell text
- th-desugar transformers
- ];
- testHaskellDepends = [
- base filepath process tasty tasty-golden text turtle
- ];
- description = "A framework for generating singleton types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "singletons_2_7" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, deepseq
, directory, filepath, ghc-boot-th, mtl, pretty, process, syb
, tasty, tasty-golden, template-haskell, text, th-desugar
@@ -235204,7 +232710,6 @@ self: {
];
description = "A framework for generating singleton types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"singletons-presburger" = callPackage
@@ -235477,28 +232982,12 @@ self: {
];
description = "Sized functors, for size-based enumerations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"sized" = callPackage
({ mkDerivation, base, constraints, containers, deepseq
- , equational-reasoning, ghc-typelits-presburger, hashable, lens
- , ListLike, mono-traversable, singletons, type-natural, vector
- }:
- mkDerivation {
- pname = "sized";
- version = "0.4.0.0";
- sha256 = "1s1j9riv0kms1hgyhv69nwvh44xa831jk20xlnwq1byw6mbalna9";
- libraryHaskellDepends = [
- base constraints containers deepseq equational-reasoning
- ghc-typelits-presburger hashable lens ListLike mono-traversable
- singletons type-natural vector
- ];
- description = "Sized sequence data-types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "sized_0_8_0_0" = callPackage
- ({ mkDerivation, base, constraints, containers, deepseq
, equational-reasoning, ghc-typelits-knownnat
, ghc-typelits-presburger, hashable, hspec, inspection-testing
, lens, mono-traversable, singletons, subcategories
@@ -235519,7 +233008,6 @@ self: {
];
description = "Sized sequence data-types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sized-grid" = callPackage
@@ -235833,30 +233321,8 @@ self: {
}:
mkDerivation {
pname = "skylighting";
- version = "0.8.5";
- sha256 = "1b8m0spspp060p5hkl2qxarh3cwji0shq5kdwz2w93kiyl8hk8sv";
- configureFlags = [ "-fexecutable" ];
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base binary bytestring containers skylighting-core
- ];
- executableHaskellDepends = [
- base blaze-html bytestring containers directory filepath
- pretty-show text
- ];
- description = "syntax highlighting library";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "skylighting_0_10_0_2" = callPackage
- ({ mkDerivation, base, binary, blaze-html, bytestring, containers
- , directory, filepath, pretty-show, skylighting-core, text
- }:
- mkDerivation {
- pname = "skylighting";
- version = "0.10.0.2";
- sha256 = "0m2z4hmv2m6h6kmvn8n3fskwyhq6pj28bjfvs61qg9pnga3xbf26";
+ version = "0.10.1";
+ sha256 = "0zpf6p3c0byp3pv9bgg77ndq89n3fhcazyln44pq8lxnmjy0x15v";
configureFlags = [ "-fexecutable" ];
isLibrary = true;
isExecutable = true;
@@ -235869,53 +233335,20 @@ self: {
];
description = "syntax highlighting library";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"skylighting-core" = callPackage
({ mkDerivation, aeson, ansi-terminal, attoparsec, base
, base64-bytestring, binary, blaze-html, bytestring
, case-insensitive, colour, containers, criterion, Diff, directory
- , filepath, HUnit, hxt, mtl, pretty-show, QuickCheck, random
- , regex-pcre-builtin, safe, tasty, tasty-golden, tasty-hunit
- , tasty-quickcheck, text, transformers, utf8-string
- }:
- mkDerivation {
- pname = "skylighting-core";
- version = "0.8.5";
- sha256 = "1azcq7g8c4p18q4akk7rl0bczjvp0vl4mnqvsfmzcdf7sdjlg9f7";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson ansi-terminal attoparsec base base64-bytestring binary
- blaze-html bytestring case-insensitive colour containers directory
- filepath hxt mtl regex-pcre-builtin safe text transformers
- utf8-string
- ];
- testHaskellDepends = [
- aeson base bytestring containers Diff directory filepath HUnit
- pretty-show QuickCheck random tasty tasty-golden tasty-hunit
- tasty-quickcheck text
- ];
- benchmarkHaskellDepends = [
- base containers criterion directory filepath text
- ];
- description = "syntax highlighting library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "skylighting-core_0_10_0_2" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, attoparsec, base
- , base64-bytestring, binary, blaze-html, bytestring
- , case-insensitive, colour, containers, criterion, Diff, directory
, filepath, HUnit, hxt, mtl, pretty-show, QuickCheck, random, safe
, tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text
, transformers, utf8-string
}:
mkDerivation {
pname = "skylighting-core";
- version = "0.10.0.2";
- sha256 = "07gdvmz8lvqkzzgnxakx015g2ijmqd2jmni1phz6x79xf9q7s5vw";
+ version = "0.10.1";
+ sha256 = "10da31x6zj1b3kydr63g36zmmqpqmgcbwdalhxvbmxliw1m5kfvx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -235933,7 +233366,6 @@ self: {
];
description = "syntax highlighting library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"skylighting-extensions" = callPackage
@@ -236456,8 +233888,8 @@ self: {
}:
mkDerivation {
pname = "slynx";
- version = "0.4.1";
- sha256 = "1cmbk2ynyd5il0jlci5jbc2mn4vhwgrbr7041vgivnqg3p5mb1lx";
+ version = "0.5.0";
+ sha256 = "0n1d90bmqbiw3w5abncqlk39vca59hd5zkk02q5ickf97zfqik00";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -236468,8 +233900,6 @@ self: {
executableHaskellDepends = [ base ];
description = "Handle molecular sequences";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"small-bytearray-builder" = callPackage
@@ -236525,23 +233955,11 @@ self: {
({ mkDerivation, base, logict, mtl, pretty }:
mkDerivation {
pname = "smallcheck";
- version = "1.1.7";
- sha256 = "0dcnwg1mn1v57fbm9g5a94qfqwp9a6nzvxlwyxca4vf27qn9wpyh";
- libraryHaskellDepends = [ base logict mtl pretty ];
- description = "A property-based testing library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "smallcheck_1_2_0" = callPackage
- ({ mkDerivation, base, logict, mtl, pretty }:
- mkDerivation {
- pname = "smallcheck";
version = "1.2.0";
sha256 = "1y6rh1g7pi99jqq32xdv79yli9hmbfwjqg8ix1z2i2qkqqkr5iyn";
libraryHaskellDepends = [ base logict mtl pretty ];
description = "A property-based testing library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smallcheck-kind-generics" = callPackage
@@ -236559,6 +233977,8 @@ self: {
benchmarkHaskellDepends = [ base gauge ];
description = "See README for more info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"smallcheck-laws" = callPackage
@@ -236608,8 +234028,6 @@ self: {
];
description = "Extra SmallCheck series and utilities";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"smallpt-hs" = callPackage
@@ -236832,6 +234250,8 @@ self: {
pname = "smash-microlens";
version = "0.1.0.0";
sha256 = "164vmvrgfsq777408skndzybhg4cp0d97vrijk6b66nnv9k4ril0";
+ revision = "1";
+ editedCabalFile = "020r04bxhml84lgl1bvf2s6gjahswdxpzcrla43rqhx0paz0n0cs";
libraryHaskellDepends = [ base microlens smash ];
testHaskellDepends = [ base ];
description = "Optics for the `smash` library";
@@ -236847,8 +234267,6 @@ self: {
libraryHaskellDepends = [ base optics-core smash ];
description = "Optics for the `smash` library using `optics-core`";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"smcdel" = callPackage
@@ -236934,6 +234352,8 @@ self: {
libraryHaskellDepends = [ base bytesmith primitive ];
description = "Parse arrays of tokens";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"smith-cli" = callPackage
@@ -237044,6 +234464,20 @@ self: {
broken = true;
}) {};
+ "smt2-parser" = callPackage
+ ({ mkDerivation, base, HUnit, parsec, text }:
+ mkDerivation {
+ pname = "smt2-parser";
+ version = "0.1.0.0";
+ sha256 = "025v77ck9cn0pgfbf2fgqf18bpr1h2gn6szsnmh5q1n4hi961v6m";
+ libraryHaskellDepends = [ base parsec text ];
+ testHaskellDepends = [ base HUnit parsec text ];
+ description = "A Haskell parser for SMT-LIB version 2.6";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"smtLib" = callPackage
({ mkDerivation, base, pretty }:
mkDerivation {
@@ -237559,8 +234993,6 @@ self: {
];
description = "Snap dynamic loader";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"snap-loader-static" = callPackage
@@ -237572,8 +235004,6 @@ self: {
libraryHaskellDepends = [ base template-haskell ];
description = "Snap static loader";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"snap-predicates" = callPackage
@@ -237633,10 +235063,8 @@ self: {
}:
mkDerivation {
pname = "snap-server";
- version = "1.1.1.2";
- sha256 = "1qprlgn59n9layslshpkizzjbsbd87v5h35iylva58vfnwwlmz77";
- revision = "1";
- editedCabalFile = "0bzda5wah6x4cx8g4m6ml4jkcn852i4cxvcgb61jxmwf910arbax";
+ version = "1.1.2.0";
+ sha256 = "0w4yv9a5ilpma0335ariwap2iscmdbaaif88lq3cm7px910nyc4j";
configureFlags = [ "-fopenssl" ];
isLibrary = true;
isExecutable = true;
@@ -237644,7 +235072,8 @@ self: {
attoparsec base blaze-builder bytestring bytestring-builder
case-insensitive clock containers filepath HsOpenSSL io-streams
io-streams-haproxy lifted-base mtl network old-locale
- openssl-streams snap-core text time unix unix-compat vector
+ openssl-streams snap-core text time transformers unix unix-compat
+ vector
];
testHaskellDepends = [
attoparsec base base16-bytestring blaze-builder bytestring
@@ -237657,7 +235086,8 @@ self: {
];
benchmarkHaskellDepends = [
attoparsec base blaze-builder bytestring bytestring-builder
- criterion io-streams io-streams-haproxy snap-core vector
+ criterion io-streams io-streams-haproxy snap-core transformers
+ vector
];
description = "A web server for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
@@ -238058,8 +235488,6 @@ self: {
];
description = "snaplet-i18n";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"snaplet-influxdb" = callPackage
@@ -238222,8 +235650,6 @@ self: {
];
description = "persistent snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"snaplet-postgresql-simple" = callPackage
@@ -239859,8 +237285,8 @@ self: {
}:
mkDerivation {
pname = "spake2";
- version = "0.4.2";
- sha256 = "02zvlh7pva2d2k56n3070wdp4chv6avhwzn7mg2zax1mzswd21r4";
+ version = "0.4.3";
+ sha256 = "1vr19nia8876c19l4fj1v2bfxkfm8bbg65gmqn7as9rn8jg7wx64";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -240419,8 +237845,6 @@ self: {
testHaskellDepends = [ base containers ];
description = "Speedy slice sampling";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"spelling-suggest" = callPackage
@@ -240682,6 +238106,8 @@ self: {
];
description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"splines" = callPackage
@@ -240718,18 +238144,6 @@ self: {
license = stdenv.lib.licenses.isc;
}) {};
- "split_0_1_4_3" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "split";
- version = "0.1.4.3";
- sha256 = "1i9vmb0zvmhqj6qcbnsapsk9lhsyzznz336c8s7v4sz20s99hsby";
- libraryHaskellDepends = [ base ];
- description = "Combinator library for splitting lists";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"split" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -240819,17 +238233,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "splitmix_0_1_0_1" = callPackage
+ "splitmix_0_1_0_3" = callPackage
({ mkDerivation, async, base, base-compat, base-compat-batteries
, bytestring, clock, containers, criterion, deepseq, HUnit
, math-functions, process, random, test-framework
- , test-framework-hunit, tf-random, time, vector
+ , test-framework-hunit, tf-random, vector
}:
mkDerivation {
pname = "splitmix";
- version = "0.1.0.1";
- sha256 = "0ahr3zxx0n9pjxpldrphqx5rhanar6alq3km7qvszipa8r46jjsd";
- libraryHaskellDepends = [ base deepseq time ];
+ version = "0.1.0.3";
+ sha256 = "0das5n44dhlcv5i233iakx37d17kidqvhrvp6w9nd7hc015ry026";
+ libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [
async base base-compat base-compat-batteries bytestring containers
deepseq HUnit math-functions process random test-framework
@@ -241341,8 +238755,6 @@ self: {
testHaskellDepends = [ base mtl sqlite-simple text ];
description = "Wrapper around errors from sqlite-simple";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"sqlite-simple-typed" = callPackage
@@ -241504,8 +238916,8 @@ self: {
}:
mkDerivation {
pname = "sr-extra";
- version = "1.80";
- sha256 = "03xm9km8wzvz8g1czj320k00xf2dzdi8rm74l7xdr9h7bxcwyh84";
+ version = "1.85.1";
+ sha256 = "15x8d413m8ldl81b5yx13nprr4k0aszx33mjm880za0k90s8r65x";
libraryHaskellDepends = [
base base64-bytestring bytestring bzlib Cabal cereal containers
Diff directory exceptions fgl filemanip filepath generic-data
@@ -241892,35 +239304,6 @@ self: {
"stache" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
- , deepseq, directory, file-embed, filepath, hspec, hspec-discover
- , hspec-megaparsec, megaparsec, mtl, template-haskell, text
- , unordered-containers, vector, yaml
- }:
- mkDerivation {
- pname = "stache";
- version = "2.1.1";
- sha256 = "06pn7pm5vgk9f4bsh3m29cik514nv5w655ip04k7p5jv9xgmn4ld";
- revision = "2";
- editedCabalFile = "1a25mwi1x3yqq9clm9gz0dibpnppznbx392ixfwc21hnngn7kxsp";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson base bytestring containers deepseq directory filepath
- megaparsec mtl template-haskell text unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base bytestring containers file-embed hspec hspec-megaparsec
- megaparsec template-haskell text yaml
- ];
- testToolDepends = [ hspec-discover ];
- benchmarkHaskellDepends = [
- aeson base criterion deepseq megaparsec text
- ];
- description = "Mustache templates for Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "stache_2_2_0" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, criterion
, deepseq, directory, file-embed, filepath, gitrev, hspec
, hspec-discover, hspec-megaparsec, megaparsec, mtl
, optparse-applicative, template-haskell, text
@@ -241953,7 +239336,6 @@ self: {
];
description = "Mustache templates for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stack" = callPackage
@@ -241980,6 +239362,8 @@ self: {
pname = "stack";
version = "2.5.1";
sha256 = "1ffbgs5wgdcvvwbg3pkpgih5dqcbw8mpjj2p49fd8f79cfxmjq20";
+ revision = "1";
+ editedCabalFile = "0k5hapiyq2qv8sn2l2j5sh6w9b8493apwwsbrhpym5m1llxrv29p";
configureFlags = [
"-fdisable-git-info" "-fhide-dependency-versions"
"-fsupported-build"
@@ -242050,6 +239434,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "stack-all" = callPackage
+ ({ mkDerivation, base, config-ini, directory, extra, filepath
+ , process, simple-cmd, simple-cmd-args, text
+ }:
+ mkDerivation {
+ pname = "stack-all";
+ version = "0.1.1";
+ sha256 = "0b81f6v18dyd5zia6drqn3jqncj3sp8cscrhlrcwvbljs1j8fd0j";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base config-ini directory extra filepath process simple-cmd
+ simple-cmd-args text
+ ];
+ description = "CLI tool for building across Stackage major versions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"stack-bump" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring, filepath
, Glob, hspec, lens, lens-aeson, optparse-applicative, process
@@ -242076,17 +239478,17 @@ self: {
}) {};
"stack-clean-old" = callPackage
- ({ mkDerivation, base, directory, extra, filepath, simple-cmd
- , simple-cmd-args
+ ({ mkDerivation, base, directory, extra, filemanip, filepath
+ , simple-cmd, simple-cmd-args
}:
mkDerivation {
pname = "stack-clean-old";
- version = "0.1";
- sha256 = "12q3x0lj8mjhfr6zrizl7995qca28qccjfqwhriciv35l4sny9md";
+ version = "0.2.1";
+ sha256 = "0wal5jhm78di54gwwmbmbpp76n7fkna82kg2p3ldzi0r2q53m44h";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base directory extra filepath simple-cmd simple-cmd-args
+ base directory extra filemanip filepath simple-cmd simple-cmd-args
];
description = "Clean away old stack build artefacts";
license = stdenv.lib.licenses.bsd3;
@@ -242354,10 +239756,8 @@ self: {
}:
mkDerivation {
pname = "stack2cabal";
- version = "1.0.11";
- sha256 = "1lm4dl743xscrksgqg1v1ylm4bb3i8j470yih8si968k7xzcdvx2";
- revision = "1";
- editedCabalFile = "1ga8z004rvrvi58yfr7vmikngn3q8134z87nzaj0lll39kljni83";
+ version = "1.0.12";
+ sha256 = "0424qz4fy8218a0zr8pw5kbaldrb3wddvsb87sjqbb4q5qcm7rj7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -242372,8 +239772,6 @@ self: {
];
description = "Convert stack projects to cabal.project + cabal.project.freeze";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stack2nix" = callPackage
@@ -242788,29 +240186,6 @@ self: {
}:
mkDerivation {
pname = "stackcollapse-ghc";
- version = "0.0.1.2";
- sha256 = "17ypxfscz9y7w6jh06133j779837dhdiq2a378mc73ji2m5fia1s";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base bytestring containers extra foldl recursion-schemes rosezipper
- safe text transformers
- ];
- testHaskellDepends = [
- base bytestring containers extra foldl hspec hspec-golden
- recursion-schemes rosezipper safe text transformers utf8-string
- ];
- description = "Program to fold GHC prof files into flamegraph input";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "stackcollapse-ghc_0_0_1_3" = callPackage
- ({ mkDerivation, base, bytestring, containers, extra, foldl, hspec
- , hspec-golden, recursion-schemes, rosezipper, safe, text
- , transformers, utf8-string
- }:
- mkDerivation {
- pname = "stackcollapse-ghc";
version = "0.0.1.3";
sha256 = "05271x47b2aik2msfm9f6jsazb174p667acwyd84vs73nygpbmdk";
isLibrary = false;
@@ -242825,7 +240200,6 @@ self: {
];
description = "Program to fold GHC prof files into flamegraph input";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stacked-dag" = callPackage
@@ -242911,8 +240285,6 @@ self: {
doHaddock = false;
description = "Haskell STatic ANalyser";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"standalone-derive-topdown" = callPackage
@@ -243132,8 +240504,6 @@ self: {
];
description = "A faster variant of the RWS monad transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"statechart" = callPackage
@@ -243184,6 +240554,8 @@ self: {
];
description = "Simple State-like monad transformer with saveable and restorable state";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"statethread" = callPackage
@@ -243234,8 +240606,6 @@ self: {
];
description = "Type-safe and interoperable static values and closures";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"static-canvas" = callPackage
@@ -243579,27 +240949,28 @@ self: {
"staversion" = callPackage
({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal
- , containers, directory, filepath, heredoc, hspec, http-client
- , http-client-tls, http-types, megaparsec, optparse-applicative
- , pretty, process, QuickCheck, semigroups, text, transformers
- , transformers-compat, unordered-containers, yaml
+ , containers, directory, filepath, hashable, heredoc, hspec
+ , http-client, http-client-tls, http-types, megaparsec
+ , optparse-applicative, pretty, process, QuickCheck, semigroups
+ , text, transformers, transformers-compat, unordered-containers
+ , yaml
}:
mkDerivation {
pname = "staversion";
- version = "0.2.3.7";
- sha256 = "0mrkm7gr6s27dngws7p3mcfyp9pdvyr25mg9nd3ygklaql74jmng";
+ version = "0.2.4.0";
+ sha256 = "1n6f7ka4ncadp4svd3bc81qxdgiff85mws5apx7wdhcwfn8wbsib";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base bytestring Cabal containers directory
- filepath http-client http-client-tls http-types megaparsec
+ filepath hashable http-client http-client-tls http-types megaparsec
optparse-applicative pretty process semigroups text transformers
transformers-compat unordered-containers yaml
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
base bytestring Cabal filepath heredoc hspec QuickCheck semigroups
- text
+ text unordered-containers
];
description = "What version is the package X in stackage lts-Y.ZZ?";
license = stdenv.lib.licenses.bsd3;
@@ -244061,8 +241432,8 @@ self: {
}:
mkDerivation {
pname = "stm-containers";
- version = "1.1.0.4";
- sha256 = "0mcn4v9gjkqp27xcwvqphiqnaj4grvxpsflhq0rwqp5ymnzlccyl";
+ version = "1.2";
+ sha256 = "0yhpnxj7v880fy7vgjz5idpqfg2sm4dflp13k7fs0bqqlfv9hkbc";
libraryHaskellDepends = [
base deferred-folds focus hashable list-t stm-hamt transformers
];
@@ -244072,6 +241443,8 @@ self: {
];
description = "Containers for STM";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stm-delay" = callPackage
@@ -244141,6 +241514,8 @@ self: {
];
description = "STM-specialised Hash Array Mapped Trie";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stm-incremental" = callPackage
@@ -244218,8 +241593,8 @@ self: {
}:
mkDerivation {
pname = "stm-queue";
- version = "0.1.2.0";
- sha256 = "06l5gavmf4x6vp54p1h27nnm5nnw6f8p82v5np93b25inc67vz4h";
+ version = "0.1.2.1";
+ sha256 = "0by8jga1wrzzasa442fi61nl5kv88vbl2030gidmgzrzbgf0q8yc";
libraryHaskellDepends = [ base stm ];
testHaskellDepends = [ async base hspec stm ];
benchmarkHaskellDepends = [
@@ -244289,8 +241664,6 @@ self: {
testHaskellDepends = [ async base QuickCheck random Unique ];
description = "STM wrapper around Control.Concurrent.Supply.";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stm-tlist" = callPackage
@@ -244350,6 +241723,8 @@ self: {
testHaskellDepends = [ base bytestring HUnit ];
description = "Library for the IEX Trading API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stomp-conduit" = callPackage
@@ -244580,8 +241955,8 @@ self: {
}:
mkDerivation {
pname = "store";
- version = "0.7.7";
- sha256 = "152blmvnp8k0bh9bw6ddzmb2rhs0a36v1k0fza39n88sldx504s3";
+ version = "0.7.8";
+ sha256 = "0z312r0gwz0mzkpqal5vbcz5drdfwrnjnxfwfc594q2x7s8idiz3";
libraryHaskellDepends = [
array async base base-orphans base64-bytestring bifunctors
bytestring containers contravariant cryptohash deepseq directory
@@ -244620,8 +241995,8 @@ self: {
}:
mkDerivation {
pname = "store-core";
- version = "0.4.4.3";
- sha256 = "1b0fpv8wdp9lcvqplls548xrh336cb1m617fzd0ysbzqhhg5r3fv";
+ version = "0.4.4.4";
+ sha256 = "0h21wp51phbwk9ajblqaqzx1hk9c58gkihmycjn0hj299kxly80y";
libraryHaskellDepends = [
base bytestring ghc-prim primitive text transformers
];
@@ -244649,8 +242024,6 @@ self: {
];
description = "Streaming interfaces for `store`";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stp" = callPackage
@@ -244694,30 +242067,6 @@ self: {
}:
mkDerivation {
pname = "stratosphere";
- version = "0.53.0";
- sha256 = "0842sfn7vspbq5kc6rx7i2mvmk6zap87233khybbmvrzzyrp0sp2";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring containers hashable lens
- template-haskell text unordered-containers
- ];
- testHaskellDepends = [
- aeson aeson-pretty base bytestring containers hashable hspec
- hspec-discover lens template-haskell text unordered-containers
- ];
- testToolDepends = [ hspec-discover ];
- description = "EDSL for AWS CloudFormation";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "stratosphere_0_59_1" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
- , hashable, hspec, hspec-discover, lens, template-haskell, text
- , unordered-containers
- }:
- mkDerivation {
- pname = "stratosphere";
version = "0.59.1";
sha256 = "1gcvz8gpyj495jr5qa2jx2yay7ip3hs1dd4bqckmam8llyz2gvxv";
isLibrary = true;
@@ -244733,7 +242082,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "EDSL for AWS CloudFormation";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stratum-tool" = callPackage
@@ -244812,6 +242160,8 @@ self: {
];
description = "A library for using HTTP with stratux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stratux-types" = callPackage
@@ -244827,6 +242177,8 @@ self: {
];
description = "A library for reading JSON output from stratux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stratux-websockets" = callPackage
@@ -244984,6 +242336,8 @@ self: {
];
description = "Streaming conversion from/to base64";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-benchmarks" = callPackage
@@ -245009,6 +242363,8 @@ self: {
];
description = "Benchmarks to compare streaming packages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-binary" = callPackage
@@ -245069,38 +242425,17 @@ self: {
}) {};
"streaming-bytestring" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl
- , resourcet, smallcheck, streaming, tasty, tasty-smallcheck
- , transformers, transformers-base
- }:
- mkDerivation {
- pname = "streaming-bytestring";
- version = "0.1.6";
- sha256 = "1lsklavhk6wcsgjr2rcwkkv827gnd9spv4zwz5i5zf3njvy27my1";
- libraryHaskellDepends = [
- base bytestring deepseq exceptions mmorph mtl resourcet streaming
- transformers transformers-base
- ];
- testHaskellDepends = [
- base bytestring smallcheck streaming tasty tasty-smallcheck
- transformers
- ];
- description = "effectful byte steams, or: bytestring io done right";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "streaming-bytestring_0_1_7" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl
- , resourcet, smallcheck, streaming, tasty, tasty-hunit
+ ({ mkDerivation, base, bytestring, deepseq, exceptions, ghc-prim
+ , mmorph, mtl, resourcet, smallcheck, streaming, tasty, tasty-hunit
, tasty-smallcheck, transformers, transformers-base
}:
mkDerivation {
pname = "streaming-bytestring";
- version = "0.1.7";
- sha256 = "12fd0aqd6vxm8c6ccgqd99m1hh3z3nb155hairnddzix0v3r8zvd";
+ version = "0.2.0";
+ sha256 = "1vmbg84xc7ix7ihs96ia13gdpi7z3grrkq9qai6j8s1klnzpljhi";
libraryHaskellDepends = [
- base bytestring deepseq exceptions mmorph mtl resourcet streaming
- transformers transformers-base
+ base bytestring deepseq exceptions ghc-prim mmorph mtl resourcet
+ streaming transformers transformers-base
];
testHaskellDepends = [
base bytestring resourcet smallcheck streaming tasty tasty-hunit
@@ -245108,7 +242443,6 @@ self: {
];
description = "Fast, effectful byte streams";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"streaming-cassava" = callPackage
@@ -245178,6 +242512,8 @@ self: {
];
description = "Concurrency support for the streaming ecosystem";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-conduit" = callPackage
@@ -245212,6 +242548,8 @@ self: {
];
description = "Client-side consumption of a ServerEvent";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-eversion" = callPackage
@@ -245309,6 +242647,8 @@ self: {
];
description = "A hand-written streaming byte parser for OpenStreetMap Protobuf data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-pcap" = callPackage
@@ -245330,6 +242670,8 @@ self: {
];
description = "Stream packets via libpcap";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-png" = callPackage
@@ -245439,6 +242781,8 @@ self: {
];
description = "http, attoparsec, pipes and other utilities for the streaming libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streaming-wai" = callPackage
@@ -245472,6 +242816,8 @@ self: {
];
description = "with/bracket-style idioms for use with streaming";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"streamly" = callPackage
@@ -245609,8 +242955,8 @@ self: {
}:
mkDerivation {
pname = "streamly-lmdb";
- version = "0.1.0";
- sha256 = "0yccaszb6fbasmlwq3iqci7gin8kf7hgmlcjfsq0pdqw32lnmcbn";
+ version = "0.2.0";
+ sha256 = "1mkcnn7y4rwc8m0qvcqyw20jd7ax3nm455228fwp3yaslgw4mcvy";
libraryHaskellDepends = [ async base bytestring streamly ];
librarySystemDepends = [ lmdb ];
testHaskellDepends = [
@@ -245620,8 +242966,6 @@ self: {
testSystemDepends = [ lmdb ];
description = "Stream data to or from LMDB databases using the streamly library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) lmdb;};
"streamly-posix" = callPackage
@@ -245731,17 +243075,6 @@ self: {
}) {};
"strict" = callPackage
- ({ mkDerivation, array, base }:
- mkDerivation {
- pname = "strict";
- version = "0.3.2";
- sha256 = "08cjajqz9h47fkq98mlf3rc8n5ghbmnmgn8pfsl3bdldjdkmmlrc";
- libraryHaskellDepends = [ array base ];
- description = "Strict data types and String IO";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "strict_0_4" = callPackage
({ mkDerivation, assoc, base, binary, bytestring, deepseq, ghc-prim
, hashable, text, these, transformers
}:
@@ -245755,7 +243088,6 @@ self: {
];
description = "Strict data types and String IO";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"strict-base" = callPackage
@@ -245772,22 +243104,6 @@ self: {
}) {};
"strict-base-types" = callPackage
- ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim
- , hashable, lens, QuickCheck, strict
- }:
- mkDerivation {
- pname = "strict-base-types";
- version = "0.6.1";
- sha256 = "0yihvjijag9g55ihrgqj0vwn6ksvscj3r0n2zzxz2qbxrhx6m1pq";
- libraryHaskellDepends = [
- aeson base bifunctors binary deepseq ghc-prim hashable lens
- QuickCheck strict
- ];
- description = "Strict variants of the types provided in base";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "strict-base-types_0_7" = callPackage
({ mkDerivation, aeson, base, quickcheck-instances, strict
, strict-lens
}:
@@ -245801,6 +243117,7 @@ self: {
description = "Strict variants of the types provided in base";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"strict-concurrency" = callPackage
@@ -245849,6 +243166,8 @@ self: {
libraryHaskellDepends = [ base ghc syb ];
description = "Compiler plugin for making Haskell strict";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"strict-identity" = callPackage
@@ -245884,8 +243203,6 @@ self: {
libraryHaskellDepends = [ base lens strict ];
description = "Lenses for types in strict package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"strict-list" = callPackage
@@ -245914,18 +243231,14 @@ self: {
libraryHaskellDepends = [ base optics-core strict ];
description = "Optics for types in strict package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"strict-tuple" = callPackage
({ mkDerivation, base, bifunctors, deepseq, hashable }:
mkDerivation {
pname = "strict-tuple";
- version = "0.1.3";
- sha256 = "0dyiwgkbr1d97jbri7a2q4by7g0wiszpw3hgfgqv4rfp25lsv39j";
- revision = "1";
- editedCabalFile = "1bkizfki8v5p0n8sy59s4zqjmv1mnv3s45327cig9cr081ibv9yy";
+ version = "0.1.4";
+ sha256 = "06fyf58kl3c5xpfdd5h7368ggbfadm5n67h3kqajrsgh3yl84hrq";
libraryHaskellDepends = [ base bifunctors deepseq hashable ];
testHaskellDepends = [ base ];
description = "Strict tuples";
@@ -246093,36 +243406,6 @@ self: {
"string-interpolate" = callPackage
({ mkDerivation, base, bytestring, criterion, deepseq, formatting
- , haskell-src-exts, haskell-src-meta, hspec, interpolate
- , neat-interpolation, QuickCheck, quickcheck-instances
- , quickcheck-text, quickcheck-unicode, split, template-haskell
- , text, text-conversions, unordered-containers, utf8-string
- }:
- mkDerivation {
- pname = "string-interpolate";
- version = "0.2.1.0";
- sha256 = "0wply8lqfhc1xnqxq88xwygwqxbq86gjrwphygbn7nz66g2abgda";
- revision = "2";
- editedCabalFile = "00dsrl53aggn0d45cv3c7w6x82qhz3a059w957s9i3qdqfphbvx9";
- libraryHaskellDepends = [
- base bytestring haskell-src-exts haskell-src-meta split
- template-haskell text text-conversions utf8-string
- ];
- testHaskellDepends = [
- base bytestring hspec QuickCheck quickcheck-instances
- quickcheck-text quickcheck-unicode template-haskell text
- unordered-containers
- ];
- benchmarkHaskellDepends = [
- base bytestring criterion deepseq formatting interpolate
- neat-interpolation QuickCheck text
- ];
- description = "Haskell string/text/bytestring interpolation that just works";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "string-interpolate_0_3_0_2" = callPackage
- ({ mkDerivation, base, bytestring, criterion, deepseq, formatting
, haskell-src-exts, haskell-src-meta, hspec, hspec-core
, interpolate, neat-interpolation, QuickCheck, quickcheck-instances
, quickcheck-text, quickcheck-unicode, split, template-haskell
@@ -246132,6 +243415,8 @@ self: {
pname = "string-interpolate";
version = "0.3.0.2";
sha256 = "1dkw4q2fxnr7gnish45lryxwrmdy93ffa1010qdnjlnz5m3dxbyl";
+ revision = "1";
+ editedCabalFile = "1rwylfxa821260mxfsr6l6grcyz7gxk18mvjijfhg5sm53v4c1ka";
libraryHaskellDepends = [
base bytestring haskell-src-exts haskell-src-meta split
template-haskell text text-conversions utf8-string
@@ -246147,7 +243432,6 @@ self: {
];
description = "Haskell string/text/bytestring interpolation that just works";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"string-isos" = callPackage
@@ -246443,8 +243727,6 @@ self: {
];
description = "Stripe API for Haskell - Pure Core";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stripe-haskell" = callPackage
@@ -246456,8 +243738,6 @@ self: {
libraryHaskellDepends = [ base stripe-core stripe-http-client ];
description = "Stripe API for Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stripe-http-client" = callPackage
@@ -246477,8 +243757,6 @@ self: {
];
description = "Stripe API for Haskell - http-client backend";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stripe-http-streams" = callPackage
@@ -246536,8 +243814,6 @@ self: {
testHaskellDepends = [ base bytestring text ];
description = "Verification of Stripe webhook signatures";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stripe-tests" = callPackage
@@ -246555,8 +243831,6 @@ self: {
];
description = "Tests for Stripe API bindings for Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"stripe-wreq" = callPackage
@@ -246573,6 +243847,8 @@ self: {
];
description = "Use the Stripe API via Wreq";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"stripeapi" = callPackage
@@ -246673,27 +243949,6 @@ self: {
({ mkDerivation, base, Cabal, cabal-doctest, deepseq, directory
, doctest, filepath, ghc-prim, parallel, primitive, QuickCheck
, tasty, tasty-hunit, tasty-quickcheck, template-haskell
- }:
- mkDerivation {
- pname = "structs";
- version = "0.1.3";
- sha256 = "1y8w44lsybzrkhnv2nrk4zpsp01hny66syibh3xwqpi06k18h2lr";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base deepseq ghc-prim primitive template-haskell
- ];
- testHaskellDepends = [
- base directory doctest filepath parallel primitive QuickCheck tasty
- tasty-hunit tasty-quickcheck
- ];
- description = "Strict GC'd imperative object-oriented programming with cheap pointers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "structs_0_1_4" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, directory
- , doctest, filepath, ghc-prim, parallel, primitive, QuickCheck
- , tasty, tasty-hunit, tasty-quickcheck, template-haskell
, th-abstraction
}:
mkDerivation {
@@ -246710,7 +243965,6 @@ self: {
];
description = "Strict GC'd imperative object-oriented programming with cheap pointers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"structural-induction" = callPackage
@@ -246771,24 +244025,6 @@ self: {
}) {};
"structured-cli" = callPackage
- ({ mkDerivation, base, data-default, haskeline, mtl, split
- , transformers
- }:
- mkDerivation {
- pname = "structured-cli";
- version = "2.5.2.0";
- sha256 = "0sq72gyqg73d3nxfkv8bynyk30l3lw1vfmfw9jg4smmj2ix7n5a0";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base data-default haskeline mtl split transformers
- ];
- executableHaskellDepends = [ base data-default mtl split ];
- description = "Application library for building interactive console CLIs";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "structured-cli_2_6_0_0" = callPackage
({ mkDerivation, base, data-default, exceptions, haskeline, mtl
, split, transformers
}:
@@ -246806,7 +244042,6 @@ self: {
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
@@ -247006,38 +244241,6 @@ self: {
"stylish-haskell" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, containers
- , directory, file-embed, filepath, haskell-src-exts, HsYAML
- , HsYAML-aeson, HUnit, mtl, optparse-applicative, random
- , semigroups, strict, syb, test-framework, test-framework-hunit
- , text
- }:
- mkDerivation {
- pname = "stylish-haskell";
- version = "0.11.0.3";
- sha256 = "10svl5q95n9i76rqvlxibi784qzvdyg8qfl1xwk7c32y84nyfibn";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring Cabal containers directory file-embed
- filepath haskell-src-exts HsYAML HsYAML-aeson mtl semigroups syb
- text
- ];
- executableHaskellDepends = [
- aeson base bytestring Cabal containers directory file-embed
- filepath haskell-src-exts HsYAML HsYAML-aeson mtl
- optparse-applicative strict syb
- ];
- testHaskellDepends = [
- aeson base bytestring Cabal containers directory file-embed
- filepath haskell-src-exts HsYAML HsYAML-aeson HUnit mtl random syb
- test-framework test-framework-hunit text
- ];
- description = "Haskell code prettifier";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "stylish-haskell_0_12_2_0" = callPackage
- ({ mkDerivation, aeson, base, bytestring, Cabal, containers
, directory, file-embed, filepath, ghc-lib-parser, HsYAML
, HsYAML-aeson, HUnit, mtl, optparse-applicative, random, strict
, syb, test-framework, test-framework-hunit, text
@@ -247064,7 +244267,6 @@ self: {
];
description = "Haskell code prettifier";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stylist" = callPackage
@@ -247073,8 +244275,8 @@ self: {
}:
mkDerivation {
pname = "stylist";
- version = "2.2.0.0";
- sha256 = "0pmyjxdg7m0fh9m0nrimi02q4lqk47kfbws65mb22rj7ckm7gw68";
+ version = "2.3.0.0";
+ sha256 = "04nxhsv4v6qlr19fw29jf925b7qhp5777mn0q55sm0jhn7r4v6lv";
libraryHaskellDepends = [
async base css-syntax hashable network-uri text
unordered-containers
@@ -247139,6 +244341,8 @@ self: {
];
description = "An applicative functor that seamlessly talks to HTML inputs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"sub-state" = callPackage
@@ -247164,13 +244368,24 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "subG";
- version = "0.1.1.1";
- sha256 = "0726w12aqjmbdvqp8lpv68dh4h98bzv13ng41831ljdr76c3lrsy";
+ version = "0.4.2.0";
+ sha256 = "17fzdwlmh8ykwqn9h9a60wpnvqbgbz0wk6cgcrglbj0i41jy28jv";
libraryHaskellDepends = [ base ];
description = "Some extension to the Foldable and Monoid classes";
license = stdenv.lib.licenses.mit;
}) {};
+ "subG-instances" = callPackage
+ ({ mkDerivation, base, subG, vector }:
+ mkDerivation {
+ pname = "subG-instances";
+ version = "0.1.0.0";
+ sha256 = "0nyhd0l0cd1q62ch9jbjyv33f9sdidpgkjbkb0hj4dagqyxpv0jy";
+ libraryHaskellDepends = [ base subG vector ];
+ description = "Additional instances for the InsertLeft class from subG package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"subcategories" = callPackage
({ mkDerivation, base, bytestring, containers, data-default, foldl
, hashable, inspection-testing, mono-traversable, pointed
@@ -247529,6 +244744,8 @@ self: {
];
description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"summoner-tui" = callPackage
@@ -247548,6 +244765,8 @@ self: {
executableHaskellDepends = [ base relude ];
description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects using TUI";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"sump" = callPackage
@@ -247939,8 +245158,6 @@ self: {
testHaskellDepends = [ base hspec ];
description = "Monitor groups of threads with non-hierarchical lifetimes";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"supplemented" = callPackage
@@ -248126,6 +245343,8 @@ self: {
];
description = "DSL for building SVG";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"svg-builder-fork" = callPackage
@@ -248367,38 +245586,6 @@ self: {
}:
mkDerivation {
pname = "swagger2";
- version = "2.5";
- sha256 = "0ywj4536daz43vrxibqn271gq96bzkawx3qcwbm547315jfd4fqf";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- aeson aeson-pretty base base-compat-batteries bytestring containers
- cookie generics-sop hashable http-media insert-ordered-containers
- lens mtl network optics-core optics-th QuickCheck scientific
- template-haskell text time transformers transformers-compat
- unordered-containers uuid-types vector
- ];
- testHaskellDepends = [
- aeson base base-compat-batteries bytestring containers doctest Glob
- hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck
- quickcheck-instances template-haskell text time
- unordered-containers utf8-string vector
- ];
- testToolDepends = [ hspec-discover ];
- description = "Swagger 2.0 data model";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "swagger2_2_6" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries
- , bytestring, Cabal, cabal-doctest, containers, cookie, doctest
- , generics-sop, Glob, hashable, hspec, hspec-discover, http-media
- , HUnit, insert-ordered-containers, lens, mtl, network, optics-core
- , optics-th, QuickCheck, quickcheck-instances, scientific
- , template-haskell, text, time, transformers, transformers-compat
- , unordered-containers, utf8-string, uuid-types, vector
- }:
- mkDerivation {
- pname = "swagger2";
version = "2.6";
sha256 = "0vkhikxf1gpspc9qjgnvz3glb01bd54bnc5kraac7dyn8cxzwak8";
revision = "2";
@@ -248420,7 +245607,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Swagger 2.0 data model";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"swapper" = callPackage
@@ -248471,8 +245657,8 @@ self: {
}:
mkDerivation {
pname = "sweet-egison";
- version = "0.1.1.2";
- sha256 = "0cf4wq7lmp5y40niwvlmj5l2bvjl16vbv2dx03m86mg1n16jb30y";
+ version = "0.1.1.3";
+ sha256 = "0b2rvfgj7l10plgri5ia3l07ip71c9c3259k78z140i57pfjlfh7";
libraryHaskellDepends = [
backtracking base egison-pattern-src egison-pattern-src-th-mode
haskell-src-exts haskell-src-meta logict template-haskell
@@ -248483,6 +245669,8 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Shallow embedding implementation of non-linear pattern matching";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"swf" = callPackage
@@ -248545,8 +245733,8 @@ self: {
}:
mkDerivation {
pname = "swiss-ephemeris";
- version = "1.2.0.0";
- sha256 = "1inzvwm7z562q07r5h8prxpn4g1ywza88a7rv95yx8634fcy1bsl";
+ version = "1.2.1.0";
+ sha256 = "0mbq3mzplxnnpr1zqbgg6k1ggh0fw4xlzvyg74rid863dxcldjpm";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base directory hspec QuickCheck ];
testToolDepends = [ hspec-discover ];
@@ -248792,6 +245980,8 @@ self: {
];
description = "Symantics for parsing and documenting a CLI";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-document" = callPackage
@@ -248840,6 +246030,8 @@ self: {
];
description = "Symantic combinators for deriving clients or a server from an HTTP API";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-http-client" = callPackage
@@ -248858,6 +246050,8 @@ self: {
];
description = "symantic-http applied to the derivation of HTTP clients";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-http-demo" = callPackage
@@ -248884,6 +246078,8 @@ self: {
];
description = "Demo for symantic-http and its companion libraries";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-http-pipes" = callPackage
@@ -248905,6 +246101,8 @@ self: {
];
description = "Streaming support through pipes for symantic-http";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-http-server" = callPackage
@@ -248923,6 +246121,8 @@ self: {
];
description = "symantic-http applied to the derivation of HTTP servers";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"symantic-http-test" = callPackage
@@ -250214,8 +247414,6 @@ self: {
];
description = "Format tabular data as grid or table";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"table-tennis" = callPackage
@@ -250379,10 +247577,8 @@ self: {
}:
mkDerivation {
pname = "taffybar";
- version = "3.2.2";
- sha256 = "02b6rmsb89c1h7fr81ljbij30pnl8z4dz6xz367g7a2b9hwq42gz";
- revision = "1";
- editedCabalFile = "0284vnzvgpjjh95p67k2b5476npa52hs8g55fvlvlcx487zpc1sc";
+ version = "3.2.3";
+ sha256 = "0c5w030b289qy05pzs1bx3sd23sxxdm44605hs4ibzffaf0pr7b0";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -250844,8 +248040,6 @@ self: {
];
description = "streamlined html tag parser";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tai" = callPackage
@@ -250863,6 +248057,8 @@ self: {
];
description = "Support library to enable TAI usage on systems with time kept in UTC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tai64" = callPackage
@@ -251148,22 +248344,6 @@ self: {
broken = true;
}) {};
- "tar_0_4_1_0" = callPackage
- ({ mkDerivation, base, bytestring, directory, filepath, old-time }:
- mkDerivation {
- pname = "tar";
- version = "0.4.1.0";
- sha256 = "05875pc5ns1fsbl9qgr8sqh29xl4mhvj0pwsa9z4afxv6h6328bm";
- revision = "1";
- editedCabalFile = "14ljxvasrda7qafz95gz3m0lpdsh4vvd6j8b3qkr2a2sp7cc0sis";
- libraryHaskellDepends = [
- base bytestring directory filepath old-time
- ];
- description = "Reading, writing and manipulating \".tar\" archive files.";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"tar" = callPackage
({ mkDerivation, array, base, bytestring, bytestring-handle
, containers, criterion, deepseq, directory, filepath, QuickCheck
@@ -251217,8 +248397,6 @@ self: {
];
description = "Reading, writing and manipulating \".tar\" archive files.";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tar-conduit" = callPackage
@@ -251306,8 +248484,8 @@ self: {
}:
mkDerivation {
pname = "tart";
- version = "0.2";
- sha256 = "03pi46lr5b9qcc35ffwxwzv9ll51cyv526kjcvaags3ky917rxxn";
+ version = "0.3";
+ sha256 = "0zqj8cz4q1447an9fak73vzandd497xa745km3w4y3cffnc0zwyw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -251319,8 +248497,6 @@ self: {
];
description = "Terminal Art";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"task" = callPackage
@@ -251409,6 +248585,8 @@ self: {
testToolDepends = [ tasty-discover ];
description = "A command-line kanban board/task manager";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"taskpool" = callPackage
@@ -251438,8 +248616,8 @@ self: {
pname = "taskwarrior";
version = "0.3.0.0";
sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0";
- revision = "2";
- editedCabalFile = "16ikncs4aail9ymd2nx9n67b5d64cwk7m6kcbwvji0iggbikmsiv";
+ revision = "3";
+ editedCabalFile = "1dma42d3fkiqphya8ksqy55nbyqk45hm65rrnj2y5sn2my5vncq9";
libraryHaskellDepends = [
aeson base bytestring containers process random text time
unordered-containers uuid
@@ -251471,15 +248649,15 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "tasty_1_3_1" = callPackage
+ "tasty_1_4" = callPackage
({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl
, optparse-applicative, stm, tagged, unbounded-delays, unix
, wcwidth
}:
mkDerivation {
pname = "tasty";
- version = "1.3.1";
- sha256 = "1p8lq0yd1880knnygv4spgjj3j2mi8bawd018vcxy9rml7sdzm8w";
+ version = "1.4";
+ sha256 = "0jkia4zg01936gm2klpn3c4grlmdgiq0qnqq1cz7xg4baza14q3b";
libraryHaskellDepends = [
ansi-terminal async base clock containers mtl optparse-applicative
stm tagged unbounded-delays unix wcwidth
@@ -251496,23 +248674,6 @@ self: {
}:
mkDerivation {
pname = "tasty-ant-xml";
- version = "1.1.6";
- sha256 = "13qqpl1prr9dda87dp45mqybay24n8rhxxgvpc9j34kh72g8j5qw";
- libraryHaskellDepends = [
- base containers directory filepath generic-deriving ghc-prim mtl
- stm tagged tasty transformers xml
- ];
- description = "Render tasty output to XML for Jenkins";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "tasty-ant-xml_1_1_7" = callPackage
- ({ mkDerivation, base, containers, directory, filepath
- , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers
- , xml
- }:
- mkDerivation {
- pname = "tasty-ant-xml";
version = "1.1.7";
sha256 = "01br1jqmin3kislw59rdsgl4pggdf8miwddifj654dllfgg148vg";
libraryHaskellDepends = [
@@ -251521,7 +248682,6 @@ self: {
];
description = "Render tasty output to XML for Jenkins";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tasty-auto" = callPackage
@@ -251772,10 +248932,8 @@ self: {
}:
mkDerivation {
pname = "tasty-hspec";
- version = "1.1.5.1";
- sha256 = "0i9kdzjpk750sa078jj3iyhp72k0177zk7vxl131r6dkyz09x27y";
- revision = "6";
- editedCabalFile = "0xa7h0p5r41m2a3l5r9ggmm4bc2a6wzgb4qvcqfl0dd2yb922bkz";
+ version = "1.1.6";
+ sha256 = "02s82ijs2ringqxsqbm7m3vcy5brmwxa617azxv0v2phi3rdkjvl";
libraryHaskellDepends = [
base hspec hspec-core QuickCheck tasty tasty-quickcheck
tasty-smallcheck
@@ -251974,24 +249132,6 @@ self: {
}:
mkDerivation {
pname = "tasty-lua";
- version = "0.2.3";
- sha256 = "0kpmp51wyqbjv3nsrnybpms7flsl2bznqp8gf27zv2f5kraa77vk";
- libraryHaskellDepends = [
- base bytestring file-embed hslua tasty text
- ];
- testHaskellDepends = [
- base directory filepath hslua tasty tasty-hunit
- ];
- description = "Write tests in Lua, integrate into tasty";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "tasty-lua_0_2_3_1" = callPackage
- ({ mkDerivation, base, bytestring, directory, file-embed, filepath
- , hslua, tasty, tasty-hunit, text
- }:
- mkDerivation {
- pname = "tasty-lua";
version = "0.2.3.1";
sha256 = "1dw9wbwhyklc2lkpvhj12kdq7kyq6lv9w2586szx3yr5qbpwaggm";
libraryHaskellDepends = [
@@ -252002,7 +249142,6 @@ self: {
];
description = "Write tests in Lua, integrate into tasty";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tasty-mgolden" = callPackage
@@ -252075,8 +249214,6 @@ self: {
testHaskellDepends = [ base QuickCheck tasty ];
description = "Pre-built tasty trees for checking lawful class properties using QuickCheck";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tasty-rerun" = callPackage
@@ -252085,10 +249222,8 @@ self: {
}:
mkDerivation {
pname = "tasty-rerun";
- version = "1.1.17";
- sha256 = "0hiafrknk700gi8rm675akz8q6abk8iwlmygwnlx1fy3znalkqad";
- revision = "2";
- editedCabalFile = "0jkkydcq8fx3ia92pn9dnbfhx18wz70366y7xlv9yj9zysqcr8yl";
+ version = "1.1.18";
+ sha256 = "0sccp5zx9v2rx741nbmgd8mzjhy5m4v74hk26d23xz93ph8aqx7s";
libraryHaskellDepends = [
base containers mtl optparse-applicative split stm tagged tasty
transformers
@@ -252171,8 +249306,8 @@ self: {
}:
mkDerivation {
pname = "tasty-test-reporter";
- version = "0.1.1.2";
- sha256 = "1v6s3dd3ynzw0690hz1abi8l2j6zlpfj61g072w176n7is6x7p73";
+ version = "0.1.1.4";
+ sha256 = "0aail968niiy4yicbb0nfd7z46vxgp5zf1k9ndh4smskihz8kjin";
libraryHaskellDepends = [
ansi-terminal base concurrent-output containers directory filepath
junit-xml mtl safe-exceptions stm tagged tasty text
@@ -252233,8 +249368,8 @@ self: {
pname = "tasty-travis";
version = "0.2.0.2";
sha256 = "0g1qwmr11rgpvm964367mskgrjzbi34lbxzf9c0knx5ij9565gfg";
- revision = "4";
- editedCabalFile = "10kvalx02kyx2dx6shw00s689hb1qgllpagwy6nxvah6cky438ks";
+ revision = "5";
+ editedCabalFile = "1m1npkvi3g1i7vn7aiq2558l3hbv2w6nz1ix9mv1djn6ccjlh1gk";
libraryHaskellDepends = [ base tasty ];
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Fancy Travis CI output for tasty tests";
@@ -252529,6 +249664,8 @@ self: {
];
description = "Chart generation from tdigest";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tdlib" = callPackage
@@ -252556,6 +249693,8 @@ self: {
testSystemDepends = [ tdlib ];
description = "complete binding to the Telegram Database Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) tdlib;};
"tdlib-gen" = callPackage
@@ -252584,6 +249723,8 @@ self: {
];
description = "Codegen for TDLib";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tdlib-types" = callPackage
@@ -252604,6 +249745,8 @@ self: {
];
description = "Types and Functions generated from tdlib api spec";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tdoc" = callPackage
@@ -252678,6 +249821,37 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "technique" = callPackage
+ ({ mkDerivation, async, base, containers, core-data, core-program
+ , core-text, dlist, free, hashable, hspec, ivar-simple, megaparsec
+ , mtl, parser-combinators, prettyprinter, text, transformers
+ , uuid-types
+ }:
+ mkDerivation {
+ pname = "technique";
+ version = "0.2.5";
+ sha256 = "03z8m5hmchrpc2bvs9r2dkbjfdx05y92wwc5vl04rc9895k74g3l";
+ isLibrary = false;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ async base containers core-data core-program core-text dlist free
+ hashable ivar-simple megaparsec mtl parser-combinators
+ prettyprinter text transformers uuid-types
+ ];
+ executableHaskellDepends = [
+ base containers core-data core-program core-text dlist free
+ ivar-simple megaparsec parser-combinators prettyprinter text
+ ];
+ testHaskellDepends = [
+ async base containers core-data core-program core-text dlist free
+ hashable hspec ivar-simple megaparsec mtl parser-combinators
+ prettyprinter text transformers uuid-types
+ ];
+ doHaddock = false;
+ description = "Procedures and Sequences";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"teeth" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -252783,8 +249957,8 @@ self: {
}:
mkDerivation {
pname = "telegram-bot-simple";
- version = "0.3.1";
- sha256 = "09r64kgvgc5xx4wa5mxlc6fi4cf5qa81j7334wr7niv88fs659yb";
+ version = "0.3.5";
+ sha256 = "08b650z513lbmmb46xinwgdb3csgpx9rjk5vn345xb9b0ki94chq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -252795,10 +249969,11 @@ self: {
unordered-containers
];
executableHaskellDepends = [
- aeson aeson-pretty base bytestring cron hashable http-api-data
- http-client http-client-tls monad-control mtl pretty-show
- profunctors servant servant-client split stm template-haskell text
- time transformers unordered-containers
+ aeson aeson-pretty base bytestring cron filepath hashable
+ http-api-data http-client http-client-tls monad-control mtl
+ pretty-show profunctors servant servant-client servant-multipart
+ split stm template-haskell text time transformers
+ unordered-containers
];
description = "Easy to use library for building Telegram bots";
license = stdenv.lib.licenses.bsd3;
@@ -253014,8 +250189,6 @@ self: {
];
description = "Optics for template-haskell types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"template-haskell-util" = callPackage
@@ -253647,8 +250820,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "termbox bindings";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"termbox-banana" = callPackage
@@ -253941,8 +251112,8 @@ self: {
}:
mkDerivation {
pname = "tesla";
- version = "0.2.0.0";
- sha256 = "0gpzkrh5238n42h158np1k14a28y11kgicwbv6w4br6h0rnbr9d3";
+ version = "0.3.0.1";
+ sha256 = "0idn4pgzkg1n1xq5z3qihrb7nrpaxba3y98vcx52nl35c4flps4p";
libraryHaskellDepends = [
aeson base bytestring casing containers exceptions generic-deriving
lens lens-aeson monad-logger mtl template-haskell text time
@@ -253956,6 +251127,8 @@ self: {
];
description = "Tesla API client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"test-fixture" = callPackage
@@ -254210,6 +251383,8 @@ self: {
];
description = "Template Haskell for test framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"test-fun" = callPackage
@@ -254261,6 +251436,8 @@ self: {
];
description = "Testing framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"test-lib" = callPackage
@@ -254535,6 +251712,8 @@ self: {
];
description = "Functional Enumeration of Algebraic Types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"testing-type-modifiers" = callPackage
@@ -254732,6 +251911,8 @@ self: {
];
description = "Functions for running Tex from Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"text_1_2_4_0" = callPackage
@@ -254802,8 +251983,6 @@ self: {
libraryHaskellDepends = [ base text ];
description = "Text styling for ANSI terminals";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"text-binary" = callPackage
@@ -255137,8 +252316,6 @@ self: {
libraryHaskellDepends = [ base bytestring bytestring-handle text ];
description = "Encode and decode Text to/from ByteString using TextEncoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"text-manipulate" = callPackage
@@ -255155,6 +252332,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "text-manipulate_0_3_0_0" = callPackage
+ ({ mkDerivation, base, criterion, tasty, tasty-hunit, text }:
+ mkDerivation {
+ pname = "text-manipulate";
+ version = "0.3.0.0";
+ sha256 = "0pmzp38m3r0k6ps97b1wqplxlgvvlaid09x53jl3gxng0fwq910a";
+ libraryHaskellDepends = [ base text ];
+ testHaskellDepends = [ base tasty tasty-hunit text ];
+ benchmarkHaskellDepends = [ base criterion text ];
+ description = "Case conversion, word boundary manipulation, and textual subjugation";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"text-markup" = callPackage
({ mkDerivation, base, containers, QuickCheck, quickcheck-text
, tasty, tasty-quickcheck, text
@@ -255370,6 +252561,8 @@ self: {
testHaskellDepends = [ base hedgehog neat-interpolation text ];
description = "Simple text replacements from a list of search/replace pairs";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"text-short" = callPackage
@@ -255404,38 +252597,6 @@ self: {
}:
mkDerivation {
pname = "text-show";
- version = "3.8.5";
- sha256 = "0xc2269v0bfcvlwm60l2zs6l6lwljfnq5n05n9kp580qybvynzjg";
- revision = "3";
- editedCabalFile = "13gqszvlbqpgb2am8ny8v1p56yx5l9vqs2w45g8ld53f50ll62rv";
- libraryHaskellDepends = [
- array base base-compat-batteries bifunctors bytestring
- bytestring-builder containers generic-deriving ghc-boot-th ghc-prim
- integer-gmp template-haskell text th-abstraction th-lift
- transformers transformers-compat
- ];
- testHaskellDepends = [
- array base base-compat-batteries base-orphans bytestring
- bytestring-builder deriving-compat generic-deriving ghc-prim hspec
- QuickCheck quickcheck-instances template-haskell text transformers
- transformers-compat
- ];
- testToolDepends = [ hspec-discover ];
- benchmarkHaskellDepends = [ base criterion deepseq ghc-prim text ];
- description = "Efficient conversion of values into Text";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "text-show_3_9" = callPackage
- ({ mkDerivation, array, base, base-compat-batteries, base-orphans
- , bifunctors, bytestring, bytestring-builder, containers, criterion
- , deepseq, deriving-compat, generic-deriving, ghc-boot-th, ghc-prim
- , hspec, hspec-discover, integer-gmp, QuickCheck
- , quickcheck-instances, template-haskell, text, th-abstraction
- , th-lift, transformers, transformers-compat
- }:
- mkDerivation {
- pname = "text-show";
version = "3.9";
sha256 = "1cj6w77lgh9cydg1jz3wfhll0bvzrmhgk37dgm7s33qbkpq9mf90";
libraryHaskellDepends = [
@@ -255454,7 +252615,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq ghc-prim text ];
description = "Efficient conversion of values into Text";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-show-instances" = callPackage
@@ -255520,8 +252680,6 @@ self: {
];
description = "Library for Time parsing from Text into UTCTime";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"text-trie" = callPackage
@@ -255842,20 +253000,6 @@ self: {
({ mkDerivation, base, containers, ghc-prim, template-haskell }:
mkDerivation {
pname = "th-abstraction";
- version = "0.3.2.0";
- sha256 = "0ygbky8sk0nk4jyfjf6rj1ghv83rflcfcbsmnn7rnjzks0xg7zin";
- libraryHaskellDepends = [
- base containers ghc-prim template-haskell
- ];
- testHaskellDepends = [ base containers template-haskell ];
- description = "Nicer interface for reified information about data types";
- license = stdenv.lib.licenses.isc;
- }) {};
-
- "th-abstraction_0_4_0_0" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
- mkDerivation {
- pname = "th-abstraction";
version = "0.4.0.0";
sha256 = "09r09va7ihhk2nbz73y0cp4hijbf4zpr4hiss0xqa9pqkkazz62h";
libraryHaskellDepends = [
@@ -255864,7 +253008,6 @@ self: {
testHaskellDepends = [ base containers template-haskell ];
description = "Nicer interface for reified information about data types";
license = stdenv.lib.licenses.isc;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-alpha" = callPackage
@@ -255991,29 +253134,6 @@ self: {
"th-desugar" = callPackage
({ mkDerivation, base, containers, fail, ghc-prim, hspec, HUnit
, mtl, ordered-containers, semigroups, syb, template-haskell
- , th-abstraction, th-expand-syns, th-lift, th-orphans
- , transformers-compat
- }:
- mkDerivation {
- pname = "th-desugar";
- version = "1.10";
- sha256 = "1g3v427qlpxl1m4klsbqzg2xas5sj4059j5pdx0vpbshpq9v3x8v";
- libraryHaskellDepends = [
- base containers fail ghc-prim mtl ordered-containers semigroups syb
- template-haskell th-abstraction th-lift th-orphans
- transformers-compat
- ];
- testHaskellDepends = [
- base containers hspec HUnit mtl syb template-haskell th-expand-syns
- th-lift th-orphans
- ];
- description = "Functions to desugar Template Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "th-desugar_1_11" = callPackage
- ({ mkDerivation, base, containers, fail, ghc-prim, hspec, HUnit
- , mtl, ordered-containers, semigroups, syb, template-haskell
, th-abstraction, th-lift, th-orphans, transformers-compat
}:
mkDerivation {
@@ -256031,7 +253151,6 @@ self: {
];
description = "Functions to desugar Template Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-dict-discovery" = callPackage
@@ -256143,6 +253262,8 @@ self: {
];
description = "Fixed versions of instances reification functions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"th-instances" = callPackage
@@ -256205,18 +253326,25 @@ self: {
}) {};
"th-lego" = callPackage
- ({ mkDerivation, base, template-haskell
+ ({ mkDerivation, base, QuickCheck, quickcheck-instances, rerebase
+ , tasty, tasty-hunit, tasty-quickcheck, template-haskell
, template-haskell-compat-v0208, text
}:
mkDerivation {
pname = "th-lego";
- version = "0.1.0.4";
- sha256 = "16pls283c6r4rx9aiyqacfrq5cy8d1q964fnzzk62517nicb9xyv";
+ version = "0.2.3";
+ sha256 = "1c2q1gz04072kh2dxs22hqvcjkfq66ylixl0631wnlmvivbm2ahz";
libraryHaskellDepends = [
base template-haskell template-haskell-compat-v0208 text
];
+ testHaskellDepends = [
+ QuickCheck quickcheck-instances rerebase tasty tasty-hunit
+ tasty-quickcheck template-haskell
+ ];
description = "Template Haskell construction utilities";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"th-lift" = callPackage
@@ -256240,8 +253368,8 @@ self: {
}:
mkDerivation {
pname = "th-lift-instances";
- version = "0.1.17";
- sha256 = "0k59j460dcr9vidmww2has78g3zx2wl0cjlpqc1laqai9w8klda5";
+ version = "0.1.18";
+ sha256 = "09nv1zsffvv6zfz1fjzcqrla3lc350qr4i4xf7wgvzp049sprrdy";
libraryHaskellDepends = [
base bytestring containers template-haskell text th-lift
transformers vector
@@ -256268,25 +253396,6 @@ self: {
"th-orphans" = callPackage
({ mkDerivation, base, bytestring, ghc-prim, hspec, hspec-discover
- , mtl, template-haskell, th-lift, th-lift-instances, th-reify-many
- }:
- mkDerivation {
- pname = "th-orphans";
- version = "0.13.10";
- sha256 = "0a69jrvialwg9g1h3j729jahl47h9ar5xxjqbi3pxyfc94v5fcs4";
- libraryHaskellDepends = [
- base mtl template-haskell th-lift th-lift-instances th-reify-many
- ];
- testHaskellDepends = [
- base bytestring ghc-prim hspec template-haskell th-lift
- ];
- testToolDepends = [ hspec-discover ];
- description = "Orphan instances for TH datatypes";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "th-orphans_0_13_11" = callPackage
- ({ mkDerivation, base, bytestring, ghc-prim, hspec, hspec-discover
, mtl, template-haskell, th-compat, th-lift, th-lift-instances
, th-reify-many
}:
@@ -256304,7 +253413,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Orphan instances for TH datatypes";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-pprint" = callPackage
@@ -256409,22 +253517,6 @@ self: {
}) {};
"th-test-utils" = callPackage
- ({ mkDerivation, base, tasty, tasty-hunit, template-haskell
- , transformers
- }:
- mkDerivation {
- pname = "th-test-utils";
- version = "1.0.2";
- sha256 = "1c0450d9q8ndk8zyj7x9ybl892jijrzn3pcxqm5igki9n8x3w37k";
- libraryHaskellDepends = [ base template-haskell transformers ];
- testHaskellDepends = [
- base tasty tasty-hunit template-haskell transformers
- ];
- description = "Utility functions for testing Template Haskell code";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "th-test-utils_1_1_0" = callPackage
({ mkDerivation, base, bytestring, tasty, tasty-golden, tasty-hunit
, template-haskell, th-orphans, transformers
}:
@@ -256443,7 +253535,6 @@ self: {
];
description = "Utility functions for testing Template Haskell code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-to-exp" = callPackage
@@ -256508,8 +253599,8 @@ self: {
}:
mkDerivation {
pname = "th-utilities";
- version = "0.2.4.0";
- sha256 = "1c3idsx9fyh9n4d969mibxsyfb2nmivwm65zap3hyl40bnldc39l";
+ version = "0.2.4.1";
+ sha256 = "1k3dlhhgxc4bnzb13qysbvb41vx6fxf26grs2fjm2s3h65sghqxd";
libraryHaskellDepends = [
base bytestring containers directory filepath primitive syb
template-haskell text th-orphans
@@ -256569,8 +253660,8 @@ self: {
}:
mkDerivation {
pname = "themoviedb";
- version = "1.2.0.0";
- sha256 = "1dchnsk9mx2v01apj5ilnsl3w9vj6f5pkqrm9701zw7rcp7xds0w";
+ version = "1.2.0.1";
+ sha256 = "1n6raffsjn9iq427nyh7hnnx1jvgvilisfy6dz72hl4ry5198sdq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -256821,25 +253912,6 @@ self: {
}:
mkDerivation {
pname = "thread-supervisor";
- version = "0.1.0.1";
- sha256 = "0x10i81cvp5m5rx48mdhrxcs5rpcmbr2xrv3aq9s3lqdchy2vqzy";
- libraryHaskellDepends = [
- base clock containers data-default unliftio
- ];
- testHaskellDepends = [
- base clock data-default hspec QuickCheck unliftio
- ];
- testToolDepends = [ hspec-discover ];
- description = "A simplified implementation of Erlang/OTP like supervisor over thread";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "thread-supervisor_0_2_0_0" = callPackage
- ({ mkDerivation, base, clock, containers, data-default, hspec
- , hspec-discover, QuickCheck, unliftio
- }:
- mkDerivation {
- pname = "thread-supervisor";
version = "0.2.0.0";
sha256 = "1k42k6c2h0xs7h4gcfsjghr5jp1q2w7ay1drlfw2ghl8zmfh2pnv";
libraryHaskellDepends = [
@@ -256851,7 +253923,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A simplified implementation of Erlang/OTP like supervisor over thread";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"threadPool" = callPackage
@@ -256982,6 +254053,8 @@ self: {
];
description = "A graphical tool for profiling parallel Haskell programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"threefish" = callPackage
@@ -257177,8 +254250,6 @@ self: {
libraryHaskellDepends = [ base bytestring case-insensitive text ];
description = "Convert textual types through Text without needing O(n^2) instances";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"throwable-exceptions" = callPackage
@@ -257413,26 +254484,6 @@ self: {
}:
mkDerivation {
pname = "tidal";
- version = "1.5.2";
- sha256 = "03y1hfwc5frbqhcwvvfr6ykas0sy6pw982sgdgkvd3l0wbmnhdrz";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bifunctors bytestring clock colour containers deepseq hosc
- 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;
- }) {};
-
- "tidal_1_6_1" = callPackage
- ({ mkDerivation, base, bifunctors, bytestring, clock, colour
- , containers, criterion, deepseq, hosc, microspec, network, parsec
- , primitive, random, text, transformers, vector, weigh
- }:
- mkDerivation {
- pname = "tidal";
version = "1.6.1";
sha256 = "13n9s0s04bddl16xq86anz7a9fqcm7j3xfqn5y1mni5j1h7hn2k2";
enableSeparateDataOutput = true;
@@ -257444,7 +254495,6 @@ self: {
benchmarkHaskellDepends = [ base criterion weigh ];
description = "Pattern language for improvised music";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tidal-midi" = callPackage
@@ -257640,14 +254690,14 @@ self: {
broken = true;
}) {};
- "time_1_11" = callPackage
+ "time_1_11_1" = callPackage
({ mkDerivation, base, criterion, deepseq, QuickCheck, random
, tasty, tasty-hunit, tasty-quickcheck, unix
}:
mkDerivation {
pname = "time";
- version = "1.11";
- sha256 = "16kmc754gz73plwb7lnk206r9v99va8y4ilbm347h6xmi5z7avp9";
+ version = "1.11.1";
+ sha256 = "0l0nqqg38xz2q78pi4i4jsbrb1jkn9ch0xlq17kn7824dh0j21vw";
libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [
base deepseq QuickCheck random tasty tasty-hunit tasty-quickcheck
@@ -257680,8 +254730,25 @@ self: {
}:
mkDerivation {
pname = "time-compat";
- version = "1.9.3";
- sha256 = "126vlfzv3z91vnjlkqarkyhs91hrx4g08gnrvsldqpclczk48smv";
+ version = "1.9.4";
+ sha256 = "0fpk2bpxfyzwd24lk06k3cpra713hrpva5ylnwa28zq34azy1snz";
+ libraryHaskellDepends = [ base base-orphans deepseq time ];
+ testHaskellDepends = [
+ base base-compat deepseq HUnit QuickCheck tagged tasty tasty-hunit
+ tasty-quickcheck time
+ ];
+ description = "Compatibility package for time";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "time-compat_1_9_5" = callPackage
+ ({ mkDerivation, base, base-compat, base-orphans, deepseq, HUnit
+ , QuickCheck, tagged, tasty, tasty-hunit, tasty-quickcheck, time
+ }:
+ mkDerivation {
+ pname = "time-compat";
+ version = "1.9.5";
+ sha256 = "19p3056i6kh8lgcdsnwsh8pj80xyi23kmw9n7hmdacczs5kv49ii";
libraryHaskellDepends = [ base base-orphans deepseq time ];
testHaskellDepends = [
base base-compat deepseq HUnit QuickCheck tagged tasty tasty-hunit
@@ -257689,6 +254756,7 @@ self: {
];
description = "Compatibility package for time";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"time-extras" = callPackage
@@ -258251,8 +255319,6 @@ self: {
];
description = "A tool for visualizing time series from log files";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"timeprint" = callPackage
@@ -258278,8 +255344,6 @@ self: {
testHaskellDepends = [ base ];
description = "A timer wheel";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"timerep" = callPackage
@@ -258288,8 +255352,8 @@ self: {
}:
mkDerivation {
pname = "timerep";
- version = "2.0.0.2";
- sha256 = "0fakjs6fgva6i035jiyr8hcgnrivw601cy8n3ja232d07izl2khx";
+ version = "2.0.1.0";
+ sha256 = "1l67gbfjydq0xapry5k9pwzxmp6z7ixzyvwshnszryspcckagxif";
libraryHaskellDepends = [
attoparsec base monoid-subclasses text time
];
@@ -258368,8 +255432,6 @@ self: {
libraryHaskellDepends = [ base time ];
description = "Useful timespan datatype and functions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"timestamp" = callPackage
@@ -258878,50 +255940,23 @@ self: {
"tldr" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers
- , directory, filepath, optparse-applicative, semigroups, tasty
- , tasty-golden, text, typed-process
+ , directory, filepath, http-conduit, optparse-applicative
+ , semigroups, tasty, tasty-golden, text, time, zip-archive
}:
mkDerivation {
pname = "tldr";
- version = "0.6.4";
- sha256 = "0gg9zplk8widfiwm5q1pi7fl45hby68c3ljm8p4livrp72s10f9d";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-terminal base bytestring cmark text
- ];
- executableHaskellDepends = [
- base containers directory filepath optparse-applicative semigroups
- typed-process
- ];
- testHaskellDepends = [ base tasty tasty-golden ];
- description = "Haskell tldr client";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
- }) {};
-
- "tldr_0_8_0" = callPackage
- ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers
- , directory, filepath, optparse-applicative, semigroups, tasty
- , tasty-golden, text, typed-process
- }:
- mkDerivation {
- pname = "tldr";
- version = "0.8.0";
- sha256 = "02by0mj2mk2k8xwcn92zd0cns8fj6fibi0wx5h2zlnm5aj53nffv";
+ version = "0.9.0";
+ sha256 = "0dixx8i6ka3ksfcr6bjybs1i3ry0wpiffsmskh56cxxcys0jgm5h";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal base bytestring cmark containers directory filepath
- optparse-applicative semigroups text typed-process
+ http-conduit optparse-applicative semigroups text time zip-archive
];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base tasty tasty-golden ];
description = "Haskell tldr client";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tls" = callPackage
@@ -259014,8 +256049,8 @@ self: {
}:
mkDerivation {
pname = "tlynx";
- version = "0.4.1";
- sha256 = "07fql189rm0xc7vx3ch86n5xrhd57zn2h80gxwmr9qaqc5p9b2qp";
+ version = "0.5.0";
+ sha256 = "1q7mca9gg9fshj5d2yhbvv3ll33z7h7ga3lbli3fax6dk2ncw6pm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -259026,8 +256061,6 @@ self: {
executableHaskellDepends = [ base ];
description = "Handle phylogenetic trees";
license = stdenv.lib.licenses.gpl3Plus;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tmapchan" = callPackage
@@ -259348,6 +256381,8 @@ self: {
];
description = "Fast rate limiting using the token bucket algorithm (BSD)";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"token-search" = callPackage
@@ -259608,8 +256643,8 @@ self: {
({ mkDerivation, base, bytestring, doctest, Glob, rio, unliftio }:
mkDerivation {
pname = "tonalude";
- version = "0.1.1.0";
- sha256 = "060hc1dydlq1zd1fn5scz7xhbflqm4fa86rz6275drymi5gwx82s";
+ version = "0.1.1.1";
+ sha256 = "19pl0l0nz3nywhf31190qld7crbzry241h5dw0234w5qyiwf5h0h";
libraryHaskellDepends = [ base bytestring rio unliftio ];
testHaskellDepends = [ base bytestring doctest Glob rio unliftio ];
description = "A standard library for Tonatona framework";
@@ -259620,8 +256655,8 @@ self: {
({ mkDerivation, base, doctest, envy, Glob, rio, say, tonatona }:
mkDerivation {
pname = "tonaparser";
- version = "0.1.0.0";
- sha256 = "0v9qfc13lyjclk7pqsld1lzzbdhimz7gziix7w2x6v2rr2nia8j0";
+ version = "0.1.0.1";
+ sha256 = "1hhg8iil1gradmr2nr6rms5y8f1478splfw6q8n8548zgaqlrzig";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base envy rio say ];
@@ -259634,8 +256669,8 @@ self: {
({ mkDerivation, base, doctest, Glob, rio, tonaparser }:
mkDerivation {
pname = "tonatona";
- version = "0.1.1.0";
- sha256 = "17hd93m2i79pb39z00x0sdvhfds3b5fgyhld8pr64rlnr9wm039l";
+ version = "0.1.2.1";
+ sha256 = "0995j5z87s5bq7ax3byhqrzq794fra5khswf1vj5ppymj6sgq9pf";
libraryHaskellDepends = [ base rio tonaparser ];
testHaskellDepends = [ base doctest Glob rio tonaparser ];
description = "meta application framework";
@@ -259670,8 +256705,8 @@ self: {
({ mkDerivation, base, doctest, Glob, rio, tonaparser, tonatona }:
mkDerivation {
pname = "tonatona-logger";
- version = "0.2.0.0";
- sha256 = "14pirmflhyfmw6y7j1af7ryh8iq30prx7xsdjwmliacszhsqvvfa";
+ version = "0.2.0.2";
+ sha256 = "047mhgzkk1jkyblbmh41ha56fifgsfccq6jzq3s0y6fx4sgc95nn";
libraryHaskellDepends = [ base rio tonaparser tonatona ];
testHaskellDepends = [ base doctest Glob rio tonaparser tonatona ];
description = "tonatona plugin for logging";
@@ -259684,8 +256719,8 @@ self: {
}:
mkDerivation {
pname = "tonatona-persistent-postgresql";
- version = "0.1.0.1";
- sha256 = "1fxf3h024bl02aldcwc9mhjish9l2y57ir9shra6liddk6065g5n";
+ version = "0.1.0.2";
+ sha256 = "1lib6akp6xnq7iqjgyxgd14l9mgswx8y61v0qpdj8q13xxs5m1si";
libraryHaskellDepends = [
base monad-logger persistent persistent-postgresql resource-pool
rio tonaparser tonatona
@@ -259696,8 +256731,6 @@ self: {
];
description = "tonatona plugin for accessing PostgreSQL database";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tonatona-persistent-sqlite" = callPackage
@@ -259706,8 +256739,8 @@ self: {
}:
mkDerivation {
pname = "tonatona-persistent-sqlite";
- version = "0.1.0.1";
- sha256 = "0a0jgi01pdirr7ay2ah3cvf3nv2pnmvxag34zif04vc6sbs8pryb";
+ version = "0.1.0.2";
+ sha256 = "185bkhikkhk7m8l96rapcy6nwccw3js7kpnif7dlrniv0ckjdwzg";
libraryHaskellDepends = [
base monad-logger persistent persistent-sqlite resource-pool rio
tonaparser tonatona
@@ -259727,8 +256760,8 @@ self: {
}:
mkDerivation {
pname = "tonatona-servant";
- version = "0.1.0.3";
- sha256 = "1v414apf2znvwm6vdph6wr0slhd5ki2nc666frhc8blmwj3whqrr";
+ version = "0.1.0.4";
+ sha256 = "0zldxq7qygswa0pyxb82p1bbwap6lfr18dw2802ailv5y6gxsjg0";
libraryHaskellDepends = [
base data-default exceptions http-types monad-logger rio servant
servant-server tonaparser tonatona tonatona-logger wai wai-extra
@@ -259741,6 +256774,8 @@ self: {
];
description = "tonatona plugin for servant";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"too-many-cells" = callPackage
@@ -260378,8 +257413,8 @@ self: {
}:
mkDerivation {
pname = "tracing";
- version = "0.0.5.1";
- sha256 = "06d4fik133jbwbznk6fccwhw21n750gnigw9gj25sgjkghydmllb";
+ version = "0.0.5.2";
+ sha256 = "0h0ga56pikym7igqzbb4lm1qnjnfzn533z0mx7jz3hjpgflk8xxs";
libraryHaskellDepends = [
aeson base base16-bytestring bytestring case-insensitive containers
http-client mtl network random stm text time transformers unliftio
@@ -260389,8 +257424,6 @@ self: {
];
description = "Distributed tracing";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tracing-control" = callPackage
@@ -260511,8 +257544,8 @@ self: {
}:
mkDerivation {
pname = "trade-journal";
- version = "0.0.1";
- sha256 = "1zmpqwrgwf26l9gwcavhgq8d9w0bc9c5sjqkr0i7d1rbiqiqf94j";
+ version = "0.0.2";
+ sha256 = "0832dn76mfsm0a6hgw9dxzjzvn8rxkrycw5rf439gq7piqcjbbbp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -260532,8 +257565,6 @@ self: {
time transformers unordered-containers
];
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) gmp; inherit (pkgs) mpfr;};
"traildb" = callPackage
@@ -260722,20 +257753,6 @@ self: {
broken = true;
}) {};
- "transformers_0_4_3_0" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "transformers";
- version = "0.4.3.0";
- sha256 = "179sbhvc9dghyw58hz80109pbrzgh7vh437227a51jhmx2bsgl5k";
- revision = "1";
- editedCabalFile = "1a8708l5frplfs6535kmhwcn93jw69dc6vs2c0vnzzn4x3zzrnk0";
- libraryHaskellDepends = [ base ];
- description = "Concrete functor and monad transformers";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"transformers_0_5_6_2" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -260762,8 +257779,6 @@ self: {
];
description = "Error and short-circuit monad transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"transformers-base" = callPackage
@@ -260974,8 +257989,6 @@ self: {
];
description = "composing programs with multithreading, events and distributed computing";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"transient-universe" = callPackage
@@ -261224,6 +258237,8 @@ self: {
benchmarkHaskellDepends = [ base gauge template-haskell util ];
description = "See README for more info";
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"traverse-with-class" = callPackage
@@ -261398,13 +258413,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "tree-monad";
- version = "0.3";
- sha256 = "1zs1qgp908d0y7dm9mhzwl529z2aw24zr8balsvn1lzl1aynzslm";
+ version = "0.3.1";
+ sha256 = "0ny57rygkgwn8i733gz2zb12i5niq5q7lrqvzfwsnjd0b40yighf";
libraryHaskellDepends = [ base ];
description = "Non-Determinism Monad for Tree Search";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tree-render-text" = callPackage
@@ -261630,6 +258643,8 @@ self: {
];
description = "A tree of Data.Map.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"treemap-html" = callPackage
@@ -262062,6 +259077,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "Constraints that any type, resp. no type fulfills";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"tropical" = callPackage
@@ -262437,8 +259454,8 @@ self: {
}:
mkDerivation {
pname = "ttc";
- version = "0.2.3.0";
- sha256 = "0yp92aa62xzzgnlwaw45p8cp9m3w2mmpdr3r2h3zw3dcqvq6hx1l";
+ version = "0.3.0.0";
+ sha256 = "0k23fsp9fji17341iag3rv79lsxj7x26chhijl8lh3jraqvj9y4p";
libraryHaskellDepends = [ base bytestring template-haskell text ];
testHaskellDepends = [
base bytestring tasty tasty-hunit template-haskell text
@@ -262506,8 +259523,6 @@ self: {
executableHaskellDepends = [ base text time ttn ];
description = "TheThingsNetwork client";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ttrie" = callPackage
@@ -263007,10 +260022,8 @@ self: {
}:
mkDerivation {
pname = "tweet-hs";
- version = "1.0.2.1";
- sha256 = "0b277whd3jywb6w0gkaijmzadpwabmyxvxyg6fmsysq1kp3isrnm";
- revision = "1";
- editedCabalFile = "0ca923bxx8aj6qzm0nvxvh1zmzqw34jv4xmnrjy1lfyndg0qg9vj";
+ version = "1.0.2.2";
+ sha256 = "1sl4pld3jig1m26alhj4s96ff43v3g00wxzrng4yhb76d88z0ipw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -263524,8 +260537,6 @@ self: {
];
description = "Twitter JSON parser and types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"twitter-types-lens" = callPackage
@@ -263541,8 +260552,6 @@ self: {
];
description = "Twitter JSON types (lens powered)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"tx" = callPackage
@@ -263880,18 +260889,6 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "type-fun";
- version = "0.1.1";
- sha256 = "18axaln9ahrn6023pk4ig79d2qimmflikf608vgka4hhi91cfpnz";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base ];
- description = "Collection of widely reimplemented type families";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "type-fun_0_1_2" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "type-fun";
version = "0.1.2";
sha256 = "1qb9h6x1npq1pc8h7n6ism5a6jccysn76czqym1f69x0qh1jjlay";
libraryHaskellDepends = [ base ];
@@ -263899,6 +260896,7 @@ self: {
description = "Collection of widely reimplemented type families";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"type-functions" = callPackage
@@ -264149,26 +261147,6 @@ self: {
}:
mkDerivation {
pname = "type-natural";
- version = "0.8.3.1";
- sha256 = "0nq54098jyrx6zz8vn0pw3kg9b6bwpxhnhxk3f5m18rpjjjjw4xs";
- revision = "1";
- editedCabalFile = "1nhv7wh3cgy5hhkgs3bgg3659qf3lpy8rm89ikbb0p69bbxdpmfa";
- libraryHaskellDepends = [
- base constraints equational-reasoning ghc-typelits-natnormalise
- ghc-typelits-presburger singletons singletons-presburger
- template-haskell
- ];
- description = "Type-level natural and proofs of their properties";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "type-natural_0_9_0_0" = callPackage
- ({ mkDerivation, base, constraints, equational-reasoning
- , ghc-typelits-natnormalise, ghc-typelits-presburger, singletons
- , singletons-presburger, template-haskell
- }:
- mkDerivation {
- pname = "type-natural";
version = "0.9.0.0";
sha256 = "1jg8qqha60mxj7mrbi69jbcniayksyggi2s7fxy88ap4ay1hky3a";
libraryHaskellDepends = [
@@ -264178,7 +261156,6 @@ self: {
];
description = "Type-level natural and proofs of their properties";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-of-html" = callPackage
@@ -264188,8 +261165,8 @@ self: {
}:
mkDerivation {
pname = "type-of-html";
- version = "1.5.2.0";
- sha256 = "0s53panifhmyg5xda78x509jvxpbcw2kqan7y4jxa4nysgz34qhc";
+ version = "1.6.1.2";
+ sha256 = "0dgfj4jk9bs6fjmmvsjxjpnvrd4nxmrnhdgvmawlfs5nib4r4al6";
libraryHaskellDepends = [
base bytestring containers double-conversion ghc-prim text
];
@@ -264212,6 +261189,8 @@ self: {
testHaskellDepends = [ base type-of-html ];
description = "Optimize static parts of type-of-html";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"type-operators" = callPackage
@@ -264570,6 +261549,8 @@ self: {
executableHaskellDepends = [ base diagrams-lib text ];
description = "Typed and composable spreadsheets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"typed-streams" = callPackage
@@ -264751,6 +261732,8 @@ self: {
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
@@ -264804,6 +261787,8 @@ self: {
testHaskellDepends = [ base hspec QuickCheck ];
description = "Type level numbers using existing Nat functionality";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"typeof" = callPackage
@@ -264859,8 +261844,6 @@ self: {
doHaddock = false;
description = "Efficient implementation of a dependent map with types as keys";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"types-compat" = callPackage
@@ -264896,8 +261879,8 @@ self: {
}:
mkDerivation {
pname = "typesafe-precure";
- version = "0.7.9.1";
- sha256 = "0vw0mbkii7j5rr5fp370j8grq355cg0ddw55f24gbjw1z0wc71hx";
+ version = "0.7.10.1";
+ sha256 = "0zq0bl4j1hwf2q0ipl0vp0q19lhs0bnwmrh7qh1qn53g078aj5ga";
libraryHaskellDepends = [
aeson aeson-pretty autoexporter base bytestring dlist
monad-skeleton template-haskell text th-data-compat
@@ -264985,6 +261968,95 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
+ "typson-beam" = callPackage
+ ({ mkDerivation, aeson, base, beam-core, beam-migrate
+ , beam-postgres, bytestring, exceptions, hedgehog, HUnit, microlens
+ , postgresql-simple, tasty, tasty-hedgehog, tasty-hunit
+ , test-fixture, typson-core
+ }:
+ mkDerivation {
+ pname = "typson-beam";
+ version = "0.1.0.1";
+ sha256 = "0zhi81hvas561c1qxnnbyrdsc3di8iakrhyz59ppc551cgzf28da";
+ libraryHaskellDepends = [
+ aeson base beam-core beam-postgres postgresql-simple typson-core
+ ];
+ testHaskellDepends = [
+ aeson base beam-core beam-migrate beam-postgres bytestring
+ exceptions hedgehog HUnit microlens postgresql-simple tasty
+ tasty-hedgehog tasty-hunit test-fixture typson-core
+ ];
+ description = "Typson Beam Integration";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "typson-core" = callPackage
+ ({ mkDerivation, aeson, base, containers, profunctors, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "typson-core";
+ version = "0.1.0.1";
+ sha256 = "1mgpr6j1q18ky6acpg9zahvb07lr3902cwawizp399k25d7s7a9q";
+ libraryHaskellDepends = [
+ aeson base containers profunctors text unordered-containers vector
+ ];
+ description = "Type-safe PostgreSQL JSON Querying";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "typson-esqueleto" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, esqueleto, exceptions
+ , hedgehog, microlens, persistent, persistent-postgresql
+ , persistent-template, postgresql-simple, tasty, tasty-hedgehog
+ , tasty-hunit, test-fixture, text, typson-core
+ }:
+ mkDerivation {
+ pname = "typson-esqueleto";
+ version = "0.1.0.1";
+ sha256 = "15dw1vp676sg8d1iyfcr1psx4vaix8mi4mbp4p431138yqa56qx4";
+ libraryHaskellDepends = [
+ aeson base esqueleto persistent persistent-template text
+ typson-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring esqueleto exceptions hedgehog microlens
+ persistent persistent-postgresql persistent-template
+ postgresql-simple tasty tasty-hedgehog tasty-hunit test-fixture
+ text typson-core
+ ];
+ description = "Typson Esqueleto Integration";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "typson-selda" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, exceptions, hedgehog
+ , HUnit, microlens, selda, selda-json, selda-postgresql, tasty
+ , tasty-hedgehog, tasty-hunit, test-fixture, text, typson-core
+ }:
+ mkDerivation {
+ pname = "typson-selda";
+ version = "0.1.0.0";
+ sha256 = "09jp1p82d0vv879rnxmingbdph6qcfszlywrn6h8r26apmh9v5pr";
+ libraryHaskellDepends = [
+ aeson base bytestring selda selda-json selda-postgresql text
+ typson-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring exceptions hedgehog HUnit microlens selda
+ selda-json selda-postgresql tasty tasty-hedgehog tasty-hunit
+ test-fixture text typson-core
+ ];
+ description = "Typson Selda Integration";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"tyro" = callPackage
({ mkDerivation, aeson, base, bytestring, HUnit, protolude
, reflection, singletons, test-framework, test-framework-hunit
@@ -265016,8 +262088,8 @@ self: {
}:
mkDerivation {
pname = "tz";
- version = "0.1.3.4";
- sha256 = "11sg11alwlibnl62bd9s3gvhha8c523625cn6y4x10avv6jv320y";
+ version = "0.1.3.5";
+ sha256 = "1svqcpcpy5mydkmf42a78khxa053jxbvrbdh5jzprh2b7g0dpvlb";
libraryHaskellDepends = [
base binary bytestring containers data-default deepseq
template-haskell time tzdata vector
@@ -265041,8 +262113,8 @@ self: {
}:
mkDerivation {
pname = "tzdata";
- version = "0.1.20190911.0";
- sha256 = "156mq401xbrx325bc745va2nh7r5ybi01nlrwavm0gxijfs0i4b9";
+ version = "0.2.20201021.0";
+ sha256 = "0bkd7k0q8dflp21hzf71kbqyk0jq279z7sgwlq1pdzs2ggmnrwm9";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring containers deepseq vector
@@ -265237,6 +262309,8 @@ self: {
benchmarkHaskellDepends = [ base gauge ];
description = "Unicode Character Database — Predicates on characters specified by Unicode";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"uconv" = callPackage
@@ -265443,8 +262517,6 @@ self: {
];
description = "Minimal HTTP client library optimized for benchmarking";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ui-command" = callPackage
@@ -265477,6 +262549,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "ukrainian-phonetics-basic" = callPackage
+ ({ mkDerivation, base, bytestring, mmsyn2, mmsyn5, vector }:
+ mkDerivation {
+ pname = "ukrainian-phonetics-basic";
+ version = "0.3.2.0";
+ sha256 = "16w4dggl61jh93rqq0czb3lpbq9cf4kxih5c0i5mbrjcxn50cdqg";
+ libraryHaskellDepends = [ base bytestring mmsyn2 mmsyn5 vector ];
+ description = "A library to work with the basic Ukrainian phonetics and syllable segmentation";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"ulid" = callPackage
({ mkDerivation, base, binary, bytestring, crypto-api, deepseq
, format-numbers, hashable, hspec, random, text, time
@@ -265499,8 +262582,6 @@ self: {
];
description = "Implementation of ULID - Universally Unique Lexicographically Sortable Identifier";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"una" = callPackage
@@ -265597,17 +262678,18 @@ self: {
"unbeliever" = callPackage
({ mkDerivation, base, bytestring, core-data, core-program
- , core-text, fingertree, gauge, hashable, hspec, safe-exceptions
- , text, text-short
+ , core-text, fingertree, gauge, hashable, hspec, prettyprinter
+ , safe-exceptions, text, text-short, unordered-containers
}:
mkDerivation {
pname = "unbeliever";
- version = "0.10.0.6";
- sha256 = "08rw2krphvs2z0ic19mfwlz3fcmpnbwbpvp7ks22pasi2zy45sb2";
+ version = "0.10.0.8";
+ sha256 = "062xr66i96kwvbwf4pr51ybiavy6wbijzz7zy0si18g13x00x54c";
libraryHaskellDepends = [ base core-data core-program core-text ];
testHaskellDepends = [
base bytestring core-data core-program core-text fingertree
- hashable hspec safe-exceptions text text-short
+ hashable hspec prettyprinter safe-exceptions text text-short
+ unordered-containers
];
benchmarkHaskellDepends = [
base bytestring core-data core-program core-text gauge text
@@ -265615,8 +262697,6 @@ self: {
doHaddock = false;
description = "Opinionated Haskell Interoperability";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"unbound" = callPackage
@@ -265660,8 +262740,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq ];
description = "Support for programming with names and binders using GHC Generics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"unbound-kind-generics" = callPackage
@@ -265677,16 +262755,14 @@ self: {
];
description = "Support for programming with names and binders using kind-generics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"unbounded-delays" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "unbounded-delays";
- version = "0.1.1.0";
- sha256 = "1ir9fghbrc214c97bwafk5ck6cacxz1pdnq4i18p604d1b8zg9wa";
+ version = "0.1.1.1";
+ sha256 = "11b1vmlfv4pmmpl4kva58w7cf50xsj819cq3wzqgnbz3px9pxbar";
libraryHaskellDepends = [ base ];
description = "Unbounded thread delays and timeouts";
license = stdenv.lib.licenses.bsd3;
@@ -265755,6 +262831,8 @@ self: {
executableHaskellDepends = [ base vector ];
description = "A library for reference cells backed by unboxed-vectors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"unboxing-vector" = callPackage
@@ -265763,28 +262841,6 @@ self: {
}:
mkDerivation {
pname = "unboxing-vector";
- version = "0.1.1.0";
- sha256 = "0i2d5gzvrdi5alaj8inw0jzlh0kkd23pg5dwm24h8jyqh0kmnhj8";
- libraryHaskellDepends = [
- base deepseq mono-traversable primitive vector
- ];
- testHaskellDepends = [
- base deepseq HUnit mono-traversable primitive should-not-typecheck
- vector
- ];
- benchmarkHaskellDepends = [
- base deepseq mono-traversable primitive vector
- ];
- description = "A newtype-friendly variant of unboxed vectors";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "unboxing-vector_0_2_0_0" = callPackage
- ({ mkDerivation, base, deepseq, HUnit, mono-traversable, primitive
- , should-not-typecheck, vector
- }:
- mkDerivation {
- pname = "unboxing-vector";
version = "0.2.0.0";
sha256 = "10sj7npfmhb9niagyhw5v68fpbhxa637x99dyw6njalsmsyimj91";
libraryHaskellDepends = [
@@ -265799,7 +262855,6 @@ self: {
];
description = "A newtype-friendly variant of unboxed vectors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unbreak" = callPackage
@@ -265877,6 +262932,8 @@ self: {
libraryHaskellDepends = [ base ];
description = "Tiny package providing unescaping versions of show and print";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"unexceptionalio" = callPackage
@@ -265937,8 +262994,6 @@ self: {
];
description = "Class of data structures that can be unfolded";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"unfoldable-restricted" = callPackage
@@ -265955,8 +263010,6 @@ self: {
];
description = "An alternative to the Unfoldable typeclass";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ungadtagger" = callPackage
@@ -266186,28 +263239,6 @@ self: {
}:
mkDerivation {
pname = "unicode-transforms";
- version = "0.3.7";
- sha256 = "0pgxb4znvr39n0f7y5q0bdajc4l96zsih0a43n90qjlhj9084rp8";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base bytestring ghc-prim text ];
- testHaskellDepends = [
- base deepseq getopt-generics hspec QuickCheck split text
- ];
- benchmarkHaskellDepends = [
- base deepseq filepath gauge path path-io text
- ];
- description = "Unicode normalization";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "unicode-transforms_0_3_7_1" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, filepath, gauge
- , getopt-generics, ghc-prim, hspec, path, path-io, QuickCheck
- , split, text
- }:
- mkDerivation {
- pname = "unicode-transforms";
version = "0.3.7.1";
sha256 = "1010sahi4mjzqmxqlj3w73rlymbl2370x5vizjqbx7mb86kxzx4f";
isLibrary = true;
@@ -266221,7 +263252,6 @@ self: {
];
description = "Unicode normalization";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unicode-tricks" = callPackage
@@ -266390,17 +263420,15 @@ self: {
}) {};
"uniplate" = callPackage
- ({ mkDerivation, base, containers, hashable, syb
+ ({ mkDerivation, base, containers, ghc-prim, hashable, syb
, unordered-containers
}:
mkDerivation {
pname = "uniplate";
- version = "1.6.12";
- sha256 = "1dx8f9aw27fz8kw0ad1nm6355w5rdl7bjvb427v2bsgnng30pipw";
- revision = "1";
- editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54";
+ version = "1.6.13";
+ sha256 = "1lis5qcb5j7yzd1cqjaqpb6bmkyjfb7l4nhk3ykmcma4513cjxz7";
libraryHaskellDepends = [
- base containers hashable syb unordered-containers
+ base containers ghc-prim hashable syb unordered-containers
];
description = "Help writing simple, concise and fast generic operations";
license = stdenv.lib.licenses.bsd3;
@@ -266564,7 +263592,7 @@ self: {
}) {};
"uniqueness-periods-vector-examples" = callPackage
- ({ mkDerivation, base, lists-flines, mmsyn6ukr, parallel
+ ({ mkDerivation, base, mmsyn6ukr, parallel, phonetic-languages-plus
, phonetic-languages-ukrainian, print-info
, uniqueness-periods-vector, uniqueness-periods-vector-common
, uniqueness-periods-vector-filters
@@ -266574,18 +263602,17 @@ self: {
}:
mkDerivation {
pname = "uniqueness-periods-vector-examples";
- version = "0.12.3.1";
- sha256 = "18k9my22zn2x6nf2adnwf340jnixzdkyyx2j24nqvcryxx9kagsi";
+ version = "0.14.5.0";
+ sha256 = "0c30dd5x1bgk40gzfa5wdrnlam0j41z0cpd1dhmcj6fzwd1l2nra";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base lists-flines uniqueness-periods-vector
- uniqueness-periods-vector-common
- uniqueness-periods-vector-properties vector
+ base uniqueness-periods-vector uniqueness-periods-vector-common
+ uniqueness-periods-vector-properties
];
executableHaskellDepends = [
- base lists-flines mmsyn6ukr parallel phonetic-languages-ukrainian
- print-info uniqueness-periods-vector
+ base mmsyn6ukr parallel phonetic-languages-plus
+ phonetic-languages-ukrainian print-info uniqueness-periods-vector
uniqueness-periods-vector-common uniqueness-periods-vector-filters
uniqueness-periods-vector-general
uniqueness-periods-vector-properties
@@ -266612,8 +263639,8 @@ self: {
}:
mkDerivation {
pname = "uniqueness-periods-vector-general";
- version = "0.5.1.0";
- sha256 = "1abqcxrlchhi5jag6rvaar48ip356p9r1zcndbja72z4dxg9b9q0";
+ version = "0.5.3.0";
+ sha256 = "080s606ckbm34d5r4lr1dyvnd0zjs5mc8nn2g04xyw6ym9fsxjaa";
libraryHaskellDepends = [
base print-info uniqueness-periods-vector-common vector
];
@@ -267002,32 +264029,6 @@ self: {
}:
mkDerivation {
pname = "universum";
- version = "1.6.1";
- sha256 = "007nh8kw5a2m681bjwvcdjdf69nb768kwdsckj2kdd7406mfgdm7";
- libraryHaskellDepends = [
- base bytestring containers deepseq ghc-prim hashable microlens
- microlens-mtl mtl safe-exceptions stm text transformers
- unordered-containers utf8-string vector
- ];
- testHaskellDepends = [
- base bytestring doctest Glob hedgehog tasty tasty-hedgehog text
- utf8-string
- ];
- benchmarkHaskellDepends = [
- base containers gauge text unordered-containers
- ];
- description = "Custom prelude used in Serokell";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "universum_1_7_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, doctest
- , gauge, ghc-prim, Glob, hashable, hedgehog, microlens
- , microlens-mtl, mtl, safe-exceptions, stm, tasty, tasty-hedgehog
- , text, transformers, unordered-containers, utf8-string, vector
- }:
- mkDerivation {
- pname = "universum";
version = "1.7.1";
sha256 = "0jsdzhy0h5d6znnrdgzr29b6qkriidck5s6yp52pci30rfv1d29z";
libraryHaskellDepends = [
@@ -267043,7 +264044,6 @@ self: {
];
description = "Custom prelude used in Serokell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unix_2_7_2_2" = callPackage
@@ -267052,8 +264052,8 @@ self: {
pname = "unix";
version = "2.7.2.2";
sha256 = "1b6ygkasn5bvmdci8g3zjkahl34kfqhf5jrayibvnrcdnaqlxpcq";
- revision = "4";
- editedCabalFile = "092d2qzfk4wm7xaa5wjyxgb97knilsh86vhk420j8rd0qlygk4wy";
+ revision = "5";
+ editedCabalFile = "1hfpipkxmkr0fgjz1i4mm0ah1s7bgb28yb8sjn32rafj4lzszn2m";
libraryHaskellDepends = [ base bytestring time ];
description = "POSIX functionality";
license = stdenv.lib.licenses.bsd3;
@@ -267200,6 +264200,8 @@ self: {
pname = "unjson";
version = "0.15.3";
sha256 = "1p2bk9j5ww0zbkaw1wvl2122h763zn4ddjzg5rka948q3d6zivvi";
+ revision = "1";
+ editedCabalFile = "1jgin4v0j5siyrchrlkp8y5abs30mk8j9d5ah3r0b84683whnnrx";
libraryHaskellDepends = [
aeson attoparsec base bytestring containers free hashable invariant
pretty primitive scientific semigroups text time
@@ -267212,8 +264214,6 @@ self: {
];
description = "Bidirectional JSON parsing and generation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"unlambda" = callPackage
@@ -267250,8 +264250,8 @@ self: {
}:
mkDerivation {
pname = "unliftio";
- version = "0.2.13";
- sha256 = "1wzrdrcclkbyfjchad60rs08r1b2d20mr7hcs55cx8x16962qmn2";
+ version = "0.2.13.1";
+ sha256 = "08q00kqg934y9cpj18kcgzcw3a2wgs6kjvgldgvr2a3vndwn95m0";
libraryHaskellDepends = [
async base bytestring deepseq directory filepath process stm time
transformers unix unliftio-core
@@ -267272,19 +264272,6 @@ self: {
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "unliftio-core";
- version = "0.1.2.0";
- sha256 = "0y3siyx3drkw7igs380a87h8qfbbgcyxxlcnshp698hcc4yqphr4";
- revision = "2";
- editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz";
- libraryHaskellDepends = [ base transformers ];
- description = "The MonadUnliftIO typeclass for unlifting monads to IO";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "unliftio-core_0_2_0_1" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "unliftio-core";
version = "0.2.0.1";
sha256 = "16i97jax8rys57l0g0qswfwxh1cl5bgw2lw525rm6bzajw90v7wi";
revision = "1";
@@ -267292,7 +264279,6 @@ self: {
libraryHaskellDepends = [ base transformers ];
description = "The MonadUnliftIO typeclass for unlifting monads to IO";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unliftio-path" = callPackage
@@ -267333,6 +264319,8 @@ self: {
];
description = "Generalization of io-streams to MonadUnliftIO";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"unlit" = callPackage
@@ -267381,31 +264369,6 @@ self: {
"unordered-containers" = callPackage
({ mkDerivation, base, bytestring, ChasingBottoms, containers
- , criterion, deepseq, deepseq-generics, hashable, hashmap, HUnit
- , mtl, QuickCheck, random, test-framework, test-framework-hunit
- , test-framework-quickcheck2
- }:
- mkDerivation {
- pname = "unordered-containers";
- version = "0.2.10.0";
- sha256 = "0wy5hfrs880hh8hvp648bl07ws777n3kkmczzdszr7papnyigwb5";
- revision = "1";
- editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy";
- libraryHaskellDepends = [ base deepseq hashable ];
- testHaskellDepends = [
- base ChasingBottoms containers hashable HUnit QuickCheck
- test-framework test-framework-hunit test-framework-quickcheck2
- ];
- benchmarkHaskellDepends = [
- base bytestring containers criterion deepseq deepseq-generics
- hashable hashmap mtl random
- ];
- description = "Efficient hashing-based container types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "unordered-containers_0_2_13_0" = callPackage
- ({ mkDerivation, base, bytestring, ChasingBottoms, containers
, deepseq, gauge, hashable, hashmap, HUnit, mtl, QuickCheck, random
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
@@ -267424,7 +264387,6 @@ self: {
];
description = "Efficient hashing-based container types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unordered-containers-rematch" = callPackage
@@ -267850,21 +264812,31 @@ self: {
}) {};
"update-nix-fetchgit" = callPackage
- ({ mkDerivation, aeson, async, base, bytestring, errors, hnix
- , prettyprinter, process, text, time, transformers, uniplate
- , utf8-string
+ ({ mkDerivation, aeson, async, base, bytestring, data-fix
+ , directory, filepath, github-rest, hnix, monad-validate, mtl
+ , optparse-applicative, optparse-generic, process, regex-tdfa, say
+ , syb, tasty, tasty-discover, tasty-golden, template-haskell
+ , temporary, text, time, utf8-string, vector
}:
mkDerivation {
pname = "update-nix-fetchgit";
- version = "0.1.2.0";
- sha256 = "0i2dmz95l8nnjqys2vjyjww47rnlny6wpwpj8k5kjl0fbz4h001d";
+ version = "0.2.5";
+ sha256 = "0lga69cnzysayvsflbcf43i7ncnib9mq62azi30kpm860s0h5lfb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson async base bytestring errors hnix prettyprinter process text
- time transformers uniplate utf8-string
+ aeson async base bytestring data-fix github-rest hnix
+ monad-validate mtl process regex-tdfa syb template-haskell text
+ time utf8-string vector
];
- executableHaskellDepends = [ base text ];
+ executableHaskellDepends = [
+ base optparse-applicative optparse-generic regex-tdfa say text
+ ];
+ testHaskellDepends = [
+ base directory filepath process tasty tasty-discover tasty-golden
+ temporary text
+ ];
+ testToolDepends = [ tasty-discover ];
description = "A program to update fetchgit values in Nix expressions";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ sorki ];
@@ -267934,6 +264906,42 @@ self: {
broken = true;
}) {};
+ "urbit-airlock" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra
+ , http-client, modern-uri, req, req-conduit, text, uuid
+ }:
+ mkDerivation {
+ pname = "urbit-airlock";
+ version = "0.1.0.0";
+ sha256 = "1w6mkdx999jxr2c9004cp1n550wjnhj9gvi76nhq5bcibnl62jqw";
+ libraryHaskellDepends = [
+ aeson base bytestring conduit conduit-extra http-client modern-uri
+ req req-conduit text uuid
+ ];
+ description = "Talk to Urbit from Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
+ "urbit-api" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra
+ , http-client, modern-uri, req, req-conduit, text, uuid
+ }:
+ mkDerivation {
+ pname = "urbit-api";
+ version = "0.2.0.0";
+ sha256 = "01kv1zi2w6qkl00hj43bpahcsws499rqdvyj8d8cy6pzrbnydrqc";
+ libraryHaskellDepends = [
+ aeson base bytestring conduit conduit-extra http-client modern-uri
+ req req-conduit text uuid
+ ];
+ description = "Talk to Urbit from Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"urbit-hob" = callPackage
({ mkDerivation, base, bytestring, criterion, deepseq, hspec
, hspec-core, murmur3, QuickCheck, text, vector
@@ -268074,8 +265082,8 @@ self: {
}:
mkDerivation {
pname = "uri-encode";
- version = "1.5.0.6";
- sha256 = "1w74dqvcl0s26p1s7rszmfj3zphv4bcflpp54iq1kxsrqpd1bbv8";
+ version = "1.5.0.7";
+ sha256 = "0lj2h701af12539p957rw24bxr07mfqd5r4h52i42f43ax165767";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -268544,8 +265552,6 @@ self: {
executableHaskellDepends = [ base random-fu text ];
description = "A collection of user agents";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"userid" = callPackage
@@ -268561,6 +265567,8 @@ self: {
];
description = "The UserId type and useful instances for web development";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"users" = callPackage
@@ -268679,6 +265687,8 @@ self: {
benchmarkHaskellDepends = [ base gauge ];
description = "UTF-8";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"utf8-conversions" = callPackage
@@ -268808,6 +265818,8 @@ self: {
benchmarkHaskellDepends = [ base gauge logict ];
description = "See README for more info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"util-plus" = callPackage
@@ -269008,11 +266020,11 @@ self: {
}:
mkDerivation {
pname = "uuagc";
- version = "0.9.53";
- sha256 = "0cij4kf8f2151xz2q935bn9bhrqig9alc008vds7cw6pkb32ngz6";
+ version = "0.9.53.1";
+ sha256 = "0agmvc1ng1dpnl0z8njilc2r51rgl9fh3lmxgprwc0y5dqqrn6zr";
isLibrary = true;
isExecutable = true;
- setupHaskellDepends = [ base Cabal ];
+ setupHaskellDepends = [ base Cabal uuagc-cabal ];
libraryHaskellDepends = [
array base containers directory filepath ghc-prim haskell-src-exts
mtl uuagc-cabal uulib
@@ -269020,8 +266032,6 @@ self: {
executableHaskellDepends = [ base uuagc-cabal ];
description = "Attribute Grammar System of Universiteit Utrecht";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"uuagc-bootstrap" = callPackage
@@ -269061,8 +266071,6 @@ self: {
];
description = "Cabal plugin for UUAGC";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"uuagc-diagrams" = callPackage
@@ -269251,20 +266259,23 @@ self: {
}) {};
"uusi" = callPackage
- ({ mkDerivation, base, Cabal, colourista, directory, microlens
- , optparse-applicative, process, text
+ ({ mkDerivation, base, Cabal, directory, filepath, HUnit, microlens
+ , microlens-th, text
}:
mkDerivation {
pname = "uusi";
- version = "0.0.0.0";
- sha256 = "0wii4azq5aj8d1c8n5plsfqqvf9x5s4qw82mhvjhnzja3d6cck4f";
- isLibrary = false;
+ version = "0.3.1.0";
+ sha256 = "14n2n62lcaxfljxxdk6pw14liksfa77jj8zby5magdnsx2jzkb5i";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [ base Cabal microlens microlens-th text ];
executableHaskellDepends = [
- base Cabal colourista directory microlens optparse-applicative
- process text
+ base Cabal directory filepath microlens microlens-th text
];
- description = "A program removing all version constraints of dependencies in .cabal file";
+ testHaskellDepends = [
+ base Cabal HUnit microlens microlens-th text
+ ];
+ description = "Tweak dependencies in .cabal files";
license = stdenv.lib.licenses.mit;
}) {};
@@ -269560,8 +266571,8 @@ self: {
pname = "validated-literals";
version = "0.3.0";
sha256 = "1k77jp19kl7h4v9hl2jhsmbq8dhzl8z9sgkw1jxx1rblm3fszjx1";
- revision = "3";
- editedCabalFile = "0m7iggm5676nayzkj0ip866qg8d4ld6gv38krl02z020m96zax5b";
+ revision = "4";
+ editedCabalFile = "16fwvivw1barrgkw7cl2hfgksfhambfmhrwibhi6n8096sj79h0j";
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [
base bytestring deepseq tasty tasty-hunit tasty-travis
@@ -269645,22 +266656,21 @@ self: {
}) {};
"validationt" = callPackage
- ({ mkDerivation, aeson, base, containers, exceptions, lens
+ ({ mkDerivation, aeson, base, containers, doctest, exceptions, lens
, monad-control, mtl, QuickCheck, text, transformers
- , transformers-base, transformers-lift, vector
+ , transformers-base, vector
}:
mkDerivation {
pname = "validationt";
- version = "0.2.1.0";
- sha256 = "0b91rn6fvdc9cypaljhm4q8gn4fivyszk00h47qvvs4by8rx5q58";
+ version = "0.3.0";
+ sha256 = "14kvkiawsychqq55nm0afpfwxjvxh9izbr35zgp3wg2j0zqzkhnz";
libraryHaskellDepends = [
aeson base containers exceptions lens monad-control mtl QuickCheck
- text transformers transformers-base transformers-lift vector
+ text transformers transformers-base vector
];
+ testHaskellDepends = [ base doctest ];
description = "Straightforward validation monad";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"validators" = callPackage
@@ -269779,23 +266789,11 @@ self: {
({ mkDerivation, base, time, validity }:
mkDerivation {
pname = "validity-time";
- version = "0.3.0.0";
- sha256 = "1g8lp7sv8hs9jwsqphq30q2wr20kmmd430mqc1rm82i4cwsk8azx";
- libraryHaskellDepends = [ base time validity ];
- description = "Validity instances for time";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "validity-time_0_4_0_0" = callPackage
- ({ mkDerivation, base, time, validity }:
- mkDerivation {
- pname = "validity-time";
version = "0.4.0.0";
sha256 = "02lwa2w84m4mm2lpg5dhg5p0ndba5r152bjm4iy76y2qsfkva0ap";
libraryHaskellDepends = [ base time validity ];
description = "Validity instances for time";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"validity-unordered-containers" = callPackage
@@ -270367,18 +267365,6 @@ self: {
broken = true;
}) {};
- "vector_0_10_9_3" = callPackage
- ({ mkDerivation, base, deepseq, ghc-prim, primitive }:
- mkDerivation {
- pname = "vector";
- version = "0.10.9.3";
- sha256 = "08mlg0v7an6mm04skvxrgfndab0wikfs4glv7jj8ylxwc8959kdx";
- libraryHaskellDepends = [ base deepseq ghc-prim primitive ];
- description = "Efficient Arrays";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"vector" = callPackage
({ mkDerivation, base, base-orphans, deepseq, ghc-prim, HUnit
, primitive, QuickCheck, random, semigroups, tasty, tasty-hunit
@@ -270520,8 +267506,6 @@ self: {
testHaskellDepends = [ base hedgehog hedgehog-classes ];
description = "circular vectors";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"vector-clock" = callPackage
@@ -270624,8 +267608,6 @@ self: {
];
description = "A binding to the fftw library for one-dimensional vectors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {inherit (pkgs) fftw;};
"vector-functorlazy" = callPackage
@@ -270924,8 +267906,6 @@ self: {
];
description = "GIS Vector Tiles, as defined by Mapbox";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"vega-view" = callPackage
@@ -270945,6 +267925,8 @@ self: {
];
description = "Easily view Vega or Vega-Lite visualizations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"venzone" = callPackage
@@ -271175,13 +268157,16 @@ self: {
"versions" = callPackage
({ mkDerivation, base, deepseq, hashable, megaparsec, microlens
- , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text
+ , parser-combinators, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, text
}:
mkDerivation {
pname = "versions";
- version = "3.5.4";
- sha256 = "1n6mayi2qinlv12bf83qskiazwzgl37d4nxvglmwmddb7lpyxbrw";
- libraryHaskellDepends = [ base deepseq hashable megaparsec text ];
+ version = "4.0.1";
+ sha256 = "1s8bnxq3asq4wwgbsfvhkl6yih1sic9v8ylimcxwnvmdlh5ks58a";
+ libraryHaskellDepends = [
+ base deepseq hashable megaparsec parser-combinators text
+ ];
testHaskellDepends = [
base megaparsec microlens QuickCheck tasty tasty-hunit
tasty-quickcheck text
@@ -271462,8 +268447,8 @@ self: {
}:
mkDerivation {
pname = "vimeta";
- version = "0.3.0.0";
- sha256 = "0npz5mx9w6srz5p0is3yzgfwssakdycv8h0h38ff7q0sivq3pfnv";
+ version = "0.3.0.1";
+ sha256 = "0i834y50b4820109asrzp61bqprxs9rfgr9b8310zhsisrlbxgl3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -271593,8 +268578,6 @@ self: {
];
description = "Utilities for working with OpenGL's GLSL shading language and vinyl records";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"vinyl-json" = callPackage
@@ -271989,8 +268972,6 @@ self: {
];
description = "Reading of Vorbis comments from Ogg Vorbis files";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"vowpal-utils" = callPackage
@@ -272126,43 +269107,8 @@ self: {
}:
mkDerivation {
pname = "vty";
- version = "5.28.2";
- sha256 = "0jfiha8hwpdpnz4i7d94dsgcrfd20y0kjp9crn3ds2jx8kln1prv";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-terminal base binary blaze-builder bytestring containers
- deepseq directory filepath hashable microlens microlens-mtl
- microlens-th mtl parallel parsec stm terminfo text transformers
- unix utf8-string vector
- ];
- executableHaskellDepends = [
- base containers directory filepath microlens microlens-mtl mtl
- ];
- testHaskellDepends = [
- base blaze-builder bytestring Cabal containers deepseq HUnit
- microlens microlens-mtl mtl QuickCheck quickcheck-assertions random
- smallcheck stm string-qq terminfo test-framework
- test-framework-hunit test-framework-smallcheck text unix
- utf8-string vector
- ];
- description = "A simple terminal UI library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "vty_5_31" = callPackage
- ({ mkDerivation, ansi-terminal, base, binary, blaze-builder
- , bytestring, Cabal, containers, deepseq, directory, filepath
- , hashable, HUnit, microlens, microlens-mtl, microlens-th, mtl
- , parallel, parsec, QuickCheck, quickcheck-assertions, random
- , smallcheck, stm, string-qq, terminfo, test-framework
- , test-framework-hunit, test-framework-smallcheck, text
- , transformers, unix, utf8-string, vector
- }:
- mkDerivation {
- pname = "vty";
- version = "5.31";
- sha256 = "0w71qnp1plqpib0b9c5kqyhybfmlw50hnlckw9jwr7m0mfssbqdb";
+ version = "5.32";
+ sha256 = "0ydbifik7xilb33phglpjkgf6r8vifipyyq0wb6111azzj7dmszs";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -272183,7 +269129,6 @@ self: {
];
description = "A simple terminal UI library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vty-examples" = callPackage
@@ -272263,12 +269208,13 @@ self: {
({ mkDerivation, base, bytestring, transformers, vector, vulkan }:
mkDerivation {
pname = "vulkan";
- version = "3.6.10";
- sha256 = "028c6n6f62nnwszb4px5mhg2spqb2z4psm06fbc2r1qw6vpqhxn6";
+ version = "3.8";
+ sha256 = "08d48q6wml8bh28s39zk12hi6760xmn92qdb9zk7y3h896i8v15s";
libraryHaskellDepends = [ base bytestring transformers vector ];
librarySystemDepends = [ vulkan ];
description = "Bindings to the Vulkan graphics API";
license = stdenv.lib.licenses.bsd3;
+ platforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {vulkan = null;};
"vulkan-api" = callPackage
@@ -272280,20 +269226,27 @@ self: {
libraryHaskellDepends = [ base ];
description = "Low-level low-overhead vulkan api bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"vulkan-utils" = callPackage
- ({ mkDerivation, base, bytestring, extra, file-embed, filepath
- , template-haskell, temporary, typed-process, vulkan
+ ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers
+ , dependent-map, dependent-sum, doctest, extra, file-embed
+ , filepath, resourcet, template-haskell, temporary, text
+ , transformers, typed-process, unordered-containers, vector, vulkan
}:
mkDerivation {
pname = "vulkan-utils";
- version = "0.1.2";
- sha256 = "1him27687nbqc5mv56gf8nr9hg4wpx702sijrci0ls7mpjz9qlxp";
+ version = "0.4";
+ sha256 = "0r7byk8i59qnvkaqvkr5kdw9spwni6g6pyspgwzabhvky6n2mang";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
- base bytestring extra file-embed filepath template-haskell
- temporary typed-process vulkan
+ base bytestring containers dependent-map dependent-sum extra
+ file-embed filepath resourcet template-haskell temporary text
+ transformers typed-process unordered-containers vector vulkan
];
+ testHaskellDepends = [ base doctest ];
description = "Utils for the vulkan package";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -272679,35 +269632,6 @@ self: {
"wai-extra" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring
- , bytestring, case-insensitive, containers, cookie
- , data-default-class, deepseq, directory, fast-logger, hspec
- , http-types, http2, HUnit, iproute, network, old-locale, resourcet
- , streaming-commons, text, time, transformers, unix, unix-compat
- , vault, void, wai, wai-logger, word8, zlib
- }:
- mkDerivation {
- pname = "wai-extra";
- version = "3.0.32";
- sha256 = "1676mvyamlrkfsvdnrxj0cd2bl40b8lp4nrcpn67mnjxfs7qflh0";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson ansi-terminal base base64-bytestring bytestring
- case-insensitive containers cookie data-default-class deepseq
- directory fast-logger http-types http2 iproute network old-locale
- resourcet streaming-commons text time transformers unix unix-compat
- vault void wai wai-logger word8 zlib
- ];
- testHaskellDepends = [
- base bytestring case-insensitive cookie fast-logger hspec
- http-types http2 HUnit resourcet text time transformers wai zlib
- ];
- description = "Provides some basic WAI handlers and middleware";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "wai-extra_3_1_1" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring
, bytestring, call-stack, case-insensitive, containers, cookie
, data-default-class, deepseq, directory, fast-logger, hspec
, http-types, http2, HUnit, iproute, network, old-locale, resourcet
@@ -272716,8 +269640,8 @@ self: {
}:
mkDerivation {
pname = "wai-extra";
- version = "3.1.1";
- sha256 = "0x3lixv64j9s6zp9ghl53dj5lgw25mpl65v1cwjfs8kbk44nvbsk";
+ version = "3.1.3";
+ sha256 = "17s8cf0fdbkg9z2pvpsbhxg2cy5yy3c94513gkgf81lfl38zdrn7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -272733,7 +269657,6 @@ self: {
];
description = "Provides some basic WAI handlers and middleware";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-feature-flags" = callPackage
@@ -272841,6 +269764,8 @@ self: {
librarySystemDepends = [ fcgi ];
description = "Wai handler to fastcgi";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {inherit (pkgs) fcgi;};
"wai-handler-launch" = callPackage
@@ -273020,15 +269945,16 @@ self: {
}) {};
"wai-log" = callPackage
- ({ mkDerivation, aeson, base, http-types, log-base
- , string-conversions, text, time, wai
+ ({ mkDerivation, aeson, base, bytestring, http-types, log-base
+ , string-conversions, text, time, uuid, wai
}:
mkDerivation {
pname = "wai-log";
- version = "0.2.0.0";
- sha256 = "02lsvkh7mkqd6p69qffrl62pdxzn5h1a4wnqflb3sycifi8dmj9b";
+ version = "0.3.0.0";
+ sha256 = "0mgby05lq9j31ssyk2yp6mghqwgpffkki7pygday1lmg130n8n74";
libraryHaskellDepends = [
- aeson base http-types log-base string-conversions text time wai
+ aeson base bytestring http-types log-base string-conversions text
+ time uuid wai
];
description = "A logging middleware for WAI applications";
license = stdenv.lib.licenses.bsd3;
@@ -273159,8 +270085,6 @@ self: {
];
description = "Authentication middleware that secures WAI application";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"wai-middleware-brotli" = callPackage
@@ -273666,26 +270590,6 @@ self: {
"wai-middleware-static" = callPackage
({ mkDerivation, base, bytestring, containers, cryptonite
- , directory, expiring-cache-map, filepath, http-types, memory
- , mime-types, mtl, old-locale, semigroups, text, time, wai
- }:
- mkDerivation {
- pname = "wai-middleware-static";
- version = "0.8.3";
- sha256 = "0l6az106r970v3jwx3z7fg7x8ja8x5hla0m5lwg7sjfs9vdh0bnl";
- revision = "1";
- editedCabalFile = "0jinswa97ll70xxj6hm4mxw7i1cfnm8jn87aczzccn9xscdpll4c";
- libraryHaskellDepends = [
- base bytestring containers cryptonite directory expiring-cache-map
- filepath http-types memory mime-types mtl old-locale semigroups
- text time wai
- ];
- description = "WAI middleware that serves requests to static files";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "wai-middleware-static_0_9_0" = callPackage
- ({ mkDerivation, base, bytestring, containers, cryptonite
, directory, expiring-cache-map, filepath, hspec, hspec-discover
, hspec-expectations-lifted, hspec-wai, http-types, memory
, mime-types, mockery, old-locale, scotty, semigroups, text, time
@@ -273707,7 +270611,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "WAI middleware that serves requests to static files";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-static-caching" = callPackage
@@ -273818,8 +270721,8 @@ self: {
}:
mkDerivation {
pname = "wai-predicates";
- version = "0.10.0";
- sha256 = "1hnpzf7zwizx67ql4fwpqj7xlgkn6c2ms8w4kjapmgxv8z8zdcxp";
+ version = "1.0.0";
+ sha256 = "0m6aqpafc7rgcp81g0kilshz9bxsp4vxllrya2wjccan3n5pajji";
libraryHaskellDepends = [
attoparsec base bytestring bytestring-conversion case-insensitive
cookie http-types singletons text transformers vault vector wai
@@ -273833,6 +270736,36 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "wai-rate-limit" = callPackage
+ ({ mkDerivation, base, http-types, wai }:
+ mkDerivation {
+ pname = "wai-rate-limit";
+ version = "0.1.0.0";
+ sha256 = "1z7npcf0smzyfjvkmpa6dw08sg3ywx4cc4kafgxk95dh8yqnmidw";
+ libraryHaskellDepends = [ base http-types wai ];
+ description = "Rate limiting as WAI middleware";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "wai-rate-limit-redis" = callPackage
+ ({ mkDerivation, base, bytestring, hedis, http-types, tasty
+ , tasty-hedgehog, tasty-hunit, wai, wai-extra, wai-rate-limit, warp
+ }:
+ mkDerivation {
+ pname = "wai-rate-limit-redis";
+ version = "0.1.0.0";
+ sha256 = "1lwlx6krxq1pf5a2r2n4pc5crk4ia8r50xzdhrg3fjf9ydpcbv2n";
+ libraryHaskellDepends = [ base bytestring hedis wai-rate-limit ];
+ testHaskellDepends = [
+ base bytestring hedis http-types tasty tasty-hedgehog tasty-hunit
+ wai wai-extra wai-rate-limit warp
+ ];
+ description = "Redis backend for rate limiting as WAI middleware";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"wai-request-spec" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, criterion, http-types, text, wai
@@ -273886,8 +270819,6 @@ self: {
];
description = "WAI middleware for path-based request routing with captures";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"wai-router" = callPackage
@@ -273964,8 +270895,8 @@ self: {
}:
mkDerivation {
pname = "wai-saml2";
- version = "0.2.1.0";
- sha256 = "0yljqfrrp426pn17fq28arw3ygrb3i84fr28r0hns0cv4a4sz4gx";
+ version = "0.2.1.2";
+ sha256 = "1hd408fs4w0lpqg0shnrwpx98fh6idzk8la3gn8xghhml189xgwl";
libraryHaskellDepends = [
base base64-bytestring bytestring c14n cryptonite
data-default-class http-types mtl text time vault wai wai-extra
@@ -274419,8 +271350,6 @@ self: {
];
description = "A parser for the Web Archive (WARC) format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"warp" = callPackage
@@ -274532,22 +271461,6 @@ self: {
}:
mkDerivation {
pname = "warp-tls";
- version = "3.2.12";
- sha256 = "1d75zcacr835m7d1b0n7j19432sdf0qwgqxdf6az3f9brg849ajd";
- 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;
- }) {};
-
- "warp-tls_3_3_0" = callPackage
- ({ mkDerivation, base, bytestring, cryptonite, data-default-class
- , network, streaming-commons, tls, tls-session-manager, wai, warp
- }:
- mkDerivation {
- pname = "warp-tls";
version = "3.3.0";
sha256 = "03fwwggl6lhxs7swwylgpk9j8g5szq2h871nfbgs6xzr1b5hpas1";
libraryHaskellDepends = [
@@ -274556,7 +271469,6 @@ self: {
];
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
@@ -274737,6 +271649,8 @@ self: {
];
description = "Wavefront OBJ loader";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"wavefront-obj" = callPackage
@@ -274920,8 +271834,6 @@ self: {
testHaskellDepends = [ base bytestring HUnit network-uri text ];
description = "Composable, reversible, efficient web routing using invertible invariants and bijections";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"web-mongrel2" = callPackage
@@ -275026,22 +271938,23 @@ self: {
"web-rep" = callPackage
({ mkDerivation, attoparsec, base, box, box-socket, clay
, concurrency, doctest, generic-lens, interpolatedstring-perl6
- , language-javascript, lens, lucid, mtl, numhask, optparse-generic
- , scotty, tasty, tasty-hspec, text, transformers
+ , language-javascript, lens, lucid, mtl, network-simple, numhask
+ , optparse-generic, scotty, tasty, tasty-hspec, text, transformers
, unordered-containers, wai-middleware-static, wai-websockets
, websockets
}:
mkDerivation {
pname = "web-rep";
- version = "0.7.0";
- sha256 = "1045b19rjs1hgw92kq8z6wzm7jmx8k73ad9z4m2vzv1jwjhbgin4";
+ version = "0.7.2";
+ sha256 = "1h6krrm412b9374778jg33gdmk6ig0sp06yk68h5prjdgy6shmww";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
attoparsec base box box-socket clay concurrency generic-lens
- interpolatedstring-perl6 language-javascript lens lucid mtl numhask
- scotty text transformers unordered-containers wai-middleware-static
- wai-websockets websockets
+ interpolatedstring-perl6 language-javascript lens lucid mtl
+ network-simple numhask scotty text transformers
+ unordered-containers wai-middleware-static wai-websockets
+ websockets
];
executableHaskellDepends = [ base numhask optparse-generic ];
testHaskellDepends = [
@@ -275101,8 +272014,8 @@ self: {
}:
mkDerivation {
pname = "web-routes-happstack";
- version = "0.23.12";
- sha256 = "0p5fa2cdpk6s9n0wa7nllhk1naa3a8a8vx63q6da8ifk6x8jn68a";
+ version = "0.23.12.1";
+ sha256 = "06gifknfv6g9rd9f83r75hc3sld4xb4f1czxs9k5ca7n1l1vlccy";
libraryHaskellDepends = [
base bytestring happstack-server text web-routes
];
@@ -275335,6 +272248,8 @@ self: {
];
description = "Web Authentication API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"webby" = callPackage
@@ -275345,8 +272260,8 @@ self: {
}:
mkDerivation {
pname = "webby";
- version = "1.0.0";
- sha256 = "0pz80i94cqk2w07135mw7lmh7yvc3vn8pikav5l8pvq3hcfmhk0g";
+ version = "1.0.1";
+ sha256 = "00sdw1ly5848f4yq64j4an8w1c83gwry6n8bp7z7csh1y0lz4mm3";
libraryHaskellDepends = [
aeson base binary bytestring formatting http-api-data http-types
relude resourcet text unliftio unliftio-core unordered-containers
@@ -276261,6 +273176,8 @@ self: {
pname = "what4";
version = "1.0";
sha256 = "0yyyq2gzl7srjq6inj1dqdhpxd58r1rhjajwxi0gr5pmxfzv7k8w";
+ revision = "1";
+ editedCabalFile = "04ab8nvnngb3bjv94mkcr17hh2m943m4pyk3klbnmpwyp9ip6pmf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -276326,8 +273243,8 @@ self: {
({ mkDerivation, base, shelly, template-haskell, text }:
mkDerivation {
pname = "which";
- version = "0.1.0.0";
- sha256 = "0w1jik9bkndx8ssd00i1ii686kb0fd2sc0slr7ki561g5z1xa7dz";
+ version = "0.2";
+ sha256 = "1c1l79bdpqfg4n3p5gkc3x362m9k11hmyydr2y3j0xs4hhm3d5aa";
libraryHaskellDepends = [ base shelly template-haskell text ];
description = "Determine the full path to an executable";
license = stdenv.lib.licenses.bsd3;
@@ -276424,8 +273341,6 @@ self: {
random-fu random-shuffle random-source relude temporary time
];
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"why3" = callPackage
@@ -276682,33 +273597,33 @@ self: {
}) {};
"winery" = callPackage
- ({ mkDerivation, aeson, base, binary, bytestring, cereal
- , containers, cpu, deepseq, directory, fast-builder, gauge
- , hashable, HUnit, megaparsec, mtl, prettyprinter
- , prettyprinter-ansi-terminal, QuickCheck, quickcheck-instances
- , scientific, semigroups, serialise, store, text, time
- , transformers, unordered-containers, vector
+ ({ mkDerivation, aeson, barbies, barbies-th, base, binary
+ , bytestring, cereal, containers, cpu, deepseq, directory
+ , fast-builder, gauge, hashable, HUnit, megaparsec, mtl
+ , prettyprinter, prettyprinter-ansi-terminal, QuickCheck
+ , quickcheck-instances, scientific, semigroups, serialise, store
+ , text, time, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "winery";
- version = "1.3.1";
- sha256 = "0p504hglnih3gxc8x2iqqq9sih1l6chq53nijlv8f6wy15j9p5hh";
+ version = "1.3.2";
+ sha256 = "0ll6zm6zmhl9xmlbhj8is33zny4l7hwvf8lpvgqw0jcvz7j955a2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring containers cpu fast-builder hashable HUnit
- megaparsec mtl prettyprinter prettyprinter-ansi-terminal QuickCheck
- scientific semigroups text time transformers unordered-containers
- vector
+ aeson barbies barbies-th base bytestring containers cpu
+ fast-builder hashable HUnit megaparsec mtl prettyprinter
+ prettyprinter-ansi-terminal QuickCheck scientific semigroups text
+ time transformers unordered-containers vector
];
executableHaskellDepends = [
aeson base bytestring megaparsec prettyprinter
prettyprinter-ansi-terminal text
];
testHaskellDepends = [
- base bytestring containers fast-builder QuickCheck
- quickcheck-instances scientific text time unordered-containers
- vector
+ barbies barbies-th base bytestring containers fast-builder
+ QuickCheck quickcheck-instances scientific text time
+ unordered-containers vector
];
benchmarkHaskellDepends = [
aeson base binary bytestring cereal deepseq directory gauge
@@ -276716,6 +273631,8 @@ self: {
];
description = "A compact, well-typed seralisation format for Haskell values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"winio" = callPackage
@@ -276812,6 +273729,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "witch" = callPackage
+ ({ mkDerivation, base, bytestring, containers, hspec, QuickCheck
+ , text
+ }:
+ mkDerivation {
+ pname = "witch";
+ version = "0.0.0.3";
+ sha256 = "0ghajh4f4xfhn79bmyhamxjgl63lwg37kp39nn1q6qxggzzmzkyx";
+ libraryHaskellDepends = [ base bytestring containers text ];
+ testHaskellDepends = [
+ base bytestring containers hspec QuickCheck text
+ ];
+ description = "Convert values from one type into another";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"with-index" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -276875,26 +273808,6 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "witherable_0_3_2" = callPackage
- ({ mkDerivation, base, base-orphans, containers, hashable
- , monoidal-containers, transformers, transformers-compat
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "witherable";
- version = "0.3.2";
- sha256 = "1iqf3kc9h599lbiym8rf9b4fhj31lqwm1cxqz6x02q9dxyrcprmi";
- revision = "1";
- editedCabalFile = "01mprffm41km3pm5nlpsp2ig2izgl6ll9ylrym3dg01f9609aa0z";
- libraryHaskellDepends = [
- base base-orphans containers hashable monoidal-containers
- transformers transformers-compat unordered-containers vector
- ];
- description = "filterable traversable";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"witherable" = callPackage
({ mkDerivation, base, base-orphans, containers, hashable, lens
, monoidal-containers, transformers, transformers-compat
@@ -276930,19 +273843,6 @@ self: {
}) {};
"within" = callPackage
- ({ mkDerivation, base, comonad, exceptions, free, hashable, path }:
- mkDerivation {
- pname = "within";
- version = "0.1.1.0";
- sha256 = "107gi32zsp7srb2lgmbmrdzry2irgshnznkf81sw3f1n07qhci40";
- libraryHaskellDepends = [
- base comonad exceptions free hashable path
- ];
- description = "A value within another path";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "within_0_2_0_1" = callPackage
({ mkDerivation, base, comonad, exceptions, free, hashable, path
, path-like
}:
@@ -276955,23 +273855,9 @@ self: {
];
description = "A value within another path";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"witness" = callPackage
- ({ mkDerivation, base, constraints, semigroupoids, transformers }:
- mkDerivation {
- pname = "witness";
- version = "0.4";
- sha256 = "180yy0dyvmn9jsl1gjbryxli3qkl2h6pvh297vsr9ax3h4vciilk";
- libraryHaskellDepends = [
- base constraints semigroupoids transformers
- ];
- description = "values that witness types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "witness_0_5" = callPackage
({ mkDerivation, base, constraints, countable, semigroupoids
, transformers
}:
@@ -276984,7 +273870,6 @@ self: {
];
description = "values that witness types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"witty" = callPackage
@@ -277466,6 +274351,8 @@ self: {
benchmarkHaskellDepends = [ base criterion pandoc text ];
description = "Get word counts and distributions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"wordcloud" = callPackage
@@ -277538,6 +274425,8 @@ self: {
];
description = "Command-line tool to get random words";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"wordn" = callPackage
@@ -278356,6 +275245,8 @@ self: {
pname = "wshterm";
version = "0.1.0.1";
sha256 = "09gxc8i4j236yvmvr31w3l05k0d1pqjgm6i88yn7hw16anjn23qq";
+ revision = "1";
+ editedCabalFile = "0f2w2f0mnv8mc5l5bj1vl76bs03s640ssn57ri2fk3235lklnwmh";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -278384,6 +275275,8 @@ self: {
executableHaskellDepends = [ base ];
description = "WSJT-X UDP protocol";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"wss-client" = callPackage
@@ -278935,8 +275828,6 @@ self: {
];
description = "Runtime code generation for x86 64 bit machine code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"xattr" = callPackage
@@ -278985,13 +275876,13 @@ self: {
"xcffib" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, directory, either, filemanip, filepath, HUnit, language-python
- , mtl, optparse-applicative, semigroups, split, test-framework
+ , mtl, optparse-applicative, split, test-framework
, test-framework-hunit, xcb-types
}:
mkDerivation {
pname = "xcffib";
- version = "0.10.0";
- sha256 = "163fiyppb40xd4wibvjkya86630hlhn1ij0i5xlc547gazawhz4a";
+ version = "0.11.1";
+ sha256 = "18xwliqcba0ia4p64gxiqd0pvkg3r3ylsmn3mywa5p43x1dji481";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -279000,8 +275891,7 @@ self: {
];
executableHaskellDepends = [
attoparsec base bytestring containers directory either filemanip
- filepath language-python mtl optparse-applicative semigroups split
- xcb-types
+ filepath language-python mtl optparse-applicative split xcb-types
];
testHaskellDepends = [
base filepath HUnit language-python test-framework
@@ -279518,8 +276408,8 @@ self: {
}:
mkDerivation {
pname = "xlsx";
- version = "0.8.1";
- sha256 = "1prb6369af2w0rni2ha32yzd9r17yi0xnyn1dzwdzq03maxikgy9";
+ version = "0.8.2";
+ sha256 = "0kjfnp24nc97qqla1z65wzy59cch336pjncz1kdfakmgv27mv38a";
libraryHaskellDepends = [
attoparsec base base64-bytestring binary-search bytestring conduit
containers data-default deepseq errors extra filepath lens mtl
@@ -279623,30 +276513,6 @@ self: {
broken = true;
}) {};
- "xml-conduit_1_7_1_2" = callPackage
- ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
- , blaze-markup, bytestring, conduit, conduit-extra, containers
- , data-default-class, deepseq, hspec, HUnit, monad-control
- , resourcet, text, transformers, xml-types
- }:
- mkDerivation {
- pname = "xml-conduit";
- version = "1.7.1.2";
- sha256 = "0n4k0rq9j5cc9kdvj9xbx8gmiqlyk5x6pw8yxzw5wfsw7qkych2s";
- libraryHaskellDepends = [
- attoparsec base blaze-builder blaze-html blaze-markup bytestring
- conduit conduit-extra containers data-default-class deepseq
- monad-control resourcet text transformers xml-types
- ];
- testHaskellDepends = [
- base blaze-markup bytestring conduit containers hspec HUnit
- resourcet text transformers xml-types
- ];
- description = "Pure-Haskell utilities for dealing with XML with the conduit package";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"xml-conduit_1_8_0_1" = callPackage
({ mkDerivation, attoparsec, base, blaze-html, blaze-markup
, bytestring, conduit, conduit-extra, containers
@@ -280437,8 +277303,8 @@ self: {
}:
mkDerivation {
pname = "xmobar";
- version = "0.36";
- sha256 = "0kqnadgsqn7m3zw2vk22ssf4aw67rij9l1lpjfsnv2qw0m5apsdl";
+ version = "0.37";
+ sha256 = "0bjjja73ip7c1s8r3j3dimzm2j17sx38nsh51nl3axf4z5pbif74";
configureFlags = [
"-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus"
"-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris"
@@ -280465,7 +277331,7 @@ self: {
filepath hspec mtl old-locale parsec parsec-numbers process
regex-compat stm temporary time transformers unix X11
];
- benchmarkHaskellDepends = [ base gauge mtl ];
+ benchmarkHaskellDepends = [ base gauge mtl time ];
description = "A Minimalistic Text Based Status Bar";
license = stdenv.lib.licenses.bsd3;
platforms = [ "i686-linux" "x86_64-linux" ];
@@ -280586,6 +277452,8 @@ self: {
executableHaskellDepends = [ base dbus utf8-string ];
testHaskellDepends = [ base dbus utf8-string ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"xmonad-entryhelper" = callPackage
@@ -280989,6 +277857,8 @@ self: {
];
testToolDepends = [ hspec-discover ];
license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"xsact" = callPackage
@@ -281551,8 +278421,6 @@ self: {
base containers persistent-postgresql unliftio-core yam-app
];
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yam-web" = callPackage
@@ -281790,6 +278658,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "yaml-unscrambler" = callPackage
+ ({ mkDerivation, acc, attoparsec, attoparsec-data, attoparsec-time
+ , base, base64, bytestring, conduit, containers, foldl, hashable
+ , libyaml, mtl, neat-interpolation, QuickCheck
+ , quickcheck-instances, rerebase, scientific, selective, tasty
+ , tasty-hunit, tasty-quickcheck, text, text-builder, time
+ , transformers, unordered-containers, uuid, vector, yaml
+ }:
+ mkDerivation {
+ pname = "yaml-unscrambler";
+ version = "0.1.0.1";
+ sha256 = "05z892g8c9alwmjwjm1405s43s8cdbj42ymqc9jlb27qc8ikc4n7";
+ libraryHaskellDepends = [
+ acc attoparsec attoparsec-data attoparsec-time base base64
+ bytestring conduit containers foldl hashable libyaml mtl scientific
+ selective text text-builder time transformers unordered-containers
+ uuid vector yaml
+ ];
+ testHaskellDepends = [
+ foldl neat-interpolation QuickCheck quickcheck-instances rerebase
+ tasty tasty-hunit tasty-quickcheck
+ ];
+ description = "Flexible declarative YAML parsing toolkit";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+
"yaml2owl" = callPackage
({ mkDerivation, base, containers, directory, filepath, network
, network-uri, swish, text, xml, yaml
@@ -281836,33 +278732,6 @@ self: {
}:
mkDerivation {
pname = "yamlparse-applicative";
- version = "0.1.0.1";
- sha256 = "089s5f3i3yz833g7q2rd55v9hn93cdzprhniymw37qdmhv5jw960";
- libraryHaskellDepends = [
- aeson base bytestring containers optparse-applicative path path-io
- prettyprinter scientific text unordered-containers validity
- validity-text vector yaml
- ];
- testHaskellDepends = [
- aeson base containers genvalidity-aeson genvalidity-containers
- genvalidity-hspec genvalidity-scientific genvalidity-text
- genvalidity-unordered-containers hspec QuickCheck scientific text
- unordered-containers
- ];
- description = "Declaritive configuration parsing with free docs";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "yamlparse-applicative_0_1_0_2" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers
- , genvalidity-aeson, genvalidity-containers, genvalidity-hspec
- , genvalidity-scientific, genvalidity-text
- , genvalidity-unordered-containers, hspec, optparse-applicative
- , path, path-io, prettyprinter, QuickCheck, scientific, text
- , unordered-containers, validity, validity-text, vector, yaml
- }:
- mkDerivation {
- pname = "yamlparse-applicative";
version = "0.1.0.2";
sha256 = "1bzf3kbhccxzg88amyk3ys3bwfi99fhmfa843sxn53nrbgphdw09";
libraryHaskellDepends = [
@@ -281878,7 +278747,6 @@ self: {
];
description = "Declaritive configuration parsing with free docs";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yampa-canvas" = callPackage
@@ -281894,8 +278762,6 @@ self: {
libraryHaskellDepends = [ base blank-canvas stm time Yampa ];
description = "blank-canvas frontend for Yampa";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yampa-glfw" = callPackage
@@ -282091,6 +278957,8 @@ self: {
];
description = "Represent and parse yarn.lock files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yarn2nix" = callPackage
@@ -282128,6 +278996,8 @@ self: {
];
description = "Convert yarn.lock files to nix expressions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yarr" = callPackage
@@ -282313,6 +279183,8 @@ self: {
pname = "yeamer";
version = "0.1.0.5";
sha256 = "0c8yrh43h9qhhdiz0dnrh00frfz0cymzzz9k723jnp03b8994srq";
+ revision = "1";
+ editedCabalFile = "0ivw54131s99kblah7n0flccb9h6qfiz55ifs2cwjwxxmrs9xi1n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -282432,8 +279304,6 @@ self: {
];
description = "YesQL-style SQL database abstraction (core)";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yeshql-hdbc" = callPackage
@@ -282481,30 +279351,6 @@ self: {
broken = true;
}) {};
- "yesod_1_4_5" = callPackage
- ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring
- , conduit, conduit-extra, data-default-class, directory
- , fast-logger, monad-control, monad-logger, resourcet, semigroups
- , shakespeare, streaming-commons, template-haskell, text
- , transformers, unix, unordered-containers, wai, wai-extra
- , wai-logger, warp, yaml, yesod-core, yesod-form, yesod-persistent
- }:
- mkDerivation {
- pname = "yesod";
- version = "1.4.5";
- sha256 = "1sg66nq8yaas2m5nqsdrxricvcizd1ik02zqk60sxh3wna08fz16";
- libraryHaskellDepends = [
- aeson base blaze-html blaze-markup bytestring conduit conduit-extra
- data-default-class directory fast-logger monad-control monad-logger
- resourcet semigroups shakespeare streaming-commons template-haskell
- text transformers unix unordered-containers wai wai-extra
- wai-logger warp yaml yesod-core yesod-form yesod-persistent
- ];
- description = "Creation of type-safe, RESTful web applications";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit
, data-default-class, directory, fast-logger, file-embed
@@ -282617,8 +279463,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth";
- version = "1.6.10";
- sha256 = "0nfrq61dqifzbnqx8m62j1q6nmlj04mis864yg2k36mra9njap27";
+ version = "1.6.10.1";
+ sha256 = "12bnadmf3afbkni3k8gc1srv2makssy62zciygg4dh8q7rr2pw2s";
libraryHaskellDepends = [
aeson authenticate base base16-bytestring base64-bytestring binary
blaze-builder blaze-html blaze-markup bytestring conduit
@@ -282697,8 +279543,6 @@ self: {
testHaskellDepends = [ base hspec text yesod yesod-test ];
description = "Yesod Middleware for HTTP Basic Authentication";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yesod-auth-bcrypt" = callPackage
@@ -282775,8 +279619,6 @@ self: {
];
description = "Authentication backend for Yesod using Facebook";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yesod-auth-hashdb" = callPackage
@@ -282788,8 +279630,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth-hashdb";
- version = "1.7.1.2";
- sha256 = "10f6lgjjcwlg0vsi43xhgmi9d9r4ncfwsrwb6lfz1if9cq7gbmhv";
+ version = "1.7.1.5";
+ sha256 = "14isl9mwxarba14aqhidi82yci36jdws6af2jirv7z8mfnrwysbi";
libraryHaskellDepends = [
aeson base bytestring persistent text yesod-auth yesod-core
yesod-form yesod-persistent
@@ -282945,8 +279787,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth-oauth";
- version = "1.6.0.1";
- sha256 = "0b9sp2rbj8yd343whcgg1ph4ybfk136d0ln09q7z56xqxn4brl3s";
+ version = "1.6.0.2";
+ sha256 = "1rr21vclcvy4lrv6r3v6f6sslmwg49jr7jiad63snn81nz854da1";
libraryHaskellDepends = [
authenticate-oauth base bytestring text unliftio yesod-auth
yesod-core yesod-form
@@ -283162,51 +280004,6 @@ self: {
broken = true;
}) {};
- "yesod-core_1_4_37_3" = callPackage
- ({ mkDerivation, aeson, async, auto-update, base, blaze-builder
- , blaze-html, blaze-markup, byteable, bytestring, case-insensitive
- , cereal, clientsession, conduit, conduit-extra, containers, cookie
- , criterion, data-default, deepseq, deepseq-generics, directory
- , exceptions, fast-logger, hspec, hspec-expectations, http-types
- , HUnit, lifted-base, monad-control, monad-logger, mtl, mwc-random
- , network, old-locale, parsec, path-pieces, primitive, QuickCheck
- , random, resourcet, safe, semigroups, shakespeare
- , streaming-commons, template-haskell, text, time, transformers
- , transformers-base, unix-compat, unordered-containers, vector, wai
- , wai-extra, wai-logger, warp, word8
- }:
- mkDerivation {
- pname = "yesod-core";
- version = "1.4.37.3";
- sha256 = "1jw1302p5s9jy7xghxzg9j63pn6b1hp957n1808qyk1iz7yrfsg0";
- revision = "2";
- editedCabalFile = "0hgrp8i33zssjlvkbvlnrr5ppblvn1vzhxlax2m5qyjjg60cqjsp";
- libraryHaskellDepends = [
- aeson auto-update base blaze-builder blaze-html blaze-markup
- byteable bytestring case-insensitive cereal clientsession conduit
- conduit-extra containers cookie data-default deepseq
- deepseq-generics directory exceptions fast-logger http-types
- lifted-base monad-control monad-logger mtl mwc-random old-locale
- parsec path-pieces primitive random resourcet safe semigroups
- shakespeare template-haskell text time transformers
- transformers-base unix-compat unordered-containers vector wai
- wai-extra wai-logger warp word8
- ];
- testHaskellDepends = [
- async base blaze-builder bytestring clientsession conduit
- conduit-extra containers cookie hspec hspec-expectations http-types
- HUnit lifted-base mwc-random network path-pieces QuickCheck random
- resourcet shakespeare streaming-commons template-haskell text
- transformers wai wai-extra
- ];
- benchmarkHaskellDepends = [
- base blaze-html bytestring criterion shakespeare text transformers
- ];
- description = "Creation of type-safe, RESTful web applications";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod-core" = callPackage
({ mkDerivation, aeson, async, auto-update, base, blaze-html
, blaze-markup, bytestring, case-insensitive, cereal, clientsession
@@ -283220,8 +280017,8 @@ self: {
}:
mkDerivation {
pname = "yesod-core";
- version = "1.6.18.4";
- sha256 = "1i69k0782prgf3wzi714fx0g3jsd654kncn62c7sijsbs0zc6h5h";
+ version = "1.6.18.7";
+ sha256 = "0rf30h5akdjyja0xld2cg0zldvbzcqcrmg2kp4gajh1qjzzcf69g";
libraryHaskellDepends = [
aeson auto-update base blaze-html blaze-markup bytestring
case-insensitive cereal clientsession conduit conduit-extra
@@ -283388,15 +280185,14 @@ self: {
"yesod-eventsource" = callPackage
({ mkDerivation, base, blaze-builder, conduit, transformers, wai
- , wai-eventsource, wai-extra, yesod-core
+ , wai-extra, yesod-core
}:
mkDerivation {
pname = "yesod-eventsource";
- version = "1.6.0";
- sha256 = "12s11q6zga37xyynll7b30gpv02k7jmmzfassshci02y9niyrkkg";
+ version = "1.6.0.1";
+ sha256 = "0h8gyvlqvp6zm6kfmiwa0z7ic2377f0vi43fgcn5mlssv890z8gh";
libraryHaskellDepends = [
- base blaze-builder conduit transformers wai wai-eventsource
- wai-extra yesod-core
+ base blaze-builder conduit transformers wai wai-extra yesod-core
];
description = "Server-sent events support for Yesod apps";
license = stdenv.lib.licenses.mit;
@@ -283483,8 +280279,6 @@ self: {
];
description = "Useful glue functions between the fb library and Yesod";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yesod-filter" = callPackage
@@ -283506,30 +280300,8 @@ self: {
];
description = "Automatic filter generator for Yesod";
license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "yesod-form_1_4_16" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html
- , blaze-markup, byteable, bytestring, containers, data-default
- , email-validate, hspec, network-uri, persistent, resourcet
- , semigroups, shakespeare, template-haskell, text, time
- , transformers, wai, xss-sanitize, yesod-core, yesod-persistent
- }:
- mkDerivation {
- pname = "yesod-form";
- version = "1.4.16";
- sha256 = "0lij3m5vn8nvh6y88r1dhk03xmmjwmjzazm307nc2wvc5fmx9p2j";
- libraryHaskellDepends = [
- aeson attoparsec base blaze-builder blaze-html blaze-markup
- byteable bytestring containers data-default email-validate
- network-uri persistent resourcet semigroups shakespeare
- template-haskell text time transformers wai xss-sanitize yesod-core
- yesod-persistent
- ];
- testHaskellDepends = [ base hspec text time ];
- description = "Form handling support for Yesod Web Framework";
- license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yesod-form" = callPackage
@@ -283828,6 +280600,8 @@ self: {
];
description = "Simple display of media types, served by yesod";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yesod-newsfeed" = callPackage
@@ -283941,28 +280715,6 @@ self: {
broken = true;
}) {};
- "yesod-persistent_1_4_3" = callPackage
- ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent
- , persistent-sqlite, persistent-template, resource-pool, resourcet
- , text, transformers, wai-extra, yesod-core
- }:
- mkDerivation {
- pname = "yesod-persistent";
- version = "1.4.3";
- sha256 = "0kiksw46c8ww9yiwl28pkrppx8d6fhsasr0hvmsliqbrp16likj8";
- libraryHaskellDepends = [
- base blaze-builder conduit persistent persistent-template
- resource-pool resourcet transformers yesod-core
- ];
- testHaskellDepends = [
- base blaze-builder conduit hspec persistent persistent-sqlite text
- wai-extra yesod-core
- ];
- description = "Some helpers for using Persistent from Yesod";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod-persistent" = callPackage
({ mkDerivation, base, blaze-builder, conduit, hspec, persistent
, persistent-sqlite, persistent-template, resource-pool, resourcet
@@ -283970,8 +280722,8 @@ self: {
}:
mkDerivation {
pname = "yesod-persistent";
- version = "1.6.0.4";
- sha256 = "1gsiw2zx6z7za7a164h0fxfggkrdqz6fn0qyb2zn9qr7r2jbg1c0";
+ version = "1.6.0.5";
+ sha256 = "0chvpzhfj0l1lacwslizhawsc9ns307q0wc6mcalz6gv7cm7mfi3";
libraryHaskellDepends = [
base blaze-builder conduit persistent persistent-template
resource-pool resourcet transformers yesod-core
@@ -284386,41 +281138,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "yesod-static_1_5_3_1" = callPackage
- ({ mkDerivation, async, attoparsec, base, base64-bytestring
- , blaze-builder, byteable, bytestring, conduit, conduit-extra
- , containers, cryptonite, cryptonite-conduit, css-text
- , data-default, directory, exceptions, file-embed, filepath
- , hashable, hjsmin, hspec, http-types, HUnit, memory, mime-types
- , old-time, process, resourcet, template-haskell, text
- , transformers, unix-compat, unordered-containers, wai
- , wai-app-static, wai-extra, yesod-core, yesod-test
- }:
- mkDerivation {
- pname = "yesod-static";
- version = "1.5.3.1";
- sha256 = "0drrzg59k0jmbxdf2d7mlk0nr0nvdd8h164638nizjy8713ghjsl";
- libraryHaskellDepends = [
- async attoparsec base base64-bytestring blaze-builder byteable
- bytestring conduit conduit-extra containers cryptonite
- cryptonite-conduit css-text data-default directory exceptions
- file-embed filepath hashable hjsmin http-types memory mime-types
- old-time process resourcet template-haskell text transformers
- unix-compat unordered-containers wai wai-app-static yesod-core
- ];
- testHaskellDepends = [
- async base base64-bytestring byteable bytestring conduit
- conduit-extra containers cryptonite cryptonite-conduit data-default
- directory exceptions file-embed filepath hjsmin hspec http-types
- HUnit memory mime-types old-time process resourcet template-haskell
- text transformers unix-compat unordered-containers wai
- wai-app-static wai-extra yesod-core yesod-test
- ];
- description = "Static file serving subsite for Yesod Web Framework";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod-static" = callPackage
({ mkDerivation, async, attoparsec, base, base64-bytestring
, blaze-builder, bytestring, conduit, containers, cryptonite
@@ -284525,52 +281242,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "yesod-test_1_5_9_1" = callPackage
- ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
- , blaze-markup, bytestring, case-insensitive, containers, cookie
- , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base
- , monad-control, network, persistent, pretty-show, text, time
- , transformers, wai, wai-extra, xml-conduit, xml-types, yesod-core
- , yesod-form
- }:
- mkDerivation {
- pname = "yesod-test";
- version = "1.5.9.1";
- sha256 = "05l5n28azbh6r1vsi7xvz1h19if5zrwn1b3jsr2913axfs3d9r3y";
- revision = "1";
- editedCabalFile = "1s3rfrk122ag4j0jzmym8nj6iql5jxv6ilsf0671f63824x3kgas";
- libraryHaskellDepends = [
- attoparsec base blaze-builder blaze-html blaze-markup bytestring
- case-insensitive containers cookie hspec-core html-conduit
- http-types HUnit monad-control network persistent pretty-show text
- time transformers wai wai-extra xml-conduit xml-types yesod-core
- ];
- testHaskellDepends = [
- base bytestring containers hspec html-conduit http-types HUnit
- lifted-base text wai xml-conduit yesod-core yesod-form
- ];
- description = "integration testing for WAI/Yesod Applications";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod-test" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html
, bytestring, case-insensitive, conduit, containers, cookie, hspec
, hspec-core, html-conduit, http-types, HUnit, memory, network
- , pretty-show, semigroups, text, time, transformers, unliftio
- , unliftio-core, wai, wai-extra, xml-conduit, xml-types, yesod-core
- , yesod-form
+ , pretty-show, text, time, transformers, unliftio, unliftio-core
+ , wai, wai-extra, xml-conduit, xml-types, yesod-core, yesod-form
}:
mkDerivation {
pname = "yesod-test";
- version = "1.6.10";
- sha256 = "0vw6yg5b22a6flbl822z23k0l23as5mmxjcdnj2zgjjv5i713yfx";
+ version = "1.6.11";
+ sha256 = "1h3bggs5z5ixriy8agj9f2ms5vfcbp7a3bwr3rpfkfrckwypj6hp";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder blaze-html bytestring
case-insensitive conduit containers cookie hspec-core html-conduit
- http-types HUnit memory network pretty-show semigroups text time
- transformers wai wai-extra xml-conduit xml-types yesod-core
+ http-types HUnit memory network pretty-show text time transformers
+ wai wai-extra xml-conduit xml-types yesod-core
];
testHaskellDepends = [
base bytestring containers cookie hspec html-conduit http-types
@@ -284757,8 +281444,6 @@ self: {
];
description = "Yet Another Logger";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"yggdrasil" = callPackage
@@ -284808,6 +281493,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Calculation of YH sequence system";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yi" = callPackage
@@ -284818,8 +281505,8 @@ self: {
}:
mkDerivation {
pname = "yi";
- version = "0.18.0";
- sha256 = "0phfsirbl22av19622m1zh45khgyypbpvd8mqhcjf2zjwniyqv7y";
+ version = "0.19.0";
+ sha256 = "1m383r5gx3r9l0mh88gcv3rjnr1ig9rivwg2qz963xqjyhr8y2ni";
configureFlags = [ "-fpango" "-fvty" ];
isLibrary = false;
isExecutable = true;
@@ -284866,8 +281553,8 @@ self: {
}:
mkDerivation {
pname = "yi-core";
- version = "0.18.0";
- sha256 = "1rgi1zzdm6kpji1v4kfm7d7qwhwdqsps13h2l1k5r4v4ky7pgppw";
+ version = "0.19.2";
+ sha256 = "1ipmycwf2fqk701x0d32bv03aviv7z57m0knpc3np5cvss9mjzvr";
libraryHaskellDepends = [
array attoparsec base binary bytestring containers data-default
directory dlist dynamic-state exceptions filepath hashable ListLike
@@ -284892,8 +281579,8 @@ self: {
}:
mkDerivation {
pname = "yi-dynamic-configuration";
- version = "0.18.0";
- sha256 = "0b38apg4c4vkp1njgai446q1gqx8514fj4lh1pprck99m3xvqlck";
+ version = "0.19.1";
+ sha256 = "17y8wpg128c90274fik7bc4x0vw2p7762fgiaydlr0vpz2sgwcis";
libraryHaskellDepends = [
base data-default dyre microlens-platform mtl text
transformers-base yi-core yi-rope
@@ -284924,8 +281611,8 @@ self: {
}:
mkDerivation {
pname = "yi-frontend-pango";
- version = "0.18.0";
- sha256 = "1qxs8lnsihslgiswy0aw5b98qyc5q8pzs3ib3kfsm8m7b3crjc62";
+ version = "0.19.1";
+ sha256 = "1ijvgxfbwnfpij3qajsci8hllb8n1p3iwd2n1wcp029kwpjhgzk9";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers filepath glib gtk microlens-platform mtl
@@ -284945,8 +281632,8 @@ self: {
}:
mkDerivation {
pname = "yi-frontend-vty";
- version = "0.18.0";
- sha256 = "1x762qbygr75rlkyln329agx0ppjcylgcvfsmmybg8avxq3c712q";
+ version = "0.19.0";
+ sha256 = "1vdpfqmvig16jissmra1p9zc42fs4kf2bxspy23bf8mihfr99ays";
libraryHaskellDepends = [
base containers data-default dlist microlens-platform pointedlist
stm text vty yi-core yi-language yi-rope
@@ -284964,8 +281651,8 @@ self: {
}:
mkDerivation {
pname = "yi-fuzzy-open";
- version = "0.18.0";
- sha256 = "17g6902dz55iw4kjy6bc5rqv4g6i5q5ffxkwplxmxjc66pyqv2q4";
+ version = "0.19.0";
+ sha256 = "14wfw3l167j7ld21cdjrnm3865h91vlcsgswxin5phd5m93bkzdg";
libraryHaskellDepends = [
base binary containers data-default directory filepath mtl
pointedlist text transformers-base vector yi-core yi-language
@@ -284994,8 +281681,8 @@ self: {
}:
mkDerivation {
pname = "yi-ireader";
- version = "0.18.0";
- sha256 = "0vxkg98fk1sr9778946yj6lg96fgn6ww7zqh7fhm7ld1fm3g2zrw";
+ version = "0.19.0";
+ sha256 = "1wax9mnlp8sd032nbpli6zfxz8cbrx01aj1mmm7g178dxsbj8q79";
libraryHaskellDepends = [
base binary bytestring containers data-default microlens-platform
text yi-core yi-language yi-rope
@@ -285012,8 +281699,8 @@ self: {
}:
mkDerivation {
pname = "yi-keymap-cua";
- version = "0.18.0";
- sha256 = "1j9wsjn572gysagf2h6xfir3chbha7vjmsiqljlnbvzhk0dc3n9f";
+ version = "0.19.0";
+ sha256 = "18qimrz5iffh2x6fv09fhg9n0zg1hliyvwlvpa7008msk9c5nc0r";
libraryHaskellDepends = [
base microlens-platform text yi-core yi-keymap-emacs yi-rope
];
@@ -285030,8 +281717,8 @@ self: {
}:
mkDerivation {
pname = "yi-keymap-emacs";
- version = "0.18.0";
- sha256 = "0r8bqbsfzkpc7nlxsk4k20shc0393f3f7czf47i5ilajh8da7cbg";
+ version = "0.19.0";
+ sha256 = "1pkdlkhs6am60whclfasd4axda8hlxzh7q38crmylcb89q90am1l";
libraryHaskellDepends = [
base containers filepath Hclip microlens-platform mtl oo-prototypes
text transformers-base yi-core yi-language yi-misc-modes yi-rope
@@ -285051,8 +281738,8 @@ self: {
}:
mkDerivation {
pname = "yi-keymap-vim";
- version = "0.18.0";
- sha256 = "1z9wq3yjv6nrf45q2711ywycc6vpmb4zzylz3mrhpsscglws78ig";
+ version = "0.19.0";
+ sha256 = "046552bqfd3wycx73zksffcnbakfl7xnfz1s2q9z5affpzi5iyrv";
libraryHaskellDepends = [
attoparsec base binary containers data-default directory filepath
Hclip microlens-platform mtl oo-prototypes pointedlist safe text
@@ -285079,8 +281766,8 @@ self: {
}:
mkDerivation {
pname = "yi-language";
- version = "0.18.0";
- sha256 = "0w647h1v1mjhqxnq9a7zwh42ry8dfd8franr9p8k8662q3lalvp8";
+ version = "0.19.0";
+ sha256 = "18r875casrk66ck8q9p1r0c4cfjjgyd5l3gxldr95rqdjci3c09z";
libraryHaskellDepends = [
array base binary containers data-default hashable
microlens-platform oo-prototypes pointedlist regex-base regex-tdfa
@@ -285105,8 +281792,8 @@ self: {
}:
mkDerivation {
pname = "yi-misc-modes";
- version = "0.18.0";
- sha256 = "1b7x5595chmyx614z86gplb5pxza2ipifrgzpssgxrwwbf0730cb";
+ version = "0.19.0";
+ sha256 = "1g65mfafrq5dzcrcapisvyvs5frwjmy50zfkxrv0wfsdcfapkn7s";
libraryHaskellDepends = [
array base binary data-default filepath microlens-platform text
yi-core yi-language yi-rope
@@ -285124,8 +281811,8 @@ self: {
}:
mkDerivation {
pname = "yi-mode-haskell";
- version = "0.18.0";
- sha256 = "1k71vw0chbgjl2iy4jif12mbq4850f7zffsjbi4gvsjvwvyxmxs6";
+ version = "0.19.0";
+ sha256 = "1hnwxqzaqg7zyfr7rd3l0la5hc8f4px4d0y78kq3xpy4pzx3yr8y";
libraryHaskellDepends = [
array base binary data-default filepath microlens-platform text
yi-core yi-language yi-rope
@@ -285144,8 +281831,8 @@ self: {
}:
mkDerivation {
pname = "yi-mode-javascript";
- version = "0.18.0";
- sha256 = "12r0knyh0kys8xw028niah9dvcjhzfad9hpln4hgmj83483gpykv";
+ version = "0.19.0";
+ sha256 = "1zgx36kagalna8lk60i0djn6mvl6ki55x4kc7mzq2mgzcs292zq1";
libraryHaskellDepends = [
array base binary data-default dlist filepath microlens-platform
mtl text yi-core yi-language yi-rope
@@ -285196,8 +281883,8 @@ self: {
}:
mkDerivation {
pname = "yi-snippet";
- version = "0.18.0";
- sha256 = "1arf5pirl2pbdigsfaac7h473bjivhgkpfqbs8j35kk8p34qjl8s";
+ version = "0.19.0";
+ sha256 = "1yw113vws935124zrnndf8xb1442q3l4pg1yk3sgphdck7cb0q2c";
libraryHaskellDepends = [
base binary containers data-default free microlens-platform mtl
text vector yi-core yi-rope
@@ -285400,6 +282087,8 @@ self: {
libraryHaskellDepends = [ base free mtl ];
description = "A truly tiny monadic parsing library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"yoda" = callPackage
@@ -285818,6 +282507,8 @@ self: {
libraryHaskellDepends = [ base papillon ];
description = "lojban parser (zasni gerna)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"zbar" = callPackage
@@ -285969,18 +282660,20 @@ self: {
"zeolite-lang" = callPackage
({ mkDerivation, base, containers, directory, filepath, hashable
- , mtl, parsec, regex-tdfa, transformers, unix
+ , mtl, parsec, regex-tdfa, time, transformers, unix
}:
mkDerivation {
pname = "zeolite-lang";
- version = "0.8.0.0";
- sha256 = "1ahr69w65hd70jc0jrc3dfz1gnjqxlg9w24djzm6826wskg31fa9";
+ version = "0.9.0.0";
+ sha256 = "0gcjjxavsc763a218rswzk7zrx917qg5sid7gpy81yw054kfp6ws";
+ revision = "1";
+ editedCabalFile = "0c76xxaxqwsh0ybvf5r6wza9gq7y7hiqm75pazmrhkzvm48q1dl8";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers directory filepath hashable mtl parsec regex-tdfa
- transformers unix
+ time transformers unix
];
executableHaskellDepends = [
base containers directory filepath unix
@@ -286473,49 +283166,20 @@ self: {
}:
mkDerivation {
pname = "zio";
- version = "0.1.0.0";
- sha256 = "001bkysr4n5azly7cmn7xbgw0bg00ib4yg83klz0k0b5217wg982";
+ version = "0.1.0.2";
+ sha256 = "15ka58l6xv3v4x5rcam75gq37mfcxjngm0frz9k0rmzqyf07l06k";
libraryHaskellDepends = [
base mtl transformers unexceptionalio unexceptionalio-trans
];
testHaskellDepends = [
base mtl transformers unexceptionalio unexceptionalio-trans
];
+ description = "App-centric Monad-transformer based on Scala ZIO (UIO + ReaderT + ExceptT)";
license = stdenv.lib.licenses.mpl20;
}) {};
"zip" = callPackage
({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive
- , cereal, conduit, conduit-extra, containers, digest, directory
- , dlist, exceptions, filepath, hspec, monad-control, mtl
- , QuickCheck, resourcet, temporary, text, time, transformers
- , transformers-base
- }:
- mkDerivation {
- pname = "zip";
- version = "1.5.0";
- sha256 = "00lqf0bw6abxdj9rs658blbhabzr1fd1w9dh0qflyxqkd8fqj7h5";
- revision = "1";
- editedCabalFile = "08r12h84zp55lfqh53srmivf4xzyq2yyyiw12ja73ipnb0y2ag7i";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring bzlib-conduit case-insensitive cereal conduit
- conduit-extra containers digest directory dlist exceptions filepath
- monad-control mtl resourcet text time transformers
- transformers-base
- ];
- executableHaskellDepends = [ base filepath ];
- testHaskellDepends = [
- base bytestring conduit containers directory dlist exceptions
- filepath hspec QuickCheck temporary text time transformers
- ];
- description = "Operations on zip archives";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "zip_1_6_0" = callPackage
- ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive
, cereal, conduit, conduit-extra, conduit-zstd, containers, digest
, directory, dlist, exceptions, filepath, hspec, monad-control, mtl
, QuickCheck, resourcet, temporary, text, time, transformers
@@ -286540,7 +283204,6 @@ self: {
];
description = "Operations on zip archives";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zip-archive" = callPackage
@@ -287101,6 +283764,8 @@ self: {
];
description = "Zero-Suppressed and Reduced Decision Diagrams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
}) {};
"zsh-battery" = callPackage
@@ -287172,8 +283837,6 @@ self: {
];
description = "Multi-file, colored, filtered log tailer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
}) {};
"ztar" = callPackage
@@ -287271,43 +283934,57 @@ self: {
}) {};
"zxcvbn-hs" = callPackage
- ({ mkDerivation, attoparsec, base, base64-bytestring, binary
+ ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary
, binary-instances, containers, criterion, fgl, hedgehog, lens
, math-functions, tasty, tasty-hedgehog, tasty-hunit, text, time
, unordered-containers, vector, zlib
}:
mkDerivation {
pname = "zxcvbn-hs";
- version = "0.2.1.0";
- sha256 = "1gvarz005nlz9q5bkdwvplvsmwwchhx0arpq1grmh39r706lh4d8";
- revision = "2";
- editedCabalFile = "05l4pni4264rcivixzakjkph5qr4jr8qb4jbfj2nw106n1zhjaka";
+ version = "0.3.0.0";
+ sha256 = "13rz0bjvcj9hrxnxqbw7bl6529yz4aqawq6abssj4nmxbmgrj7xf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base base64-bytestring binary binary-instances
+ aeson attoparsec base base64-bytestring binary binary-instances
containers fgl lens math-functions text time unordered-containers
vector zlib
];
executableHaskellDepends = [
- attoparsec base base64-bytestring binary binary-instances
+ aeson attoparsec base base64-bytestring binary binary-instances
containers fgl lens math-functions text time unordered-containers
vector zlib
];
testHaskellDepends = [
- attoparsec base base64-bytestring binary binary-instances
+ aeson attoparsec base base64-bytestring binary binary-instances
containers fgl hedgehog lens math-functions tasty tasty-hedgehog
tasty-hunit text time unordered-containers vector zlib
];
benchmarkHaskellDepends = [
- attoparsec base base64-bytestring binary binary-instances
+ aeson attoparsec base base64-bytestring binary binary-instances
containers criterion fgl lens math-functions text time
unordered-containers vector zlib
];
description = "Password strength estimation based on zxcvbn";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- broken = true;
+ }) {};
+
+ "zydiskell" = callPackage
+ ({ mkDerivation, base, bytestring, containers, fixed-vector
+ , storable-record
+ }:
+ mkDerivation {
+ pname = "zydiskell";
+ version = "0.2.0.0";
+ sha256 = "0pbwhvl6mff5k0rvpjijqpncqbm5g53ij1bc3ckq66q2v5ikswk8";
+ libraryHaskellDepends = [
+ base bytestring containers fixed-vector storable-record
+ ];
+ testHaskellDepends = [
+ base bytestring containers fixed-vector storable-record
+ ];
+ description = "Haskell language binding for the Zydis library, a x86/x86-64 disassembler";
+ license = stdenv.lib.licenses.gpl3;
}) {};
}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/lib.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/lib.nix
index 58d50592ac42..6bcc563164eb 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/lib.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/lib.nix
@@ -86,11 +86,11 @@ rec {
future.
Instead of jailbreaking, you can patch the cabal file.
-
+
Note that jailbreaking at this time, doesn't lift bounds on
- conditional branches.
+ conditional branches.
https://github.com/peti/jailbreak-cabal/issues/7 has further details.
-
+
*/
doJailbreak = drv: overrideCabal drv (drv: { jailbreak = true; });
@@ -156,6 +156,9 @@ rec {
addBuildDepend = drv: x: addBuildDepends drv [x];
addBuildDepends = drv: xs: overrideCabal drv (drv: { buildDepends = (drv.buildDepends or []) ++ xs; });
+ addTestToolDepend = drv: x: addTestToolDepends drv [x];
+ addTestToolDepends = drv: xs: overrideCabal drv (drv: { testToolDepends = (drv.testToolDepends or []) ++ xs; });
+
addPkgconfigDepend = drv: x: addPkgconfigDepends drv [x];
addPkgconfigDepends = drv: xs: overrideCabal drv (drv: { pkgconfigDepends = (drv.pkgconfigDepends or []) ++ xs; });
@@ -232,6 +235,31 @@ rec {
fixupPhase = ":";
});
+ /* Create a documentation tarball suitable for uploading to Hackage instead
+ of building the package.
+ */
+ documentationTarball = pkg:
+ pkgs.lib.overrideDerivation pkg (drv: {
+ name = "${drv.name}-docs";
+ # Like sdistTarball, disable the "doc" output here.
+ outputs = [ "out" ];
+ buildPhase = ''
+ runHook preHaddock
+ ./Setup haddock --for-hackage
+ runHook postHaddock
+ '';
+ haddockPhase = ":";
+ checkPhase = ":";
+ installPhase = ''
+ runHook preInstall
+ mkdir -p "$out"
+ tar --format=ustar \
+ -czf "$out/${drv.name}-docs.tar.gz" \
+ -C dist/doc/html "${drv.name}-docs"
+ runHook postInstall
+ '';
+ });
+
/* Use the gold linker. It is a linker for ELF that is designed
"to run as fast as possible on modern systems"
*/
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
index 1418cfef0574..4ae3f0b2427f 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/make-package-set.nix
@@ -221,30 +221,56 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# , overrides : Defaulted (HaskellPackageOverrideSet)
# , modifier : Defaulted
# , returnShellEnv : Defaulted
+ # , withHoogle : Defaulted
+ # , cabal2nixOptions : Defaulted
# } -> NixShellAwareDerivation
+ #
# Given a path to a haskell package directory, an optional package name
# which defaults to the base name of the path, an optional set of source
# overrides as appropriate for the 'packageSourceOverrides' function, an
# optional set of arbitrary overrides, and an optional haskell package
# modifier, return a derivation appropriate for nix-build or nix-shell to
# build that package.
+ #
+ # If 'returnShellEnv' is true this returns a derivation which will give you
+ # an environment suitable for developing the listed packages with an
+ # incremental tool like cabal-install.
+ #
+ # If 'withHoogle' is true (the default if a shell environment is requested)
+ # then 'ghcWithHoogle' is used to generate the derivation (instead of
+ # 'ghcWithPackages'), see the documentation there for more information.
+ #
+ # 'cabal2nixOptions' can contain extra command line arguments to pass to
+ # 'cabal2nix' when generating the package derivation, for example setting
+ # a cabal flag with '--flag=myflag'.
developPackage =
{ root
, name ? builtins.baseNameOf root
, source-overrides ? {}
, overrides ? self: super: {}
, modifier ? drv: drv
- , returnShellEnv ? pkgs.lib.inNixShell }:
+ , returnShellEnv ? pkgs.lib.inNixShell
+ , withHoogle ? returnShellEnv
+ , cabal2nixOptions ? "" }:
let drv =
(extensible-self.extend
(pkgs.lib.composeExtensions
(self.packageSourceOverrides source-overrides)
overrides))
- .callCabal2nix name root {};
- in if returnShellEnv then (modifier drv).env else modifier drv;
+ .callCabal2nixWithOptions name root cabal2nixOptions {};
+ in if returnShellEnv
+ then (modifier drv).envFunc {inherit withHoogle;}
+ else modifier drv;
ghcWithPackages = selectFrom: withPackages (selectFrom self);
+ # Put 'hoogle' into the derivation's PATH with a database containing all
+ # the package's dependencies; run 'hoogle server --local' in a shell to
+ # host a search engine for the dependencies.
+ #
+ # To reload the Hoogle server automatically on .cabal file changes try
+ # this:
+ # echo *.cabal | entr -r -- nix-shell --run 'hoogle server --local'
ghcWithHoogle = selectFrom:
let
packages = selectFrom self;
@@ -258,6 +284,7 @@ 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
#
@@ -274,7 +301,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# (import ./.).shellFor {
# packages = p: [p.frontend p.backend p.common];
# withHoogle = true;
- # buildInputs = [ pkgs.python ];
+ # buildInputs = [ pkgs.python pkgs.cabal-install ];
# }
#
# -- cabal.project
@@ -285,38 +312,150 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
#
# bash$ nix-shell --run "cabal new-build all"
# bash$ nix-shell --run "python"
- shellFor = { packages, withHoogle ? false, ... } @ args:
+ shellFor =
+ { # Packages to create this development shell for. These are usually
+ # your local packages.
+ packages
+ , # Whether or not to generate a Hoogle database for all the
+ # dependencies.
+ withHoogle ? false
+ , # Whether or not to include benchmark dependencies of your local
+ # packages. You should set this to true if you have benchmarks defined
+ # in your local packages that you want to be able to run with cabal benchmark
+ doBenchmark ? false
+ , ...
+ } @ args:
let
- 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;
-
- mkDerivationArgs = builtins.removeAttrs args [ "packages" "withHoogle" ];
- in ((combinedPackageFor packages).envFunc { inherit withHoogle; }).overrideAttrs (old: mkDerivationArgs // {
+ # A list of the packages we want to build a development shell for.
+ # This is a list of Haskell package derivations.
+ selected = packages self;
+
+ # This is a list of attribute sets, where each attribute set
+ # corresponds to the build inputs of one of the packages input to shellFor.
+ #
+ # Each attribute has keys like buildDepends, executableHaskellDepends,
+ # testPkgconfigDepends, etc. The values for the keys of the attribute
+ # set are lists of dependencies.
+ #
+ # Example:
+ # cabalDepsForSelected
+ # => [
+ # # This may be the attribute set corresponding to the `backend`
+ # # package in the example above.
+ # { buildDepends = [ gcc ... ];
+ # libraryHaskellDepends = [ lens conduit ... ];
+ # ...
+ # }
+ # # This may be the attribute set corresponding to the `common`
+ # # package in the example above.
+ # { testHaskellDepends = [ tasty hspec ... ];
+ # libraryHaskellDepends = [ lens aeson ];
+ # benchmarkHaskellDepends = [ criterion ... ];
+ # ...
+ # }
+ # ...
+ # ]
+ cabalDepsForSelected = map (p: p.getCabalDeps) selected;
+
+ # A predicate that takes a derivation as input, and tests whether it is
+ # the same as any of the `selected` packages.
+ #
+ # Returns true if the input derivation is not in the list of `selected`
+ # packages.
+ #
+ # isNotSelected :: Derivation -> Bool
+ #
+ # Example:
+ #
+ # isNotSelected common [ frontend backend common ]
+ # => false
+ #
+ # isNotSelected lens [ frontend backend common ]
+ # => true
+ isNotSelected = input: pkgs.lib.all (p: input.outPath or null != p.outPath) selected;
+
+ # A function that takes a list of list of derivations, filters out all
+ # the `selected` packages from each list, and concats the results.
+ #
+ # zipperCombinedPkgs :: [[Derivation]] -> [Derivation]
+ #
+ # Example:
+ # zipperCombinedPkgs [ [ lens conduit ] [ aeson frontend ] ]
+ # => [ lens conduit aeson ]
+ #
+ # Note: The reason this isn't just the function `pkgs.lib.concat` is
+ # that we need to be careful to remove dependencies that are in the
+ # `selected` packages.
+ #
+ # For instance, in the above example, if `common` is a dependency of
+ # `backend`, then zipperCombinedPkgs needs to be careful to filter out
+ # `common`, because cabal will end up ignoring that built version,
+ # assuming new-style commands.
+ zipperCombinedPkgs = vals:
+ pkgs.lib.concatMap
+ (drvList: pkgs.lib.filter isNotSelected drvList)
+ vals;
+
+ # Zip `cabalDepsForSelected` into a single attribute list, combining
+ # the derivations in all the individual attributes.
+ #
+ # Example:
+ # packageInputs
+ # => # Assuming the value of cabalDepsForSelected is the same as
+ # # the example in cabalDepsForSelected:
+ # { buildDepends = [ gcc ... ];
+ # libraryHaskellDepends = [ lens conduit aeson ... ];
+ # testHaskellDepends = [ tasty hspec ... ];
+ # benchmarkHaskellDepends = [ criterion ... ];
+ # ...
+ # }
+ #
+ # See the Note in `zipperCombinedPkgs` for what gets filtered out from
+ # each of these dependency lists.
+ packageInputs =
+ pkgs.lib.zipAttrsWith (_name: zipperCombinedPkgs) cabalDepsForSelected;
+
+ # A attribute set to pass to `haskellPackages.mkDerivation`.
+ #
+ # The important thing to note here is that all the fields from
+ # packageInputs are set correctly.
+ genericBuilderArgs = {
+ pname =
+ if pkgs.lib.length selected == 1
+ then (pkgs.lib.head selected).name
+ else "packages";
+ version = "0";
+ license = null;
+ }
+ // packageInputs
+ // pkgs.lib.optionalAttrs doBenchmark {
+ # `doBenchmark` needs to explicitly be set here because haskellPackages.mkDerivation defaults it to `false`. If the user wants benchmark dependencies included in their development shell, it has to be explicitly enabled here.
+ doBenchmark = true;
+ };
+
+ # This is a pseudo Haskell package derivation that contains all the
+ # dependencies for the packages in `selected`.
+ #
+ # This is a derivation created with `haskellPackages.mkDerivation`.
+ #
+ # pkgWithCombinedDeps :: HaskellDerivation
+ pkgWithCombinedDeps = self.mkDerivation genericBuilderArgs;
+
+ # The derivation returned from `envFunc` for `pkgWithCombinedDeps`.
+ #
+ # This is a derivation that can be run with `nix-shell`. It provides a
+ # GHC with a package database with all the dependencies of our
+ # `selected` packages.
+ #
+ # This is a derivation created with `stdenv.mkDerivation` (not
+ # `haskellPackages.mkDerivation`).
+ #
+ # pkgWithCombinedDepsDevDrv :: Derivation
+ pkgWithCombinedDepsDevDrv = pkgWithCombinedDeps.envFunc { inherit withHoogle; };
+
+ mkDerivationArgs = builtins.removeAttrs args [ "packages" "withHoogle" "doBenchmark" ];
+
+ in pkgWithCombinedDepsDevDrv.overrideAttrs (old: mkDerivationArgs // {
nativeBuildInputs = old.nativeBuildInputs ++ mkDerivationArgs.nativeBuildInputs or [];
buildInputs = old.buildInputs ++ mkDerivationArgs.buildInputs or [];
});
diff --git a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/non-hackage-packages.nix b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/non-hackage-packages.nix
index 52a2737ebb74..30f00cc6ea2c 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/non-hackage-packages.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/haskell-modules/non-hackage-packages.nix
@@ -7,9 +7,6 @@
# files.
self: super: {
- multi-ghc-travis = throw ("haskellPackages.multi-ghc-travis has been renamed"
- + " to haskell-ci, which is now on hackage");
-
dconf2nix = self.callPackage ../tools/haskell/dconf2nix/dconf2nix.nix { };
# https://github.com/channable/vaultenv/issues/1
@@ -22,8 +19,9 @@ self: super: {
# HLS and its fork of ghcide that it uses
# both are auto-generated by pkgs/development/tools/haskell/haskell-language-server/update.sh
haskell-language-server = self.callPackage ../tools/haskell/haskell-language-server { };
- hls-ghcide = self.callPackage ../tools/haskell/haskell-language-server/hls-ghcide.nix { };
hls-brittany = self.callPackage ../tools/haskell/haskell-language-server/hls-brittany.nix { };
+ hls-hlint-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-hlint-plugin.nix { };
+ hls-tactics-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-tactics-plugin.nix { };
nix-output-monitor = self.callPackage ../../tools/nix/nix-output-monitor { };