lol

Merge pull request #187575 from NixOS/haskell-updates

haskellPackages: update stackage and hackage

authored by

Ellie Hermaszewska and committed by
GitHub
ab0f5208 e0761655

+1973 -1208
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "eb862a59277fd86ad3138e9f25e793f0fe0364ba", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/eb862a59277fd86ad3138e9f25e793f0fe0364ba.tar.gz", 4 - "sha256": "10agwlxzp76lnp4d6zncvjgv78hr3rss3j3i3bfpsn3i7af1qcw8", 5 - "msg": "Update from Hackage at 2022-08-09T06:14:32Z" 2 + "commit": "3c1ad4d78a1d5fc29c5e169f5ba9f82bc580d2f0", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/3c1ad4d78a1d5fc29c5e169f5ba9f82bc580d2f0.tar.gz", 4 + "sha256": "0cd24ibv0i2zq0vvawafm0hqjgv70flmna84g320h5jy3lc0qrv4", 5 + "msg": "Update from Hackage at 2022-08-20T06:29:36Z" 6 6 }
+3 -13
pkgs/development/compilers/ghc/9.4.1.nix pkgs/development/compilers/ghc/9.4.2.nix
··· 1 - # Preliminary GHC 9.4.1 expression using the make build system. 1 + # Preliminary GHC 9.4.2 expression using the make build system. 2 2 # TODO(@sternenseemann): port to hadrian, so we are prepared for 9.6 3 3 # where make support will be dropped. 4 4 { lib, stdenv, pkgsBuildTarget, pkgsHostTarget, targetPackages ··· 177 177 assert stdenv.targetPlatform.isDarwin -> buildTargetLlvmPackages.clang == llvmPackages.clang; 178 178 179 179 stdenv.mkDerivation (rec { 180 - version = "9.4.1"; 180 + version = "9.4.2"; 181 181 pname = "${targetPrefix}ghc${variantSuffix}"; 182 182 183 183 src = fetchurl { 184 184 url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 185 - sha256 = "sha256-y/7UZAvfAl4zulVDPa+M32mPTgSZrnqADd5EqC5zluM="; 185 + sha256 = "7227ef3b5e15a0d70b8f1a43aec32867e2a9b2d857cc0ed556aeed172d4db3a5"; 186 186 }; 187 187 188 188 enableParallelBuilding = true; 189 189 190 190 outputs = [ "out" "doc" ]; 191 191 192 - 193 - patches = [ 194 - # add missing profiling targets in make build system 195 - (fetchpatch { 196 - name = "ghc-9.4.1-fix-bootstrapping-with-profiling-1.patch"; 197 - url = "https://gitlab.haskell.org/ghc/ghc/-/commit/47b4fea08bd0ef1476b8d134c7baf06157fe5fa5.diff"; 198 - sha256 = "sha256-oYQWg9cK0RNL9I+kap8KER+iiKim73zG6URQs8BeAXU="; 199 - }) 200 - ./ghc-9.4.1-fix-bootstrapping-with-profiling-2.patch 201 - ]; 202 192 203 193 postPatch = "patchShebangs ."; 204 194
-24
pkgs/development/compilers/ghc/backport-dylib-command-size-limit.patch
··· 1 - diff --git a/compiler/main/DriverPipeline.hs b/compiler/main/DriverPipeline.hs 2 - index acd0d61..3e83c15 100644 3 - --- a/compiler/main/DriverPipeline.hs 4 - +++ b/compiler/main/DriverPipeline.hs 5 - @@ -1916,6 +1916,7 @@ linkBinary' staticLink dflags o_files dep_packages = do 6 - ++ pkg_framework_opts 7 - ++ debug_opts 8 - ++ thread_opts 9 - + ++ (if (platformOS platform `elem` [OSDarwin]) then [ "-Wl,-dead_strip_dylibs" ] else []) 10 - )) 11 - 12 - exeFileName :: Bool -> DynFlags -> FilePath 13 - diff --git a/compiler/main/SysTools.hs b/compiler/main/SysTools.hs 14 - index 1ab5b13..2ebbf51 100644 15 - --- a/compiler/main/SysTools.hs 16 - +++ b/compiler/main/SysTools.hs 17 - @@ -1737,6 +1737,7 @@ linkDynLib dflags0 o_files dep_packages 18 - ++ map Option pkg_lib_path_opts 19 - ++ map Option pkg_link_opts 20 - ++ map Option pkg_framework_opts 21 - + ++ [ Option "-Wl,-dead_strip_dylibs" ] 22 - ) 23 - OSiOS -> throwGhcExceptionIO (ProgramError "dynamic libraries are not supported on iOS target") 24 - _ -> do
-18
pkgs/development/compilers/ghc/ghc-9.4.1-fix-bootstrapping-with-profiling-2.patch
··· 1 - diff --git a/ghc.mk b/ghc.mk 2 - index dd65e7adfe..b91af56078 100644 3 - --- a/ghc.mk 4 - +++ b/ghc.mk 5 - @@ -509,11 +509,13 @@ libraries/containers/containers/dist-install/build/Data/IntMap/Internal.o: libra 6 - libraries/containers/containers/dist-install/build/Data/Graph.o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.hi 7 - libraries/containers/containers/dist-install/build/Data/Set/Internal.o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.hi 8 - libraries/containers/containers/dist-install/build/Data/IntSet/Internal.o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.hi 9 - +libraries/containers/containers/dist-install/build/Data/Sequence/Internal.o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.hi 10 - 11 - libraries/containers/containers/dist-install/build/Data/IntMap/Internal.p_o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.p_hi 12 - libraries/containers/containers/dist-install/build/Data/Graph.p_o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.p_hi 13 - libraries/containers/containers/dist-install/build/Data/Set/Internal.p_o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.p_hi 14 - libraries/containers/containers/dist-install/build/Data/IntSet/Internal.p_o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.p_hi 15 - +libraries/containers/containers/dist-install/build/Data/Sequence/Internal.p_o: libraries/template-haskell/dist-install/build/Language/Haskell/TH/Lib/Internal.p_hi 16 - 17 - ifeq "$(BIGNUM_BACKEND)" "gmp" 18 - GMP_ENABLED = YES
-296
pkgs/development/compilers/ghc/issue-18549.patch
··· 1 - From fac083e7ac8a37b61a4082bbbca2848e52fd1bb2 Mon Sep 17 00:00:00 2001 2 - From: Ben Gamari <ben@smart-cactus.org> 3 - Date: Sun, 9 Aug 2020 09:15:16 -0400 4 - Subject: [PATCH] Revert "[linker/rtsSymbols] More linker symbols" 5 - 6 - This reverts commit aa2e5863699306920513b216f337de09e29b5bb8. 7 - --- 8 - rts/RtsSymbols.c | 224 ++++------------------------------------------- 9 - 1 file changed, 17 insertions(+), 207 deletions(-) 10 - 11 - diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c 12 - index d10a6900db..b2f90a892d 100644 13 - --- a/rts/RtsSymbols.c 14 - +++ b/rts/RtsSymbols.c 15 - @@ -58,6 +58,7 @@ 16 - SymI_HasProto(signal_handlers) \ 17 - SymI_HasProto(stg_sig_install) \ 18 - SymI_HasProto(rtsTimerSignal) \ 19 - + SymI_HasProto(atexit) \ 20 - SymI_NeedsDataProto(nocldstop) 21 - #endif 22 - 23 - @@ -976,213 +977,29 @@ 24 - RTS_USER_SIGNALS_SYMBOLS \ 25 - RTS_INTCHAR_SYMBOLS 26 - 27 - + 28 - // 64-bit support functions in libgcc.a 29 - -// See https://gcc.gnu.org/onlinedocs/gccint/Libgcc.html#Libgcc 30 - -#define RTS_LIBGCC_SYMBOLS_32 \ 31 - - SymI_NeedsProto(__fixunsdfdi) \ 32 - - /* 4 The GCC low-level runtime library */\ 33 - - /* 4.1.1 Arithmetic functions */\ 34 - - /* SymI_NeedsProto(__ashlsi3) */\ 35 - - SymI_NeedsProto(__ashldi3) \ 36 - - /* SymI_NeedsProto(__ashlti3) */\ 37 - - /* These functions return the result of shifting a left by b bits. */\ 38 - - /* SymI_NeedsProto(__ashrsi3) */\ 39 - - SymI_NeedsProto(__ashrdi3) \ 40 - - /* SymI_NeedsProto(__ashrti3) */\ 41 - - /* These functions return the result of arithmetically shifting a right by b bits. */\ 42 - - /* SymI_NeedsProto(__divsi3) */\ 43 - - SymI_NeedsProto(__divdi3) \ 44 - - /* SymI_NeedsProto(__divti3) */\ 45 - - /* These functions return the quotient of the signed division of a and b. */\ 46 - - /* SymI_NeedsProto(__lshrsi3) */ \ 47 - - SymI_NeedsProto(__lshrdi3) \ 48 - - /* SymI_NeedsProto(__lshrti3) */ \ 49 - - /* These functions return the result of logically shifting a right by b bits. */\ 50 - - /* SymI_NeedsProto(__modsi3) */ \ 51 - - SymI_NeedsProto(__moddi3) \ 52 - - /* SymI_NeedsProto(__modti3) */ \ 53 - - /* These functions return the remainder of the signed division of a and b. */\ 54 - - /* SymI_NeedsProto(__mulsi3) */ \ 55 - - SymI_NeedsProto(__muldi3) \ 56 - - /* SymI_NeedsProto(__multi3) */ \ 57 - - /* These functions return the product of a and b. */\ 58 - - SymI_NeedsProto(__negdi2) \ 59 - - /* SymI_NeedsProto(__negti2) */ \ 60 - - /* These functions return the negation of a. */\ 61 - - /* SymI_NeedsProto(__udivsi3) */ \ 62 - - SymI_NeedsProto(__udivdi3) \ 63 - - /* SymI_NeedsProto(__udivti3) */ \ 64 - - /* These functions return the quotient of the unsigned division of a and b. */\ 65 - - SymI_NeedsProto(__udivmoddi4) \ 66 - - /* SymI_NeedsProto(__udivmodti4) */ \ 67 - - /* These functions calculate both the quotient and remainder of the unsigned division of a and b. The return value is the quotient, and the remainder is placed in variable pointed to by c. */\ 68 - - /* SymI_NeedsProto(__umodsi3) */ \ 69 - - SymI_NeedsProto(__umoddi3) \ 70 - - /* SymI_NeedsProto(__umodti3) */ \ 71 - - /* These functions return the remainder of the unsigned division of a and b. */\ 72 - - /* 4.1.2 Comparison functions */\ 73 - - /* The following functions implement integral comparisons. These functions implement a low-level compare, upon which the higher level comparison operators (such as less than and greater than or equal to) can be constructed. The returned values lie in the range zero to two, to allow the high-level operators to be implemented by testing the returned result using either signed or unsigned comparison. */\ 74 - - SymI_NeedsProto(__cmpdi2) \ 75 - - /* SymI_NeedsProto(__cmpti2) */ \ 76 - - /* These functions perform a signed comparison of a and b. If a is less than b, they return 0; if a is greater than b, they return 2; and if a and b are equal they return 1. */\ 77 - - SymI_NeedsProto(__ucmpdi2) \ 78 - - /* SymI_NeedsProto(__ucmpti2) */ \ 79 - - /* These functions perform an unsigned comparison of a and b. If a is less than b, they return 0; if a is greater than b, they return 2; and if a and b are equal they return 1. */\ 80 - - /* 4.1.3 Trapping arithmetic functions */\ 81 - - /* The following functions implement trapping arithmetic. These functions call the libc function abort upon signed arithmetic overflow. */\ 82 - - SymI_NeedsProto(__absvsi2) \ 83 - - SymI_NeedsProto(__absvdi2) \ 84 - - /* These functions return the absolute value of a. */\ 85 - - /* SymI_NeedsProto(__addvsi3) */ \ 86 - - SymI_NeedsProto(__addvdi3) \ 87 - - /* These functions return the sum of a and b; that is a + b. */\ 88 - - /* SymI_NeedsProto(__mulvsi3) */ \ 89 - - SymI_NeedsProto(__mulvdi3) \ 90 - - /* The functions return the product of a and b; that is a * b. */\ 91 - - SymI_NeedsProto(__negvsi2) \ 92 - - SymI_NeedsProto(__negvdi2) \ 93 - - /* These functions return the negation of a; that is -a. */\ 94 - - /* SymI_NeedsProto(__subvsi3) */ \ 95 - - SymI_NeedsProto(__subvdi3) \ 96 - - /* These functions return the difference between b and a; that is a - b. */\ 97 - - /* 4.1.4 Bit operations */\ 98 - - SymI_NeedsProto(__clzsi2) \ 99 - - SymI_NeedsProto(__clzdi2) \ 100 - - /* SymI_NeedsProto(__clzti2) */ \ 101 - - /* These functions return the number of leading 0-bits in a, starting at the most significant bit position. If a is zero, the result is undefined. */\ 102 - - SymI_NeedsProto(__ctzsi2) \ 103 - - SymI_NeedsProto(__ctzdi2) \ 104 - - /* SymI_NeedsProto(__ctzti2) */ \ 105 - - /* These functions return the number of trailing 0-bits in a, starting at the least significant bit position. If a is zero, the result is undefined. */\ 106 - - SymI_NeedsProto(__ffsdi2) \ 107 - - /* SymI_NeedsProto(__ffsti2) */ \ 108 - - /* These functions return the index of the least significant 1-bit in a, or the value zero if a is zero. The least significant bit is index one. */\ 109 - - SymI_NeedsProto(__paritysi2) \ 110 - - SymI_NeedsProto(__paritydi2) \ 111 - - /* SymI_NeedsProto(__parityti2) */\ 112 - - /* These functions return the value zero if the number of bits set in a is even, and the value one otherwise. */\ 113 - - SymI_NeedsProto(__popcountsi2) \ 114 - - SymI_NeedsProto(__popcountdi2) \ 115 - - /* SymI_NeedsProto(__popcountti2) */ \ 116 - - /* These functions return the number of bits set in a. */\ 117 - - SymI_NeedsProto(__bswapsi2) \ 118 - - SymI_NeedsProto(__bswapdi2) 119 - -#define RTS_LIBGCC_SYMBOLS_aarch32 \ 120 - - /* armv6l */\ 121 - - /* TODO: should check for __ARM_EABI__ */\ 122 - - SymI_NeedsProto(__aeabi_d2f) \ 123 - - SymI_NeedsProto(__aeabi_d2iz) \ 124 - - SymI_NeedsProto(__aeabi_d2lz) \ 125 - - SymI_NeedsProto(__aeabi_d2uiz) \ 126 - - SymI_NeedsProto(__aeabi_d2ulz) \ 127 - - SymI_NeedsProto(__aeabi_dadd) \ 128 - - SymI_NeedsProto(__aeabi_dcmpeq) \ 129 - - SymI_NeedsProto(__aeabi_dcmpge) \ 130 - - SymI_NeedsProto(__aeabi_dcmpgt) \ 131 - - SymI_NeedsProto(__aeabi_dcmple) \ 132 - - SymI_NeedsProto(__aeabi_dcmplt) \ 133 - - SymI_NeedsProto(__aeabi_dcmpun) \ 134 - - SymI_NeedsProto(__aeabi_ddiv) \ 135 - - SymI_NeedsProto(__aeabi_dmul) \ 136 - - SymI_NeedsProto(__aeabi_dneg) \ 137 - - SymI_NeedsProto(__aeabi_dsub) \ 138 - - SymI_NeedsProto(__aeabi_f2d) \ 139 - - SymI_NeedsProto(__aeabi_f2iz) \ 140 - - SymI_NeedsProto(__aeabi_f2lz) \ 141 - - SymI_NeedsProto(__aeabi_f2uiz) \ 142 - - SymI_NeedsProto(__aeabi_f2ulz) \ 143 - - SymI_NeedsProto(__aeabi_fadd) \ 144 - - SymI_NeedsProto(__aeabi_fcmpeq) \ 145 - - SymI_NeedsProto(__aeabi_fcmpge) \ 146 - - SymI_NeedsProto(__aeabi_fcmpgt) \ 147 - - SymI_NeedsProto(__aeabi_fcmple) \ 148 - - SymI_NeedsProto(__aeabi_fcmplt) \ 149 - - SymI_NeedsProto(__aeabi_fcmpun) \ 150 - - SymI_NeedsProto(__aeabi_fdiv) \ 151 - - SymI_NeedsProto(__aeabi_fmul) \ 152 - - SymI_NeedsProto(__aeabi_fneg) \ 153 - - SymI_NeedsProto(__aeabi_fsub) \ 154 - - SymI_NeedsProto(__aeabi_i2d) \ 155 - - SymI_NeedsProto(__aeabi_i2f) \ 156 - - SymI_NeedsProto(__aeabi_idiv) \ 157 - - SymI_NeedsProto(__aeabi_idivmod) \ 158 - - SymI_NeedsProto(__aeabi_l2d) \ 159 - - SymI_NeedsProto(__aeabi_l2f) \ 160 - - SymI_NeedsProto(__aeabi_lasr) \ 161 - - SymI_NeedsProto(__aeabi_lcmp) \ 162 - - SymI_NeedsProto(__aeabi_ldivmod) \ 163 - - SymI_NeedsProto(__aeabi_llsl) \ 164 - - SymI_NeedsProto(__aeabi_llsr) \ 165 - - SymI_NeedsProto(__aeabi_lmul) \ 166 - - SymI_NeedsProto(__aeabi_ui2d) \ 167 - - SymI_NeedsProto(__aeabi_ui2f) \ 168 - - SymI_NeedsProto(__aeabi_uidiv) \ 169 - - SymI_NeedsProto(__aeabi_uidivmod) \ 170 - - SymI_NeedsProto(__aeabi_ul2d) \ 171 - - SymI_NeedsProto(__aeabi_ul2f) \ 172 - - SymI_NeedsProto(__aeabi_ulcmp) \ 173 - - SymI_NeedsProto(__aeabi_uldivmod) 174 - -#define RTS_LIBGCC_SYMBOLS_64 \ 175 - +#if defined(__GNUC__) && SIZEOF_VOID_P <= 4 && !defined(_ABIN32) 176 - +#define RTS_LIBGCC_SYMBOLS \ 177 - + SymI_NeedsProto(__divdi3) \ 178 - + SymI_NeedsProto(__udivdi3) \ 179 - + SymI_NeedsProto(__moddi3) \ 180 - + SymI_NeedsProto(__umoddi3) \ 181 - + SymI_NeedsProto(__muldi3) \ 182 - + SymI_NeedsProto(__ashldi3) \ 183 - + SymI_NeedsProto(__ashrdi3) \ 184 - + SymI_NeedsProto(__lshrdi3) \ 185 - + SymI_NeedsProto(__fixunsdfdi) 186 - +#elif defined(__GNUC__) && SIZEOF_VOID_P == 8 187 - +#define RTS_LIBGCC_SYMBOLS \ 188 - SymI_NeedsProto(__udivti3) \ 189 - SymI_NeedsProto(__umodti3) 190 - - 191 - -/* for aarch64 */ 192 - -#define RTS_LIBGCC_SYMBOLS_aarch64 \ 193 - - SymI_NeedsProto(__netf2) \ 194 - - SymI_NeedsProto(__addtf3) \ 195 - - SymI_NeedsProto(__subtf3) \ 196 - - SymI_NeedsProto(__multf3) \ 197 - - SymI_NeedsProto(__extenddftf2) \ 198 - - SymI_NeedsProto(__fixtfsi) \ 199 - - SymI_NeedsProto(__fixunstfsi) \ 200 - - SymI_NeedsProto(__floatsitf) \ 201 - - SymI_NeedsProto(__floatunsitf) 202 - - 203 - -#if defined(__GNUC__) && SIZEOF_VOID_P <= 4 && defined(arm_HOST_OS) 204 - -#define RTS_LIBGCC_SYMBOLS RTS_LIBGCC_SYMBOLS_32 RTS_LIBGCC_SYMBOLS_aarch32 205 - -#elif defined(__GNUC__) && SIZEOF_VOID_P <= 4 && !defined(_ABIN32) 206 - -#define RTS_LIBGCC_SYMBOLS RTS_LIBGCC_SYMBOLS_32 207 - -#elif defined(__GNUC__) && SIZEOF_VOID_P == 8 && defined(aarch64_HOST_OS) 208 - -#define RTS_LIBGCC_SYMBOLS RTS_LIBGCC_SYMBOLS_64 RTS_LIBGCC_SYMBOLS_aarch64 209 - -#elif defined(__GNUC__) && SIZEOF_VOID_P == 8 210 - -#define RTS_LIBGCC_SYMBOLS RTS_LIBGCC_SYMBOLS_64 211 - #else 212 - #define RTS_LIBGCC_SYMBOLS 213 - #endif 214 - 215 - -#if !defined(mingw32_HOST_OS) && !defined(DYNAMIC) && (defined(_FORTIFY_SOURCE) || defined(__SSP__)) 216 - -#define RTS_SSP_SYMBOLS \ 217 - - SymI_NeedsProto(__stack_chk_guard) \ 218 - - SymI_NeedsProto(__stack_chk_fail) 219 - -#else 220 - -#define RTS_SSP_SYMBOLS 221 - -#endif 222 - -#if !defined(DYNAMIC) && defined(linux_HOST_OS) 223 - -// we need these for static musl builds. However when 224 - -// linking shared objects (DLLs) this will fail, hence 225 - -// we do not include them when building with -DDYNAMIC 226 - -#define RTS_LINKER_SYMBOLS \ 227 - - SymI_NeedsProto(__fini_array_start) \ 228 - - SymI_NeedsProto(__fini_array_end) 229 - -#else 230 - -#define RTS_LINKER_SYMBOLS 231 - -#endif 232 - - 233 - -#if defined(darwin_HOST_OS) && defined(powerpc_HOST_ARCH) 234 - - // Symbols that don't have a leading underscore 235 - - // on Mac OS X. They have to receive special treatment, 236 - - // see machoInitSymbolsWithoutUnderscore() 237 - -#define RTS_MACHO_NOUNDERLINE_SYMBOLS \ 238 - - SymI_NeedsProto(saveFP) \ 239 - - SymI_NeedsProto(restFP) 240 - -#endif 241 - - 242 - /* entirely bogus claims about types of these symbols */ 243 - -/* to prevent a bit of define expansion, SymI_NeedsProto is a variadic 244 - - * macro. And we'll concat vvv with the __VA_ARGS__. This prevents 245 - - * vvv from getting macro expanded. 246 - - */ 247 - -#define SymI_NeedsProto(vvv,...) extern void vvv ## __VA_ARGS__ (void); 248 - +#define SymI_NeedsProto(vvv) extern void vvv(void); 249 - #define SymI_NeedsDataProto(vvv) extern StgWord vvv[]; 250 - #if defined(COMPILING_WINDOWS_DLL) 251 - #define SymE_HasProto(vvv) SymE_HasProto(vvv); 252 - @@ -1209,8 +1026,6 @@ RTS_DARWIN_ONLY_SYMBOLS 253 - RTS_OPENBSD_ONLY_SYMBOLS 254 - RTS_LIBGCC_SYMBOLS 255 - RTS_LIBFFI_SYMBOLS 256 - -RTS_SSP_SYMBOLS 257 - -RTS_LINKER_SYMBOLS 258 - #undef SymI_NeedsProto 259 - #undef SymI_NeedsDataProto 260 - #undef SymI_HasProto 261 - @@ -1230,7 +1045,7 @@ RTS_LINKER_SYMBOLS 262 - #define SymE_HasDataProto(vvv) \ 263 - SymE_HasProto(vvv) 264 - 265 - -#define SymI_NeedsProto(vvv,...) SymI_HasProto(vvv ## __VA_ARGS__) 266 - +#define SymI_NeedsProto(vvv) SymI_HasProto(vvv) 267 - #define SymI_NeedsDataProto(vvv) SymI_HasDataProto(vvv) 268 - #define SymE_NeedsProto(vvv) SymE_HasProto(vvv) 269 - #define SymE_NeedsDataProto(vvv) SymE_HasDataProto(vvv) 270 - @@ -1251,8 +1066,6 @@ RTS_LINKER_SYMBOLS 271 - #define SymI_HasProto_deprecated(vvv) \ 272 - { #vvv, (void*)0xBAADF00D, true }, 273 - 274 - -void *RTS_DYNAMIC = NULL; 275 - - 276 - RtsSymbolVal rtsSyms[] = { 277 - RTS_SYMBOLS 278 - RTS_RET_SYMBOLS 279 - @@ -1264,14 +1077,11 @@ RtsSymbolVal rtsSyms[] = { 280 - RTS_LIBGCC_SYMBOLS 281 - RTS_LIBFFI_SYMBOLS 282 - SymI_HasDataProto(nonmoving_write_barrier_enabled) 283 - - RTS_SSP_SYMBOLS 284 - - RTS_LINKER_SYMBOLS 285 - #if defined(darwin_HOST_OS) && defined(i386_HOST_ARCH) 286 - // dyld stub code contains references to this, 287 - // but it should never be called because we treat 288 - // lazy pointers as nonlazy. 289 - { "dyld_stub_binding_helper", (void*)0xDEADBEEF, false }, 290 - #endif 291 - - { "_DYNAMIC", (void*)(&RTS_DYNAMIC), false }, 292 - { 0, 0, false } /* sentinel */ 293 - }; 294 - -- 295 - 2.25.4 296 -
+2
pkgs/development/haskell-modules/HACKING.md
··· 249 249 $ ./maintainers/scripts/haskell/merge-and-open-pr.sh PR_NUM_OF_CURRENT_HASKELL_UPDATES_PR 250 250 ``` 251 251 252 + Find the PR number easily [here](https://github.com/nixos/nixpkgs/pulls?q=is%3Apr+is%3Aopen+head%3Ahaskell-updates) 253 + 252 254 This does the following things: 253 255 254 256 1. Fetches `origin`, makes sure you currently have the `haskell-updates`
+4 -25
pkgs/development/haskell-modules/configuration-common.nix
··· 1773 1773 vivid-osc = dontCheck super.vivid-osc; 1774 1774 vivid-supercollider = dontCheck super.vivid-supercollider; 1775 1775 1776 - # cabal-install switched to build type simple in 3.2.0.0 1777 - # as a result, the cabal(1) man page is no longer installed 1778 - # automatically. Instead we need to use the `cabal man` 1779 - # command which generates the man page on the fly and 1780 - # install it to $out/share/man/man1 ourselves in this 1781 - # override. 1782 - # The commit that introduced this change: 1783 - # https://github.com/haskell/cabal/commit/91ac075930c87712eeada4305727a4fa651726e7 1784 - cabal-install = overrideCabal (old: { 1785 - postInstall = old.postInstall + '' 1786 - mkdir -p "$out/share/man/man1" 1787 - "$out/bin/cabal" man --raw > "$out/share/man/man1/cabal.1" 1788 - ''; 1789 - }) super.cabal-install; 1790 - 1791 1776 # while waiting for a new release: https://github.com/brendanhay/amazonka/pull/572 1792 1777 amazonka = appendPatches [ 1793 1778 (fetchpatch { ··· 2417 2402 })) 2418 2403 ]; 2419 2404 2420 - # 2022-02-25: Not compatible with relude 1.0 2421 - ema = assert super.ema.version == "0.6.0.0"; 2422 - super.ema.overrideScope (self: super: { relude = doJailbreak self.relude_0_7_0_0; }); 2405 + # Tests require ghc-9.2. 2406 + ema = dontCheck super.ema; 2423 2407 2424 - glirc = super.glirc.override { 2408 + glirc = doJailbreak (super.glirc.override { 2425 2409 vty = self.vty_5_35_1; 2426 - }; 2410 + }); 2427 2411 2428 2412 # 2022-02-25: Unmaintained and to strict upper bounds 2429 2413 paths = doJailbreak super.paths; ··· 2491 2475 url = "https://github.com/erebe/wstunnel/pull/107/commits/47c1f62bdec1dbe77088d9e3ceb6d872f922ce34.patch"; 2492 2476 sha256 = "sha256-fW5bVbAGQxU/gd9zqgVNclwKraBtUjkKDek7L0c4+O0="; 2493 2477 }) super.wstunnel; 2494 - 2495 - # Adjustment of bounds on servant is unreleased 2496 - # https://github.com/haskell-servant/servant-cassava/commit/66617547851d38d48f5f1d1b786db1286bdafa9d 2497 - servant-cassava = assert super.servant-cassava.version == "0.10.1"; 2498 - doJailbreak super.servant-cassava; 2499 2478 2500 2479 # Test data missing from sdist 2501 2480 # https://github.com/ngless-toolkit/ngless/issues/152
+4
pkgs/development/haskell-modules/configuration-darwin.nix
··· 18 18 __darwinAllowLocalNetworking = true; 19 19 }); 20 20 21 + streaming-commons = super.streaming-commons.overrideAttrs (_: { 22 + __darwinAllowLocalNetworking = true; 23 + }); 24 + 21 25 halive = addBuildDepend darwin.apple_sdk.frameworks.AppKit super.halive; 22 26 23 27 # Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
+9 -2
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 48 48 # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 49 49 xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 50 50 51 - # cabal-install needs more recent versions of Cabal and base16-bytestring. 51 + # cabal-install needs most recent versions of Cabal and Cabal-syntax 52 52 cabal-install = super.cabal-install.overrideScope (self: super: { 53 - Cabal = self.Cabal_3_6_3_0; 53 + Cabal = self.Cabal_3_8_1_0; 54 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 55 + process = self.process_1_6_15_0; 56 + }); 57 + cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 58 + Cabal = self.Cabal_3_8_1_0; 59 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 60 + process = self.process_1_6_15_0; 54 61 }); 55 62 56 63 # Pick right versions for GHC-specific packages
-1
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
··· 48 48 xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 49 49 50 50 # Needs Cabal 3.0.x. 51 - cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; }); 52 51 jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_1_0; }; 53 52 54 53 # https://github.com/tibbe/unordered-containers/issues/214
+9 -3
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 54 54 # This build needs a newer version of Cabal. 55 55 cabal2spec = super.cabal2spec.override { Cabal = self.Cabal_3_2_1_0; }; 56 56 57 - # cabal-install needs more recent versions of Cabal and random, but an older 58 - # version of base16-bytestring. 57 + # cabal-install needs most recent versions of Cabal and Cabal-syntax 59 58 cabal-install = super.cabal-install.overrideScope (self: super: { 60 - Cabal = self.Cabal_3_6_3_0; 59 + Cabal = self.Cabal_3_8_1_0; 60 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 61 + process = self.process_1_6_15_0; 62 + }); 63 + cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 64 + Cabal = self.Cabal_3_8_1_0; 65 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 66 + process = self.process_1_6_15_0; 61 67 }); 62 68 63 69 # Ignore overly restrictive upper version bounds.
+10 -3
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 49 49 # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 50 50 xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 51 51 52 - # cabal-install needs more recent versions of Cabal and base16-bytestring. 53 - cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 54 - Cabal = self.Cabal_3_6_3_0; 52 + # cabal-install needs the latest/matching versions of Cabal-syntax and Cabal 53 + cabal-install = super.cabal-install.overrideScope (self: super: { 54 + Cabal = self.Cabal_3_8_1_0; 55 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 56 + process = self.process_1_6_15_0; 57 + }); 58 + cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 59 + Cabal = self.Cabal_3_8_1_0; 60 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 61 + process = self.process_1_6_15_0; 55 62 }); 56 63 57 64 # Jailbreaks & Version Updates
+14 -7
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 55 55 # 0.30 introduced support for GHC 9.2. 56 56 cryptonite = doDistribute self.cryptonite_0_30; 57 57 58 - # cabal-install needs more recent versions of Cabal 59 - cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 60 - Cabal = self.Cabal_3_6_3_0; 58 + # cabal-install needs most recent versions of Cabal and Cabal-syntax 59 + cabal-install = super.cabal-install.overrideScope (self: super: { 60 + Cabal = self.Cabal_3_8_1_0; 61 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 62 + process = self.process_1_6_15_0; 63 + }); 64 + cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 65 + Cabal = self.Cabal_3_8_1_0; 66 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 67 + process = self.process_1_6_15_0; 61 68 }); 62 69 63 70 doctest = dontCheck (doJailbreak super.doctest); ··· 73 80 assoc = doJailbreak super.assoc; 74 81 async = doJailbreak super.async; 75 82 base64-bytestring = doJailbreak super.base64-bytestring; 76 - base-compat = self.base-compat_0_12_1; 77 - base-compat-batteries = self.base-compat-batteries_0_12_1; 83 + base-compat = self.base-compat_0_12_2; 84 + base-compat-batteries = self.base-compat-batteries_0_12_2; 78 85 binary-instances = doJailbreak super.binary-instances; 79 86 ChasingBottoms = doJailbreak super.ChasingBottoms; 80 87 constraints = doJailbreak super.constraints; ··· 102 109 ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_4_20220729; 103 110 ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_2_1_1; 104 111 hackage-security = doJailbreak super.hackage-security; 105 - hashable = super.hashable_1_4_0_2; 112 + hashable = super.hashable_1_4_1_0; 106 113 hashable-time = doJailbreak super.hashable-time; 107 114 # 1.1.1 introduced support for GHC 9.2.x, so when this assert fails, the jailbreak can be removed 108 115 hedgehog = assert super.hedgehog.version == "1.0.5"; doJailbreak super.hedgehog; ··· 146 153 }) (doJailbreak super.hpack); 147 154 148 155 # lens >= 5.1 supports 9.2.1 149 - lens = doDistribute self.lens_5_1_1; 156 + lens = doDistribute self.lens_5_2; 150 157 151 158 # Syntax error in tests fixed in https://github.com/simonmar/alex/commit/84b29475e057ef744f32a94bc0d3954b84160760 152 159 alex = dontCheck super.alex;
+7
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 4 4 - 3d-graphics-examples 5 5 - 3dmodels 6 6 - AAI 7 + - aasam 7 8 - abacate 8 9 - abcnotation 9 10 - abeson ··· 2660 2661 - intrinsic-superclasses 2661 2662 - introduction 2662 2663 - intro-prelude 2664 + - invertible 2663 2665 - invertible-hlist 2664 2666 - invertible-syntax 2665 2667 - involutive-semigroups ··· 2868 2870 - lambda-toolbox 2869 2871 - lame 2870 2872 - lame-tester 2873 + - landlock 2871 2874 - language-asn 2872 2875 - language-c-comments 2873 2876 - language-c-inline ··· 2966 2969 - libpq 2967 2970 - librandomorg 2968 2971 - librarian 2972 + - libsecp256k1 2969 2973 - libsystemd-daemon 2970 2974 - libsystemd-journal 2971 2975 - libtagc ··· 3489 3493 - next-ref 3490 3494 - nextstep-plist 3491 3495 - NGrams 3496 + - ngx-export-log 3492 3497 - niagra 3493 3498 - nibblestring 3494 3499 - nice-html ··· 3820 3825 - phone-numbers 3821 3826 - phone-push 3822 3827 - phonetic-languages-constaints 3828 + - phonetic-languages-simplified-properties-array-old 3823 3829 - phonetic-languages-vector 3824 3830 - phraskell 3825 3831 - Phsu ··· 4312 4318 - ReviewBoard 4313 4319 - rewrite-inspector 4314 4320 - rfc-prelude 4321 + - r-glpk-phonetic-languages-ukrainian-durations 4315 4322 - rhbzquery 4316 4323 - riak 4317 4324 - riak-protobuf-lens
+1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 99 99 - Cabal == 2.4.* # required for cabal-install etc. 100 100 - Cabal == 3.2.* # required for cabal-install etc. 101 101 - Cabal == 3.4.* # required for cabal-install etc. 102 + - Cabal == 3.6.* # required for cabal-install-parsers etc. 102 103 - Diff < 0.4 # required by liquidhaskell-0.8.10.2: https://github.com/ucsd-progsys/liquidhaskell/issues/1729 103 104 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this 104 105 - aeson < 2 # required by pantry-0.5.2
+31 -31
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.18 1 + # Stackage LTS 19.19 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 74 74 - approximate-equality ==1.1.0.2 75 75 - app-settings ==0.2.0.12 76 76 - arbor-lru-cache ==0.1.1.1 77 - - arithmoi ==0.12.0.1 77 + - arithmoi ==0.12.0.2 78 78 - array-memoize ==0.6.0 79 79 - arrow-extras ==0.1.0.1 80 80 - arrows ==0.4.4.2 ··· 141 141 - base-compat ==0.11.2 142 142 - base-compat-batteries ==0.11.2 143 143 - basement ==0.0.14 144 - - base-orphans ==0.8.6 144 + - base-orphans ==0.8.7 145 145 - base-prelude ==1.6.1 146 146 - base-unicode-symbols ==0.2.4.2 147 147 - basic-prelude ==0.7.0 ··· 156 156 - bech32 ==1.1.2 157 157 - bech32-th ==1.1.1 158 158 - bench ==1.0.12 159 - - benchpress ==0.2.2.20 159 + - benchpress ==0.2.2.21 160 160 - bencode ==0.6.1.1 161 161 - bencoding ==0.4.5.4 162 162 - between ==0.11.0.0 ··· 173 173 - binary-ieee754 ==0.1.0.0 174 174 - binary-instances ==1.0.2 175 175 - binary-list ==1.1.1.2 176 - - binary-orphans ==1.0.2 176 + - binary-orphans ==1.0.3 177 177 - binary-parser ==0.5.7.2 178 178 - binary-parsers ==0.2.4.0 179 179 - binary-search ==2.0.0 ··· 266 266 - c14n ==0.1.0.2 267 267 - c2hs ==0.28.8 268 268 - cabal2spec ==2.6.2 269 - - cabal-appimage ==0.3.0.4 270 - - cabal-clean ==0.1.20210924 269 + - cabal-appimage ==0.3.0.5 270 + - cabal-clean ==0.1.20220814 271 271 - cabal-doctest ==1.0.9 272 272 - cabal-file ==0.1.1 273 273 - cabal-file-th ==0.2.7 ··· 303 303 - cborg-json ==0.2.4.0 304 304 - cdar-mBound ==0.1.0.4 305 305 - c-enum ==0.1.1.3 306 - - cereal ==0.5.8.2 306 + - cereal ==0.5.8.3 307 307 - cereal-conduit ==0.8.0 308 308 - cereal-text ==0.1.0.2 309 309 - cereal-vector ==0.2.0.1 ··· 682 682 - error-or-utils ==0.2.0 683 683 - errors ==2.3.0 684 684 - errors-ext ==0.4.2 685 - - ersatz ==0.4.11 685 + - ersatz ==0.4.12 686 686 - esqueleto ==3.5.6.1 687 687 - essence-of-live-coding ==0.2.6 688 688 - essence-of-live-coding-gloss ==0.2.6 ··· 762 762 - fixed-length ==0.2.3 763 763 - fixed-vector ==1.2.1.0 764 764 - fixed-vector-hetero ==0.6.1.1 765 - - fix-whitespace ==0.0.8 765 + - fix-whitespace ==0.0.9 766 766 - flac ==0.2.0 767 767 - flac-picture ==0.1.2 768 768 - flags-applicative ==0.1.0.3 ··· 868 868 - getopt-generics ==0.13.0.4 869 869 - ghc-bignum-orphans ==0.1.1 870 870 - ghc-byteorder ==4.11.0.0.10 871 - - ghc-check ==0.5.0.6 871 + - ghc-check ==0.5.0.8 872 872 - ghc-compact ==0.1.0.0 873 873 - ghc-core ==0.5.6 874 874 - ghc-events ==0.17.0.3 ··· 886 886 - ghc-source-gen ==0.4.3.0 887 887 - ghc-syntax-highlighter ==0.0.7.0 888 888 - ghc-tcplugins-extra ==0.4.2 889 - - ghc-trace-events ==0.1.2.5 889 + - ghc-trace-events ==0.1.2.6 890 890 - ghc-typelits-extra ==0.4.3 891 891 - ghc-typelits-knownnat ==0.7.6 892 892 - ghc-typelits-natnormalise ==0.7.6 ··· 966 966 - guarded-allocation ==0.0.1 967 967 - hackage-cli ==0.0.3.6 968 968 - hackage-db ==2.1.2 969 - - hackage-security ==0.6.2.1 969 + - hackage-security ==0.6.2.2 970 970 - haddock-library ==1.10.0 971 971 - hadoop-streaming ==0.2.0.3 972 972 - hakyll ==4.15.1.1 ··· 1049 1049 - hid ==0.2.2 1050 1050 - hidapi ==0.1.8 1051 1051 - hie-bios ==0.9.1 1052 - - hi-file-parser ==0.1.2.0 1052 + - hi-file-parser ==0.1.3.0 1053 1053 - higher-leveldb ==0.6.0.0 1054 1054 - highlighting-kate ==0.6.4 1055 1055 - hindent ==5.3.4 ··· 1153 1153 - hspec-need-env ==0.1.0.9 1154 1154 - hspec-parsec ==0 1155 1155 - hspec-smallcheck ==0.5.2 1156 - - hspec-tmp-proc ==0.5.0.1 1156 + - hspec-tmp-proc ==0.5.1.2 1157 1157 - hspec-wai ==0.11.1 1158 1158 - hs-php-session ==0.0.9.3 1159 1159 - hsshellscript ==3.5.0 ··· 1265 1265 - indexed-list-literals ==0.2.1.3 1266 1266 - indexed-profunctors ==0.1.1 1267 1267 - indexed-traversable ==0.1.2 1268 - - indexed-traversable-instances ==0.1.1 1268 + - indexed-traversable-instances ==0.1.1.1 1269 1269 - infer-license ==0.2.0 1270 1270 - inflections ==0.4.0.6 1271 1271 - influxdb ==1.9.2.2 ··· 1405 1405 - LetsBeRational ==1.0.0.0 1406 1406 - leveldb-haskell ==0.6.5 1407 1407 - lexer-applicative ==2.1.0.2 1408 - - libBF ==0.6.3 1408 + - libBF ==0.6.4 1409 1409 - libffi ==0.1 1410 1410 - libgit ==0.3.1 1411 1411 - libgraph ==1.14 ··· 1413 1413 - liboath-hs ==0.0.1.2 1414 1414 - libyaml ==0.1.2 1415 1415 - LibZip ==1.0.1 1416 - - lifted-async ==0.10.2.2 1416 + - lifted-async ==0.10.2.3 1417 1417 - lifted-base ==0.2.3.12 1418 1418 - lift-generics ==0.2.1 1419 1419 - lift-type ==0.1.0.1 ··· 1524 1524 - microlens-process ==0.2.0.2 1525 1525 - microlens-th ==0.4.3.10 1526 1526 - microspec ==0.2.1.3 1527 - - microstache ==1.0.2.1 1527 + - microstache ==1.0.2.2 1528 1528 - midair ==0.2.0.1 1529 1529 - midi ==0.2.2.3 1530 1530 - midi-alsa ==0.2.1 ··· 1753 1753 - pandoc-lua-marshal ==0.1.7 1754 1754 - pandoc-plot ==1.4.1 1755 1755 - pandoc-throw ==0.1.0.0 1756 - - pandoc-types ==1.22.2 1756 + - pandoc-types ==1.22.2.1 1757 1757 - pantry ==0.5.6 1758 1758 - parallel ==3.2.2.0 1759 1759 - parallel-io ==0.3.5 ··· 1859 1859 - polysemy-extra ==0.2.0.0 1860 1860 - polysemy-fs ==0.1.0.0 1861 1861 - polysemy-fskvstore ==0.1.1.0 1862 - - polysemy-kvstore ==0.1.2.0 1862 + - polysemy-kvstore ==0.1.3.0 1863 1863 - polysemy-methodology ==0.2.1.0 1864 1864 - polysemy-path ==0.2.1.0 1865 1865 - polysemy-plugin ==0.4.1.1 ··· 1970 1970 - quickcheck-classes ==0.6.5.0 1971 1971 - quickcheck-classes-base ==0.6.2.0 1972 1972 - quickcheck-higherorder ==0.1.0.1 1973 - - quickcheck-instances ==0.3.27 1973 + - quickcheck-instances ==0.3.28 1974 1974 - quickcheck-io ==0.2.0 1975 1975 - quickcheck-simple ==0.1.1.1 1976 1976 - quickcheck-special ==0.1.0.6 ··· 1984 1984 - rainbow ==0.34.2.2 1985 1985 - rainbox ==0.26.0.0 1986 1986 - ral ==0.2.1 1987 - - rampart ==2.0.0.1 1987 + - rampart ==2.0.0.2 1988 1988 - ramus ==0.1.2 1989 1989 - rando ==0.0.0.4 1990 1990 - random ==1.2.1.1 ··· 2134 2134 - scotty ==0.12 2135 2135 - scrypt ==0.5.0 2136 2136 - sdl2 ==2.5.3.0 2137 - - sdl2-ttf ==2.1.2 2137 + - sdl2-ttf ==2.1.3 2138 2138 - search-algorithms ==0.3.2 2139 2139 - secp256k1-haskell ==0.6.1 2140 2140 - securemem ==0.1.10 ··· 2289 2289 - Spintax ==0.3.6 2290 2290 - splice ==0.6.1.1 2291 2291 - splint ==1.0.2.0 2292 - - split ==0.2.3.4 2292 + - split ==0.2.3.5 2293 2293 - splitmix ==0.1.0.4 2294 2294 - splitmix-distributions ==0.9.0.0 2295 2295 - split-record ==0.1.1.4 ··· 2326 2326 - stm-containers ==1.2 2327 2327 - stm-delay ==0.1.1.1 2328 2328 - stm-extras ==0.1.0.3 2329 - - stm-hamt ==1.2.0.7 2329 + - stm-hamt ==1.2.0.8 2330 2330 - stm-lifted ==2.5.0.0 2331 2331 - STMonadTrans ==0.4.6 2332 2332 - stm-split ==0.0.2.1 ··· 2353 2353 - strict ==0.4.0.1 2354 2354 - strict-concurrency ==0.2.4.3 2355 2355 - strict-list ==0.1.7 2356 - - strict-tuple ==0.1.5 2356 + - strict-tuple ==0.1.5.1 2357 2357 - strict-tuple-lens ==0.2 2358 2358 - strict-wrapper ==0.0.0.0 2359 2359 - stringbuilder ==0.5.1 ··· 2415 2415 - tardis ==0.4.4.0 2416 2416 - tasty ==1.4.2.3 2417 2417 - tasty-ant-xml ==1.1.8 2418 - - tasty-bench ==0.3.1 2418 + - tasty-bench ==0.3.2 2419 2419 - tasty-dejafu ==2.0.0.8 2420 2420 - tasty-discover ==4.2.4 2421 2421 - tasty-expected-failure ==0.12.3 ··· 2542 2542 - tmapchan ==0.0.3 2543 2543 - tmapmvar ==0.0.4 2544 2544 - tmp-postgres ==1.34.1.0 2545 - - tmp-proc ==0.5.0.1 2545 + - tmp-proc ==0.5.1.2 2546 2546 - tophat ==1.0.5.1 2547 2547 - topograph ==1.0.0.1 2548 2548 - torsor ==0.1 ··· 2598 2598 - type-spec ==0.4.0.0 2599 2599 - typography-geometry ==1.0.1.0 2600 2600 - tz ==0.1.3.6 2601 - - tzdata ==0.2.20220315.0 2601 + - tzdata ==0.2.20220810.0 2602 2602 - ua-parser ==0.7.7.0 2603 2603 - uglymemo ==0.1.0.1 2604 2604 - unagi-chan ==0.4.1.4 ··· 2725 2725 - wai-middleware-caching-lru ==0.1.0.0 2726 2726 - wai-middleware-caching-redis ==0.2.0.0 2727 2727 - wai-middleware-clacks ==0.1.0.1 2728 - - wai-middleware-delegate ==0.1.2.4 2728 + - wai-middleware-delegate ==0.1.3.1 2729 2729 - wai-middleware-prometheus ==1.0.0.1 2730 2730 - wai-middleware-static ==0.9.2 2731 2731 - wai-rate-limit ==0.2.0.0
+7
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 1391 1391 - fbrnch 1392 1392 - fcd 1393 1393 - feature-flipper-postgres 1394 + - fedora-composes 1394 1395 - fedora-img-dl 1395 1396 - feed-gipeda 1396 1397 - feed-translator ··· 1575 1576 - gloss-devil 1576 1577 - gloss-raster-accelerate 1577 1578 - gloss-sodium 1579 + - gltf-loader 1578 1580 - gmap 1579 1581 - gmndl 1580 1582 - gnome-desktop ··· 2278 2280 - interpolatedstring-qq-mwotton 2279 2281 - introduction-test 2280 2282 - intset 2283 + - invertible-hxt 2281 2284 - ion 2282 2285 - ipatch 2283 2286 - ipc ··· 2663 2666 - mmsyn7l 2664 2667 - mmsyn7s 2665 2668 - mmsyn7ukr 2669 + - mmsyn7ukr-array 2666 2670 - mmsyn7ukr-common 2667 2671 - mmtl-base 2668 2672 - moan ··· 2861 2865 - openpgp-Crypto 2862 2866 - openpgp-crypto-api 2863 2867 - openssh-github-keys 2868 + - oplang 2864 2869 - optima-for-hasql 2865 2870 - optimal-blocks 2866 2871 - optimusprime ··· 3578 3583 - stunts 3579 3584 - stutter 3580 3585 - stylist 3586 + - stylist-traits 3581 3587 - subhask 3582 3588 - substring-parser 3583 3589 - sugar-data ··· 3918 3924 - warped 3919 3925 - wavesurfer 3920 3926 - wavy 3927 + - web-inv-route 3921 3928 - web-mongrel2 3922 3929 - web-page 3923 3930 - web-routes-regular
+36 -3
pkgs/development/haskell-modules/configuration-nix.nix
··· 990 990 enableSeparateBinOutput = true; 991 991 }) super.nfc; 992 992 993 + # Wants to execute cabal-install to (re-)build itself 994 + hint = dontCheck super.hint; 995 + 996 + # Make sure that Cabal 3.8.* can be built as-is 997 + Cabal_3_8_1_0 = doDistribute (super.Cabal_3_8_1_0.override { 998 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 999 + process = self.process_1_6_15_0; 1000 + }); 1001 + 1002 + # cabal-install switched to build type simple in 3.2.0.0 1003 + # as a result, the cabal(1) man page is no longer installed 1004 + # automatically. Instead we need to use the `cabal man` 1005 + # command which generates the man page on the fly and 1006 + # install it to $out/share/man/man1 ourselves in this 1007 + # override. 1008 + # The commit that introduced this change: 1009 + # https://github.com/haskell/cabal/commit/91ac075930c87712eeada4305727a4fa651726e7 1010 + # Since cabal-install 3.8, the cabal man (without the raw) command 1011 + # uses nroff(1) instead of man(1) for macOS/BSD compatibility. That utility 1012 + # is not commonly installed on systems, so we add it to PATH. Closure size 1013 + # penalty is about 10MB at the time of writing this (2022-08-20). 1014 + cabal-install = overrideCabal (old: { 1015 + executableToolDepends = [ 1016 + pkgs.buildPackages.makeWrapper 1017 + ] ++ old.buildToolDepends or []; 1018 + postInstall = old.postInstall + '' 1019 + mkdir -p "$out/share/man/man1" 1020 + "$out/bin/cabal" man --raw > "$out/share/man/man1/cabal.1" 1021 + 1022 + wrapProgram "$out/bin/cabal" \ 1023 + --prefix PATH : "${pkgs.lib.makeBinPath [ pkgs.groff ]}" 1024 + ''; 1025 + hydraPlatforms = pkgs.lib.platforms.all; 1026 + broken = false; 1027 + }) super.cabal-install; 1028 + 993 1029 # haskell-language-server plugins all use the same test harness so we give them what we want in this loop. 994 1030 } // pkgs.lib.mapAttrs 995 1031 (_: overrideCabal (drv: { ··· 1021 1057 hls-call-hierarchy-plugin = dontCheck super.hls-call-hierarchy-plugin; 1022 1058 hls-selection-range-plugin = dontCheck super.hls-selection-range-plugin; 1023 1059 hls-ormolu-plugin = dontCheck super.hls-ormolu-plugin; 1024 - 1025 - # Wants to execute cabal-install to (re-)build itself 1026 - hint = dontCheck super.hint; 1027 1060 }
+1819 -771
pkgs/development/haskell-modules/hackage-packages.nix
··· 821 821 pname = "Agda"; 822 822 version = "2.6.2.2"; 823 823 sha256 = "0yjjbhc593ylrm4mq4j01nkdvh7xqsg5in30wxj4y53vf5hkggp5"; 824 - revision = "1"; 825 - editedCabalFile = "0ahdsyrcrj0qm4zwsmcjrpq3a8w2yxp2hgpsjfl9b7a2b7k05pz2"; 824 + revision = "2"; 825 + editedCabalFile = "0mas4lsd093rg4w6js12cjmnz8227q5g0jhkhyrnr25jglqjz75n"; 826 826 isLibrary = true; 827 827 isExecutable = true; 828 828 enableSeparateDataOutput = true; ··· 2899 2899 hydraPlatforms = lib.platforms.none; 2900 2900 }) {}; 2901 2901 2902 + "Cabal_3_8_1_0" = callPackage 2903 + ({ mkDerivation, array, base, bytestring, Cabal-syntax, containers 2904 + , deepseq, directory, filepath, mtl, parsec, pretty, process, text 2905 + , time, transformers, unix 2906 + }: 2907 + mkDerivation { 2908 + pname = "Cabal"; 2909 + version = "3.8.1.0"; 2910 + sha256 = "0236fddzhalsr2gjbjsk92rgh8866fks28r04g8fbmzkqbkcnr3l"; 2911 + setupHaskellDepends = [ mtl parsec ]; 2912 + libraryHaskellDepends = [ 2913 + array base bytestring Cabal-syntax containers deepseq directory 2914 + filepath mtl parsec pretty process text time transformers unix 2915 + ]; 2916 + doCheck = false; 2917 + description = "A framework for packaging Haskell software"; 2918 + license = lib.licenses.bsd3; 2919 + hydraPlatforms = lib.platforms.none; 2920 + }) {}; 2921 + 2902 2922 "Cabal-ide-backend" = callPackage 2903 2923 ({ mkDerivation, array, base, binary, bytestring, Cabal, containers 2904 2924 , deepseq, directory, extensible-exceptions, filepath, HUnit ··· 2937 2957 license = lib.licenses.bsd3; 2938 2958 }) {}; 2939 2959 2960 + "Cabal-syntax_3_8_1_0" = callPackage 2961 + ({ mkDerivation, array, base, binary, bytestring, containers 2962 + , deepseq, directory, filepath, mtl, parsec, pretty, text, time 2963 + , transformers, unix 2964 + }: 2965 + mkDerivation { 2966 + pname = "Cabal-syntax"; 2967 + version = "3.8.1.0"; 2968 + sha256 = "03yfk3b2sjmqpxmvx3mj185nifiaqapvc8hmbx4825z0kyqxvs07"; 2969 + revision = "1"; 2970 + editedCabalFile = "0rmrcjpm169acfranqq04ach5g3jv7v6g45yzpwcp3ksk9g7cdj9"; 2971 + libraryHaskellDepends = [ 2972 + array base binary bytestring containers deepseq directory filepath 2973 + mtl parsec pretty text time transformers unix 2974 + ]; 2975 + description = "A library for working with .cabal files"; 2976 + license = lib.licenses.bsd3; 2977 + hydraPlatforms = lib.platforms.none; 2978 + }) {}; 2979 + 2940 2980 "CabalSearch" = callPackage 2941 2981 ({ mkDerivation, base, bytestring, directory, filepath, HDBC 2942 2982 , HDBC-sqlite3, process, unix ··· 3256 3296 ]; 3257 3297 description = "For testing partial and infinite values"; 3258 3298 license = lib.licenses.mit; 3299 + }) {}; 3300 + 3301 + "ChasingBottoms_1_3_1_12" = callPackage 3302 + ({ mkDerivation, array, base, containers, mtl, QuickCheck, random 3303 + , syb 3304 + }: 3305 + mkDerivation { 3306 + pname = "ChasingBottoms"; 3307 + version = "1.3.1.12"; 3308 + sha256 = "1vy9yq07p95qiap1pcp2bbbn1mqvp3spyrswpdz0qfcn06656650"; 3309 + libraryHaskellDepends = [ 3310 + base containers mtl QuickCheck random syb 3311 + ]; 3312 + testHaskellDepends = [ 3313 + array base containers mtl QuickCheck random syb 3314 + ]; 3315 + description = "For testing partial and infinite values"; 3316 + license = lib.licenses.mit; 3317 + hydraPlatforms = lib.platforms.none; 3259 3318 }) {}; 3260 3319 3261 3320 "CheatSheet" = callPackage ··· 9685 9744 pname = "HTTP"; 9686 9745 version = "4000.4.1"; 9687 9746 sha256 = "0lyl5lpkk51xn3dfndh8ksgvwcdsviyigmsnp3d28lbpxkpxhcfz"; 9747 + revision = "1"; 9748 + editedCabalFile = "04y04vbxbnblpmqqmpl8km4bkcjaj96nbxkssdr1zgbhqisxay5q"; 9688 9749 libraryHaskellDepends = [ 9689 9750 array base bytestring mtl network network-uri parsec time 9690 9751 transformers ··· 10022 10083 pname = "HaXml"; 10023 10084 version = "1.25.9"; 10024 10085 sha256 = "0ia27ffpdx59sa4mnyhks2bngrgaahwg150znnvnna30s9ncdfq1"; 10086 + revision = "1"; 10087 + editedCabalFile = "1p6v6ibkfbz4wklayzil9bmwsa0y5zcs9hzvl0qyjcnclpgalh7l"; 10025 10088 isLibrary = true; 10026 10089 isExecutable = true; 10027 10090 libraryHaskellDepends = [ ··· 11201 11264 pname = "HsYAML"; 11202 11265 version = "0.2.1.1"; 11203 11266 sha256 = "0a7nbvpl4p8kwbbjfn1dj6s3fif5k8zhbckdvyz1k74pj3yb8ns6"; 11267 + revision = "1"; 11268 + editedCabalFile = "0jmbgrjywcblrd8k6zzv2b5givdz83f479y15v5gs0r93z25xpmv"; 11204 11269 isLibrary = true; 11205 11270 isExecutable = true; 11206 11271 libraryHaskellDepends = [ ··· 11222 11287 pname = "HsYAML-aeson"; 11223 11288 version = "0.2.0.1"; 11224 11289 sha256 = "139hqd07hkr8ykvrgmcshh9f3vp9dnrj6ks5nl8hgrpi990jsy5r"; 11225 - revision = "4"; 11226 - editedCabalFile = "0njrmdrjnw0i3km50wprfsqmimvqsi90p8kc47d3imgkp6fvcnik"; 11290 + revision = "5"; 11291 + editedCabalFile = "06v8vkn58d67yx4v59rhvxpc0sjrpi6k8krvjrvbyl0fn0v0jd14"; 11227 11292 isLibrary = true; 11228 11293 isExecutable = true; 11229 11294 libraryHaskellDepends = [ ··· 12108 12173 pname = "JuicyPixels-extra"; 12109 12174 version = "0.5.2"; 12110 12175 sha256 = "11y4735bbp99wvi4fkpvkda7cj4c6iqp437drs27flicx2ygc687"; 12176 + revision = "1"; 12177 + editedCabalFile = "1rmqhwbkdbwa2ng5zlpfwrfnqlcxrvgy3i5ymrjiw5jl9wp6j13c"; 12111 12178 enableSeparateDataOutput = true; 12112 12179 libraryHaskellDepends = [ base JuicyPixels ]; 12113 12180 testHaskellDepends = [ base hspec JuicyPixels ]; ··· 14879 14946 }: 14880 14947 mkDerivation { 14881 14948 pname = "Network-NineP"; 14882 - version = "0.4.7.1"; 14883 - sha256 = "0gjscwrm4qjz662819g3l7i989ykxg3cka82kp23j5d2fy2sn2mc"; 14949 + version = "0.4.7.2"; 14950 + sha256 = "19m5iz99igw6bdqh9zln1cmfms0nrghvf9553fb2gjzv0i9dbygs"; 14884 14951 libraryHaskellDepends = [ 14885 14952 async base binary bytestring containers convertible exceptions 14886 14953 hslogger monad-loops monad-peel mstate mtl network network-bsd ··· 15457 15524 pname = "OneTuple"; 15458 15525 version = "0.3.1"; 15459 15526 sha256 = "1vry21z449ph9k61l5zm7mfmdwkwszxqdlawlhvwrd1gsn13d1cq"; 15460 - revision = "2"; 15461 - editedCabalFile = "0gk0656igxl0km9kgh8v7b5vq74kla59ka9hvpzq57njr6bc0j58"; 15527 + revision = "3"; 15528 + editedCabalFile = "0g4siv8s6dlrdsivap2qy6ig08y5bjbs93jk192zmgkp8iscncpw"; 15462 15529 libraryHaskellDepends = [ 15463 15530 base base-orphans ghc-prim template-haskell 15464 15531 ]; ··· 16863 16930 ]; 16864 16931 description = "Quasiquotations for a python like interpolated string formatter"; 16865 16932 license = lib.licenses.bsd3; 16933 + }) {}; 16934 + 16935 + "PyF_0_11_0_0" = callPackage 16936 + ({ mkDerivation, base, bytestring, deepseq, filepath, ghc, ghc-boot 16937 + , hspec, HUnit, mtl, parsec, process, template-haskell, temporary 16938 + , text, time 16939 + }: 16940 + mkDerivation { 16941 + pname = "PyF"; 16942 + version = "0.11.0.0"; 16943 + sha256 = "0c5dahiad6rnr1v6s8mijyw9z5xhiip5ycrlwphq1wzm6prmx6ma"; 16944 + revision = "1"; 16945 + editedCabalFile = "091gbpmwhzvkmsk1kpsczwqb02vyw3603mqxflrajg9h2idgsdkd"; 16946 + libraryHaskellDepends = [ 16947 + base bytestring ghc ghc-boot mtl parsec template-haskell text time 16948 + ]; 16949 + testHaskellDepends = [ 16950 + base bytestring deepseq filepath hspec HUnit process 16951 + template-haskell temporary text time 16952 + ]; 16953 + description = "Quasiquotations for a python like interpolated string formatter"; 16954 + license = lib.licenses.bsd3; 16955 + hydraPlatforms = lib.platforms.none; 16866 16956 }) {}; 16867 16957 16868 16958 "QIO" = callPackage ··· 22872 22962 mainProgram = "a50"; 22873 22963 }) {}; 22874 22964 22965 + "aasam" = callPackage 22966 + ({ mkDerivation, base, containers, HUnit, test-framework 22967 + , test-framework-hunit, text 22968 + }: 22969 + mkDerivation { 22970 + pname = "aasam"; 22971 + version = "0.2.0.0"; 22972 + sha256 = "0bx5z0lms8c4n7v7z1piav2djsasnigd8f7i3vqzisgnsawvky6p"; 22973 + libraryHaskellDepends = [ base containers text ]; 22974 + testHaskellDepends = [ 22975 + base containers HUnit test-framework test-framework-hunit text 22976 + ]; 22977 + description = "Convert distfix precedence grammars to unambiguous context-free grammars"; 22978 + license = lib.licenses.asl20; 22979 + hydraPlatforms = lib.platforms.none; 22980 + broken = true; 22981 + }) {}; 22982 + 22875 22983 "abacate" = callPackage 22876 22984 ({ mkDerivation, base, HUnit, parsec, text }: 22877 22985 mkDerivation { ··· 23816 23924 pname = "acid-state"; 23817 23925 version = "0.16.1.1"; 23818 23926 sha256 = "05hcbk5dhwygc29b1jbyh2zzjrxybm44hj02wmv2bhz04b5wldca"; 23927 + revision = "2"; 23928 + editedCabalFile = "0q3z7mxahsv8wxlcm4wzqfd49im22j6lgxxd25mdrj59hzkfr6i7"; 23819 23929 isLibrary = true; 23820 23930 isExecutable = true; 23821 23931 libraryHaskellDepends = [ ··· 24885 24995 license = lib.licenses.bsd3; 24886 24996 }) {}; 24887 24997 24998 + "adjunctions_4_4_2" = callPackage 24999 + ({ mkDerivation, array, base, comonad, containers, contravariant 25000 + , distributive, free, generic-deriving, hspec, hspec-discover, mtl 25001 + , profunctors, semigroupoids, semigroups, tagged, transformers 25002 + , transformers-compat, void 25003 + }: 25004 + mkDerivation { 25005 + pname = "adjunctions"; 25006 + version = "4.4.2"; 25007 + sha256 = "06354xzgf78jl4g1xw11rp74gi7zh94rgvsji7ma1g0hp26myyql"; 25008 + libraryHaskellDepends = [ 25009 + array base comonad containers contravariant distributive free mtl 25010 + profunctors semigroupoids semigroups tagged transformers 25011 + transformers-compat void 25012 + ]; 25013 + testHaskellDepends = [ base distributive generic-deriving hspec ]; 25014 + testToolDepends = [ hspec-discover ]; 25015 + description = "Adjunctions and representable functors"; 25016 + license = lib.licenses.bsd3; 25017 + hydraPlatforms = lib.platforms.none; 25018 + }) {}; 25019 + 24888 25020 "adler32" = callPackage 24889 25021 ({ mkDerivation, base, bytestring, hspec, zlib }: 24890 25022 mkDerivation { ··· 25089 25221 license = lib.licenses.bsd3; 25090 25222 }) {}; 25091 25223 25224 + "aern2-mp_0_2_10_0" = callPackage 25225 + ({ mkDerivation, base, cdar-mBound, collect-errors, deepseq, hspec 25226 + , integer-logarithms, mixed-types-num, QuickCheck, reflection 25227 + , regex-tdfa, template-haskell 25228 + }: 25229 + mkDerivation { 25230 + pname = "aern2-mp"; 25231 + version = "0.2.10.0"; 25232 + sha256 = "1rrgij6wa0479pa2qr2fqylqlymg1xxsblrdp0ahmabdaazbdqd7"; 25233 + libraryHaskellDepends = [ 25234 + base cdar-mBound collect-errors deepseq hspec integer-logarithms 25235 + mixed-types-num QuickCheck reflection regex-tdfa template-haskell 25236 + ]; 25237 + testHaskellDepends = [ 25238 + base cdar-mBound collect-errors deepseq hspec integer-logarithms 25239 + mixed-types-num QuickCheck reflection regex-tdfa template-haskell 25240 + ]; 25241 + description = "Multi-precision ball (interval) arithmetic"; 25242 + license = lib.licenses.bsd3; 25243 + hydraPlatforms = lib.platforms.none; 25244 + }) {}; 25245 + 25092 25246 "aern2-real" = callPackage 25093 25247 ({ mkDerivation, aern2-mp, base, collect-errors, hspec 25094 25248 , integer-logarithms, mixed-types-num, QuickCheck ··· 25107 25261 ]; 25108 25262 description = "Real numbers as convergent sequences of intervals"; 25109 25263 license = lib.licenses.bsd3; 25264 + }) {}; 25265 + 25266 + "aern2-real_0_2_10_0" = callPackage 25267 + ({ mkDerivation, aern2-mp, base, collect-errors, hspec 25268 + , integer-logarithms, mixed-types-num, QuickCheck 25269 + }: 25270 + mkDerivation { 25271 + pname = "aern2-real"; 25272 + version = "0.2.10.0"; 25273 + sha256 = "08hfk0q6jmrjmkr9bj488lxjr7prkhc48ghfrk33flwk59zfgh3i"; 25274 + libraryHaskellDepends = [ 25275 + aern2-mp base collect-errors hspec integer-logarithms 25276 + mixed-types-num QuickCheck 25277 + ]; 25278 + testHaskellDepends = [ 25279 + aern2-mp base collect-errors hspec integer-logarithms 25280 + mixed-types-num QuickCheck 25281 + ]; 25282 + description = "Real numbers as convergent sequences of intervals"; 25283 + license = lib.licenses.bsd3; 25284 + hydraPlatforms = lib.platforms.none; 25110 25285 }) {}; 25111 25286 25112 25287 "aeson_1_5_6_0" = callPackage ··· 25196 25371 pname = "aeson"; 25197 25372 version = "2.1.0.0"; 25198 25373 sha256 = "151wyyw0ip0f2w4mfxcs58c26rsvhaac7s0yba76gnhnzbskwxha"; 25199 - revision = "1"; 25200 - editedCabalFile = "1zq5rnapvvrhfi4yy1xzi322h5zvmx0c3klpbrb08k92ykvfb98q"; 25374 + revision = "2"; 25375 + editedCabalFile = "0yp12cmkj5sz25kxzn6g1fz2d6acbq5rvff5dg2wg5zkjwfkhzqj"; 25201 25376 libraryHaskellDepends = [ 25202 25377 attoparsec base base-compat-batteries bytestring containers 25203 25378 data-fix deepseq dlist generically ghc-prim hashable ··· 25449 25624 pname = "aeson-diff"; 25450 25625 version = "1.1.0.13"; 25451 25626 sha256 = "0sd13q0nj0k1sam5xfj6dcjcki18f375sa69hm6i4xc6snfhn3cb"; 25627 + revision = "1"; 25628 + editedCabalFile = "1028adallw7bm72948lj322bb5a99gfs0qc1j0pnm8hryp6n7ma5"; 25452 25629 isLibrary = true; 25453 25630 isExecutable = true; 25454 25631 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 26099 26276 }: 26100 26277 mkDerivation { 26101 26278 pname = "aeson-tiled"; 26102 - version = "0.0.2.0"; 26103 - sha256 = "1akmvr6638rwmyqfs43clxbswdnpwrwb94zzq8whs4j01hkcly7w"; 26279 + version = "0.0.2.1"; 26280 + sha256 = "0fm2dkp0gi5h8xv6b3ax5v5ni7gkdvj8m2v1nrmf7hcyan0lp2aa"; 26104 26281 libraryHaskellDepends = [ 26105 26282 aeson base bytestring containers text vector 26106 26283 ]; ··· 27459 27636 }) {}; 27460 27637 27461 27638 "algorithmic-composition-additional" = callPackage 27462 - ({ mkDerivation, algorithmic-composition-basic, base, bytestring 27463 - , directory, foldable-ix, mmsyn2-array, mmsyn3, mmsyn7l 27464 - , mmsyn7ukr-common, phonetic-languages-simplified-base, process 27465 - , ukrainian-phonetics-basic-array 27639 + ({ mkDerivation, algorithmic-composition-basic, base, directory 27640 + , foldable-ix, mmsyn2-array, mmsyn3, mmsyn7l, mmsyn7ukr-common 27641 + , phonetic-languages-basis, phonetic-languages-simplified-base 27642 + , process, ukrainian-phonetics-basic-array 27466 27643 }: 27467 27644 mkDerivation { 27468 27645 pname = "algorithmic-composition-additional"; 27469 - version = "0.1.1.0"; 27470 - sha256 = "0j6qbfghx4i00ka0r8n8pw7m037qqn71vky794n3a06mfnisy8pb"; 27646 + version = "0.2.0.0"; 27647 + sha256 = "1qyvab2zk6zq86zcw11c481sw2pmi280hn241l4gj1pzlmnrjw1x"; 27471 27648 isLibrary = true; 27472 27649 isExecutable = true; 27473 27650 libraryHaskellDepends = [ 27474 - algorithmic-composition-basic base bytestring directory foldable-ix 27651 + algorithmic-composition-basic base directory foldable-ix 27475 27652 mmsyn2-array mmsyn3 mmsyn7l mmsyn7ukr-common 27476 - phonetic-languages-simplified-base process 27653 + phonetic-languages-basis phonetic-languages-simplified-base process 27477 27654 ukrainian-phonetics-basic-array 27478 27655 ]; 27479 27656 executableHaskellDepends = [ 27480 - algorithmic-composition-basic base bytestring directory foldable-ix 27657 + algorithmic-composition-basic base directory foldable-ix 27481 27658 mmsyn2-array mmsyn3 mmsyn7l mmsyn7ukr-common 27482 - phonetic-languages-simplified-base process 27659 + phonetic-languages-basis phonetic-languages-simplified-base process 27483 27660 ukrainian-phonetics-basic-array 27484 27661 ]; 27485 27662 description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; ··· 27489 27666 }) {}; 27490 27667 27491 27668 "algorithmic-composition-basic" = callPackage 27492 - ({ mkDerivation, base, bytestring, directory, foldable-ix 27493 - , mmsyn2-array, mmsyn3, mmsyn7l, mmsyn7ukr-common, process 27494 - , process-sequential, ukrainian-phonetics-basic-array-bytestring 27669 + ({ mkDerivation, base, directory, foldable-ix, mmsyn2-array, mmsyn3 27670 + , mmsyn7l, mmsyn7ukr-common, process, process-sequential 27671 + , ukrainian-phonetics-basic-array 27495 27672 }: 27496 27673 mkDerivation { 27497 27674 pname = "algorithmic-composition-basic"; 27498 - version = "0.5.0.0"; 27499 - sha256 = "0wd6fdx9wg92h8224xgwj0s4iawxx3abxpfjv8jz14fj6vk6hrzi"; 27675 + version = "0.6.0.0"; 27676 + sha256 = "0npazgs760bf1hsckp94mjyxf7q2nwirvi6n5rpibdkj9msb8bsy"; 27500 27677 libraryHaskellDepends = [ 27501 - base bytestring directory foldable-ix mmsyn2-array mmsyn3 mmsyn7l 27678 + base directory foldable-ix mmsyn2-array mmsyn3 mmsyn7l 27502 27679 mmsyn7ukr-common process process-sequential 27503 - ukrainian-phonetics-basic-array-bytestring 27680 + ukrainian-phonetics-basic-array 27504 27681 ]; 27505 27682 description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; 27506 27683 license = lib.licenses.mit; ··· 27508 27685 }) {}; 27509 27686 27510 27687 "algorithmic-composition-complex" = callPackage 27511 - ({ mkDerivation, algorithmic-composition-basic, base, bytestring 27512 - , directory, foldable-ix, mmsyn2-array, mmsyn3, mmsyn7l 27513 - , mmsyn7ukr-common, phonetic-languages-simplified-base, process 27514 - , ukrainian-phonetics-basic-array-bytestring 27688 + ({ mkDerivation, algorithmic-composition-basic, base, directory 27689 + , foldable-ix, mmsyn2-array, mmsyn3, mmsyn7l, mmsyn7ukr-common 27690 + , phonetic-languages-simplified-base, process 27691 + , ukrainian-phonetics-basic-array 27515 27692 }: 27516 27693 mkDerivation { 27517 27694 pname = "algorithmic-composition-complex"; 27518 - version = "0.1.1.0"; 27519 - sha256 = "0gajyjjghhjgkjah0x139ca2010161rnkaxn22zgn8yikcdnr036"; 27695 + version = "0.2.0.0"; 27696 + sha256 = "19lp3slcqmz704ffqkh1m4kwp9aqapj20w8pmzkf43ndb57s9dz4"; 27520 27697 libraryHaskellDepends = [ 27521 - algorithmic-composition-basic base bytestring directory foldable-ix 27698 + algorithmic-composition-basic base directory foldable-ix 27522 27699 mmsyn2-array mmsyn3 mmsyn7l mmsyn7ukr-common 27523 27700 phonetic-languages-simplified-base process 27524 - ukrainian-phonetics-basic-array-bytestring 27701 + ukrainian-phonetics-basic-array 27525 27702 ]; 27526 27703 description = "Helps to create more complex experimental music from a file (especially timbre)"; 27527 27704 license = lib.licenses.mit; ··· 31456 31633 }: 31457 31634 mkDerivation { 31458 31635 pname = "annotated-exception"; 31459 - version = "0.2.0.2"; 31460 - sha256 = "07njn6r1c3n1nblnlz5q2jrk5887vxxr2yzw4khqwayy0nmgbc7l"; 31636 + version = "0.2.0.4"; 31637 + sha256 = "090mv2a0k4mrhspa7wj62krl5m9y3c33nnr5m39qqdhgys37qrmb"; 31461 31638 libraryHaskellDepends = [ 31462 31639 base containers safe-exceptions text unliftio-core 31463 31640 ]; ··· 32261 32438 pname = "apecs"; 32262 32439 version = "0.9.4"; 32263 32440 sha256 = "0h4pdfh6c2cc9w13crn90rlllykv2axjfmxb74ji2l9m17m4w4vy"; 32441 + revision = "1"; 32442 + editedCabalFile = "1n0sz1230fp65dv462ss15yma6g1dxxlamj7idgl3kg9gdwv70sn"; 32264 32443 libraryHaskellDepends = [ 32265 32444 array base containers exceptions mtl template-haskell vector 32266 32445 ]; ··· 32293 32472 pname = "apecs-physics"; 32294 32473 version = "0.4.5"; 32295 32474 sha256 = "1ksxx5x998csgi3lr2yl18mk5sjccin20b15swyx1g9k7fsm7nx5"; 32475 + revision = "1"; 32476 + editedCabalFile = "0kzg82azksva8l13548qk4bkx5ww1z0ca1bv141gp4fr0vamw446"; 32296 32477 setupHaskellDepends = [ base Cabal ]; 32297 32478 libraryHaskellDepends = [ 32298 32479 apecs base containers inline-c linear template-haskell vector ··· 32320 32501 pname = "apecs-stm"; 32321 32502 version = "0.1.5"; 32322 32503 sha256 = "10zfmc1zgmw5fkrrcs0mnsb2h44b0zfn2y7w1ld47skvmz580dxp"; 32504 + revision = "1"; 32505 + editedCabalFile = "01rhwqs69bx09p2nqp9c01jhcqnfdfiisw6kck9gjq0h68j2rdib"; 32323 32506 libraryHaskellDepends = [ 32324 32507 apecs base containers list-t stm stm-containers template-haskell 32325 32508 vector ··· 33640 33823 }: 33641 33824 mkDerivation { 33642 33825 pname = "arbtt"; 33643 - version = "0.12"; 33644 - sha256 = "0amgkbycbpr8zhpn7l1a68ddhrvz1rcr74gi0znhx0y3vspns7v8"; 33826 + version = "0.12.0.1"; 33827 + sha256 = "1a2gabg8v28jcl1nddj4pfmpwc57g68i0qnnx3p26k3psrkmy6xq"; 33645 33828 isLibrary = false; 33646 33829 isExecutable = true; 33647 33830 executableHaskellDepends = [ ··· 34308 34491 }: 34309 34492 mkDerivation { 34310 34493 pname = "arithmoi"; 34311 - version = "0.12.0.1"; 34312 - sha256 = "1dsa0fw6z6b6gcsw23j08qayqyh2icya7gmb4v4r0adszr2p7ziz"; 34494 + version = "0.12.0.2"; 34495 + sha256 = "03mxkzcg2pik4p1ik648h3w953zmf47ycafm2gd7hgg4gadsnslj"; 34313 34496 configureFlags = [ "-f-llvm" ]; 34314 34497 libraryHaskellDepends = [ 34315 34498 array base chimera constraints containers deepseq exact-pi ··· 34436 34619 }) {}; 34437 34620 34438 34621 "array-builder" = callPackage 34439 - ({ mkDerivation, array-chunks, base, primitive, run-st, tasty 34440 - , tasty-hunit 34622 + ({ mkDerivation, array-chunks, base, bytebuild, byteslice 34623 + , primitive, run-st, tasty, tasty-hunit, text-short 34441 34624 }: 34442 34625 mkDerivation { 34443 34626 pname = "array-builder"; 34444 - version = "0.1.1.0"; 34445 - sha256 = "0g9mpplq813b33yfgfa095k2vnrxnj8lhxvw60qc6jky6l9q0inq"; 34446 - libraryHaskellDepends = [ array-chunks base primitive run-st ]; 34627 + version = "0.1.2.0"; 34628 + sha256 = "13km1jpr1wwvy2c43b3176hvj2a539758cpcgvqfy36gxxaasffw"; 34629 + libraryHaskellDepends = [ 34630 + array-chunks base bytebuild byteslice primitive run-st text-short 34631 + ]; 34447 34632 testHaskellDepends = [ base tasty tasty-hunit ]; 34448 34633 description = "Builders for arrays"; 34449 34634 license = lib.licenses.bsd3; ··· 35582 35767 pname = "assoc"; 35583 35768 version = "1.0.2"; 35584 35769 sha256 = "0kqlizznjy94fm8zr1ng633yxbinjff7cnsiaqs7m33ix338v66q"; 35585 - revision = "2"; 35586 - editedCabalFile = "17jd3668y4j3kwsqgzqjrxymbglhgzgjbkda48djlbhppkzd3ng0"; 35770 + revision = "3"; 35771 + editedCabalFile = "0mrb12dx316q4gxyn68x2rl8jq0gd77zffd12r8j1r41l0xd9f4k"; 35587 35772 libraryHaskellDepends = [ base bifunctors tagged ]; 35588 35773 description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; 35589 35774 license = lib.licenses.bsd3; ··· 35805 35990 pname = "async"; 35806 35991 version = "2.2.4"; 35807 35992 sha256 = "09d7w3krfhnmf9dp6yffa9wykinhw541wibnjgnlyv77w1dzhka8"; 35808 - revision = "1"; 35809 - editedCabalFile = "1w3hlcaq444qid3iqizb8sdl08jxwjmcfgfxqs2dw81mllsfqgdq"; 35993 + revision = "2"; 35994 + editedCabalFile = "1j93w1krkadqijn59yjiws1366yhcn2mad1irqrk50in6l10k51b"; 35810 35995 isLibrary = true; 35811 35996 isExecutable = true; 35812 35997 libraryHaskellDepends = [ base hashable stm ]; ··· 36543 36728 pname = "attenuation"; 36544 36729 version = "0.2.0"; 36545 36730 sha256 = "0qp203qchmllxsrcfz04lxnssrij203i5q8byy159vc8cspd03nq"; 36546 - revision = "2"; 36547 - editedCabalFile = "1ns7cxvx33xfsr66xsiaba2kbdvd3ypbbbj0mjlhw76pnhpdyc5f"; 36731 + revision = "3"; 36732 + editedCabalFile = "1kg8pqm1ry2nm6182ncj17dfgfxvhw7px460b0kx6j6gy3p0r6l9"; 36548 36733 libraryHaskellDepends = [ base constraints ]; 36549 36734 description = "Subtyping relations and variance roles"; 36550 36735 license = lib.licenses.asl20; ··· 36679 36864 pname = "attoparsec"; 36680 36865 version = "0.14.4"; 36681 36866 sha256 = "0v4yjz4qi8bwhbyavqxlhsfb1iv07v10gxi64khmsmi4hvjpycrz"; 36682 - revision = "1"; 36683 - editedCabalFile = "149ihklmwnl13mmixq6iq5gzggkgqwsqrjlg2fshqwwbvbd4nn3r"; 36867 + revision = "2"; 36868 + editedCabalFile = "00jyrn2asz1kp698l3fyh19xxxz4npf1993y041x9b9cq239smn0"; 36684 36869 libraryHaskellDepends = [ 36685 36870 array base bytestring containers deepseq ghc-prim scientific text 36686 36871 transformers ··· 37231 37416 pname = "authenticate-oauth"; 37232 37417 version = "1.7"; 37233 37418 sha256 = "0y4v46rn0cvm0sr1v8qq1zgzllrlrr3ji5gij1xprgf1zsazcvvl"; 37419 + revision = "1"; 37420 + editedCabalFile = "198xm2qdaqwg2m9kgrkw5gdk2bh19mmj6c4d5fsbpcjnhxlh6axg"; 37234 37421 libraryHaskellDepends = [ 37235 37422 base base64-bytestring blaze-builder bytestring crypto-pubkey-types 37236 37423 data-default http-client http-types random RSA SHA time ··· 38072 38259 pname = "aws-cloudfront-signed-cookies"; 38073 38260 version = "0.2.0.11"; 38074 38261 sha256 = "018a3q443h19pbcc178ns7zdmsdd3pz8ww3yfixrhr4jfghws3r9"; 38075 - revision = "2"; 38076 - editedCabalFile = "1i8zyr3kz1cm8ygzpkvxyfqzlnykkwsfa41yrb5k89729fw51dnm"; 38262 + revision = "3"; 38263 + editedCabalFile = "0vbrsfqb4ndcw221pqnprb8a7ymn8x92q7d0rwms9rkxpfbd0wyi"; 38077 38264 isLibrary = true; 38078 38265 isExecutable = true; 38079 38266 libraryHaskellDepends = [ ··· 39855 40042 license = lib.licenses.mit; 39856 40043 }) {}; 39857 40044 39858 - "base-compat_0_12_1" = callPackage 40045 + "base-compat_0_12_2" = callPackage 39859 40046 ({ mkDerivation, base, ghc-prim, unix }: 39860 40047 mkDerivation { 39861 40048 pname = "base-compat"; 39862 - version = "0.12.1"; 39863 - sha256 = "1z8ml19jsq616d9ggxly99rjqd3bsbmp17w4s2qwm20v0js3qs7v"; 40049 + version = "0.12.2"; 40050 + sha256 = "1gah466nd6hkj716gwljfh0g270iaqy2rq2a1vw3di2s7a4dqam6"; 39864 40051 libraryHaskellDepends = [ base ghc-prim unix ]; 39865 40052 description = "A compatibility layer for base"; 39866 40053 license = lib.licenses.mit; ··· 39882 40069 license = lib.licenses.mit; 39883 40070 }) {}; 39884 40071 39885 - "base-compat-batteries_0_12_1" = callPackage 40072 + "base-compat-batteries_0_12_2" = callPackage 39886 40073 ({ mkDerivation, base, base-compat, ghc-prim, hspec, hspec-discover 39887 40074 , QuickCheck 39888 40075 }: 39889 40076 mkDerivation { 39890 40077 pname = "base-compat-batteries"; 39891 - version = "0.12.1"; 39892 - sha256 = "12w3bpsz3xykhibc8wkhiii9nav7yxhlv424cy1b9v9ihbfkr3zr"; 39893 - revision = "2"; 39894 - editedCabalFile = "0p522rvawkpyr12jwa0cikpqihvq2xd99nr95l0s3zdjf1srv0gf"; 40078 + version = "0.12.2"; 40079 + sha256 = "16gbqng8556wqcvrmj3dmqxh9sxp7z6ixgv0j5sy017r0wp0ksgd"; 39895 40080 libraryHaskellDepends = [ base base-compat ghc-prim ]; 39896 40081 testHaskellDepends = [ base hspec QuickCheck ]; 39897 40082 testToolDepends = [ hspec-discover ]; ··· 39990 40175 }: 39991 40176 mkDerivation { 39992 40177 pname = "base-orphans"; 39993 - version = "0.8.6"; 39994 - sha256 = "1sqmh3x07aw2l2vzj8dhhs1a41kl8r0n46ayn92dh3yvg95ir8i0"; 40178 + version = "0.8.7"; 40179 + sha256 = "0iz4v4h2ydncdwfqzs8fd2qwl38dx0n94w5iymw2g4xy1mzxd3w8"; 39995 40180 libraryHaskellDepends = [ base ghc-prim ]; 39996 40181 testHaskellDepends = [ base hspec QuickCheck ]; 39997 40182 testToolDepends = [ hspec-discover ]; ··· 40435 40620 pname = "basement"; 40436 40621 version = "0.0.14"; 40437 40622 sha256 = "01kk3z0c48c2jhni8ba165zxzm4sljy18r97cad1yd897qjsy2mv"; 40623 + revision = "2"; 40624 + editedCabalFile = "16q5ilgblwhdhwxq8p76dp3c3gm55b6scgswx863zpjyca5avaif"; 40438 40625 libraryHaskellDepends = [ base ghc-prim ]; 40439 40626 description = "Foundation scrap box of array & string"; 40440 40627 license = lib.licenses.bsd3; 40441 40628 }) {}; 40442 40629 40630 + "basement_0_0_15" = callPackage 40631 + ({ mkDerivation, base, ghc-prim }: 40632 + mkDerivation { 40633 + pname = "basement"; 40634 + version = "0.0.15"; 40635 + sha256 = "1d2xj5dmjps7nc7rwp5s0kyjcg9v8xfql6ik4yk1d3affnvazhjn"; 40636 + libraryHaskellDepends = [ base ghc-prim ]; 40637 + description = "Foundation scrap box of array & string"; 40638 + license = lib.licenses.bsd3; 40639 + hydraPlatforms = lib.platforms.none; 40640 + }) {}; 40641 + 40443 40642 "basement-cd" = callPackage 40444 40643 ({ mkDerivation, base, ghc-prim }: 40445 40644 mkDerivation { ··· 40762 40961 pname = "batching"; 40763 40962 version = "0.1.0.0"; 40764 40963 sha256 = "1mks6w3zfvkdgi9didf94jp1hac9ps4pli75vn79p9hxjwc2fm27"; 40765 - revision = "2"; 40766 - editedCabalFile = "1ym25swz7hgfw7x2z55bmq8z3j9p22ln9z67lcdkc9sq4bfv0a8x"; 40964 + revision = "3"; 40965 + editedCabalFile = "1gahl1kia0ivs12hms380fjk1jdpnmrbns2kgf3csznfc7nbkv1c"; 40767 40966 libraryHaskellDepends = [ base primitive short-vec sint ]; 40768 40967 testHaskellDepends = [ 40769 40968 base primitive QuickCheck short-vec sint test-framework ··· 41649 41848 ({ mkDerivation, base, bytestring, mtl, time }: 41650 41849 mkDerivation { 41651 41850 pname = "benchpress"; 41652 - version = "0.2.2.20"; 41653 - sha256 = "0yh44hdk7gh6ygdlys2mrij2gphdv5da8hmc7rnyf6cr5509ynn8"; 41851 + version = "0.2.2.21"; 41852 + sha256 = "1rbkryxrzgzas7vv4rpxy718rgpmpmklnlmz91f09bn0qm8zdnnd"; 41654 41853 isLibrary = true; 41655 41854 isExecutable = true; 41656 41855 libraryHaskellDepends = [ base mtl time ]; ··· 42732 42931 }: 42733 42932 mkDerivation { 42734 42933 pname = "binary-orphans"; 42735 - version = "1.0.2"; 42736 - sha256 = "0q7yk3m275lcmar1dsrz009xasw34755cjrb6f2h4kkymy93qjsz"; 42737 - revision = "1"; 42738 - editedCabalFile = "01arf4sm4srri0iahvlzr2x2nzda7dnii1rwadlgaql5ns2ckazz"; 42934 + version = "1.0.3"; 42935 + sha256 = "0b302hhjaybwbnpzrd8qmdp24g2xj2svib34zfxqqxg67j159rg2"; 42739 42936 libraryHaskellDepends = [ base binary OneTuple transformers ]; 42740 42937 testHaskellDepends = [ 42741 42938 base binary OneTuple QuickCheck quickcheck-instances tagged tasty ··· 43997 44194 }: 43998 44195 mkDerivation { 43999 44196 pname = "binsm"; 44000 - version = "0.1.2"; 44001 - sha256 = "1nhdzy3hqqin67i25kgrrcny99lrdr9i6xddr8gjm6b32kqhakhw"; 44197 + version = "0.1.3"; 44198 + sha256 = "1id0gfgi4vsv8vi5dlvgcgc41ml5sywawzw1v4f1bcq92qirczkc"; 44002 44199 isLibrary = false; 44003 44200 isExecutable = true; 44004 44201 executableHaskellDepends = [ ··· 45068 45265 pname = "bits-extra"; 45069 45266 version = "0.0.2.3"; 45070 45267 sha256 = "1lyrr5jg8yg9cb97pn1pd4qgc7qn3irv8k5ra5j48fyn1rb6z4r7"; 45268 + revision = "1"; 45269 + editedCabalFile = "188qhzlknv8drhza7jn896wfxd043yipzax3vmrqldwhl88yn2aw"; 45071 45270 libraryHaskellDepends = [ base ghc-prim vector ]; 45072 45271 testHaskellDepends = [ 45073 45272 base doctest doctest-discover ghc-prim hedgehog hspec hw-hedgehog ··· 45927 46126 pname = "blaze-markup"; 45928 46127 version = "0.8.2.8"; 45929 46128 sha256 = "0jd30wg5yz0a97b36zwqg4hv8faifza1n2gys3l1p3fwf9l3zz23"; 45930 - revision = "2"; 45931 - editedCabalFile = "074zslyx5dxzz242n5rzhgdw9i58akrkm2jd37wazbk3062a7mrq"; 46129 + revision = "3"; 46130 + editedCabalFile = "1hn694kk615prqdn7bfzl0wvbw8bksxk4cxwmx8yhwpl0cq3fiwa"; 45932 46131 libraryHaskellDepends = [ base blaze-builder bytestring text ]; 45933 46132 testHaskellDepends = [ 45934 46133 base blaze-builder bytestring containers HUnit QuickCheck tasty ··· 48094 48293 hydraPlatforms = lib.platforms.none; 48095 48294 }) {}; 48096 48295 48097 - "brick_1_0" = callPackage 48296 + "brick_1_1" = callPackage 48098 48297 ({ mkDerivation, base, bimap, bytestring, config-ini, containers 48099 48298 , contravariant, data-clist, deepseq, directory, dlist, exceptions 48100 48299 , filepath, microlens, microlens-mtl, microlens-th, mtl, QuickCheck ··· 48103 48302 }: 48104 48303 mkDerivation { 48105 48304 pname = "brick"; 48106 - version = "1.0"; 48107 - sha256 = "00r0slc0yvzr789q71dr0cbixy4bw73qsiv5mldpc4f2q5sj10bk"; 48305 + version = "1.1"; 48306 + sha256 = "1mnlm0vbbldih1h0i07mriqsinfkjqqkbrsyk2z20fa9wb8cam3k"; 48108 48307 isLibrary = true; 48109 48308 isExecutable = true; 48110 48309 libraryHaskellDepends = [ ··· 51102 51301 ({ mkDerivation, base, Cabal, filepath }: 51103 51302 mkDerivation { 51104 51303 pname = "cabal-appimage"; 51105 - version = "0.3.0.4"; 51106 - sha256 = "1plgswf3mrkdn6fysghbmkcnjjk00afvlyb39m7h92vwxwxkv6yl"; 51304 + version = "0.3.0.5"; 51305 + sha256 = "1kc038ig8a3pl71fa8415ycwhm3amy9q30cfr17vlbhjh2lcfz2y"; 51107 51306 libraryHaskellDepends = [ base Cabal filepath ]; 51108 51307 description = "Cabal support for creating AppImage applications"; 51109 51308 license = lib.licenses.agpl3Only; ··· 51269 51468 }: 51270 51469 mkDerivation { 51271 51470 pname = "cabal-clean"; 51272 - version = "0.1.20210924"; 51273 - sha256 = "11r46rfncgp8gmvvsfp64krdnp0q4rykrhv5z2gwrxyv5sjkfpyz"; 51471 + version = "0.1.20220814"; 51472 + sha256 = "10kw1d6gxksgawpklqmjhbdc507zcxsghnf6vjwiv2wikrmz8b0d"; 51274 51473 isLibrary = false; 51275 51474 isExecutable = true; 51276 51475 executableHaskellDepends = [ ··· 51282 51481 mainProgram = "cabal-clean"; 51283 51482 }) {}; 51284 51483 51484 + "cabal-clean_0_2_20220819" = callPackage 51485 + ({ mkDerivation, base, containers, directory, filemanip, filepath 51486 + , mtl, optparse-applicative, pretty-terminal, process, silently 51487 + , split, string-qq 51488 + }: 51489 + mkDerivation { 51490 + pname = "cabal-clean"; 51491 + version = "0.2.20220819"; 51492 + sha256 = "17zrny2wyqfvyjdsqj6z18cdq66ycj66i6mpr122paa08608kyrn"; 51493 + isLibrary = false; 51494 + isExecutable = true; 51495 + executableHaskellDepends = [ 51496 + base containers directory filemanip filepath mtl 51497 + optparse-applicative pretty-terminal process silently split 51498 + string-qq 51499 + ]; 51500 + description = "Remove outdated cabal build artefacts from `dist-newstyle`"; 51501 + license = lib.licenses.bsd3; 51502 + hydraPlatforms = lib.platforms.none; 51503 + mainProgram = "cabal-clean"; 51504 + }) {}; 51505 + 51285 51506 "cabal-constraints" = callPackage 51286 51507 ({ mkDerivation, base, Cabal, optparse-applicative }: 51287 51508 mkDerivation { ··· 51424 51645 pname = "cabal-doctest"; 51425 51646 version = "1.0.9"; 51426 51647 sha256 = "0wxs0xkspc80h0g8ks792lrzldxvcnhc9rja1j0k678ijs20hmjm"; 51427 - revision = "1"; 51428 - editedCabalFile = "0dw9h3zqivzzisjz0g3ccb10fwz858dhvy6hvwm5i1sj80wm8imd"; 51648 + revision = "2"; 51649 + editedCabalFile = "0868js0qgfhvmyw4hjzrvmlzyqsm8dfsbmqhybxb90x44xi3r0i1"; 51429 51650 libraryHaskellDepends = [ base Cabal directory filepath ]; 51430 51651 description = "A Setup.hs helper for running doctests"; 51431 51652 license = lib.licenses.bsd3; ··· 51687 51908 51688 51909 "cabal-install" = callPackage 51689 51910 ({ mkDerivation, array, async, base, base16-bytestring, binary 51690 - , bytestring, Cabal, containers, cryptohash-sha256, deepseq 51691 - , directory, echo, edit-distance, filepath, hackage-security 51692 - , hashable, HTTP, lukko, mtl, network-uri, parsec, pretty, process 51693 - , random, regex-base, regex-posix, resolv, stm, tar, text, time 51694 - , transformers, unix, zlib 51911 + , bytestring, Cabal, Cabal-described, cabal-install-solver 51912 + , Cabal-QuickCheck, Cabal-syntax, Cabal-tree-diff, containers 51913 + , cryptohash-sha256, directory, echo, edit-distance, exceptions 51914 + , filepath, hackage-security, hashable, HTTP, lukko, mtl 51915 + , network-uri, parsec, pretty, pretty-show, process, QuickCheck 51916 + , random, regex-base, regex-posix, resolv, safe-exceptions, stm 51917 + , tagged, tar, tasty, tasty-expected-failure, tasty-golden 51918 + , tasty-hunit, tasty-quickcheck, text, time, tree-diff, unix, zlib 51695 51919 }: 51696 51920 mkDerivation { 51697 51921 pname = "cabal-install"; 51698 - version = "3.6.2.0"; 51699 - sha256 = "0dihpm4h3xh13vnpvwflnb7v614qdvljycc6ffg5cvhwbwfrxyfw"; 51700 - revision = "1"; 51701 - editedCabalFile = "0891zma6ci26ndbb98mahps0dxy7zccj3mqa9d194j3d305hs9av"; 51702 - isLibrary = false; 51922 + version = "3.8.1.0"; 51923 + sha256 = "1rk7xb86c1vgarv1m16d2i82fiig6q119j51gvq2pq8l5rpl7kk1"; 51924 + isLibrary = true; 51703 51925 isExecutable = true; 51926 + libraryHaskellDepends = [ 51927 + array async base base16-bytestring binary bytestring Cabal 51928 + cabal-install-solver Cabal-syntax containers cryptohash-sha256 51929 + directory echo edit-distance exceptions filepath hackage-security 51930 + hashable HTTP lukko mtl network-uri parsec pretty process random 51931 + regex-base regex-posix resolv safe-exceptions stm tar text time 51932 + unix zlib 51933 + ]; 51704 51934 executableHaskellDepends = [ 51705 - array async base base16-bytestring binary bytestring Cabal 51706 - containers cryptohash-sha256 deepseq directory echo edit-distance 51707 - filepath hackage-security hashable HTTP lukko mtl network-uri 51708 - parsec pretty process random regex-base regex-posix resolv stm tar 51709 - text time transformers unix zlib 51935 + base Cabal Cabal-syntax directory filepath 51936 + ]; 51937 + testHaskellDepends = [ 51938 + array base bytestring Cabal Cabal-described cabal-install-solver 51939 + Cabal-QuickCheck Cabal-syntax Cabal-tree-diff containers directory 51940 + filepath hashable mtl network-uri pretty-show QuickCheck random 51941 + tagged tar tasty tasty-expected-failure tasty-golden tasty-hunit 51942 + tasty-quickcheck time tree-diff zlib 51710 51943 ]; 51711 51944 doCheck = false; 51712 51945 postInstall = '' ··· 51715 51948 ''; 51716 51949 description = "The command-line interface for Cabal and Hackage"; 51717 51950 license = lib.licenses.bsd3; 51951 + hydraPlatforms = lib.platforms.none; 51718 51952 mainProgram = "cabal"; 51719 51953 maintainers = [ lib.maintainers.peti ]; 51720 - }) {}; 51954 + broken = true; 51955 + }) {Cabal-QuickCheck = null; Cabal-described = null; 51956 + Cabal-tree-diff = null;}; 51721 51957 51722 51958 "cabal-install-bundle" = callPackage 51723 51959 ({ mkDerivation, array, base, bytestring, Cabal, containers ··· 51813 52049 license = "GPL-2.0-or-later AND BSD-3-Clause"; 51814 52050 }) {}; 51815 52051 52052 + "cabal-install-solver" = callPackage 52053 + ({ mkDerivation, array, base, bytestring, Cabal, Cabal-syntax 52054 + , containers, edit-distance, filepath, mtl, pretty, tasty 52055 + , tasty-hunit, tasty-quickcheck, transformers 52056 + }: 52057 + mkDerivation { 52058 + pname = "cabal-install-solver"; 52059 + version = "3.8.1.0"; 52060 + sha256 = "1rzzi3jx5ivxy43vdg460fsbn1p2v5br1havcara65vmqgv6j8yz"; 52061 + libraryHaskellDepends = [ 52062 + array base bytestring Cabal Cabal-syntax containers edit-distance 52063 + filepath mtl pretty transformers 52064 + ]; 52065 + testHaskellDepends = [ 52066 + base Cabal Cabal-syntax tasty tasty-hunit tasty-quickcheck 52067 + ]; 52068 + description = "The command-line interface for Cabal and Hackage"; 52069 + license = lib.licenses.bsd3; 52070 + }) {}; 52071 + 51816 52072 "cabal-lenses" = callPackage 51817 52073 ({ mkDerivation, base, Cabal, lens, strict, system-fileio 51818 52074 , system-filepath, text, transformers, unordered-containers ··· 53714 53970 pname = "capability"; 53715 53971 version = "0.5.0.1"; 53716 53972 sha256 = "0sksd42ywaq5av7a1h9y66pclsk1fd9qx46q38kgs3av88zhzqci"; 53973 + revision = "1"; 53974 + editedCabalFile = "1ilnax8c71xvj84a36c91l3ypcil1f6kbadssv0fz2n2c4m6r7g6"; 53717 53975 libraryHaskellDepends = [ 53718 53976 base constraints dlist exceptions generic-lens lens monad-control 53719 53977 mtl mutable-containers primitive reflection safe-exceptions ··· 55663 55921 }: 55664 55922 mkDerivation { 55665 55923 pname = "cereal"; 55666 - version = "0.5.8.2"; 55667 - sha256 = "0kvnlm22qdmb7g2jz7imsvh799q4nvms1ni0cbba5vigp5ai64hp"; 55668 - revision = "1"; 55669 - editedCabalFile = "16hdvwa1qpwicn512mnsksi4zdnwmqnn9sdga4iy3jza4rj9lzgy"; 55924 + version = "0.5.8.3"; 55925 + sha256 = "0shg3q933cvf18j1gmxill48d4sl4mvxj2qkj6yya9hvcqh5544r"; 55670 55926 libraryHaskellDepends = [ 55671 55927 array base bytestring containers ghc-prim 55672 55928 ]; ··· 58809 59065 }: 58810 59066 mkDerivation { 58811 59067 pname = "clash-shake"; 58812 - version = "0.3.0"; 58813 - sha256 = "1iprssnpxykh9fjgckjnh5qlmnf1drgzjjfcq9fxyqs755y38vbi"; 59068 + version = "0.3.1"; 59069 + sha256 = "1paym4vsihwggml62m0ijlln9349p4yrcpg6bvh6i199h3qs78id"; 58814 59070 libraryHaskellDepends = [ 58815 59071 aeson base bytestring clash-ghc clash-lib clash-prelude directory 58816 59072 shake split stache text unordered-containers ··· 59442 59698 pname = "cleff"; 59443 59699 version = "0.3.3.0"; 59444 59700 sha256 = "0fnpk28nhafypp7p1ay1760sin9hh06dz23r68gmm93i879ayl9b"; 59701 + revision = "1"; 59702 + editedCabalFile = "1g3y1sh1rg7calrpr5l5rmm4hdyqbni59hm10dkb62xb23v5p6mq"; 59445 59703 libraryHaskellDepends = [ 59446 59704 atomic-primops base containers exceptions microlens monad-control 59447 59705 primitive template-haskell th-abstraction transformers-base ··· 61936 62194 pname = "collate"; 61937 62195 version = "0.1.0.0"; 61938 62196 sha256 = "1fh335mwk51gyhyxilv83z66ilz5ws3ni8cbr4qmpfpgf9m1jp5s"; 61939 - revision = "1"; 61940 - editedCabalFile = "1456p4dqfmlzf0sagga050f7zrp1rns129q0d9hia8yipmf16j0v"; 62197 + revision = "2"; 62198 + editedCabalFile = "08jzbmws1mj9cchn59pnbyrkia4kzz02sl8jhp7rmby2irm9vx1x"; 61941 62199 libraryHaskellDepends = [ 61942 62200 base containers lens primitive transformers vector 61943 62201 ]; ··· 65793 66051 }: 65794 66052 mkDerivation { 65795 66053 pname = "config-schema"; 65796 - version = "1.2.2.0"; 65797 - sha256 = "10mp76j2gxcb51865lb6cf3nkc2nc7fwarkghb6yz71q6sbrg3yx"; 65798 - revision = "2"; 65799 - editedCabalFile = "0i9r3a4xakq8a92gh10f8g885z0znnaadwz3sc1x7z0367bfsygg"; 66054 + version = "1.3.0.0"; 66055 + sha256 = "1j5br9y4s51ajxyg4aldibywqhf4qrxhrypac8jgca2irxdwb29w"; 65800 66056 libraryHaskellDepends = [ 65801 66057 base config-value containers free kan-extensions pretty 65802 66058 semigroupoids text transformers ··· 65829 66085 }: 65830 66086 mkDerivation { 65831 66087 pname = "config-value"; 65832 - version = "0.8.2.1"; 65833 - sha256 = "1kqkh5w4q8k2r9gab2x4grsbgx7gi18fabg7laiwpl3dm2acmz7k"; 66088 + version = "0.8.3"; 66089 + sha256 = "0pkcwxg91wali7986k03d7q940hb078hlsxfknqhkp2spr3d1f3w"; 65834 66090 libraryHaskellDepends = [ array base containers pretty text ]; 65835 66091 libraryToolDepends = [ alex happy ]; 65836 66092 testHaskellDepends = [ base text ]; ··· 66000 66256 }: 66001 66257 mkDerivation { 66002 66258 pname = "configurator-pg"; 66003 - version = "0.2.6"; 66004 - sha256 = "0zlj733fyw0iiczjzzp9mlgywd175crp853wyp9b1gq1m2j6vxnm"; 66259 + version = "0.2.7"; 66260 + sha256 = "17ik5vl6zriqgp7fxkv60l6jcfnh842rw5254ly3wy2c13nk9h4f"; 66005 66261 libraryHaskellDepends = [ 66006 66262 base containers megaparsec protolude scientific text 66007 66263 ]; ··· 67951 68207 license = lib.licenses.mit; 67952 68208 }) {}; 67953 68209 68210 + "core-data_0_3_6_0" = callPackage 68211 + ({ mkDerivation, aeson, base, bytestring, containers, core-text 68212 + , hashable, hourglass, prettyprinter, scientific, text, time 68213 + , unordered-containers, uuid, vector 68214 + }: 68215 + mkDerivation { 68216 + pname = "core-data"; 68217 + version = "0.3.6.0"; 68218 + sha256 = "17x6dkrrps7cwh232fhmwn1r06xn28ghxysw26rba44lwshc9wga"; 68219 + libraryHaskellDepends = [ 68220 + aeson base bytestring containers core-text hashable hourglass 68221 + prettyprinter scientific text time unordered-containers uuid vector 68222 + ]; 68223 + description = "Convenience wrappers around common data structures and encodings"; 68224 + license = lib.licenses.mit; 68225 + hydraPlatforms = lib.platforms.none; 68226 + }) {}; 68227 + 67954 68228 "core-haskell" = callPackage 67955 68229 ({ mkDerivation, base, haskeline, haskell-src-exts, hint }: 67956 68230 mkDerivation { ··· 68016 68290 ({ mkDerivation, async, base, bytestring, core-data, core-program 68017 68291 , core-text, exceptions, http-streams, io-streams, mtl 68018 68292 , network-info, random, safe-exceptions, scientific, stm 68019 - , template-haskell, text, time, unix, zlib 68293 + , template-haskell, text, time, unix, uuid-types, zlib 68020 68294 }: 68021 68295 mkDerivation { 68022 68296 pname = "core-telemetry"; 68023 - version = "0.2.5.0"; 68024 - sha256 = "1wl9ijgbn6qjivl2yv7y9brh80rfissxhzqj6564bl9lhncjqdyp"; 68297 + version = "0.2.6.0"; 68298 + sha256 = "04a0blnkap9mdlryikvn5dri60k0dvhkbbp9112p8417ywp0gsh7"; 68025 68299 libraryHaskellDepends = [ 68026 68300 async base bytestring core-data core-program core-text exceptions 68027 68301 http-streams io-streams mtl network-info random safe-exceptions 68028 - scientific stm template-haskell text time unix zlib 68302 + scientific stm template-haskell text time unix uuid-types zlib 68029 68303 ]; 68030 68304 description = "Advanced telemetry"; 68031 68305 license = lib.licenses.mit; ··· 68417 68691 }: 68418 68692 mkDerivation { 68419 68693 pname = "country"; 68420 - version = "0.2.2"; 68421 - sha256 = "149j83j8y7q078azsbq4clrmgcd95w3980fs2dfqg7hmmiff8gcm"; 68694 + version = "0.2.3"; 68695 + sha256 = "12d1nymfj13jgh5jhznrg8sgxvxyb2y3lvbl6p4mpa3qqhggyr3g"; 68422 68696 libraryHaskellDepends = [ 68423 68697 aeson attoparsec base bytebuild bytehash byteslice bytestring 68424 68698 contiguous deepseq entropy hashable primitive primitive-unlifted ··· 69594 69868 ]; 69595 69869 description = "Robust, reliable performance measurement and analysis"; 69596 69870 license = lib.licenses.bsd3; 69871 + mainProgram = "criterion-report"; 69872 + }) {}; 69873 + 69874 + "criterion_1_6_0_0" = callPackage 69875 + ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat 69876 + , base-compat-batteries, binary, binary-orphans, bytestring 69877 + , cassava, code-page, containers, criterion-measurement, deepseq 69878 + , directory, exceptions, filepath, Glob, HUnit, js-chart 69879 + , microstache, mtl, mwc-random, optparse-applicative, parsec 69880 + , QuickCheck, statistics, tasty, tasty-hunit, tasty-quickcheck 69881 + , text, time, transformers, transformers-compat, vector 69882 + , vector-algorithms 69883 + }: 69884 + mkDerivation { 69885 + pname = "criterion"; 69886 + version = "1.6.0.0"; 69887 + sha256 = "1c2jl881bb3g4w037dx4bs3s164s306vayw2jxd9k3hmrnffyaa0"; 69888 + isLibrary = true; 69889 + isExecutable = true; 69890 + enableSeparateDataOutput = true; 69891 + libraryHaskellDepends = [ 69892 + aeson ansi-wl-pprint base base-compat-batteries binary 69893 + binary-orphans bytestring cassava code-page containers 69894 + criterion-measurement deepseq directory exceptions filepath Glob 69895 + js-chart microstache mtl mwc-random optparse-applicative parsec 69896 + statistics text time transformers transformers-compat vector 69897 + vector-algorithms 69898 + ]; 69899 + executableHaskellDepends = [ 69900 + base base-compat-batteries optparse-applicative 69901 + ]; 69902 + testHaskellDepends = [ 69903 + aeson base base-compat base-compat-batteries bytestring deepseq 69904 + directory HUnit QuickCheck statistics tasty tasty-hunit 69905 + tasty-quickcheck vector 69906 + ]; 69907 + description = "Robust, reliable performance measurement and analysis"; 69908 + license = lib.licenses.bsd3; 69909 + hydraPlatforms = lib.platforms.none; 69597 69910 mainProgram = "criterion-report"; 69598 69911 }) {}; 69599 69912 ··· 69657 69970 license = lib.licenses.bsd3; 69658 69971 }) {}; 69659 69972 69973 + "criterion-measurement_0_2_0_0" = callPackage 69974 + ({ mkDerivation, aeson, base, base-compat, binary, containers 69975 + , deepseq, vector 69976 + }: 69977 + mkDerivation { 69978 + pname = "criterion-measurement"; 69979 + version = "0.2.0.0"; 69980 + sha256 = "1cyanb4w3p2nr5vfqdl8s3abqh0avnpqxnjhfanj7vj18gbm06ja"; 69981 + libraryHaskellDepends = [ 69982 + aeson base base-compat binary containers deepseq vector 69983 + ]; 69984 + description = "Criterion measurement functionality and associated types"; 69985 + license = lib.licenses.bsd3; 69986 + hydraPlatforms = lib.platforms.none; 69987 + }) {}; 69988 + 69660 69989 "criterion-plus" = callPackage 69661 69990 ({ mkDerivation, base, criterion, deepseq, HTF, HUnit, loch-th 69662 69991 , monad-control, mtl, optparse-applicative, placeholders ··· 70268 70597 pname = "crypto-rng-effectful"; 70269 70598 version = "1.0.0.0"; 70270 70599 sha256 = "185ax4v4bfg944igscjg0vb0p15af4vwqdfn239x6xayfgy4xzl0"; 70271 - revision = "2"; 70272 - editedCabalFile = "1jzfinvkwssplxrnpg8f9nckzabbzajbsfq4r675fvkv2h98ikz0"; 70600 + revision = "3"; 70601 + editedCabalFile = "1cq7df3mrj5v7v3l4c28ppd8zczkdsmjbzazcnk47i83nhaqdxxz"; 70273 70602 libraryHaskellDepends = [ 70274 70603 base bytestring crypto-rng effectful-core random 70275 70604 ]; ··· 70466 70795 pname = "cryptohash-md5"; 70467 70796 version = "0.11.101.0"; 70468 70797 sha256 = "018g13hkmq5782i24b4518hcd926fl6x6fh5hd7b9wlxwc5dn21v"; 70798 + revision = "1"; 70799 + editedCabalFile = "0s2f5cd46lqymmbpcnzlxsim5qk8yrr52j5mmi31zrhd24b3bqln"; 70469 70800 libraryHaskellDepends = [ base bytestring ]; 70470 70801 testHaskellDepends = [ 70471 70802 base base16-bytestring bytestring pureMD5 tasty tasty-hunit ··· 70484 70815 pname = "cryptohash-sha1"; 70485 70816 version = "0.11.101.0"; 70486 70817 sha256 = "0h9jl9v38gj0vnscqx7xdklk634p05fa6z2pcvknisq2mnbjq154"; 70818 + revision = "1"; 70819 + editedCabalFile = "0bz9rfl7b2iwn45m0lxcmsyi5rrv3xdgzx2lzr79bds91dw6i25b"; 70487 70820 libraryHaskellDepends = [ base bytestring ]; 70488 70821 testHaskellDepends = [ 70489 70822 base base16-bytestring bytestring SHA tasty tasty-hunit ··· 70502 70835 pname = "cryptohash-sha256"; 70503 70836 version = "0.11.102.1"; 70504 70837 sha256 = "1xkb7iqplbw4fy1122p79xf1zcb7k44rl0wmfj1q06l7cdqxr9vk"; 70838 + revision = "1"; 70839 + editedCabalFile = "1hyzqv30rpj920ddnr0zypyjjlh52vyp2d140pn2byayj820rkgs"; 70505 70840 configureFlags = [ "-fuse-cbits" ]; 70506 70841 isLibrary = true; 70507 70842 isExecutable = true; ··· 70523 70858 pname = "cryptohash-sha512"; 70524 70859 version = "0.11.101.0"; 70525 70860 sha256 = "0a6sc5b6w0k47fyjhyrfm3p25jsbsqjknfq5mbj53p2p1qsfykc1"; 70861 + revision = "1"; 70862 + editedCabalFile = "1mjbn84bg9r3m1dcfpmmalck2wdfdm4i8wrqfi624mbaqs8a0fqs"; 70526 70863 libraryHaskellDepends = [ base bytestring ]; 70527 70864 testHaskellDepends = [ 70528 70865 base base16-bytestring bytestring SHA tasty tasty-hunit ··· 71820 72157 }: 71821 72158 mkDerivation { 71822 72159 pname = "curryer-rpc"; 71823 - version = "0.2.1"; 71824 - sha256 = "1ii7q63pr3zazkb76j1912yjzamj62h3ilqpszypq5s27vfs2yb4"; 72160 + version = "0.2.2"; 72161 + sha256 = "112ppmjf2dw7d26a0bxydp33fa0l2qx5absqq5hi0jsqrjx2lqj5"; 71825 72162 isLibrary = true; 71826 72163 isExecutable = true; 71827 72164 libraryHaskellDepends = [ ··· 73712 74049 pname = "data-fix"; 73713 74050 version = "0.3.2"; 73714 74051 sha256 = "1k0rcbb6dzv0ggdxqa2bh4jr829y0bczjrg98mrk5733q0xjs5rs"; 73715 - revision = "2"; 73716 - editedCabalFile = "0ymn341kg2c1wf1vp04v25bpnf857krhv91q4kl7b2k4h5ipf2g9"; 74052 + revision = "3"; 74053 + editedCabalFile = "0z77i9y86wlc13396akl8qxq39rwpkhhcs5fadzk47bwn7v1gsmx"; 73717 74054 libraryHaskellDepends = [ base deepseq hashable ]; 73718 74055 description = "Fixpoint data types"; 73719 74056 license = lib.licenses.bsd3; ··· 75472 75809 license = lib.licenses.asl20; 75473 75810 }) {}; 75474 75811 75475 - "dbus_1_2_25" = callPackage 75812 + "dbus_1_2_26" = callPackage 75476 75813 ({ mkDerivation, base, bytestring, cereal, conduit, containers 75477 75814 , criterion, deepseq, directory, exceptions, extra, filepath, lens 75478 75815 , network, parsec, process, QuickCheck, random, resourcet, split ··· 75481 75818 }: 75482 75819 mkDerivation { 75483 75820 pname = "dbus"; 75484 - version = "1.2.25"; 75485 - sha256 = "10qijlyr7aj4f92ci6728rkhng1w8ng7l3csm2rs27dqvafhs3qy"; 75821 + version = "1.2.26"; 75822 + sha256 = "1c9ljbwcrnzlbrjjp7bgpwbwykm03qvha05h55yp8k11za03wh9i"; 75486 75823 libraryHaskellDepends = [ 75487 75824 base bytestring cereal conduit containers deepseq exceptions 75488 75825 filepath lens network parsec random split template-haskell text ··· 76376 76713 pname = "decision-diagrams"; 76377 76714 version = "0.2.0.0"; 76378 76715 sha256 = "0l03mwig95h300rn1cfhd5ahwrlap6zsw09lwmkx6wkw6rjf4a5s"; 76379 - revision = "1"; 76380 - editedCabalFile = "12wki53kzfry2fh8039zvs0ifkzcz48vkg9ks8ycb60sjqqqf1cl"; 76716 + revision = "2"; 76717 + editedCabalFile = "0hp3k385p5lngfa3v3g8rnf34d3x0drk8i76mlk2c9bmbsl9dmfh"; 76381 76718 libraryHaskellDepends = [ 76382 76719 base containers hashable hashtables intern mwc-random primitive 76383 76720 random reflection unordered-containers vector ··· 77285 77622 pname = "dependent-literals"; 77286 77623 version = "0.2.0"; 77287 77624 sha256 = "1i3mzijqk2pf7am9kh1ydhrw9qj1ijfq8kwvxhrqcx28kaz63rvd"; 77625 + revision = "1"; 77626 + editedCabalFile = "06idgw3i8b7zp55ram7rkg2vpdb1qkyp1ywq98246d3qfq8zkddk"; 77288 77627 libraryHaskellDepends = [ 77289 77628 base fin-int numeric-kinds sint snumber tagged type-compare wrapped 77290 77629 ]; ··· 77300 77639 pname = "dependent-literals-plugin"; 77301 77640 version = "0.1.0.2"; 77302 77641 sha256 = "0bllcf19psak7sfhlqh78lbrdgx3ylqislrvdhjc9syvhaw5khq1"; 77642 + revision = "1"; 77643 + editedCabalFile = "14325kanxwarm8x84b6pcr7ym62bqblvpl1a25xhy0jyxgwqhl6j"; 77303 77644 libraryHaskellDepends = [ base ghc syb ]; 77304 77645 testHaskellDepends = [ 77305 77646 base dependent-literals fin-int numeric-kinds short-vec sint ··· 78470 78811 maintainers = [ lib.maintainers.Gabriel439 ]; 78471 78812 }) {}; 78472 78813 78473 - "dhall_1_41_1" = callPackage 78814 + "dhall_1_41_2" = callPackage 78474 78815 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 78475 78816 , base, base16-bytestring, bytestring, case-insensitive, cborg 78476 78817 , cborg-json, containers, contravariant, cryptohash-sha256 78477 78818 , data-fix, deepseq, Diff, directory, doctest, dotgen, either 78478 78819 , exceptions, filepath, foldl, gauge, generic-random, half 78479 78820 , hashable, haskeline, http-client, http-client-tls, http-types 78480 - , lens-family-core, megaparsec, mmorph, mockery, mtl, network-uri 78481 - , optparse-applicative, parser-combinators, parsers, pretty-simple 78482 - , prettyprinter, prettyprinter-ansi-terminal, profunctors 78483 - , QuickCheck, quickcheck-instances, repline, scientific, serialise 78821 + , indexed-traversable, lens-family-core, megaparsec, mmorph 78822 + , mockery, mtl, network-uri, optparse-applicative 78823 + , parser-combinators, parsers, pretty-simple, prettyprinter 78824 + , prettyprinter-ansi-terminal, profunctors, QuickCheck 78825 + , quickcheck-instances, repline, scientific, serialise 78484 78826 , special-values, spoon, system-filepath, tasty 78485 78827 , tasty-expected-failure, tasty-hunit, tasty-quickcheck 78486 78828 , tasty-silver, template-haskell, temporary, text, text-manipulate 78487 - , th-lift-instances, time, transformers, turtle 78829 + , text-short, th-lift-instances, time, transformers, turtle 78488 78830 , unordered-containers, uri-encode, vector 78489 78831 }: 78490 78832 mkDerivation { 78491 78833 pname = "dhall"; 78492 - version = "1.41.1"; 78493 - sha256 = "09flx2mfl8mzszn0hx80fai3ryiwgjkbxyklfkpmm5hw1smkdslv"; 78494 - revision = "3"; 78495 - editedCabalFile = "0x4dkfg3257c4vq05ca7jcyk7p446djzzwwc5j509wj23mrqf30h"; 78834 + version = "1.41.2"; 78835 + sha256 = "14m5rrvkid76qnvg0l14xw1mnqclhip3gjrz20g1lp4fd5p056ka"; 78496 78836 isLibrary = true; 78497 78837 isExecutable = true; 78498 78838 enableSeparateDataOutput = true; ··· 78501 78841 base16-bytestring bytestring case-insensitive cborg cborg-json 78502 78842 containers contravariant cryptohash-sha256 data-fix deepseq Diff 78503 78843 directory dotgen either exceptions filepath half hashable haskeline 78504 - http-client http-client-tls http-types lens-family-core megaparsec 78505 - mmorph mtl network-uri optparse-applicative parser-combinators 78506 - parsers pretty-simple prettyprinter prettyprinter-ansi-terminal 78507 - profunctors repline scientific serialise template-haskell text 78508 - text-manipulate th-lift-instances time transformers 78509 - unordered-containers uri-encode vector 78844 + http-client http-client-tls http-types indexed-traversable 78845 + lens-family-core megaparsec mmorph mtl network-uri 78846 + optparse-applicative parser-combinators parsers pretty-simple 78847 + prettyprinter prettyprinter-ansi-terminal profunctors repline 78848 + scientific serialise template-haskell text text-manipulate 78849 + text-short th-lift-instances time transformers unordered-containers 78850 + uri-encode vector 78510 78851 ]; 78511 78852 executableHaskellDepends = [ 78512 78853 aeson aeson-pretty ansi-terminal atomic-write base 78513 78854 base16-bytestring bytestring case-insensitive cborg cborg-json 78514 78855 containers contravariant data-fix deepseq Diff directory dotgen 78515 - either exceptions filepath half hashable haskeline lens-family-core 78516 - megaparsec mmorph mtl network-uri optparse-applicative 78517 - parser-combinators parsers pretty-simple prettyprinter 78518 - prettyprinter-ansi-terminal profunctors repline scientific 78519 - serialise template-haskell text text-manipulate th-lift-instances 78520 - time transformers unordered-containers uri-encode vector 78856 + either exceptions filepath half hashable haskeline 78857 + indexed-traversable lens-family-core megaparsec mmorph mtl 78858 + network-uri optparse-applicative parser-combinators parsers 78859 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 78860 + repline scientific serialise template-haskell text text-manipulate 78861 + text-short th-lift-instances time transformers unordered-containers 78862 + uri-encode vector 78521 78863 ]; 78522 78864 testHaskellDepends = [ 78523 78865 aeson aeson-pretty ansi-terminal atomic-write base 78524 78866 base16-bytestring bytestring case-insensitive cborg cborg-json 78525 78867 containers contravariant data-fix deepseq Diff directory doctest 78526 78868 dotgen either exceptions filepath foldl generic-random half 78527 - hashable haskeline http-client http-client-tls lens-family-core 78528 - megaparsec mmorph mockery mtl network-uri optparse-applicative 78529 - parser-combinators parsers pretty-simple prettyprinter 78530 - prettyprinter-ansi-terminal profunctors QuickCheck 78869 + hashable haskeline http-client http-client-tls indexed-traversable 78870 + lens-family-core megaparsec mmorph mockery mtl network-uri 78871 + optparse-applicative parser-combinators parsers pretty-simple 78872 + prettyprinter prettyprinter-ansi-terminal profunctors QuickCheck 78531 78873 quickcheck-instances repline scientific serialise special-values 78532 78874 spoon system-filepath tasty tasty-expected-failure tasty-hunit 78533 78875 tasty-quickcheck tasty-silver template-haskell temporary text 78534 - text-manipulate th-lift-instances time transformers turtle 78535 - unordered-containers uri-encode vector 78876 + text-manipulate text-short th-lift-instances time transformers 78877 + turtle unordered-containers uri-encode vector 78536 78878 ]; 78537 78879 benchmarkHaskellDepends = [ 78538 78880 aeson aeson-pretty ansi-terminal atomic-write base 78539 78881 base16-bytestring bytestring case-insensitive cborg cborg-json 78540 78882 containers contravariant data-fix deepseq Diff directory dotgen 78541 78883 either exceptions filepath gauge half hashable haskeline 78542 - lens-family-core megaparsec mmorph mtl network-uri 78543 - optparse-applicative parser-combinators parsers pretty-simple 78544 - prettyprinter prettyprinter-ansi-terminal profunctors repline 78545 - scientific serialise template-haskell text text-manipulate 78546 - th-lift-instances time transformers unordered-containers uri-encode 78547 - vector 78884 + indexed-traversable lens-family-core megaparsec mmorph mtl 78885 + network-uri optparse-applicative parser-combinators parsers 78886 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 78887 + repline scientific serialise template-haskell text text-manipulate 78888 + text-short th-lift-instances time transformers unordered-containers 78889 + uri-encode vector 78548 78890 ]; 78549 78891 doCheck = false; 78550 78892 description = "A configuration language guaranteed to terminate"; ··· 78632 78974 }: 78633 78975 mkDerivation { 78634 78976 pname = "dhall-csv"; 78635 - version = "1.0.2"; 78636 - sha256 = "08m9gjjldbzbgqr7vb33xjnzn7vmhf8gp9zh73vvzbchflwgh48p"; 78637 - revision = "1"; 78638 - editedCabalFile = "08zavv7bpb4033imzqmbxpxh51a3srcy58h85k4nmii73xv1iwzg"; 78977 + version = "1.0.3"; 78978 + sha256 = "1ynlyxj585v7ngsladl4dxl7pzkq0sb1j99xzzzn0nbj7x0jigbr"; 78639 78979 isLibrary = true; 78640 78980 isExecutable = true; 78641 78981 libraryHaskellDepends = [ ··· 78666 79006 }: 78667 79007 mkDerivation { 78668 79008 pname = "dhall-docs"; 78669 - version = "1.0.9"; 78670 - sha256 = "1va5bv7jz3msp39l782qbc1m3n5wnjdqx4jsj9vqdydqbfsk8gri"; 79009 + version = "1.0.10"; 79010 + sha256 = "1rh6nxmjin8kvbscbhbcjsgxnlkw1r19plzpps6wkx86zfjd2ms2"; 78671 79011 isLibrary = true; 78672 79012 isExecutable = true; 78673 79013 enableSeparateDataOutput = true; ··· 78756 79096 maintainers = [ lib.maintainers.Gabriel439 ]; 78757 79097 }) {}; 78758 79098 78759 - "dhall-json_1_7_10" = callPackage 79099 + "dhall-json_1_7_11" = callPackage 78760 79100 ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 78761 79101 , base, bytestring, containers, dhall, exceptions, filepath 78762 79102 , lens-family-core, optparse-applicative, prettyprinter ··· 78765 79105 }: 78766 79106 mkDerivation { 78767 79107 pname = "dhall-json"; 78768 - version = "1.7.10"; 78769 - sha256 = "11gpsgd3aafqh9v10gib7yivy3dp7dhd1a3dslf2ivc7na3d8p71"; 78770 - revision = "1"; 78771 - editedCabalFile = "1dhs90y4jn2ipc1x0srd3a5qrgh0pj0laqd7mmqgwr3l9f0p19g6"; 79108 + version = "1.7.11"; 79109 + sha256 = "0a7gcnx5xm2b1kvprvxlm7bjk68c30qs8cy3596pyngw7grsrhi6"; 78772 79110 isLibrary = true; 78773 79111 isExecutable = true; 78774 79112 libraryHaskellDepends = [ ··· 78818 79156 }: 78819 79157 mkDerivation { 78820 79158 pname = "dhall-lsp-server"; 78821 - version = "1.1.1"; 78822 - sha256 = "0z4gc27fpz1pcjbajwpxgn0zhxlp9xp47lyg55p03ghfpqa2mcl6"; 78823 - revision = "3"; 78824 - editedCabalFile = "0lb51q09fdsnwlfsgna8ssv3434w550kla193kslbrmx5vsi04kp"; 79159 + version = "1.1.2"; 79160 + sha256 = "1wrbi22i276wf9yw4ljxri602213fyl08zbk978l13zxglnrj4zh"; 78825 79161 isLibrary = true; 78826 79162 isExecutable = true; 78827 79163 libraryHaskellDepends = [ ··· 78866 79202 maintainers = [ lib.maintainers.Gabriel439 ]; 78867 79203 }) {}; 78868 79204 78869 - "dhall-nix_1_1_24" = callPackage 79205 + "dhall-nix_1_1_25" = callPackage 78870 79206 ({ mkDerivation, base, containers, data-fix, dhall, hnix 78871 79207 , lens-family-core, neat-interpolation, optparse-generic, text 78872 79208 }: 78873 79209 mkDerivation { 78874 79210 pname = "dhall-nix"; 78875 - version = "1.1.24"; 78876 - sha256 = "1zaqzccrj3yn502k1b9drs882ycxw59m3jgsbafj6fny1v5ljcha"; 79211 + version = "1.1.25"; 79212 + sha256 = "1541h6hym254dycq6h40rqn82qbk74d071k67hf62aqd9l2g4y6p"; 78877 79213 isLibrary = true; 78878 79214 isExecutable = true; 78879 79215 libraryHaskellDepends = [ ··· 78898 79234 }: 78899 79235 mkDerivation { 78900 79236 pname = "dhall-nixpkgs"; 78901 - version = "1.0.8"; 78902 - sha256 = "1jr9njnly63d5bzd9np7hijmczkwamb4j2k14h647h6i3hhkxh8n"; 78903 - revision = "1"; 78904 - editedCabalFile = "0navmlh0yh3abk114x7grv7rcbxxvk1yvh3lvnwc23qq6gm34r79"; 79237 + version = "1.0.9"; 79238 + sha256 = "1j0i2qhizmzhz2l46xwklgkki6nqa6imzdqdfm6xy3gkfdlna753"; 78905 79239 isLibrary = false; 78906 79240 isExecutable = true; 78907 79241 executableHaskellDepends = [ ··· 78923 79257 }: 78924 79258 mkDerivation { 78925 79259 pname = "dhall-openapi"; 78926 - version = "1.0.4"; 78927 - sha256 = "1hvjilm1hjq4963l7xnr1r35x023pgddv0l3bvfgryd58zv728ah"; 78928 - revision = "2"; 78929 - editedCabalFile = "1vb7hka8iwprl555zl20z6wgl1zkah6bj02b9r0x6b99mds463x0"; 79260 + version = "1.0.5"; 79261 + sha256 = "1sfsjvpq28nv3njf3flki3wawm0flbdwz08x4qiv6bmki3yijpxs"; 78930 79262 isLibrary = true; 78931 79263 isExecutable = true; 78932 79264 libraryHaskellDepends = [ ··· 79091 79423 maintainers = [ lib.maintainers.Gabriel439 ]; 79092 79424 }) {}; 79093 79425 79426 + "dhall-yaml_1_2_11" = callPackage 79427 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 79428 + , dhall-json, exceptions, HsYAML, HsYAML-aeson 79429 + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 79430 + , tasty, tasty-expected-failure, tasty-hunit, text, vector 79431 + }: 79432 + mkDerivation { 79433 + pname = "dhall-yaml"; 79434 + version = "1.2.11"; 79435 + sha256 = "1iqn9gign1y9cysdghxip4gpcp3x4knirlnm3mkin7zbr9hhxflh"; 79436 + isLibrary = true; 79437 + isExecutable = true; 79438 + libraryHaskellDepends = [ 79439 + aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson 79440 + optparse-applicative text vector 79441 + ]; 79442 + executableHaskellDepends = [ 79443 + aeson ansi-terminal base bytestring dhall dhall-json exceptions 79444 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 79445 + ]; 79446 + testHaskellDepends = [ 79447 + base bytestring dhall dhall-json tasty tasty-expected-failure 79448 + tasty-hunit text 79449 + ]; 79450 + description = "Convert between Dhall and YAML"; 79451 + license = lib.licenses.gpl3Only; 79452 + hydraPlatforms = lib.platforms.none; 79453 + maintainers = [ lib.maintainers.Gabriel439 ]; 79454 + }) {}; 79455 + 79094 79456 "dhcp-lease-parser" = callPackage 79095 79457 ({ mkDerivation, attoparsec, base, bytestring, chronos, ip, tasty 79096 79458 , tasty-hunit, text ··· 79281 79643 }: 79282 79644 mkDerivation { 79283 79645 pname = "diagnose"; 79284 - version = "2.3.1"; 79285 - sha256 = "09xyhg735pdws5gck2893gh1rhcx1xirv0n3kchgll9q19wh533l"; 79646 + version = "2.4.0"; 79647 + sha256 = "08y6r3kbrql2ysyrs81h9rdp3ifg9sln9l4bvcmk3hcscifgglgg"; 79286 79648 libraryHaskellDepends = [ 79287 79649 array base data-default dlist hashable prettyprinter 79288 79650 prettyprinter-ansi-terminal text unordered-containers wcwidth ··· 79395 79757 pname = "diagrams-cairo"; 79396 79758 version = "1.4.2"; 79397 79759 sha256 = "094vavgsfn7hxn2h7phvmx82wdhw51vqqv29p8hsvmijf1gxa7c1"; 79398 - revision = "1"; 79399 - editedCabalFile = "1pcc4vh1sb6h4bq4x2nxpynjvmif2bn1w3ddi24jbjhgr5b6ln59"; 79760 + revision = "2"; 79761 + editedCabalFile = "0hn1bbssknzqz3b8r281d4ibzv3fx3n33vaqcixajhcb87wnsi10"; 79400 79762 libraryHaskellDepends = [ 79401 79763 array base bytestring cairo colour containers data-default-class 79402 79764 diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl ··· 81578 81940 pname = "discrimination"; 81579 81941 version = "0.5"; 81580 81942 sha256 = "1qq7fs1dsfqgf4969gksqcp3swcx0wbzdh66a89fv78k6y94g0pc"; 81943 + revision = "1"; 81944 + editedCabalFile = "0mlask4a08z0bkns89857vj96cqdqvdxqf5q7qsa0kpdaqkwrjz9"; 81581 81945 libraryHaskellDepends = [ 81582 81946 array base containers contravariant deepseq ghc-bignum ghc-prim 81583 81947 hashable primitive promises transformers ··· 82817 83181 }: 82818 83182 mkDerivation { 82819 83183 pname = "dnf-repo"; 82820 - version = "0.1"; 82821 - sha256 = "1xsicihfdvygqpnham4y0cixd07iyh4mxcjrmbivrc3mglb3qgf2"; 83184 + version = "0.3"; 83185 + sha256 = "0x2x6sapghvm4006iplk750ihign5akl1mlrga79k8f81krb3i3s"; 82822 83186 isLibrary = false; 82823 83187 isExecutable = true; 82824 83188 enableSeparateDataOutput = true; ··· 82886 83250 }: 82887 83251 mkDerivation { 82888 83252 pname = "dns-patterns"; 82889 - version = "0.1.1"; 82890 - sha256 = "1x2qrn4nvpvmxyby0p6mcgicz3xspd7x390gnz6p7vpanx72r0w3"; 83253 + version = "0.1.3"; 83254 + sha256 = "01373vx919s6xznifc0nv9dlwnqh8j0h57v0pdzmpfa5z7jyq7vf"; 82891 83255 libraryHaskellDepends = [ 82892 83256 attoparsec base bytestring parser-combinators text 82893 83257 ]; ··· 83049 83413 ({ mkDerivation, base, dobutokO-frequency }: 83050 83414 mkDerivation { 83051 83415 pname = "dobutokO-effects"; 83052 - version = "0.13.0.0"; 83053 - sha256 = "10xpr7nqhx1djsgcgfr40v7axkl8a0fxx16vrpvr7h525ygyibp5"; 83416 + version = "0.13.1.0"; 83417 + sha256 = "1k5jlzhbkh2ksk2y9iinsrsiwjcln7d077zcba8rjygq3d0gga9p"; 83054 83418 libraryHaskellDepends = [ base dobutokO-frequency ]; 83055 83419 description = "A library to deal with SoX effects and possibilities"; 83056 83420 license = lib.licenses.mit; ··· 83061 83425 ({ mkDerivation, base }: 83062 83426 mkDerivation { 83063 83427 pname = "dobutokO-frequency"; 83064 - version = "0.1.1.0"; 83065 - sha256 = "11ngz39dqdcv6xkff9b590cbhd94gx1q71v6cz3birmhvbf8qwrm"; 83428 + version = "0.1.2.0"; 83429 + sha256 = "165j0v7388jrjg1j3i7kl1vs7sb6r0s8c98i2kszqlw2ph4iq3vc"; 83066 83430 libraryHaskellDepends = [ base ]; 83067 83431 description = "Helps to create experimental music. Working with frequencies and types."; 83068 83432 license = lib.licenses.mit; ··· 83407 83771 pname = "doclayout"; 83408 83772 version = "0.4"; 83409 83773 sha256 = "18xkzywfw0hl3hgbq9z36hs040vb0iz9yygx33cybxfi4i0dwbkx"; 83774 + revision = "1"; 83775 + editedCabalFile = "0djwb7nrdablc0iy1qakrxpd4m7nn0w94vhb78il3jhjbj2ji179"; 83410 83776 enableSeparateDataOutput = true; 83411 83777 libraryHaskellDepends = [ base containers emojis mtl safe text ]; 83412 83778 testHaskellDepends = [ ··· 83514 83880 pname = "doctemplates"; 83515 83881 version = "0.10.0.2"; 83516 83882 sha256 = "0as0sc4x4ch5z233dqlb8xqg97xbfbzw2dqsz9rfq8rw10v9yx57"; 83883 + revision = "1"; 83884 + editedCabalFile = "17r6ig72bzqd59p11sjaf9y27pm4yig1a1s1igs57s88cy47qz05"; 83517 83885 enableSeparateDataOutput = true; 83518 83886 libraryHaskellDepends = [ 83519 83887 aeson base containers doclayout filepath HsYAML mtl parsec safe ··· 83738 84106 license = lib.licenses.mit; 83739 84107 }) {}; 83740 84108 84109 + "doctest-parallel_0_2_5" = callPackage 84110 + ({ mkDerivation, base, base-compat, Cabal, code-page, containers 84111 + , deepseq, directory, exceptions, extra, filepath, ghc, ghc-paths 84112 + , Glob, hspec, hspec-core, hspec-discover, HUnit, mockery, pretty 84113 + , process, QuickCheck, random, setenv, silently, stringbuilder, syb 84114 + , template-haskell, transformers, unordered-containers 84115 + }: 84116 + mkDerivation { 84117 + pname = "doctest-parallel"; 84118 + version = "0.2.5"; 84119 + sha256 = "075y4yllpgfq0dlfd6y9nqhsdkxzb9s3jgb0v194l216kg5zsqzc"; 84120 + libraryHaskellDepends = [ 84121 + base base-compat Cabal code-page containers deepseq directory 84122 + exceptions extra filepath ghc ghc-paths Glob pretty process random 84123 + syb template-haskell transformers unordered-containers 84124 + ]; 84125 + testHaskellDepends = [ 84126 + base base-compat code-page containers deepseq directory exceptions 84127 + filepath ghc ghc-paths hspec hspec-core hspec-discover HUnit 84128 + mockery process QuickCheck setenv silently stringbuilder syb 84129 + transformers 84130 + ]; 84131 + testToolDepends = [ hspec-discover ]; 84132 + doHaddock = false; 84133 + description = "Test interactive Haskell examples"; 84134 + license = lib.licenses.mit; 84135 + hydraPlatforms = lib.platforms.none; 84136 + }) {}; 84137 + 83741 84138 "doctest-prop" = callPackage 83742 84139 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 83743 84140 mkDerivation { ··· 85562 85959 license = lib.licenses.bsd3; 85563 85960 }) {}; 85564 85961 85962 + "dual-tree_0_2_3_1" = callPackage 85963 + ({ mkDerivation, base, monoid-extras, QuickCheck, semigroups 85964 + , testing-feat 85965 + }: 85966 + mkDerivation { 85967 + pname = "dual-tree"; 85968 + version = "0.2.3.1"; 85969 + sha256 = "19nm34d166fhlkk7npx0iq9kbx7300a82bg75q1sx98jqfa4nffh"; 85970 + libraryHaskellDepends = [ base monoid-extras semigroups ]; 85971 + testHaskellDepends = [ 85972 + base monoid-extras QuickCheck semigroups testing-feat 85973 + ]; 85974 + description = "Rose trees with cached and accumulating monoidal annotations"; 85975 + license = lib.licenses.bsd3; 85976 + hydraPlatforms = lib.platforms.none; 85977 + }) {}; 85978 + 85565 85979 "dualizer" = callPackage 85566 85980 ({ mkDerivation, base, bifunctors, comonad, containers, lens 85567 85981 , template-haskell, transformers ··· 87502 87916 }: 87503 87917 mkDerivation { 87504 87918 pname = "effectful"; 87505 - version = "1.2.0.0"; 87506 - sha256 = "02ynz63c30vssq9lfcn619ll44q5yhnc9w1axbnmsp63zw93swap"; 87919 + version = "2.0.0.0"; 87920 + sha256 = "1fhi7nfaxbazq01pgypf5mk6gd6k983jm3qbvwf6wi75xqx68rxy"; 87507 87921 libraryHaskellDepends = [ 87508 87922 async base bytestring directory effectful-core process stm time 87509 87923 unliftio ··· 87525 87939 }: 87526 87940 mkDerivation { 87527 87941 pname = "effectful-core"; 87528 - version = "1.2.0.0"; 87529 - sha256 = "0brhwd0axkq383b67jyhhgasny353issx7hak7lirvwn6zwfnilr"; 87942 + version = "2.0.0.0"; 87943 + sha256 = "15jg59843h0llv6v6s66nhz8q48ch1y5jibpxq4ki3w91nqaz13i"; 87530 87944 libraryHaskellDepends = [ 87531 87945 base containers exceptions monad-control primitive 87532 87946 transformers-base unliftio-core ··· 87544 87958 pname = "effectful-plugin"; 87545 87959 version = "1.0.0.0"; 87546 87960 sha256 = "11y9d1ylwhgrrwf0pcpjqix2vrwzbwr2rlma6rm0h8yqpkchbx81"; 87547 - revision = "2"; 87548 - editedCabalFile = "1dc2asmhiydfz21cgrvmqqx4nwr8k7s2fdgwhvq1qf3zn6k086bx"; 87961 + revision = "3"; 87962 + editedCabalFile = "127phsvh3pq96lram633hwawcy594n36gc5cxiwaagaksi240568"; 87549 87963 libraryHaskellDepends = [ 87550 87964 base containers effectful-core ghc ghc-tcplugins-extra 87551 87965 ]; ··· 87562 87976 pname = "effectful-th"; 87563 87977 version = "1.0.0.0"; 87564 87978 sha256 = "0qvsxw1ajmr63r1bkgkchj5ra8g1ypx135ld62bip2mvqaxha9ih"; 87565 - revision = "2"; 87566 - editedCabalFile = "0v56i1wdq06v5hk7wcq8zgg60i8rbq1dqc47wwjz1wia5l2plhrl"; 87979 + revision = "3"; 87980 + editedCabalFile = "1nqwvgdvqgh4dvkidyaga7jd95p3hn54hy5gwadsvyf9lll4vjck"; 87567 87981 libraryHaskellDepends = [ 87568 87982 base containers effectful exceptions template-haskell 87569 87983 th-abstraction ··· 89303 89717 }) {}; 89304 89718 89305 89719 "ema" = callPackage 89306 - ({ mkDerivation, aeson, async, base, constraints-extras, containers 89307 - , data-default, dependent-sum, dependent-sum-template, directory 89308 - , filepath, filepattern, http-types, lvar, monad-logger 89309 - , monad-logger-extras, neat-interpolation, optparse-applicative 89310 - , relude, text, unliftio, url-slug, wai, wai-middleware-static 89720 + ({ mkDerivation, aeson, async, base, blaze-html, blaze-markup 89721 + , constraints-extras, containers, data-default, dependent-sum 89722 + , dependent-sum-template, directory, file-embed, filepath 89723 + , filepattern, fsnotify, generic-optics, generics-sop, http-types 89724 + , lvar, monad-logger, monad-logger-extras, mtl, neat-interpolation 89725 + , optics-core, optparse-applicative, pandoc, pandoc-types 89726 + , raw-strings-qq, relude, sop-core, template-haskell, text, time 89727 + , unionmount, unliftio, url-slug, wai, wai-middleware-static 89311 89728 , wai-websockets, warp, websockets 89312 89729 }: 89313 89730 mkDerivation { 89314 89731 pname = "ema"; 89315 - version = "0.6.0.0"; 89316 - sha256 = "0xha83himdaj64pm09dpvl0lrjvs6alk6mxh73d7ah1dbfsm79h1"; 89732 + version = "0.8.0.0"; 89733 + sha256 = "03phqldw1dldmp4gp1wmlm8cyb5qkg1v62brvhwbc9cl1iasllk2"; 89734 + enableSeparateDataOutput = true; 89317 89735 libraryHaskellDepends = [ 89318 - aeson async base constraints-extras containers data-default 89319 - dependent-sum dependent-sum-template directory filepath filepattern 89320 - http-types lvar monad-logger monad-logger-extras neat-interpolation 89321 - optparse-applicative relude text unliftio url-slug wai 89322 - wai-middleware-static wai-websockets warp websockets 89736 + aeson async base blaze-html blaze-markup constraints-extras 89737 + containers data-default dependent-sum dependent-sum-template 89738 + directory file-embed filepath filepattern fsnotify generic-optics 89739 + generics-sop http-types lvar monad-logger monad-logger-extras mtl 89740 + neat-interpolation optics-core optparse-applicative pandoc 89741 + pandoc-types relude sop-core template-haskell text time unionmount 89742 + unliftio url-slug wai wai-middleware-static wai-websockets warp 89743 + websockets 89744 + ]; 89745 + testHaskellDepends = [ 89746 + base generics-sop raw-strings-qq template-haskell text url-slug 89323 89747 ]; 89324 89748 description = "Static site generator library with hot reload"; 89325 89749 license = lib.licenses.agpl3Only; ··· 89980 90404 pname = "entropy"; 89981 90405 version = "0.4.1.7"; 89982 90406 sha256 = "1vp99gqavv5hg09zs2v0p74cxn135z1bq7qhxbk47d36npz3s1m9"; 90407 + revision = "1"; 90408 + editedCabalFile = "1r2xhsw66885dld1jdlrzg781d5wk273f5czqx4s5q7ad2cxiyfs"; 89983 90409 setupHaskellDepends = [ base Cabal directory filepath process ]; 89984 90410 libraryHaskellDepends = [ base bytestring unix ]; 89985 90411 description = "A platform independent entropy source"; ··· 91236 91662 }: 91237 91663 mkDerivation { 91238 91664 pname = "ersatz"; 91239 - version = "0.4.11"; 91240 - sha256 = "0zaw5a4za77xa1h8msg5v9hk6m215ykl3c258kgk519yvrfavyi3"; 91665 + version = "0.4.12"; 91666 + sha256 = "0xdmp8yc22flb2p7bczb56k2z79kp4zs0y9x5430029whhz90bar"; 91241 91667 isLibrary = true; 91242 91668 isExecutable = true; 91243 91669 enableSeparateDataOutput = true; ··· 91490 91916 license = lib.licenses.bsd3; 91491 91917 }) {}; 91492 91918 91919 + "esqueleto_3_5_7_0" = callPackage 91920 + ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring 91921 + , conduit, containers, exceptions, hspec, hspec-core, monad-logger 91922 + , mtl, mysql, mysql-simple, persistent, persistent-mysql 91923 + , persistent-postgresql, persistent-sqlite, postgresql-simple 91924 + , QuickCheck, resourcet, tagged, template-haskell, text, time 91925 + , transformers, unliftio, unordered-containers 91926 + }: 91927 + mkDerivation { 91928 + pname = "esqueleto"; 91929 + version = "3.5.7.0"; 91930 + sha256 = "1dqd1ni4rv70yrb71cbldrak22dgxgns3qnfhsnwbwp5mia9h1v1"; 91931 + libraryHaskellDepends = [ 91932 + aeson attoparsec base blaze-html bytestring conduit containers 91933 + monad-logger persistent resourcet tagged template-haskell text time 91934 + transformers unliftio unordered-containers 91935 + ]; 91936 + testHaskellDepends = [ 91937 + aeson attoparsec base blaze-html bytestring conduit containers 91938 + exceptions hspec hspec-core monad-logger mtl mysql mysql-simple 91939 + persistent persistent-mysql persistent-postgresql persistent-sqlite 91940 + postgresql-simple QuickCheck resourcet tagged template-haskell text 91941 + time transformers unliftio unordered-containers 91942 + ]; 91943 + description = "Type-safe EDSL for SQL queries on persistent backends"; 91944 + license = lib.licenses.bsd3; 91945 + hydraPlatforms = lib.platforms.none; 91946 + }) {}; 91947 + 91493 91948 "esqueleto-pgcrypto" = callPackage 91494 91949 ({ mkDerivation, base, esqueleto, hspec, monad-logger, persistent 91495 91950 , persistent-postgresql, QuickCheck, text, transformers, unliftio ··· 93322 93777 93323 93778 "exiftool" = callPackage 93324 93779 ({ mkDerivation, aeson, base, base64, bytestring, hashable, process 93325 - , scientific, string-conversions, temporary, text 93326 - , unordered-containers, vector 93780 + , scientific, temporary, text, unordered-containers, vector, witch 93327 93781 }: 93328 93782 mkDerivation { 93329 93783 pname = "exiftool"; 93330 - version = "0.2.0.0"; 93331 - sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 93332 - revision = "2"; 93333 - editedCabalFile = "1f1qa9qlmi3i7iif6ddazgqpgds64fr467c0rs53060rcbyjr9gd"; 93784 + version = "0.2.0.1"; 93785 + sha256 = "1s59pbwih18izh1iy9y0i56ysh2246dkdv98nan72zp2br5wz7g3"; 93334 93786 libraryHaskellDepends = [ 93335 - aeson base base64 bytestring hashable process scientific 93336 - string-conversions temporary text unordered-containers vector 93787 + aeson base base64 bytestring hashable process scientific temporary 93788 + text unordered-containers vector witch 93337 93789 ]; 93338 93790 description = "Haskell bindings to ExifTool"; 93339 93791 license = lib.licenses.mit; ··· 95013 95465 broken = true; 95014 95466 }) {}; 95015 95467 95468 + "faktory_1_1_2_3" = callPackage 95469 + ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, base 95470 + , bytestring, connection, cryptonite, errors, hspec, markdown-unlit 95471 + , megaparsec, memory, mtl, network, random, safe-exceptions 95472 + , scanner, semigroups, text, time, unix, unordered-containers 95473 + }: 95474 + mkDerivation { 95475 + pname = "faktory"; 95476 + version = "1.1.2.3"; 95477 + sha256 = "1mihcmz3wzw2f6vfwv7xkvzhiql1fbb5v2llpkx5y455z939xl37"; 95478 + isLibrary = true; 95479 + isExecutable = true; 95480 + libraryHaskellDepends = [ 95481 + aeson aeson-casing base bytestring connection cryptonite errors 95482 + megaparsec memory mtl network random safe-exceptions scanner 95483 + semigroups text time unix unordered-containers 95484 + ]; 95485 + executableHaskellDepends = [ aeson base safe-exceptions ]; 95486 + testHaskellDepends = [ 95487 + aeson aeson-qq async base hspec markdown-unlit mtl time 95488 + ]; 95489 + testToolDepends = [ markdown-unlit ]; 95490 + description = "Faktory Worker for Haskell"; 95491 + license = lib.licenses.mit; 95492 + hydraPlatforms = lib.platforms.none; 95493 + broken = true; 95494 + }) {}; 95495 + 95016 95496 "fallible" = callPackage 95017 95497 ({ mkDerivation, base, transformers }: 95018 95498 mkDerivation { ··· 96148 96628 license = "GPL"; 96149 96629 }) {}; 96150 96630 96631 + "fedora-composes" = callPackage 96632 + ({ mkDerivation, base, bytestring, extra, http-conduit 96633 + , http-directory, simple-cmd, simple-cmd-args, text, time 96634 + }: 96635 + mkDerivation { 96636 + pname = "fedora-composes"; 96637 + version = "0.1"; 96638 + sha256 = "0vnkl4ikkl15gnmhrap7r0dlk80s9y8a4gdgbf7ilk7j6plw51b5"; 96639 + isLibrary = false; 96640 + isExecutable = true; 96641 + executableHaskellDepends = [ 96642 + base bytestring extra http-conduit http-directory simple-cmd-args 96643 + text time 96644 + ]; 96645 + testHaskellDepends = [ base simple-cmd ]; 96646 + description = "Query Fedora composes"; 96647 + license = lib.licenses.bsd3; 96648 + hydraPlatforms = lib.platforms.none; 96649 + mainProgram = "fedora-composes"; 96650 + }) {}; 96651 + 96151 96652 "fedora-dists" = callPackage 96152 96653 ({ mkDerivation, aeson, base, bytestring, cached-json-file, pdc 96153 96654 , text, time ··· 97581 98082 pname = "filestore"; 97582 98083 version = "0.6.5"; 97583 98084 sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; 98085 + revision = "1"; 98086 + editedCabalFile = "1v9xqm0112knv6za05qf310ldndrc0h3xhajgwjaycbzkrknz4n7"; 97584 98087 libraryHaskellDepends = [ 97585 98088 base bytestring containers Diff directory filepath old-locale 97586 98089 parsec process split time utf8-string xml ··· 97755 98258 pname = "fin-int"; 97756 98259 version = "0.2.0"; 97757 98260 sha256 = "0ra5lcd3ybmv1a0l7bisjlgi7b8mywa6c6pj7n82ppyi6rqssdlh"; 97758 - revision = "2"; 97759 - editedCabalFile = "0c95hcd7shv5jhx7dg0riq3hqikyb1xgzj2dd7442hw8hglqkcxs"; 98261 + revision = "3"; 98262 + editedCabalFile = "1lwdv6z1rk734y7ccb6igyxlwbaqriww9d4ra3l4n20bcasmwb6w"; 97760 98263 libraryHaskellDepends = [ 97761 98264 attenuation base data-default-class deepseq portray portray-diff 97762 98265 QuickCheck sint ··· 98071 98574 pname = "finite-table"; 98072 98575 version = "0.1.0.1"; 98073 98576 sha256 = "17bn5wmv5sz89yh3lh39i1armi168wxxnz6l9smcfmw334lidlv6"; 98074 - revision = "3"; 98075 - editedCabalFile = "0bp43mbapcx4a2vvqfqs146faimafjm9h8vqjipcl2wwcfz46cca"; 98577 + revision = "4"; 98578 + editedCabalFile = "0hpq9rf8ckvk7ffxrpl683n6g1dvlw05qhjj98hhyxzws0dggrd0"; 98076 98579 libraryHaskellDepends = [ 98077 98580 adjunctions base cereal data-default-class deepseq distributive 98078 98581 fin-int indexed-traversable lens portray portray-diff short-vec ··· 98101 98604 maintainers = [ lib.maintainers.turion ]; 98102 98605 }) {}; 98103 98606 98607 + "finite-typelits_0_1_6_0" = callPackage 98608 + ({ mkDerivation, base, deepseq, QuickCheck }: 98609 + mkDerivation { 98610 + pname = "finite-typelits"; 98611 + version = "0.1.6.0"; 98612 + sha256 = "0f047dywlxiz3pl3rq6maym9wpwjwl4zjqfwlwnj0yiv7dmlaiih"; 98613 + libraryHaskellDepends = [ base deepseq ]; 98614 + testHaskellDepends = [ base deepseq QuickCheck ]; 98615 + description = "A type inhabited by finitely many values, indexed by type-level naturals"; 98616 + license = lib.licenses.bsd3; 98617 + hydraPlatforms = lib.platforms.none; 98618 + maintainers = [ lib.maintainers.turion ]; 98619 + }) {}; 98620 + 98104 98621 "finito" = callPackage 98105 98622 ({ mkDerivation, base, numeric-domains, propeller, split 98106 98623 , transformers ··· 98228 98745 pname = "first-class-families"; 98229 98746 version = "0.8.0.1"; 98230 98747 sha256 = "0wnsq69f2br9h9hnf8sx41pchwjag86hb41ivjl7wx81psyqy72a"; 98231 - revision = "1"; 98232 - editedCabalFile = "1n6hpfc65lwmiwdg2gwjngvy146sw43r6j9q06g4vv4p69ci5r4b"; 98748 + revision = "2"; 98749 + editedCabalFile = "0idiqb4ckwa7hya827gc2cbjh83wmz3cppnl124834pkla2h99np"; 98233 98750 libraryHaskellDepends = [ base ]; 98234 98751 testHaskellDepends = [ base ]; 98235 98752 description = "First-class type families"; ··· 98443 98960 }: 98444 98961 mkDerivation { 98445 98962 pname = "fix-whitespace"; 98446 - version = "0.0.8"; 98447 - sha256 = "1vjbh3jx67xdzxnpyh9k2c5qv5axw07wck5jmahg0kxrj1w2nhh6"; 98963 + version = "0.0.9"; 98964 + sha256 = "0mykmvyici46kzvvcq17z19y02ma49a2y5n1r20pjbvyz5rz9vbm"; 98448 98965 isLibrary = false; 98449 98966 isExecutable = true; 98450 98967 executableHaskellDepends = [ ··· 98878 99395 pname = "flac"; 98879 99396 version = "0.2.0"; 98880 99397 sha256 = "03zmsnnpkk26ss8ka2l7x9gsfcmiqfyc73v7fna6sk5cwzxsb33c"; 98881 - revision = "2"; 98882 - editedCabalFile = "1b3cbhvvhbv1d0gkfwgn9j9jx9cjn3w606vbpfhak2cyjmw26q36"; 99398 + revision = "3"; 99399 + editedCabalFile = "1cjy3066klhcywx5yba7ky58wsibhhwiamjbimdv04qc8vmdfm45"; 98883 99400 enableSeparateDataOutput = true; 98884 99401 libraryHaskellDepends = [ 98885 99402 base bytestring containers directory exceptions filepath mtl text ··· 101134 101651 mainProgram = "fortran-src"; 101135 101652 }) {}; 101136 101653 101137 - "fortran-src_0_10_1" = callPackage 101654 + "fortran-src_0_10_2" = callPackage 101138 101655 ({ mkDerivation, alex, array, base, binary, bytestring, containers 101139 101656 , deepseq, directory, either, fgl, filepath, GenericPretty, happy 101140 101657 , hspec, hspec-discover, mtl, pretty, QuickCheck, temporary, text ··· 101142 101659 }: 101143 101660 mkDerivation { 101144 101661 pname = "fortran-src"; 101145 - version = "0.10.1"; 101146 - sha256 = "0fd63lxwqy2y4axadbm7275w9pig0gf9imp60cpw3206qighwf6s"; 101662 + version = "0.10.2"; 101663 + sha256 = "13xpfwvfma4lrq7x4c7sb6xb17pxym03p790lprrirxdld6mdx9w"; 101147 101664 isLibrary = true; 101148 101665 isExecutable = true; 101149 101666 libraryHaskellDepends = [ ··· 101336 101853 license = lib.licenses.bsd3; 101337 101854 }) {}; 101338 101855 101856 + "foundation_0_0_29" = callPackage 101857 + ({ mkDerivation, base, basement, gauge, ghc-prim }: 101858 + mkDerivation { 101859 + pname = "foundation"; 101860 + version = "0.0.29"; 101861 + sha256 = "1hbkh6a3g6wsj2z48pjimd7djkm82mdxfwc24bnmmzag8amrp0rl"; 101862 + libraryHaskellDepends = [ base basement ghc-prim ]; 101863 + testHaskellDepends = [ base basement ]; 101864 + benchmarkHaskellDepends = [ base basement gauge ]; 101865 + description = "Alternative prelude with batteries and no dependencies"; 101866 + license = lib.licenses.bsd3; 101867 + hydraPlatforms = lib.platforms.none; 101868 + }) {}; 101869 + 101339 101870 "foundation-edge" = callPackage 101340 101871 ({ mkDerivation, bytestring, foundation, text }: 101341 101872 mkDerivation { ··· 101425 101956 mainProgram = "fourmolu"; 101426 101957 }) {}; 101427 101958 101428 - "fourmolu_0_8_0_0" = callPackage 101959 + "fourmolu_0_8_1_0" = callPackage 101429 101960 ({ mkDerivation, aeson, ansi-terminal, array, base, bytestring 101430 101961 , Cabal, containers, Diff, directory, dlist, exceptions, filepath 101431 101962 , ghc-lib-parser, gitrev, hspec, hspec-discover, hspec-megaparsec ··· 101435 101966 }: 101436 101967 mkDerivation { 101437 101968 pname = "fourmolu"; 101438 - version = "0.8.0.0"; 101439 - sha256 = "0s89pbmmij2gd2wr0l4alg9rnxdsz9jp4brxi9rkkin6bqjqmix1"; 101969 + version = "0.8.1.0"; 101970 + sha256 = "0acpl5p259pfs42k4iaqhpfpbpbzjk8fxzc65i9wr2wka9cdvzdv"; 101440 101971 isLibrary = true; 101441 101972 isExecutable = true; 101442 101973 libraryHaskellDepends = [ ··· 104171 104702 }: 104172 104703 mkDerivation { 104173 104704 pname = "futhark"; 104174 - version = "0.21.15"; 104175 - sha256 = "02a3hhbbix1kk3dd6l0nq70b04415q2xjnbb2vfphayq8sj5v5b4"; 104705 + version = "0.22.1"; 104706 + sha256 = "1h3ihd0cymcnbv5ms49dmfpgyngmai58v61sw5j04zi7f9xjyr0n"; 104176 104707 isLibrary = true; 104177 104708 isExecutable = true; 104178 104709 libraryHaskellDepends = [ ··· 105846 106377 license = lib.licenses.mit; 105847 106378 }) {}; 105848 106379 106380 + "generic-arbitrary_1_0_0" = callPackage 106381 + ({ mkDerivation, base, deepseq, QuickCheck, tasty, tasty-discover 106382 + , tasty-hunit, tasty-quickcheck 106383 + }: 106384 + mkDerivation { 106385 + pname = "generic-arbitrary"; 106386 + version = "1.0.0"; 106387 + sha256 = "1l1d61336r92rrpcgsdfxfc2c9slvf9g1m7vbl54bcvw0qlgzgc9"; 106388 + libraryHaskellDepends = [ base QuickCheck ]; 106389 + testHaskellDepends = [ 106390 + base deepseq QuickCheck tasty tasty-discover tasty-hunit 106391 + tasty-quickcheck 106392 + ]; 106393 + testToolDepends = [ tasty-discover ]; 106394 + description = "Generic implementation for QuickCheck's Arbitrary"; 106395 + license = lib.licenses.mit; 106396 + hydraPlatforms = lib.platforms.none; 106397 + }) {}; 106398 + 105849 106399 "generic-binary" = callPackage 105850 106400 ({ mkDerivation, base, binary, bytestring, ghc-prim }: 105851 106401 mkDerivation { ··· 105898 106448 pname = "generic-data"; 105899 106449 version = "0.9.2.1"; 105900 106450 sha256 = "0hs5ahl1nx61kw5j0pnwgjrph7jgqq0djma956ksz6aivzldjf7q"; 106451 + revision = "1"; 106452 + editedCabalFile = "01ly8r9s34pj8i7ppjclclx3fmnv24lhic1n7cjz5cdk3cxa8klc"; 105901 106453 libraryHaskellDepends = [ 105902 106454 ap-normalize base base-orphans contravariant ghc-boot-th 105903 106455 show-combinators ··· 105911 106463 license = lib.licenses.mit; 105912 106464 }) {}; 105913 106465 106466 + "generic-data_1_0_0_0" = callPackage 106467 + ({ mkDerivation, ap-normalize, base, base-orphans, contravariant 106468 + , criterion, deepseq, generic-lens, ghc-boot-th, one-liner 106469 + , show-combinators, tasty, tasty-hunit 106470 + }: 106471 + mkDerivation { 106472 + pname = "generic-data"; 106473 + version = "1.0.0.0"; 106474 + sha256 = "1cfax93wzb9w3lfhrp4lmyyqxj6cjvsjny8wv3qxjyfqs2w2380g"; 106475 + libraryHaskellDepends = [ 106476 + ap-normalize base base-orphans contravariant ghc-boot-th 106477 + show-combinators 106478 + ]; 106479 + testHaskellDepends = [ 106480 + base generic-lens one-liner show-combinators tasty tasty-hunit 106481 + ]; 106482 + benchmarkHaskellDepends = [ base criterion deepseq ]; 106483 + description = "Deriving instances with GHC.Generics and related utilities"; 106484 + license = lib.licenses.mit; 106485 + hydraPlatforms = lib.platforms.none; 106486 + }) {}; 106487 + 105914 106488 "generic-data-surgery" = callPackage 105915 106489 ({ mkDerivation, base, first-class-families, generic-data 105916 106490 , show-combinators, tasty, tasty-hunit ··· 106001 106575 pname = "generic-functor"; 106002 106576 version = "0.2.0.0"; 106003 106577 sha256 = "0zrjsn78ip9kigqgw5cxzm9d7pqf1svdzrc3rm041889ca0szwjv"; 106004 - revision = "2"; 106005 - editedCabalFile = "0wmrfikbdc65lxa9x7gnmf2j0njiqgnpp5p5i8pjc009rqna1hzv"; 106578 + revision = "3"; 106579 + editedCabalFile = "1b14y3qhwzp2gkby5zflwad1v8v26wnclb7wnjagy67pvhnnn93d"; 106006 106580 libraryHaskellDepends = [ ap-normalize base ]; 106007 106581 testHaskellDepends = [ base transformers ]; 106008 106582 description = "Deriving generalized functors with GHC.Generics"; ··· 107640 108214 }: 107641 108215 mkDerivation { 107642 108216 pname = "gerrit"; 107643 - version = "0.1.5.0"; 107644 - sha256 = "0cxl0shwjz81c4inqqan6akxnwxx8i0yalwxd7xbizn55268rmcg"; 108217 + version = "0.1.5.1"; 108218 + sha256 = "1bj34cp9myz4rrbbwbh73b8wbmrgck81nsx88mi984pww1nd5fnb"; 107645 108219 libraryHaskellDepends = [ 107646 108220 aeson aeson-casing base bytestring containers http-client 107647 108221 http-client-openssl text time ··· 107713 108287 sha256 = "1pf40nc3jzprv4wn9h8mr0nhzxzilffgkapxg3k0qksfxydzv7pp"; 107714 108288 libraryHaskellDepends = [ base containers ]; 107715 108289 description = "A \"System.Console.GetOpt\" wrapper to make simple use case easy."; 108290 + license = lib.licenses.bsd3; 108291 + }) {}; 108292 + 108293 + "gettext-th" = callPackage 108294 + ({ mkDerivation, base, bytestring, directory, filepath 108295 + , haskell-gettext, template-haskell, text, th-lift-instances 108296 + }: 108297 + mkDerivation { 108298 + pname = "gettext-th"; 108299 + version = "0.1.0.3"; 108300 + sha256 = "0z0mz8bm4a1ns2k7mm5k1amm0l9vk7f64g3w6la7v7q80zaql0b1"; 108301 + libraryHaskellDepends = [ 108302 + base bytestring directory filepath haskell-gettext template-haskell 108303 + text th-lift-instances 108304 + ]; 108305 + description = "gettext-th can internationalise a haskell program without runtime dependencies"; 107716 108306 license = lib.licenses.bsd3; 107717 108307 }) {}; 107718 108308 ··· 107927 108517 pname = "ghc-byteorder"; 107928 108518 version = "4.11.0.0.10"; 107929 108519 sha256 = "1dhzd7ygwm7b3hsrlm48iq4p634laby4hf7c8i7xp0c1g64hmrc6"; 107930 - revision = "2"; 107931 - editedCabalFile = "0lh3giqq47wf02glc96wsn6qxnll7d6x6xa78fzs32xjww6p4ig3"; 108520 + revision = "3"; 108521 + editedCabalFile = "088rz5c0pq2r1w3msy0y9hl4gca8s8nblpcz7w2f5sx5pajg8flj"; 107932 108522 libraryHaskellDepends = [ base ]; 107933 108523 testHaskellDepends = [ base ]; 107934 108524 doHaddock = false; ··· 107954 108544 }: 107955 108545 mkDerivation { 107956 108546 pname = "ghc-check"; 107957 - version = "0.5.0.6"; 107958 - sha256 = "14cdfbjk8l3j97v46clpb806zlkckbfhgpzip67byhw9kzv5r14s"; 108547 + version = "0.5.0.8"; 108548 + sha256 = "1m3w1l8gkc7g9p7d07h3f71687rgs9lb5ildgfr1ihxp7wssh98h"; 107959 108549 libraryHaskellDepends = [ 107960 108550 base containers directory filepath ghc ghc-paths process 107961 108551 safe-exceptions template-haskell th-compat transformers ··· 108616 109206 pname = "ghc-lib"; 108617 109207 version = "9.4.1.20220807"; 108618 109208 sha256 = "0anaf36bgziqy8ajc5442qf06xv06p3x46dca29qdnplckjypc51"; 109209 + revision = "1"; 109210 + editedCabalFile = "00mik89sdk4hr5pk3f82kdyik0aamlc1c6apiwvqv03pwrl2v6ih"; 108619 109211 enableSeparateDataOutput = true; 108620 109212 libraryHaskellDepends = [ 108621 109213 array base binary bytestring containers deepseq directory ··· 109283 109875 license = lib.licenses.bsd3; 109284 109876 }) {}; 109285 109877 109286 - "ghc-syntax-highlighter_0_0_8_0" = callPackage 109878 + "ghc-syntax-highlighter_0_0_9_0" = callPackage 109287 109879 ({ mkDerivation, base, ghc-lib-parser, hspec, hspec-discover, text 109288 109880 }: 109289 109881 mkDerivation { 109290 109882 pname = "ghc-syntax-highlighter"; 109291 - version = "0.0.8.0"; 109292 - sha256 = "1s6bq90s75qfiv54qsskawv3ihwjhdml4fxq56ww01p54mnrwr27"; 109883 + version = "0.0.9.0"; 109884 + sha256 = "0dan000fg9ipfh8knhrdscnr8lvcf6p2djl9b4bgqd4nc65pcf8a"; 109293 109885 enableSeparateDataOutput = true; 109294 109886 libraryHaskellDepends = [ base ghc-lib-parser text ]; 109295 109887 testHaskellDepends = [ base hspec text ]; ··· 109433 110025 ({ mkDerivation, base, bytestring, tasty-bench, text }: 109434 110026 mkDerivation { 109435 110027 pname = "ghc-trace-events"; 109436 - version = "0.1.2.5"; 109437 - sha256 = "1whhadv077c0kgz4c3jwrynjkamgkc4rinf0pd18m3d3bdk27w0k"; 110028 + version = "0.1.2.6"; 110029 + sha256 = "1yc4ryjmg72znml92wlllxzgvh7z48id6jdyxcfq8fbal5wx6pc3"; 109438 110030 libraryHaskellDepends = [ base bytestring text ]; 109439 110031 benchmarkHaskellDepends = [ base bytestring tasty-bench ]; 109440 110032 description = "Faster traceEvent and traceMarker, and binary object logging for eventlog"; ··· 113973 114565 broken = true; 113974 114566 }) {}; 113975 114567 114568 + "gltf-loader" = callPackage 114569 + ({ mkDerivation, base, base64, binary, bytestring, gltf-codec 114570 + , hspec, linear, microlens, optparse-simple, rio 114571 + , unordered-containers 114572 + }: 114573 + mkDerivation { 114574 + pname = "gltf-loader"; 114575 + version = "0.1.0.0"; 114576 + sha256 = "01kxmkk6vvgjvm2jafrwq5ldyylk19j1f4rd145ilyk7j1rx8651"; 114577 + isLibrary = true; 114578 + isExecutable = true; 114579 + libraryHaskellDepends = [ 114580 + base binary bytestring gltf-codec linear microlens rio 114581 + unordered-containers 114582 + ]; 114583 + executableHaskellDepends = [ 114584 + base linear microlens optparse-simple rio 114585 + ]; 114586 + testHaskellDepends = [ 114587 + base base64 binary bytestring gltf-codec hspec linear microlens rio 114588 + unordered-containers 114589 + ]; 114590 + description = "High level GlTF loader"; 114591 + license = lib.licenses.mit; 114592 + hydraPlatforms = lib.platforms.none; 114593 + mainProgram = "gltf-loader-exe"; 114594 + }) {}; 114595 + 113976 114596 "glue" = callPackage 113977 114597 ({ mkDerivation, async, base, ekg-core, hashable, hspec 113978 114598 , lifted-base, monad-control, monad-loops, QuickCheck ··· 118708 119328 license = lib.licenses.mit; 118709 119329 }) {}; 118710 119330 119331 + "graphula_2_0_2_1" = callPackage 119332 + ({ mkDerivation, base, containers, directory, generic-arbitrary 119333 + , generics-eot, hspec, HUnit, markdown-unlit, monad-logger, mtl 119334 + , persistent, persistent-sqlite, QuickCheck, random, resourcet 119335 + , semigroups, temporary, text, transformers, unliftio 119336 + , unliftio-core 119337 + }: 119338 + mkDerivation { 119339 + pname = "graphula"; 119340 + version = "2.0.2.1"; 119341 + sha256 = "0kkjhfb9x3s0j6m0a68cblfkh70wg2vxrd1f998g20dlpx5rl27m"; 119342 + libraryHaskellDepends = [ 119343 + base containers directory generics-eot HUnit mtl persistent 119344 + QuickCheck random semigroups temporary text unliftio unliftio-core 119345 + ]; 119346 + testHaskellDepends = [ 119347 + base generic-arbitrary hspec markdown-unlit monad-logger persistent 119348 + persistent-sqlite QuickCheck resourcet transformers unliftio-core 119349 + ]; 119350 + testToolDepends = [ markdown-unlit ]; 119351 + description = "A simple interface for generating persistent data and linking its dependencies"; 119352 + license = lib.licenses.mit; 119353 + hydraPlatforms = lib.platforms.none; 119354 + }) {}; 119355 + 118711 119356 "graphula-core" = callPackage 118712 119357 ({ mkDerivation, aeson, base, bytestring, containers, directory 118713 119358 , generics-eot, hspec, http-api-data, HUnit, markdown-unlit ··· 119218 119863 }: 119219 119864 mkDerivation { 119220 119865 pname = "gridtables"; 119221 - version = "0.0.2.0"; 119222 - sha256 = "0bqn1iqpiam9szjwdwam76vh991miyfznyk7gnnr4vrk8jn17p3d"; 119866 + version = "0.0.3.0"; 119867 + sha256 = "1akix9flnax6dx3s9c7yyzb19nw13y8rmh0kz7y3hpjlkaz659xy"; 119223 119868 libraryHaskellDepends = [ 119224 119869 array base containers doclayout parsec text 119225 119870 ]; ··· 121905 122550 }) {}; 121906 122551 121907 122552 "hackage-repo-tool" = callPackage 121908 - ({ mkDerivation, base, bytestring, Cabal, directory, filepath 121909 - , hackage-security, microlens, network, network-uri, old-time 121910 - , optparse-applicative, tar, time, unix, zlib 122553 + ({ mkDerivation, base, bytestring, Cabal, Cabal-syntax, directory 122554 + , filepath, hackage-security, microlens, network, network-uri 122555 + , old-time, optparse-applicative, tar, time, unix, zlib 121911 122556 }: 121912 122557 mkDerivation { 121913 122558 pname = "hackage-repo-tool"; 121914 - version = "0.1.1.2"; 121915 - sha256 = "1zgsmibi24w2wsd828hnls1yv9lrl9xwsi2aay3d603j8mg8vd0r"; 121916 - revision = "2"; 121917 - editedCabalFile = "1djx6x1y6d7j319ba211hl7scwh4pfyd7vrrbvhdralwnwsx5zkp"; 122559 + version = "0.1.1.3"; 122560 + sha256 = "13q81gi3xmkzwfrbyk5dwxws3c92vnrlslksi021iasmjwhw2h6l"; 121918 122561 isLibrary = false; 121919 122562 isExecutable = true; 121920 122563 executableHaskellDepends = [ 121921 - base bytestring Cabal directory filepath hackage-security microlens 121922 - network network-uri old-time optparse-applicative tar time unix 121923 - zlib 122564 + base bytestring Cabal Cabal-syntax directory filepath 122565 + hackage-security microlens network network-uri old-time 122566 + optparse-applicative tar time unix zlib 121924 122567 ]; 121925 122568 description = "Manage secure file-based package repositories"; 121926 122569 license = lib.licenses.bsd3; ··· 121939 122582 }: 121940 122583 mkDerivation { 121941 122584 pname = "hackage-security"; 121942 - version = "0.6.2.1"; 121943 - sha256 = "1a349ma9ijypjzgj7xgkkr6rd8k49crdgx330h9vgmp7vlbcs8mz"; 121944 - revision = "2"; 121945 - editedCabalFile = "1r7jaf7vq90xlcsdq9snlz3d52zqcpijlby7abpzfw09v4mjjjqx"; 122585 + version = "0.6.2.2"; 122586 + sha256 = "0xmjw3frssdv3glhdg3yivdy38h5icz6xywngrahc19220ba6cx8"; 121946 122587 libraryHaskellDepends = [ 121947 122588 base base16-bytestring base64-bytestring bytestring Cabal 121948 122589 Cabal-syntax containers cryptohash-sha256 directory ed25519 ··· 121950 122591 template-haskell time transformers zlib 121951 122592 ]; 121952 122593 testHaskellDepends = [ 121953 - aeson base bytestring Cabal containers network-uri QuickCheck tar 121954 - tasty tasty-hunit tasty-quickcheck temporary text time 121955 - unordered-containers vector zlib 122594 + aeson base bytestring Cabal Cabal-syntax containers network-uri 122595 + QuickCheck tar tasty tasty-hunit tasty-quickcheck temporary text 122596 + time unordered-containers vector zlib 121956 122597 ]; 121957 122598 description = "Hackage security library"; 121958 122599 license = lib.licenses.bsd3; ··· 122264 122905 ({ mkDerivation, base, filepath, haddock-api }: 122265 122906 mkDerivation { 122266 122907 pname = "haddock"; 122267 - version = "2.25.1"; 122268 - sha256 = "1icwwpppi8djqjrfqcys6q8zxlpf14dna6j71qzzv4r9zdz5kr7r"; 122908 + version = "2.27.0"; 122909 + sha256 = "094207chb9vw7nnz5bznnifzyk9waxwylv0r7n1nyahbjs013lyn"; 122269 122910 isLibrary = false; 122270 122911 isExecutable = true; 122271 122912 executableHaskellDepends = [ base haddock-api ]; ··· 122306 122947 122307 122948 "haddock-api" = callPackage 122308 122949 ({ mkDerivation, array, base, bytestring, containers, deepseq 122309 - , directory, exceptions, filepath, ghc, ghc-boot, ghc-paths 122310 - , haddock-library, hspec, hspec-discover, mtl, parsec, QuickCheck 122311 - , transformers, xhtml 122950 + , directory, exceptions, filepath, ghc, ghc-boot, ghc-boot-th 122951 + , ghc-paths, haddock-library, hspec, hspec-discover, mtl, parsec 122952 + , QuickCheck, transformers, xhtml 122312 122953 }: 122313 122954 mkDerivation { 122314 122955 pname = "haddock-api"; 122315 - version = "2.25.1"; 122316 - sha256 = "1zcgpzhnavkgf8pk4wr15rmcm4y6fz3jr03zg5gw9347hkxn0ry7"; 122956 + version = "2.27.0"; 122957 + sha256 = "198j5cn6zasb44w3yb8dqhsx6bv2xndh6xfc8ypjfg491qs8819z"; 122317 122958 enableSeparateDataOutput = true; 122318 122959 libraryHaskellDepends = [ 122319 122960 array base bytestring containers deepseq directory exceptions ··· 122322 122963 ]; 122323 122964 testHaskellDepends = [ 122324 122965 array base bytestring containers deepseq directory exceptions 122325 - filepath ghc ghc-boot ghc-paths haddock-library hspec mtl parsec 122326 - QuickCheck transformers xhtml 122966 + filepath ghc ghc-boot ghc-boot-th ghc-paths haddock-library hspec 122967 + mtl parsec QuickCheck transformers xhtml 122327 122968 ]; 122328 122969 testToolDepends = [ hspec-discover ]; 122329 122970 description = "A documentation-generation tool for Haskell libraries"; ··· 122411 123052 license = lib.licenses.bsd2; 122412 123053 }) {}; 122413 123054 123055 + "haddock-library_1_11_0" = callPackage 123056 + ({ mkDerivation, base, base-compat, containers, deepseq, directory 123057 + , filepath, hspec, hspec-discover, optparse-applicative, parsec 123058 + , QuickCheck, text, tree-diff 123059 + }: 123060 + mkDerivation { 123061 + pname = "haddock-library"; 123062 + version = "1.11.0"; 123063 + sha256 = "02m2pr1jyn0k86bjqksn2vrpyv0y40sj3rq5svcs5c3qlg4mw1vw"; 123064 + libraryHaskellDepends = [ base containers parsec text ]; 123065 + testHaskellDepends = [ 123066 + base base-compat containers deepseq directory filepath hspec 123067 + optparse-applicative parsec QuickCheck text tree-diff 123068 + ]; 123069 + testToolDepends = [ hspec-discover ]; 123070 + description = "Library exposing some functionality of Haddock"; 123071 + license = lib.licenses.bsd2; 123072 + hydraPlatforms = lib.platforms.none; 123073 + }) {}; 123074 + 122414 123075 "haddock-test" = callPackage 122415 123076 ({ mkDerivation, base, bytestring, Cabal, directory, filepath 122416 123077 , process, syb, xhtml, xml ··· 122994 123655 pname = "hakyll"; 122995 123656 version = "4.15.1.1"; 122996 123657 sha256 = "0b3bw275q1xbx8qs9a6gzzs3c9z3qdj7skqhpp09jkchi5kdvhvi"; 122997 - revision = "4"; 122998 - editedCabalFile = "0bvyn8mw6gy95liznjad0gjbj7130dsb0va40xmmfdy97dcp5jql"; 123658 + pname = "html2hamlet"; 123659 + editedCabalFile = "0vkss84dm4fgx94r2wrv1z5mk515am6vbd2y66v44vl7fcr23q83"; 122999 123660 isLibrary = true; 123000 123661 isExecutable = true; 123001 123662 enableSeparateDataOutput = true; ··· 125810 126471 license = lib.licenses.bsd3; 125811 126472 }) {}; 125812 126473 125813 - "hashable_1_4_0_2" = callPackage 126474 + "hashable_1_4_1_0" = callPackage 125814 126475 ({ mkDerivation, base, base-orphans, bytestring, containers 125815 126476 , deepseq, ghc-bignum, ghc-prim, HUnit, QuickCheck, random 125816 126477 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 125818 126479 }: 125819 126480 mkDerivation { 125820 126481 pname = "hashable"; 125821 - version = "1.4.0.2"; 125822 - sha256 = "003nlhi8wzlsikfwi0q6ma3b38wizvazci6dbq3lr4bd6pfnwq43"; 126482 + version = "1.4.1.0"; 126483 + sha256 = "11sycr73821amdz8g0k8c97igi4z7f9xdvgaxlkxhsp6h310bcz1"; 125823 126484 libraryHaskellDepends = [ 125824 126485 base base-orphans bytestring containers deepseq ghc-bignum ghc-prim 125825 126486 text ··· 129023 129684 }: 129024 129685 mkDerivation { 129025 129686 pname = "html2hamlet"; 129026 - version = "0.3.2"; 129027 - pname = "html2hamlet"; 129687 + version = "0.3.2.1"; 129688 + sha256 = "1kfdr56by97lzccp1zvp21za683jn95cnmsmzz87nyxm1gz0wyk4"; 129028 129689 libraryHaskellDepends = [ 129029 129690 pname = "html2hamlet"; 129030 129691 ]; ··· 132375 133036 ({ mkDerivation }: 132376 133037 mkDerivation { 132377 133038 pname = "hcom"; 132378 - version = "0.0.0.4"; 132379 - sha256 = "1xvl0p58q8l7yq90hfydgy2h5644xxjai99frli719l2mg7s1ndm"; 132380 - revision = "3"; 132381 - editedCabalFile = "0dzyhd2gjpv7182s1pjvwxwnxa19pva1x94837my57hmnrs7iskh"; 133039 + version = "0.0.0.5"; 133040 + sha256 = "02f959qd7gm5gpa8w39hqj5a8pn6gizjif7rr7mwlq8g3gsq8gsk"; 132382 133041 doHaddock = false; 132383 133042 description = "Haskell COM support library"; 132384 133043 license = lib.licenses.bsd3; ··· 136492 137151 }: 136493 137152 mkDerivation { 136494 137153 pname = "hi-file-parser"; 136495 - version = "0.1.2.0"; 136496 - sha256 = "1jm3gbibafkw3ninvsz7f1x89xdyk6wml45mq9zb85p6m9xqlpv9"; 136497 - revision = "1"; 136498 - editedCabalFile = "1q53g0h4xnq0fsjbwg1fclnw0kxpzz58p8jrczhmgb4z5wn8g292"; 137154 + version = "0.1.3.0"; 137155 + sha256 = "04rrdyga6abml3d3bn1amd955g9k0jj4pczh659bimw8hwccp2pw"; 136499 137156 libraryHaskellDepends = [ base binary bytestring mtl rio vector ]; 136500 137157 testHaskellDepends = [ 136501 137158 base binary bytestring hspec mtl rio vector ··· 139117 139774 pname = "hledger-ui"; 139118 139775 version = "1.26.1"; 139119 139776 sha256 = "0gbysjc8vknlsd0rl60iz3da2zpyhwvq5gj9bpl2h4r0hf1ymplb"; 139777 + revision = "1"; 139778 + editedCabalFile = "1pni118r8b1fy9mwr5058rn416rxyab11l7dx4ib7g4snzck1iw5"; 139120 139779 isLibrary = false; 139121 139780 isExecutable = true; 139122 139781 executableHaskellDepends = [ ··· 143462 144121 "hpdft" = callPackage 143463 144122 ({ mkDerivation, attoparsec, base, binary, bytestring, containers 143464 144123 , directory, file-embed, memory, optparse-applicative, parsec 143465 - , semigroups, text, utf8-string, zlib 144124 + , regex-base, regex-compat-tdfa, semigroups, text, utf8-string 144125 + , zlib 143466 144126 }: 143467 144127 mkDerivation { 143468 144128 pname = "hpdft"; 143469 - version = "0.1.0.6"; 143470 - sha256 = "04r5a9z36dglpfz7j01cz3yizi9l0633rf630ypg2sfxkhn2384w"; 144129 + version = "0.1.1.1"; 144130 + sha256 = "1klpm1p19pixi051a7ld5hp6qbwvcbbiwy6zgf39n5zx3hi9yxx0"; 143471 144131 isLibrary = true; 143472 144132 isExecutable = true; 143473 144133 enableSeparateDataOutput = true; 143474 144134 libraryHaskellDepends = [ 143475 144135 attoparsec base binary bytestring containers directory file-embed 143476 - memory optparse-applicative parsec semigroups text utf8-string zlib 144136 + memory optparse-applicative parsec regex-compat-tdfa semigroups 144137 + text utf8-string zlib 143477 144138 ]; 143478 144139 executableHaskellDepends = [ 143479 - base bytestring memory optparse-applicative semigroups utf8-string 144140 + base bytestring memory optparse-applicative regex-base 144141 + regex-compat-tdfa semigroups text utf8-string 143480 144142 ]; 143481 144143 description = "A tool for looking through PDF file using Haskell"; 143482 144144 license = lib.licenses.mit; ··· 145812 146474 pname = "hsc2hs"; 145813 146475 version = "0.68.8"; 145814 146476 sha256 = "0lksyyfrvn3km8bmfjad0mr50mg20f9fwfqly83lma0pr7xiwd3q"; 146477 + revision = "1"; 146478 + editedCabalFile = "0s9s46zmm4g4hlwspi4jimggka87xki68lfg555g94sjnbwjk34q"; 145815 146479 isLibrary = false; 145816 146480 isExecutable = true; 145817 146481 enableSeparateDataOutput = true; ··· 147192 147856 pname = "hslogger"; 147193 147857 version = "1.3.1.0"; 147194 147858 sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; 147195 - revision = "5"; 147196 - editedCabalFile = "1qd2z4rn478mwqcslzdk71izjmmhn1kw115fy7iryaf3kdc1j0g4"; 147859 + pname = "html2hamlet"; 147860 + editedCabalFile = "0xiqjl646kxynsccc2q1q91sch7pfx3274yl2745fsqhpb115df1"; 147197 147861 libraryHaskellDepends = [ 147198 147862 base bytestring containers deepseq network network-bsd old-locale 147199 147863 time unix ··· 147555 148219 license = lib.licenses.mit; 147556 148220 }) {}; 147557 148221 148222 + "hslua-module-path_1_0_3" = callPackage 148223 + ({ mkDerivation, base, filepath, hslua-core, hslua-marshalling 148224 + , hslua-packaging, tasty, tasty-hunit, tasty-lua, text 148225 + }: 148226 + mkDerivation { 148227 + pname = "hslua-module-path"; 148228 + version = "1.0.3"; 148229 + sha256 = "1sy2k4mb263kg85vkf39ja84xz5kvm6z61xn62jy1swhrvvd96sr"; 148230 + libraryHaskellDepends = [ 148231 + base filepath hslua-core hslua-marshalling hslua-packaging text 148232 + ]; 148233 + testHaskellDepends = [ 148234 + base filepath hslua-core hslua-marshalling hslua-packaging tasty 148235 + tasty-hunit tasty-lua text 148236 + ]; 148237 + description = "Lua module to work with file paths"; 148238 + license = lib.licenses.mit; 148239 + hydraPlatforms = lib.platforms.none; 148240 + }) {}; 148241 + 147558 148242 "hslua-module-system" = callPackage 147559 148243 ({ mkDerivation, base, directory, exceptions, hslua-core 147560 148244 , hslua-marshalling, hslua-packaging, tasty, tasty-hunit, tasty-lua ··· 149014 149698 ({ mkDerivation, base, hspec, tmp-proc }: 149015 149699 mkDerivation { 149016 149700 pname = "hspec-tmp-proc"; 149017 - version = "0.5.0.1"; 149018 - sha256 = "0zn0q3cvszpnb0lqlnizfh8v0z2kasjl414ny4pzni6yf13m2jfh"; 149701 + version = "0.5.1.2"; 149702 + sha256 = "0d3igvda8a0lhqzvvzrf1ck8nmif4w447gkjyq6g87am883a078v"; 149019 149703 libraryHaskellDepends = [ base hspec tmp-proc ]; 149020 149704 description = "Simplify use of tmp-proc from hspec tests"; 149021 149705 license = lib.licenses.bsd3; 149022 149706 }) {}; 149023 149707 149024 - "hspec-tmp-proc_0_5_1_1" = callPackage 149025 - ({ mkDerivation, base, hspec, tmp-proc }: 149026 - mkDerivation { 149027 - pname = "hspec-tmp-proc"; 149028 - version = "0.5.1.1"; 149029 - sha256 = "1wd3pz9q7p8z7917qblzldzchvdfwp625bbysxbdi41186wfd0dh"; 149030 - libraryHaskellDepends = [ base hspec tmp-proc ]; 149031 - description = "Simplify use of tmp-proc from hspec tests"; 149032 - license = lib.licenses.bsd3; 149033 - hydraPlatforms = lib.platforms.none; 149034 - }) {}; 149035 - 149036 149708 "hspec-wai" = callPackage 149037 149709 ({ mkDerivation, base, base-compat, bytestring, case-insensitive 149038 149710 , hspec, hspec-core, hspec-expectations, http-types, QuickCheck ··· 150095 150767 }: 150096 150768 mkDerivation { 150097 150769 pname = "htalkat"; 150098 - version = "0.1.2.1"; 150099 - sha256 = "0n58c32k661jw0srgfwssx0lwb3myyijbxksa8qpq174whfmmfl1"; 150770 + version = "0.1.2.2"; 150771 + sha256 = "08w501lyhhr5d7w6s9zvhrwk8sm3kkr5v6l2h6ghazqcvlrl63v2"; 150100 150772 isLibrary = false; 150101 150773 isExecutable = true; 150102 150774 executableHaskellDepends = [ ··· 150354 151026 pname = "html-entity-map"; 150355 151027 version = "0.1.0.0"; 150356 151028 sha256 = "0k1l1pbmrfmh44v9cc9ka01bx9xm1x4jabbl675fc5c57v1h0dlq"; 150357 - revision = "4"; 150358 - editedCabalFile = "0xi765ynj5jq3qmchd6zzpfhgq6d1436dyd154866g8nwklp50ch"; 151029 + revision = "5"; 151030 + editedCabalFile = "1776z73bs1v8z3qwpjvqqmzdlj6gm8qba93f41irhn7swdppfq72"; 150359 151031 libraryHaskellDepends = [ base text unordered-containers ]; 150360 151032 benchmarkHaskellDepends = [ 150361 151033 base criterion text unordered-containers ··· 151142 151814 }) {}; 151143 151815 151144 151816 "http-client-websockets" = callPackage 151145 - ({ mkDerivation, base, bytestring, hspec, http-client 151146 - , http-client-tls, network-uri, text, websockets 151817 + ({ mkDerivation, async, base, bytestring, hspec, http-client 151818 + , network-uri, text, websockets 151147 151819 }: 151148 151820 mkDerivation { 151149 151821 pname = "http-client-websockets"; 151150 - version = "0.1.1.2"; 151151 - sha256 = "0g2zhj0fzhynyls5rxpzh50hxjsygx7037rw2h79ihca10crsqgm"; 151822 + version = "0.1.1.3"; 151823 + sha256 = "1g9bmvh4p0z58iyk652nall031fsypg2dbc9x57x7ngj2wd2m15f"; 151152 151824 libraryHaskellDepends = [ 151153 151825 base bytestring http-client network-uri text websockets 151154 151826 ]; 151155 151827 testHaskellDepends = [ 151156 - base bytestring hspec http-client-tls network-uri websockets 151828 + async base bytestring hspec http-client network-uri websockets 151157 151829 ]; 151158 151830 description = "Glue code for http-client and websockets"; 151159 151831 license = lib.licenses.cc0; ··· 151400 152072 pname = "http-io-streams"; 151401 152073 version = "0.1.6.1"; 151402 152074 sha256 = "09ggsf9g8gf28d3d5z0rcdnl63d34al35z5d6v68k0n7r229ffb1"; 152075 + revision = "1"; 152076 + editedCabalFile = "0v2xp9fhrw77vh4vz5qk9lip5mhbf9lz5nkdrfcvrilfjgg4s17b"; 151403 152077 libraryHaskellDepends = [ 151404 152078 attoparsec base base64-bytestring binary blaze-builder 151405 152079 brotli-streams bytestring case-insensitive containers ··· 152939 153613 }) {}; 152940 153614 152941 153615 "hw-aeson" = callPackage 152942 - ({ mkDerivation, aeson, base, containers, doctest, doctest-discover 152943 - , hedgehog, hspec, hspec-discover, text, text-short 152944 - , unordered-containers 153616 + ({ mkDerivation, aeson, base, bytestring, containers, doctest 153617 + , doctest-discover, hashable, hedgehog, hspec, hspec-discover, text 153618 + , text-short, unordered-containers 152945 153619 }: 152946 153620 mkDerivation { 152947 153621 pname = "hw-aeson"; 152948 - version = "0.1.6.0"; 152949 - sha256 = "06xi9bj0jsp2g2d2wkxs6w2p96i927alrrm4r9vpm530cd1zxzwr"; 153622 + version = "0.1.8.0"; 153623 + sha256 = "1x07dpgqhlcvgn1kwq0mmf074x91sl7sn2gxrqrznjdzl8hqw2m2"; 153624 + revision = "1"; 153625 + editedCabalFile = "0ddfw858v0zk4i19w00kinjdq4y5jbnmq1i3m6yvr5nnmf09n0dw"; 152950 153626 libraryHaskellDepends = [ 152951 - aeson base containers text text-short unordered-containers 153627 + aeson base bytestring containers hashable text text-short 153628 + unordered-containers 152952 153629 ]; 152953 153630 testHaskellDepends = [ 152954 153631 aeson base doctest doctest-discover hedgehog hspec ··· 153014 153691 pname = "hw-balancedparens"; 153015 153692 version = "0.4.1.2"; 153016 153693 sha256 = "163jvw8nnhf3q3h6c16hjdkdzp6y3l2hyvk7hzynhylifg7kki95"; 153694 + revision = "1"; 153695 + editedCabalFile = "14j39s62mh8asgjysd48sh4wglyxkrmfwxni0ibxgnwgzrdi6j8p"; 153017 153696 isLibrary = true; 153018 153697 isExecutable = true; 153019 153698 libraryHaskellDepends = [ ··· 153049 153728 pname = "hw-bits"; 153050 153729 version = "0.7.2.2"; 153051 153730 sha256 = "1swzr6lz2394p454mqvvgx2fyc1gdm4p9qvv54zyjd67mnhylkq8"; 153731 + revision = "1"; 153732 + editedCabalFile = "09cwkvwpxdhwd2zf0ad9kn02vndypl203j0d8zjsi6088fy18y7g"; 153052 153733 libraryHaskellDepends = [ 153053 153734 base bitvec bytestring deepseq hw-int hw-prim hw-string-parse 153054 153735 vector ··· 153097 153778 pname = "hw-conduit"; 153098 153779 version = "0.2.1.1"; 153099 153780 sha256 = "1iv001vm0xlz9msw5f6bcr2a4fd7rhyd1zmk3axnh80g4m8lknzj"; 153781 + revision = "1"; 153782 + editedCabalFile = "04vgiy5i3qwxspdxwb4nyw0snzqvsiqilwibb8zjv0nd51d9kpwk"; 153100 153783 libraryHaskellDepends = [ 153101 153784 array base bytestring conduit conduit-combinators time transformers 153102 153785 unliftio-core word8 ··· 153120 153803 pname = "hw-conduit-merges"; 153121 153804 version = "0.2.1.0"; 153122 153805 sha256 = "042i1cs7qpjs8q8birr6xjzyxp28y7l6isv2fwkisv4agx8kfgm0"; 153806 + revision = "1"; 153807 + editedCabalFile = "0r9vq3ibdbkwxg26ds9dllhkgpbhlrv0i02babjpmd3g1nznp0ms"; 153123 153808 libraryHaskellDepends = [ base conduit conduit-extra mtl ]; 153124 153809 testHaskellDepends = [ 153125 153810 base bytestring conduit conduit-extra hspec mtl QuickCheck ··· 153156 153841 pname = "hw-dsv"; 153157 153842 version = "0.4.1.1"; 153158 153843 sha256 = "0xfpkyinwfhjilb428z7nnk84m12b34x29806j1azbv9yfqvhq7z"; 153844 + revision = "1"; 153845 + editedCabalFile = "1cs73d2pycaf5h7ggw00j9pnbx9b5hyz4ry885c4awa4ag2d5waa"; 153159 153846 isLibrary = true; 153160 153847 isExecutable = true; 153161 153848 libraryHaskellDepends = [ ··· 153230 153917 pname = "hw-eliasfano"; 153231 153918 version = "0.1.2.1"; 153232 153919 sha256 = "1k22yq8blyjmgh7nzmqvnc1g0bgjbbvqv9r4w02z5jn9kfj619h2"; 153920 + revision = "1"; 153921 + editedCabalFile = "0kqjihb11l141qsdpwx8vil2blpg9xz2nypmlhljfvszf4myg9b5"; 153233 153922 isLibrary = true; 153234 153923 isExecutable = true; 153235 153924 libraryHaskellDepends = [ ··· 153266 153955 pname = "hw-excess"; 153267 153956 version = "0.2.3.0"; 153268 153957 sha256 = "0xiyf3xyg6f4kgkils9ycx6q0qcsbd6rw4m9lizw9295mnp05s3g"; 153269 - revision = "3"; 153270 - editedCabalFile = "0gzvcpihgv1xmnyl1ry4kdzvrm80449viv3l0rvzmj16gzx7lhg2"; 153958 + revision = "4"; 153959 + editedCabalFile = "0239zkl95ri5prg6w7zicb393pmb9gbh9lsymw9k3lv4340r9c98"; 153271 153960 libraryHaskellDepends = [ 153272 153961 base hw-bits hw-prim hw-rankselect-base safe vector 153273 153962 ]; ··· 153291 153980 pname = "hw-fingertree"; 153292 153981 version = "0.1.2.1"; 153293 153982 sha256 = "0aljn5c2gblvrbn1f7iwvcm2fa2dsnl497wb0g8y7rz6jzk7g06f"; 153983 + revision = "1"; 153984 + editedCabalFile = "10wskprjxp65znb3fyzbrjgh9fqxndmlnvqc6kf50v7qif8jrvb6"; 153294 153985 libraryHaskellDepends = [ base deepseq hw-prim ]; 153295 153986 testHaskellDepends = [ 153296 153987 base deepseq doctest doctest-discover hedgehog hspec ··· 153310 154001 pname = "hw-fingertree-strict"; 153311 154002 version = "0.1.2.1"; 153312 154003 sha256 = "1y9h4riikfdrxbmfchm95qv2pmwsshdl27ngimkd5iww3d67vg36"; 154004 + revision = "1"; 154005 + editedCabalFile = "0qi67ja0s9mac65bgmrba4hixjf8n00qnqmna589dfgginkmcsng"; 153313 154006 libraryHaskellDepends = [ base deepseq ]; 153314 154007 testHaskellDepends = [ 153315 154008 base doctest doctest-discover hedgehog hspec HUnit ··· 153328 154021 pname = "hw-hedgehog"; 153329 154022 version = "0.1.1.1"; 153330 154023 sha256 = "0kksignrvx566vfz52q5lid9f2zh02dpvnw1gznnkhwnvbldmbi8"; 154024 + revision = "1"; 154025 + editedCabalFile = "1h2z4s3jm4aq6gnhf5hg81pyr0xargz02krrfih4p3rgfxi5r9yg"; 153331 154026 libraryHaskellDepends = [ base hedgehog vector ]; 153332 154027 testHaskellDepends = [ base doctest doctest-discover ]; 153333 154028 testToolDepends = [ doctest-discover ]; ··· 153343 154038 pname = "hw-hspec-hedgehog"; 153344 154039 version = "0.1.1.1"; 153345 154040 sha256 = "1ilgqrx8jvgvmns99d74qz8c11ifyrccbvszfzwwhk28fhai0k7s"; 154041 + revision = "2"; 154042 + editedCabalFile = "0r10fgpl0k84ghni6wg5qddnwkmcqg9gx2s1hv064lq7djj979sn"; 153346 154043 libraryHaskellDepends = [ 153347 154044 base call-stack hedgehog hspec HUnit transformers 153348 154045 ]; ··· 153418 154115 pname = "hw-json"; 153419 154116 version = "1.3.2.3"; 153420 154117 sha256 = "1m5q46ywmdymk2xwqbpm0rswmkbdfzscg6gdym61yninz2sjmd7a"; 154118 + revision = "1"; 154119 + editedCabalFile = "1xr86w12f31djqk4f80y2kqa2lwymfsk38zicadgy0qs8bdgmkgc"; 153421 154120 isLibrary = true; 153422 154121 isExecutable = true; 153423 154122 libraryHaskellDepends = [ ··· 153507 154206 pname = "hw-json-simd"; 153508 154207 version = "0.1.1.1"; 153509 154208 sha256 = "0nn6fyvw0j2csn8anqpgjzdzdasiwa99g1v2qrcyym1wi86biqqb"; 154209 + revision = "1"; 154210 + editedCabalFile = "0cavymml55m8f1zyh8pby44xq67ckdqdy0wgib8i0xjq00hrp07m"; 153510 154211 isLibrary = true; 153511 154212 isExecutable = true; 153512 154213 libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; ··· 153535 154236 pname = "hw-json-simple-cursor"; 153536 154237 version = "0.1.1.1"; 153537 154238 sha256 = "0b867rgsybfb568z6qa4x8jqz24wfjydg91w7bsl44vqq0k3hk4f"; 154239 + revision = "1"; 154240 + editedCabalFile = "0f9ml3rgbwcrxyfr0kq2y0vk92j4nrl88r5aq7cdzbd63j2c8yp1"; 153538 154241 isLibrary = true; 153539 154242 isExecutable = true; 153540 154243 libraryHaskellDepends = [ ··· 153572 154275 pname = "hw-json-standard-cursor"; 153573 154276 version = "0.2.3.2"; 153574 154277 sha256 = "02fmhjnjf0idmzq0y1a1m78bwl72ycvr6cxlscxpc2370r2s3akh"; 154278 + revision = "1"; 154279 + editedCabalFile = "1w4jp3jf4p08mkn3x1zfpw5hrsr8l16n01qcvvlzj8jpbkqpq2jm"; 153575 154280 isLibrary = true; 153576 154281 isExecutable = true; 153577 154282 libraryHaskellDepends = [ ··· 153746 154451 pname = "hw-packed-vector"; 153747 154452 version = "0.2.1.1"; 153748 154453 sha256 = "0aplyknpf81kqpisz9zibyncg2i95dnfv6kywlg3wf7ic1wcjqxh"; 154454 + revision = "1"; 154455 + editedCabalFile = "0r125gn3qq9lpxymri62w9mibgp40jwcskjyqkii370yxda9xwxd"; 153749 154456 isLibrary = true; 153750 154457 isExecutable = true; 153751 154458 libraryHaskellDepends = [ ··· 153777 154484 pname = "hw-parser"; 153778 154485 version = "0.1.1.0"; 153779 154486 sha256 = "1zsbw725mw3fn4814qricqanbvx1kgbnqvgwijqgfv8jz7yf5gxa"; 153780 - revision = "4"; 153781 - editedCabalFile = "0wiizlmhv1pjc9fpga5fjfxzxcf55qgamg6gl1n4c9x5l5yj6yk6"; 154487 + revision = "5"; 154488 + editedCabalFile = "16q34ps40chq2cvcr74f4mzkp64fmkrniiwpzwnfmx128arg35fk"; 153782 154489 libraryHaskellDepends = [ 153783 154490 attoparsec base bytestring hw-prim text 153784 154491 ]; ··· 153817 154524 pname = "hw-prim"; 153818 154525 version = "0.6.3.1"; 153819 154526 sha256 = "1b3qk0w8jivbhpkxkp4b1spj1nvfjjf2k6a0ba9agjp9kjmwddni"; 154527 + revision = "2"; 154528 + editedCabalFile = "01gc1zz7q37kk27imb2inplkgimrrh51yh7f4dj89wlzxs9p0k6d"; 153820 154529 libraryHaskellDepends = [ 153821 154530 base bytestring deepseq ghc-prim mmap transformers unliftio-core 153822 154531 vector ··· 153871 154580 pname = "hw-rankselect"; 153872 154581 version = "0.13.4.1"; 153873 154582 sha256 = "03nf8jwr1qpbfa20y3zlb3z6cxy8ylpdbsy0fvxdjs8q35f7bmx5"; 154583 + revision = "1"; 154584 + editedCabalFile = "10kij3ygsrq7qkbdmarggi2iiaprf670ss9ci4d3vsdgj043sqdc"; 153874 154585 isLibrary = true; 153875 154586 isExecutable = true; 153876 154587 libraryHaskellDepends = [ ··· 153907 154618 pname = "hw-rankselect-base"; 153908 154619 version = "0.3.4.1"; 153909 154620 sha256 = "1s0lqwq0rjmjca6lshfnxqi0c7bzlyflhm45xw1xa9pvqci8439h"; 153910 - revision = "3"; 153911 - editedCabalFile = "0xb03a8bla45rbdnfjaq9pbz2r0mz9b3vm2ljm6lmr1dpgy0yh5c"; 154621 + revision = "4"; 154622 + editedCabalFile = "1yiwc9l81bcg5a8i2r08lv8nqms2b69a7vnwcxzms7mkd01s9sgp"; 153912 154623 libraryHaskellDepends = [ 153913 154624 base bits-extra bitvec hw-bits hw-int hw-prim hw-string-parse 153914 154625 vector ··· 153936 154647 pname = "hw-simd"; 153937 154648 version = "0.1.2.1"; 153938 154649 sha256 = "051dbwi4kvv04dnglcx9666g097fy9rw8kmgbcw5y9cs06mbw9cr"; 154650 + revision = "1"; 154651 + editedCabalFile = "0vlb7g2d7banqqkpb2lij70357fwc2i5nkvp4ydh649kgj4zd9lq"; 153939 154652 libraryHaskellDepends = [ 153940 154653 base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect 153941 154654 hw-rankselect-base transformers vector ··· 153998 154711 pname = "hw-streams"; 153999 154712 version = "0.0.1.0"; 154000 154713 sha256 = "0hzpx1j06h98y0zcmysklzn3s3mvpbb1nkwg4zkbdxvzzqs5hnm5"; 154001 - revision = "3"; 154002 - editedCabalFile = "0g2fhjv62jf807j2w5rikfbmsircpjf6q0l8xqpbyy8krch8mrx5"; 154714 + revision = "4"; 154715 + editedCabalFile = "0j0xb27gfajhxys60c4f5w5skpzzgpq6jvhaa28wlqnjpgxfw05h"; 154003 154716 libraryHaskellDepends = [ 154004 154717 base bytestring ghc-prim hw-bits hw-prim mmap primitive 154005 154718 transformers vector ··· 154026 154739 pname = "hw-string-parse"; 154027 154740 version = "0.0.0.5"; 154028 154741 sha256 = "0sg5s84pqyl93wm052ifrqv90cyc28awh4i6vcd8zbq746wdqz4k"; 154742 + revision = "1"; 154743 + editedCabalFile = "0afarlf42yfsgbv4lwhl7hnrsxv6b5dilja1660fnxvw350ldiik"; 154029 154744 libraryHaskellDepends = [ base ]; 154030 154745 testHaskellDepends = [ 154031 154746 base bytestring doctest doctest-discover hspec QuickCheck vector ··· 154086 154801 pname = "hw-uri"; 154087 154802 version = "0.2.1.0"; 154088 154803 sha256 = "1bwdzvms0n86k7gbkhk0jj3m1pcc9vbjk13kgpchqxpxm971srbs"; 154089 - revision = "5"; 154090 - editedCabalFile = "07mir09f9h35f3cajsi68nnmk45fah1730wxi2kbmb8ya28ny0kj"; 154804 + pname = "html2hamlet"; 154805 + editedCabalFile = "05160yfydz3hx8xigl6kvy7862gwadksqwsayr68fa40br5di8f4"; 154091 154806 isLibrary = true; 154092 154807 isExecutable = true; 154093 154808 libraryHaskellDepends = [ ··· 154138 154853 pname = "hw-xml"; 154139 154854 version = "0.5.1.1"; 154140 154855 sha256 = "1gjs2rcm40j3962kw7n02pqim1p485prm1bd2v8hk1ka35c8nq1w"; 154856 + revision = "1"; 154857 + editedCabalFile = "1q5h0bz9nl21qi93c5bmm0vc5dvyxzcrp3mv9jr2wa6rzah07gdq"; 154141 154858 isLibrary = true; 154142 154859 isExecutable = true; 154143 154860 enableSeparateDataOutput = true; ··· 156059 156776 pname = "identicon"; 156060 156777 version = "0.2.2"; 156061 156778 sha256 = "0qzj2063sh7phbqyxqxf96avz1zcwd1ry06jdqxwkg55q3yb8y9n"; 156062 - revision = "4"; 156063 - editedCabalFile = "1mlmn7ccns2rnhgmnlq9m2rqc9mgj0262ckqbm01w1fiycw3nq7b"; 156779 + revision = "5"; 156780 + editedCabalFile = "0aswi9gwa4f1ll5s323qc6g9fm2h9dc8j526izcbflagxicf04a8"; 156064 156781 enableSeparateDataOutput = true; 156065 156782 libraryHaskellDepends = [ base bytestring JuicyPixels ]; 156066 156783 testHaskellDepends = [ ··· 158149 158866 pname = "indexed-traversable"; 158150 158867 version = "0.1.2"; 158151 158868 sha256 = "13b91rkhs6wcshaz3dwx6x3xjpw5z5bm2riwp78zxccqf7p5hs2i"; 158152 - revision = "1"; 158153 - editedCabalFile = "0rbcfl0iklix3ppfkxh88y70qmm64lg1l4679z5krya2fa42hqnn"; 158869 + revision = "2"; 158870 + editedCabalFile = "0l2k9jrmixkkf7qzzq0bqgvk6axaqi9sxxkpb4dgj8frmc4bg8aj"; 158154 158871 libraryHaskellDepends = [ array base containers transformers ]; 158155 158872 description = "FunctorWithIndex, FoldableWithIndex, TraversableWithIndex"; 158156 158873 license = lib.licenses.bsd2; 158157 158874 }) {}; 158158 158875 158159 158876 "indexed-traversable-instances" = callPackage 158160 - ({ mkDerivation, base, containers, criterion, indexed-traversable 158161 - , OneTuple, QuickCheck, quickcheck-instances, tagged, tasty 158162 - , tasty-quickcheck, transformers, unordered-containers, vector 158877 + ({ mkDerivation, base, containers, indexed-traversable, OneTuple 158878 + , QuickCheck, quickcheck-instances, tagged, tasty, tasty-quickcheck 158879 + , transformers, unordered-containers, vector 158163 158880 }: 158164 158881 mkDerivation { 158165 158882 pname = "indexed-traversable-instances"; 158166 - version = "0.1.1"; 158167 - sha256 = "0i4s8fbqbgvkd2na48zwhlrcjpwxkx5rdh6f9fq2h4sl7c1d23hh"; 158168 - revision = "1"; 158169 - editedCabalFile = "1655cf712kkjrpf0axwgdf7y6yjqnf2njyijlfr3mdzzy6dkagwb"; 158883 + version = "0.1.1.1"; 158884 + sha256 = "1c60vhf47y8ln33scyvwiffg24dvhm4aavya624vbqjr7l3fapl9"; 158170 158885 libraryHaskellDepends = [ 158171 158886 base indexed-traversable OneTuple tagged unordered-containers 158172 158887 vector ··· 158176 158891 quickcheck-instances tasty tasty-quickcheck transformers 158177 158892 unordered-containers vector 158178 158893 ]; 158179 - benchmarkHaskellDepends = [ 158180 - base containers criterion indexed-traversable unordered-containers 158181 - vector 158182 - ]; 158183 158894 description = "More instances of FunctorWithIndex, FoldableWithIndex, TraversableWithIndex"; 158184 158895 license = lib.licenses.bsd2; 158185 158896 }) {}; ··· 159319 160030 pname = "integer-logarithms"; 159320 160031 version = "1.0.3.1"; 159321 160032 sha256 = "0zzapclfabc76g8jzsbsqwdllx2zn0gp4raq076ib6v0mfgry2lv"; 159322 - revision = "2"; 159323 - editedCabalFile = "1nciavqjkv0yqh7xy20666srm92ip520bnhnhwkwaaabdzn12pmn"; 160033 + revision = "3"; 160034 + editedCabalFile = "0z81yksgx20d0rva41blsjcp3jsp1qy9sy385fpig0l074fzv6ym"; 159324 160035 libraryHaskellDepends = [ array base ghc-bignum ghc-prim ]; 159325 160036 testHaskellDepends = [ 159326 160037 base QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck ··· 159898 160609 }: 159899 160610 mkDerivation { 159900 160611 pname = "interval-algebra"; 159901 - version = "2.1.0"; 159902 - sha256 = "094yr4vkki9ah9f627ds8bj1q8ql9mhgd49dkf9bydf9g7l5fhaj"; 160612 + version = "2.1.1"; 160613 + sha256 = "0z5nzz3piyjvl4syz10scnj5p698rnm28i97y69kpc10kri62ihm"; 159903 160614 isLibrary = true; 159904 160615 isExecutable = true; 159905 160616 libraryHaskellDepends = [ ··· 160221 160932 pname = "invert"; 160222 160933 version = "1.0.0.2"; 160223 160934 sha256 = "13zl9i6g7ygkm3pgm7b72815cfp66mykxzp5vwy5kqakr8c3w1fp"; 160224 - revision = "1"; 160225 - editedCabalFile = "01qaybywd30b5s3clvw4bblq9pviwckgc2claf7lvl4fq6hjqszs"; 160935 + revision = "2"; 160936 + editedCabalFile = "1kc8nfwwy3vr6sc6pdw23lpyc1x91bp9rinmrkjp3zl94ck8y179"; 160226 160937 libraryHaskellDepends = [ 160227 160938 base containers generic-deriving hashable unordered-containers 160228 160939 vector ··· 160257 160968 testHaskellDepends = [ base QuickCheck transformers ]; 160258 160969 description = "bidirectional arrows, bijective functions, and invariant functors"; 160259 160970 license = lib.licenses.bsd3; 160971 + hydraPlatforms = lib.platforms.none; 160972 + broken = true; 160260 160973 }) {}; 160261 160974 160262 160975 "invertible-grammar" = callPackage ··· 160302 161015 ]; 160303 161016 description = "invertible transformer instances for HXT Picklers"; 160304 161017 license = lib.licenses.bsd3; 161018 + hydraPlatforms = lib.platforms.none; 160305 161019 }) {}; 160306 161020 160307 161021 "invertible-syntax" = callPackage ··· 160459 161173 pname = "io-streams"; 160460 161174 version = "1.5.2.1"; 160461 161175 sha256 = "1y3sqmxrwiksz7pl4hf3vzvg8p8n00qnv98nj5xbpcadlh468rny"; 160462 - revision = "2"; 160463 - editedCabalFile = "16sr5jkw6k4k7bbfwp1p756lfjwqvx0ls5yrlvc056pg6h2js5m9"; 161176 + revision = "3"; 161177 + editedCabalFile = "14zy4y6xnrfal02w0m8smjpb202axmq88cm40722rzxfpy5s1cjq"; 161178 + configureFlags = [ "-fnointeractivetests" ]; 161179 + libraryHaskellDepends = [ 161180 + attoparsec base bytestring network primitive process text time 161181 + transformers vector zlib-bindings 161182 + ]; 161183 + testHaskellDepends = [ 161184 + attoparsec base bytestring deepseq directory filepath HUnit mtl 161185 + network primitive process QuickCheck test-framework 161186 + test-framework-hunit test-framework-quickcheck2 text time 161187 + transformers vector zlib zlib-bindings 161188 + ]; 161189 + description = "Simple, composable, and easy-to-use stream I/O"; 161190 + license = lib.licenses.bsd3; 161191 + }) {}; 161192 + 161193 + "io-streams_1_5_2_2" = callPackage 161194 + ({ mkDerivation, attoparsec, base, bytestring, deepseq, directory 161195 + , filepath, HUnit, mtl, network, primitive, process, QuickCheck 161196 + , test-framework, test-framework-hunit, test-framework-quickcheck2 161197 + , text, time, transformers, vector, zlib, zlib-bindings 161198 + }: 161199 + mkDerivation { 161200 + pname = "io-streams"; 161201 + version = "1.5.2.2"; 161202 + sha256 = "1zn4iyd18g9jc1qdgixp6hi56nj7czy4jdz2xca59hcn2q2xarfk"; 160464 161203 configureFlags = [ "-fnointeractivetests" ]; 160465 161204 libraryHaskellDepends = [ 160466 161205 attoparsec base bytestring network primitive process text time ··· 160474 161213 ]; 160475 161214 description = "Simple, composable, and easy-to-use stream I/O"; 160476 161215 license = lib.licenses.bsd3; 161216 + hydraPlatforms = lib.platforms.none; 160477 161217 }) {}; 160478 161218 160479 161219 "io-streams-haproxy" = callPackage ··· 160484 161224 pname = "io-streams-haproxy"; 160485 161225 version = "1.0.1.0"; 160486 161226 sha256 = "1dcn5hd4fiwyq7m01r6fi93vfvygca5s6mz87c78m0zyj29clkmp"; 160487 - revision = "5"; 160488 - editedCabalFile = "073aciql0czvpaiwh9mpljcd1j2a8p5ka5awsw1j3dh7bdyg2mp7"; 161227 + pname = "html2hamlet"; 161228 + editedCabalFile = "024aw98q1x3fb1xq07qki3z446w6lk5gyjl13shy0dbrd5aafh92"; 160489 161229 libraryHaskellDepends = [ 160490 161230 attoparsec base bytestring io-streams network transformers 160491 161231 ]; ··· 161677 162417 }: 161678 162418 mkDerivation { 161679 162419 pname = "isomorphism-class"; 161680 - version = "0.1.0.5"; 161681 - sha256 = "03sarmva392szf5c04nqq795jsbkbklad409y8ym49kvb28mh1sg"; 162420 + version = "0.1.0.6"; 162421 + sha256 = "0sy9v5830giqkk4r7c0ycvm5z3racf953dy5lwsfxm7zygzb8dm3"; 161682 162422 libraryHaskellDepends = [ 161683 162423 base bytestring containers hashable primitive text 161684 162424 unordered-containers vector ··· 162531 163271 pname = "j"; 162532 163272 version = "0.3.0.1"; 162533 163273 sha256 = "1v4hp7skddbjw6d2ggyfspijmsxh346c97nxwh2anp05aykmzk7b"; 163274 + revision = "1"; 163275 + editedCabalFile = "08yfwfh6khy8nq4kcjr46zx0iikh43a5y24wg4znwsc7mxvqj2h4"; 162534 163276 libraryHaskellDepends = [ base bytestring repa unix vector ]; 162535 163277 testHaskellDepends = [ base bytestring repa tasty tasty-hunit ]; 162536 163278 description = "J in Haskell"; ··· 162583 163325 pname = "jacinda"; 162584 163326 version = "1.1.0.0"; 162585 163327 sha256 = "0sx15lslkcvck7cvd55ykkifba9cv0ig0h53ycf0izbl3cxdr1j9"; 163328 + revision = "1"; 163329 + editedCabalFile = "020zfmmiyinbcgrrl7jlkyjq7xajsk2qz4z9infr9vsjig0c61xj"; 162586 163330 isLibrary = false; 162587 163331 isExecutable = true; 162588 163332 enableSeparateDataOutput = true; ··· 167940 168684 license = lib.licenses.bsd3; 167941 168685 }) {}; 167942 168686 167943 - "ki_1_0_0" = callPackage 168687 + "ki_1_0_0_1" = callPackage 167944 168688 ({ mkDerivation, base, containers, stm, tasty, tasty-hunit }: 167945 168689 mkDerivation { 167946 168690 pname = "ki"; 167947 - version = "1.0.0"; 167948 - sha256 = "1nag3rc3yiwc3x9q0mn70vrb6vjh7f2vxawaxq296za2q6n1gylh"; 168691 + version = "1.0.0.1"; 168692 + sha256 = "04wglc9ddf9g2amr2h9pdcv0pzn6gqsqg67hds5zwz1jjdbk52ad"; 167949 168693 libraryHaskellDepends = [ base containers ]; 167950 168694 testHaskellDepends = [ base stm tasty tasty-hunit ]; 167951 168695 description = "A lightweight structured concurrency library"; ··· 167957 168701 ({ mkDerivation, base, ki, unliftio-core }: 167958 168702 mkDerivation { 167959 168703 pname = "ki-unlifted"; 167960 - version = "1.0.0"; 167961 - sha256 = "0751sy948gng9a0bqp127xsdgl4gf5acnj6vrvsmr7lw9x67ap04"; 168704 + version = "1.0.0.1"; 168705 + sha256 = "1nfa6g2qi791aqg0whdf02pzng01wvbcxvzy6yf5sa20c6fsqn4b"; 167962 168706 libraryHaskellDepends = [ base ki unliftio-core ]; 167963 168707 description = "A lightweight structured-concurrency library"; 167964 168708 license = lib.licenses.bsd3; ··· 168509 169253 }: 168510 169254 mkDerivation { 168511 169255 pname = "konnakol"; 168512 - version = "0.1.0.0"; 168513 - sha256 = "10hykji062b54q95yv1f0l8pxapxzyhk1l872nyjahn0ph0bkx1n"; 169256 + version = "0.3.0.0"; 169257 + sha256 = "1vjyp290d9s72fgsqmdixqaprsal8i6sxqrbnqf1xqyhn04pjnk2"; 168514 169258 libraryHaskellDepends = [ 168515 169259 base colour containers diagrams-lib diagrams-svg random split tidal 168516 169260 ]; ··· 170158 170902 broken = true; 170159 170903 }) {}; 170160 170904 170905 + "landlock" = callPackage 170906 + ({ mkDerivation, base, exceptions, filepath, process, QuickCheck 170907 + , tasty, tasty-expected-failure, tasty-hunit, tasty-quickcheck 170908 + , unix 170909 + }: 170910 + mkDerivation { 170911 + pname = "landlock"; 170912 + version = "0.1.0.0"; 170913 + sha256 = "19l95a4wajdzml38l9251yklxsgk70ky29x7bmldyn6nagdqgdap"; 170914 + libraryHaskellDepends = [ base exceptions unix ]; 170915 + testHaskellDepends = [ 170916 + base filepath process QuickCheck tasty tasty-expected-failure 170917 + tasty-hunit tasty-quickcheck 170918 + ]; 170919 + doHaddock = false; 170920 + description = "Haskell bindings for the Linux Landlock API"; 170921 + license = lib.licenses.bsd3; 170922 + hydraPlatforms = lib.platforms.none; 170923 + broken = true; 170924 + }) {}; 170925 + 170161 170926 "lang" = callPackage 170162 170927 ({ mkDerivation, base, bytestring, http-streams, Mapping }: 170163 170928 mkDerivation { ··· 170421 171186 ({ mkDerivation, base, language-c99, language-c99-util, mtl }: 170422 171187 mkDerivation { 170423 171188 pname = "language-c99-simple"; 170424 - version = "0.2.0"; 170425 - sha256 = "0sm85abxp3ia9450mxwnqbz00hcmafdbzsj0ynp4l95rxw11j0q6"; 171189 + version = "0.2.1"; 171190 + sha256 = "0ii5mlxzy47gs91amriv1zsbb0myayanwsw3qwz4p29m09fqjpic"; 170426 171191 libraryHaskellDepends = [ 170427 171192 base language-c99 language-c99-util mtl 170428 171193 ]; ··· 172071 172836 pname = "lattices"; 172072 172837 version = "2.0.3"; 172073 172838 sha256 = "1mn78xqwsksybggnsnx8xkmzlc9his1si14dy5v6vmlchkjym9qg"; 172074 - revision = "3"; 172075 - editedCabalFile = "0zjrrchi6bi7jkcj6id8bhc2hd0v6c7n8bxli1fb71k0zmpxhbw1"; 172839 + revision = "4"; 172840 + editedCabalFile = "0nkcdqb3gsp1lqpj7hv4knndj7p258j0cp4cbqx7jixc93gkq044"; 172076 172841 libraryHaskellDepends = [ 172077 172842 base base-compat containers deepseq ghc-prim hashable 172078 172843 integer-logarithms QuickCheck semigroupoids tagged transformers ··· 173289 174054 license = lib.licenses.bsd2; 173290 174055 }) {}; 173291 174056 173292 - "lens_5_1_1" = callPackage 174057 + "lens_5_2" = callPackage 173293 174058 ({ mkDerivation, array, assoc, base, base-compat, base-orphans 173294 174059 , bifunctors, bytestring, call-stack, comonad, containers 173295 174060 , contravariant, criterion, deepseq, distributive, exceptions ··· 173303 174068 }: 173304 174069 mkDerivation { 173305 174070 pname = "lens"; 173306 - version = "5.1.1"; 173307 - sha256 = "08mkm2mjvhmwg9hc4kd4cd6dgmcszs1p2mzp1nmri7lqbpy9jknc"; 173308 - revision = "1"; 173309 - editedCabalFile = "19z3k7ikpfa96b86yabxghfqpnq9d0ayy4gdlvci3ycvws0s8cy6"; 174071 + version = "5.2"; 174072 + sha256 = "126ivkkcacd15899phrwq6zc6zwllnshplkrrf59x3a6vsz2wgmk"; 173310 174073 libraryHaskellDepends = [ 173311 174074 array assoc base base-orphans bifunctors bytestring call-stack 173312 174075 comonad containers contravariant distributive exceptions filepath ··· 173378 174141 license = lib.licenses.mit; 173379 174142 }) {}; 173380 174143 173381 - "lens-aeson_1_2_1" = callPackage 174144 + "lens-aeson_1_2_2" = callPackage 173382 174145 ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 173383 174146 , scientific, text, text-short, unordered-containers, vector 173384 174147 }: 173385 174148 mkDerivation { 173386 174149 pname = "lens-aeson"; 173387 - version = "1.2.1"; 173388 - sha256 = "08x0vbkay8d6s24fzy2iria0hl9pmq891cnzm6zl0j9j53z9jw9l"; 173389 - revision = "3"; 173390 - editedCabalFile = "0lqpl5fhl94fm3xcwf8ssz7yg9nyfxp9bw2z959x7hg6bcqmv9p1"; 174150 + version = "1.2.2"; 174151 + sha256 = "0wwmg0zv2561dmmbil829dw6qmdl02kfs690iy549nbznj2kil8l"; 173391 174152 libraryHaskellDepends = [ 173392 174153 aeson attoparsec base bytestring lens scientific text text-short 173393 174154 unordered-containers vector ··· 174260 175021 ({ mkDerivation, base, deepseq, hashable }: 174261 175022 mkDerivation { 174262 175023 pname = "libBF"; 174263 - version = "0.6.3"; 174264 - sha256 = "1zfnyxplfffs8739b3p6yxy706nkm0qsnxn4yxyrrris637ync3f"; 175024 + version = "0.6.4"; 175025 + sha256 = "071r30yvwxcbgdk9biynjl9j7vy1n98chw9qgrjkrlw2b2i1l8bk"; 174265 175026 isLibrary = true; 174266 175027 isExecutable = true; 174267 175028 libraryHaskellDepends = [ base deepseq hashable ]; ··· 174406 175167 description = "A binding to libffi"; 174407 175168 license = lib.licenses.bsd3; 174408 175169 }) {ffi = null; inherit (pkgs) libffi;}; 175170 + 175171 + "libffi_0_2" = callPackage 175172 + ({ mkDerivation, base, bytestring }: 175173 + mkDerivation { 175174 + pname = "libffi"; 175175 + version = "0.2"; 175176 + sha256 = "08pp09cjygvc0ddm7gdrrk0hpcy3bsnp8g7z9cyix2ckdg43rldq"; 175177 + libraryHaskellDepends = [ base bytestring ]; 175178 + description = "A binding to libffi"; 175179 + license = lib.licenses.bsd3; 175180 + hydraPlatforms = lib.platforms.none; 175181 + }) {}; 174409 175182 174410 175183 "libffi-dynamic" = callPackage 174411 175184 ({ mkDerivation, base, contravariant, ffi, hashable, intern }: ··· 175093 175866 ]; 175094 175867 description = "Bindings for secp256k1"; 175095 175868 license = lib.licenses.mit; 175869 + hydraPlatforms = lib.platforms.none; 175870 + broken = true; 175096 175871 }) {inherit (pkgs) secp256k1;}; 175097 175872 175098 175873 "libsodium" = callPackage ··· 175571 176346 }: 175572 176347 mkDerivation { 175573 176348 pname = "lifted-async"; 175574 - version = "0.10.2.2"; 175575 - sha256 = "1pm7vfrk0vx3rg5ay81xmjfjw1l3s1cqa70frlwqnky7r2csds2h"; 176349 + version = "0.10.2.3"; 176350 + sha256 = "1kq96cp9czf358gykai2vcmynnd7zivqja4pb3f8bif9ypln9vai"; 175576 176351 libraryHaskellDepends = [ 175577 176352 async base constraints lifted-base monad-control transformers-base 175578 176353 ]; ··· 181911 182686 pname = "machines"; 181912 182687 version = "0.7.3"; 181913 182688 sha256 = "1cmflvd0xphs15ip61347ph9w4hnhmsa4nlp425i53x1ld99l23c"; 182689 + revision = "1"; 182690 + editedCabalFile = "00mp54mb9br390cnk3i60j4i2byp625swjcnq92csxscj86i0awd"; 181914 182691 libraryHaskellDepends = [ 181915 182692 adjunctions base comonad containers distributive mtl pointed 181916 182693 profunctors semigroupoids semigroups transformers ··· 184024 184801 pname = "massiv"; 184025 184802 version = "1.0.1.1"; 184026 184803 sha256 = "1yg594y0v8bpymd5g6hy8a7cy2hbvlpyxm9hnq3pprbhbcrrx22w"; 184804 + revision = "1"; 184805 + editedCabalFile = "1rcjcd3sf4qlrwk026sw5nz9i5jagpga83jyp5ij3igkg2ffps21"; 184027 184806 libraryHaskellDepends = [ 184028 184807 base bytestring deepseq exceptions primitive random scheduler 184029 184808 unliftio-core vector ··· 184033 184812 license = lib.licenses.bsd3; 184034 184813 }) {}; 184035 184814 184815 + "massiv_1_0_2_0" = callPackage 184816 + ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 184817 + , primitive, random, scheduler, unliftio-core, vector 184818 + }: 184819 + mkDerivation { 184820 + pname = "massiv"; 184821 + version = "1.0.2.0"; 184822 + sha256 = "15ckrsavsrkgm4c9al2jlk1r4nm2mdjshw1ksbkh8m65l3l5kcrr"; 184823 + libraryHaskellDepends = [ 184824 + base bytestring deepseq exceptions primitive random scheduler 184825 + unliftio-core vector 184826 + ]; 184827 + testHaskellDepends = [ base doctest ]; 184828 + description = "Massiv (Массив) is an Array Library"; 184829 + license = lib.licenses.bsd3; 184830 + hydraPlatforms = lib.platforms.none; 184831 + }) {}; 184832 + 184036 184833 "massiv-io" = callPackage 184037 184834 ({ mkDerivation, base, bytestring, Color, criterion 184038 184835 , data-default-class, deepseq, doctest, exceptions, filepath, hspec ··· 185770 186567 pname = "megaparsec"; 185771 186568 version = "9.2.1"; 185772 186569 sha256 = "1zz92mkwyhvvh8c8nc7cfz8cw2g9374na11k2gb6dbm4pabq69vb"; 186570 + revision = "1"; 186571 + editedCabalFile = "04ykwffsscwybjdzq225b3dir1r38xabz2q8aypd7x148dinyxfk"; 185773 186572 libraryHaskellDepends = [ 185774 186573 base bytestring case-insensitive containers deepseq mtl 185775 186574 parser-combinators scientific text transformers ··· 185791 186590 pname = "megaparsec-tests"; 185792 186591 version = "9.2.1"; 185793 186592 sha256 = "1w9maxfld3by01kl8z0a4v64y2vm5rmsdss6n57mr3j43ng2isr9"; 186593 + revision = "1"; 186594 + editedCabalFile = "0q7rp52v7x1qbhf4paqk5i99pn3n30lgvz6ff3mabb1h1nb2alh5"; 185794 186595 libraryHaskellDepends = [ 185795 186596 base bytestring containers hspec hspec-expectations 185796 186597 hspec-megaparsec megaparsec mtl QuickCheck text transformers ··· 187525 188326 pname = "microlens-th"; 187526 188327 version = "0.4.3.10"; 187527 188328 sha256 = "1dg2xhj85fy8q39m5dd94kjlabjyxgc0336vzkg0174l6l110l1c"; 188329 + revision = "1"; 188330 + editedCabalFile = "142wksvc854qmd665qd6mwzik8g02yzfpjk1fpxw4mlcns06y4m2"; 187528 188331 libraryHaskellDepends = [ 187529 188332 base containers microlens template-haskell th-abstraction 187530 188333 transformers ··· 187584 188387 }) {}; 187585 188388 187586 188389 "microstache" = callPackage 187587 - ({ mkDerivation, aeson, base, bytestring, containers, deepseq 187588 - , directory, filepath, hspec, parsec, text, transformers 187589 - , unordered-containers, vector 188390 + ({ mkDerivation, aeson, base, base-orphans, bytestring, containers 188391 + , deepseq, directory, filepath, parsec, tasty, tasty-hunit, text 188392 + , transformers, unordered-containers, vector 187590 188393 }: 187591 188394 mkDerivation { 187592 188395 pname = "microstache"; 187593 - version = "1.0.2.1"; 187594 - sha256 = "12i2sx2rv2ai77m95gvfm93jcjk6q5i4cgfyxjrhyx3ll94z775v"; 187595 - revision = "2"; 187596 - editedCabalFile = "0vjqffb0960kc4k32lgbsjl1mwah129m3ci6lyqyw7slqripw5fp"; 188396 + version = "1.0.2.2"; 188397 + sha256 = "1b1nvlb9jragibbbf7bg3k61g0kqhnalpsi91spy2dx18ppxp8gh"; 187597 188398 libraryHaskellDepends = [ 187598 188399 aeson base containers deepseq directory filepath parsec text 187599 188400 transformers unordered-containers vector 187600 188401 ]; 187601 188402 testHaskellDepends = [ 187602 - aeson base bytestring containers hspec parsec text 188403 + aeson base base-orphans bytestring containers parsec tasty 188404 + tasty-hunit text 187603 188405 ]; 187604 188406 description = "Mustache templates for Haskell"; 187605 188407 license = lib.licenses.bsd3; ··· 188711 189513 }: 188712 189514 mkDerivation { 188713 189515 pname = "misfortune"; 188714 - version = "0.1.2"; 188715 - sha256 = "0jnws1sc5dxbg03iy2l3glimm3qk2z0pcvyk4518y7a4n0wnxf89"; 189516 + version = "0.1.2.1"; 189517 + sha256 = "0shzqc8yz4nrz31b55fsl00bkgbvj1kzdf2j845vwpnvmrwfr1g1"; 188716 189518 isLibrary = true; 188717 189519 isExecutable = true; 188718 189520 enableSeparateDataOutput = true; ··· 188726 189528 ]; 188727 189529 description = "fortune-mod clone"; 188728 189530 license = lib.licenses.mit; 188729 - mainProgram = "misfortune"; 188730 189531 }) {}; 188731 189532 188732 189533 "mismi-core" = callPackage ··· 189230 190031 pname = "mmark"; 189231 190032 version = "0.0.7.6"; 189232 190033 sha256 = "1zahgky724s0x89c9jp4fa6m0kzh461sc2lcpwaw61hqgamaay4c"; 190034 + revision = "1"; 190035 + editedCabalFile = "0jpin5hrh2wi5yqzzccww3rb94ylb3i7y0wm16q8knq4680fq8zx"; 189233 190036 enableSeparateDataOutput = true; 189234 190037 libraryHaskellDepends = [ 189235 190038 aeson base case-insensitive containers deepseq dlist email-validate ··· 189388 190191 ({ mkDerivation, base, directory }: 189389 190192 mkDerivation { 189390 190193 pname = "mmsyn3"; 189391 - version = "0.1.5.0"; 189392 - sha256 = "0fpn0lzr93aaha9741spc7vmlg5c4x5wb3p4qvxzp57w85zqdwm3"; 190194 + version = "0.1.6.0"; 190195 + sha256 = "0fbpjqr9vv10s0kn9i6l50csym40zrpa8yynm884a1580mq5w2d6"; 189393 190196 libraryHaskellDepends = [ base directory ]; 189394 190197 description = "A small library to deal with executable endings"; 189395 190198 license = lib.licenses.mit; ··· 189401 190204 ({ mkDerivation, base, directory, mmsyn3, process }: 189402 190205 mkDerivation { 189403 190206 pname = "mmsyn4"; 189404 - version = "0.6.3.0"; 189405 - sha256 = "06lp72rbkna5hrw8zbwz7wqijchcbc9y1nl5d1gp4z3gq1324za5"; 190207 + version = "0.6.4.0"; 190208 + sha256 = "14x9mjsrfdzghdw0jyisnb0vykb896r9fy0hmclx0vs9hyzlxlcf"; 189406 190209 isLibrary = true; 189407 190210 isExecutable = true; 189408 190211 libraryHaskellDepends = [ base directory mmsyn3 process ]; ··· 189455 190258 }: 189456 190259 mkDerivation { 189457 190260 pname = "mmsyn6ukr-array"; 189458 - version = "0.3.1.0"; 189459 - sha256 = "1xmi3qbifk4hw9lgm33ldh6cfrwhppr7kg0cimlv2vmzpcz2ski2"; 190261 + version = "0.3.3.0"; 190262 + sha256 = "1vh2k1xddflaq3j15wqygnlsgf7vn7gfqa5gcfwp945j8mlyhq76"; 189460 190263 isLibrary = true; 189461 190264 isExecutable = true; 189462 190265 enableSeparateDataOutput = true; ··· 189504 190307 }: 189505 190308 mkDerivation { 189506 190309 pname = "mmsyn7l"; 189507 - version = "0.9.0.0"; 189508 - sha256 = "0j8xi8jxak818sw310srxljrywggsa8ss1l4yw0razsa28h92nxq"; 190310 + version = "0.9.1.0"; 190311 + sha256 = "0c8gcvbb2xw89cnf2h85cbm9n2zxqdqc0kkbh9w3vx2zsyy5865i"; 189509 190312 isLibrary = true; 189510 190313 isExecutable = true; 189511 190314 libraryHaskellDepends = [ ··· 189514 190317 executableHaskellDepends = [ 189515 190318 base directory mmsyn2-array mmsyn3 mmsyn7ukr-common process 189516 190319 ]; 189517 - description = "Modifies the amplitudes of the Ukrainian sounds representations created by mmsyn7ukr package"; 190320 + description = "Modifies the amplitudes of the sounds representations created by mmsyn7ukr-array and mmsyn7ukr packages"; 189518 190321 license = lib.licenses.mit; 189519 190322 hydraPlatforms = lib.platforms.none; 189520 190323 mainProgram = "mmsyn7l"; ··· 189559 190362 mainProgram = "mmsyn7ukr"; 189560 190363 }) {}; 189561 190364 190365 + "mmsyn7ukr-array" = callPackage 190366 + ({ mkDerivation, base, directory, mmsyn2-array, mmsyn3 190367 + , mmsyn7ukr-common, process 190368 + }: 190369 + mkDerivation { 190370 + pname = "mmsyn7ukr-array"; 190371 + version = "0.2.0.0"; 190372 + sha256 = "0wh0a141mwkn0bzv4r4kzzfw1xdg6l70pvpibm60d5slknlm4spz"; 190373 + enableSeparateDataOutput = true; 190374 + libraryHaskellDepends = [ 190375 + base directory mmsyn2-array mmsyn3 mmsyn7ukr-common process 190376 + ]; 190377 + description = "A simple reduced basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h-array, dobutokO2-array and other similar packages"; 190378 + license = lib.licenses.mit; 190379 + hydraPlatforms = lib.platforms.none; 190380 + }) {}; 190381 + 189562 190382 "mmsyn7ukr-common" = callPackage 189563 190383 ({ mkDerivation, base, directory, mmsyn3, process }: 189564 190384 mkDerivation { 189565 190385 pname = "mmsyn7ukr-common"; 189566 - version = "0.1.1.0"; 189567 - sha256 = "000xkm0yvj6sxmnkzax98gc3rv0cfkfglfznf84p32axmxa4vg0q"; 190386 + version = "0.2.0.0"; 190387 + sha256 = "0d7i1xhys493mx6ynn7zx7jidjffkkmnid5llwyk8m4040riw8ay"; 189568 190388 libraryHaskellDepends = [ base directory mmsyn3 process ]; 189569 190389 description = "Some common for mmsyn7ukr and mmsyn7ukr-array functionality using SoX"; 189570 190390 license = lib.licenses.mit; ··· 189834 190654 pname = "modern-uri"; 189835 190655 version = "0.3.4.4"; 189836 190656 sha256 = "19fffy7kb7ibajagdryjy872x56045zi6c1div8wvr8aisd55qsz"; 190657 + revision = "2"; 190658 + editedCabalFile = "0izxigj0rvzz25gg3k1y09hcx7rx1xvq6dc5awi4kzdw323nvmv4"; 189837 190659 libraryHaskellDepends = [ 189838 190660 base bytestring containers contravariant deepseq exceptions 189839 190661 megaparsec mtl profunctors QuickCheck reflection tagged ··· 190304 191126 pname = "monad-chronicle"; 190305 191127 version = "1.0.1"; 190306 191128 sha256 = "13f1qwylpj7wss2h5g69zlmn6k6qg5r3aqd9zhvjspg1a85m91kq"; 191129 + revision = "1"; 191130 + editedCabalFile = "09ibn640fkqlvgqxkrwm1dwr78amy399b6jysxklb6nngj10rcdc"; 190307 191131 libraryHaskellDepends = [ 190308 191132 base data-default-class mtl semigroupoids these transformers 190309 191133 transformers-compat ··· 192127 192951 pname = "monoid-extras"; 192128 192952 version = "0.6.1"; 192129 192953 sha256 = "1nj5rfax9lmr1pprvgdgq90am9mknx9iv7s84smv6qaw050356jf"; 192130 - revision = "1"; 192131 - editedCabalFile = "0csv73ism5b94lhbp95s63rqhyaaphrz2cci2407a10d3ssswki9"; 192954 + revision = "2"; 192955 + editedCabalFile = "04zbzq7dbv0ddpc1dxrxn9jfyg1xj8sar6ngzhc0cji72cail503"; 192132 192956 libraryHaskellDepends = [ base groups semigroupoids ]; 192133 192957 benchmarkHaskellDepends = [ base criterion semigroups ]; 192134 192958 description = "Various extra monoid-related definitions and utilities"; ··· 197559 198383 inherit (pkgs) libGL; inherit (pkgs) libGLU; 197560 198384 inherit (pkgs.xorg) libX11;}; 197561 198385 198386 + "nanovg_0_8_1_0" = callPackage 198387 + ({ mkDerivation, base, bytestring, c2hs, containers, freetype, glew 198388 + , hspec, inline-c, libGL, libGLU, libX11, QuickCheck, text, vector 198389 + }: 198390 + mkDerivation { 198391 + pname = "nanovg"; 198392 + version = "0.8.1.0"; 198393 + sha256 = "1yzabd2l8z77dsgby97dzv0h38a6w554kmhp6hsfx3j24n0h0rnv"; 198394 + isLibrary = true; 198395 + isExecutable = true; 198396 + libraryHaskellDepends = [ base bytestring containers text vector ]; 198397 + librarySystemDepends = [ glew libGL libGLU libX11 ]; 198398 + libraryPkgconfigDepends = [ freetype glew ]; 198399 + libraryToolDepends = [ c2hs ]; 198400 + testHaskellDepends = [ base containers hspec inline-c QuickCheck ]; 198401 + description = "Haskell bindings for nanovg"; 198402 + license = lib.licenses.isc; 198403 + hydraPlatforms = lib.platforms.none; 198404 + }) {inherit (pkgs) freetype; inherit (pkgs) glew; 198405 + inherit (pkgs) libGL; inherit (pkgs) libGLU; 198406 + inherit (pkgs.xorg) libX11;}; 198407 + 197562 198408 "nanovg-simple" = callPackage 197563 198409 ({ mkDerivation, base, GLFW-b, monad-loops, nanovg, OpenGL 197564 198410 pname = "html2hamlet"; ··· 198858 199704 pname = "netrc"; 198859 199705 version = "0.2.0.0"; 198860 199706 sha256 = "11iax3ick0im397jyyjkny7lax9bgrlgk90a25dp2jsglkphfpls"; 198861 - revision = "8"; 198862 - editedCabalFile = "1lkclsfxb7kn8nmghrrk7j1jzqi1z6amq91h43gfvmpnm7x6cvwl"; 199707 + revision = "9"; 199708 + editedCabalFile = "0srgxcgzzkrq96zg8vk61wnr4mrvgcxbgpdh2kklsfc2p6phzzp7"; 198863 199709 libraryHaskellDepends = [ base bytestring deepseq parsec ]; 198864 199710 testHaskellDepends = [ 198865 199711 base bytestring tasty tasty-golden tasty-quickcheck ··· 199993 200839 license = lib.licenses.bsd3; 199994 200840 }) {}; 199995 200841 200842 + "network-transport_0_5_5" = callPackage 200843 + ({ mkDerivation, base, binary, bytestring, deepseq, hashable 200844 + , transformers 200845 + }: 200846 + mkDerivation { 200847 + pname = "network-transport"; 200848 + version = "0.5.5"; 200849 + sha256 = "0zpr8wfyy91jfscjddrhbq7vy91agisvvlrxyh8szcsprvrgaj42"; 200850 + libraryHaskellDepends = [ 200851 + base binary bytestring deepseq hashable transformers 200852 + ]; 200853 + description = "Network abstraction layer"; 200854 + license = lib.licenses.bsd3; 200855 + hydraPlatforms = lib.platforms.none; 200856 + }) {}; 200857 + 199996 200858 "network-transport-amqp" = callPackage 199997 200859 ({ mkDerivation, amqp, async, base, bytestring, cereal, containers 199998 200860 , exceptions, lens-family, lens-family-th, network-transport ··· 200810 201672 license = lib.licenses.bsd3; 200811 201673 }) {}; 200812 201674 201675 + "ngx-export-healthcheck" = callPackage 201676 + ({ mkDerivation, aeson, async, base, bytestring, containers 201677 + , enclosed-exceptions, http-client, http-client-brread-timeout 201678 + , http-types, ngx-export, safe, snap-core, snap-server, text, time 201679 + , vector 201680 + }: 201681 + mkDerivation { 201682 + pname = "ngx-export-healthcheck"; 201683 + version = "1.5"; 201684 + sha256 = "00qzkyfxzh8c0hmj0xzsisncvww1ar2k9a6ngkrgaypl96abbkln"; 201685 + revision = "1"; 201686 + editedCabalFile = "05yhi77x339byxln8b2mvkslrkmw7jpflaj1ma8jc8gbxbk868lp"; 201687 + libraryHaskellDepends = [ 201688 + aeson async base bytestring containers enclosed-exceptions 201689 + http-client http-client-brread-timeout http-types ngx-export safe 201690 + snap-core snap-server text time vector 201691 + ]; 201692 + description = "Active health checks and monitoring of Nginx upstreams"; 201693 + license = lib.licenses.bsd3; 201694 + }) {}; 201695 + 201696 + "ngx-export-log" = callPackage 201697 + ({ mkDerivation, base, bytestring, ngx-export, ngx-export-tools 201698 + , template-haskell 201699 + }: 201700 + mkDerivation { 201701 + pname = "ngx-export-log"; 201702 + version = "1.5"; 201703 + sha256 = "0jixskgyv4f31qhxqlhdbg93ib7lj9vwgrbqh4ha1z74gsyx4axv"; 201704 + libraryHaskellDepends = [ 201705 + base bytestring ngx-export ngx-export-tools template-haskell 201706 + ]; 201707 + description = "Native Nginx logging from configuration files and Haskell handlers"; 201708 + license = lib.licenses.bsd3; 201709 + hydraPlatforms = lib.platforms.none; 201710 + broken = true; 201711 + }) {}; 201712 + 200813 201713 "ngx-export-tools" = callPackage 200814 201714 ({ mkDerivation, aeson, base, binary, bytestring, ngx-export, safe 200815 201715 , template-haskell ··· 203281 204181 pname = "numeric-kinds"; 203282 204182 version = "0.2.0"; 203283 204183 sha256 = "0ba882bjp7gzqdfy15jgi8kbls2cjbp7860vzc7winzlsf0zqdy1"; 204184 + revision = "1"; 204185 + editedCabalFile = "1zcd3smy5y249pghkfpcc5dydr4i452ps9g1z9isfsn91r0ibfh9"; 203284 204186 libraryHaskellDepends = [ base type-compare ]; 203285 204187 description = "Type-level numeric types and classes"; 203286 204188 license = lib.licenses.asl20; ··· 203305 204207 pname = "numeric-logarithms"; 203306 204208 version = "0.1.0.0"; 203307 204209 sha256 = "1izd7gc9xdrs7a1wbzmhhkv8s9rw2mcq77agvr351dc5jyzdnwiy"; 203308 - revision = "3"; 203309 - editedCabalFile = "0641bzwzjd85xk8pjnh5jqd4m5sd50334vps9jbid3jhwlwycqg0"; 204210 + revision = "4"; 204211 + editedCabalFile = "0i4y8p6xyk7vnk9qwf496jb3y40fn8jxhkcszqfsgf7znjvlbhn2"; 203310 204212 libraryHaskellDepends = [ base integer-gmp ]; 203311 204213 testHaskellDepends = [ 203312 204214 base integer-gmp QuickCheck test-framework ··· 205372 206274 pname = "opaleye"; 205373 206275 version = "0.9.3.3"; 205374 206276 sha256 = "19q81zbp2gd1alsm891i2xh7vd985paa5b04pm0bhrafajx7k4na"; 206277 + revision = "1"; 206278 + editedCabalFile = "13r6p37in9s30nw0mj6rzp0zdl96x8vsf2fxpxdbcjnmf13d0hkl"; 205375 206279 libraryHaskellDepends = [ 205376 206280 aeson base base16-bytestring bytestring case-insensitive 205377 206281 contravariant postgresql-simple pretty product-profunctors ··· 207001 207905 207002 207906 "oplang" = callPackage 207003 207907 ({ mkDerivation, base, containers, directory, filepath, megaparsec 207004 - , mtl, optparse-applicative, process, text, text-builder 207908 + , mtl, optparse-applicative, process, text, text-builder-linear 207005 207909 , transformers 207006 207910 }: 207007 207911 mkDerivation { 207008 207912 pname = "oplang"; 207009 - version = "0.2.0.0"; 207010 - sha256 = "1bacn4irdipn43gh2qq8ja6z79q21j2yrnvvvjdfdmhcvc07kkr1"; 207913 + version = "0.3.0.1"; 207914 + sha256 = "0a7b8afvjhba0rcqngw16wzjpnk5cdrb0145jpxnyww9dikw77q0"; 207011 207915 isLibrary = false; 207012 207916 isExecutable = true; 207013 207917 executableHaskellDepends = [ 207014 207918 base containers directory filepath megaparsec mtl 207015 - optparse-applicative process text text-builder transformers 207919 + optparse-applicative process text text-builder-linear transformers 207016 207920 ]; 207017 - description = "Compiler for OpLang, an esoteric programming language"; 207921 + description = "Stack-based esoteric programming language"; 207018 207922 license = lib.licenses.gpl3Only; 207923 + hydraPlatforms = lib.platforms.none; 207019 207924 mainProgram = "oplang"; 207020 207925 }) {}; 207021 207926 ··· 207403 208308 hydraPlatforms = lib.platforms.none; 207404 208309 }) {}; 207405 208310 208311 + "optparse-applicative-cmdline-util" = callPackage 208312 + ({ mkDerivation, attoparsec, base, optparse-applicative, text }: 208313 + mkDerivation { 208314 + pname = "optparse-applicative-cmdline-util"; 208315 + version = "0.2.0"; 208316 + sha256 = "13nr0biqhc2sd30xxn7sms4f0wl629bcahp3hmmcgf45nl38vpbh"; 208317 + libraryHaskellDepends = [ 208318 + attoparsec base optparse-applicative text 208319 + ]; 208320 + description = "Utility functions for working with optparse-applicative"; 208321 + license = lib.licenses.agpl3Only; 208322 + }) {}; 208323 + 207406 208324 "optparse-applicative-simple" = callPackage 207407 208325 ({ mkDerivation, attoparsec, attoparsec-data, base-prelude 207408 208326 , optparse-applicative, rerebase, text ··· 209358 210276 maintainers = [ lib.maintainers.peti ]; 209359 210277 }) {}; 209360 210278 209361 - "pandoc_2_19" = callPackage 210279 + "pandoc_2_19_1" = callPackage 209362 210280 ({ mkDerivation, aeson, aeson-pretty, array, attoparsec, base 209363 - , base64-bytestring, binary, blaze-html, blaze-markup, bytestring 210281 + , base64, binary, blaze-html, blaze-markup, bytestring 209364 210282 , case-insensitive, citeproc, commonmark, commonmark-extensions 209365 210283 , commonmark-pandoc, connection, containers, data-default, deepseq 209366 210284 , Diff, directory, doclayout, doctemplates, emojis, exceptions ··· 209370 210288 , http-client, http-client-tls, http-types, ipynb, jira-wiki-markup 209371 210289 , JuicyPixels, lpeg, mtl, network, network-uri, pandoc-lua-marshal 209372 210290 , pandoc-types, parsec, pretty, pretty-show, process, random, safe 209373 - , scientific, SHA, skylighting, skylighting-core, split, syb 209374 - , tagsoup, tasty, tasty-bench, tasty-golden, tasty-hunit, tasty-lua 209375 - , tasty-quickcheck, temporary, texmath, text, text-conversions 209376 - , time, unicode-collation, unicode-transforms, unix, xml 209377 - , xml-conduit, xml-types, yaml, zip-archive, zlib 210291 + , scientific, servant-server, SHA, skylighting, skylighting-core 210292 + , split, syb, tagsoup, tasty, tasty-bench, tasty-golden 210293 + , tasty-hunit, tasty-lua, tasty-quickcheck, temporary, texmath 210294 + , text, text-conversions, time, unicode-collation 210295 + , unicode-transforms, unix, wai, wai-extra, warp, xml, xml-conduit 210296 + , xml-types, yaml, zip-archive, zlib 209378 210297 }: 209379 210298 mkDerivation { 209380 210299 pname = "pandoc"; 209381 - version = "2.19"; 209382 - sha256 = "1gqw2bl23v60p491ml7n76pj04f7ggannswrakmqs5afidr16p22"; 210300 + version = "2.19.1"; 210301 + sha256 = "107r2hqljjic503w198qz16gv7gmkl7w8ir1w5riba0kvz9nqs3c"; 209383 210302 configureFlags = [ "-f-trypandoc" ]; 209384 210303 isLibrary = true; 209385 210304 isExecutable = true; 209386 210305 enableSeparateDataOutput = true; 209387 210306 libraryHaskellDepends = [ 209388 - aeson aeson-pretty array attoparsec base base64-bytestring binary 209389 - blaze-html blaze-markup bytestring case-insensitive citeproc 209390 - commonmark commonmark-extensions commonmark-pandoc connection 209391 - containers data-default deepseq directory doclayout doctemplates 209392 - emojis exceptions file-embed filepath Glob gridtables 209393 - haddock-library hslua hslua-aeson hslua-module-doclayout 209394 - hslua-module-path hslua-module-system hslua-module-text 209395 - hslua-module-version http-client http-client-tls http-types ipynb 209396 - jira-wiki-markup JuicyPixels lpeg mtl network network-uri 209397 - pandoc-lua-marshal pandoc-types parsec pretty pretty-show process 209398 - random safe scientific SHA skylighting skylighting-core split syb 209399 - tagsoup temporary texmath text text-conversions time 209400 - unicode-collation unicode-transforms unix xml xml-conduit xml-types 209401 - yaml zip-archive zlib 210307 + aeson aeson-pretty array attoparsec base base64 binary blaze-html 210308 + blaze-markup bytestring case-insensitive citeproc commonmark 210309 + commonmark-extensions commonmark-pandoc connection containers 210310 + data-default deepseq directory doclayout doctemplates emojis 210311 + exceptions file-embed filepath Glob gridtables haddock-library 210312 + hslua hslua-aeson hslua-module-doclayout hslua-module-path 210313 + hslua-module-system hslua-module-text hslua-module-version 210314 + http-client http-client-tls http-types ipynb jira-wiki-markup 210315 + JuicyPixels lpeg mtl network network-uri pandoc-lua-marshal 210316 + pandoc-types parsec pretty pretty-show process random safe 210317 + scientific servant-server SHA skylighting skylighting-core split 210318 + syb tagsoup temporary texmath text text-conversions time 210319 + unicode-collation unicode-transforms unix wai xml xml-conduit 210320 + xml-types yaml zip-archive zlib 209402 210321 ]; 209403 - executableHaskellDepends = [ base ]; 210322 + executableHaskellDepends = [ base safe wai-extra warp ]; 209404 210323 testHaskellDepends = [ 209405 210324 base bytestring containers Diff directory doctemplates exceptions 209406 210325 filepath Glob hslua mtl pandoc-types process tasty tasty-golden ··· 209988 210907 }: 209989 210908 mkDerivation { 209990 210909 pname = "pandoc-types"; 209991 - version = "1.22.2"; 209992 - sha256 = "1m5lln26ixzswx6pb1n7iv99w8i9gii6lhg07whg56jl2gvfghk0"; 210910 + version = "1.22.2.1"; 210911 + sha256 = "17b5c4b9jmx2gca1wk9vlnvvlzdw21qiqc0bpikkkiv7kl99drsc"; 209993 210912 libraryHaskellDepends = [ 209994 210913 aeson base bytestring containers deepseq ghc-prim QuickCheck syb 209995 210914 text transformers ··· 210892 211811 pname = "parallel"; 210893 211812 version = "3.2.2.0"; 210894 211813 sha256 = "1xkfi96w6yfpppd0nw1rnszdxmvifwzm699ilv6332ra3akm610p"; 210895 - revision = "4"; 210896 - editedCabalFile = "02y9cnk5vkz45zkhlimfa3rx6xsx6zy80aryc3q7rvi678gn7zqr"; 211814 + revision = "5"; 211815 + editedCabalFile = "1q45wzpf2sda0244l55gakl3g5zqhcb27m86nhl3vslcjc35mpbf"; 210897 211816 libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; 210898 211817 description = "Parallel programming library"; 210899 211818 license = lib.licenses.bsd3; ··· 211180 212099 pname = "park-bench"; 211181 212100 version = "0.1.0.1"; 211182 212101 sha256 = "0ricvj3q4y8xdb47py9q6j23xw6fcy6l1000qm5naqkqkfz6rp35"; 212102 + revision = "1"; 212103 + editedCabalFile = "14hm88h09hcyx85g4qw3fpv662l39a536d6ydfrs6lv0d17bwlfy"; 211183 212104 libraryHaskellDepends = [ base bytestring text ]; 211184 212105 description = "A quick-and-dirty, low-friction benchmark tool with immediate feedback"; 211185 212106 license = lib.licenses.bsd3; ··· 212173 213094 pname = "password"; 212174 213095 version = "3.0.1.0"; 212175 213096 sha256 = "1kdc1lwya9sq3vb5wvvs2bz0z38mqn9cpim4f6awym99c57g01rk"; 212176 - revision = "2"; 212177 - editedCabalFile = "1w4k1i0zz9rnzapmvnnh8q2q05s1r9v4gsqrcnwiy1q45ksx42dc"; 213097 + revision = "3"; 213098 + editedCabalFile = "151z62mwqzblddcwj83dhwz2qfj53g0nl6sbdcsf489xbb9z3vk9"; 212178 213099 setupHaskellDepends = [ base Cabal cabal-doctest ]; 212179 213100 libraryHaskellDepends = [ 212180 213101 base base64 bytestring cryptonite memory password-types ··· 214657 215578 maintainers = [ lib.maintainers.psibi ]; 214658 215579 }) {}; 214659 215580 214660 - "persistent_2_14_0_3" = callPackage 215581 + "persistent_2_14_1_0" = callPackage 214661 215582 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 214662 215583 , blaze-html, bytestring, conduit, containers, criterion, deepseq 214663 215584 , fast-logger, file-embed, hspec, http-api-data, lift-type ··· 214668 215589 }: 214669 215590 mkDerivation { 214670 215591 pname = "persistent"; 214671 - version = "2.14.0.3"; 214672 - sha256 = "0r0pz7badjb2m47prhgs3hpwfcwqg07nimbwhnhc7mx3n0n2sjp6"; 214673 - revision = "1"; 214674 - editedCabalFile = "0bqs3l8f2014c82hc082x0ynhxkxsz37pm8c2nr0h9hn7993fvbn"; 215592 + version = "2.14.1.0"; 215593 + sha256 = "1jzmqxlvyzgp25rczlp1pi8msd776gw6jlf141zlqrs3523qc0wq"; 214675 215594 libraryHaskellDepends = [ 214676 215595 aeson attoparsec base base64-bytestring blaze-html bytestring 214677 215596 conduit containers fast-logger http-api-data lift-type monad-logger ··· 215445 216364 }: 215446 216365 mkDerivation { 215447 216366 pname = "persistent-typed-db"; 215448 - version = "0.1.0.6"; 215449 - sha256 = "1hvja9yh40nqifvy0fsamdfj3f9ps85g187c7m3hg2yqz4w8pm05"; 216367 + version = "0.1.0.7"; 216368 + sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; 215450 216369 libraryHaskellDepends = [ 215451 216370 aeson base bytestring conduit http-api-data monad-logger 215452 216371 path-pieces persistent resource-pool resourcet template-haskell ··· 216143 217062 ({ mkDerivation, base }: 216144 217063 mkDerivation { 216145 217064 pname = "phonetic-languages-basis"; 216146 - version = "0.1.0.0"; 216147 - sha256 = "1qdyg9f8hk0cklf15x7akchrvfj7rya7rmzc16i8fk0bl4lyfall"; 217065 + version = "0.1.1.0"; 217066 + sha256 = "0fpsavprp4l39l0mj7rwckrsbwdphzxs61y24ds1dg3zvhphn06c"; 216148 217067 libraryHaskellDepends = [ base ]; 216149 217068 description = "A basics of the phonetic-languages functionality"; 216150 217069 license = lib.licenses.mit; ··· 216363 217282 }: 216364 217283 mkDerivation { 216365 217284 pname = "phonetic-languages-simplified-base"; 216366 - version = "0.5.0.0"; 216367 - sha256 = "02jxqqwcws8wl5a1s2q97w364bv6vwy4mwrlzmmwh5cp60p3dm20"; 217285 + version = "0.6.0.0"; 217286 + sha256 = "0bryrk05xpdz3dx96vwma91kig8xs6mkdlbpslk9qxf8b55yrnd2"; 216368 217287 libraryHaskellDepends = [ 216369 217288 base phonetic-languages-basis phonetic-languages-permutations-array 216370 217289 subG ··· 216405 217324 }: 216406 217325 mkDerivation { 216407 217326 pname = "phonetic-languages-simplified-examples-array"; 216408 - version = "0.19.0.0"; 216409 - sha256 = "0y9mmfjxkbxpw4iggafvm80324zjrljwkc314439gydhf4961sf9"; 217327 + version = "0.20.0.0"; 217328 + sha256 = "0w22h8s272rnasqyzlxx0badw5dkv99sxrgbflb86hj6lsm06g1d"; 216410 217329 isLibrary = true; 216411 217330 isExecutable = true; 216412 217331 libraryHaskellDepends = [ ··· 216440 217359 }) {}; 216441 217360 216442 217361 "phonetic-languages-simplified-examples-common" = callPackage 216443 - ({ mkDerivation, base, heaps, phonetic-languages-ukrainian-array }: 217362 + ({ mkDerivation, base, heaps 217363 + , phonetic-languages-simplified-properties-array 217364 + , phonetic-languages-ukrainian-array 217365 + , ukrainian-phonetics-basic-array 217366 + }: 216444 217367 mkDerivation { 216445 217368 pname = "phonetic-languages-simplified-examples-common"; 216446 - version = "0.4.6.0"; 216447 - sha256 = "13i8pq52bfmxvidvykn1hcy9yv2i8yni76mcnbmfwdbd1sy615pn"; 217369 + version = "0.5.0.0"; 217370 + sha256 = "0abby7z7zys9dj8w4xk3289jxl39i4kqdzb3cq5rjvacw5z0im6a"; 216448 217371 libraryHaskellDepends = [ 216449 - base heaps phonetic-languages-ukrainian-array 217372 + base heaps phonetic-languages-simplified-properties-array 217373 + phonetic-languages-ukrainian-array ukrainian-phonetics-basic-array 216450 217374 ]; 216451 217375 description = "Some commonly used by phonetic-languages-simplified* series functions"; 216452 217376 license = lib.licenses.mit; ··· 216466 217390 }: 216467 217391 mkDerivation { 216468 217392 pname = "phonetic-languages-simplified-generalized-examples-array"; 216469 - version = "0.17.0.0"; 216470 - sha256 = "0gm5pn7qass74x7xjgshq1hlyjvdm9jvfjvnwh6g0f607g7zzsrp"; 217393 + version = "0.18.1.0"; 217394 + sha256 = "1frn5zijjv1054lwd7mvp4klv96ywpbxv5msnyl7a2bbikwrdhqs"; 216471 217395 libraryHaskellDepends = [ 216472 217396 base cli-arguments foldable-ix heaps mmsyn2-array mmsyn3 parallel 216473 217397 phonetic-languages-basis phonetic-languages-constraints-array ··· 216486 217410 216487 217411 "phonetic-languages-simplified-generalized-examples-common" = callPackage 216488 217412 ({ mkDerivation, base, heaps, phonetic-languages-phonetics-basics 217413 + , phonetic-languages-simplified-generalized-properties-array 216489 217414 }: 216490 217415 mkDerivation { 216491 217416 pname = "phonetic-languages-simplified-generalized-examples-common"; 216492 - version = "0.4.0.0"; 216493 - sha256 = "0bhjmnj1k54c7xg3m9p5rlnqq4csf872ap2a2axf4d6caizz29cf"; 217417 + version = "0.5.0.0"; 217418 + sha256 = "0mma7d4hjd45fb7nzhpc438qfjfhkrd59rrm734nw8z5i9j6sv35"; 216494 217419 libraryHaskellDepends = [ 216495 217420 base heaps phonetic-languages-phonetics-basics 217421 + phonetic-languages-simplified-generalized-properties-array 216496 217422 ]; 216497 217423 description = "Some common code for phonetic languages generalized functionality"; 216498 217424 license = lib.licenses.mit; ··· 216500 217426 }) {}; 216501 217427 216502 217428 "phonetic-languages-simplified-generalized-properties-array" = callPackage 216503 - ({ mkDerivation, base, phonetic-languages-basis 216504 - , phonetic-languages-phonetics-basics 217429 + ({ mkDerivation, base, lists-flines, mmsyn2-array 217430 + , phonetic-languages-basis, phonetic-languages-phonetics-basics 216505 217431 , phonetic-languages-rhythmicity 216506 217432 }: 216507 217433 mkDerivation { 216508 217434 pname = "phonetic-languages-simplified-generalized-properties-array"; 216509 - version = "0.10.1.0"; 216510 - sha256 = "04z1xm1da9rhiajkfdyflsbmd0dqpzsjhh1xl469p4795xfv3k2l"; 217435 + version = "0.11.0.0"; 217436 + sha256 = "0j025aahsfywrf76mqg1p80kri7n8q2madg5qc3l6frlwgxhk44m"; 216511 217437 libraryHaskellDepends = [ 216512 - base phonetic-languages-basis phonetic-languages-phonetics-basics 216513 - phonetic-languages-rhythmicity 217438 + base lists-flines mmsyn2-array phonetic-languages-basis 217439 + phonetic-languages-phonetics-basics phonetic-languages-rhythmicity 216514 217440 ]; 216515 217441 description = "Some 'properties' of the phonetic languages approach text"; 216516 217442 license = lib.licenses.mit; ··· 216553 217479 }) {}; 216554 217480 216555 217481 "phonetic-languages-simplified-properties-array" = callPackage 216556 - ({ mkDerivation, base, phonetic-languages-basis 216557 - , phonetic-languages-rhythmicity 217482 + ({ mkDerivation, base, lists-flines, mmsyn2-array 217483 + , phonetic-languages-basis, phonetic-languages-rhythmicity 216558 217484 , phonetic-languages-simplified-base 216559 217485 , phonetic-languages-simplified-properties-array-common 216560 217486 , ukrainian-phonetics-basic-array 216561 217487 }: 216562 217488 mkDerivation { 216563 217489 pname = "phonetic-languages-simplified-properties-array"; 216564 - version = "0.14.0.0"; 216565 - sha256 = "0b8vi0f4phz9jd6n92cv9fravqx6dz8dkfs0gk0qavln13p6nj98"; 217490 + version = "0.15.0.0"; 217491 + sha256 = "1p8mdrz1k6352rfcfmwnvs338bkbhzj89ag1swd9rxa79igsv87v"; 216566 217492 libraryHaskellDepends = [ 216567 - base phonetic-languages-basis phonetic-languages-rhythmicity 216568 - phonetic-languages-simplified-base 217493 + base lists-flines mmsyn2-array phonetic-languages-basis 217494 + phonetic-languages-rhythmicity phonetic-languages-simplified-base 216569 217495 phonetic-languages-simplified-properties-array-common 216570 217496 ukrainian-phonetics-basic-array 216571 217497 ]; ··· 216579 217505 }: 216580 217506 mkDerivation { 216581 217507 pname = "phonetic-languages-simplified-properties-array-common"; 216582 - version = "0.1.0.0"; 216583 - sha256 = "19c7y4v5fk3dkxpm1hj6xdw0kgfaqv148ws9if26cyjjhzsqkxl9"; 217508 + version = "0.2.0.0"; 217509 + sha256 = "1c61pi61kcbr70xfrxiq50frg7rd9sabj7834x3lhlix41s6rhld"; 216584 217510 libraryHaskellDepends = [ 216585 217511 base phonetic-languages-basis phonetic-languages-rhythmicity 216586 217512 ]; ··· 216607 217533 ]; 216608 217534 description = "Some properties of the data related to rhythmicity"; 216609 217535 license = lib.licenses.mit; 217536 + hydraPlatforms = lib.platforms.none; 217537 + broken = true; 216610 217538 }) {}; 216611 217539 216612 217540 "phonetic-languages-simplified-properties-lists" = callPackage ··· 217057 217985 ({ mkDerivation, base, mtl }: 217058 217986 mkDerivation { 217059 217987 pname = "pid"; 217060 - version = "0.1.0.1"; 217061 - sha256 = "0qabdl1y7k7ycsg4r4hhq8lvq8vaps5rhv4r45mwfbj90vm1n9wa"; 217988 + version = "0.1.0.2"; 217989 + sha256 = "01kyc4rdxqnx2rvb8lkzf8k0wma9ipzkn0x91p2d999r428n7r18"; 217062 217990 isLibrary = false; 217063 217991 isExecutable = true; 217064 217992 executableHaskellDepends = [ base mtl ]; 217065 - description = "a simple pid controller"; 217993 + description = "a simple PID controller"; 217066 217994 license = "unknown"; 217067 217995 mainProgram = "pid"; 217068 217996 }) {}; ··· 217395 218323 }: 217396 218324 mkDerivation { 217397 218325 pname = "pinned-warnings"; 217398 - version = "0.1.0.10"; 217399 - sha256 = "04ak277hv2zccfi1y8639cjz3sm881i3cjli35x7a17hn7dy8l38"; 218326 + version = "0.1.0.12"; 218327 + sha256 = "1pz6nwxwn9k7l64n9185rgsyqsa85wb3vil52l9ylvsnkdykqz6w"; 217400 218328 libraryHaskellDepends = [ 217401 218329 base bytestring containers directory ghc time transformers 217402 218330 ]; ··· 217980 218908 pname = "pipes-extras"; 217981 218909 version = "1.0.15"; 217982 218910 sha256 = "1cyb05bv5xkarab3090ikpjiqm79lr46n3nalplliz8jr4x67a82"; 217983 - revision = "4"; 217984 - editedCabalFile = "0dis0i8l76cd94qgabvjbmn7iqwnqqdf8kgj4d5nby0xc02mqbw9"; 218911 + revision = "5"; 218912 + editedCabalFile = "05xv3l5m02ksppdifmsvva14dh0r341z07glc4a65a9rbvr28gq8"; 217985 218913 libraryHaskellDepends = [ base foldl lens pipes transformers ]; 217986 218914 testHaskellDepends = [ 217987 218915 base HUnit pipes test-framework test-framework-hunit transformers ··· 219882 220810 }: 219883 220811 mkDerivation { 219884 220812 pname = "podenv"; 219885 - version = "0.1.0"; 219886 - sha256 = "18r1hx5bks645fw29zpbl5bn4cssdl9mz62ih8i90bwpwf4glxph"; 220813 + version = "0.2.0"; 220814 + sha256 = "1xm4ii3i4wsbd7qv0la1dsh17gh5640gb0frwciv548gll5dk9k6"; 219887 220815 isLibrary = true; 219888 220816 isExecutable = true; 219889 220817 libraryHaskellDepends = [ ··· 220554 221482 pname = "polyparse"; 220555 221483 version = "1.13"; 220556 221484 sha256 = "0yvhg718dlksiw3v27m2d8m1sn4r4f5s0p56zq3lynhy1sc74k0w"; 220557 - revision = "4"; 220558 - editedCabalFile = "0i1vd36mpbls1crs5wdca77f6wjqimy6f9b9kk7kr3jz7zgqhnz7"; 221485 + revision = "5"; 221486 + editedCabalFile = "05qrn5pfdy45x1nkx7dvhnxs9j6d6cssws4kwn2sl3n9qmagr8mc"; 220559 221487 libraryHaskellDepends = [ base bytestring text ]; 220560 221488 description = "A variety of alternative parser combinator libraries"; 220561 221489 license = "LGPL"; ··· 220811 221739 ({ mkDerivation, base, containers, polysemy }: 220812 221740 mkDerivation { 220813 221741 pname = "polysemy-kvstore"; 220814 - version = "0.1.2.0"; 220815 - sha256 = "1wa9rn948gaaz4z7pk0k2k023rap1ia3xxaxyqw5wzalfb2bm2zx"; 221742 + version = "0.1.3.0"; 221743 + sha256 = "1w6b1iwfngsilf1inxpg0y159k16ybdlqkdkdkiyjys7wvdgv24d"; 220816 221744 libraryHaskellDepends = [ base containers polysemy ]; 220817 221745 description = "KVStore effect for polysemy"; 220818 221746 license = lib.licenses.mit; ··· 221581 222509 }: 221582 222510 mkDerivation { 221583 222511 pname = "pontarius-xmpp-extras"; 221584 - version = "0.1.0.7"; 221585 - sha256 = "0kcb0fvbs340cpqzh9vxi7vkisgkv2afnvr5fjq647lwisncbxgz"; 222512 + version = "0.1.0.8"; 222513 + sha256 = "0ybbzbyv7zmzrz1bnx61aax1s4ckv55pmyf2rmba8gf4gf5kqj79"; 221586 222514 libraryHaskellDepends = [ 221587 222515 base data-default pontarius-xmpp text time xml-types 221588 222516 ]; ··· 221984 222912 pname = "portray"; 221985 222913 version = "0.2.0"; 221986 222914 sha256 = "1kzzvwqphlg1dmd486ijkv6vsqmxnp8h05mwc8590yjxdln5vzdw"; 221987 - revision = "2"; 221988 - editedCabalFile = "14fdpmwh4ghdc97361l7mny4p2fai2v6g445lw0ybjbxg44cij5r"; 222915 + revision = "3"; 222916 + editedCabalFile = "0zszhxd9f51wb15rw5rvz6cb20kbf2f8r8xn2dksm5mdnyiv3pgz"; 221989 222917 libraryHaskellDepends = [ base containers text wrapped ]; 221990 222918 testHaskellDepends = [ 221991 222919 base containers HUnit test-framework test-framework-hunit text ··· 222001 222929 pname = "portray-diff"; 222002 222930 version = "0.1.0.1"; 222003 222931 sha256 = "1da884cj865q6g1bd1fhcazyl1nzxb0pk2nvhcpp4iqkjvhyd8hw"; 222004 - revision = "2"; 222005 - editedCabalFile = "112sp759wd5fr0nqrrnsj9m7pc209m4gyd1k16ps09gbwn40whd6"; 222932 + revision = "3"; 222933 + editedCabalFile = "1wikgdbb1bngppqq8n4pgfqaf040rpfn5hdzspcycc8i7z8gi5mw"; 222006 222934 libraryHaskellDepends = [ 222007 222935 base containers dlist portray text wrapped 222008 222936 ]; ··· 222017 222945 pname = "portray-diff-hunit"; 222018 222946 version = "0.1.0.0"; 222019 222947 sha256 = "0gig1gvw0s7cl4jbffqh53r7lfs08clkcjpdypjjbpk0815pk34h"; 222020 - revision = "2"; 222021 - editedCabalFile = "0bqr29g47rqdwrc2c3zsizgbis0wdwh1pz3a40pfr0va6c7fsj9m"; 222948 + revision = "3"; 222949 + editedCabalFile = "05y5cci0kip5ribjkkinv7nqfvbjsq7z26vj3b170vd7awgfb2xq"; 222022 222950 libraryHaskellDepends = [ 222023 222951 base HUnit portray-diff portray-pretty pretty 222024 222952 ]; ··· 222032 222960 pname = "portray-diff-quickcheck"; 222033 222961 version = "0.1.0.0"; 222034 222962 sha256 = "1kif82y8bapf5d3awkfv7wp3ih89q3p14djanyz6jfapryhccm12"; 222035 - revision = "2"; 222036 - editedCabalFile = "0ynqqv3ilfwnj5vzs7rlng1w6r6zzqph0scsvy51dzy5al96hkgz"; 222963 + revision = "3"; 222964 + editedCabalFile = "0c6ld7l8k4kk66rikxknq0c6mjc7dwa1bw7bqbajqfdb0jjbaafc"; 222037 222965 libraryHaskellDepends = [ 222038 222966 base portray-diff portray-pretty QuickCheck 222039 222967 ]; ··· 222049 222977 pname = "portray-pretty"; 222050 222978 version = "0.1.0.2"; 222051 222979 sha256 = "1gh50r77yz1l8qkhdz96bds2l0d5zi75fkir27x3si406h7sdic9"; 222052 - revision = "2"; 222053 - editedCabalFile = "1i6lgiin3k8d6y683vn5jk5mnbnc2hlamf3n48yvx6z19p65rmzi"; 222980 + revision = "3"; 222981 + editedCabalFile = "1602wqwdli0h1rmpf5pg5205pikfk9b7d1ss9jhxbwbs1qq6zcpf"; 222054 222982 libraryHaskellDepends = [ base portray portray-diff pretty text ]; 222055 222983 testHaskellDepends = [ 222056 222984 base HUnit portray portray-diff pretty test-framework ··· 222069 222997 pname = "portray-prettyprinter"; 222070 222998 version = "0.2.0"; 222071 222999 sha256 = "16g55vjcfawx1jxmgy3zgl6bqv67h831z00912fbfh878s1s24ic"; 222072 - revision = "2"; 222073 - editedCabalFile = "0b944c4fws0pvfq9vbr4dvxz6irmqdwvgv6qg1r3bhz2lqg5q434"; 223000 + revision = "3"; 223001 + editedCabalFile = "0iwl1g9jrkrvxl4b7bns09vfwrzpr6k475kmnhkija1wr0wkd4p9"; 222074 223002 libraryHaskellDepends = [ 222075 223003 base portray portray-diff prettyprinter prettyprinter-ansi-terminal 222076 223004 text ··· 222383 223311 }: 222384 223312 mkDerivation { 222385 223313 pname = "posplyu"; 222386 - version = "0.1.0.1"; 222387 - sha256 = "09yafx5d82h4vsx2pp2hccwy74b7nhbys971g86qcg6yf24ha621"; 223314 + version = "0.1.0.2"; 223315 + sha256 = "091cwg07wzhqcrbm285n6yzgp0sa19a0q0y2f5q52zdq815wc96x"; 222388 223316 isLibrary = false; 222389 223317 isExecutable = true; 222390 223318 executableHaskellDepends = [ ··· 226179 227107 ({ mkDerivation, base, directory, mmsyn3, process, sublists }: 226180 227108 mkDerivation { 226181 227109 pname = "process-sequential"; 226182 - version = "0.1.1.0"; 226183 - sha256 = "19dv9sk1hk4ny0zh8amr9bddmjxc94r8h3cims9ylhrrb34zz90f"; 227110 + version = "0.1.2.0"; 227111 + sha256 = "1pspx5w36hzc1gc2vmnivnc9bjpccww9mk184m3zsh563w55iwqw"; 226184 227112 libraryHaskellDepends = [ base directory mmsyn3 process sublists ]; 226185 227113 description = "A test suite for the complex multi files multi level processment"; 226186 227114 license = lib.licenses.mit; ··· 228376 229304 }: 228377 229305 mkDerivation { 228378 229306 pname = "ptr"; 228379 - version = "0.16.8.2"; 228380 - sha256 = "03azqd2wxs7p48ixc1zhy65axgaacnndcbxgrv6f026szpllky55"; 229307 + version = "0.16.8.3"; 229308 + sha256 = "1qyzgpwl74cxg1kyf0qyildrcf42q0icqi7ym1fyx4sh759ggd26"; 228381 229309 libraryHaskellDepends = [ 228382 229310 base bytestring contravariant profunctors strict-list text time 228383 229311 vector ··· 229427 230355 license = lib.licenses.mit; 229428 230356 }) {}; 229429 230357 230358 + "pusher-http-haskell_2_1_0_11" = callPackage 230359 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 230360 + , cryptonite, hashable, hspec, http-client, http-client-tls 230361 + , http-types, memory, QuickCheck, text, time, unordered-containers 230362 + }: 230363 + mkDerivation { 230364 + pname = "pusher-http-haskell"; 230365 + version = "2.1.0.11"; 230366 + sha256 = "1vrpdj0z41zhpfy4lk87w4fyfvrp27rvqds9j5s2wyxj95k2scm5"; 230367 + libraryHaskellDepends = [ 230368 + aeson base base16-bytestring bytestring cryptonite hashable 230369 + http-client http-client-tls http-types memory text time 230370 + unordered-containers 230371 + ]; 230372 + testHaskellDepends = [ 230373 + aeson base bytestring hspec QuickCheck text unordered-containers 230374 + ]; 230375 + description = "Haskell client library for the Pusher Channels HTTP API"; 230376 + license = lib.licenses.mit; 230377 + hydraPlatforms = lib.platforms.none; 230378 + }) {}; 230379 + 229430 230380 "pusher-ws" = callPackage 229431 230381 ({ mkDerivation, aeson, base, bytestring, containers, deepseq 229432 230382 , hashable, http-conduit, lens, lens-aeson, network, scientific ··· 230921 231871 hydraPlatforms = lib.platforms.none; 230922 231872 }) {}; 230923 231873 231874 + "quickcheck-dynamic" = callPackage 231875 + ({ mkDerivation, base, QuickCheck, random }: 231876 + mkDerivation { 231877 + pname = "quickcheck-dynamic"; 231878 + version = "1.0.0"; 231879 + sha256 = "0c4kagvlwihqz14kwdawkv9gg1ncq36icqdxyz3lyk5hyijxr56n"; 231880 + libraryHaskellDepends = [ base QuickCheck random ]; 231881 + description = "A library for stateful property-based testing"; 231882 + license = lib.licenses.asl20; 231883 + }) {}; 231884 + 230924 231885 "quickcheck-enum-instances" = callPackage 230925 231886 ({ mkDerivation, base, enum-types, QuickCheck }: 230926 231887 mkDerivation { ··· 230949 231910 "quickcheck-instances" = callPackage 230950 231911 ({ mkDerivation, array, base, bytestring, case-insensitive 230951 231912 , containers, data-fix, hashable, integer-logarithms, old-time 230952 - , OneTuple, QuickCheck, scientific, splitmix, strict, tagged, text 230953 - , text-short, these, time, time-compat, transformers 231913 + , OneTuple, primitive, QuickCheck, scientific, splitmix, strict 231914 + , tagged, text, text-short, these, time, time-compat, transformers 230954 231915 , transformers-compat, unordered-containers, uuid-types, vector 230955 231916 }: 230956 231917 mkDerivation { 230957 231918 pname = "quickcheck-instances"; 230958 - version = "0.3.27"; 230959 - sha256 = "10vb3rl1ma9x4qdych9vn8gj9kngkqs2b97f4s6s1a908ddxv4m5"; 230960 - revision = "2"; 230961 - editedCabalFile = "13g7mf6brxxwp99n5a0pazjq4r3i5ckzq6kflcfaknzl1gxvmnhp"; 231919 + version = "0.3.28"; 231920 + sha256 = "1jycijv7gaj6qrkp219nllrdv9zd0ifp0mb0rch430fm95xin4f4"; 230962 231921 libraryHaskellDepends = [ 230963 231922 array base bytestring case-insensitive containers data-fix hashable 230964 - integer-logarithms old-time OneTuple QuickCheck scientific splitmix 230965 - strict tagged text text-short these time time-compat transformers 230966 - transformers-compat unordered-containers uuid-types vector 231923 + integer-logarithms old-time OneTuple primitive QuickCheck 231924 + scientific splitmix strict tagged text text-short these time 231925 + time-compat transformers transformers-compat unordered-containers 231926 + uuid-types vector 230967 231927 ]; 230968 231928 testHaskellDepends = [ 230969 - base containers QuickCheck tagged uuid-types 231929 + base containers primitive QuickCheck tagged uuid-types 230970 231930 ]; 230971 231931 benchmarkHaskellDepends = [ base bytestring QuickCheck ]; 230972 231932 description = "Common quickcheck instances"; ··· 231927 232887 pname = "quotet"; 231928 232888 version = "0.0.1.1"; 231929 232889 sha256 = "16fwbf9q2ivpi3j7y26lsbqvwwk7vidjn6q9iz4x6sq8adhy45rz"; 232890 + revision = "1"; 232891 + editedCabalFile = "0c0war9bpi0mmvgca6kc5aq99pz9wk469lvyds8glxlj4970i8qd"; 231930 232892 libraryHaskellDepends = [ base mtl template-haskell th-compat ]; 231931 232893 description = "Monad transformer for Quote from template-haskell"; 231932 232894 license = lib.licenses.cc0; ··· 231972 232934 ]; 231973 232935 description = "Can be used to calculate the durations of the approximations of the Ukrainian phonemes"; 231974 232936 license = lib.licenses.mit; 232937 + hydraPlatforms = lib.platforms.none; 231975 232938 mainProgram = "pldUkr"; 232939 + broken = true; 231976 232940 }) {}; 231977 232941 231978 232942 "r3x-haskell-sdk" = callPackage ··· 232518 233482 ({ mkDerivation, base, criterion, hspec }: 232519 233483 mkDerivation { 232520 233484 pname = "rampart"; 232521 - version = "2.0.0.1"; 232522 - sha256 = "051qiv8jqjrh79drgrdaa72qmsxb4pwizpi576c8pcgpg6ld6ilv"; 233485 + version = "2.0.0.2"; 233486 + sha256 = "04g2ifqb3incjsc8jxs2fkl5jw5690p1s33slqbvbq8qqb3f4vv8"; 232523 233487 libraryHaskellDepends = [ base ]; 232524 233488 testHaskellDepends = [ base hspec ]; 232525 233489 benchmarkHaskellDepends = [ base criterion ]; ··· 234157 235121 }: 234158 235122 mkDerivation { 234159 235123 pname = "reactive-banana"; 234160 - version = "1.3.0.0"; 234161 - sha256 = "05jml1wxvj6453p98a2km8qvb0gs17y68givp1nf1l41r5da1fkk"; 235124 + version = "1.3.1.0"; 235125 + sha256 = "06cmr70cbvnvm69lnj2hkxfmznqj97rxs7y6baxpjkyhm0lsv1dl"; 234162 235126 libraryHaskellDepends = [ 234163 235127 base containers hashable pqueue semigroups these transformers 234164 235128 unordered-containers vault ··· 236488 237452 236489 237453 "reflex-gadt-api" = callPackage 236490 237454 ({ mkDerivation, aeson, aeson-gadt-th, base, bytestring 236491 - , constraints, constraints-extras, containers, data-default 237455 + , constraints-extras, containers, data-default, dependent-sum 236492 237456 , jsaddle, reflex, reflex-dom-core, some, text, time 236493 237457 }: 236494 237458 mkDerivation { 236495 237459 pname = "reflex-gadt-api"; 236496 - version = "0.2.1.0"; 236497 - sha256 = "1mcxa87z6cldbc9p2mkdif5a8qa8sa0nhmawwm1gjqgvhzp7kmdp"; 237460 + version = "0.2.2.0"; 237461 + sha256 = "1ras7jl1j90a4zd9bnw4x31ykk0ww373kjpkd9sq909i73a7xzxl"; 236498 237462 isLibrary = true; 236499 237463 isExecutable = true; 236500 237464 libraryHaskellDepends = [ 236501 - aeson aeson-gadt-th base bytestring constraints constraints-extras 236502 - containers data-default jsaddle reflex reflex-dom-core some text 236503 - time 237465 + aeson aeson-gadt-th base bytestring constraints-extras containers 237466 + data-default jsaddle reflex reflex-dom-core some text time 236504 237467 ]; 236505 237468 executableHaskellDepends = [ 236506 - aeson aeson-gadt-th base constraints-extras reflex-dom-core text 236507 - time 237469 + aeson aeson-gadt-th base constraints-extras dependent-sum 237470 + reflex-dom-core text time 236508 237471 ]; 236509 237472 description = "Interact with a GADT API in your reflex-dom application"; 236510 237473 license = lib.licenses.bsd3; ··· 237338 238301 pname = "regex-pcre-builtin"; 237339 238302 version = "0.95.2.3.8.44"; 237340 238303 sha256 = "0pn55ssrwr05c9sa9jvp0knvzjksz04wn3pmzf5dz4xgbyjadkna"; 237341 - revision = "1"; 237342 - editedCabalFile = "1j7wcw3f8fmd0m1iqndliw2w4jrm4rr7lyydn3xi7wxyvy8a0kmf"; 238304 + revision = "2"; 238305 + editedCabalFile = "19ryjv8va9bjwhfk4v81lsvi91aj7aw1cflggywjpmw001qr419d"; 237343 238306 libraryHaskellDepends = [ 237344 238307 array base bytestring containers regex-base text 237345 238308 ]; ··· 238174 239137 maintainers = [ lib.maintainers.sternenseemann ]; 238175 239138 }) {}; 238176 239139 239140 + "rel8_1_4_0_0" = callPackage 239141 + ({ mkDerivation, aeson, base, bifunctors, bytestring 239142 + , case-insensitive, comonad, containers, contravariant, hasql 239143 + , hasql-transaction, hedgehog, mmorph, opaleye, pretty 239144 + , product-profunctors, profunctors, scientific, semialign 239145 + , semigroupoids, tasty, tasty-hedgehog, text, these, time 239146 + , tmp-postgres, transformers, uuid 239147 + }: 239148 + mkDerivation { 239149 + pname = "rel8"; 239150 + version = "1.4.0.0"; 239151 + sha256 = "1i0ah0wqx0z7grm9zbvf6mx6gk7lx1xfa7svbp4dnb4k8p52b63k"; 239152 + libraryHaskellDepends = [ 239153 + aeson base bifunctors bytestring case-insensitive comonad 239154 + contravariant hasql opaleye pretty product-profunctors profunctors 239155 + scientific semialign semigroupoids text these time uuid 239156 + ]; 239157 + testHaskellDepends = [ 239158 + base bytestring case-insensitive containers hasql hasql-transaction 239159 + hedgehog mmorph scientific tasty tasty-hedgehog text time 239160 + tmp-postgres transformers uuid 239161 + ]; 239162 + description = "Hey! Hey! Can u rel8?"; 239163 + license = lib.licenses.bsd3; 239164 + hydraPlatforms = lib.platforms.none; 239165 + maintainers = [ lib.maintainers.sternenseemann ]; 239166 + }) {}; 239167 + 238177 239168 "relacion" = callPackage 238178 239169 ({ mkDerivation, array, base, containers }: 238179 239170 mkDerivation { ··· 239465 240456 maintainers = [ lib.maintainers.maralorn ]; 239466 240457 }) {}; 239467 240458 239468 - "req_3_12_0" = callPackage 240459 + "req_3_13_0" = callPackage 239469 240460 ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder 239470 - , bytestring, case-insensitive, connection, exceptions, hspec 239471 - , hspec-core, hspec-discover, http-api-data, http-client 240461 + , bytestring, case-insensitive, connection, containers, exceptions 240462 + , hspec, hspec-core, hspec-discover, http-api-data, http-client 239472 240463 , http-client-tls, http-types, modern-uri, monad-control, mtl 239473 240464 , QuickCheck, retry, template-haskell, text, time, transformers 239474 240465 , transformers-base, unliftio-core 239475 240466 }: 239476 240467 mkDerivation { 239477 240468 pname = "req"; 239478 - version = "3.12.0"; 239479 - sha256 = "1gwdqmqmj3acim5r8c4sjzcvr3hvlbcjwkrpcsvq95ckr1wmzpqp"; 239480 - revision = "1"; 239481 - editedCabalFile = "0f3d1y1ymgrdbf84p4pgpbsn5772vc5lrjmj7wgf7baqw03kq8wy"; 240469 + version = "3.13.0"; 240470 + sha256 = "1igs75bj57vs1fwpxj1765l6zkqd4r3p2gbwp6cv2l37drfxjck4"; 239482 240471 enableSeparateDataOutput = true; 239483 240472 libraryHaskellDepends = [ 239484 240473 aeson authenticate-oauth base blaze-builder bytestring 239485 - case-insensitive connection exceptions http-api-data http-client 239486 - http-client-tls http-types modern-uri monad-control mtl retry 239487 - template-haskell text time transformers transformers-base 240474 + case-insensitive connection containers exceptions http-api-data 240475 + http-client http-client-tls http-types modern-uri monad-control mtl 240476 + retry template-haskell text time transformers transformers-base 239488 240477 unliftio-core 239489 240478 ]; 239490 240479 testHaskellDepends = [ ··· 239862 240851 pname = "resolv"; 239863 240852 version = "0.1.2.0"; 239864 240853 sha256 = "0wa6wsh6i52q4ah2z0hgzlks325kigch4yniz0y15nw4skxbm8l1"; 239865 - revision = "4"; 239866 - editedCabalFile = "1d3dsbvrwynnbdj32fswiwh90h28p31h6fsfpq5zh85rd29yp210"; 240854 + revision = "5"; 240855 + editedCabalFile = "0df5y8bj9bxjmqnkvpwxvb17k70g1i174xs6vfrv9f1lys7xkqk1"; 239867 240856 libraryHaskellDepends = [ 239868 240857 base base16-bytestring binary bytestring containers 239869 240858 ]; ··· 240065 241054 pname = "resourcet-effectful"; 240066 241055 version = "1.0.0.0"; 240067 241056 sha256 = "0446j4ihj3fn6lkqi2b1642ak27l6cpwfv4b73gpanq3nad69fzg"; 240068 - revision = "2"; 240069 - editedCabalFile = "1v02b2cp0cnfinr7bndxdwl84qqzz558rmf17xhskgl4iy2ziqvl"; 241057 + revision = "3"; 241058 + editedCabalFile = "1w3zij2aj3q06r2773d964pv20ix5n70hf15kawzsd6sadbwymz3"; 240070 241059 libraryHaskellDepends = [ base effectful-core resourcet ]; 240071 241060 description = "Adaptation of the resourcet library for the effectful ecosystem"; 240072 241061 license = lib.licenses.bsd3; ··· 241979 242968 pname = "rle"; 241980 242969 version = "0.1.0.1"; 241981 242970 sha256 = "05rbhm0lxrq7vdbq9s0q21m0f0hlzmknljmampcmdjnwbl4nvf3d"; 241982 - revision = "2"; 241983 - editedCabalFile = "1qrc7d5h9ikvk0mxk0q03x7iwbax11vw97416qqknl7m6azi915v"; 242971 + revision = "3"; 242972 + editedCabalFile = "1gl5igmac6qhfanfnr65i5g9y9cqpzrr429hkriqyp5xvsgg3qka"; 241984 242973 libraryHaskellDepends = [ 241985 242974 base cereal deepseq portray portray-diff wrapped 241986 242975 ]; ··· 243575 244564 pname = "rss"; 243576 244565 version = "3000.2.0.7"; 243577 244566 sha256 = "0z48xb610k1h29rg03q19y08fp78agxp2gr48innw5y3rz00s6ym"; 243578 - revision = "5"; 243579 - editedCabalFile = "197a9q8zmfx8imbnrwp7b62xahh2qs47mk67hzhrrz0f5v88qszm"; 244567 + pname = "html2hamlet"; 244568 + editedCabalFile = "1zhkfkvlbisk5qa7fccpwknblzk1m4kyyfcdhj436p2q5kx8dd8v"; 243580 244569 libraryHaskellDepends = [ base HaXml network network-uri time ]; 243581 244570 description = "A library for generating RSS 2.0 feeds."; 243582 244571 license = lib.licenses.publicDomain; ··· 244780 245769 pname = "safecopy"; 244781 245770 version = "0.10.4.2"; 244782 245771 sha256 = "0r2mf0p82gf8vnldx477b5ykrj1x7hyg13nqfn6gzb50japs6h3i"; 244783 - revision = "4"; 244784 - editedCabalFile = "0k7kivfkaqv9py5358pk76v6vf39s4hipmdxnwn6jq0kc7zr3ddc"; 245772 + revision = "5"; 245773 + editedCabalFile = "1qwzj9nija3kw6ijxl5nhny7vclp7x31cml3hl9fpajj5v0lhh4j"; 244785 245774 libraryHaskellDepends = [ 244786 245775 array base bytestring cereal containers generic-data old-time 244787 245776 template-haskell text time transformers vector ··· 246958 247947 pname = "scientific"; 246959 247948 version = "0.3.7.0"; 246960 247949 sha256 = "1aa3ngb71l2sh1x2829napnr1w285q0sn2f7z2wvi3ynng2238d3"; 246961 - revision = "2"; 246962 - editedCabalFile = "01vmr4pz1j0xjcln61m7gng6bzhgri56h05x7sl6xbxjps15likn"; 247950 + revision = "3"; 247951 + editedCabalFile = "1n67w1b64q59nn4845z3kr8rm0x0p7bi3cyp6n1dpnfs8k4l8x2i"; 246963 247952 libraryHaskellDepends = [ 246964 247953 base binary bytestring containers deepseq hashable 246965 247954 integer-logarithms primitive template-haskell text ··· 248080 249069 }: 248081 249070 mkDerivation { 248082 249071 pname = "sdl2-ttf"; 248083 - version = "2.1.2"; 248084 - sha256 = "0jg3dg4g876shbcxlgcjwfd0g76ih3xh8f1hc79qxg6j48khxbpd"; 249072 + version = "2.1.3"; 249073 + sha256 = "0sm5lrdif5wmz3iah1658zlr7yr45d1hfihb2hdxdia4h7z1j0mn"; 248085 249074 isLibrary = true; 248086 249075 isExecutable = true; 248087 249076 libraryHaskellDepends = [ ··· 249018 250007 pname = "semialign"; 249019 250008 version = "1.2.0.1"; 249020 250009 sha256 = "0ci1jpp37p1lzyjxc1bljd6zgg407qmkl9s36b50qjxf85q6j06r"; 249021 - revision = "2"; 249022 - editedCabalFile = "0dm51m0qa1mbwk66wzidws1vvv6xy54swjg58nkjhw76yys2mcia"; 250010 + revision = "3"; 250011 + editedCabalFile = "0dbcdnksik508i12arh3s6bis6779lx5f1df0jkc0bp797inhd7f"; 249023 250012 libraryHaskellDepends = [ 249024 250013 base containers hashable indexed-traversable 249025 250014 indexed-traversable-instances semigroupoids tagged these ··· 249055 250044 pname = "semialign-indexed"; 249056 250045 version = "1.2"; 249057 250046 sha256 = "16f0y3j85zlq2f8z45z085dizvbx4ihppp1ww3swh5daj0zf3kzy"; 250047 + revision = "1"; 250048 + editedCabalFile = "041zf53szkshc13i0kqgk77rb7r00snknv5qhq2ka4vfg2f0dn4x"; 249058 250049 libraryHaskellDepends = [ base lens semialign ]; 249059 250050 doHaddock = false; 249060 250051 description = "SemialignWithIndex, i.e. izipWith and ialignWith"; ··· 249067 250058 pname = "semialign-optics"; 249068 250059 version = "1.2"; 249069 250060 sha256 = "04vh689mmnb5q77v6ifhg7xf7m2qh5x4i4804rm4biw78130xqr1"; 249070 - revision = "1"; 249071 - editedCabalFile = "1cvl6lprra947pdiy7x54qczsfq0383ncsxp4hvlkk9kif7w0pvm"; 250061 + revision = "2"; 250062 + editedCabalFile = "107qx6qxqyl3lbg59by9jbys39fc5mdbgph8iwxxklk3xr5v5nj1"; 249072 250063 libraryHaskellDepends = [ base optics-core semialign ]; 249073 250064 doHaddock = false; 249074 250065 description = "SemialignWithIndex, i.e. izipWith and ialignWith"; ··· 249533 250524 }: 249534 250525 mkDerivation { 249535 250526 pname = "seonbi"; 249536 - version = "0.3.1"; 249537 - sha256 = "11hbx3d0d3c08axbxa275rlsa6kgr7p4h6wdwvlpnwmp7h4sgasi"; 250527 + version = "0.3.2"; 250528 + sha256 = "1a0mh7fi0h04n56vdl5xh2p4ql813743x7y11zl06llrj5cvgggg"; 249538 250529 isLibrary = true; 249539 250530 isExecutable = true; 249540 250531 enableSeparateDataOutput = true; ··· 250510 251501 }: 250511 251502 mkDerivation { 250512 251503 pname = "servant-cassava"; 250513 - version = "0.10.1"; 250514 - sha256 = "0hf7v35yyfqxc20hgq755laba7lziz2vsy7y8cj8nhczcc67smq0"; 251504 + version = "0.10.2"; 251505 + sha256 = "1g2d6gvy21mfxl4f0slqxm7jrapqs47m9n615gijmb536i8csfq1"; 250515 251506 libraryHaskellDepends = [ 250516 251507 base base-compat bytestring cassava http-media servant vector 250517 251508 ]; ··· 255149 256140 pname = "shh"; 255150 256141 version = "0.7.2.0"; 255151 256142 sha256 = "0rcjvkpxdwvhgn7i1dindhbskr8kwgm977kxgi2xcv398c71014y"; 256143 + revision = "1"; 256144 + editedCabalFile = "054bjhpkni3nr6zsilj77gdgb2yw5s1gzm257zz4kigpjjjndr0a"; 255152 256145 isLibrary = true; 255153 256146 isExecutable = true; 255154 256147 libraryHaskellDepends = [ ··· 255354 256347 pname = "short-vec"; 255355 256348 version = "0.1.0.0"; 255356 256349 sha256 = "0w651jipwxh7k4ng5rvq507br4347hzy8x8c47c1g7haryj80gzq"; 255357 - pname = "html2hamlet"; 255358 - editedCabalFile = "13bi12zgv810vn5grqm6agw2v8sk9m0c5hivk34pv0sjiwhlk4m1"; 256350 + revision = "7"; 256351 + editedCabalFile = "02ycid229dkn3df7r0maib1qci268pyw005lmlsz7drw0isw2jh3"; 255359 256352 libraryHaskellDepends = [ 255360 256353 adjunctions base data-default-class deepseq distributive fin-int 255361 256354 indexed-traversable integer-gmp portray portray-diff QuickCheck ··· 255386 256379 pname = "short-vec-lens"; 255387 256380 version = "0.1.0.0"; 255388 256381 sha256 = "1afz1izz19xrjy0cdhmpy7b667waa5v8jh1ps3jpjfpgbmysjz3g"; 255389 - revision = "2"; 255390 - editedCabalFile = "18ic2kvvcyl9y69kg0jjlyqnw9xyj205clp2qfbl3k0sjlqb9va5"; 256382 + revision = "3"; 256383 + editedCabalFile = "0vk9nzhk7bipvd09ww7j79xxkjffddprhgdybd8ins8fg6rcxlxx"; 255391 256384 libraryHaskellDepends = [ 255392 256385 base fin-int indexed-traversable lens short-vec sint 255393 256386 ]; ··· 257694 258687 pname = "sint"; 257695 258688 version = "0.2.0"; 257696 258689 sha256 = "108za6vamb75kd6s2m0iin1gk6b1azk11jzsj841r7j62rhjn1qx"; 257697 - revision = "1"; 257698 - editedCabalFile = "1pwb61jzmpwgg2a1lz30a1445hhasff73qy18jc765ahgimp1r50"; 258690 + revision = "2"; 258691 + editedCabalFile = "0asf2kgxx4xzhqksz9hnzivay961x6n013l3hhrmsr8krzjv0xh1"; 257699 258692 libraryHaskellDepends = [ base portray portray-diff ]; 257700 258693 testHaskellDepends = [ 257701 258694 base portray portray-diff QuickCheck test-framework ··· 257812 258805 pname = "sitemap-gen"; 257813 258806 version = "0.1.0.0"; 257814 258807 sha256 = "0dq87yix1ii6mna8qzbgrqn07ph41283bjzy40rpwm7aqdpv2z0z"; 258808 + revision = "1"; 258809 + editedCabalFile = "0wizn0h8vwjrfgznb4bikpvil37v9iy42ginq584k85kiysxxmqa"; 257815 258810 libraryHaskellDepends = [ base text time xmlgen ]; 257816 258811 testHaskellDepends = [ 257817 258812 base bytestring HUnit raw-strings-qq tasty tasty-hunit time ··· 257898 258893 }: 257899 258894 mkDerivation { 257900 258895 pname = "size-based"; 257901 - version = "0.1.3.0"; 257902 - sha256 = "17ph05bd3knx1bymbzxqziq86qpch66il7g2ipcybrbaaggy0cm7"; 257903 - revision = "1"; 257904 - editedCabalFile = "12scmfwyj1r92w3mdxvg28fxksizrv9f7g7qwqdg64bqpb1lwljd"; 258896 + version = "0.1.3.1"; 258897 + sha256 = "1x2z8iw4jgcp6xirclifjhh3rvyjy5xgqrd6lcv4gifj859sfjd2"; 257905 258898 libraryHaskellDepends = [ 257906 258899 base dictionary-sharing template-haskell testing-type-modifiers 257907 258900 ]; ··· 258346 259339 pname = "skylighting-core"; 258347 259340 version = "0.13"; 258348 259341 sha256 = "01j6v2dy04lsmrx98hvgpb6vnirs1h0gbiy7q5ck5q3k37cqys7p"; 259342 + revision = "1"; 259343 + editedCabalFile = "1kbwbkjgilr0m0hfiq94rlvk691wgrmlrbd916mkv5h869qdyjrr"; 258349 259344 isLibrary = true; 258350 259345 isExecutable = true; 258351 259346 libraryHaskellDepends = [ ··· 261530 262525 pname = "snumber"; 261531 262526 version = "0.3.0"; 261532 262527 sha256 = "16kgy0chysxws8n4651qq6bfwyk184v67iv2h2kbiyxl8wqsjq4l"; 262528 + revision = "1"; 262529 + editedCabalFile = "1wsw6l2raqqfpvr7av2js9744w77mdjpb2k0k61lm33gpp01prwi"; 261533 262530 libraryHaskellDepends = [ base numeric-kinds type-compare ]; 261534 262531 description = "Integer singletons with flexible representation"; 261535 262532 license = lib.licenses.asl20; ··· 262068 263065 pname = "some"; 262069 263066 version = "1.0.4"; 262070 263067 sha256 = "0x1qivqnayybxa6nbnaqyay73yfglxwb3xwfy03pb6ycs639avs4"; 263068 + revision = "1"; 263069 + editedCabalFile = "0hwq21d0y2iwcrkdhqkq76fna90dsdzrkk6ryh9hbg71lf768ih9"; 262071 263070 libraryHaskellDepends = [ base deepseq ]; 262072 263071 testHaskellDepends = [ base ]; 262073 263072 description = "Existential type: Some"; ··· 263609 264608 ({ mkDerivation, base, QuickCheck }: 263610 264609 mkDerivation { 263611 264610 pname = "split"; 263612 - version = "0.2.3.4"; 263613 - sha256 = "0ahzdjcxw5wywr3w4msspia99k6fkckddam1m5506h4z9h8fa7r7"; 263614 - revision = "2"; 263615 - editedCabalFile = "0jwaw5plby8bmjmhshrr5813avqmq4zih2lqpi8cprvfh0z9rpx6"; 264611 + version = "0.2.3.5"; 264612 + sha256 = "0n9ip49laq5jwqw0c43lhf69ii8y4lwci9j6d5bjnjim23bai2mz"; 263616 264613 libraryHaskellDepends = [ base ]; 263617 264614 testHaskellDepends = [ base QuickCheck ]; 263618 264615 description = "Combinator library for splitting lists"; ··· 263684 264681 pname = "splitmix"; 263685 264682 version = "0.1.0.4"; 263686 264683 sha256 = "1apck3nzzl58r0b9al7cwaqwjhhkl8q4bfrx14br2yjf741581kd"; 264684 + revision = "1"; 264685 + editedCabalFile = "1iqlg2d4mybqwzwp67c5a1yxzd47cbp4f7mrpa6d0ckypis2akl0"; 263687 264686 libraryHaskellDepends = [ base deepseq ]; 263688 264687 testHaskellDepends = [ 263689 264688 async base base-compat base-compat-batteries bytestring containers ··· 264915 265914 pname = "stache"; 264916 265915 version = "2.3.3"; 264917 265916 sha256 = "1naqj54qm59f04x310lvj4fsrp3xar1v643i79gp7h48kyn1c2vy"; 265917 + revision = "1"; 265918 + editedCabalFile = "1dlnbmsz1grhwwca2k00601g2fqbq6hr9s1k1g4hhwj0j7ihc0h1"; 264918 265919 isLibrary = true; 264919 265920 isExecutable = true; 264920 265921 enableSeparateDataOutput = true; ··· 267145 268146 }: 267146 268147 mkDerivation { 267147 268148 pname = "stm-hamt"; 267148 - version = "1.2.0.7"; 267149 - sha256 = "1sny6ippahlxhm94888lj19ar36cnjilbw2yza5p223mv0cgnapx"; 268149 + version = "1.2.0.8"; 268150 + sha256 = "1p3njvg5sixsgk12rldmvgcj8flmh00w968mzaavxl4j4axd8x3c"; 267150 268151 libraryHaskellDepends = [ 267151 268152 base deferred-folds focus hashable list-t primitive 267152 268153 primitive-extras transformers ··· 268107 269108 license = lib.licenses.bsd3; 268108 269109 }) {}; 268109 269110 269111 + "streaming-bytestring_0_2_3" = callPackage 269112 + ({ mkDerivation, base, bytestring, deepseq, exceptions, ghc-prim 269113 + , mmorph, mtl, resourcet, smallcheck, streaming, tasty, tasty-hunit 269114 + , tasty-smallcheck, transformers, transformers-base 269115 + }: 269116 + mkDerivation { 269117 + pname = "streaming-bytestring"; 269118 + version = "0.2.3"; 269119 + sha256 = "026fr6415iaxw3fmjjmczs7fiqw8ckzd4vfpp2rh88ismz8j6s7l"; 269120 + libraryHaskellDepends = [ 269121 + base bytestring deepseq exceptions ghc-prim mmorph mtl resourcet 269122 + streaming transformers transformers-base 269123 + ]; 269124 + testHaskellDepends = [ 269125 + base bytestring resourcet smallcheck streaming tasty tasty-hunit 269126 + tasty-smallcheck transformers 269127 + ]; 269128 + description = "Fast, effectful byte streams"; 269129 + license = lib.licenses.bsd3; 269130 + hydraPlatforms = lib.platforms.none; 269131 + }) {}; 269132 + 268110 269133 "streaming-cassava" = callPackage 268111 269134 ({ mkDerivation, base, bytestring, cassava, hspec, mtl, QuickCheck 268112 269135 , quickcheck-instances, streaming, streaming-bytestring, text ··· 269066 270089 ({ mkDerivation, base, bifunctors, deepseq, hashable }: 269067 270090 mkDerivation { 269068 270091 pname = "strict-tuple"; 269069 - version = "0.1.5"; 269070 - sha256 = "1n0rw1vvvsgznx4i21480qzzs44iw35hcdiw0d160war7nf2pyp5"; 270092 + version = "0.1.5.1"; 270093 + sha256 = "188wr0s94ypbdp2mdfnc6fx8fdzbmjjbkc0v23wsbidmw71x5wz3"; 269071 270094 libraryHaskellDepends = [ base bifunctors deepseq hashable ]; 269072 270095 testHaskellDepends = [ base ]; 269073 270096 description = "Strict tuples"; ··· 269772 270795 pname = "stripe-wreq"; 269773 270796 version = "1.0.1.14"; 269774 270797 sha256 = "01z0hqqnnc2g8q0bzj4brjmd9wmpjda4rlk770brvk9ip9mjdlys"; 269775 - revision = "1"; 269776 - editedCabalFile = "1knsmrj0m1xjf8z8hsjcci3h7bg5afzbnx5v6znffc5vzgnphc64"; 270798 + revision = "2"; 270799 + editedCabalFile = "1ijsspbd5in2jv1kcz78y0xxi09px60n51snfx9b49dsjnh2yniv"; 269777 270800 libraryHaskellDepends = [ 269778 270801 aeson base bytestring lens stripe-concepts text wreq 269779 270802 ]; ··· 270245 271268 270246 271269 "stylist" = callPackage 270247 271270 ({ mkDerivation, async, base, css-syntax, hashable, hspec 270248 - , network-uri, QuickCheck, regex-tdfa, scientific, text 270249 - , unordered-containers 271271 + , network-uri, QuickCheck, regex-tdfa, scientific, stylist-traits 271272 + , text, unordered-containers 270250 271273 }: 270251 271274 mkDerivation { 270252 271275 pname = "stylist"; 270253 - version = "2.4.0.2"; 270254 - sha256 = "02p1xm9m1l9qgn6dyi2kc2zlb7iixx7ikwg3vwq4pgszjmhisbi6"; 271276 + version = "2.5.0.0"; 271277 + sha256 = "0sna4q5sw7x5lz9nky5pdpznyq2rmxr82wwg7aigyydb63d8g700"; 270255 271278 libraryHaskellDepends = [ 270256 - async base css-syntax hashable network-uri regex-tdfa text 270257 - unordered-containers 271279 + async base css-syntax hashable network-uri regex-tdfa 271280 + stylist-traits text unordered-containers 270258 271281 ]; 270259 271282 testHaskellDepends = [ 270260 271283 async base css-syntax hashable hspec network-uri QuickCheck 270261 - regex-tdfa scientific text unordered-containers 271284 + regex-tdfa scientific stylist-traits text unordered-containers 270262 271285 ]; 270263 271286 description = "Apply CSS styles to a document tree"; 270264 271287 license = lib.licenses.mit; 271288 + hydraPlatforms = lib.platforms.none; 271289 + }) {}; 271290 + 271291 + "stylist-traits" = callPackage 271292 + ({ mkDerivation, base, css-syntax, network-uri, text }: 271293 + mkDerivation { 271294 + pname = "stylist-traits"; 271295 + version = "0.1.0.0"; 271296 + sha256 = "17wzhd7xfbj16sa3v5zhg4h1g0czccnv3ksbx7mi56dbf6lqq5bi"; 271297 + libraryHaskellDepends = [ base css-syntax network-uri text ]; 271298 + description = "Traits, datatypes, & parsers for Haskell Stylist"; 271299 + license = lib.licenses.gpl3Only; 270265 271300 hydraPlatforms = lib.platforms.none; 270266 271301 }) {}; 270267 271302 ··· 270445 271480 ({ mkDerivation, base }: 270446 271481 mkDerivation { 270447 271482 pname = "sublists"; 270448 - version = "0.1.1.0"; 270449 - sha256 = "1k08cpidl5r4sj64vc1a9fcln78k31z7v8gnh579fxa5lrp4ylnr"; 271483 + version = "0.1.2.0"; 271484 + sha256 = "07z5ihlvhv3symbn69zzln30bdl9cyf2wp22vxrlf4010a895w28"; 270450 271485 libraryHaskellDepends = [ base ]; 270451 271486 description = "Allows to split lists into sublists with some patterns by quantity"; 270452 271487 license = lib.licenses.mit; ··· 275500 276535 ({ mkDerivation, base, containers, deepseq, tasty }: 275501 276536 mkDerivation { 275502 276537 pname = "tasty-bench"; 275503 - version = "0.3.1"; 275504 - sha256 = "1gbqknfh7xc4hb2g58rjh66ibpwp4i38pizkzknx4n366d2292hy"; 276538 + version = "0.3.2"; 276539 + sha256 = "0j92ggsg3fqwkq9zgx94wqqi11yim4b7d1b2s1s24rdv6wy3sfn8"; 275505 276540 libraryHaskellDepends = [ base containers deepseq tasty ]; 276541 + benchmarkHaskellDepends = [ base ]; 275506 276542 description = "Featherlight benchmark framework"; 275507 276543 license = lib.licenses.mit; 275508 276544 }) {}; ··· 275514 276550 }: 275515 276551 mkDerivation { 275516 276552 pname = "tasty-checklist"; 275517 - version = "1.0.3.0"; 275518 - sha256 = "0vlhpc50w8gzdix1ys42cgpdv8rnkffal2zn283pccf1lfbimbjk"; 276553 + version = "1.0.4.0"; 276554 + sha256 = "1zfmd6q4z7gw2i1avcxkgqwjkwh0gzzfmrh6czwc57qnvnaaki4x"; 275519 276555 libraryHaskellDepends = [ 275520 276556 base exceptions parameterized-utils text 275521 276557 ]; ··· 275808 276844 pname = "tasty-hspec"; 275809 276845 version = "1.2.0.1"; 275810 276846 sha256 = "0ibl2xi6mmqad2mriz67nb7pjwwvjik385amp24j9kc7a7zkx091"; 276847 + revision = "1"; 276848 + editedCabalFile = "0a6r4gzxzp6n90z0nif7ha7p7am57hs48i54i2y4z9kgjv6lnvll"; 275811 276849 libraryHaskellDepends = [ 275812 276850 base hspec hspec-core QuickCheck tasty tasty-quickcheck 275813 276851 tasty-smallcheck ··· 277580 278618 pname = "ten"; 277581 278619 version = "0.1.0.2"; 277582 278620 sha256 = "0djvcb2l9dnnjbhivchi6yyaj5i96jmy7yhr9x3paiz1l54brrqx"; 277583 - revision = "2"; 277584 - editedCabalFile = "1ps9l5v5gg0bj2mxwplhi267p94wk5jdcpsv3g106aczw16l5nwz"; 278621 + revision = "3"; 278622 + editedCabalFile = "10ip8dcilycknr64nfhgki30xr73m19jbmv66dpslflkbrkx8ig3"; 277585 278623 libraryHaskellDepends = [ 277586 278624 adjunctions base data-default-class deepseq distributive hashable 277587 278625 portray portray-diff some text transformers wrapped ··· 277601 278639 pname = "ten-lens"; 277602 278640 version = "0.1.0.1"; 277603 278641 sha256 = "0qckywzj1c1k8la2ya1vpgrpl9fnqhggx6m6ad0rgrhyal48522c"; 277604 - revision = "1"; 277605 - editedCabalFile = "1hb0kgp80nbj5smxxsg9iw12r3lpci1z4ddwiv2cznw3qkkl4qa3"; 278642 + revision = "2"; 278643 + editedCabalFile = "05ak4fscx8xs1y216qzcdi743z6vmpvgvcdlasidixdjww562mkr"; 277606 278644 libraryHaskellDepends = [ base lens profunctors some ten ]; 277607 278645 description = "Lenses for the types in the ten package"; 277608 278646 license = lib.licenses.asl20; ··· 277618 278656 pname = "ten-unordered-containers"; 277619 278657 version = "0.1.0.3"; 277620 278658 sha256 = "1kfww8xs5m802jcx309pp6lx9f7pn1hsbqq3mln4g9rcf0r24mwy"; 278659 + revision = "1"; 278660 + editedCabalFile = "051w5krkb6yyn9c28b3csvpikc6i02dypnkx4hmyylvan7bfdz6r"; 277621 278661 libraryHaskellDepends = [ 277622 278662 base hashable portray portray-diff some ten unordered-containers 277623 278663 wrapped ··· 277904 278944 pname = "tensors"; 277905 278945 version = "0.1.5"; 277906 278946 sha256 = "181jiffwp3varv9xzb8if22lwwi1vhhgqf7hai373vn2yavk5wal"; 278947 + revision = "1"; 278948 + editedCabalFile = "1mq51vajlj15356f3hjqxwq0q4lk9dpv0xpsk26wfzf7y55l4d3p"; 277907 278949 libraryHaskellDepends = [ base deepseq vector ]; 277908 278950 testHaskellDepends = [ 277909 278951 base deepseq hspec QuickCheck reflection vector ··· 278857 279899 }: 278858 279900 mkDerivation { 278859 279901 pname = "testing-feat"; 278860 - version = "1.1.1.0"; 278861 - sha256 = "092m24z25anl70s1zq72z4rw7jwach9wdcgrs1qf749cdw9d89z5"; 278862 - revision = "1"; 278863 - editedCabalFile = "06cw21m4c22bix2xz726mkg6ic1kmrd8bhfbh4j8rv4f5g5k5skf"; 279902 + version = "1.1.1.1"; 279903 + sha256 = "14d6licgrkiw36xj1cshnqxcbx5iwzxwq731xlb1wb5n2sw8ijf2"; 278864 279904 libraryHaskellDepends = [ 278865 279905 base QuickCheck size-based testing-type-modifiers 278866 279906 ]; ··· 279161 280201 pname = "text-ansi"; 279162 280202 version = "0.1.1"; 279163 280203 sha256 = "1vcrsg7v8n6znh1pd9kbm20bc6dg3zijd3xjdjljadf15vfkd5f6"; 279164 - revision = "3"; 279165 - editedCabalFile = "0xv9j3fyygaixmv14i3yds63nmvfqwfnz7883by61lvhq5dl3iyv"; 280204 + revision = "4"; 280205 + editedCabalFile = "0x7d9fgh2mvr0phb20s76k5wl6pl59r667jhkaqfbf88xz44j04k"; 279166 280206 libraryHaskellDepends = [ base text ]; 279167 280207 description = "Text styling for ANSI terminals"; 279168 280208 license = lib.licenses.bsd3; ··· 279686 280726 pname = "text-metrics"; 279687 280727 version = "0.3.2"; 279688 280728 sha256 = "0vl3vnm7xhy2zwcx1m293gp64q5sxfa3vmzdaqnqmjgby6l31mxx"; 280729 + revision = "1"; 280730 + editedCabalFile = "1wq3dg7i1ydhvib2pzwj7w2cskvl8l7m8j0ln6s8bibn2ryzcm3p"; 279689 280731 libraryHaskellDepends = [ base containers text vector ]; 279690 280732 testHaskellDepends = [ base hspec QuickCheck text ]; 279691 280733 benchmarkHaskellDepends = [ base criterion deepseq text weigh ]; ··· 279920 280962 pname = "text-short"; 279921 280963 version = "0.1.5"; 279922 280964 sha256 = "1nid00c1rg5c1z7l9mwk3f2izc2sps2mip2hl30q985dwb6wcpm3"; 280965 + revision = "1"; 280966 + editedCabalFile = "0gmmwwchy9312kz8kr5jhiamqrnjqxdqg1wkrww4289yfj1p7dzb"; 279923 280967 libraryHaskellDepends = [ 279924 280968 base binary bytestring deepseq ghc-prim hashable template-haskell 279925 280969 text ··· 280805 281849 pname = "th-lift-instances"; 280806 281850 version = "0.1.19"; 280807 281851 sha256 = "0rk0q609q8pha4wqxxhrr221nc9lc9wanif3qm1g8lav51500pd8"; 281852 + revision = "1"; 281853 + editedCabalFile = "18kdwjsrb4hjs1127w0106q0rqs14iliykx51692h5jn50q5j7mj"; 280808 281854 libraryHaskellDepends = [ 280809 281855 base bytestring containers template-haskell text th-lift 280810 281856 transformers vector ··· 281201 282247 pname = "these"; 281202 282248 version = "1.1.1.1"; 281203 282249 sha256 = "027m1gd7i6jf2ppfkld9qrv3xnxg276587pmx10z9phpdvswk66p"; 281204 - revision = "5"; 281205 - editedCabalFile = "0jk8cyxlvwfxg3j3cxixs36rnlswgwcwq86agx2kvmzyp1kffsgh"; 282250 + pname = "html2hamlet"; 282251 + editedCabalFile = "12ll5l8m482qkb8zn79vx51bqlwc89fgixf8jv33a32b4qzc3499"; 281206 282252 libraryHaskellDepends = [ assoc base binary deepseq hashable ]; 281207 282253 description = "An either-or-both data type"; 281208 282254 license = lib.licenses.bsd3; ··· 281214 282260 pname = "these-lens"; 281215 282261 version = "1.0.1.2"; 281216 282262 sha256 = "1v3kj7j4bkywbmdbblwqs5gsj5s23d59sb3s27jf3bwdzf9d21p6"; 281217 - revision = "1"; 281218 - editedCabalFile = "0rpcbl8j61qmdhsyq8nf7as29w156iq09q5clz51vmxbl1j2ggqp"; 282263 + revision = "2"; 282264 + editedCabalFile = "1mncy6mcwqxy4fwibrsfc3jcx183wfjfvfvbj030y86pfihvbwg3"; 281219 282265 libraryHaskellDepends = [ base lens these ]; 281220 282266 description = "Lenses for These"; 281221 282267 license = lib.licenses.bsd3; ··· 281227 282273 pname = "these-optics"; 281228 282274 version = "1.0.1.2"; 281229 282275 sha256 = "06jxv320a8f94zjjsqrh072vz2dkzhwgcmpbdy1prgvypiynm4zd"; 282276 + revision = "1"; 282277 + editedCabalFile = "02xvfk8n40k6r595g8khcnxy1z2jhi2lfmfpi7m0ayrq7il0rls5"; 281230 282278 libraryHaskellDepends = [ base optics-core these ]; 281231 282279 description = "Optics for These"; 281232 282280 license = lib.licenses.bsd3; ··· 281610 282658 pname = "threepenny-gui"; 281611 282659 version = "0.9.1.0"; 281612 282660 sha256 = "00sjkfa9qfnnwqfdw68yb8hq6nm1y5qv9896rzn5aachr7mlfpx2"; 281613 - revision = "5"; 281614 - editedCabalFile = "0034dl1mzzdi22c589qn5hb1k77vb97d54v3cgim4av42n8r76d1"; 282661 + revision = "7"; 282662 + editedCabalFile = "0lf7w1kxnd0wwqwrq2svbki1cbzwl9ggvfl1bvxvhg1qrw0avqbd"; 281615 282663 isLibrary = true; 281616 282664 isExecutable = true; 281617 282665 enableSeparateDataOutput = true; ··· 282040 283088 mainProgram = "tidal"; 282041 283089 }) {}; 282042 283090 282043 - "tidal_1_8_0" = callPackage 282044 - ({ mkDerivation, async, base, bifunctors, bytestring, clock, colour 282045 - , containers, criterion, deepseq, exceptions, hint, hosc, microspec 282046 - , mtl, network, parsec, primitive, random, text, transformers 282047 - , weigh 283091 + "tidal_1_8_1" = callPackage 283092 + ({ mkDerivation, base, bifunctors, bytestring, clock, colour 283093 + , containers, criterion, deepseq, exceptions, hosc, microspec, mtl 283094 + , network, parsec, primitive, random, text, transformers, weigh 282048 283095 }: 282049 283096 mkDerivation { 282050 283097 pname = "tidal"; 282051 - version = "1.8.0"; 282052 - sha256 = "19gh5l8hna9s4k5qw98qcr1s9wpqi6mf2kxd4kz6lzl3yxj56y6z"; 282053 - isLibrary = true; 282054 - isExecutable = true; 283098 + version = "1.8.1"; 283099 + sha256 = "00000haj9y3ss95dhphq2pq0xs2qagg76ra4lir5kg3pv71i2dh9"; 282055 283100 enableSeparateDataOutput = true; 282056 283101 libraryHaskellDepends = [ 282057 283102 base bifunctors bytestring clock colour containers deepseq 282058 283103 exceptions hosc mtl network parsec primitive random text 282059 283104 transformers 282060 283105 ]; 282061 - executableHaskellDepends = [ async base exceptions hint ]; 282062 283106 testHaskellDepends = [ 282063 283107 base containers deepseq hosc microspec parsec 282064 283108 ]; ··· 282066 283110 description = "Pattern language for improvised music"; 282067 283111 license = lib.licenses.gpl3Only; 282068 283112 hydraPlatforms = lib.platforms.none; 282069 - mainProgram = "tidal"; 282070 283113 }) {}; 282071 283114 282072 283115 "tidal-link" = callPackage ··· 282340 283383 pname = "time-compat"; 282341 283384 version = "1.9.6.1"; 282342 283385 sha256 = "103b3vpn277kkccv6jv54b2wpi5c00mpb01ndl9w4y4nxc0bn1xd"; 282343 - revision = "3"; 282344 - editedCabalFile = "1lafp8yk2n8g873ivi36gnwd8syhw5lssm3xj4c1fplnivhg5n22"; 283386 + revision = "4"; 283387 + editedCabalFile = "1n39yfk21xz8y1xvkh01651yysk2zp5qac22l5pq2hi7scczmxaw"; 282345 283388 libraryHaskellDepends = [ 282346 283389 base base-orphans deepseq hashable time 282347 283390 ]; ··· 283992 285035 }: 283993 285036 mkDerivation { 283994 285037 pname = "tmp-proc"; 283995 - version = "0.5.0.1"; 283996 - sha256 = "11mh34jirabrdx9jbai42r0pgbx2q2v6028zigjznvhrsc7lkk4l"; 285038 + version = "0.5.1.2"; 285039 + sha256 = "0fisalws4qz4y3dagmra4mxns6b5ljf3szf907kdf34v4lysf8j0"; 283997 285040 isLibrary = true; 283998 285041 isExecutable = true; 283999 285042 enableSeparateDataOutput = true; ··· 284009 285052 license = lib.licenses.bsd3; 284010 285053 }) {}; 284011 285054 284012 - "tmp-proc_0_5_1_1" = callPackage 284013 - ({ mkDerivation, async, base, bytestring, connection, data-default 284014 - , hspec, http-client, http-client-tls, http-types, mtl, network 284015 - , process, req, text, unliftio, wai, warp, warp-tls 284016 - }: 284017 - mkDerivation { 284018 - pname = "tmp-proc"; 284019 - version = "0.5.1.1"; 284020 - sha256 = "1z1pk3c5d021hy2jpcfg246ydvk62k6x5103qjis4rl82s6yy89y"; 284021 - isLibrary = true; 284022 - isExecutable = true; 284023 - enableSeparateDataOutput = true; 284024 - libraryHaskellDepends = [ 284025 - async base bytestring mtl network process text unliftio wai warp 284026 - warp-tls 284027 - ]; 284028 - testHaskellDepends = [ 284029 - base bytestring connection data-default hspec http-client 284030 - http-client-tls http-types req text wai warp warp-tls 284031 - ]; 284032 - description = "Run 'tmp' processes in integration tests"; 284033 - license = lib.licenses.bsd3; 284034 - hydraPlatforms = lib.platforms.none; 284035 - }) {}; 284036 - 284037 285055 "tmp-proc-example" = callPackage 284038 285056 ({ mkDerivation, aeson, base, bytestring, exceptions, hedis, hspec 284039 285057 , hspec-tmp-proc, http-client, http-client-tls, monad-logger, mtl ··· 284044 285062 }: 284045 285063 mkDerivation { 284046 285064 pname = "tmp-proc-example"; 284047 - version = "0.5.1.1"; 284048 - sha256 = "1ilvyj511yh2hk3blaqbk7djchidfbrpgqckh7563k1kx7i6vkn0"; 285065 + version = "0.5.1.2"; 285066 + sha256 = "1dfvb85n3ivikfm91i33g4l96rdndrhqxad18h3nfk9g05x9af1d"; 284049 285067 libraryHaskellDepends = [ 284050 285068 aeson base bytestring exceptions hedis hspec hspec-tmp-proc 284051 285069 http-client http-client-tls monad-logger mtl persistent ··· 284066 285084 }: 284067 285085 mkDerivation { 284068 285086 pname = "tmp-proc-postgres"; 284069 - version = "0.5.1.1"; 284070 - sha256 = "0nwcxzny8xkbq5lpd6mf0dhr45s26ysyg7saa2zdbvf8d7a79hlh"; 285087 + version = "0.5.2.1"; 285088 + sha256 = "0vd8ag23brrbcgfsjpi5cg0fm5crlww8mmg2cpiyqhih370qivxr"; 284071 285089 libraryHaskellDepends = [ 284072 285090 base bytestring postgresql-simple text tmp-proc 284073 285091 ]; ··· 284087 285105 }: 284088 285106 mkDerivation { 284089 285107 pname = "tmp-proc-rabbitmq"; 284090 - version = "0.5.1.1"; 284091 - sha256 = "0fp412v2n2sgysr17ih591xn8cip6v86kdvgqbpsw4bcasbw154d"; 285108 + version = "0.5.1.2"; 285109 + sha256 = "1kysd1li7qaczdiqxbcmhxjq97h6xkjcyz0qhkwfy424x1dd6m3d"; 284092 285110 libraryHaskellDepends = [ amqp base bytestring text tmp-proc ]; 284093 285111 testHaskellDepends = [ 284094 285112 amqp base bytestring hspec hspec-tmp-proc text tmp-proc ··· 284105 285123 }: 284106 285124 mkDerivation { 284107 285125 pname = "tmp-proc-redis"; 284108 - version = "0.5.1.1"; 284109 - sha256 = "0wx734zdxbr3674254d440dvf78nd2ckscy0n6gkkal9xggs92cz"; 285126 + version = "0.5.1.2"; 285127 + sha256 = "1602z1sx9gl0ca3wfq48k1rnxl93fb99zp6m49mbyd8l2gfijf5c"; 284110 285128 libraryHaskellDepends = [ base bytestring hedis text tmp-proc ]; 284111 285129 testHaskellDepends = [ 284112 285130 base bytestring hedis hspec hspec-tmp-proc text tmp-proc ··· 284123 285141 }: 284124 285142 mkDerivation { 284125 285143 pname = "tmp-proc-zipkin"; 284126 - version = "0.5.1.1"; 284127 - sha256 = "1gy09qpvlzqdpcbnz2dq3dira6s9d3ndshch2fw7raxyk9dzrnmf"; 285144 + version = "0.5.1.2"; 285145 + sha256 = "1sjdrd53vh8mfc7gk04lzzqjcgaif4pb20vsd52cfh5210iagb92"; 284128 285146 libraryHaskellDepends = [ 284129 285147 base bytestring http-client text tmp-proc tracing 284130 285148 ]; ··· 284576 285594 pname = "tomato-rubato-openal"; 284577 285595 version = "0.1.0.4"; 284578 285596 sha256 = "0xffc0xjkg1jqdq7s5x0y4gi13s9yhpcwb5zvrcbmv194bp65xx1"; 285597 + revision = "1"; 285598 + editedCabalFile = "06ad3qq1ix448ikyx1jxav9da8mszay0vdhsq4vf855jrwx7finy"; 284579 285599 libraryHaskellDepends = [ base OpenAL stm vector ]; 284580 285600 description = "Easy to use library for audio programming"; 284581 285601 license = lib.licenses.bsd3; ··· 287874 288894 ({ mkDerivation, base, ghc-prim, hspec, template-haskell }: 287875 288895 mkDerivation { 287876 288896 pname = "tuple-append"; 287877 - version = "0.1.1.0"; 287878 - sha256 = "00qj8rhnga8d18ylw7hjsizijh9qzdm50n4czrx941np5vn1lff2"; 288897 + version = "0.1.2.0"; 288898 + sha256 = "0fiq5v8y5plzw1rmsv7hh951fnz45r714p38nrql940pp7qyh9rj"; 287879 288899 libraryHaskellDepends = [ base ghc-prim template-haskell ]; 287880 288900 testHaskellDepends = [ base ghc-prim hspec ]; 287881 288901 description = "A package to append items and tuples into new tuples"; ··· 288279 289299 pname = "twee-lib"; 288280 289300 version = "2.4.1"; 288281 289301 sha256 = "14pvmxq0dp8lwbmkvch4c6v4rblc8a2ybkm7q3hhr1qaj2pyiv0b"; 289302 + revision = "1"; 289303 + editedCabalFile = "1d9z1ggiw23snn35nhbkj0rh2abha2ca1csr49x5a7lxc974mzc7"; 288282 289304 libraryHaskellDepends = [ 288283 289305 base containers dlist ghc-prim pretty primitive random transformers 288284 289306 uglymemo vector ··· 289110 290132 pname = "type-equality"; 289111 290133 version = "1"; 289112 290134 sha256 = "1s4cl11rvvv7n95i3pq9lmmx08kwh4z7l3d1hbv4wi8il81baa27"; 289113 - revision = "3"; 289114 - editedCabalFile = "1jxr46yiah7i3jmdqclf8bvk3apmm6g8hpij7dv6ca6h7alk8fmv"; 290135 + revision = "4"; 290136 + editedCabalFile = "0sajw67mmk5syhbrwx4bz82j5cjhm04n4kjl0pp3dnphxg1m5nbw"; 289115 290137 libraryHaskellDepends = [ base ]; 289116 290138 description = "Data.Type.Equality compat package"; 289117 290139 license = lib.licenses.bsd3; ··· 289535 290557 pname = "type-safe-avl"; 289536 290558 version = "1.0.0.1"; 289537 290559 sha256 = "0s7qkm6hk5qf0a54jmk3dv1cfzivc4c0jbx7gn20w5pfmv08zj1c"; 290560 + revision = "1"; 290561 + editedCabalFile = "0xcamv7cy7saywzx2vj7d0l1hpjqkz8jzkdy8hdabz7q9zlynshg"; 289538 290562 libraryHaskellDepends = [ base ]; 289539 290563 description = "Type safe BST and AVL trees"; 289540 290564 license = lib.licenses.gpl3Only; ··· 290426 291450 pname = "tz"; 290427 291451 version = "0.1.3.6"; 290428 291452 sha256 = "1vqnfk656i6j3j1bf9lc36adziv52x1b2ccq6afp8cka1nay2mcd"; 291453 + revision = "1"; 291454 + editedCabalFile = "0mwal38qsf32fppza1ivx0vdvpma9z5gn4ni08mc080ns0s7kvgy"; 290429 291455 libraryHaskellDepends = [ 290430 291456 base binary bytestring containers data-default deepseq 290431 291457 template-haskell time tzdata vector ··· 290449 291475 }: 290450 291476 mkDerivation { 290451 291477 pname = "tzdata"; 290452 - version = "0.2.20220315.0"; 290453 - sha256 = "1x5lkbd0n0h0nyxr3a3ib1lxp1d862g805wkn2p92ry4pmj1yacb"; 291478 + version = "0.2.20220810.0"; 291479 + sha256 = "0jayyhljnwz7ax4qc7ywlkpsqfm4qkfkbkyl9yc89s6pqnhdg4jd"; 291480 + enableSeparateDataOutput = true; 291481 + libraryHaskellDepends = [ 291482 + base bytestring containers deepseq vector 291483 + ]; 291484 + testHaskellDepends = [ 291485 + base bytestring HUnit tasty tasty-hunit tasty-th unix 291486 + ]; 291487 + description = "Time zone database (as files and as a module)"; 291488 + license = lib.licenses.asl20; 291489 + }) {}; 291490 + 291491 + "tzdata_0_2_20220815_0" = callPackage 291492 + ({ mkDerivation, base, bytestring, containers, deepseq, HUnit 291493 + , tasty, tasty-hunit, tasty-th, unix, vector 291494 + }: 291495 + mkDerivation { 291496 + pname = "tzdata"; 291497 + version = "0.2.20220815.0"; 291498 + sha256 = "0ya7hmq93mmfbiwwsf628b27mahkv525fyjh8r1mg9zwf6pkrhrd"; 290454 291499 enableSeparateDataOutput = true; 290455 291500 libraryHaskellDepends = [ 290456 291501 base bytestring containers deepseq vector ··· 290460 291505 ]; 290461 291506 description = "Time zone database (as files and as a module)"; 290462 291507 license = lib.licenses.asl20; 291508 + hydraPlatforms = lib.platforms.none; 290463 291509 }) {}; 290464 291510 290465 291511 "u2f" = callPackage ··· 290937 291983 }: 290938 291984 mkDerivation { 290939 291985 pname = "ukrainian-phonetics-basic-array"; 290940 - version = "0.5.3.0"; 290941 - sha256 = "181cm83hl2ga3gg0fa8kflrn2fnxmmdxx7flijr3c7pj8xd04l18"; 291986 + version = "0.6.0.0"; 291987 + sha256 = "1n6blzjbqkvhnwlzjkn0xs8vnlv7n419ska09zd1r59jv15623ac"; 290942 291988 libraryHaskellDepends = [ 290943 291989 base mmsyn2-array mmsyn5 ukrainian-phonetics-common 290944 291990 ]; ··· 290952 291998 }: 290953 291999 mkDerivation { 290954 292000 pname = "ukrainian-phonetics-basic-array-bytestring"; 290955 - version = "0.1.0.0"; 290956 - sha256 = "1xg3hfxmjvnj3x7ippjwypggi9c052fcalnvrljr6s8fyrmya7sx"; 292001 + version = "0.1.1.0"; 292002 + sha256 = "11pdyvxl34ckprp19r1akpzbsl3jknz4cn4jmlfm6d9vzr9lwbzl"; 290957 292003 libraryHaskellDepends = [ 290958 292004 base bytestring mmsyn2-array mmsyn5 ukrainian-phonetics-common 290959 292005 ]; ··· 292589 293635 pname = "universe-base"; 292590 293636 version = "1.1.3"; 292591 293637 sha256 = "0lnvjpndqj7kk3f95dmpa62ax0m243h8iy7ghcsd2db4nyczx7f5"; 292592 - revision = "2"; 292593 - editedCabalFile = "1fr7w3qc46aph0xxya8jw1a4gqzvq03f6vpx75pam9ynfndz8gw0"; 293638 + revision = "3"; 293639 + editedCabalFile = "0hnd5vxsncwyjsindfmsvp9jbixanhmzczhrmd8s8g6imgb0mzyk"; 292594 293640 libraryHaskellDepends = [ 292595 293641 base containers ghc-prim tagged transformers 292596 293642 ]; ··· 292605 293651 pname = "universe-dependent-sum"; 292606 293652 version = "1.3"; 292607 293653 sha256 = "0fwqx4fzs9s09fwrf715simqb0vxnx3z7q35zbv9mkj1m6nbrsk5"; 292608 - revision = "1"; 292609 - editedCabalFile = "1d300h7587cry0xdhrlg9sz34z2il94r5xxqxxp17r62xc98alwl"; 293654 + revision = "2"; 293655 + editedCabalFile = "05spqm8sc40gpd0d68xal85h8ihhf0ys02clvjmn9ayb7rajssj3"; 292610 293656 libraryHaskellDepends = [ base universe-some ]; 292611 293657 description = "Universe instances for types from dependent-sum"; 292612 293658 license = lib.licenses.bsd3; ··· 292636 293682 pname = "universe-instances-extended"; 292637 293683 version = "1.1.3"; 292638 293684 sha256 = "02fxra5g76dk2jpbvmj0mj5bylj4400fcp3np3s5d31qgsjh2sn6"; 293685 + revision = "1"; 293686 + editedCabalFile = "0jkrfx0r5j5azaknlbkn7xskyyfjisifddvlpwirfzzmm068yk9g"; 292639 293687 libraryHaskellDepends = [ 292640 293688 adjunctions base comonad containers universe-base 292641 293689 ]; ··· 292664 293712 pname = "universe-reverse-instances"; 292665 293713 version = "1.1.1"; 292666 293714 sha256 = "0wzvrnccj9hq1x55vy7a8xzppgf0zmbnlm3yz02qx3dglq97w4n4"; 292667 - revision = "1"; 292668 - editedCabalFile = "16g0iffwy1xb5qnrbqvg0ypjx4q2124g2a80i36ynkzknhggkqnx"; 293715 + revision = "2"; 293716 + editedCabalFile = "1mp9222337rdcc6x5kg6hm14npbmq2igg0h6gmyvn1jd4x5cg9dx"; 292669 293717 libraryHaskellDepends = [ base containers universe-base ]; 292670 293718 description = "Instances of standard classes that are made possible by enumerations"; 292671 293719 license = lib.licenses.bsd3; ··· 292679 293727 pname = "universe-some"; 292680 293728 version = "1.2.1"; 292681 293729 sha256 = "0pdvk5qi39d0wg8ac936c1fxs7v7qld2ggpqc9v7xc4pk3xq24bp"; 292682 - revision = "2"; 292683 - editedCabalFile = "0haz8fprwxx22jg4394p7a6zll8jim2hcb1rjy366vslwlczr03z"; 293730 + revision = "3"; 293731 + editedCabalFile = "1caqfajnhja7cz3bbz9pg2m9l3yc128hvsp7d3rpjw86g3wx2x0j"; 292684 293732 libraryHaskellDepends = [ 292685 293733 base some template-haskell th-abstraction transformers 292686 293734 universe-base ··· 293231 294279 pname = "unordered-containers"; 293232 294280 version = "0.2.19.1"; 293233 294281 sha256 = "1li8s6qw8mgv6a7011y7hg0cn2nllv2g9sr9c1xb48nmw32vw9qv"; 294282 + revision = "1"; 294283 + editedCabalFile = "0fcax3apnpxxy9maymclr6s2b4c28d3pkl3plbg0lv1mn0mh84fv"; 293234 294284 libraryHaskellDepends = [ base deepseq hashable template-haskell ]; 293235 294285 testHaskellDepends = [ 293236 294286 base ChasingBottoms containers hashable HUnit nothunks QuickCheck ··· 295110 296160 pname = "uuid-types"; 295111 296161 version = "1.0.5"; 295112 296162 sha256 = "1pd7xd6inkmmwjscf7pmiwqjks9y0gi1p8ahqbapvh34gadvhs5d"; 295113 - revision = "2"; 295114 - editedCabalFile = "0x3limqb67l4i0lfdaqgqbjak7mi7ydk5dhkv80791r3hyhbhiw4"; 296163 + revision = "3"; 296164 + editedCabalFile = "10hpjshw6z8xnjpga47cazfdd4i27qvy4ash13lza2lmwf36k9ww"; 295115 296165 libraryHaskellDepends = [ 295116 296166 base binary bytestring deepseq hashable random template-haskell 295117 296167 text ··· 296009 297059 pname = "vault"; 296010 297060 version = "0.3.1.5"; 296011 297061 sha256 = "181ksk1yixjg0jiggw5jvm8am8m8c7lim4xaixf8qnaqvxm6namc"; 296012 - revision = "1"; 296013 - editedCabalFile = "07b4ajdj0fi1qbf641qnql7vfd1aj6i554jxpy55xnr2laspsr6i"; 297062 + revision = "2"; 297063 + editedCabalFile = "1bjwv3nv8jfhrdxa5kn3gvgxmyalpq7592bvyl7bpvcc7bbkfkf3"; 296014 297064 libraryHaskellDepends = [ 296015 297065 base containers hashable unordered-containers 296016 297066 ]; ··· 296419 297469 pname = "vector"; 296420 297470 version = "0.13.0.0"; 296421 297471 sha256 = "0ksvs6ldb8bzbjy4gk39wds2lrwill2g7pbr13h54bz12myidly5"; 297472 + revision = "1"; 297473 + editedCabalFile = "12cwdaqsy9dv7j7cwq6r6kdyfxqiya8khm6ccaabjhhpa2aqwljl"; 296422 297474 libraryHaskellDepends = [ base deepseq primitive vector-stream ]; 296423 297475 testHaskellDepends = [ 296424 297476 base base-orphans HUnit primitive QuickCheck random tasty ··· 296965 298017 pname = "vector-stream"; 296966 298018 version = "0.1.0.0"; 296967 298019 sha256 = "0v40vdpp35lhnnnx7q17fah0c14jrkjlnwsk0q4mbwb7ch7j3258"; 298020 + revision = "1"; 298021 + editedCabalFile = "18sm3vd1qim9r3m40wgvnmcrfz1zl051yy84dffnp4si9vfgic09"; 296968 298022 libraryHaskellDepends = [ base ghc-prim ]; 296969 298023 description = "Efficient Streams"; 296970 298024 license = lib.licenses.bsd3; ··· 296992 298046 pname = "vector-th-unbox"; 296993 298047 version = "0.2.2"; 296994 298048 sha256 = "0j81m09xxv24zziv0nanfppckzmas5184jr3npjhc9w49r3cm94a"; 296995 - revision = "2"; 296996 - editedCabalFile = "088588xdqdm9y7r04l74fkckhrvmfhgsx6iv0wq36yff05dij630"; 298049 + revision = "3"; 298050 + editedCabalFile = "0ki133sixq8pkfys36nl25jzdvnw40qq2bnskdmk2zyjhckdjcna"; 296997 298051 libraryHaskellDepends = [ base template-haskell vector ]; 296998 298052 testHaskellDepends = [ base data-default vector ]; 296999 298053 description = "Deriver for Data.Vector.Unboxed using Template Haskell"; ··· 299800 300854 }: 299801 300855 mkDerivation { 299802 300856 pname = "wai-middleware-delegate"; 299803 - version = "0.1.2.4"; 299804 - sha256 = "17r2qay83xnsg6f61bxpy7kvjw73827hdl8srxiwqirw6zzc1pha"; 299805 - enableSeparateDataOutput = true; 299806 - libraryHaskellDepends = [ 299807 - async base blaze-builder bytestring case-insensitive conduit 299808 - conduit-extra data-default http-client http-conduit http-types 299809 - streaming-commons text wai wai-conduit 299810 - ]; 299811 - testHaskellDepends = [ 299812 - async base blaze-builder bytestring bytestring-lexing 299813 - case-insensitive conduit conduit-extra connection data-default 299814 - hspec http-client http-client-tls http-conduit http-types network 299815 - random resourcet text vault wai wai-conduit warp warp-tls 299816 - ]; 299817 - description = "WAI middleware that delegates handling of requests"; 299818 - license = lib.licenses.bsd3; 299819 - hydraPlatforms = lib.platforms.none; 299820 - broken = true; 299821 - }) {}; 299822 - 299823 - "wai-middleware-delegate_0_1_3_1" = callPackage 299824 - ({ mkDerivation, async, base, blaze-builder, bytestring 299825 - , bytestring-lexing, case-insensitive, conduit, conduit-extra 299826 - , connection, data-default, hspec, http-client, http-client-tls 299827 - , http-conduit, http-types, network, random, resourcet 299828 - , streaming-commons, text, vault, wai, wai-conduit, warp, warp-tls 299829 - }: 299830 - mkDerivation { 299831 - pname = "wai-middleware-delegate"; 299832 300857 version = "0.1.3.1"; 299833 300858 sha256 = "05lrkcg1xkf0ci9nvzdvnrjmqnygqxs3yrvrjfwbml9p003cp33p"; 299834 300859 enableSeparateDataOutput = true; ··· 301087 302112 pname = "warp-tls"; 301088 302113 version = "3.3.2"; 301089 302114 sha256 = "0b9viw26ymzq4q8snfddz3w59sqcf5ankxnw6f99iacxjhk6zs6m"; 302115 + revision = "1"; 302116 + editedCabalFile = "0r4g0j4kcz9rx776mp8hqd06k8b2k7kxd4qjavh2ay6wcplfl0bl"; 301090 302117 libraryHaskellDepends = [ 301091 302118 base bytestring cryptonite data-default-class network 301092 302119 streaming-commons tls tls-session-manager unliftio wai warp 301093 302120 ]; 301094 302121 description = "HTTP over TLS support for Warp via the TLS package"; 301095 302122 license = lib.licenses.mit; 302123 + }) {}; 302124 + 302125 + "warp-tls_3_3_3" = callPackage 302126 + ({ mkDerivation, base, bytestring, cryptonite, data-default-class 302127 + , network, streaming-commons, tls, tls-session-manager, unliftio 302128 + , wai, warp 302129 + }: 302130 + mkDerivation { 302131 + pname = "warp-tls"; 302132 + version = "3.3.3"; 302133 + sha256 = "18397xyl1awb040m9qkjz44ifzgd00hib70v1lrkp1ivj1xbwi2w"; 302134 + libraryHaskellDepends = [ 302135 + base bytestring cryptonite data-default-class network 302136 + streaming-commons tls tls-session-manager unliftio wai warp 302137 + ]; 302138 + description = "HTTP over TLS support for Warp via the TLS package"; 302139 + license = lib.licenses.mit; 302140 + hydraPlatforms = lib.platforms.none; 301096 302141 }) {}; 301097 302142 301098 302143 "warp-tls-uid" = callPackage ··· 301459 302504 testHaskellDepends = [ base bytestring HUnit network-uri text ]; 301460 302505 description = "Composable, reversible, efficient web routing using invertible invariants and bijections"; 301461 302506 license = lib.licenses.bsd3; 302507 + hydraPlatforms = lib.platforms.none; 301462 302508 }) {}; 301463 302509 301464 302510 "web-mongrel2" = callPackage ··· 302003 303049 }: 302004 303050 mkDerivation { 302005 303051 pname = "webauthn"; 302006 - version = "0.4.1.1"; 302007 - sha256 = "1zmw16fyx0p7wzl388f6s63r09f189c5a5py5c7phlc7wzlq02hb"; 303052 + version = "0.4.1.2"; 303053 + sha256 = "1xdqq80jcxzd0qvmsgrcpjkw4lpcsws2pin2v3v1gpf0qv0syi36"; 302008 303054 libraryHaskellDepends = [ 302009 303055 aeson asn1-encoding asn1-parse asn1-types base base16-bytestring 302010 303056 base64-bytestring binary bytestring cborg containers cryptonite ··· 304824 305870 pname = "wrapped"; 304825 305871 version = "0.1.0.1"; 304826 305872 sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; 304827 - revision = "2"; 304828 - editedCabalFile = "1balrpfkhlwp7v4r74zdm3x7ckz605bj7z7l5gkyj96lk1l2b5kq"; 305873 + revision = "3"; 305874 + editedCabalFile = "1z7p0kx98yn3jwpghhs1360r4pvrg1vvj66p8w6npvbb5nv6z99j"; 304829 305875 libraryHaskellDepends = [ base ]; 304830 305876 description = "Newtypes to carry DerivingVia instances"; 304831 305877 license = lib.licenses.asl20; ··· 304837 305883 pname = "wrapped-generic-default"; 304838 305884 version = "0.1.0.1"; 304839 305885 sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; 304840 - revision = "2"; 304841 - editedCabalFile = "1pyggg9n3i08w4fzbm463012fjm1wdi0bh5nik667y5dhzvqi2li"; 305886 + revision = "3"; 305887 + editedCabalFile = "0hax0aq1sbjhmr62y9wf04k9c0zd3vj1drk3dkmlvbxmnxhdix87"; 304842 305888 libraryHaskellDepends = [ base data-default-class wrapped ]; 304843 305889 description = "A Generic instance of Default"; 304844 305890 license = lib.licenses.asl20; ··· 306729 307775 }) {}; 306730 307776 306731 307777 "xml-conduit-stylist" = callPackage 306732 - ({ mkDerivation, base, containers, css-syntax, network-uri, stylist 306733 - , text, unordered-containers, xml-conduit 307778 + ({ mkDerivation, base, containers, css-syntax, network-uri 307779 + , stylist-traits, text, xml-conduit 306734 307780 }: 306735 307781 mkDerivation { 306736 307782 pname = "xml-conduit-stylist"; 306737 - version = "2.3.0.0"; 306738 - sha256 = "15iznb6xpas8044p03w3vll4vv7zwpcbbrh59ywwjr8m45659p4w"; 306739 - revision = "2"; 306740 - editedCabalFile = "16hky6q4v5zmxyarj464i5hlq7s4c9b3vb7skxn2yi66vfy03a32"; 307783 + version = "3.0.0.0"; 307784 + sha256 = "1w6sg2xj7l912qlqjy3lljwd5clbsakxqkp8jg8v5537h4nkfa9r"; 306741 307785 libraryHaskellDepends = [ 306742 - base containers css-syntax network-uri stylist text 306743 - unordered-containers xml-conduit 307786 + base containers css-syntax network-uri stylist-traits text 307787 + xml-conduit 306744 307788 ]; 306745 307789 description = "Bridge between xml-conduit/html-conduit and stylist"; 306746 307790 license = lib.licenses.mit; ··· 306940 307984 pname = "xml-lens"; 306941 307985 version = "0.3.1"; 306942 307986 sha256 = "0i6c4xqacinhxnyszzna7s9x79rrcs1c7jq6zimcwh4302l5d6cm"; 307987 + revision = "1"; 307988 + editedCabalFile = "0ga90h55aw3f946xk1x2ailnwinw3v4icw9xirgncgf3lajwxl4f"; 306943 307989 libraryHaskellDepends = [ 306944 307990 base case-insensitive containers lens text xml-conduit 306945 307991 ]; ··· 307515 308561 }: 307516 308562 mkDerivation { 307517 308563 pname = "xmobar"; 307518 - version = "0.44.1"; 307519 - sha256 = "1msgbxmv83g4zn5srnr7b5m9qk962pc24w62k83m7316yv9p0xa2"; 308564 + version = "0.44.2"; 308565 + sha256 = "0gdphjn5ll5lkb2psdsb34563wsz6g0y2gg3z8cj4jy8lvbbv808"; 307520 308566 configureFlags = [ 307521 308567 "-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus" 307522 308568 "-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris" ··· 307864 308910 pname = "xor"; 307865 308911 version = "0.0.1.1"; 307866 308912 sha256 = "05jwfrg4cm27ldj3dbl0y144njhiha9yiypirbhsg6lc1b36s3kh"; 308913 + revision = "1"; 308914 + editedCabalFile = "0ppy515y2y1bviaafx6hg440ain0l6j5pg4g5j7lwjzsknxb0jd5"; 307867 308915 libraryHaskellDepends = [ base bytestring ghc-byteorder ]; 307868 308916 testHaskellDepends = [ 307869 308917 base bytestring ghc-byteorder QuickCheck tasty tasty-hunit ··· 308952 310000 }: 308953 310001 mkDerivation { 308954 310002 pname = "yaml-unscrambler"; 308955 - version = "0.1.0.11"; 308956 - sha256 = "1znca5my1z2pjgnw4x37lmh0lqipbg4xkw7lsijjn4ddhazwpd7x"; 310003 + version = "0.1.0.12"; 310004 + sha256 = "0wca4xqww3y1cvf6jshdk13nblg7byzyw7120yy8b2bgd3d0l42z"; 308957 310005 libraryHaskellDepends = [ 308958 310006 acc attoparsec attoparsec-data attoparsec-time base 308959 310007 base64-bytestring bytestring conduit containers foldl hashable ··· 310106 311154 }: 310107 311155 mkDerivation { 310108 311156 pname = "yesod-auth-oauth2"; 310109 - version = "0.7.0.1"; 310110 - sha256 = "0kajlm8hyq52gda8hff302jlij4a8j56082zr5224lggrnkrcbwm"; 311157 + version = "0.7.0.2"; 311158 + sha256 = "1dnpw1rl8pa7dwfiy203l54x1rrzaiib7ryha9yy2vyaljlymg4v"; 310111 311159 isLibrary = true; 310112 311160 isExecutable = true; 310113 311161 libraryHaskellDepends = [
+7 -1
pkgs/development/haskell-modules/make-package-set.nix
··· 565 565 pkgs.runCommandLocal name 566 566 { 567 567 inherit src; 568 - nativeBuildInputs = [ buildHaskellPackages.cabal-install ]; 568 + nativeBuildInputs = [ 569 + buildHaskellPackages.cabal-install 570 + 571 + # TODO after https://github.com/haskell/cabal/issues/8352 572 + # remove ghc 573 + self.ghc 574 + ]; 569 575 dontUnpack = false; 570 576 } '' 571 577 unpackPhase
+6 -6
pkgs/top-level/haskell-packages.nix
··· 16 16 "native-bignum" 17 17 "ghc902" 18 18 "ghc924" 19 - "ghc941" 19 + "ghc942" 20 20 "ghcHEAD" 21 21 ]; 22 22 23 23 nativeBignumIncludes = [ 24 24 "ghc902" 25 25 "ghc924" 26 - "ghc941" 26 + "ghc942" 27 27 "ghcHEAD" 28 28 ]; 29 29 ··· 155 155 buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12; 156 156 llvmPackages = pkgs.llvmPackages_12; 157 157 }; 158 - ghc941 = callPackage ../development/compilers/ghc/9.4.1.nix { 158 + ghc942 = callPackage ../development/compilers/ghc/9.4.2.nix { 159 159 bootPkgs = 160 160 # Building with 9.2 is broken due to 161 161 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914 ··· 291 291 ghc = bh.compiler.ghc924; 292 292 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { }; 293 293 }; 294 - ghc941 = callPackage ../development/haskell-modules { 295 - buildHaskellPackages = bh.packages.ghc941; 296 - ghc = bh.compiler.ghc941; 294 + ghc942 = callPackage ../development/haskell-modules { 295 + buildHaskellPackages = bh.packages.ghc942; 296 + ghc = bh.compiler.ghc942; 297 297 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { }; 298 298 }; 299 299 ghcHEAD = callPackage ../development/haskell-modules {