diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 17394ed5870b..3ef847be6d1f 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -11760,6 +11760,12 @@
githubId = 131856;
name = "Arnout Engelen";
};
+ raehik = {
+ email = "thefirstmuffinman@gmail.com";
+ github = "raehik";
+ githubId = 3764592;
+ name = "Ben Orchard";
+ };
rafael = {
name = "Rafael";
email = "pr9@tuta.io";
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
index ae41b9ee30b3..cf22e2dbb3f5 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
@@ -519,6 +519,17 @@
nixos/modules/profiles/minimal.nix profile.
+
+
+ The ghcWithPackages and
+ ghcWithHoogle wrappers will now also
+ symlink GHC’s and all included libraries’ documentation to
+ $out/share/doc for convenience. If
+ undesired, the old behavior can be restored by overriding the
+ builders with
+ { installDocumentation = false; }.
+
+
mastodon now supports connection to a
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index 82a069632fe0..1b031b716c84 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -130,6 +130,11 @@ In addition to numerous new and upgraded packages, this release has the followin
- The minimal ISO image now uses the `nixos/modules/profiles/minimal.nix` profile.
+- The `ghcWithPackages` and `ghcWithHoogle` wrappers will now also symlink GHC's
+ and all included libraries' documentation to `$out/share/doc` for convenience.
+ If undesired, the old behavior can be restored by overriding the builders with
+ `{ installDocumentation = false; }`.
+
- `mastodon` now supports connection to a remote `PostgreSQL` database.
- `services.peertube` now requires you to specify the secret file `secrets.secretsFile`. It can be generated by running `openssl rand -hex 32`.
diff --git a/pkgs/data/misc/hackage/pin.json b/pkgs/data/misc/hackage/pin.json
index 9e14413b745c..3cb903245f89 100644
--- a/pkgs/data/misc/hackage/pin.json
+++ b/pkgs/data/misc/hackage/pin.json
@@ -1,6 +1,6 @@
{
- "commit": "39a6ef760cb2f514e170dc40e7ec1f7699722e7d",
- "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/39a6ef760cb2f514e170dc40e7ec1f7699722e7d.tar.gz",
- "sha256": "1s9w4g4dar9blr3vvy9pf18qxcgyvrrdnc65jrkx75gr9dr3247w",
- "msg": "Update from Hackage at 2023-01-08T15:35:40Z"
+ "commit": "75d1bbbd68d9ae36d527666e2f140343323b02fa",
+ "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/75d1bbbd68d9ae36d527666e2f140343323b02fa.tar.gz",
+ "sha256": "018lz90f12bw8n8g4rbwfbnpmw6g3vblc12pd4qzq727h1d27p5l",
+ "msg": "Update from Hackage at 2023-01-12T12:18:29Z"
}
diff --git a/pkgs/development/compilers/ghc/9.2.4-binary.nix b/pkgs/development/compilers/ghc/9.2.4-binary.nix
index 4cd22a358e14..57e0db560a98 100644
--- a/pkgs/development/compilers/ghc/9.2.4-binary.nix
+++ b/pkgs/development/compilers/ghc/9.2.4-binary.nix
@@ -263,20 +263,6 @@ stdenv.mkDerivation rec {
lib.optionalString stdenv.isLinux ''
find . -type f -executable -exec patchelf \
--interpreter ${stdenv.cc.bintools.dynamicLinker} {} \;
- '' +
- # The hadrian install Makefile uses 'xxx' as a temporary placeholder in path
- # substitution. Which can break the build if the store path / prefix happens
- # to contain this string. This will be fixed with 9.2.3 bindists.
- # https://gitlab.haskell.org/ghc/ghc/-/issues/21402
- ''
- # Detect hadrian Makefile by checking for the target that has the problem
- if grep '^update_package_db' ghc-${version}*/Makefile > /dev/null; then
- echo Hadrian bindist, applying workaround for xxx path substitution.
- # based on https://gitlab.haskell.org/ghc/ghc/-/commit/dd5fecb0e2990b192d92f4dfd7519ecb33164fad.patch
- substituteInPlace ghc-${version}*/Makefile --replace 'xxx' '\0xxx\0'
- else
- echo Not a hadrian bindist, not applying xxx path workaround.
- fi
'';
# fix for `configure: error: Your linker is affected by binutils #16177`
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ec9b70f4a0ce..548110cafc11 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -200,9 +200,10 @@ self: super: {
# base bound
digit = doJailbreak super.digit;
- # matterhorn-50200.17.0 won't work with brick >= 0.71
+ # matterhorn-50200.17.0 won't work with brick >= 0.71, brick-skylighting >= 1.0
matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: {
brick = self.brick_0_70_1;
+ brick-skylighting = self.brick-skylighting_0_3;
}));
# 2020-06-05: HACK: does not pass own build suite - `dontCheck`
@@ -2328,4 +2329,8 @@ self: super: {
# posix-api has had broken tests since 2020 (until at least 2023-01-11)
# raehik has a fix pending: https://github.com/andrewthad/posix-api/pull/14
posix-api = dontCheck super.posix-api;
+
+ # bytestring <0.11.0, optparse-applicative <0.13.0
+ # https://github.com/kseo/sfnt2woff/issues/1
+ sfnt2woff = doJailbreak super.sfnt2woff;
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
index c77a86913f61..54994347dd93 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
@@ -90,10 +90,6 @@ self: super: {
# https://github.com/sjakobi/bsb-http-chunked/issues/38
bsb-http-chunked = dontCheck super.bsb-http-chunked;
- # need bytestring >= 0.11 which is only bundled with GHC >= 9.2
- regex-rure = doDistribute (markUnbroken super.regex-rure);
- jacinda = doDistribute super.jacinda;
-
# 2022-08-01: Tests are broken on ghc 9.2.4: https://github.com/wz1000/HieDb/issues/46
hiedb = dontCheck super.hiedb;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
index b65479335393..e927b040417c 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
@@ -104,6 +104,7 @@ in {
resolv = doJailbreak super.resolv;
singleton-bool = doJailbreak super.singleton-bool;
rope-utf16-splay = doDistribute self.rope-utf16-splay_0_4_0_0;
+ shake-cabal = doDistribute self.shake-cabal_0_2_2_3;
base-orphans = dontCheck super.base-orphans;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
similarity index 91%
rename from pkgs/development/haskell-modules/configuration-ghc-head.nix
rename to pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
index a2546c3dc5f4..b96526640bb0 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-head.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
@@ -53,9 +53,7 @@ self: super: {
time = null;
transformers = null;
unix = null;
- # GHC only bundles the xhtml library if haddock is enabled, check if this is
- # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463
- xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1;
+ xhtml = null;
# https://github.com/tibbe/unordered-containers/issues/214
unordered-containers = dontCheck super.unordered-containers;
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
index 22ce6fd8f9e8..e1ee3b669e66 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
@@ -224,6 +224,7 @@ broken-packages:
- ascii-string
- ascii-vector-avc
- asif
+ - asn1-ber-syntax
- asn1-codec
- asn1-data
- AspectAG
@@ -400,7 +401,6 @@ broken-packages:
- bindings-wlc
- bind-marshal
- binembed
- - binrep
- binsm
- bio
- BiobaseNewick
@@ -472,7 +472,6 @@ broken-packages:
- brick-dropdownmenu
- brick-filetree
- bricks-internal
- - brick-skylighting
- brillig
- brittany
- broadcast-chan-tests
@@ -512,6 +511,7 @@ broken-packages:
- byline
- by-other-names
- bytearray-parsing
+ - bytepatch
- bytestring-aeson-orphans
- bytestring-arbitrary
- bytestring-class
@@ -1486,6 +1486,7 @@ broken-packages:
- fenfire
- fernet
- FerryCore
+ - festival
- Feval
- fez-conf
- ffeed
@@ -3386,6 +3387,7 @@ broken-packages:
- monad-control-aligned
- monadcryptorandom
- monad-fork
+ - monadic-bang
- monadiccp
- monadic-recursion-schemes
- monad-introspect
@@ -4721,7 +4723,6 @@ broken-packages:
- SFML
- sfml-audio
- sfmt
- - sfnt2woff
- SG
- sgd
- SGplus
@@ -5824,7 +5825,6 @@ broken-packages:
- X11-rm
- X11-xdamage
- X11-xfixes
- - xcffib
- xchat-plugin
- xcp
- x-dsp
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
index 52ba243cb0d0..d61ab5200ceb 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
@@ -76,8 +76,6 @@ default-package-overrides:
- http-client-restricted < 0.0.5
# Downgrade hasql-dynamic-statements until hasql 1.6 is in Stackage
- hasql-dynamic-statements < 0.3.1.2
- # Its dependency brick >= 1.0 is not yet in stackage
- - brick-skylighting < 1.0
- rope-utf16-splay < 0.4.0.0
# hnix < 0.17 (unreleased) needs hnix-store-* 0.5.*
- hnix-store-core == 0.5.0.0 # 2022-06-17: Until hnix 0.17
@@ -86,6 +84,8 @@ default-package-overrides:
- reflex < 0.9.0.0
# reqired by haskell-language-server 1.9.0.0
- implicit-hie < 0.1.3
+ # latest version requires Cabal >= 3.8
+ - shake-cabal < 0.2.2.3
extra-packages:
- Cabal == 2.2.* # required for jailbreak-cabal etc.
@@ -101,6 +101,7 @@ extra-packages:
- basement < 0.0.15 # 2022-08-30: last version to support GHC < 8.10
- bower-json == 1.0.0.1 # 2022-05-21: Needed for spago 0.20.9
- brick == 0.70.* # 2022-08-13: needed by matterhorn-50200.17.0
+ - brick-skylighting < 1.0 # 2022-08-13: needed by matterhorn-50200.17.0 to match brick
- brick == 1.3 # 2022-11-03: needed by swarm 0.2.0.0
- brittany == 0.13.1.2 # 2022-09-20: needed for hls on ghc 8.8
- cabal-install-parsers < 0.5 # 2022-08-31: required by haskell-ci 0.14.3
@@ -310,6 +311,7 @@ package-maintainers:
- pandoc
- paths
- postgresql-simple
+ - purebred-email
- reflex-dom
- releaser
- replace-megaparsec
@@ -357,6 +359,10 @@ package-maintainers:
- persistent-sqlite
- persistent-template
- shakespeare
+ raehik:
+ - strongweak
+ - binrep
+ - bytepatch
roberth:
- arion-compose
- cabal-pkg-config-version-hook
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
index 99e542eed090..dff7577fedca 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
@@ -1,4 +1,4 @@
-# Stackage LTS 20.5
+# Stackage LTS 20.6
# This file is auto-generated by
# maintainers/scripts/haskell/update-stackage.sh
default-package-overrides:
@@ -87,15 +87,15 @@ default-package-overrides:
- arrow-extras ==0.1.0.1
- arrows ==0.4.4.2
- ascii ==1.2.4.0
- - ascii-case ==1.0.1.1
- - ascii-char ==1.0.0.16
+ - ascii-case ==1.0.1.2
+ - ascii-char ==1.0.0.17
- asciidiagram ==1.3.3.3
- - ascii-group ==1.0.0.14
- - ascii-numbers ==1.1.0.0
- - ascii-predicates ==1.0.1.0
+ - ascii-group ==1.0.0.15
+ - ascii-numbers ==1.1.0.2
+ - ascii-predicates ==1.0.1.2
- ascii-progress ==0.3.3.0
- - ascii-superset ==1.0.1.13
- - ascii-th ==1.0.0.11
+ - ascii-superset ==1.0.1.15
+ - ascii-th ==1.0.0.14
- asn1-encoding ==0.9.6
- asn1-parse ==0.9.5
- asn1-types ==0.3.4
@@ -126,11 +126,11 @@ default-package-overrides:
- autodocodec ==0.2.0.1
- autodocodec-openapi3 ==0.2.1.1
- autodocodec-schema ==0.1.0.2
- - autodocodec-yaml ==0.2.0.2
+ - autodocodec-yaml ==0.2.0.3
- autoexporter ==2.0.0.2
- auto-update ==0.1.6
- avro ==0.6.1.2
- - aws-cloudfront-signed-cookies ==0.2.0.11
+ - aws-cloudfront-signed-cookies ==0.2.0.12
- aws-xray-client ==0.1.0.2
- aws-xray-client-persistent ==0.1.0.5
- aws-xray-client-wai ==0.1.0.2
@@ -379,7 +379,7 @@ default-package-overrides:
- colour ==2.3.6
- columnar ==1.0.0.0
- combinatorial ==0.1.0.1
- - comfort-array ==0.5.1.1
+ - comfort-array ==0.5.2
- comfort-array-shape ==0.0
- comfort-fftw ==0.0
- comfort-graph ==0.0.3.2
@@ -445,7 +445,7 @@ default-package-overrides:
- control-monad-free ==0.6.2
- control-monad-omega ==0.3.2
- convertible ==1.1.1.1
- - cookie ==0.4.5
+ - cookie ==0.4.6
- copr-api ==0.1.0
- core-data ==0.3.8.0
- core-program ==0.6.1.1
@@ -505,7 +505,7 @@ default-package-overrides:
- cursor-gen ==0.4.0.0
- cyclotomic ==1.1.1
- czipwith ==1.0.1.4
- - d10 ==1.0.1.0
+ - d10 ==1.0.1.2
- data-accessor ==0.2.3
- data-accessor-mtl ==0.2.0.4
- data-accessor-transformers ==0.2.1.7
@@ -638,6 +638,7 @@ default-package-overrides:
- domain-optics ==0.1.0.3
- do-notation ==0.1.0.2
- dot ==0.3
+ - dotenv ==0.10.0.0
- dotgen ==0.4.3
- dotnet-timespan ==0.0.1.0
- double-conversion ==2.0.4.2
@@ -1023,7 +1024,7 @@ default-package-overrides:
- harp ==0.4.3.5
- HasBigDecimal ==0.2.0.0
- hasbolt ==0.1.6.2
- - hashable ==1.4.1.0
+ - hashable ==1.4.2.0
- hashids ==1.0.2.7
- hashmap ==1.3.3
- hashtables ==1.3.1
@@ -1032,7 +1033,7 @@ default-package-overrides:
- haskell-gi-base ==0.26.3
- haskell-gi-overloading ==1.0
- haskell-lexer ==1.1.1
- - HaskellNet ==0.6.0.1
+ - HaskellNet ==0.6.0.2
- HaskellNet-SSL ==0.3.4.4
- haskell-src ==1.0.4
- haskell-src-exts ==1.23.1
@@ -1056,7 +1057,7 @@ default-package-overrides:
- hasql-transaction ==1.0.1.2
- has-transformers ==0.1.0.4
- hasty-hamiltonian ==1.3.4
- - HaTeX ==3.22.3.1
+ - HaTeX ==3.22.3.2
- HaXml ==1.25.12
- haxr ==3000.11.4.1
- HCodecs ==0.5.2
@@ -1083,7 +1084,7 @@ default-package-overrides:
- hexml ==0.3.4
- hexml-lens ==0.2.2
- hexpat ==0.20.13
- - hex-text ==0.1.0.7
+ - hex-text ==0.1.0.8
- hformat ==0.3.3.1
- hfsevents ==0.1.6
- hgeometry ==0.14
@@ -1163,7 +1164,7 @@ default-package-overrides:
- hslua-module-doclayout ==1.0.4
- hslua-module-path ==1.0.3
- hslua-module-system ==1.0.2
- - hslua-module-text ==1.0.2
+ - hslua-module-text ==1.0.3.1
- hslua-module-version ==1.0.3
- hslua-objectorientation ==2.2.1
- hslua-packaging ==2.2.1
@@ -1530,7 +1531,7 @@ default-package-overrides:
- markdown-unlit ==0.5.1
- markov-chain ==0.0.3.4
- markov-chain-usage-model ==0.0.0
- - mason ==0.2.5
+ - mason ==0.2.6
- massiv ==1.0.3.0
- massiv-io ==1.0.0.1
- massiv-persist ==1.0.0.3
@@ -1555,7 +1556,7 @@ default-package-overrides:
- mega-sdist ==0.4.2.1
- membership ==0.0.1
- memcache ==0.3.0.1
- - memfd ==1.0.1.0
+ - memfd ==1.0.1.1
- memory ==0.17.0
- MemoTrie ==0.6.10
- mergeful ==0.3.0.0
@@ -1705,7 +1706,7 @@ default-package-overrides:
- netlib-carray ==0.1
- netlib-comfort-array ==0.0.0.2
- netlib-ffi ==0.1.1
- - net-mqtt ==0.8.2.4
+ - net-mqtt ==0.8.2.5
- net-mqtt-lens ==0.1.1.0
- netpbm ==1.0.4
- netrc ==0.2.0.0
@@ -1930,7 +1931,7 @@ default-package-overrides:
- pointedlist ==0.6.1
- pointless-fun ==1.1.0.8
- poll ==0.0.0.2
- - poly ==0.5.0.0
+ - poly ==0.5.1.0
- poly-arity ==0.1.0
- polynomials-bernstein ==1.1.2
- polyparse ==1.13
@@ -1952,7 +1953,7 @@ default-package-overrides:
- possibly ==1.0.0.0
- postgres-options ==0.2.0.0
- postgresql-binary ==0.13.1
- - postgresql-libpq ==0.9.4.3
+ - postgresql-libpq ==0.9.5.0
- postgresql-libpq-notify ==0.2.0.0
- postgresql-migration ==0.2.1.6
- postgresql-query ==3.10.0
@@ -2200,8 +2201,8 @@ default-package-overrides:
- safe-money ==0.9.1
- SafeSemaphore ==0.10.1
- salve ==2.0.0.1
- - sample-frame ==0.0.3
- - sample-frame-np ==0.0.4.1
+ - sample-frame ==0.0.4
+ - sample-frame-np ==0.0.5
- sampling ==0.3.5
- sandi ==0.5
- sandwich ==0.1.2.0
@@ -2483,7 +2484,7 @@ default-package-overrides:
- SVGFonts ==1.8.0.1
- svg-tree ==0.6.2.4
- swagger2 ==2.8.6
- - swish ==0.10.2.0
+ - swish ==0.10.3.0
- syb ==0.7.2.2
- syb-with-class ==0.6.1.14
- sydtest ==0.13.0.0
@@ -2507,7 +2508,7 @@ default-package-overrides:
- symbol ==0.2.4
- symengine ==0.1.2.0
- symmetry-operations-symbols ==0.0.2.1
- - synthesizer-core ==0.8.2.1
+ - synthesizer-core ==0.8.3
- sysinfo ==0.1.1
- system-argv0 ==0.1.1
- systemd ==2.3.0
@@ -2602,7 +2603,7 @@ default-package-overrides:
- text-rope ==0.2
- text-short ==0.1.5
- text-show ==3.10
- - text-show-instances ==3.9.3
+ - text-show-instances ==3.9.4
- text-zipper ==0.12
- tfp ==1.0.2
- tf-random ==0.5
@@ -2739,7 +2740,7 @@ default-package-overrides:
- unconstrained ==0.1.0.2
- unexceptionalio ==0.5.1
- unexceptionalio-trans ==0.5.1
- - unfork ==1.0.0.0
+ - unfork ==1.0.0.1
- unicode ==0.0.1.1
- unicode-collation ==0.1.3.3
- unicode-data ==0.3.1
@@ -2900,7 +2901,7 @@ default-package-overrides:
- Win32 ==2.12.0.1
- Win32-notify ==0.3.0.3
- windns ==0.1.0.1
- - witch ==1.1.5.0
+ - witch ==1.1.6.0
with-compiler: ghc-9.2.5
- withdependencies ==0.3.0
- witherable ==0.4.2
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
index 70a3c7525df4..136fe881b2b5 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
@@ -874,7 +874,6 @@ dont-distribute-packages:
- bv-sized
- bv-sized-lens
- bytable
- - bytepatch
- bytestring-builder-varword
- bytestring-read
- ca
@@ -1029,7 +1028,6 @@ dont-distribute-packages:
- comark
- comfort-array
- comfort-array-shape
- - comfort-array_0_5_2
- comfort-fftw
- comfort-glpk
- commsec
@@ -2731,7 +2729,6 @@ dont-distribute-packages:
- mathblog
- mathlink
- matsuri
- - matterhorn
- maxent
- maxent-learner-hw-gui
- maxsharing
@@ -3820,7 +3817,6 @@ dont-distribute-packages:
- synthesizer
- synthesizer-alsa
- synthesizer-core
- - synthesizer-core_0_8_3
- synthesizer-dimensional
- synthesizer-filter
- synthesizer-llvm
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 175ffe274db0..3fb5c3e88a3e 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -9999,26 +9999,6 @@ self: {
}) {};
"HaTeX" = callPackage
- ({ mkDerivation, base, bibtex, bytestring, containers, hashable
- , matrix, parsec, prettyprinter, QuickCheck, tasty
- , tasty-quickcheck, text, transformers
- }:
- mkDerivation {
- pname = "HaTeX";
- version = "3.22.3.1";
- sha256 = "0vgyixd8j3nzpy8s04cy3q7gj2gfblba2z0ppr58rdm8qgj16j5c";
- libraryHaskellDepends = [
- base bibtex bytestring containers hashable matrix parsec
- prettyprinter QuickCheck text transformers
- ];
- testHaskellDepends = [
- base parsec QuickCheck tasty tasty-quickcheck text
- ];
- description = "The Haskell LaTeX library";
- license = lib.licenses.bsd3;
- }) {};
-
- "HaTeX_3_22_3_2" = callPackage
({ mkDerivation, base, bibtex, bytestring, containers, hashable
, matrix, parsec, prettyprinter, QuickCheck, tasty
, tasty-quickcheck, text, transformers
@@ -10036,7 +10016,6 @@ self: {
];
description = "The Haskell LaTeX library";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"HaTeX-meta" = callPackage
@@ -10486,24 +10465,6 @@ self: {
}) {};
"HaskellNet" = callPackage
- ({ mkDerivation, array, base, base64, bytestring, cryptohash-md5
- , mime-mail, mtl, network, network-bsd, old-time, pretty, text
- }:
- mkDerivation {
- pname = "HaskellNet";
- version = "0.6.0.1";
- sha256 = "08rwi28q46md2d25l1h6s6hdqf8c2c47is5w5vyydbqx6pmfdc73";
- revision = "1";
- editedCabalFile = "0c5ixp7nl0h9nixr3g079wvjvs7j6hra2va5hnj93bsjbcm350k3";
- libraryHaskellDepends = [
- array base base64 bytestring cryptohash-md5 mime-mail mtl network
- network-bsd old-time pretty text
- ];
- description = "Client support for POP3, SMTP, and IMAP";
- license = lib.licenses.bsd3;
- }) {};
-
- "HaskellNet_0_6_0_2" = callPackage
({ mkDerivation, array, base, base64, bytestring, cryptohash-md5
, mime-mail, mtl, network, network-bsd, old-time, pretty, text
}:
@@ -10517,7 +10478,6 @@ self: {
];
description = "Client support for POP3, SMTP, and IMAP";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"HaskellNet-SSL" = callPackage
@@ -14276,8 +14236,8 @@ self: {
pname = "MonadRandom";
version = "0.5.3";
sha256 = "17qaw1gg42p9v6f87dj5vih7l88lddbyd8880ananj8avanls617";
- revision = "2";
- editedCabalFile = "1diy29if7w1c9ckc465mrrb52fm0zmd8zzym1h5ryh5a58qafwhr";
+ revision = "3";
+ editedCabalFile = "0317qhagxgn41ql1w7isnw4jqddnw394wglqahm3c569pbr3lmdv";
libraryHaskellDepends = [
base mtl primitive random transformers transformers-compat
];
@@ -14293,8 +14253,8 @@ self: {
pname = "MonadRandom";
version = "0.6";
sha256 = "0i6h9s2iqj71q06i9al3s2akmdjjx16h015qb81nhgjwi4q8cf69";
- revision = "1";
- editedCabalFile = "1swvjlsazh6wj1k8yj7ijarmw1sfmk9fv53h1hbfqcxva4gbhnkp";
+ revision = "2";
+ editedCabalFile = "0pkfprfr4386s2a67dk0kazn2x3m2nfr3w5r32y75rb2aa25dbmy";
libraryHaskellDepends = [
base mtl primitive random transformers transformers-compat
];
@@ -34234,8 +34194,8 @@ self: {
}:
mkDerivation {
pname = "arduino-copilot";
- version = "1.7.4";
- sha256 = "1yin826p57pmabv763l9igz6lk6c43f0y6cg2f5lqi6q1662x03w";
+ version = "1.7.5";
+ sha256 = "1rmxahc4fp62c00k9j4p3952wl2cqny9adlhd7l1h4z3wml7mwsv";
libraryHaskellDepends = [
base containers copilot copilot-c99 copilot-language directory
filepath mtl optparse-applicative sketch-frp-copilot temporary
@@ -35190,18 +35150,6 @@ self: {
}) {};
"ascii-case" = callPackage
- ({ mkDerivation, ascii-char, base, hashable, hspec }:
- mkDerivation {
- pname = "ascii-case";
- version = "1.0.1.1";
- sha256 = "1vsqjxh8mhzd960p30lbzakfa3acfqpk646a61jhn0j3yv7lq7p3";
- libraryHaskellDepends = [ ascii-char base hashable ];
- testHaskellDepends = [ ascii-char base hspec ];
- description = "ASCII letter case";
- license = lib.licenses.asl20;
- }) {};
-
- "ascii-case_1_0_1_2" = callPackage
({ mkDerivation, ascii-char, base, hashable, hspec }:
mkDerivation {
pname = "ascii-case";
@@ -35211,7 +35159,6 @@ self: {
testHaskellDepends = [ ascii-char base hspec ];
description = "ASCII letter case";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"ascii-caseless" = callPackage
@@ -35232,8 +35179,8 @@ self: {
({ mkDerivation, base, hashable, hspec }:
mkDerivation {
pname = "ascii-char";
- version = "1.0.0.16";
- sha256 = "06iig5p15ip0wpg330dq8kclq7g7j2xkrkk0dbl3z509d44mg049";
+ version = "1.0.0.17";
+ sha256 = "1562gkfvrcjygs9qpyswsk25d4m2pxblmmbb0hw8jsaml2jwsyss";
libraryHaskellDepends = [ base hashable ];
testHaskellDepends = [ base hspec ];
description = "A Char type representing an ASCII character";
@@ -35283,20 +35230,6 @@ self: {
}) {};
"ascii-group" = callPackage
- ({ mkDerivation, ascii-char, base, hashable, hedgehog }:
- mkDerivation {
- pname = "ascii-group";
- version = "1.0.0.14";
- sha256 = "0rk3lvs4b6d4cfzb5zc87f42wdmziprpfd4fww5r68ry3ccyn1ps";
- revision = "1";
- editedCabalFile = "0iwf48cq67qzgw4ih6532yxl03bpnzrhz68y0yfk87r1y3hsdxfx";
- libraryHaskellDepends = [ ascii-char base hashable ];
- testHaskellDepends = [ ascii-char base hedgehog ];
- description = "ASCII character groups";
- license = lib.licenses.asl20;
- }) {};
-
- "ascii-group_1_0_0_15" = callPackage
({ mkDerivation, ascii-char, base, hashable, hedgehog }:
mkDerivation {
pname = "ascii-group";
@@ -35306,7 +35239,6 @@ self: {
testHaskellDepends = [ ascii-char base hedgehog ];
description = "ASCII character groups";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"ascii-holidays" = callPackage
@@ -35326,27 +35258,6 @@ self: {
}) {};
"ascii-numbers" = callPackage
- ({ mkDerivation, ascii-case, ascii-char, ascii-superset, base
- , bytestring, hashable, hedgehog, invert, text
- }:
- mkDerivation {
- pname = "ascii-numbers";
- version = "1.1.0.0";
- sha256 = "041qyhgksqchj3x09fbirxba7s31aicaqnk8185g2l70zgxjz6iv";
- revision = "2";
- editedCabalFile = "0nw6iy42ql53gl4i74ilmdar5r4l2wbn5ihv1yqbqm7rm9bqda8p";
- libraryHaskellDepends = [
- ascii-case ascii-char ascii-superset base bytestring hashable text
- ];
- testHaskellDepends = [
- ascii-case ascii-char ascii-superset base bytestring hashable
- hedgehog invert text
- ];
- description = "ASCII representations of numbers";
- license = lib.licenses.asl20;
- }) {};
-
- "ascii-numbers_1_1_0_2" = callPackage
({ mkDerivation, ascii-case, ascii-char, ascii-superset, base
, bytestring, hashable, hedgehog, invert, text
}:
@@ -35365,24 +35276,9 @@ self: {
];
description = "ASCII representations of numbers";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"ascii-predicates" = callPackage
- ({ mkDerivation, ascii-char, base, hedgehog }:
- mkDerivation {
- pname = "ascii-predicates";
- version = "1.0.1.0";
- sha256 = "1zqlly878qlrkjw2m4mgs4cgw6xspn0alx6xnvnrp1r2b412ykyn";
- revision = "2";
- editedCabalFile = "15jb8yq55dwwbbq0k0vzcznsk4xvxylm61i2jspyhjhgzq9w34ik";
- libraryHaskellDepends = [ ascii-char base ];
- testHaskellDepends = [ ascii-char base hedgehog ];
- description = "Various categorizations of ASCII characters";
- license = lib.licenses.asl20;
- }) {};
-
- "ascii-predicates_1_0_1_2" = callPackage
({ mkDerivation, ascii-char, base, hedgehog }:
mkDerivation {
pname = "ascii-predicates";
@@ -35392,7 +35288,6 @@ self: {
testHaskellDepends = [ ascii-char base hedgehog ];
description = "Various categorizations of ASCII characters";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"ascii-progress" = callPackage
@@ -35445,10 +35340,8 @@ self: {
}:
mkDerivation {
pname = "ascii-superset";
- version = "1.0.1.13";
- sha256 = "0pf1awrx0bfpgyc96r1ycybgpy801iqxr8qf3vp9pvbnfava1v8s";
- revision = "2";
- editedCabalFile = "1551j1x284zdv9w233ma5r15bwmwizh5zi2ifcsp86d09c38505n";
+ version = "1.0.1.15";
+ sha256 = "0jq2kfc6mmpavljrv89xqwn0iskf3z9l3m3hjcm3bw03wlyv6clp";
libraryHaskellDepends = [
ascii-char base bytestring hashable text
];
@@ -35495,19 +35388,19 @@ self: {
"ascii-th" = callPackage
({ mkDerivation, ascii-char, ascii-superset, base, bytestring
- , hedgehog, template-haskell, text
+ , hspec, template-haskell, text
}:
mkDerivation {
pname = "ascii-th";
- version = "1.0.0.11";
- sha256 = "14a50pxmri17nch7bcmrdflrqq5qq2z5012aiqh260iq4qsw74xq";
- revision = "1";
- editedCabalFile = "037i6n02c9xsxj5zz1nxihwgzhksbzjzd0s2a2m8ndsq3a5hgc61";
+ version = "1.0.0.14";
+ sha256 = "0wm0n7wr7bypdqs1cpgkcbmcwgz84lm7la2xkqflwc2kn0wr839h";
+ revision = "2";
+ editedCabalFile = "0a74410lmbd11j6bfh5x1rk3gyp7sybl7lqfxkkz5qws413ijli6";
libraryHaskellDepends = [
ascii-char ascii-superset base template-haskell
];
testHaskellDepends = [
- ascii-char ascii-superset base bytestring hedgehog text
+ ascii-char ascii-superset base bytestring hspec text
];
description = "Template Haskell support for ASCII";
license = lib.licenses.asl20;
@@ -35706,6 +35599,31 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "asn1-ber-syntax" = callPackage
+ ({ mkDerivation, array-chunks, base, base16, bytebuild, byteslice
+ , bytesmith, bytestring, contiguous, filepath, natural-arithmetic
+ , pretty-simple, primitive, QuickCheck, tasty, tasty-golden
+ , tasty-hunit, tasty-quickcheck, text-short, vector
+ }:
+ mkDerivation {
+ pname = "asn1-ber-syntax";
+ version = "0.1.0.0";
+ sha256 = "0rdn482cdbx149m1048lk894yhdh12ac8iw0d9wmx245627j4cvd";
+ libraryHaskellDepends = [
+ array-chunks base bytebuild byteslice bytesmith bytestring
+ contiguous natural-arithmetic primitive text-short vector
+ ];
+ testHaskellDepends = [
+ base base16 byteslice bytestring filepath pretty-simple primitive
+ QuickCheck tasty tasty-golden tasty-hunit tasty-quickcheck
+ text-short
+ ];
+ description = "ASN.1 BER Encode and Decode";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
+ }) {};
+
"asn1-codec" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
, containers, contravariant, cryptonite, directory, hashable, HUnit
@@ -37350,6 +37268,17 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "attoparsec-run" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, text }:
+ mkDerivation {
+ pname = "attoparsec-run";
+ version = "0.0.1.0";
+ sha256 = "0sdia624pxc0xj7lvai0hw41zjnkfz2da3vpc9mlhldiwzdwa815";
+ libraryHaskellDepends = [ attoparsec base bytestring text ];
+ description = "Conveniently run Attoparsec parsers";
+ license = lib.licenses.asl20;
+ }) {};
+
"attoparsec-text" = callPackage
({ mkDerivation, array, attoparsec, base, containers, text }:
mkDerivation {
@@ -37748,6 +37677,18 @@ self: {
broken = true;
}) {};
+ "auto-lift-classes" = callPackage
+ ({ mkDerivation, base, reflection }:
+ mkDerivation {
+ pname = "auto-lift-classes";
+ version = "1";
+ sha256 = "02809ihgynxc20riycghgiw016xpgqh7234bs8m1ilvr7hnnwpr1";
+ libraryHaskellDepends = [ base reflection ];
+ testHaskellDepends = [ base ];
+ description = "Deriving (Show|Read)(1|2)";
+ license = lib.licenses.bsd3;
+ }) {};
+
"auto-update" = callPackage
({ mkDerivation, base, exceptions, hspec, HUnit, retry }:
mkDerivation {
@@ -37866,24 +37807,6 @@ self: {
}) {};
"autodocodec-yaml" = callPackage
- ({ mkDerivation, autodocodec, autodocodec-schema, base, bytestring
- , containers, path, path-io, safe-coloured-text, scientific, text
- , unordered-containers, vector, yaml
- }:
- mkDerivation {
- pname = "autodocodec-yaml";
- version = "0.2.0.2";
- sha256 = "164nrmpxrwyr49f0gczi2sixzrs3sv2pn8j293s9avw684aq2prx";
- libraryHaskellDepends = [
- autodocodec autodocodec-schema base bytestring containers path
- path-io safe-coloured-text scientific text unordered-containers
- vector yaml
- ];
- description = "Autodocodec interpreters for yaml";
- license = lib.licenses.mit;
- }) {};
-
- "autodocodec-yaml_0_2_0_3" = callPackage
({ mkDerivation, autodocodec, autodocodec-schema, base, bytestring
, containers, path, path-io, safe-coloured-text, scientific, text
, unordered-containers, vector, yaml
@@ -37899,7 +37822,6 @@ self: {
];
description = "Autodocodec interpreters for yaml";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
}) {};
"autoexporter" = callPackage
@@ -38531,32 +38453,6 @@ self: {
}) {};
"aws-cloudfront-signed-cookies" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types
- , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog
- , lens, lens-aeson, neat-interpolation, optparse-applicative, pem
- , text, time, vector
- }:
- mkDerivation {
- pname = "aws-cloudfront-signed-cookies";
- version = "0.2.0.11";
- sha256 = "018a3q443h19pbcc178ns7zdmsdd3pz8ww3yfixrhr4jfghws3r9";
- revision = "4";
- editedCabalFile = "1rkwa74h6kwpypr7z0fjv8l83n06b27zan1fxgpzsdrhq6d700vj";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring
- bytestring cookie cryptonite lens lens-aeson optparse-applicative
- pem text time vector
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [ base hedgehog neat-interpolation ];
- description = "Generate signed cookies for AWS CloudFront";
- license = lib.licenses.mit;
- mainProgram = "aws-cloudfront-signed-cookies";
- }) {};
-
- "aws-cloudfront-signed-cookies_0_2_0_12" = callPackage
({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types
, base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog
, lens, lens-aeson, neat-interpolation, optparse-applicative, pem
@@ -38577,7 +38473,6 @@ self: {
testHaskellDepends = [ base hedgehog neat-interpolation ];
description = "Generate signed cookies for AWS CloudFront";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
mainProgram = "aws-cloudfront-signed-cookies";
}) {};
@@ -43243,6 +43138,25 @@ self: {
license = lib.licenses.mit;
}) {};
+ "binary-parser_0_5_7_3" = callPackage
+ ({ mkDerivation, base, base-prelude, bytestring, mtl, QuickCheck
+ , quickcheck-instances, tasty, tasty-hunit, tasty-quickcheck, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "binary-parser";
+ version = "0.5.7.3";
+ sha256 = "1l739h7aixw6dlwbblk7g2cablyn6265715mwywwjq7wb73va1vd";
+ libraryHaskellDepends = [ base bytestring mtl text transformers ];
+ testHaskellDepends = [
+ base base-prelude bytestring mtl QuickCheck quickcheck-instances
+ tasty tasty-hunit tasty-quickcheck text transformers
+ ];
+ description = "An efficient but limited parser API specialised to bytestrings";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"binary-parsers" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring
, bytestring-lexing, case-insensitive, criterion, deepseq
@@ -44440,6 +44354,8 @@ self: {
pname = "binrep";
version = "0.3.1";
sha256 = "01adzragxiick3l2q4cm0x1xd2pmrxw9xl8m39ysk9l8d15b0n4n";
+ revision = "1";
+ editedCabalFile = "17l5x2vpdwdp6x14n1wayh6751cpsxsywj205n94khnm1cgcfp1a";
libraryHaskellDepends = [
aeson base bytestring either flatparse mason megaparsec refined
strongweak text text-icu vector vector-sized
@@ -44452,8 +44368,7 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Encode precise binary representations directly in types";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
- broken = true;
+ maintainers = [ lib.maintainers.raehik ];
}) {};
"bins" = callPackage
@@ -46669,20 +46584,19 @@ self: {
"blockfrost-api" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, data-default
- , data-default-class, deriving-aeson, hspec, lens, QuickCheck
- , quickcheck-instances, raw-strings-qq, safe-money, servant
- , servant-docs, servant-multipart-api, tasty, tasty-discover
- , tasty-hspec, tasty-hunit, template-haskell, text, time, vector
+ , data-default-class, deriving-aeson, hspec, lens, raw-strings-qq
+ , safe-money, servant, servant-docs, servant-multipart-api, tasty
+ , tasty-discover, tasty-hspec, tasty-hunit, template-haskell, text
+ , time, vector
}:
mkDerivation {
pname = "blockfrost-api";
- version = "0.7.1.0";
- sha256 = "0dy2xspnmy9487zgjaws250kp5qnip3ir8qwnn57ah92h3z1w0mj";
+ version = "0.8.0.0";
+ sha256 = "030q47qxk8hzrff1dz0m7409kg3a7fg978c0776dw1l0bljk0v0a";
libraryHaskellDepends = [
aeson base bytestring containers data-default-class deriving-aeson
- lens QuickCheck quickcheck-instances safe-money servant
- servant-docs servant-multipart-api template-haskell text time
- vector
+ lens safe-money servant servant-docs servant-multipart-api
+ template-haskell text time vector
];
testHaskellDepends = [
aeson base bytestring containers data-default hspec raw-strings-qq
@@ -46697,12 +46611,12 @@ self: {
({ mkDerivation, base, blockfrost-api, blockfrost-client-core
, bytestring, data-default, directory, filepath, hspec, mtl
, servant, servant-client, servant-client-core, tasty
- , tasty-discover, tasty-hspec, tasty-hunit, tasty-quickcheck, text
+ , tasty-discover, tasty-hspec, tasty-hunit, text
}:
mkDerivation {
pname = "blockfrost-client";
- version = "0.7.1.0";
- sha256 = "1cr3zb69hradfc02di523vhykp0y8v8mpyzc37xw8i3phrgasw57";
+ version = "0.7.1.1";
+ sha256 = "1k795lar667y5ai484cmrv5cvzdcca165cgvai9234b721by80jx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -46710,9 +46624,7 @@ self: {
directory filepath mtl servant servant-client servant-client-core
text
];
- testHaskellDepends = [
- base hspec tasty tasty-hspec tasty-hunit tasty-quickcheck
- ];
+ testHaskellDepends = [ base hspec tasty tasty-hspec tasty-hunit ];
testToolDepends = [ tasty-discover ];
description = "blockfrost.io basic client";
license = lib.licenses.asl20;
@@ -48781,7 +48693,7 @@ self: {
mainProgram = "mywork-example";
}) {};
- "brick-skylighting" = callPackage
+ "brick-skylighting_0_3" = callPackage
({ mkDerivation, base, brick, containers, skylighting-core, text
, vty
}:
@@ -48797,10 +48709,9 @@ self: {
description = "Show syntax-highlighted text in your Brick UI";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
- broken = true;
}) {};
- "brick-skylighting_1_0" = callPackage
+ "brick-skylighting" = callPackage
({ mkDerivation, base, brick, containers, skylighting-core, text
, vty
}:
@@ -48815,8 +48726,6 @@ self: {
];
description = "Show syntax-highlighted text in your Brick UI";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- broken = true;
}) {};
"bricks" = callPackage
@@ -50726,6 +50635,8 @@ self: {
license = lib.licenses.mit;
hydraPlatforms = lib.platforms.none;
mainProgram = "bytepatch";
+ maintainers = [ lib.maintainers.raehik ];
+ broken = true;
}) {};
"bytes" = callPackage
@@ -51809,6 +51720,18 @@ self: {
license = lib.licenses.agpl3Only;
}) {};
+ "cabal-appimage_0_4_0_0" = callPackage
+ ({ mkDerivation, base, Cabal, filepath }:
+ mkDerivation {
+ pname = "cabal-appimage";
+ version = "0.4.0.0";
+ sha256 = "1ws5alrffpzr6yikwsq6yvazdqbclbsa509rc4csc7dmka8xc4dp";
+ libraryHaskellDepends = [ base Cabal filepath ];
+ description = "Cabal support for creating AppImage applications";
+ license = lib.licenses.agpl3Only;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"cabal-audit" = callPackage
({ mkDerivation, base, Cabal, directory, filepath, HTTP
, optparse-applicative
@@ -55729,9 +55652,7 @@ self: {
testHaskellDepends = [ base bytestring primitive text ];
description = "Portable CRC-32C";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- broken = true;
- }) {primitive-slice = null;};
+ }) {};
"caster" = callPackage
({ mkDerivation, base, bytestring, directory, fast-builder, mtl
@@ -61860,8 +61781,8 @@ self: {
}:
mkDerivation {
pname = "co-log-json";
- version = "0.0.1.0";
- sha256 = "1ap62gq3s08fif96jwssp7aj6kldsiwf2qx0f5yffl3zna4h6j2p";
+ version = "0.1.0.0";
+ sha256 = "0212dcaw4anjn569a8gpv30k09b9lk99r70bbsh7kb8hb268rk83";
libraryHaskellDepends = [
aeson base bytestring co-log-core containers string-conv text
];
@@ -63376,30 +63297,6 @@ self: {
}) {};
"comfort-array" = callPackage
- ({ mkDerivation, base, ChasingBottoms, containers, deepseq
- , doctest-exitcode-stdio, doctest-lib, guarded-allocation
- , non-empty, prelude-compat, primitive, QuickCheck, semigroups
- , storable-record, storablevector, tagged, transformers, utility-ht
- }:
- mkDerivation {
- pname = "comfort-array";
- version = "0.5.1.1";
- sha256 = "07rajrpp495g17naywybkrydd67ixiav5g8rayavwabvyrybnmgy";
- libraryHaskellDepends = [
- base containers deepseq guarded-allocation non-empty prelude-compat
- primitive QuickCheck semigroups storable-record storablevector
- tagged transformers utility-ht
- ];
- testHaskellDepends = [
- base ChasingBottoms containers doctest-exitcode-stdio doctest-lib
- QuickCheck tagged
- ];
- description = "Arrays where the index type is a function of the shape type";
- license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- }) {};
-
- "comfort-array_0_5_2" = callPackage
({ mkDerivation, base, ChasingBottoms, containers, deepseq
, doctest-exitcode-stdio, doctest-lib, guarded-allocation
, non-empty, prelude-compat, primitive, QuickCheck, semigroups
@@ -65541,6 +65438,8 @@ self: {
pname = "concurrent-output";
version = "1.10.16";
sha256 = "0l4k0bkq5bddqraf14g3ngyzwff17f3ngg4axlilcl3zf3c4bamh";
+ revision = "1";
+ editedCabalFile = "0ak0nnfznsvq3vs8czsnlrw586hw4hj3299y75p7rhqi5jyvi932";
libraryHaskellDepends = [
ansi-terminal async base directory exceptions process stm
terminal-size text transformers unix
@@ -65549,6 +65448,23 @@ self: {
license = lib.licenses.bsd2;
}) {};
+ "concurrent-output_1_10_17" = callPackage
+ ({ mkDerivation, ansi-terminal, async, base, directory, exceptions
+ , process, stm, terminal-size, text, transformers, unix
+ }:
+ mkDerivation {
+ pname = "concurrent-output";
+ version = "1.10.17";
+ sha256 = "12dmpjdiv3y1jnljvsbx258plzjvsjnizn25csmy7w4scfbrjl0b";
+ libraryHaskellDepends = [
+ ansi-terminal async base directory exceptions process stm
+ terminal-size text transformers unix
+ ];
+ description = "Ungarble output from several threads or commands";
+ license = lib.licenses.bsd2;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"concurrent-resource-map" = callPackage
({ mkDerivation, base, containers, random, stm }:
mkDerivation {
@@ -68609,26 +68525,6 @@ self: {
}) {};
"cookie" = callPackage
- ({ mkDerivation, base, bytestring, data-default-class, deepseq
- , HUnit, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text
- , time
- }:
- mkDerivation {
- pname = "cookie";
- version = "0.4.5";
- sha256 = "10rmdasb7mypbwxdj2mhr810vqhkakpik7hyd8fvj60hng8r8zvh";
- libraryHaskellDepends = [
- base bytestring data-default-class deepseq text time
- ];
- testHaskellDepends = [
- base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck
- text time
- ];
- description = "HTTP cookie parsing and rendering";
- license = lib.licenses.mit;
- }) {};
-
- "cookie_0_4_6" = callPackage
({ mkDerivation, base, bytestring, data-default-class, deepseq
, HUnit, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text
, time
@@ -68646,7 +68542,6 @@ self: {
];
description = "HTTP cookie parsing and rendering";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
}) {};
"cookies" = callPackage
@@ -73116,6 +73011,23 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
+ "custom-interpolation" = callPackage
+ ({ mkDerivation, base, data-default-class, haskell-src-meta, mtl
+ , parsec, template-haskell
+ }:
+ mkDerivation {
+ pname = "custom-interpolation";
+ version = "0.1.0.1";
+ sha256 = "158ljlw17486n46p5vhbmsn8y1c4zs7i7piwhd6mjigzhv5hr4vd";
+ libraryHaskellDepends = [
+ base data-default-class haskell-src-meta mtl parsec
+ template-haskell
+ ];
+ testHaskellDepends = [ base template-haskell ];
+ description = "Customizable string interpolation quasiquoters";
+ license = lib.licenses.bsd3;
+ }) {};
+
"custom-prelude" = callPackage
({ mkDerivation, base, basic-prelude, monad-loops }:
mkDerivation {
@@ -73337,21 +73249,6 @@ self: {
}) {};
"d10" = callPackage
- ({ mkDerivation, base, hashable, hedgehog, template-haskell }:
- mkDerivation {
- pname = "d10";
- version = "1.0.1.0";
- sha256 = "0494hnk99nski7xsas06kbskvi4m9k7h5hizn1w8034xc34n0ppg";
- libraryHaskellDepends = [
- base hashable hedgehog template-haskell
- ];
- testHaskellDepends = [ base hashable hedgehog template-haskell ];
- doHaddock = false;
- description = "Digits 0-9";
- license = lib.licenses.mit;
- }) {};
-
- "d10_1_0_1_2" = callPackage
({ mkDerivation, base, hashable, hedgehog, template-haskell }:
mkDerivation {
pname = "d10";
@@ -73364,7 +73261,6 @@ self: {
doHaddock = false;
description = "Digits 0-9";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
}) {};
"d3d11binding" = callPackage
@@ -74949,6 +74845,8 @@ self: {
pname = "data-functor-logistic";
version = "0.0";
sha256 = "0k2r4jpm7sa3hgd6i08sg9xbgjzkgzx44z5ai5zpw32b7pqr9xqm";
+ revision = "1";
+ editedCabalFile = "135950pg0gxqhzmvzq9lmvvy5qnsd3q8963fslasgj01bixb3k0f";
libraryHaskellDepends = [ base distributive ];
description = "Updatable analogue of Distributive functors";
license = lib.licenses.bsd3;
@@ -78256,8 +78154,8 @@ self: {
}:
mkDerivation {
pname = "dep-t";
- version = "0.6.5.0";
- sha256 = "19jhxcmh6qf3nhixjjp7sqcpn4jpl6cdnaccvfn8375h83v1dbp9";
+ version = "0.6.6.0";
+ sha256 = "1r3pd00jlbqc8z61a1s5iwzp9y1lbqvs55sc9f495fg8m35zxcqz";
libraryHaskellDepends = [ base mtl transformers unliftio-core ];
testHaskellDepends = [
aeson barbies base bytestring containers doctest mtl rank2classes
@@ -78956,16 +78854,17 @@ self: {
}) {};
"deriving-trans" = callPackage
- ({ mkDerivation, base, monad-control, monad-control-identity, mtl
- , transformers, transformers-base
+ ({ mkDerivation, base, exceptions, monad-control
+ , monad-control-identity, mtl, transformers, transformers-base
+ , unliftio-core
}:
mkDerivation {
pname = "deriving-trans";
- version = "0.5.0.1";
- sha256 = "1d9mrld6c6hcjzw2rhss83zhlsjy9fddfhg55fdrwsajr87zsppl";
+ version = "0.5.1.0";
+ sha256 = "1k6j66v2wcqhcbf7rrj4qsm7fdf68g0i6yslcjdrricdh8b7r9w2";
libraryHaskellDepends = [
- base monad-control monad-control-identity mtl transformers
- transformers-base
+ base exceptions monad-control monad-control-identity mtl
+ transformers transformers-base unliftio-core
];
description = "Derive instances for monad transformer stacks";
license = lib.licenses.bsd3;
@@ -80640,8 +80539,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-input";
- version = "0.1";
- sha256 = "1ap1qark5f746fgvnzr0fam9csxqqbpvlsyr7smxgwxzhqhsjdjy";
+ version = "0.1.1";
+ sha256 = "0wad5xdvw33dp5fzqq9h52px3m81nsic35k9wd27ss23bfzgbb6b";
libraryHaskellDepends = [
attoparsec base base64-bytestring blaze-builder blaze-markup
bytestring colour conduit conduit-extra containers css-text
@@ -81407,6 +81306,8 @@ self: {
pname = "digest";
version = "0.0.1.4";
sha256 = "05pc5l4bwddszc6vy1hazwi1dnrxg323521gdkis9cvh7zs2a4gr";
+ revision = "1";
+ editedCabalFile = "1x9wr09q0rx0v4lc1f3a3mq2md412bq6zhhyvs5njffb7bi8mpdi";
libraryHaskellDepends = [ base bytestring ];
libraryPkgconfigDepends = [ zlib ];
description = "Various hashes for bytestrings; CRC32 and Adler32 for now";
@@ -88581,6 +88482,31 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "effectful_2_2_2_0" = callPackage
+ ({ mkDerivation, async, base, bytestring, containers, directory
+ , effectful-core, exceptions, lifted-base, primitive, process, stm
+ , tasty, tasty-bench, tasty-hunit, text, time, unix, unliftio
+ }:
+ mkDerivation {
+ pname = "effectful";
+ version = "2.2.2.0";
+ sha256 = "1j6p28d5701v0a5fhgra1mhnzsqbxj44mpnixrh8jy34rcbq02bi";
+ libraryHaskellDepends = [
+ async base bytestring directory effectful-core process stm time
+ unliftio
+ ];
+ testHaskellDepends = [
+ base containers effectful-core exceptions lifted-base primitive
+ tasty tasty-hunit unliftio
+ ];
+ benchmarkHaskellDepends = [
+ async base tasty-bench text unix unliftio
+ ];
+ description = "An easy to use, performant extensible effects library";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"effectful-core" = callPackage
({ mkDerivation, base, containers, exceptions, monad-control
, primitive, transformers-base, unliftio-core
@@ -88598,6 +88524,23 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "effectful-core_2_2_2_1" = callPackage
+ ({ mkDerivation, base, containers, exceptions, monad-control
+ , primitive, transformers-base, unliftio-core
+ }:
+ mkDerivation {
+ pname = "effectful-core";
+ version = "2.2.2.1";
+ sha256 = "1k3l79rh7whfm7yrdxmxyjggmwm912g8r6brwxjkla5d4phg4azp";
+ libraryHaskellDepends = [
+ base containers exceptions monad-control primitive
+ transformers-base unliftio-core
+ ];
+ description = "An easy to use, performant extensible effects library";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"effectful-plugin" = callPackage
({ mkDerivation, base, containers, effectful-core, ghc
, ghc-tcplugins-extra
@@ -98018,6 +97961,27 @@ self: {
broken = true;
}) {};
+ "festival" = callPackage
+ ({ mkDerivation, alsa-lib, base, bytestring, c2hs, estbase, estools
+ , eststring, Festival, gomp, ncurses
+ }:
+ mkDerivation {
+ pname = "festival";
+ version = "0.1.0.0";
+ sha256 = "0w48b4dh41qjcgh0hdb7jd12gpl16zq3gbv907dcmlqmrskd712w";
+ libraryHaskellDepends = [ base bytestring ];
+ librarySystemDepends = [
+ alsa-lib estbase estools eststring Festival gomp ncurses
+ ];
+ libraryToolDepends = [ c2hs ];
+ description = "C bindings plus conveniences for the festival tts system";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
+ }) {Festival = null; inherit (pkgs) alsa-lib; estbase = null;
+ estools = null; eststring = null; inherit (pkgs) gomp;
+ inherit (pkgs) ncurses;};
+
"festung" = callPackage
({ mkDerivation, aeson, argparser, async, base, base64-bytestring
, bytestring, case-insensitive, containers, directory, either
@@ -101505,6 +101469,8 @@ self: {
pname = "foldl";
version = "1.4.13";
sha256 = "14vlhgf40qmwkznwza37z4www3q1v5acsx4nw5vmg25wdnc8ibfw";
+ revision = "1";
+ editedCabalFile = "0wkjdxjyjyq9kv9hwa5k8k8fp6i0b77xf9b2prrzyq0cwlps016i";
libraryHaskellDepends = [
base bytestring comonad containers contravariant hashable primitive
profunctors random semigroupoids text transformers
@@ -101521,8 +101487,8 @@ self: {
({ mkDerivation, base, foldl, hedgehog, safe-exceptions }:
mkDerivation {
pname = "foldl-exceptions";
- version = "1.0.0.1";
- sha256 = "05b7d7y7lg8b2d4kyzwnad4vkr6qyx1gpjw4wd20kk5smql4bxsq";
+ version = "1.0.0.2";
+ sha256 = "1303ybbfh60hqbwvydfvc4byva2agjm20vq4cfs4lkassrb36lrp";
libraryHaskellDepends = [ base foldl safe-exceptions ];
testHaskellDepends = [ base foldl hedgehog safe-exceptions ];
description = "Exception handling with FoldM";
@@ -107155,8 +107121,8 @@ self: {
}:
mkDerivation {
pname = "general-allocate";
- version = "0.2.0.0";
- sha256 = "1i388gvnk4brc49pp44xaayddcpg78ii1yv0n4r09nl4iicggsyc";
+ version = "0.2.0.1";
+ sha256 = "0n6szggdafnn8s3s4n737q8s8d1jfnz9cb4v25rsz508q56mghzl";
libraryHaskellDepends = [
base containers mtl primitive resourcet safe-exceptions
transformers
@@ -120555,8 +120521,8 @@ self: {
}:
mkDerivation {
pname = "greskell";
- version = "2.0.1.0";
- sha256 = "0p9sv21dj7sa9w5abz78q5mq72908iih8x61w19xf5z9rz5n5war";
+ version = "2.0.2.0";
+ sha256 = "1hlqy041d7qxvvhbv7lki852m9bvviml5b48vs0x299i4z9mhprx";
libraryHaskellDepends = [
aeson base exceptions greskell-core hashable semigroups text
transformers unordered-containers vector
@@ -127402,26 +127368,6 @@ self: {
}) {};
"hashable" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, ghc-bignum
- , ghc-prim, HUnit, QuickCheck, random, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, unix
- }:
- mkDerivation {
- pname = "hashable";
- version = "1.4.1.0";
- sha256 = "11sycr73821amdz8g0k8c97igi4z7f9xdvgaxlkxhsp6h310bcz1";
- libraryHaskellDepends = [
- base bytestring containers deepseq ghc-bignum ghc-prim text
- ];
- testHaskellDepends = [
- base bytestring ghc-prim HUnit QuickCheck random test-framework
- test-framework-hunit test-framework-quickcheck2 text unix
- ];
- description = "A class for types that can be converted to a hash value";
- license = lib.licenses.bsd3;
- }) {};
-
- "hashable_1_4_2_0" = callPackage
({ mkDerivation, base, bytestring, containers, data-array-byte
, deepseq, filepath, ghc-bignum, ghc-prim, HUnit, QuickCheck
, random, test-framework, test-framework-hunit
@@ -127441,7 +127387,6 @@ self: {
];
description = "A class for types that can be converted to a hash value";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"hashable-accelerate" = callPackage
@@ -132297,8 +132242,8 @@ self: {
}:
mkDerivation {
pname = "hasql-interpolate";
- version = "0.1.0.3";
- sha256 = "1532bs4d04fh0mhdn2dwgyl94x9pgbnh4xmq403pmx3785m60rva";
+ version = "0.1.0.4";
+ sha256 = "1b3q21m25wxjxrprfr24b2ay94yjjaqs0p2x6s1d9cqagmznh9v0";
libraryHaskellDepends = [
aeson array base bytestring containers haskell-src-meta hasql
megaparsec mtl scientific template-haskell text time transformers
@@ -135105,8 +135050,8 @@ self: {
}:
mkDerivation {
pname = "hedgehog-extras";
- version = "0.3.0.2";
- sha256 = "1bf6fyvp2vzvm7z9ny1pcnaqqxqh9j42x6jyd2r8mv3dxdfdjkhr";
+ version = "0.3.0.3";
+ sha256 = "1jrzijk8b4hnglsghja1aad482sc7zq0g9g0zyjxgwr4pjj7sc6f";
libraryHaskellDepends = [
aeson aeson-pretty async base bytestring deepseq directory
exceptions filepath hedgehog hw-aeson mmorph mtl network process
@@ -135235,10 +135180,8 @@ self: {
({ mkDerivation, base, hedgehog, optics-core }:
mkDerivation {
pname = "hedgehog-optics";
- version = "1.0.0.1";
- sha256 = "0ybpq4c74w8y3wnfmy7macana4zlr4w1m2s0kk88yq67cvzfgb5w";
- revision = "2";
- editedCabalFile = "1w7drklx7z8qkkf9d9pysic5iqa3ija57yqx6pq8qkhzlal09kbx";
+ version = "1.0.0.2";
+ sha256 = "0i39s3ajrfdf87qy8i2k5v4dh42snc3jw4ar49c9hc76gzhxw2qj";
libraryHaskellDepends = [ base hedgehog optics-core ];
description = "Hedgehog properties for optics laws";
license = lib.licenses.mit;
@@ -136916,18 +136859,6 @@ self: {
}) {};
"hex-text" = callPackage
- ({ mkDerivation, base, base16-bytestring, bytestring, text }:
- mkDerivation {
- pname = "hex-text";
- version = "0.1.0.7";
- sha256 = "1xyyr6570dbp6mgarz8v56s9kg4pfzk1dc10nw0gg51j6xl1c2zn";
- libraryHaskellDepends = [ base base16-bytestring bytestring text ];
- testHaskellDepends = [ base base16-bytestring bytestring text ];
- description = "ByteString-Text hexidecimal conversions";
- license = lib.licenses.mit;
- }) {};
-
- "hex-text_0_1_0_8" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, hspec, text
}:
mkDerivation {
@@ -136940,7 +136871,6 @@ self: {
];
description = "ByteString-Text hexidecimal conversions";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
}) {};
"hexchat" = callPackage
@@ -139932,6 +139862,31 @@ self: {
mainProgram = "hjsmin";
}) {};
+ "hjsmin_0_2_1" = callPackage
+ ({ mkDerivation, base, bytestring, directory, extra, filepath
+ , language-javascript, optparse-applicative, process, text, unix
+ }:
+ mkDerivation {
+ pname = "hjsmin";
+ version = "0.2.1";
+ sha256 = "146d4b9k11msqf1q12rzh5bfdrqddkcgsf42w6wpkzfdlhskid2d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring language-javascript text
+ ];
+ executableHaskellDepends = [
+ base bytestring language-javascript optparse-applicative text
+ ];
+ testHaskellDepends = [
+ base directory extra filepath process unix
+ ];
+ description = "Haskell implementation of a javascript minifier";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ mainProgram = "hjsmin";
+ }) {};
+
"hjson" = callPackage
({ mkDerivation, base, containers, parsec }:
mkDerivation {
@@ -141891,6 +141846,8 @@ self: {
pname = "hmatrix";
version = "0.20.2";
sha256 = "05462prqkbqpxfbzsgsp8waf0sirg2qz6lzsk7r1ll752n7gqkbg";
+ revision = "1";
+ editedCabalFile = "154n2hddfk90rqd9fwwhfjnq6ab701nglsrdjss71brza93wjy8d";
configureFlags = [ "-fdisable-default-paths" "-fopenblas" ];
libraryHaskellDepends = [
array base binary bytestring deepseq primitive random semigroups
@@ -149420,24 +149377,6 @@ self: {
}) {};
"hslua-module-text" = callPackage
- ({ mkDerivation, base, hslua-core, hslua-marshalling
- , hslua-packaging, tasty, tasty-hunit, tasty-lua, text
- }:
- mkDerivation {
- pname = "hslua-module-text";
- version = "1.0.2";
- sha256 = "0xq5ndgjhs37d73s8lvm0pndwjpj2pqb67pr0ckjap8yzhjna7fq";
- libraryHaskellDepends = [
- base hslua-core hslua-marshalling hslua-packaging text
- ];
- testHaskellDepends = [
- base hslua-core hslua-packaging tasty tasty-hunit tasty-lua text
- ];
- description = "Lua module for text";
- license = lib.licenses.mit;
- }) {};
-
- "hslua-module-text_1_0_3_1" = callPackage
({ mkDerivation, base, hslua-core, hslua-marshalling
, hslua-packaging, tasty, tasty-hunit, tasty-lua, text
}:
@@ -149453,7 +149392,6 @@ self: {
];
description = "Lua module for text";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
}) {};
"hslua-module-version" = callPackage
@@ -162361,6 +162299,31 @@ self: {
license = lib.licenses.asl20;
}) {};
+ "invert_1_0_0_3" = callPackage
+ ({ mkDerivation, base, containers, criterion, generic-deriving
+ , hashable, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "invert";
+ version = "1.0.0.3";
+ sha256 = "08bkn9pv02bklmrn5cf17qkw949ryvs51dc8pzxkixgbjk9fpny4";
+ libraryHaskellDepends = [
+ base containers generic-deriving hashable unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ base containers generic-deriving hashable unordered-containers
+ vector
+ ];
+ benchmarkHaskellDepends = [
+ base containers criterion generic-deriving hashable
+ unordered-containers vector
+ ];
+ description = "Automatically generate a function’s inverse";
+ license = lib.licenses.asl20;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"invertible" = callPackage
({ mkDerivation, base, haskell-src-meta, invariant, lens
, partial-isomorphisms, QuickCheck, semigroupoids, template-haskell
@@ -165473,6 +165436,23 @@ self: {
mainProgram = "jira-wiki-markup";
}) {};
+ "jira-wiki-markup_1_5_0" = callPackage
+ ({ mkDerivation, base, mtl, parsec, tasty, tasty-hunit, text }:
+ mkDerivation {
+ pname = "jira-wiki-markup";
+ version = "1.5.0";
+ sha256 = "1ajzsn4129xjcf9kzzs2hwc2w1nv6a5y7kn7nx4im19gs6hjwzs4";
+ 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 = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ mainProgram = "jira-wiki-markup";
+ }) {};
+
"jl" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
, conduit, conduit-extra, containers, exceptions, mtl
@@ -167384,8 +167364,8 @@ self: {
({ mkDerivation, aeson, base, bytestring, conduit, hspec, jsonl }:
mkDerivation {
pname = "jsonl-conduit";
- version = "0.1.1";
- sha256 = "0678hasvy8f3dvrqsg5m21yd6wdxpj1dffg9asi2b0byr4rxdaax";
+ version = "0.1.2";
+ sha256 = "03ab1ysyqg0vnlx1pxw5gj1d2gq16zsz9pdrscdjp9491fiwxg2b";
libraryHaskellDepends = [ aeson base bytestring conduit jsonl ];
testHaskellDepends = [ aeson base bytestring conduit hspec ];
description = "Conduit interface to JSONL-encoded data";
@@ -171194,10 +171174,8 @@ self: {
}:
mkDerivation {
pname = "kvitable";
- version = "1.0.1.0";
- sha256 = "0j0sl1bdx174w79xz80j89r3nmllics1h72mslsivnqv04l519l9";
- revision = "1";
- editedCabalFile = "0f801w2jgadc53nxxkgzdmfy90im0vvqh5i36r68cfx0ycywkcgn";
+ version = "1.0.2.0";
+ sha256 = "0d01sn1wj1d8cndahrvplg8qhkfyhjy5yw22c2h04jjy6n89vwwq";
libraryHaskellDepends = [
base containers lucid microlens prettyprinter text
];
@@ -172614,6 +172592,26 @@ self: {
maintainers = [ lib.maintainers.expipiplus1 ];
}) {};
+ "language-c_0_9_2" = callPackage
+ ({ mkDerivation, alex, array, base, bytestring, containers, deepseq
+ , directory, filepath, happy, mtl, pretty, process
+ }:
+ mkDerivation {
+ pname = "language-c";
+ version = "0.9.2";
+ sha256 = "1cvcxwnbg71xijadr4aqzwxaw29fxj5z2gpnz3lp5pqnv8phscdj";
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq directory filepath mtl
+ pretty process
+ ];
+ libraryToolDepends = [ alex happy ];
+ testHaskellDepends = [ base directory filepath process ];
+ description = "Analysis and generation of C code";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ maintainers = [ lib.maintainers.expipiplus1 ];
+ }) {};
+
"language-c-comments" = callPackage
({ mkDerivation, alex, array, base, language-c }:
mkDerivation {
@@ -174397,8 +174395,8 @@ self: {
}:
mkDerivation {
pname = "launchdarkly-server-sdk";
- version = "3.0.3";
- sha256 = "0j5j4x94r7ha7amv0cggs7n7n9vyx1ga5kwdr8mcddc7karz18cg";
+ version = "3.0.4";
+ sha256 = "0ah3sxghmbv3gzzqs9xak5xi5fpzkvhgf0v637sq2w1k06776k56";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring bytestring clock containers
cryptohash exceptions extra generic-lens hashtables hedis
@@ -174642,10 +174640,8 @@ self: {
}:
mkDerivation {
pname = "lazy-async";
- version = "1.0.0.1";
- sha256 = "1nw24hfpw0wd099lxjsi1iqssbb7yw6isilkv4a68agv2q1ranvk";
- revision = "1";
- editedCabalFile = "1rp4ym19rz1z60awfdxyl80abmpmyjhw6s0rb40j1cmrahpvf6hz";
+ version = "1.0.0.2";
+ sha256 = "0727384j636pbnfmw2v98j6yn9qw0inv5zrsvmyf1p6znk718jf8";
libraryHaskellDepends = [
base exceptions lifted-async monad-control rank2classes stm
transformers transformers-base
@@ -175043,8 +175039,8 @@ self: {
({ mkDerivation, aeson, base, text }:
mkDerivation {
pname = "ldtk-types";
- version = "0.1.0.0";
- sha256 = "0gf99imncx6b50jjv6nn6zf37xxq8kimhp14lxymbi86k6xl204z";
+ version = "0.2.0.0";
+ sha256 = "0dyjzcrd5p3hg54j0qnszxdpfb7wn6gykaq8nc6il284nf9rqbai";
libraryHaskellDepends = [ aeson base text ];
testHaskellDepends = [ aeson base text ];
description = "Datatypes and Aeson instances for parsing LDtk";
@@ -179870,6 +179866,24 @@ self: {
license = lib.licenses.mit;
}) {};
+ "list-t_1_0_5_6" = callPackage
+ ({ mkDerivation, base, base-prelude, foldl, HTF, logict, mmorph
+ , monad-control, mtl, mtl-prelude, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "list-t";
+ version = "1.0.5.6";
+ sha256 = "1ilbc3kjvqanwn4zysy9sdp45cizdqkfyibiymzb1ibg2s56a4sg";
+ libraryHaskellDepends = [
+ base foldl logict mmorph monad-control mtl transformers
+ transformers-base
+ ];
+ testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
+ description = "ListT done right";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"list-t-attoparsec" = callPackage
({ mkDerivation, attoparsec, base-prelude, either, hspec, list-t
, list-t-text, text, transformers
@@ -181127,14 +181141,30 @@ self: {
license = lib.licenses.asl20;
}) {};
+ "loc_0_1_4_1" = callPackage
+ ({ mkDerivation, base, containers, hedgehog, hspec, hspec-hedgehog
+ }:
+ mkDerivation {
+ pname = "loc";
+ version = "0.1.4.1";
+ sha256 = "12bsbjl0808dfcshz38iih3cl3768zix23adznnq821ffxsxfiiw";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [
+ base containers hedgehog hspec hspec-hedgehog
+ ];
+ description = "Line and column positions and ranges in text files";
+ license = lib.licenses.asl20;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"loc-test" = callPackage
({ mkDerivation, base, containers, hedgehog, loc }:
mkDerivation {
pname = "loc-test";
- version = "0.1.3.12";
- sha256 = "0xzlv3mgp90l054gsfg8v5li2f5igb1z84r9vz6sdzmsdv6nyzbg";
+ version = "0.1.3.13";
+ sha256 = "114qi58ppyc5zwyx21d977dh7zhkaxrr0dv7qf1bk98ql5grqcjl";
libraryHaskellDepends = [ base containers hedgehog loc ];
- description = "Test-related utilities related to the /loc/ package";
+ description = "Hedgehog generators for loc";
license = lib.licenses.asl20;
}) {};
@@ -181908,6 +181938,17 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
+ "logical-constraints" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "logical-constraints";
+ version = "0.1.2.0";
+ sha256 = "1sj47ampdyh117wl2czbkqks6vbii2n24p374r49zqnpcw9y4862";
+ libraryHaskellDepends = [ base ];
+ description = "Simple logical constraints 'syntax-sugar' writing library";
+ license = lib.licenses.mit;
+ }) {};
+
"logicst" = callPackage
({ mkDerivation, base, logict, transformers }:
mkDerivation {
@@ -186333,20 +186374,6 @@ self: {
}) {};
"mason" = callPackage
- ({ mkDerivation, array, base, bytestring, ghc-prim, network, text
- }:
- mkDerivation {
- pname = "mason";
- version = "0.2.5";
- sha256 = "0ch8qajaj83pifxy24z4srb3j51z5zn94lrx0ziqcfrpshck569j";
- libraryHaskellDepends = [
- array base bytestring ghc-prim network text
- ];
- description = "Fast and extensible bytestring builder";
- license = lib.licenses.bsd3;
- }) {};
-
- "mason_0_2_6" = callPackage
({ mkDerivation, array, base, bytestring, ghc-prim, network, text
}:
mkDerivation {
@@ -186358,7 +186385,6 @@ self: {
];
description = "Fast and extensible bytestring builder";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"massiv" = callPackage
@@ -187158,7 +187184,6 @@ self: {
];
description = "Terminal client for the Mattermost chat system";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
mainProgram = "matterhorn";
maintainers = [ lib.maintainers.kiwi ];
}) {};
@@ -188502,17 +188527,6 @@ self: {
}) {};
"memfd" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "memfd";
- version = "1.0.1.0";
- sha256 = "154861xg18h02s26gf3fk8zqhr2d8x21p0s4ar56rfrbi7b2nqrk";
- libraryHaskellDepends = [ base transformers ];
- description = "Open temporary anonymous Linux file handles";
- license = lib.licenses.asl20;
- }) {};
-
- "memfd_1_0_1_1" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "memfd";
@@ -188521,7 +188535,6 @@ self: {
libraryHaskellDepends = [ base transformers ];
description = "Open temporary anonymous Linux file handles";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"meminfo" = callPackage
@@ -189958,6 +189971,8 @@ self: {
pname = "microstache";
version = "1.0.2.2";
sha256 = "1b1nvlb9jragibbbf7bg3k61g0kqhnalpsi91spy2dx18ppxp8gh";
+ revision = "1";
+ editedCabalFile = "0j9nvvyfk4grxhfg7c0nv6fp635kxnrg95zqmi2dgcw0fkw0apgr";
libraryHaskellDepends = [
aeson base containers deepseq directory filepath parsec text
transformers unordered-containers vector
@@ -189970,6 +189985,28 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "microstache_1_0_2_3" = callPackage
+ ({ mkDerivation, aeson, base, base-orphans, bytestring, containers
+ , deepseq, directory, filepath, parsec, tasty, tasty-hunit, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "microstache";
+ version = "1.0.2.3";
+ sha256 = "16nj6ss8nmxd0z8lc2a9zpawgvi4kbd5wyjy17xknq43awbi6ynz";
+ libraryHaskellDepends = [
+ aeson base containers deepseq directory filepath parsec text
+ transformers unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base base-orphans bytestring containers parsec tasty
+ tasty-hunit text
+ ];
+ description = "Mustache templates for Haskell";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"microtimer" = callPackage
({ mkDerivation, base, time }:
mkDerivation {
@@ -194009,6 +194046,26 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "monadic-bang" = callPackage
+ ({ mkDerivation, base, containers, exceptions, fused-effects, ghc
+ , ghc-boot, ghc-paths, transformers
+ }:
+ mkDerivation {
+ pname = "monadic-bang";
+ version = "0.1.0.0";
+ sha256 = "0wflx8vlwa5rxa94g40rsn8bwncnwvkbf5iagbhf74mjjdnrc17c";
+ libraryHaskellDepends = [
+ base containers fused-effects ghc transformers
+ ];
+ testHaskellDepends = [
+ base exceptions ghc ghc-boot ghc-paths transformers
+ ];
+ description = "GHC plugin to desugar ! into do-notation";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
+ }) {};
+
"monadic-recursion-schemes" = callPackage
({ mkDerivation, base, comonad, containers, free, mtl
, recursion-schemes, transformers
@@ -200960,39 +201017,6 @@ self: {
}) {ghc-binary = null;};
"net-mqtt" = callPackage
- ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary
- , bytestring, checkers, conduit, conduit-extra, connection
- , containers, deepseq, HUnit, network-conduit-tls, network-uri
- , optparse-applicative, QuickCheck, stm, tasty, tasty-hunit
- , tasty-quickcheck, text, websockets
- }:
- mkDerivation {
- pname = "net-mqtt";
- version = "0.8.2.4";
- sha256 = "03w0086kn9zgsry8gm1ij7n5m3fqq7xfas4ma1fviqsx7w8wdc3r";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- async attoparsec attoparsec-binary base binary bytestring conduit
- conduit-extra connection containers deepseq network-conduit-tls
- network-uri QuickCheck stm text websockets
- ];
- executableHaskellDepends = [
- async attoparsec attoparsec-binary base binary bytestring conduit
- conduit-extra connection containers deepseq network-conduit-tls
- network-uri optparse-applicative QuickCheck stm text websockets
- ];
- testHaskellDepends = [
- async attoparsec attoparsec-binary base binary bytestring checkers
- conduit conduit-extra connection containers deepseq HUnit
- network-conduit-tls network-uri QuickCheck stm tasty tasty-hunit
- tasty-quickcheck text websockets
- ];
- description = "An MQTT Protocol Implementation";
- license = lib.licenses.bsd3;
- }) {};
-
- "net-mqtt_0_8_2_5" = callPackage
({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary
, bytestring, checkers, conduit, conduit-extra, connection
, containers, deepseq, HUnit, network-conduit-tls, network-uri
@@ -201023,7 +201047,6 @@ self: {
];
description = "An MQTT Protocol Implementation";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"net-mqtt-lens" = callPackage
@@ -208108,8 +208131,8 @@ self: {
({ mkDerivation, aeson, base, text }:
mkDerivation {
pname = "one-line-aeson-text";
- version = "0.1.0.4";
- sha256 = "0hhdnpc4fs6xz709vlww990i5f98p73n8niq09y6hv1vzgsh5gr1";
+ version = "0.1.0.5";
+ sha256 = "10ngmv4xbz5w4fpgprrii6n74syia824sysja7ajyv27v6zfbihf";
libraryHaskellDepends = [ aeson base text ];
testHaskellDepends = [ aeson base text ];
description = "Pretty-printing short Aeson values as text";
@@ -208285,8 +208308,8 @@ self: {
}:
mkDerivation {
pname = "oops";
- version = "0.1.2.0";
- sha256 = "025vgnlnilja8sn66w34iy7vc83cpidg3vcvjl1vf1inmncsydrh";
+ version = "0.1.5.0";
+ sha256 = "0yb10jv01mx2czz8sb9qxr0b34wfhvvrai52c26s6q4gwybi77jb";
libraryHaskellDepends = [ base mtl QuickCheck transformers ];
testHaskellDepends = [
base base-compat doctest doctest-discover Glob hedgehog
@@ -210324,6 +210347,28 @@ self: {
maintainers = [ lib.maintainers.Gabriel439 ];
}) {};
+ "optparse-generic_1_4_9" = callPackage
+ ({ mkDerivation, base, bytestring, Only, optparse-applicative
+ , system-filepath, text, time, transformers, transformers-compat
+ , void
+ }:
+ mkDerivation {
+ pname = "optparse-generic";
+ version = "1.4.9";
+ sha256 = "1kxrhh4h2jd2i9fi1lr3sx6wij71n1y50crl0r0j6b3c8hj3c05j";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring Only optparse-applicative system-filepath text time
+ transformers transformers-compat void
+ ];
+ executableHaskellDepends = [ base ];
+ description = "Auto-generate a command-line parser for your datatype";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ maintainers = [ lib.maintainers.Gabriel439 ];
+ }) {};
+
"optparse-helper" = callPackage
({ mkDerivation, base, optparse-applicative }:
mkDerivation {
@@ -214219,12 +214264,12 @@ self: {
mainProgram = "parseargs-example";
}) {};
- "parsec_3_1_15_1" = callPackage
+ "parsec_3_1_16_1" = callPackage
({ mkDerivation, base, bytestring, mtl, tasty, tasty-hunit, text }:
mkDerivation {
pname = "parsec";
- version = "3.1.15.1";
- sha256 = "1pcqgxzhzlyaxrkgdixsl0jh7jfcg66kwqqf6va0am8q64ar1r5b";
+ version = "3.1.16.1";
+ sha256 = "0ihjbmsn9hrryjid0ydh6vryzq2mnzavhdb7hxc8d9kfszjn46d4";
libraryHaskellDepends = [ base bytestring mtl text ];
testHaskellDepends = [ base mtl tasty tasty-hunit ];
description = "Monadic parser combinators";
@@ -214884,12 +214929,25 @@ self: {
license = lib.licenses.asl20;
}) {};
+ "partial-semigroup_0_6_0_1" = callPackage
+ ({ mkDerivation, base, hedgehog }:
+ mkDerivation {
+ pname = "partial-semigroup";
+ version = "0.6.0.1";
+ sha256 = "1zzpv5b860k22wng7qa0pcj129vgzm2vxda5x1f26f9vc0bm8q18";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base hedgehog ];
+ description = "A partial binary associative operator";
+ license = lib.licenses.asl20;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"partial-semigroup-hedgehog" = callPackage
({ mkDerivation, base, hedgehog, partial-semigroup }:
mkDerivation {
pname = "partial-semigroup-hedgehog";
- version = "0.6.0.13";
- sha256 = "117k12wgaypj7lkj9lqi7xhli9f33hsd455p87g9xxcwx32m0r53";
+ version = "0.6.0.14";
+ sha256 = "1f5c2z8ivmdbdy5s2f4q3pbrb4k53503zwsdc8c5drm34wrvim3b";
libraryHaskellDepends = [ base hedgehog partial-semigroup ];
description = "Property testing for partial semigroups using Hedgehog";
license = lib.licenses.asl20;
@@ -215507,6 +215565,20 @@ self: {
license = lib.licenses.asl20;
}) {};
+ "path-text-utf8_0_0_1_11" = callPackage
+ ({ mkDerivation, base, bytestring, path, safe-exceptions, text }:
+ mkDerivation {
+ pname = "path-text-utf8";
+ version = "0.0.1.11";
+ sha256 = "1dxqbcwsr3ayijssm7wr6z96p3vrwrfqhr15zhg7m3i2ad44wz8c";
+ libraryHaskellDepends = [
+ base bytestring path safe-exceptions text
+ ];
+ description = "Read and write UTF-8 text files";
+ license = lib.licenses.asl20;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"path-tree" = callPackage
({ mkDerivation, base, containers, relude }:
mkDerivation {
@@ -223255,30 +223327,6 @@ self: {
}) {};
"poly" = callPackage
- ({ mkDerivation, base, deepseq, doctest, finite-typelits, gauge
- , mod, primitive, QuickCheck, quickcheck-classes, semirings, tasty
- , tasty-quickcheck, vector, vector-algorithms, vector-sized
- }:
- mkDerivation {
- pname = "poly";
- version = "0.5.0.0";
- sha256 = "1h7nbyiwnbxyj2jss04raws7zapfq7mvzj7fmi8rqyr0aw91k4zl";
- libraryHaskellDepends = [
- base deepseq finite-typelits primitive semirings vector
- vector-algorithms vector-sized
- ];
- testHaskellDepends = [
- base doctest finite-typelits mod QuickCheck quickcheck-classes
- semirings tasty tasty-quickcheck vector vector-sized
- ];
- benchmarkHaskellDepends = [
- base deepseq gauge mod semirings vector
- ];
- description = "Polynomials";
- license = lib.licenses.bsd3;
- }) {};
-
- "poly_0_5_1_0" = callPackage
({ mkDerivation, base, deepseq, finite-typelits, mod, primitive
, QuickCheck, quickcheck-classes, quickcheck-classes-base
, semirings, tasty, tasty-bench, tasty-quickcheck, vector
@@ -223302,7 +223350,6 @@ self: {
];
description = "Polynomials";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"poly-arity" = callPackage
@@ -225577,22 +225624,6 @@ self: {
}) {};
"postgresql-libpq" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, postgresql, unix }:
- mkDerivation {
- pname = "postgresql-libpq";
- version = "0.9.4.3";
- sha256 = "1gfnhc5pibn7zmifdf2g0c112xrpzsk756ln2kjzqljkspf4dqp3";
- revision = "3";
- editedCabalFile = "02cj493a2qxl5hddiq0579079s398hdqqy164pig6d61nl7q66cs";
- setupHaskellDepends = [ base Cabal ];
- libraryHaskellDepends = [ base bytestring unix ];
- librarySystemDepends = [ postgresql ];
- testHaskellDepends = [ base bytestring ];
- description = "low-level binding to libpq";
- license = lib.licenses.bsd3;
- }) {inherit (pkgs) postgresql;};
-
- "postgresql-libpq_0_9_5_0" = callPackage
({ mkDerivation, base, bytestring, Cabal, postgresql, unix }:
mkDerivation {
pname = "postgresql-libpq";
@@ -225604,7 +225635,6 @@ self: {
testHaskellDepends = [ base bytestring ];
description = "low-level binding to libpq";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {inherit (pkgs) postgresql;};
"postgresql-libpq-notify" = callPackage
@@ -227712,8 +227742,8 @@ self: {
({ mkDerivation, base, bytestring, filepath, text }:
mkDerivation {
pname = "pretty-html";
- version = "0.1.0.0";
- sha256 = "099gj9h1smgjnp8xyrp5c0hj99f35lf7jc6rgmbnh8s7ra3a1gz5";
+ version = "0.1.0.1";
+ sha256 = "14f2jydcjxnm9whxi2irvsx769xc4041dpvn3r7iahcn5gqf3krr";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base text ];
testHaskellDepends = [ base bytestring filepath text ];
@@ -228521,6 +228551,17 @@ self: {
broken = true;
}) {};
+ "primitive-slice" = callPackage
+ ({ mkDerivation, base, primitive, primitive-unlifted }:
+ mkDerivation {
+ pname = "primitive-slice";
+ version = "0.1.0.0";
+ sha256 = "07bwpvqvv42x9dz4wb1k6nia9pj0d406k0apgkxyxhvd6wwk0hxz";
+ libraryHaskellDepends = [ base primitive primitive-unlifted ];
+ description = "Slices of primitive arrays";
+ license = lib.licenses.bsd3;
+ }) {};
+
"primitive-sort" = callPackage
({ mkDerivation, base, containers, contiguous, doctest, gauge
, ghc-prim, HUnit, primitive, QuickCheck, random, smallcheck, tasty
@@ -228581,26 +228622,6 @@ self: {
license = 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 = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- }) {};
-
"primula-board" = callPackage
({ mkDerivation, base, ConfigFile, containers, directory, happstack
, happstack-helpers, happstack-server, happstack-state, hsp
@@ -230446,8 +230467,8 @@ self: {
}:
mkDerivation {
pname = "proteaaudio";
- version = "0.9.2";
- sha256 = "0wrahbiq7pa7bg0x7z9ynmy9ap30rj0lldgc2m7b49zhj43kax83";
+ version = "0.9.3";
+ sha256 = "12572f2pwn3akzwqi83p734jabrfinr7bb89yhinl8pari7lya7k";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
@@ -230465,8 +230486,8 @@ self: {
({ mkDerivation, base, bytestring, c2hs, SDL2 }:
mkDerivation {
pname = "proteaaudio-sdl";
- version = "0.9.2";
- sha256 = "0qn6rnv4wc0g8s2mnsx71281nmgi29gnnnbskzy1kbzrwxlshrcc";
+ version = "0.9.3";
+ sha256 = "117fn2a5821ifl4yv94bwiylbnbhriqgjdl9c4685z98m0n9ryap";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
@@ -232048,6 +232069,7 @@ self: {
];
description = "types and parser for email messages (including MIME)";
license = lib.licenses.agpl3Plus;
+ maintainers = [ lib.maintainers.maralorn ];
}) {};
"purenix" = callPackage
@@ -243522,8 +243544,8 @@ self: {
}:
mkDerivation {
pname = "rest-rewrite";
- version = "0.4.0";
- sha256 = "0vvb4jk0s699h4dcdls1yxzyaja1gwpqdchfy5wbg0fybfw94pr5";
+ version = "0.4.1";
+ sha256 = "0h9s6s9wv8fgs6xi2fqdycybjl8si0w50mlk1zc62dmjdzwxy8dx";
libraryHaskellDepends = [
base containers hashable monad-loops mtl parsec process QuickCheck
text time unordered-containers
@@ -248737,19 +248759,6 @@ self: {
}) {};
"sample-frame" = callPackage
- ({ mkDerivation, base, QuickCheck, storable-record }:
- mkDerivation {
- pname = "sample-frame";
- version = "0.0.3";
- sha256 = "0ivj0bcnqqc805np62bdpvh8v4ykmw86ph5rp7k54bbv9wd31bsv";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base QuickCheck storable-record ];
- description = "Handling of samples in an (audio) signal";
- license = lib.licenses.bsd3;
- }) {};
-
- "sample-frame_0_0_4" = callPackage
({ mkDerivation, base, QuickCheck, storable-record }:
mkDerivation {
pname = "sample-frame";
@@ -248760,21 +248769,9 @@ self: {
libraryHaskellDepends = [ base QuickCheck storable-record ];
description = "Handling of samples in an (audio) signal";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"sample-frame-np" = callPackage
- ({ mkDerivation, base, numeric-prelude, sample-frame }:
- mkDerivation {
- pname = "sample-frame-np";
- version = "0.0.4.1";
- sha256 = "091nz5w5511xl8hp2q8dfvs4jz15nkhz22rr97zga0vmn0hpdnxi";
- libraryHaskellDepends = [ base numeric-prelude sample-frame ];
- description = "Orphan instances for types from sample-frame and numericprelude";
- license = lib.licenses.bsd3;
- }) {};
-
- "sample-frame-np_0_0_5" = callPackage
({ mkDerivation, base, numeric-prelude, sample-frame }:
mkDerivation {
pname = "sample-frame-np";
@@ -248783,7 +248780,6 @@ self: {
libraryHaskellDepends = [ base numeric-prelude sample-frame ];
description = "Orphan instances for types from sample-frame and numericprelude";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"sampling" = callPackage
@@ -249560,6 +249556,37 @@ self: {
broken = true;
}) {inherit (pkgs) z3;};
+ "sbv_9_1" = callPackage
+ ({ mkDerivation, array, async, base, bytestring, containers
+ , deepseq, directory, filepath, hlint, libBF, mtl, pretty, process
+ , QuickCheck, random, syb, tasty, tasty-bench, tasty-golden
+ , tasty-hunit, tasty-quickcheck, template-haskell, text, time
+ , transformers, uniplate, z3
+ }:
+ mkDerivation {
+ pname = "sbv";
+ version = "9.1";
+ sha256 = "0wkpx73blwg629l4y9vjjlhbk4qa1zzddc4z8qvida62qwcdxw6w";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ array async base containers deepseq directory filepath libBF mtl
+ pretty process QuickCheck random syb template-haskell text time
+ transformers uniplate
+ ];
+ testHaskellDepends = [
+ base bytestring containers directory filepath hlint mtl process
+ QuickCheck random tasty tasty-golden tasty-hunit tasty-quickcheck
+ ];
+ testSystemDepends = [ z3 ];
+ benchmarkHaskellDepends = [
+ base deepseq filepath process random tasty tasty-bench time
+ ];
+ description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
+ }) {inherit (pkgs) z3;};
+
"sbvPlugin" = callPackage
({ mkDerivation, base, containers, directory, filepath, ghc
, ghc-prim, mtl, process, sbv, tasty, tasty-golden
@@ -252815,6 +252842,8 @@ self: {
pname = "sensei";
version = "0.6.2";
sha256 = "168znkrlciywsqpgbssnz2n2w1w6240j1cxk83bpzlflg7q934ps";
+ revision = "1";
+ editedCabalFile = "0i4k8zdyvv3ypwqg2x5s4p0dgszpgb6g8wc0s9zi05fyzhizpi4s";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -257311,9 +257340,7 @@ self: {
testHaskellDepends = [ base ];
description = "A command line tool to convert TrueType/OpenType fonts to WOFF format";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
mainProgram = "sfnt2woff";
- broken = true;
}) {inherit (pkgs) zlib;};
"sgd" = callPackage
@@ -257673,6 +257700,23 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "shake-cabal_0_2_2_3" = callPackage
+ ({ mkDerivation, base, binary, Cabal, composition-prelude, deepseq
+ , directory, filepath, hashable, shake
+ }:
+ mkDerivation {
+ pname = "shake-cabal";
+ version = "0.2.2.3";
+ sha256 = "0gl0yiimbwcrhbh24bgm6dm3nqz4ldzgm73k1fg9sms4r2pr15hy";
+ libraryHaskellDepends = [
+ base binary Cabal composition-prelude deepseq directory filepath
+ hashable shake
+ ];
+ description = "Shake library for use with cabal";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"shake-cabal-build" = callPackage
({ mkDerivation, base, Cabal, directory, filepath, process }:
mkDerivation {
@@ -261815,8 +261859,8 @@ self: {
}:
mkDerivation {
pname = "sketch-frp-copilot";
- version = "1.0.5";
- sha256 = "0vz7p5vsjkvck3znn9ywbyi1vw0cmfb5n48m2sbcm4ky7j5x7yps";
+ version = "1.0.6";
+ sha256 = "1hxz51vx1a1p0v8sajv2ch6y261lm4s9z5fvp5w86qygsd1zy2px";
libraryHaskellDepends = [
base containers copilot copilot-c99 copilot-language mtl
optparse-applicative
@@ -269684,24 +269728,25 @@ self: {
({ mkDerivation, aeson, aeson-casing, aeson-pretty, amazonka
, amazonka-cloudformation, amazonka-core, amazonka-ec2
, amazonka-lambda, amazonka-sts, base, Blammo, bytestring, cfn-flip
- , conduit, containers, errors, exceptions, extra, filepath, Glob
- , hspec, lens, lens-aeson, monad-logger, mtl, optparse-applicative
- , QuickCheck, resourcet, rio, text, time, unliftio, unliftio-core
- , unordered-containers, uuid, yaml
+ , conduit, containers, envparse, errors, exceptions, extra
+ , filepath, Glob, hspec, lens, lens-aeson, monad-logger, mtl
+ , optparse-applicative, QuickCheck, resourcet, rio, semigroups
+ , text, time, unliftio, unliftio-core, unordered-containers, uuid
+ , yaml
}:
mkDerivation {
pname = "stackctl";
- version = "1.1.3.1";
- sha256 = "0mzn546zjgqjiky4mv19ap1qa6xxdf280qkmq041d9sj5s4xp2vh";
+ version = "1.3.0.0";
+ sha256 = "1a97xkbvcvr7r85b4xrzdijap3zw02j0rqxix3ld9ns907mkdq2n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-casing aeson-pretty amazonka amazonka-cloudformation
amazonka-core amazonka-ec2 amazonka-lambda amazonka-sts base Blammo
- bytestring cfn-flip conduit containers errors exceptions extra
- filepath Glob lens lens-aeson monad-logger mtl optparse-applicative
- resourcet rio text time unliftio unliftio-core unordered-containers
- uuid yaml
+ bytestring cfn-flip conduit containers envparse errors exceptions
+ extra filepath Glob lens lens-aeson monad-logger mtl
+ optparse-applicative resourcet rio semigroups text time unliftio
+ unliftio-core unordered-containers uuid yaml
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
@@ -273176,6 +273221,8 @@ self: {
pname = "string-conversions";
version = "0.4.0.1";
sha256 = "150rdank90h7v08x0wq4dffjbxv2daf5v9sqfs5mab76kinwxg26";
+ revision = "1";
+ editedCabalFile = "1g3wxx579mhs2icxngi78pvjfybbk606a6vgns88pg6ws5hrvx4s";
libraryHaskellDepends = [ base bytestring text utf8-string ];
testHaskellDepends = [
base bytestring deepseq hspec QuickCheck quickcheck-instances text
@@ -273876,6 +273923,7 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Convert between strong and weak representations of types";
license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.raehik ];
}) {};
"strptime" = callPackage
@@ -274269,6 +274317,40 @@ self: {
mainProgram = "stylish-haskell";
}) {};
+ "stylish-haskell_0_14_4_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, Cabal, containers
+ , directory, file-embed, filepath, ghc-lib-parser
+ , ghc-lib-parser-ex, HsYAML, HsYAML-aeson, HUnit, mtl
+ , optparse-applicative, random, regex-tdfa, strict, syb
+ , test-framework, test-framework-hunit, text
+ }:
+ mkDerivation {
+ pname = "stylish-haskell";
+ version = "0.14.4.0";
+ sha256 = "0y0vfz5vkvw0wzcsw2ym3nix0v3pwjw2vas0qv3lrhdvn3ba9gb7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal containers directory file-embed
+ filepath ghc-lib-parser ghc-lib-parser-ex HsYAML HsYAML-aeson mtl
+ regex-tdfa syb text
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring Cabal containers directory file-embed
+ filepath ghc-lib-parser ghc-lib-parser-ex HsYAML HsYAML-aeson mtl
+ optparse-applicative regex-tdfa strict syb text
+ ];
+ testHaskellDepends = [
+ aeson base bytestring Cabal containers directory file-embed
+ filepath ghc-lib-parser ghc-lib-parser-ex HsYAML HsYAML-aeson HUnit
+ mtl random regex-tdfa syb test-framework test-framework-hunit text
+ ];
+ description = "Haskell code prettifier";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ mainProgram = "stylish-haskell";
+ }) {};
+
"stylist" = callPackage
({ mkDerivation, async, base, css-syntax, hashable, hspec
, network-uri, QuickCheck, regex-tdfa, scientific, stylist-traits
@@ -275292,21 +275374,21 @@ self: {
({ mkDerivation, base, supply-chain-core }:
mkDerivation {
pname = "supply-chain";
- version = "0.0.0.0";
- sha256 = "12rdx593ivps3khxpvq0r1kc99jhzvc0qfkdxa7jdy0qn22fi3dx";
+ version = "0.0.0.1";
+ sha256 = "0g7hfbzqwrl30bkrk1pxiriyg2xdzv5ia77mba58sv7g0bacjz2a";
libraryHaskellDepends = [ base supply-chain-core ];
description = "Composable request-response pipelines";
license = lib.licenses.asl20;
}) {};
"supply-chain-core" = callPackage
- ({ mkDerivation, base, tasty, tasty-hedgehog, tasty-hunit }:
+ ({ mkDerivation, base, hspec }:
mkDerivation {
pname = "supply-chain-core";
- version = "0.0.0.0";
- sha256 = "17ih0pvfk0xzr30q9094gf8ry8pvnannr92hvk86z7j514nv6q9h";
+ version = "0.0.0.1";
+ sha256 = "18x9g2qacvyar4ckv4giaxxdkwn8prrl2xyzgd7p6h8pzb5xbjzz";
libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base tasty tasty-hedgehog tasty-hunit ];
+ testHaskellDepends = [ base hspec ];
description = "Composable request-response pipelines";
license = lib.licenses.asl20;
}) {};
@@ -275972,32 +276054,6 @@ self: {
}) {};
"swish" = callPackage
- ({ mkDerivation, base, containers, directory, filepath, hashable
- , HUnit, intern, mtl, network-uri, polyparse, semigroups
- , test-framework, test-framework-hunit, text, time
- }:
- mkDerivation {
- pname = "swish";
- version = "0.10.2.0";
- sha256 = "162sq6k9ylzlnqj4l9plykvhhrkc7sc08bza6az5cadfvnqlham8";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base containers directory filepath hashable intern mtl network-uri
- polyparse text time
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- base containers hashable HUnit network-uri semigroups
- test-framework test-framework-hunit text time
- ];
- description = "A semantic web toolkit";
- license = lib.licenses.lgpl21Only;
- mainProgram = "Swish";
- }) {};
-
- "swish_0_10_3_0" = callPackage
({ mkDerivation, base, containers, directory, filepath, hashable
, HUnit, intern, mtl, network-uri, polyparse, semigroups
, test-framework, test-framework-hunit, text, time
@@ -276020,7 +276076,6 @@ self: {
];
description = "A semantic web toolkit";
license = lib.licenses.lgpl21Plus;
- hydraPlatforms = lib.platforms.none;
mainProgram = "Swish";
}) {};
@@ -277530,41 +277585,6 @@ self: {
}) {};
"synthesizer-core" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, containers
- , deepseq, directory, event-list, explicit-exception, filepath
- , non-empty, non-negative, numeric-prelude, numeric-quest, old-time
- , process, QuickCheck, random, sample-frame-np, semigroups, sox
- , storable-record, storable-tuple, storablevector, timeit
- , transformers, utility-ht
- }:
- mkDerivation {
- pname = "synthesizer-core";
- version = "0.8.2.1";
- sha256 = "1sdvqabxlgiqqb3kppxwyvmkmvcqrmrzicbmcmy6mr5c4npjxffj";
- revision = "1";
- editedCabalFile = "1c3l83qrdn3nxpp0gsr06iz9praw37c2j9zjj15pxd8in73mb74a";
- libraryHaskellDepends = [
- array base binary bytestring containers deepseq event-list
- explicit-exception filepath non-empty non-negative numeric-prelude
- numeric-quest process QuickCheck random sample-frame-np semigroups
- sox storable-record storable-tuple storablevector transformers
- utility-ht
- ];
- testHaskellDepends = [
- base containers event-list non-empty non-negative numeric-prelude
- QuickCheck random storable-tuple storablevector transformers
- utility-ht
- ];
- benchmarkHaskellDepends = [
- array base binary bytestring directory numeric-prelude old-time
- storable-tuple storablevector timeit utility-ht
- ];
- description = "Audio signal processing coded in Haskell: Low level part";
- license = "GPL";
- hydraPlatforms = lib.platforms.none;
- }) {};
-
- "synthesizer-core_0_8_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, deepseq, directory, event-list, explicit-exception, filepath
, non-empty, non-negative, numeric-prelude, numeric-quest, old-time
@@ -280057,8 +280077,8 @@ self: {
pname = "tasty-hspec";
version = "1.2.0.1";
sha256 = "0ibl2xi6mmqad2mriz67nb7pjwwvjik385amp24j9kc7a7zkx091";
- revision = "1";
- editedCabalFile = "0a6r4gzxzp6n90z0nif7ha7p7am57hs48i54i2y4z9kgjv6lnvll";
+ revision = "2";
+ editedCabalFile = "0qyp20khzr6ingdjmmwlhlklc26257wds56cn2pwss3yf1j5blv1";
libraryHaskellDepends = [
base hspec hspec-core QuickCheck tasty tasty-quickcheck
tasty-smallcheck
@@ -280067,6 +280087,23 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "tasty-hspec_1_2_0_3" = callPackage
+ ({ mkDerivation, base, hspec, hspec-core, QuickCheck, tasty
+ , tasty-quickcheck, tasty-smallcheck
+ }:
+ mkDerivation {
+ pname = "tasty-hspec";
+ version = "1.2.0.3";
+ sha256 = "150dvscaa0sv5pjsd74mmnp9f0jmz09qs24swz73wwjzrzmnypcx";
+ libraryHaskellDepends = [
+ base hspec hspec-core QuickCheck tasty tasty-quickcheck
+ tasty-smallcheck
+ ];
+ description = "Hspec support for the Tasty test framework";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"tasty-html" = callPackage
({ mkDerivation, base, blaze-html, bytestring, containers, filepath
, generic-deriving, mtl, semigroups, stm, tagged, tasty, text
@@ -280474,8 +280511,8 @@ self: {
}:
mkDerivation {
pname = "tasty-sugar";
- version = "2.0.0.1";
- sha256 = "0rgq5k9vv72c5826acpfscjfszvyi5bms5wjbw7bs0izimqw7b1j";
+ version = "2.0.1.0";
+ sha256 = "1mngpdfafdxsnczi9hzvg4awg1y845srrk3f19lmnig6f70kg23h";
libraryHaskellDepends = [
base containers directory filemanip filepath kvitable logict
microlens mtl optparse-applicative parallel prettyprinter tasty
@@ -284137,39 +284174,6 @@ self: {
}) {};
"text-show-instances" = callPackage
- ({ mkDerivation, aeson, base, base-compat, bifunctors, binary
- , containers, directory, generic-deriving, ghc-boot-th, ghc-prim
- , haskeline, hpc, hspec, hspec-discover, old-locale, old-time
- , pretty, QuickCheck, quickcheck-instances, random, scientific
- , semigroups, tagged, template-haskell, terminfo, text, text-short
- , text-show, th-orphans, time, transformers, transformers-compat
- , unix, unordered-containers, uuid-types, vector, xhtml
- }:
- mkDerivation {
- pname = "text-show-instances";
- version = "3.9.3";
- sha256 = "153hfl8k0489ll71apq48s59ngv8ag1vyhhs6pp3fgxmdwwg2xpl";
- libraryHaskellDepends = [
- aeson base base-compat bifunctors binary containers directory
- ghc-boot-th haskeline hpc old-locale old-time pretty random
- scientific semigroups tagged template-haskell terminfo text
- text-short text-show time transformers unix unordered-containers
- uuid-types vector xhtml
- ];
- testHaskellDepends = [
- aeson base base-compat bifunctors binary containers directory
- generic-deriving ghc-boot-th ghc-prim haskeline hpc hspec
- old-locale old-time pretty QuickCheck quickcheck-instances random
- scientific tagged template-haskell terminfo text-short text-show
- th-orphans time transformers transformers-compat unix
- unordered-containers uuid-types vector xhtml
- ];
- testToolDepends = [ hspec-discover ];
- description = "Additional instances for text-show";
- license = lib.licenses.bsd3;
- }) {};
-
- "text-show-instances_3_9_4" = callPackage
({ mkDerivation, aeson, base, base-compat, bifunctors, binary
, containers, directory, generic-deriving, ghc-boot-th, ghc-prim
, haskeline, hpc, hspec, hspec-discover, old-locale, old-time
@@ -284200,7 +284204,6 @@ self: {
testToolDepends = [ hspec-discover ];
description = "Additional instances for text-show";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"text-stream-decode" = callPackage
@@ -290004,12 +290007,12 @@ self: {
mainProgram = "Benchmark";
}) {};
- "transformers_0_6_0_5" = callPackage
+ "transformers_0_6_0_6" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "transformers";
- version = "0.6.0.5";
- sha256 = "09s4svr1z1y93qwzq22py0s2s35b6lyszyfippiimccqrbk1jlsm";
+ version = "0.6.0.6";
+ sha256 = "1savf7rjhji0lcx7fv0gz7ci6dn1sycdgh5flqr63y31spbj4q3w";
libraryHaskellDepends = [ base ];
description = "Concrete functor and monad transformers";
license = lib.licenses.bsd3;
@@ -295715,19 +295718,6 @@ self: {
}) {};
"unfork" = callPackage
- ({ mkDerivation, async, base, safe-exceptions, stm }:
- mkDerivation {
- pname = "unfork";
- version = "1.0.0.0";
- sha256 = "0k770q549f1rcdhx21nb6n1van00za2wv50angdw5gkxihzczcjq";
- revision = "1";
- editedCabalFile = "1vwlyyrczrkma8ggzn29b6vwfbq51h3m1si1jfh6v5c99vajr33y";
- libraryHaskellDepends = [ async base safe-exceptions stm ];
- description = "Make any action thread safe";
- license = lib.licenses.asl20;
- }) {};
-
- "unfork_1_0_0_1" = callPackage
({ mkDerivation, async, base, safe-exceptions, stm }:
mkDerivation {
pname = "unfork";
@@ -295736,7 +295726,6 @@ self: {
libraryHaskellDepends = [ async base safe-exceptions stm ];
description = "Make any action thread safe";
license = lib.licenses.asl20;
- hydraPlatforms = lib.platforms.none;
}) {};
"unfree" = callPackage
@@ -308072,25 +308061,6 @@ self: {
}) {};
"witch" = callPackage
- ({ mkDerivation, base, bytestring, containers, HUnit, tagged
- , template-haskell, text, time, transformers
- }:
- mkDerivation {
- pname = "witch";
- version = "1.1.5.0";
- sha256 = "1lg3kdy18d1cabb39hrj7k9s4ryc1bfrx6ln5k3j640ankdv1asj";
- libraryHaskellDepends = [
- base bytestring containers tagged template-haskell text time
- ];
- testHaskellDepends = [
- base bytestring containers HUnit tagged text time transformers
- ];
- description = "Convert values from one type into another";
- license = lib.licenses.mit;
- maintainers = [ lib.maintainers.maralorn ];
- }) {};
-
- "witch_1_1_6_0" = callPackage
({ mkDerivation, base, bytestring, containers, HUnit, tagged
, template-haskell, text, time, transformers
}:
@@ -308106,7 +308076,6 @@ self: {
];
description = "Convert values from one type into another";
license = lib.licenses.mit;
- hydraPlatforms = lib.platforms.none;
maintainers = [ lib.maintainers.maralorn ];
}) {};
@@ -310354,8 +310323,8 @@ self: {
}:
mkDerivation {
pname = "xcffib";
- version = "1.1.2";
- sha256 = "068g730p0rbsf1l7k9jgc9d7ng0zx3552wqk357wl3q56jac0chs";
+ version = "1.2.0";
+ sha256 = "0xsjr73ayld2ra40715hk319cc353vpiv2xpv58cvwfdh76n5nsy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -310372,9 +310341,7 @@ self: {
];
description = "A cffi-based python binding for X";
license = "unknown";
- hydraPlatforms = lib.platforms.none;
mainProgram = "xcffibgen";
- broken = true;
}) {};
"xchat-plugin" = callPackage
@@ -317645,8 +317612,8 @@ self: {
}:
mkDerivation {
pname = "zephyr-copilot";
- version = "1.0.5";
- sha256 = "1fc58cq0dgzqfy84z8mbana8lisnc2df7k7jhramafpl7qgkp9q4";
+ version = "1.0.6";
+ sha256 = "0lakan23rddv8rlrd5h7jzc3g59h22hpdbjgabn4v76aaxpk3rga";
libraryHaskellDepends = [
base containers copilot copilot-c99 copilot-language directory
filepath mtl optparse-applicative sketch-frp-copilot temporary
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index c478c875540d..77ccd301b43f 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -4,6 +4,8 @@
# platform that has NCG support
, useLLVM ? false
, withHoogle ? false
+# Whether to install `doc` outputs for GHC and all included libraries.
+, installDocumentation ? true
, hoogleWithPackages
, postBuild ? ""
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
@@ -54,7 +56,11 @@ let
else "$out/lib/${ghc.targetPrefix}${ghc.haskellCompilerName}";
docDir = "$out/share/doc/ghc/html";
packageCfgDir = "${libDir}/package.conf.d";
- paths = lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages);
+ paths = lib.concatLists (
+ builtins.map
+ (pkg: [ pkg ] ++ lib.optionals installDocumentation [ (lib.getOutput "doc" pkg) ])
+ (lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages))
+ );
hasLibraries = lib.any (x: x.isHaskellLibrary) paths;
# CLang is needed on Darwin for -fllvm to work:
# https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/codegens.html#llvm-code-generator-fllvm
@@ -71,7 +77,9 @@ symlinkJoin {
# if such a feature is needed, the real compiler name should be saved
# as a dedicated drv attribute, like `compiler-name`
name = ghc.name + "-with-packages";
- paths = paths ++ [ghc];
+ paths = paths
+ ++ [ ghc ]
+ ++ lib.optionals installDocumentation [ (lib.getOutput "doc" ghc) ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
# wrap compiler executables with correct env variables
@@ -161,8 +169,8 @@ symlinkJoin {
''}
$out/bin/${ghcCommand}-pkg check
'' + postBuild;
+ preferLocalBuild = true;
passthru = {
- preferLocalBuild = true;
inherit (ghc) version meta;
# Inform users about backwards incompatibilities with <= 21.05
diff --git a/pkgs/tools/security/echidna/default.nix b/pkgs/tools/security/echidna/default.nix
index 8a902068d27b..fcd94f66fbc5 100644
--- a/pkgs/tools/security/echidna/default.nix
+++ b/pkgs/tools/security/echidna/default.nix
@@ -10,13 +10,13 @@
}:
mkDerivation rec {
pname = "echidna";
- version = "2.0.4";
+ version = "2.0.5";
src = fetchFromGitHub {
owner = "crytic";
repo = "echidna";
rev = "v${version}";
- sha256 = "sha256-DiEZGbd08QLP8zgrIssGYL6h18AprcWZSYp1mMu9TRw=";
+ sha256 = "sha256-8bChe+qA4DowfuwsR5wLckb56fXi102g8vL2gAH/kYE=";
};
isLibrary = true;
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index b4beafcfd3c4..6a1c4bcf5db9 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -406,7 +406,7 @@ in {
ghcHEAD = callPackage ../development/haskell-modules {
buildHaskellPackages = bh.packages.ghcHEAD;
ghc = bh.compiler.ghcHEAD;
- compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
+ compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
};
ghcjs = packages.ghcjs810;