nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
b4cd84e4 dc0ace8d

+1762 -796
+7
maintainers/maintainer-list.nix
··· 7199 7199 githubId = 1769386; 7200 7200 name = "Liam Diprose"; 7201 7201 }; 7202 + libjared = { 7203 + email = "jared@perrycode.com"; 7204 + github = "libjared"; 7205 + githubId = 3746656; 7206 + matrix = "@libjared:matrix.org"; 7207 + name = "Jared Perry"; 7208 + }; 7202 7209 liff = { 7203 7210 email = "liff@iki.fi"; 7204 7211 github = "liff";
+2 -11
pkgs/applications/audio/cardinal/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "cardinal"; 26 - version = "22.02"; 26 + version = "22.04"; 27 27 28 28 src = fetchurl { 29 29 url = 30 30 "https://github.com/DISTRHO/Cardinal/releases/download/${version}/cardinal-${version}.tar.xz"; 31 - sha256 = "sha256-IVlAROFGFffTEU00NCmv74w1DRb7dNMp20FeBVoDrdM="; 31 + sha256 = "sha256-7As4CckwByrTynOOpwAXa1R9Bpp/ft537f+PvAgz/BE="; 32 32 }; 33 - 34 - patches = [ 35 - # see https://github.com/DISTRHO/Cardinal/issues/151#issuecomment-1041886260 36 - (fetchpatch { 37 - url = 38 - "https://github.com/DISTRHO/Cardinal/commit/13e9ef37c5dd35d77a54b1cb006767be7a72ac69.patch"; 39 - sha256 = "sha256-NYUYLbLeBX1WEzjPi0s/T1N+EXQKyi0ifbPxgBYDjRs="; 40 - }) 41 - ]; 42 33 43 34 prePatch = '' 44 35 patchShebangs ./dpf/utils/generate-ttl.sh
+2 -2
pkgs/applications/audio/faust/faust2.nix
··· 20 20 21 21 let 22 22 23 - version = "2.37.3"; 23 + version = "2.40.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "grame-cncm"; 27 27 repo = "faust"; 28 28 rev = version; 29 - sha256 = "sha256-Jzauw8+vBjtbK73Bh4huhX1ql1cWmh80EzEET3x03rc="; 29 + sha256 = "sha256-IsrLaoMDwrDPxtqCXIy/7tZCdogTUkJ00obSco9SR/A="; 30 30 fetchSubmodules = true; 31 31 }; 32 32
+9 -12
pkgs/applications/audio/faust/faustlive.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , llvm_10, qt5, qrencode, libmicrohttpd, libjack2, alsa-lib, faust, curl 3 - , bc, coreutils, which, libsndfile, pkg-config, libxcb 3 + , bc, coreutils, which, libsndfile, flac, libogg, libvorbis, libopus, pkg-config, libxcb, cmake, gnutls, libtasn1, p11-kit 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "faustlive"; 8 - version = "2.5.5"; 8 + version = "2.5.8"; 9 9 src = fetchFromGitHub { 10 10 owner = "grame-cncm"; 11 11 repo = "faustlive"; 12 12 rev = version; 13 - sha256 = "0qbn05nq170ckycwalkk5fppklc4g457mapr7p7ryrhc1hwzffm9"; 13 + sha256 = "sha256-dt5YlvaCZ6JiNGPwVXPrKzVGWxnhdyP4lnKgck7ZSF8="; 14 14 fetchSubmodules = true; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkg-config qt5.wrapQtAppsHook ]; 17 + nativeBuildInputs = [ pkg-config qt5.wrapQtAppsHook cmake ]; 18 18 19 19 buildInputs = [ 20 20 llvm_10 qt5.qtbase qrencode libmicrohttpd libjack2 alsa-lib faust curl 21 - bc coreutils which libsndfile libxcb 21 + bc coreutils which libsndfile flac libogg libvorbis libopus libxcb gnutls libtasn1 p11-kit 22 22 ]; 23 23 24 24 makeFlags = [ "PREFIX=$(out)" ]; 25 25 26 - postPatch = "cd Build"; 27 - 28 - installPhase = '' 29 - install -d "$out/bin" 30 - install -d "$out/share/applications" 31 - install FaustLive/FaustLive "$out/bin" 32 - install rsrc/FaustLive.desktop "$out/share/applications" 26 + postInstall = '' 27 + wrapProgram $out/bin/FaustLive --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libmicrohttpd libsndfile faust llvm_10 ]}" 33 28 ''; 29 + 30 + postPatch = "cd Build"; 34 31 35 32 meta = with lib; { 36 33 description = "A standalone just-in-time Faust compiler";
+2 -2
pkgs/applications/networking/mailreaders/mutt/default.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "mutt"; 30 - version = "2.2.3"; 30 + version = "2.2.4"; 31 31 32 32 src = fetchurl { 33 33 url = "http://ftp.mutt.org/pub/mutt/${pname}-${version}.tar.gz"; 34 - sha256 = "12cds5qm0x51wj1bz1a2f4q4qwbyfssq9pnisxz48ks5mg6xv2lp"; 34 + sha256 = "0q70qrsjvmkfns1qxc0il2rlmfjwzbmfg89zlch0iqghpyz7c9xq"; 35 35 }; 36 36 37 37 patches = optional smimeSupport (fetchpatch {
+261 -261
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "91.8.0"; 2 + version = "91.8.1"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/af/thunderbird-91.8.0.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/af/thunderbird-91.8.1.tar.bz2"; 5 5 locale = "af"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "9f6fe7d931b4f9ec06e6d22e69ad6e638a82fcd709cfaabd52ed6283a75a8d31"; 7 + sha256 = "b7a5a88216d094bce6d1f18f506dc4c500c13340e0c6a9da2aeadc32d9ae0062"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ar/thunderbird-91.8.0.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ar/thunderbird-91.8.1.tar.bz2"; 10 10 locale = "ar"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "f8523e3b9b4229a7f977c25ba08dad4edad0fd56c90c8c8bb473db2a1e00265d"; 12 + sha256 = "33f807c2a2182149f2da7a394e455775027753a082b998db766c036d0aa7c976"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ast/thunderbird-91.8.0.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ast/thunderbird-91.8.1.tar.bz2"; 15 15 locale = "ast"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "3a95ba998b4f863fe39fb3e3dfecb827108b92c317ed5594e4a409ccecc8b303"; 17 + sha256 = "08a38759b492ac47e567774b5a4fe5ee75f5a4c513ee046b7ace9636cd61a00a"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/be/thunderbird-91.8.0.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/be/thunderbird-91.8.1.tar.bz2"; 20 20 locale = "be"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "fd41c8189eb64d70038b0a3551b46386c3d6e4afc1474bc7e50d0b88208a5547"; 22 + sha256 = "09644be773dea25b602b30c0e783a2be3de406d63a1aa528e80830357cec8756"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/bg/thunderbird-91.8.0.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/bg/thunderbird-91.8.1.tar.bz2"; 25 25 locale = "bg"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "c7957994f4e3bb70b4f118ff6b939f52f46bc0d471a6098e18abbe23dbb58675"; 27 + sha256 = "546bc2422a40ed4c04b1d8fa2c203a60fbb8c2a060b7c63ae4464109d08c440e"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/br/thunderbird-91.8.0.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/br/thunderbird-91.8.1.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "6987eb50cb3460d42794f9192c57262479ed7082662395893bb3a5b9e094c0f3"; 32 + sha256 = "1977584751a826bb52e8bd154880f34b009df777481915f0cb84e018f7a3a1fe"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ca/thunderbird-91.8.0.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ca/thunderbird-91.8.1.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "b09400e218281f8b09d688f5dbab2c732761da8e47141726941dcaedc3780097"; 37 + sha256 = "e2c6e403fbcdb58eaf747f36796d4a0af1d8f112715c068ca98f85198189e884"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/cak/thunderbird-91.8.0.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/cak/thunderbird-91.8.1.tar.bz2"; 40 40 locale = "cak"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "02efc2043ddc4485a239b19d5b3593bb68f5780ccd11f6d4eb968594192a1bf5"; 42 + sha256 = "f5992ea2ab6acf94993f6bc590e95e36c5ab87b650e0f38ee5e808a2bf9189da"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/cs/thunderbird-91.8.0.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/cs/thunderbird-91.8.1.tar.bz2"; 45 45 locale = "cs"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "13af2518a999650cebff031813b812141b014b3fcd9a7bd3953b64229e870dac"; 47 + sha256 = "4770e0c95ba84953aab5585f4059c1e20e69b9ee98578ebda34ded2a1b170a25"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/cy/thunderbird-91.8.0.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/cy/thunderbird-91.8.1.tar.bz2"; 50 50 locale = "cy"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "ec9def864905036110381f901de0d9c7609116cd1d9bee9414627a133d5fb19e"; 52 + sha256 = "a9729784e7a05d763e6dd715da80ca7f65e42f27b25e58ed2139f26f12061855"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/da/thunderbird-91.8.0.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/da/thunderbird-91.8.1.tar.bz2"; 55 55 locale = "da"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "d6cc0667d1be9fc73491bc57a0b44715433eae3743ea8aba59229e19fd24a642"; 57 + sha256 = "a917c157c7507d2ee457a5c8dcff3b1b23225b5ea946be547e801e93c10d4a5d"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/de/thunderbird-91.8.0.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/de/thunderbird-91.8.1.tar.bz2"; 60 60 locale = "de"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "112bf23c33cacbf54319ac4534cff5be85d49704e69498f039cc45fd3abd0c8b"; 62 + sha256 = "73141650aba88315828e5419d9a9a05861dcd504b9256c8a184396e3824211f2"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/dsb/thunderbird-91.8.0.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/dsb/thunderbird-91.8.1.tar.bz2"; 65 65 locale = "dsb"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "7e190cf921b1b76cb3702e3ce534e1575b7dcc63ccc94d3d8bf384bd42000a60"; 67 + sha256 = "7b7adb5c1e01efa9a0129a22308eb878f45d1ed0190b7430aae92b55f061fb35"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/el/thunderbird-91.8.0.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/el/thunderbird-91.8.1.tar.bz2"; 70 70 locale = "el"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "74917356bab02953ba56acf5736b3d2c9a1847f49fb4a75a273655e7678b80f0"; 72 + sha256 = "ffa921418d6d334e48aa51f4fff1b4855f3cf7ce3ac77ed38c6b0b699606d971"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/en-CA/thunderbird-91.8.0.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/en-CA/thunderbird-91.8.1.tar.bz2"; 75 75 locale = "en-CA"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "813d6df5de5768a3c82d3fc042907fd16f1f18695c5c294bb345cc593b71dfd7"; 77 + sha256 = "caa62088b677cbf18cd95a80ebc57b97597df35f8172d27a7cc55ded145e29c9"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/en-GB/thunderbird-91.8.0.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/en-GB/thunderbird-91.8.1.tar.bz2"; 80 80 locale = "en-GB"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "0cbefc0c52f32b7654d045cc85c5ae882ca83b6ca138b3f6b82e194b53b0940f"; 82 + sha256 = "6dff28a894f3b48798939105a9742b3f9dcc3c4389160f71126cdd08ff573c74"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/en-US/thunderbird-91.8.0.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/en-US/thunderbird-91.8.1.tar.bz2"; 85 85 locale = "en-US"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "d57fd4df24d4acb36ddcca83062114d16a8fa4e9255606e5f2ffcd4ac9b5ea5d"; 87 + sha256 = "3a6c1302f51a86297960d40f40fe6273349ae407b07e634b1c01758bc8cc3a0b"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/es-AR/thunderbird-91.8.0.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/es-AR/thunderbird-91.8.1.tar.bz2"; 90 90 locale = "es-AR"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "ffc858a7474ea2b6c95a6bacf2f0a9257c95f9ae67ea3d04bbb2f5499a58d618"; 92 + sha256 = "383d13f5094543f99dd64e29df261c956e6f13782c3158d4ac831a8c734b7d18"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/es-ES/thunderbird-91.8.0.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/es-ES/thunderbird-91.8.1.tar.bz2"; 95 95 locale = "es-ES"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "d3d77d80550c1ea96dff1f7fe59d12cd2bcf8b6d4f8db558c1c80d42e3767871"; 97 + sha256 = "d2753f076d929933cb51e79c0c0b66f2fc3457e3f25bb68b9b10c84566cfb70d"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/et/thunderbird-91.8.0.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/et/thunderbird-91.8.1.tar.bz2"; 100 100 locale = "et"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "03b95415f92d446bf24e392a14ddb3f1256158f711e65156745270fe61d2c565"; 102 + sha256 = "a71e3bdee857892bd62d582fd6cd9e7df41be92854c65d34b26b57fbad16ce2f"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/eu/thunderbird-91.8.0.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/eu/thunderbird-91.8.1.tar.bz2"; 105 105 locale = "eu"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "272f5e568abe042c6ce3d9ea53693bd1f2a18cc4ddcb0729fd2825a62ceb89af"; 107 + sha256 = "40f3aa9558eab5511c0176dd817880142e49bfc157546676ce15d559ace8e359"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/fi/thunderbird-91.8.0.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/fi/thunderbird-91.8.1.tar.bz2"; 110 110 locale = "fi"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "7171f34f07c49206eecfb1c3cf4d122b8fa9f24e68dd4075dd5c7313ba140fd4"; 112 + sha256 = "c758f45ff3b714e6e7fd1c66421a0f815ac54fa3590df682c11bd05f604bd848"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/fr/thunderbird-91.8.0.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/fr/thunderbird-91.8.1.tar.bz2"; 115 115 locale = "fr"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "45004e1b26c234969a805fe13a56ce3ed53e30d400965f61a6e95b4be79fd811"; 117 + sha256 = "1e2588b80017f6f10ada4675c4af5165de9216d65881f20feb844fa59fa60fbe"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/fy-NL/thunderbird-91.8.0.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/fy-NL/thunderbird-91.8.1.tar.bz2"; 120 120 locale = "fy-NL"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "bdd6a130ae5a1c12a49a2d2b84410b445e7d8b62bd3aa1eb64cf66fbb7436047"; 122 + sha256 = "c3ab99f1539a40f60cb2b3ca68178307b39b013a763a671ffd05124ed8d82988"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ga-IE/thunderbird-91.8.0.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ga-IE/thunderbird-91.8.1.tar.bz2"; 125 125 locale = "ga-IE"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "c03c8f98c0850402d909d1d802bc6fe189d145ed45bc576a821536a79e492bd7"; 127 + sha256 = "7af72cd55c26e368378a3b86844b6ee72f08b7f2c207170817ccbeaad1a114a0"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/gd/thunderbird-91.8.0.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/gd/thunderbird-91.8.1.tar.bz2"; 130 130 locale = "gd"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "b55a5edafa3ca381544c1e2d2ecf23a1557cdd9b10f937cc6f45c7a40e0a0831"; 132 + sha256 = "9a91e7b6d3572ee78a4df915a2b30e5dbd10351e6f16316e6dbbbffdbe1217d4"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/gl/thunderbird-91.8.0.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/gl/thunderbird-91.8.1.tar.bz2"; 135 135 locale = "gl"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "89f1cafa62a8334ea2250c6c8b9c07716fc99745aeafa6a689760c8eb288ad5a"; 137 + sha256 = "2c8f4043668dfa15ab191ed05218c1772472dbee932ea98e3cc08c05764812cb"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/he/thunderbird-91.8.0.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/he/thunderbird-91.8.1.tar.bz2"; 140 140 locale = "he"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "82f9405f187471371a137838a8d39d289f2160ca3ffde007fbc5f643c11c0a0a"; 142 + sha256 = "e3b038e94553d388eb4cf53c250d8297531ddb2fb0fc7c678291fa48c46fbc12"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/hr/thunderbird-91.8.0.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/hr/thunderbird-91.8.1.tar.bz2"; 145 145 locale = "hr"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "4920edd369b2317976d98707e4f59febe0b252a85666ddfe29e7f7043c502509"; 147 + sha256 = "a66c1c904f58879e11ceeba5c214302fc982468718af1567634ec53d16850cc4"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/hsb/thunderbird-91.8.0.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/hsb/thunderbird-91.8.1.tar.bz2"; 150 150 locale = "hsb"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "88a84bf4f2a599527da8dc082bfc8e7d2e94fec446057bde2296c52cd1d25e76"; 152 + sha256 = "e2f3b04485ba430799e1049ed9cdc4cf191014f6a2aa44c3f8e51d87d47332dc"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/hu/thunderbird-91.8.0.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/hu/thunderbird-91.8.1.tar.bz2"; 155 155 locale = "hu"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "a996700c6846850579b599cf31f837320859861f4b459554cabe35fe75f07059"; 157 + sha256 = "611bd8281d26324503fac16bd6e25175c988f6fb12b6bcf6f3016dcfa6ec44d8"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/hy-AM/thunderbird-91.8.0.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/hy-AM/thunderbird-91.8.1.tar.bz2"; 160 160 locale = "hy-AM"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "05d31752442946111c5b35873bf2b2c4a87e3739bac6a4704d94c54f199a3c6c"; 162 + sha256 = "88cd6e24ae4a54f0b4684bf3ab7116fcdce2dbe2d6a074af5cb50c3967ebda1f"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/id/thunderbird-91.8.0.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/id/thunderbird-91.8.1.tar.bz2"; 165 165 locale = "id"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "c8df7bf840268f4493403e849757eb6cfcd0cf59137bae948252eb9e9ace96ac"; 167 + sha256 = "1be3f82fc0a8254548c35a08d2fd4ef77b86df774acbe5bb17784d25af802eb7"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/is/thunderbird-91.8.0.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/is/thunderbird-91.8.1.tar.bz2"; 170 170 locale = "is"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "697487eba3eaf49d2613d877a2d58a1e357ad2f772ae2de031695902ad4514ad"; 172 + sha256 = "332e85aba591c744a9d53b70e06218fafbdc94600643963c63f6a693edbfd035"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/it/thunderbird-91.8.0.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/it/thunderbird-91.8.1.tar.bz2"; 175 175 locale = "it"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "0749d5dcd105b82aea94bc704e10812bfd3fa375a776f7a95b94bb4886e543ce"; 177 + sha256 = "95ca9342dd991d8306922df03c5f09adeb63dc93f678384989315ddf1df622d3"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ja/thunderbird-91.8.0.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ja/thunderbird-91.8.1.tar.bz2"; 180 180 locale = "ja"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "ac6aa38f830a8f3eea7d0c7d0c9695ce1351e84a19a831e3d87d212369353ef7"; 182 + sha256 = "977a0e4ca8d9e8d8d6c289608a9318971553b011bbcda66ee888624ef6b9d56b"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ka/thunderbird-91.8.0.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ka/thunderbird-91.8.1.tar.bz2"; 185 185 locale = "ka"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "b051d95f3b69a7c2d8de178e517abd37afec4502de1a580788f150c77c0187dc"; 187 + sha256 = "1a8360cd576a4e2a0b6d316441eff481c2a1d9b80e7f9eeeb0fc6fc38df08d1f"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/kab/thunderbird-91.8.0.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/kab/thunderbird-91.8.1.tar.bz2"; 190 190 locale = "kab"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "2e635bdf5de067b57ba639be3465fcff3bbe00119d0c3f031d6471aab7a9b9f8"; 192 + sha256 = "d318ccb72f4476d8222eb4423c755378f10cf187cc6ea73152833953375cac35"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/kk/thunderbird-91.8.0.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/kk/thunderbird-91.8.1.tar.bz2"; 195 195 locale = "kk"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "369cc371e500bc6ce224f9563c6bd586fb4748181372754c4b2c58e81d9f19c6"; 197 + sha256 = "854f310728f2c1c2e3e3dec57787bb293f344a31cb1f0b8a131f0768c409fb08"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ko/thunderbird-91.8.0.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ko/thunderbird-91.8.1.tar.bz2"; 200 200 locale = "ko"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "6b4270b67c7e2e47201cb37c7bc9b22599cc65ea3efc87e35b0fddedc0af8170"; 202 + sha256 = "c740a972a708627d9700c9dd3b2bb56a5b1a3e0ac6f438021aa56033e6e6b40e"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/lt/thunderbird-91.8.0.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/lt/thunderbird-91.8.1.tar.bz2"; 205 205 locale = "lt"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "a140ae146bb64c704130e6e84a63ccf7ccac77433a95964b0b5d1c2a52485e7c"; 207 + sha256 = "7a1c14eb2fd539dc9e2681a8868fb6e82ed2e9ce0b9523a613e20a48ec52d2ac"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/lv/thunderbird-91.8.0.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/lv/thunderbird-91.8.1.tar.bz2"; 210 210 locale = "lv"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "5f88b779588a36ff7eac1c652400ebdaad501b00c83101e6614f1689bb0aebfa"; 212 + sha256 = "bde11f8e943b462f4c8a084ee7d1328f59e93a6bf2d39fed8a3dd1408b0ee716"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ms/thunderbird-91.8.0.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ms/thunderbird-91.8.1.tar.bz2"; 215 215 locale = "ms"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "48632dc4e44bae95dc2c435f334c4d65a7058b0f5cdaf492ba4b7788d2c5df9d"; 217 + sha256 = "f76f9bde41a1be40c32bb3fa1990adba3460bdca0b98e466e6dcbbc6d8d944a0"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/nb-NO/thunderbird-91.8.0.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/nb-NO/thunderbird-91.8.1.tar.bz2"; 220 220 locale = "nb-NO"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "c065ca752ff112aeafb51684b2f8877af8a61a52a6e1a70b884967c78fb30880"; 222 + sha256 = "e8a052e7c841feda1c54b5f349181695c03f2549f95ca1d9108b60e8dd13c85e"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/nl/thunderbird-91.8.0.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/nl/thunderbird-91.8.1.tar.bz2"; 225 225 locale = "nl"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "44c9ea3d19b1f4b9151b49e3b8221eec179558bfe398076f5fc5b41266f8194f"; 227 + sha256 = "5eea4e47045706a621ca398a55a76a2165d461c061ea3e410418839a9a069ca7"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/nn-NO/thunderbird-91.8.0.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/nn-NO/thunderbird-91.8.1.tar.bz2"; 230 230 locale = "nn-NO"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "6347f87681652379ccda8564dbd2572bab1fa04b0c487ff43e3f51f3719ac7d5"; 232 + sha256 = "a819e0ede22abce7d3e10ab1dbe3d4571889c63284e6f1c917834f766ad3c73a"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/pa-IN/thunderbird-91.8.0.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/pa-IN/thunderbird-91.8.1.tar.bz2"; 235 235 locale = "pa-IN"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "6db940a4482f404fa89abc36a2e9737c835fa51d7c98503055fb98484f7586c0"; 237 + sha256 = "523f7c451f618b1f7705d0892b50700f61c0c3a12ca85957630e5e146ed7eccd"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/pl/thunderbird-91.8.0.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/pl/thunderbird-91.8.1.tar.bz2"; 240 240 locale = "pl"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "dffeffd240e5ba3f1e3de024ffe7a51ebc72eb3035bb994d02bffd106203dc2b"; 242 + sha256 = "45d17f737b24ab1ca34e7dc5d16493203e1673c4592a099b3dffa8559908b64b"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/pt-BR/thunderbird-91.8.0.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/pt-BR/thunderbird-91.8.1.tar.bz2"; 245 245 locale = "pt-BR"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "5a05e3d9174bd26f3c9f62f82dc50e0e40965771d861bbb662bfc4cdf29ef83e"; 247 + sha256 = "d4d3cc55f0924a9eefb2b76d3cf524238e87ee0f016b5fcb4df59c28a6f8539c"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/pt-PT/thunderbird-91.8.0.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/pt-PT/thunderbird-91.8.1.tar.bz2"; 250 250 locale = "pt-PT"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "dfe5055edaea41dba221a2b39d2fef7493a508d12e9cb39e29201a20f95afdbd"; 252 + sha256 = "1a6b22cc0fca62a1fac036b87f04a7ef2d101e8a4323e370856338ceffd3193f"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/rm/thunderbird-91.8.0.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/rm/thunderbird-91.8.1.tar.bz2"; 255 255 locale = "rm"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "17a587c8b3eb1b548089b70bff06f379fd1d6aaa234a024b2b1c17a1f2a6f60d"; 257 + sha256 = "cd9b4f7274a3fe1c5c29ac68377b82ac134a9d23828700399009021ae6920c1e"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ro/thunderbird-91.8.0.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ro/thunderbird-91.8.1.tar.bz2"; 260 260 locale = "ro"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "cc43a35c544bc15fb86a12538d70d20b5b22f5666b5467b7f8e87b31a12c5abe"; 262 + sha256 = "0c0dd2e9612c64eb2f70d52f32fad70af989537018d2d1457941d773e5d8200c"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/ru/thunderbird-91.8.0.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/ru/thunderbird-91.8.1.tar.bz2"; 265 265 locale = "ru"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "82b05f1e853fdcb4cbce513dc87f9fe2784bc4bc5836274be15b1cff831a5dfc"; 267 + sha256 = "4f89db6c6bff251b9e642b6525e2d6dab30fd5faddff814a8566e3db0109f895"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/sk/thunderbird-91.8.0.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/sk/thunderbird-91.8.1.tar.bz2"; 270 270 locale = "sk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "31ca758cacb9f5ffbdb901f4a2b59b2b63a2b4f0f0b63a35ec45c1d1b642654e"; 272 + sha256 = "9b7c6e1536dd288634f1e635cf65b59bfd8953853143ad4611b66189119fe8ea"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/sl/thunderbird-91.8.0.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/sl/thunderbird-91.8.1.tar.bz2"; 275 275 locale = "sl"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "8ce25c995945f164756d3b6727c5c2d49397520a0fdc1ec5b448bd04664f1314"; 277 + sha256 = "9b55f025b7b64d57c0ae1ffb54fcfd24dfffedaf8dcfb0cff870e5023e018e22"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/sq/thunderbird-91.8.0.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/sq/thunderbird-91.8.1.tar.bz2"; 280 280 locale = "sq"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "db65e73da83a12d1e10713b0ace13250c127e798e91e81893ccb8f38bc635186"; 282 + sha256 = "a7c42d3f546482eec81a021f299bc57fc05d349cfbfdd65ad3dbe46019e29851"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/sr/thunderbird-91.8.0.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/sr/thunderbird-91.8.1.tar.bz2"; 285 285 locale = "sr"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "0cf912a9d51cb3ffb6cf7aa3eeaa61a54c253a617abce216c37770dcf5c36344"; 287 + sha256 = "c990d6f1d94f50ba0edc2683acb89fd17dc94ceb0406549309c85be3e294c43a"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/sv-SE/thunderbird-91.8.0.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/sv-SE/thunderbird-91.8.1.tar.bz2"; 290 290 locale = "sv-SE"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "86578eaf49e4ea08c0ce7573ff13c8f0c5e2a3e0d03028c04b37042ed0739b1a"; 292 + sha256 = "cff7a55dd6a5ef6a3bff8757decda52e685fd500ba00ddc9f96724a6e803759e"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/th/thunderbird-91.8.0.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/th/thunderbird-91.8.1.tar.bz2"; 295 295 locale = "th"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "44e9e7ea1807e41e51d531b6a5badd5ea660f19b52943ab012a1868c907d7a0b"; 297 + sha256 = "e04a3b749f86f8f13b26d58c1562f7249e9d298431f348709678d6b5eb2d56c4"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/tr/thunderbird-91.8.0.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/tr/thunderbird-91.8.1.tar.bz2"; 300 300 locale = "tr"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "d95e9d475c73d31d90d1a1b4056501850386d0b727d4941a6927b92a7e1c1d6f"; 302 + sha256 = "f3bc44135cc943509e5f821b011b30df42ba9e44884be588130326dd123ffc13"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/uk/thunderbird-91.8.0.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/uk/thunderbird-91.8.1.tar.bz2"; 305 305 locale = "uk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "a563e3da2a8f3f58b085ed06fb4a81ec0e7c36b2cbb777aa584857ee23793dcb"; 307 + sha256 = "c93fbc4795bc051ff6e55ced73765673c347a6fcea5c0b0f12d5a2b7e4ea13f6"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/uz/thunderbird-91.8.0.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/uz/thunderbird-91.8.1.tar.bz2"; 310 310 locale = "uz"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "0005df2daa394d44ab2a413fc0f58b23569bfe30dc9a0d0789f86c2072158937"; 312 + sha256 = "4737baf26dd8ae9a9fe4a52c56e75a2e76e76a976dac66cb02cc9175a432d114"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/vi/thunderbird-91.8.0.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/vi/thunderbird-91.8.1.tar.bz2"; 315 315 locale = "vi"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "7d987211388a37975dc93cb38a72e8e7e9a5a7535af5efecf5293ca5b1da6718"; 317 + sha256 = "8962b27c70530ad685753df464c4f4c982258abb82fc9788c623eebd2bd319fd"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/zh-CN/thunderbird-91.8.0.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/zh-CN/thunderbird-91.8.1.tar.bz2"; 320 320 locale = "zh-CN"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "c043d0e5e1804090ab8cc8c740b2458c825def839c128391c0d6e71b36af4894"; 322 + sha256 = "e9343251571b2922f5ab2f84590759e41fb0734c38541336215f9984c4fe6882"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-x86_64/zh-TW/thunderbird-91.8.0.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/zh-TW/thunderbird-91.8.1.tar.bz2"; 325 325 locale = "zh-TW"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "3870ceaa2ea5c049877452a6b0c76dd7de9b85985b358076c0fc1c476d04a10c"; 327 + sha256 = "efbcb13dcb468a82b0ec71d67af4addefce97addfca6befaba0b96c92617091b"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/af/thunderbird-91.8.0.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/af/thunderbird-91.8.1.tar.bz2"; 330 330 locale = "af"; 331 331 arch = "linux-i686"; 332 - sha256 = "f004dc6825310f3f7554682816b0848e4461ca86d8d31b1f5f0287064be5af48"; 332 + sha256 = "d96e9de630ad5502fd86de653337ff7df4444ea5bdc22e07cb77f67f1dc4d04f"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ar/thunderbird-91.8.0.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ar/thunderbird-91.8.1.tar.bz2"; 335 335 locale = "ar"; 336 336 arch = "linux-i686"; 337 - sha256 = "be9fae6a15d1e3d7b4da462eaaa2cfa0317162c2ecfdbff8704d2f0239278380"; 337 + sha256 = "d5273d01309d15e77a897fa25a142851470f9569b25b253e66d09dee6984d061"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ast/thunderbird-91.8.0.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ast/thunderbird-91.8.1.tar.bz2"; 340 340 locale = "ast"; 341 341 arch = "linux-i686"; 342 - sha256 = "5f92a809cf6d6a2df8477f54d1cf7a3ef65e27426fe184178bcc8c691a08487a"; 342 + sha256 = "8466aa8df2090de75cd7140b58c03856b351536f14875569c18abeaebdcb3249"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/be/thunderbird-91.8.0.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/be/thunderbird-91.8.1.tar.bz2"; 345 345 locale = "be"; 346 346 arch = "linux-i686"; 347 - sha256 = "c87c60eee9c7cb082e7a06e608835d1e29154a06a77b688c564fceab1546eaa5"; 347 + sha256 = "f2940433250516531cd782e5f7a2c85dbb81d5fae83b29ff2fba93450dcb14ef"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/bg/thunderbird-91.8.0.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/bg/thunderbird-91.8.1.tar.bz2"; 350 350 locale = "bg"; 351 351 arch = "linux-i686"; 352 - sha256 = "f07c5dab6db9aec61478942a0b7add0fea0fb078c9be150efad19e606fcf7ebc"; 352 + sha256 = "70198e5c4857d84b0c84c158fabf269d759fcd7b966d82e2f529c540d833a244"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/br/thunderbird-91.8.0.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/br/thunderbird-91.8.1.tar.bz2"; 355 355 locale = "br"; 356 356 arch = "linux-i686"; 357 - sha256 = "d1b5d7c7de3ecb1b0b58989a25bbac3768b105730c6ddb87d1d3072001efa313"; 357 + sha256 = "02391abf4167231531b8e8490fd2d7feab36cf89ddc5cb6d072cb33a67d4520a"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ca/thunderbird-91.8.0.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ca/thunderbird-91.8.1.tar.bz2"; 360 360 locale = "ca"; 361 361 arch = "linux-i686"; 362 - sha256 = "1e8e7f215c8a80504eaafcf3e867c6f8090953f685fc2bc7606f77efd11bd612"; 362 + sha256 = "7178baf7bdc7914bb803995b8d1fc66087f9c65264b100e8876fa1be463623d2"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/cak/thunderbird-91.8.0.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/cak/thunderbird-91.8.1.tar.bz2"; 365 365 locale = "cak"; 366 366 arch = "linux-i686"; 367 - sha256 = "43a0355b20dbc71adc4a6c35bba3e91d717ba08547c767303828f931b7cd26e6"; 367 + sha256 = "579bdce1b8b4a2ebf2688c95e5ee4f2e20347a983874633bcdb92c3d6c19ee8e"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/cs/thunderbird-91.8.0.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/cs/thunderbird-91.8.1.tar.bz2"; 370 370 locale = "cs"; 371 371 arch = "linux-i686"; 372 - sha256 = "987a95eadb174ac453cc619b97ab4b5dbdc474de821f16a2e9f4906483792656"; 372 + sha256 = "2eccefb9c82eae0f339ec9d5291c82a873ddcdc80822a7588e686ffaa50e7763"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/cy/thunderbird-91.8.0.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/cy/thunderbird-91.8.1.tar.bz2"; 375 375 locale = "cy"; 376 376 arch = "linux-i686"; 377 - sha256 = "1ee7b2902fa1fe373dd2ae2529af1c2f87f442c91618f2a470052641a6e963a2"; 377 + sha256 = "0616bd3fb1baa79b4dbfddf260d013c03829edcdf761e25980b8600e63922f52"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/da/thunderbird-91.8.0.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/da/thunderbird-91.8.1.tar.bz2"; 380 380 locale = "da"; 381 381 arch = "linux-i686"; 382 - sha256 = "09e15245d38b7d2963f1558c42ed13452737679459b9f78769dc0726cb8e42c8"; 382 + sha256 = "56c3cf0930c0966212d607589a32cec910d6b0a7bc7db314b317e0f717321fc6"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/de/thunderbird-91.8.0.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/de/thunderbird-91.8.1.tar.bz2"; 385 385 locale = "de"; 386 386 arch = "linux-i686"; 387 - sha256 = "1fcdd9e52197d1925a42fe193980bd1415d6c280afc8e0148f7ea3903fb79a7e"; 387 + sha256 = "5ef59f3d0575ec3f570f4b1d0a401ac3eaf42a901ccece9bbb46cd4bab4a61b1"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/dsb/thunderbird-91.8.0.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/dsb/thunderbird-91.8.1.tar.bz2"; 390 390 locale = "dsb"; 391 391 arch = "linux-i686"; 392 - sha256 = "362cef9146611f09d969893c4b4c7a8ba7b3d46a1b49183cba0eb8d7d46d2db9"; 392 + sha256 = "e4ba253ee1f3629d5e3bde8475a49b8a95fb1a0bb76c14cb62a53a6e6f545804"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/el/thunderbird-91.8.0.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/el/thunderbird-91.8.1.tar.bz2"; 395 395 locale = "el"; 396 396 arch = "linux-i686"; 397 - sha256 = "7360fcb00c20b8dfdb2434d2347e8bffadcadc7fd50773dd96bc9173b3e800a7"; 397 + sha256 = "7c342ff901eb195ee06b0b67d4a52b118053ee8153d9dffae48c83e937a04be4"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/en-CA/thunderbird-91.8.0.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/en-CA/thunderbird-91.8.1.tar.bz2"; 400 400 locale = "en-CA"; 401 401 arch = "linux-i686"; 402 - sha256 = "86025c58c29acf2cc98ba6be305629605a3ad10304c87d6f4d55cb9948ddbb46"; 402 + sha256 = "35cc280dfa58eeb62c12d133d4bccfcd85e694121129e154770c840f6e87169d"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/en-GB/thunderbird-91.8.0.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/en-GB/thunderbird-91.8.1.tar.bz2"; 405 405 locale = "en-GB"; 406 406 arch = "linux-i686"; 407 - sha256 = "2535a948b23327f66c186387a50eeec44ab3eb42859be5ce9beeb660a47e1b1e"; 407 + sha256 = "ac393ceb36bcf7afefdaa1f6fdbdc49ef739781979878f055d623cae78cc0468"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/en-US/thunderbird-91.8.0.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/en-US/thunderbird-91.8.1.tar.bz2"; 410 410 locale = "en-US"; 411 411 arch = "linux-i686"; 412 - sha256 = "889e6f3f8d0b5b372b08ea3b85b9cc890ad62ef60d9bd41b3e4e9387e1361e7b"; 412 + sha256 = "bac3f4695e762b67b21b399edd406340a6500a8a5bcf4973a74904b9065078c8"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/es-AR/thunderbird-91.8.0.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/es-AR/thunderbird-91.8.1.tar.bz2"; 415 415 locale = "es-AR"; 416 416 arch = "linux-i686"; 417 - sha256 = "f99012407c06c6b913207ac706fd542da011045b5503ff3290590332da09a7a1"; 417 + sha256 = "5ec79874c0a76555e68a84aa8f41ceff5ff72877d4636301cae99ef56ea16e74"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/es-ES/thunderbird-91.8.0.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/es-ES/thunderbird-91.8.1.tar.bz2"; 420 420 locale = "es-ES"; 421 421 arch = "linux-i686"; 422 - sha256 = "ef8d7946c1c4475dcbe4144012630119e64bdcb3b809b4a00cebaa5d8effb5fb"; 422 + sha256 = "3465df8574f3d9dcb86a458147c388ae662cd17b998176591eb3841a448c543a"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/et/thunderbird-91.8.0.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/et/thunderbird-91.8.1.tar.bz2"; 425 425 locale = "et"; 426 426 arch = "linux-i686"; 427 - sha256 = "5e2cefaaa8d44e3a90e7b31ac29ff62f9f3b50dff5b29ca1703bbe907a770d61"; 427 + sha256 = "58a1a76c81c6687a5673150ad5effa421b5a32a8825c52a7106a5a77cf4d66bf"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/eu/thunderbird-91.8.0.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/eu/thunderbird-91.8.1.tar.bz2"; 430 430 locale = "eu"; 431 431 arch = "linux-i686"; 432 - sha256 = "7c89425da0c4c46e9291b7f039d7b42aae9442538b3afff0477b490f158ee473"; 432 + sha256 = "c90e4acc10b1157d3f1009f55d5ebe70828288ebf057f01d0cfc78f306536d19"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/fi/thunderbird-91.8.0.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/fi/thunderbird-91.8.1.tar.bz2"; 435 435 locale = "fi"; 436 436 arch = "linux-i686"; 437 - sha256 = "a861e4b0763b98c8d6361c2f36cee43cd12c6e7b9fcfa49010da9f861121fbbe"; 437 + sha256 = "249943c795ac7b7d94331399c7badfd2d7ea86ccbf96e7eb653985ead8d50975"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/fr/thunderbird-91.8.0.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/fr/thunderbird-91.8.1.tar.bz2"; 440 440 locale = "fr"; 441 441 arch = "linux-i686"; 442 - sha256 = "0aab665a007cf87767f78a42c0ac3a767776895e9c0990a475545157878cbd87"; 442 + sha256 = "6464ce3e03ec947fe8752096d3049390b307ed44eaea036194c6d58750064a1d"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/fy-NL/thunderbird-91.8.0.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/fy-NL/thunderbird-91.8.1.tar.bz2"; 445 445 locale = "fy-NL"; 446 446 arch = "linux-i686"; 447 - sha256 = "1ed753c85bf519406001833b3ca3848262c6208eaec1899167704624a5b52701"; 447 + sha256 = "a45de5dd3f37b9a7c39b260ba84a03cef94b103787235cd34ad45cf4592e7ed2"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ga-IE/thunderbird-91.8.0.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ga-IE/thunderbird-91.8.1.tar.bz2"; 450 450 locale = "ga-IE"; 451 451 arch = "linux-i686"; 452 - sha256 = "e2b75f8d236dd3a217c21461e2c0ae501fb23f0cabcc11a501aae8f0ca28175b"; 452 + sha256 = "ed509287d305e2457137d051b1842d26401b5b337a5272562a7b19922e874c2c"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/gd/thunderbird-91.8.0.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/gd/thunderbird-91.8.1.tar.bz2"; 455 455 locale = "gd"; 456 456 arch = "linux-i686"; 457 - sha256 = "6517d28e08abe6ae9cffb2e0d6cfe7407b137c7e4a2bd1fffd1f2d74592db168"; 457 + sha256 = "2c8a2c587bb522aa2dceb3fb3d68e338f9e22b1be57745e26441c4c72257b22b"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/gl/thunderbird-91.8.0.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/gl/thunderbird-91.8.1.tar.bz2"; 460 460 locale = "gl"; 461 461 arch = "linux-i686"; 462 - sha256 = "4bc16ea1a9939f1c0b363a34b580a4bf6601f646fdcd9c6d686fb07b1db4951b"; 462 + sha256 = "4dd7eb1c72eca568c03c233f5078bbcf24da14e123106ce877096ab2b1637b61"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/he/thunderbird-91.8.0.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/he/thunderbird-91.8.1.tar.bz2"; 465 465 locale = "he"; 466 466 arch = "linux-i686"; 467 - sha256 = "1b60dde842257b9d9526618f5f7a13cacf6d9a8d7f9320073e9ca95a80633a32"; 467 + sha256 = "82f8168ab4eceaf92f03fd777160ec28d25f4801944469a5ac3f6df8de1773e1"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/hr/thunderbird-91.8.0.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/hr/thunderbird-91.8.1.tar.bz2"; 470 470 locale = "hr"; 471 471 arch = "linux-i686"; 472 - sha256 = "a11ba48e82c8a78f21c0d38f947ea699f926842c5b8665d5e6b132754d063bbc"; 472 + sha256 = "80221f2fc08812f864dd09edc4e6b7693d5966b292d8ea66c2931a51f35bfaa8"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/hsb/thunderbird-91.8.0.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/hsb/thunderbird-91.8.1.tar.bz2"; 475 475 locale = "hsb"; 476 476 arch = "linux-i686"; 477 - sha256 = "dfdd15a264d58454a721d7036db0659af9c920b71f1835a488338acab1540056"; 477 + sha256 = "9e6b7c4cd402675cbac43088328e321a6f738cd7d83406d7cd7f8ac6060b6f11"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/hu/thunderbird-91.8.0.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/hu/thunderbird-91.8.1.tar.bz2"; 480 480 locale = "hu"; 481 481 arch = "linux-i686"; 482 - sha256 = "126d2155fc30f15b6efa061d340d91926e0f72ff133411dad9fdfefaffa25210"; 482 + sha256 = "4cea9f48504060e31006f69eecafe3c352440f54d599f637d4a1a536d48e27a3"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/hy-AM/thunderbird-91.8.0.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/hy-AM/thunderbird-91.8.1.tar.bz2"; 485 485 locale = "hy-AM"; 486 486 arch = "linux-i686"; 487 - sha256 = "cc4d0984fe5caa81cf463a166a08af8d35bd7d68bef8a0b40b2edab4ffab3eb3"; 487 + sha256 = "55d887cf63952b1eec43bf2449fa3eb8c543d91ee4cdeaa1e54a00cd4a009357"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/id/thunderbird-91.8.0.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/id/thunderbird-91.8.1.tar.bz2"; 490 490 locale = "id"; 491 491 arch = "linux-i686"; 492 - sha256 = "4dc4f402a2c3fb1d9f0f3fc10f937274f87bbb99f7442fbb782e6c91b6bef1a5"; 492 + sha256 = "32dcdae28370e35f61a3f5c12085830f6263b0b4b9b272d780f2c748d1474961"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/is/thunderbird-91.8.0.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/is/thunderbird-91.8.1.tar.bz2"; 495 495 locale = "is"; 496 496 arch = "linux-i686"; 497 - sha256 = "9a52dec2873649da8e11105456e8d6cbb631b754f9988404c0985f03d10001d2"; 497 + sha256 = "df47af9356ee1b9bed415421f14f797499402dccc96f3aef18538d64b4b5b8b9"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/it/thunderbird-91.8.0.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/it/thunderbird-91.8.1.tar.bz2"; 500 500 locale = "it"; 501 501 arch = "linux-i686"; 502 - sha256 = "7764c87c166229b9b25410cbd816a49afcbf6ab37dae5ee071fc2940a068fc3d"; 502 + sha256 = "1cf50c518e5d8137c52bf37eaeac618007e2efbc8f94deb9461a01b2787df434"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ja/thunderbird-91.8.0.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ja/thunderbird-91.8.1.tar.bz2"; 505 505 locale = "ja"; 506 506 arch = "linux-i686"; 507 - sha256 = "9e858818a36ede51a15e2cf9e3b2b2d30dd83b6fe2cd5f66188776e3351e12f5"; 507 + sha256 = "031d2db07bc2dfc8dbb4c86119a993725a661ad4f6596241bd5590ebbdc01e3c"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ka/thunderbird-91.8.0.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ka/thunderbird-91.8.1.tar.bz2"; 510 510 locale = "ka"; 511 511 arch = "linux-i686"; 512 - sha256 = "2e46a4036b32b90224e555691441c6a59e8e07fc6f0d6cae3aa591af3a2b04c2"; 512 + sha256 = "18f1b2a900381ce85cded1046e0bc10c015eb3ab5602497e93190229aea26bcd"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/kab/thunderbird-91.8.0.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/kab/thunderbird-91.8.1.tar.bz2"; 515 515 locale = "kab"; 516 516 arch = "linux-i686"; 517 - sha256 = "0ae98410d16a73a4c42149b7b5c6325a58dacdd02ac8df0f263c51b8aad26e57"; 517 + sha256 = "10b42a83af77d82343297439f8c56cdb3ab85fa4ea88aa77e49aeb6a01a90c99"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/kk/thunderbird-91.8.0.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/kk/thunderbird-91.8.1.tar.bz2"; 520 520 locale = "kk"; 521 521 arch = "linux-i686"; 522 - sha256 = "b74a98dda02f144ecc4a1fb76f014689d3c5a0d95805ca2adaccc7739f397296"; 522 + sha256 = "1e0b1740eaf8c48ecb2a41c3687f51afc07b9243c098637d60c5452259ae9192"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ko/thunderbird-91.8.0.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ko/thunderbird-91.8.1.tar.bz2"; 525 525 locale = "ko"; 526 526 arch = "linux-i686"; 527 - sha256 = "074f6f4ac2ebd983490f6cc42a4ac8603da13f056145aa5dc577b2fe3fa4a4da"; 527 + sha256 = "da9a00752a4e6a3aca2f298eecae39e661435f95c723f7327ed60eeb0e75d50d"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/lt/thunderbird-91.8.0.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/lt/thunderbird-91.8.1.tar.bz2"; 530 530 locale = "lt"; 531 531 arch = "linux-i686"; 532 - sha256 = "afb32ea82d83808ab40f33db0fa95462479bae8f237defa0c702a3d95fcc91d5"; 532 + sha256 = "7ece24971b0a7b901ab165ff30c3b5239161a488be02c7f5cf5d6a2dfc6dce3e"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/lv/thunderbird-91.8.0.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/lv/thunderbird-91.8.1.tar.bz2"; 535 535 locale = "lv"; 536 536 arch = "linux-i686"; 537 - sha256 = "91661ab053978137acb9bb6e820dfba0ee5007bc12b440504efaa6aa6c62f444"; 537 + sha256 = "baf96d476ec159bbc4567e4beae29d3c61fef9683190cdc7c207163ed67797fb"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ms/thunderbird-91.8.0.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ms/thunderbird-91.8.1.tar.bz2"; 540 540 locale = "ms"; 541 541 arch = "linux-i686"; 542 - sha256 = "ba06582eb17d830d0805040810098db7fef4a001f8b5f8228491c0449ccb29f5"; 542 + sha256 = "3b356c61079130bd3d5b5023116f74961ed84595222284fadc45f3224281bbfc"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/nb-NO/thunderbird-91.8.0.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/nb-NO/thunderbird-91.8.1.tar.bz2"; 545 545 locale = "nb-NO"; 546 546 arch = "linux-i686"; 547 - sha256 = "c2463574caf1bbf6dee227ec57fae53178a713dcfd05e866b6458d9dc0f8febd"; 547 + sha256 = "225a885cc788b64c864efab9cb0adbb0399a7e68e747551bb98cfba903898bec"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/nl/thunderbird-91.8.0.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/nl/thunderbird-91.8.1.tar.bz2"; 550 550 locale = "nl"; 551 551 arch = "linux-i686"; 552 - sha256 = "2e84666be34fb7883a4ded36ab0a71ba987c554abb08c959330689ef15d3ac04"; 552 + sha256 = "1c75e3df164a37c46f83421e0df28dd1cd4fd9e725a4e6c8d03378c800c53f04"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/nn-NO/thunderbird-91.8.0.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/nn-NO/thunderbird-91.8.1.tar.bz2"; 555 555 locale = "nn-NO"; 556 556 arch = "linux-i686"; 557 - sha256 = "2e08edd2b0d198b1d6614af26fa86c3c6b646f6b53324aa6d7cda4629ab2dbf3"; 557 + sha256 = "fc154d52fa4e19ef4e727663a1bc4599da9e7c3aba0e563d823a3d4995d2632e"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/pa-IN/thunderbird-91.8.0.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/pa-IN/thunderbird-91.8.1.tar.bz2"; 560 560 locale = "pa-IN"; 561 561 arch = "linux-i686"; 562 - sha256 = "9b5562cfa1a3c36b8f4f8a703ed232e5045812346cbb604f310b8c1861a99213"; 562 + sha256 = "27a95c486a5a075fa8011add5c06c616ffafa7cb266afc26f7511cd510f8f403"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/pl/thunderbird-91.8.0.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/pl/thunderbird-91.8.1.tar.bz2"; 565 565 locale = "pl"; 566 566 arch = "linux-i686"; 567 - sha256 = "5ce1e65dc07f4f1d720abd18e31252aa74bdbb22f29305dfd23825fc9aec9062"; 567 + sha256 = "34563d04912e27e93f122c47eca56a368f2b723406498f98f312f92459265f87"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/pt-BR/thunderbird-91.8.0.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/pt-BR/thunderbird-91.8.1.tar.bz2"; 570 570 locale = "pt-BR"; 571 571 arch = "linux-i686"; 572 - sha256 = "440af4305a7a2d8382e6d791b1cde11673b4a0b35973126b6f5b44f7ab236e84"; 572 + sha256 = "6ab98477ca80c945c4b780aa704b231e7831fd2334a70c57937b2815357f3150"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/pt-PT/thunderbird-91.8.0.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/pt-PT/thunderbird-91.8.1.tar.bz2"; 575 575 locale = "pt-PT"; 576 576 arch = "linux-i686"; 577 - sha256 = "47f456163ee3036b9a20542b3a5fb0e6997fa9c3ea431c38964c887669191c42"; 577 + sha256 = "0919ca9a0125a8545de083f629a4f338e8db0f0e7a87bb7c55172f163605f8d1"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/rm/thunderbird-91.8.0.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/rm/thunderbird-91.8.1.tar.bz2"; 580 580 locale = "rm"; 581 581 arch = "linux-i686"; 582 - sha256 = "7c26dd177759f7c40a3106b9189cf245ef43be2e732d187ed1cdce44ba533073"; 582 + sha256 = "31d4de40f1ad6c284e388ffd760d3758174ce99c01ca23b0ccbf9d1a4f343bab"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ro/thunderbird-91.8.0.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ro/thunderbird-91.8.1.tar.bz2"; 585 585 locale = "ro"; 586 586 arch = "linux-i686"; 587 - sha256 = "0297de849e5f1a5400023b40682980ec886fbe54087f8db6b3a316d5cdb2d5d7"; 587 + sha256 = "3e0a763faa79aa775e29907e018f81d506fbaa025d9900516447c6081e6c31b1"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/ru/thunderbird-91.8.0.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/ru/thunderbird-91.8.1.tar.bz2"; 590 590 locale = "ru"; 591 591 arch = "linux-i686"; 592 - sha256 = "c766d619d8bacc87fd729d3aa6b3a16741070a91181416243b389d5b25dd4829"; 592 + sha256 = "ee485a4f7287d770107d9d41d678ace5873079e1fdc726a30800b6d055f68267"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/sk/thunderbird-91.8.0.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/sk/thunderbird-91.8.1.tar.bz2"; 595 595 locale = "sk"; 596 596 arch = "linux-i686"; 597 - sha256 = "9ba8276dab20f0e7c9820f2aae046ab4bbfd8a032b07282f1fd09bab167793da"; 597 + sha256 = "e8cc9b1a9e767ab548de614da8feb1b42213444e91e4a1382b2cdc7323872215"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/sl/thunderbird-91.8.0.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/sl/thunderbird-91.8.1.tar.bz2"; 600 600 locale = "sl"; 601 601 arch = "linux-i686"; 602 - sha256 = "a15a3cf75610b0acb93fe067a9fc4f2c7298bfa7654175275a96c0ee8e7fdd89"; 602 + sha256 = "271b3fa48e9f1cedfe3fbfbd72fd23b0b477e9993108996dbc897835de0750c9"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/sq/thunderbird-91.8.0.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/sq/thunderbird-91.8.1.tar.bz2"; 605 605 locale = "sq"; 606 606 arch = "linux-i686"; 607 - sha256 = "f1578326fdca0beeb09ed4bbe80178a5878a1bcac2f480a7e4155ee882f29197"; 607 + sha256 = "7fac9e56f3e5070f0b9e038483f0b0fb97a42d947410c3f8677b7e6d8ebf3828"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/sr/thunderbird-91.8.0.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/sr/thunderbird-91.8.1.tar.bz2"; 610 610 locale = "sr"; 611 611 arch = "linux-i686"; 612 - sha256 = "8fcd6be0a44a115630544bd5fb652a4dd3c4659a8233ab5aaeea7326c89d2c90"; 612 + sha256 = "903c9408c4bce12a78cf5941b9413f65d946b49c5c6819c1cc1c7006373d6802"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/sv-SE/thunderbird-91.8.0.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/sv-SE/thunderbird-91.8.1.tar.bz2"; 615 615 locale = "sv-SE"; 616 616 arch = "linux-i686"; 617 - sha256 = "f4dac959ee9f29349228f055ae7409cadf2be0de9461bcaac940da4ea9f33c6c"; 617 + sha256 = "c6ff664cd1d80bd36f1bbcffa239f3f8d7b31e5b68918001b1a26bd91ea49376"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/th/thunderbird-91.8.0.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/th/thunderbird-91.8.1.tar.bz2"; 620 620 locale = "th"; 621 621 arch = "linux-i686"; 622 - sha256 = "a3306d06a99bd4ae38b3289e9feaef2cb3e21fb46936ca1e369a21d114d033ec"; 622 + sha256 = "ad27252f979daad7e7e842ff1144ab731fa4e588adc015f3e388ba26f2cf21de"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/tr/thunderbird-91.8.0.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/tr/thunderbird-91.8.1.tar.bz2"; 625 625 locale = "tr"; 626 626 arch = "linux-i686"; 627 - sha256 = "03cda6244d38a28e3420028288e3768fa668fb5358d047c6ea463a644e655c53"; 627 + sha256 = "55581a2277ea6fa27389fa4ffdda72a02a8c3f8b2c92b0b04e7deb2d24840ee4"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/uk/thunderbird-91.8.0.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/uk/thunderbird-91.8.1.tar.bz2"; 630 630 locale = "uk"; 631 631 arch = "linux-i686"; 632 - sha256 = "29800c3dd81f9851c19ef5c54c6a7bc18fbda218ef76cf5edd22a142b2d2d791"; 632 + sha256 = "5b687b3839f6c4ce67c71c56965eccd85eab94063fb9bfc5d4e2f30336f3fe0d"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/uz/thunderbird-91.8.0.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/uz/thunderbird-91.8.1.tar.bz2"; 635 635 locale = "uz"; 636 636 arch = "linux-i686"; 637 - sha256 = "bb6020331a871f28003df188628cbc157409f3b97160efd02b71127faeff67d9"; 637 + sha256 = "41344413282a295db0c33e7ba01074b46c69d6267f94b36d10200f2adb42b39e"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/vi/thunderbird-91.8.0.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/vi/thunderbird-91.8.1.tar.bz2"; 640 640 locale = "vi"; 641 641 arch = "linux-i686"; 642 - sha256 = "8bc4c487dcda84a4a103ef287388c418b95c4ed78c80e2e5936fb654a6df3c43"; 642 + sha256 = "57bfaac37e13e218d631af0830cef177d342f45a64fc19f86bfc5aa9c940e632"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/zh-CN/thunderbird-91.8.0.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/zh-CN/thunderbird-91.8.1.tar.bz2"; 645 645 locale = "zh-CN"; 646 646 arch = "linux-i686"; 647 - sha256 = "a41ca9b5e47f7628721ebb397f04e5cab625c5eb297b793a08f8103d9578c45f"; 647 + sha256 = "417a2b7ca7f3981d171e453ca7ea709fbb05bc2283d874d82a4b002d8e64f816"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.0/linux-i686/zh-TW/thunderbird-91.8.0.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-i686/zh-TW/thunderbird-91.8.1.tar.bz2"; 650 650 locale = "zh-TW"; 651 651 arch = "linux-i686"; 652 - sha256 = "22489a052fc34ab1d364ee305c26b6d495b6ef4381e038427869a85d78ffe274"; 652 + sha256 = "2c92131700a89dc2c590901cf356705d308aa3520ad3f713ba866fce04edb8c7"; 653 653 } 654 654 ]; 655 655 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 10 10 rec { 11 11 thunderbird = (common rec { 12 12 pname = "thunderbird"; 13 - version = "91.8.0"; 13 + version = "91.8.1"; 14 14 application = "comm/mail"; 15 15 binaryName = pname; 16 16 src = fetchurl { 17 17 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 18 - sha512 = "147c7ad68b0a32cc0fd4405935836af1fa77bbce6a1e367b51ef9871e7fc2a8fe908a1d200be34326f4f339d272e62f619b75680201fe82d301ddd02e23824d5"; 18 + sha512 = "1591f3e9c76c1f2ea7fa5e194a7d030c8657a7855a95c8a177e8067c5aa838f0d8ca2652cd049b4bc88d0c9e604285a47b0c8316c190e2ceadfc1130d1e4de6c"; 19 19 }; 20 20 extraPatches = [ 21 21 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
+1 -1
pkgs/applications/radio/gnuradio/wrapper.nix
··· 137 137 self = if doWrap then 138 138 stdenv.mkDerivation { 139 139 inherit pname version passthru; 140 + nativeBuildInputs = [ makeWrapper ]; 140 141 buildInputs = [ 141 - makeWrapper 142 142 xorg.lndir 143 143 ]; 144 144 buildCommand = ''
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "e5167f06cba67fa268ebafb97f5ccbffe412cd2a", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e5167f06cba67fa268ebafb97f5ccbffe412cd2a.tar.gz", 4 - "sha256": "1ihkrjk7a24wbzjz4wlx3mdh88bbq4665l1ld7gxs5jaimcmhn5j", 5 - "msg": "Update from Hackage at 2022-04-09T11:23:17Z" 2 + "commit": "762464dcc5ce93f1c6a9a746feb6bd1bd0c47006", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/762464dcc5ce93f1c6a9a746feb6bd1bd0c47006.tar.gz", 4 + "sha256": "0k1qp34lsc08a99p669v8n0fxs6mdzwc2bz87v0hdah4qagi4z4g", 5 + "msg": "Update from Hackage at 2022-04-20T23:34:08Z" 6 6 }
+2 -2
pkgs/development/beam-modules/erlang-ls/default.nix
··· 1 1 { fetchFromGitHub, fetchgit, fetchHex, rebar3Relx, buildRebar3, rebar3-proper 2 2 , stdenv, writeScript, lib }: 3 3 let 4 - version = "0.30.0"; 4 + version = "0.31.0"; 5 5 owner = "erlang-ls"; 6 6 repo = "erlang_ls"; 7 7 deps = import ./rebar-deps.nix { ··· 19 19 inherit version; 20 20 src = fetchFromGitHub { 21 21 inherit owner repo; 22 - sha256 = "sha256-Dqkp0d6U8U5HbyBq6q0WmKODVIQx3DVE8yofD0JhAHM="; 22 + sha256 = "sha256-tpJUCHrSFNEzNrln7nKwav0GSBW+4fwjSB3WI1MKW9A="; 23 23 rev = version; 24 24 }; 25 25 releaseType = "escript";
+2 -2
pkgs/development/compilers/chez/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "chez-scheme"; 8 - version = "9.5.6"; 8 + version = "9.5.8"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "cisco"; 12 12 repo = "ChezScheme"; 13 13 rev = "refs/tags/v${version}"; 14 - sha256 = "sha256-1C5fEbVIpFXlDQ5wFmYZ2nrDUq9jBmvnku/7f0MH7vc="; 14 + sha256 = "sha256-esCWEzny/I+Ors6+upKlt4h13oN0bRLWN9OTKuSqdl8="; 15 15 fetchSubmodules = true; 16 16 }; 17 17
+14
pkgs/development/compilers/ghc/8.10.2-binary.nix
··· 272 272 lib.optionalString stdenv.isLinux '' 273 273 find . -type f -executable -exec patchelf \ 274 274 --interpreter ${stdenv.cc.bintools.dynamicLinker} {} \; 275 + '' + 276 + # The hadrian install Makefile uses 'xxx' as a temporary placeholder in path 277 + # substitution. Which can break the build if the store path / prefix happens 278 + # to contain this string. This will be fixed with 9.4 bindists. 279 + # https://gitlab.haskell.org/ghc/ghc/-/issues/21402 280 + '' 281 + # Detect hadrian Makefile by checking for the target that has the problem 282 + if grep '^update_package_db' ghc-${version}*/Makefile > /dev/null; then 283 + echo Hadrian bindist, applying workaround for xxx path substitution. 284 + # based on https://gitlab.haskell.org/ghc/ghc/-/commit/dd5fecb0e2990b192d92f4dfd7519ecb33164fad.patch 285 + substituteInPlace ghc-${version}*/Makefile --replace 'xxx' '\0xxx\0' 286 + else 287 + echo Not a hadrian bindist, not applying xxx path workaround. 288 + fi 275 289 ''; 276 290 277 291 # fix for `configure: error: Your linker is affected by binutils #16177`
+14
pkgs/development/compilers/ghc/8.10.7-binary.nix
··· 270 270 lib.optionalString stdenv.isLinux '' 271 271 find . -type f -executable -exec patchelf \ 272 272 --interpreter ${stdenv.cc.bintools.dynamicLinker} {} \; 273 + '' + 274 + # The hadrian install Makefile uses 'xxx' as a temporary placeholder in path 275 + # substitution. Which can break the build if the store path / prefix happens 276 + # to contain this string. This will be fixed with 9.4 bindists. 277 + # https://gitlab.haskell.org/ghc/ghc/-/issues/21402 278 + '' 279 + # Detect hadrian Makefile by checking for the target that has the problem 280 + if grep '^update_package_db' ghc-${version}*/Makefile > /dev/null; then 281 + echo Hadrian bindist, applying workaround for xxx path substitution. 282 + # based on https://gitlab.haskell.org/ghc/ghc/-/commit/dd5fecb0e2990b192d92f4dfd7519ecb33164fad.patch 283 + substituteInPlace ghc-${version}*/Makefile --replace 'xxx' '\0xxx\0' 284 + else 285 + echo Not a hadrian bindist, not applying xxx path workaround. 286 + fi 273 287 ''; 274 288 275 289 # fix for `configure: error: Your linker is affected by binutils #16177`
+2 -2
pkgs/development/compilers/ponyc/default.nix
··· 3 3 4 4 stdenv.mkDerivation (rec { 5 5 pname = "ponyc"; 6 - version = "0.49.0"; 6 + version = "0.50.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "ponylang"; 10 10 repo = pname; 11 11 rev = version; 12 - sha256 = "sha256-WS3/POC+2vdx6bA8314sjkdWCIWGu9lJG4kbKMWfnX8="; 12 + sha256 = "sha256-FnzlFTiJrqoUfnys+q9is6OH9yit5ExDiRszQ679QbY="; 13 13 14 14 fetchSubmodules = true; 15 15 };
+3 -3
pkgs/development/compilers/purescript/purescript/default.nix
··· 18 18 19 19 in stdenv.mkDerivation rec { 20 20 pname = "purescript"; 21 - version = "0.14.7"; 21 + version = "0.15.0"; 22 22 23 23 # These hashes can be updated automatically by running the ./update.sh script. 24 24 src = ··· 26 26 then 27 27 fetchurl { 28 28 url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz"; 29 - sha256 = "0pc07xv5h7jgiy04rcrnsjb97nk5zs7jrvcsqggn0izlnrcyi8rc"; 29 + sha256 = "09d9pwba6fzc08m3nkc7xni29yr12gw5fj00aa77n9kxmsba0fkb"; 30 30 } 31 31 else 32 32 fetchurl { 33 33 url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz"; 34 - sha256 = "0vcjxb1v76wg4hmisnw0pp6wl0pwp4fa19cw08zdhgy62w06mqfa"; 34 + sha256 = "1ygp6wvbgl3y15wq1q41j9kg2ndaxr32rpgbzfzyd9zb8n9z8lpx"; 35 35 }; 36 36 37 37
+1 -1
pkgs/development/compilers/purescript/purescript/test-minimal-module/Main.js
··· 1 1 "use strict" 2 2 3 - exports.log = function (s) { 3 + export const log = function (s) { 4 4 return function () { 5 5 console.log(s); 6 6 return {};
+2 -2
pkgs/development/compilers/purescript/purescript/test-minimal-module/default.nix
··· 3 3 runCommand "purescript-test-minimal-module" {} '' 4 4 ${purescript}/bin/purs compile -o ./output ${./.}/Main.purs 5 5 6 - echo 'require("./output/Main/index.js").main()' > node.js 6 + echo 'import {main} from "./output/Main/index.js"; main()' > node.mjs 7 7 8 - ${nodejs}/bin/node node.js | grep "hello world" || echo "did not output hello world" 8 + ${nodejs}/bin/node node.mjs | grep "hello world" || (echo "did not output hello world"; exit 1) 9 9 10 10 touch $out 11 11 ''
+22 -12
pkgs/development/haskell-modules/configuration-common.nix
··· 687 687 # https://github.com/pxqr/base32-bytestring/issues/4 688 688 base32-bytestring = dontCheck super.base32-bytestring; 689 689 690 - # 2022-03-24: Strict aeson bound: https://github.com/berberman/nvfetcher/pull/63 691 - nvfetcher = throwIfNot (super.nvfetcher.version == "0.4.0.0") "nvfetcher: remove jailbreak after update" doJailbreak super.nvfetcher; 692 - 693 690 # 2022-03-24: Strict aeson bound: 694 691 arch-web = throwIfNot (super.arch-web.version == "0.1.0") "arch-web: remove jailbreak after update" doJailbreak super.arch-web; 695 692 ··· 850 853 851 854 # test suite requires git and does a bunch of git operations 852 855 restless-git = dontCheck super.restless-git; 856 + 857 + # requires git at test-time *and* runtime, but we'll just rely on users to 858 + # bring their own git at runtime 859 + sensei = overrideCabal (drv: { 860 + testHaskellDepends = drv.testHaskellDepends or [] ++ [ self.hspec-meta_2_9_3 ]; 861 + testToolDepends = drv.testToolDepends or [] ++ [ pkgs.git ]; 862 + }) (super.sensei.overrideScope (self: super: { 863 + hspec-meta = self.hspec-meta_2_9_3; 864 + hspec = self.hspec_2_9_7; 865 + hspec-core = dontCheck self.hspec-core_2_9_7; 866 + hspec-discover = self.hspec-discover_2_9_7; 867 + })); 853 868 854 869 # Depends on broken fluid. 855 870 fluid-idl-http-client = markBroken super.fluid-idl-http-client; ··· 1162 1153 1163 1154 # https://github.com/danfran/cabal-macosx/issues/13 1164 1155 cabal-macosx = dontCheck super.cabal-macosx; 1156 + 1157 + # Causes Test.QuickCheck.resize: negative size crashes e.g. in test suites 1158 + # https://github.com/typeable/generic-arbitrary/issues/14 1159 + generic-arbitrary = appendPatches [ 1160 + (pkgs.fetchpatch { 1161 + name = "generic-arbitrary-no-negative-resize.patch"; 1162 + url = "https://github.com/typeable/generic-arbitrary/commit/c13d119d8ad0d43860ecdb93b357b0239e366a6c.patch"; 1163 + sha256 = "1jgbd2jn575icqw9nfdzh57nacm3pn8n53ka52129pnfjqfzyhsi"; 1164 + }) 1165 + ] super.generic-arbitrary; 1165 1166 1166 1167 # https://github.com/DanielG/cabal-helper/pull/123 1167 1168 cabal-helper = doJailbreak super.cabal-helper; ··· 2602 2583 2603 2584 # 2022-03-16: Upstream stopped updating bounds https://github.com/haskell-hvr/base-noprelude/pull/15 2604 2585 base-noprelude = doJailbreak super.base-noprelude; 2605 - 2606 - # Manually upgrade cryptostore to work around 2607 - # https://github.com/ocheron/cryptostore/issues/7 2608 - cryptostore = assert super.cryptostore.version == "0.2.1.0"; overrideCabal { 2609 - version = "0.2.2.0"; 2610 - sha256 = "0n70amg7y2qwfjhj4xaqjia46fbabba9l2g19ry191m7c4zp1skx"; 2611 - revision = null; 2612 - editedCabalFile = null; 2613 - } super.cryptostore; 2614 2586 2615 2587 # 2022-03-16: Bounds need to be loosened https://github.com/obsidiansystems/dependent-sum-aeson-orphans/issues/10 2616 2588 dependent-sum-aeson-orphans = doJailbreak super.dependent-sum-aeson-orphans;
+6
pkgs/development/haskell-modules/configuration-darwin.nix
··· 290 290 291 291 # https://github.com/haskell-crypto/cryptonite/issues/360 292 292 cryptonite = appendPatch ./patches/cryptonite-remove-argon2.patch super.cryptonite; 293 + 294 + } // lib.optionalAttrs pkgs.stdenv.isx86_64 { # x86_64-darwin 295 + 296 + # tests appear to be failing to link or something: 297 + # https://hydra.nixos.org/build/174540882/nixlog/9 298 + regex-rure = dontCheck super.regex-rure; 293 299 })
+7
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 130 130 131 131 # https://github.com/fpco/inline-c/issues/127 (recommend to upgrade to Nixpkgs GHC >=9.0) 132 132 inline-c-cpp = (if isDarwin then dontCheck else x: x) super.inline-c-cpp; 133 + 134 + # Depends on OneTuple for GHC < 9.0 135 + universe-base = addBuildDepends [ self.OneTuple ] super.universe-base; 136 + 137 + # Not possible to build in the main GHC 9.0 package set 138 + # https://github.com/awakesecurity/spectacle/issues/49 139 + spectacle = doDistribute (markUnbroken super.spectacle); 133 140 }
+3
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 162 162 163 163 # https://github.com/fpco/inline-c/issues/127 (recommend to upgrade to Nixpkgs GHC >=9.0) 164 164 inline-c-cpp = (if isDarwin then dontCheck else x: x) super.inline-c-cpp; 165 + 166 + # Depends on OneTuple for GHC < 9.0 167 + universe-base = addBuildDepends [ self.OneTuple ] super.universe-base; 165 168 }
+2 -1
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 80 80 constraints = doJailbreak super.constraints; 81 81 cpphs = overrideCabal (drv: { postPatch = "sed -i -e 's,time >=1.5 && <1.11,time >=1.5 \\&\\& <1.12,' cpphs.cabal";}) super.cpphs; 82 82 data-fix = doJailbreak super.data-fix; 83 + dbus = super.dbus_1_2_24; 83 84 dec = doJailbreak super.dec; 84 85 ed25519 = doJailbreak super.ed25519; 85 86 ghc-byteorder = doJailbreak super.ghc-byteorder; ··· 171 170 ]; 172 171 173 172 # lens >= 5.1 supports 9.2.1 174 - lens = super.lens_5_1; 173 + lens = doDistribute self.lens_5_1; 175 174 176 175 # Syntax error in tests fixed in https://github.com/simonmar/alex/commit/84b29475e057ef744f32a94bc0d3954b84160760 177 176 alex = dontCheck super.alex;
+10 -5
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 357 357 - binary-communicator 358 358 - binary-derive 359 359 - binary-ext 360 - - binary-generic-combinators 361 360 - binary-indexed-tree 362 361 - binary-protocol 363 362 - binary-tree ··· 668 669 - citeproc-hs 669 670 - cjk 670 671 - cj-token 672 + - cl3-hmatrix-interface 673 + - cl3-linear-interface 671 674 - clang-compilation-database 672 675 - clang-pure 673 676 - clanki ··· 1049 1048 - dense-int-set 1050 1049 - dependent-hashmap 1051 1050 - dependent-monoidal-map 1051 + - dep-t 1052 1052 - dep-t-dynamic 1053 1053 - deptrack-core 1054 1054 - derangement ··· 1210 1208 - dynamic-object 1211 1209 - dynamic-pipeline 1212 1210 - DynamicTimeWarp 1211 + - dyna-processing 1213 1212 - dynloader 1214 1213 - DysFRP 1215 1214 - dywapitchtrack ··· 1603 1600 - gegl 1604 1601 - gelatin 1605 1602 - gemcap 1603 + - gemini-exports 1606 1604 - gemstone 1607 1605 - gencheck 1608 1606 - gender ··· 1740 1736 - gli 1741 1737 - glicko 1742 1738 - glider-nlp 1739 + - glirc 1743 1740 - GLMatrix 1744 1741 - global-variables 1745 1742 - glob-posix ··· 1779 1774 - gpah 1780 1775 - GPipe 1781 1776 - GPipe-GLFW4 1777 + - gpmf 1782 1778 - gpx-conduit 1783 1779 - graceful 1784 1780 - grafana ··· 1896 1890 - hakyll-typescript 1897 1891 - HaLeX 1898 1892 - halfs 1893 + - half-space 1899 1894 - halipeto 1900 1895 - halive 1901 1896 - halma ··· 2110 2103 - hedgehog-checkers 2111 2104 - hedgehog-generic 2112 2105 - hedgehog-golden 2106 + - hedgehog-lens 2113 2107 - hedgehog-servant 2114 2108 - hedis-config 2115 2109 - hedis-namespace ··· 2902 2894 - lazify 2903 2895 - lazyarray 2904 2896 - lazyboy 2897 + - lazy-bracket 2905 2898 - lazy-priority-queue 2906 2899 - lazyset 2907 2900 - LazyVault ··· 3343 3334 - msgpack 3344 3335 - msgpack-binary 3345 3336 - msgpack-persist 3346 - - msgpack-types 3347 3337 - msh 3348 3338 - msi-kb-backlit 3349 3339 - MTGBuilder ··· 3608 3600 - open-signals 3609 3601 - opensoundcontrol-ht 3610 3602 - openssh-protocol 3611 - - opentelemetry-extra 3612 3603 - opentelemetry-http-client 3613 3604 - opentheory-char 3614 3605 - opentok ··· 4344 4337 - robin 4345 4338 - robots-txt 4346 4339 - roc-cluster 4347 - - roc-id 4348 4340 - roku-api 4349 4341 - rollbar-client 4350 4342 - rollbar-hs ··· 4473 4467 - semigroups-actions 4474 4468 - sendgrid-haskell 4475 4469 - sendgrid-v3 4476 - - sensei 4477 4470 - sensu-run 4478 4471 - sentry 4479 4472 - separated
+4
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 251 251 - mattermost-api 252 252 - mattermost-api-qc 253 253 - Unique 254 + libjared: 255 + - sensei 254 256 maralorn: 255 257 - cabal-fmt 256 258 - ema ··· 465 463 libmodbus: [ x86_64-darwin, aarch64-darwin ] 466 464 libsystemd-journal: [ x86_64-darwin, aarch64-darwin ] 467 465 libtelnet: [ x86_64-darwin, aarch64-darwin ] 466 + libvirt-hs: [ x86_64-darwin ] # spidermonkey is not supported on darwin 468 467 libzfs: [ x86_64-darwin, aarch64-darwin ] 469 468 linearEqSolver: [ aarch64-linux ] 470 469 linux-evdev: [ x86_64-darwin, aarch64-darwin ] ··· 508 505 scrypt: [ aarch64-linux, armv7l-linux ] # https://github.com/informatikr/scrypt/issues/8 509 506 sdl2-mixer: [ x86_64-darwin, aarch64-darwin ] 510 507 sdl2-ttf: [ x86_64-darwin, aarch64-darwin ] 508 + sensei: [ x86_64-darwin ] 511 509 synthesizer-alsa: [ x86_64-darwin, aarch64-darwin ] 512 510 taffybar: [ x86_64-darwin, aarch64-darwin ] 513 511 termonad: [ x86_64-darwin, aarch64-darwin ]
+47 -15
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.3 1 + # Stackage LTS 19.4 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 24 24 - aeson-casing ==0.2.0.0 25 25 - aeson-commit ==1.4 26 26 - aeson-compat ==0.3.10 27 + - aeson-diff ==1.1.0.12 27 28 - aeson-extra ==0.5.1 28 29 - aeson-generic-compat ==0.0.1.3 29 30 - aeson-optics ==1.1.1 ··· 118 117 - autoexporter ==2.0.0.1 119 118 - auto-update ==0.1.6 120 119 - aws-cloudfront-signed-cookies ==0.2.0.10 120 + - aws-xray-client ==0.1.0.2 121 + - aws-xray-client-persistent ==0.1.0.5 122 + - aws-xray-client-wai ==0.1.0.2 121 123 - backtracking ==0.1.0 122 124 - bank-holidays-england ==0.2.0.7 123 125 - barbies ==2.0.3.1 ··· 395 391 - conduino ==0.2.2.0 396 392 - conduit ==1.3.4.2 397 393 - conduit-aeson ==0.1.0.1 394 + - conduit-algorithms ==0.0.12.0 398 395 - conduit-combinators ==1.3.0 399 396 - conduit-concurrent-map ==0.1.1 400 397 - conduit-connection ==0.1.0.5 ··· 427 422 - convertible ==1.1.1.0 428 423 - cookie ==0.4.5 429 424 - copr-api ==0.1.0 430 - - core-data ==0.3.1.1 425 + - core-data ==0.3.2.1 431 426 - core-program ==0.4.5.1 432 - - core-telemetry ==0.1.9.2 427 + - core-telemetry ==0.1.9.3 433 428 - core-text ==0.3.5.0 434 429 - countable ==1.0 435 430 - covariance ==0.1.0.6 ··· 461 456 - crypto-pubkey-types ==0.4.3 462 457 - crypto-random ==0.0.9 463 458 - crypto-random-api ==0.2.0 464 - - cryptostore ==0.2.1.0 459 + - cryptostore ==0.2.2.0 465 460 - crypt-sha512 ==0 466 461 - csp ==1.4.0 467 462 - css-text ==0.1.3.0 ··· 510 505 - data-default-instances-unordered-containers ==0.0.1 511 506 - data-default-instances-vector ==0.0.1 512 507 - data-diverse ==4.7.0.0 508 + - datadog ==0.3.0.0 513 509 - data-dword ==0.3.2.1 514 510 - data-endian ==0.1.1 515 511 - data-fix ==0.3.2 ··· 686 680 - errors ==2.3.0 687 681 - errors-ext ==0.4.2 688 682 - ersatz ==0.4.10 689 - - esqueleto ==3.5.4.0 683 + - esqueleto ==3.5.4.1 690 684 - essence-of-live-coding ==0.2.6 691 685 - essence-of-live-coding-gloss ==0.2.6 692 686 - essence-of-live-coding-pulse ==0.2.6 ··· 1004 998 - haskell-src-meta ==0.8.9 1005 999 - haskey-btree ==0.3.0.1 1006 1000 - haskintex ==0.8.0.0 1007 - - haskoin-core ==0.21.1 1001 + - haskoin-core ==0.21.2 1008 1002 - hasktags ==0.72.0 1009 1003 - hasql ==1.5.0.2 1010 1004 - hasql-migration ==0.3.0 ··· 1017 1011 - has-transformers ==0.1.0.4 1018 1012 - hasty-hamiltonian ==1.3.4 1019 1013 - HaTeX ==3.22.3.1 1020 - - HaXml ==1.25.8 1014 + - HaXml ==1.25.9 1021 1015 - haxr ==3000.11.4.1 1022 1016 - HCodecs ==0.5.2 1023 1017 - hdaemonize ==0.5.6 ··· 1543 1537 - mmark-cli ==0.0.5.1 1544 1538 - mmark-ext ==0.2.1.5 1545 1539 - mmorph ==1.1.5 1546 - - mnist-idx ==0.1.3.0 1540 + - mnist-idx ==0.1.3.1 1547 1541 - mnist-idx-conduit ==0.4.0.0 1548 1542 - mockery ==0.3.5 1549 1543 - mock-time ==0.1.0 ··· 1753 1747 - pandoc-plot ==1.4.1 1754 1748 - pandoc-throw ==0.1.0.0 1755 1749 - pandoc-types ==1.22.2 1756 - - pantry ==0.5.4 1750 + - pantry ==0.5.5 1757 1751 - parallel ==3.2.2.0 1758 1752 - parallel-io ==0.3.5 1759 1753 - parameterized ==0.5.0.0 ··· 1803 1797 - perf ==0.9.0 1804 1798 - perfect-hash-generator ==0.2.0.6 1805 1799 - persist ==0.1.1.5 1806 - - persistent ==2.13.3.4 1800 + - persistent ==2.13.3.5 1807 1801 - persistent-discover ==0.1.0.5 1808 1802 - persistent-documentation ==0.1.0.4 1809 1803 - persistent-mongoDB ==2.13.0.1 ··· 1977 1971 - quickcheck-unicode ==1.0.1.0 1978 1972 - quicklz ==1.5.0.11 1979 1973 - quiet ==0.2 1980 - - quote-quot ==0.2.0.0 1974 + - quote-quot ==0.2.1.0 1981 1975 - radius ==0.7.1.0 1982 1976 - rainbow ==0.34.2.2 1983 1977 - rainbox ==0.26.0.0 ··· 2056 2050 - repa ==3.4.1.5 2057 2051 - repa-io ==3.4.1.2 2058 2052 - replace-attoparsec ==1.4.5.0 2059 - - replace-megaparsec ==1.4.4.0 2053 + - replace-megaparsec ==1.4.5.0 2060 2054 - repline ==0.4.0.0 2061 2055 - req ==3.10.0 2062 2056 - req-conduit ==1.0.1 ··· 2122 2116 - sandwich-quickcheck ==0.1.0.6 2123 2117 - sandwich-slack ==0.1.0.6 2124 2118 - say ==0.1.0.1 2125 - - sbp ==4.1.5 2119 + - sbp ==4.1.6 2126 2120 - sbv ==8.17 2127 2121 - scalpel ==0.6.2 2128 2122 - scalpel-core ==0.6.2 ··· 2467 2461 - text-ansi ==0.1.1 2468 2462 - text-binary ==0.2.1.1 2469 2463 - text-builder ==0.6.6.5 2470 - - text-builder-dev ==0.2.0.1 2464 + - text-builder-dev ==0.2.1 2471 2465 - text-conversions ==0.3.1 2472 2466 - text-icu ==0.7.1.0 2473 2467 - text-latin1 ==0.3.1 ··· 2849 2843 - yesod-newsfeed ==1.7.0.0 2850 2844 - yesod-page-cursor ==2.0.0.10 2851 2845 - yesod-paginator ==1.1.2.1 2852 - - yesod-persistent ==1.6.0.7 2846 + - yesod-persistent ==1.6.0.8 2853 2847 - yesod-recaptcha2 ==1.0.2 2854 2848 - yesod-routes-flow ==3.0.0.2 2855 2849 - yesod-sitemap ==1.6.0 2850 + - yesod-static ==1.6.1.0 2851 + - yesod-test ==1.6.12 2852 + - yesod-websockets ==0.3.0.3 2856 2853 - yes-precure5-command ==5.5.3 2854 + - yi-rope ==0.11 2855 + - yjsvg ==0.2.0.1 2856 + - yjtools ==0.9.18 2857 + - yoga ==0.0.0.5 2858 + - youtube ==0.2.1.1 2859 + - zenacy-html ==2.0.4 2860 + - zenacy-unicode ==1.0.1 2861 + - zero ==0.1.5 2862 + - zeromq4-haskell ==0.8.0 2863 + - zeromq4-patterns ==0.3.1.0 2864 + - zim-parser ==0.2.1.0 2865 + - zio ==0.1.0.2 2866 + - zip ==1.7.2 2867 + - zip-archive ==0.4.2.1 2868 + - zipper-extra ==0.1.3.2 2869 + - zippers ==0.3.2 2870 + - zip-stream ==0.2.1.0 2871 + - zlib ==0.6.2.3 2872 + - zlib-bindings ==0.1.1.5 2873 + - zlib-lens ==0.1.2.1 2874 + - zot ==0.0.3 2875 + - zstd ==0.1.3.0 2876 + - ztail ==1.2.0.3
+7 -4
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 663 663 - ascii 664 664 - ascii-cows 665 665 - ascii-table 666 + - ascii_1_2_0_0 666 667 - asic 667 668 - asif 668 669 - assert4hs-hspec ··· 1204 1203 - delimiter-separated 1205 1204 - delta 1206 1205 - delta-h 1206 + - dep-t-advice 1207 + - dep-t-value 1207 1208 - dependent-literals-plugin 1208 1209 - dependent-state 1209 1210 - depends ··· 2814 2811 - mptcp-pm 2815 2812 - mptcpanalyzer 2816 2813 - msgpack-aeson 2817 - - msgpack-arbitrary 2818 2814 - msgpack-idl 2819 2815 - msgpack-rpc 2820 2816 - msgpack-rpc-conduit 2821 - - msgpack-testsuite 2822 2817 - mtgoxapi 2823 2818 - mu-avro 2824 2819 - mu-graphql ··· 2968 2967 - openpgp-Crypto 2969 2968 - openpgp-crypto-api 2970 2969 - openssh-github-keys 2971 - - opentelemetry-lightstep 2972 - - opentelemetry-lightstep_0_8_0 2973 2970 - optima-for-hasql 2974 2971 - optimal-blocks 2975 2972 - optimusprime ··· 3324 3325 - regions-mtl 3325 3326 - registry-hedgehog 3326 3327 - registry-hedgehog-aeson 3328 + - registry-messagepack 3327 3329 - regular-extras 3328 3330 - regular-web 3329 3331 - regular-xmlpickler ··· 3764 3764 - sydtest-servant 3765 3765 - sydtest-typed-process 3766 3766 - sydtest-wai 3767 + - sydtest-webdriver 3768 + - sydtest-webdriver-screenshot 3769 + - sydtest-webdriver-yesod 3767 3770 - sydtest-yesod 3768 3771 - sylvia 3769 3772 - sym-plot
+1178 -365
pkgs/development/haskell-modules/hackage-packages.nix
··· 9846 9846 }: 9847 9847 mkDerivation { 9848 9848 pname = "HaXml"; 9849 - version = "1.25.8"; 9850 - sha256 = "1n65s75l4manb65msh9fz97dzqf9554x58bqdhyylgsgk84mfg80"; 9849 + version = "1.25.9"; 9850 + sha256 = "0ia27ffpdx59sa4mnyhks2bngrgaahwg150znnvnna30s9ncdfq1"; 9851 9851 isLibrary = true; 9852 9852 isExecutable = true; 9853 9853 libraryHaskellDepends = [ ··· 15539 15539 }) {}; 15540 15540 15541 15541 "PSQueue" = callPackage 15542 - ({ mkDerivation, base }: 15542 + ({ mkDerivation, base, QuickCheck }: 15543 15543 mkDerivation { 15544 15544 pname = "PSQueue"; 15545 - version = "1.1.0.1"; 15546 - sha256 = "1cik7sw10sacsijmfhghzy54gm1qcyxw14shlp86lx8z89kcnkza"; 15547 - revision = "2"; 15548 - editedCabalFile = "0n1yrv1x1dxbjn9hjr8lk4k5in9c75ixzldlmszayi26bvax7329"; 15545 + version = "1.1.1"; 15546 + sha256 = "02pgqzwxndi8cwa5fw668gfsh7z3lzbygkgcsf56bwrxwqjyz4bi"; 15549 15547 libraryHaskellDepends = [ base ]; 15548 + testHaskellDepends = [ base QuickCheck ]; 15550 15549 description = "Priority Search Queue"; 15551 15550 license = lib.licenses.bsd3; 15552 15551 hydraPlatforms = lib.platforms.none; ··· 25147 25148 ({ mkDerivation, aeson, base, inspection-testing }: 25148 25149 mkDerivation { 25149 25150 pname = "aeson-modern-tojson"; 25150 - version = "0.1.0.0"; 25151 - sha256 = "066yrs4r0ymsf62y1fjaim5l5dddgk7x1ng9m76j36zc8n0xwiqy"; 25151 + version = "0.1.1.0"; 25152 + sha256 = "0x1798k4kyndilnm7fpkl8cc4fgn2f3jc1f9x8j2dc8kjkhv1fv7"; 25152 25153 libraryHaskellDepends = [ aeson base ]; 25153 25154 testHaskellDepends = [ aeson base inspection-testing ]; 25154 25155 description = "Provide a handy way for derving ToJSON proprely"; ··· 25195 25196 ]; 25196 25197 description = "Law-abiding optics for aeson"; 25197 25198 license = lib.licenses.mit; 25199 + }) {}; 25200 + 25201 + "aeson-optics_1_2" = callPackage 25202 + ({ mkDerivation, aeson, attoparsec, base, bytestring, optics-core 25203 + , optics-extra, scientific, text, text-short, unordered-containers 25204 + , vector 25205 + }: 25206 + mkDerivation { 25207 + pname = "aeson-optics"; 25208 + version = "1.2"; 25209 + sha256 = "0p852w0ns9mkmydbhj1p3szvkw7pl83c0xaqhvn5jwdrpqj6ma74"; 25210 + libraryHaskellDepends = [ 25211 + aeson attoparsec base bytestring optics-core optics-extra 25212 + scientific text text-short unordered-containers vector 25213 + ]; 25214 + description = "Law-abiding optics for aeson"; 25215 + license = lib.licenses.mit; 25216 + hydraPlatforms = lib.platforms.none; 25198 25217 }) {}; 25199 25218 25200 25219 "aeson-options" = callPackage ··· 26100 26083 }: 26101 26084 mkDerivation { 26102 26085 pname = "airship"; 26103 - version = "0.9.4"; 26104 - sha256 = "03wawmbd1dcf9bmv9046q93gn6isdlpcyvzb7bp0awqmzaymyw4z"; 26086 + version = "0.9.5"; 26087 + sha256 = "1x38pda1g1g6ihl3c39s3wmspn2qq09887apinwlna5cxbxjf3pc"; 26105 26088 libraryHaskellDepends = [ 26106 26089 attoparsec base base64-bytestring blaze-builder bytestring 26107 26090 bytestring-trie case-insensitive containers cryptohash directory ··· 30788 30771 }: 30789 30772 mkDerivation { 30790 30773 pname = "annotated-exception"; 30791 - version = "0.1.2.1"; 30792 - sha256 = "06nzxm6vxli3jlj940vjxa4j8cg76v5l4za2w1w3j3z9lfzms0h9"; 30774 + version = "0.2.0.1"; 30775 + sha256 = "0lqr283ql82kfpd6rvznwj4p0h4176mg9xnb1wnzdxxbl9rn3xgl"; 30793 30776 libraryHaskellDepends = [ 30794 30777 base containers safe-exceptions text unliftio-core 30795 30778 ]; ··· 34071 34054 hydraPlatforms = lib.platforms.none; 34072 34055 }) {}; 34073 34056 34057 + "ascii_1_2_0_0" = callPackage 34058 + ({ mkDerivation, ascii-case, ascii-char, ascii-group, ascii-numbers 34059 + , ascii-predicates, ascii-superset, ascii-th, base, bytestring 34060 + , hedgehog, text 34061 + }: 34062 + mkDerivation { 34063 + pname = "ascii"; 34064 + version = "1.2.0.0"; 34065 + sha256 = "1m043s6030mwz4gam83nb1dyxsbkaar6i7cdvzjfgawv9gdpwkbb"; 34066 + libraryHaskellDepends = [ 34067 + ascii-case ascii-char ascii-group ascii-numbers ascii-predicates 34068 + ascii-superset ascii-th base bytestring text 34069 + ]; 34070 + testHaskellDepends = [ base hedgehog text ]; 34071 + description = "The ASCII character set and encoding"; 34072 + license = lib.licenses.asl20; 34073 + hydraPlatforms = lib.platforms.none; 34074 + }) {}; 34075 + 34074 34076 "ascii-art-to-unicode" = callPackage 34075 34077 ({ mkDerivation, base, comonad, doctest, strict }: 34076 34078 mkDerivation { ··· 34206 34170 broken = true; 34207 34171 }) {}; 34208 34172 34173 + "ascii-numbers_1_1_0_0" = callPackage 34174 + ({ mkDerivation, ascii-case, ascii-char, ascii-superset, base 34175 + , bytestring, hashable, hedgehog, invert, text 34176 + }: 34177 + mkDerivation { 34178 + pname = "ascii-numbers"; 34179 + version = "1.1.0.0"; 34180 + sha256 = "041qyhgksqchj3x09fbirxba7s31aicaqnk8185g2l70zgxjz6iv"; 34181 + libraryHaskellDepends = [ 34182 + ascii-case ascii-char ascii-superset base bytestring hashable text 34183 + ]; 34184 + testHaskellDepends = [ 34185 + ascii-case ascii-char ascii-superset base bytestring hashable 34186 + hedgehog invert text 34187 + ]; 34188 + description = "ASCII representations of numbers"; 34189 + license = lib.licenses.asl20; 34190 + hydraPlatforms = lib.platforms.none; 34191 + broken = true; 34192 + }) {}; 34193 + 34209 34194 "ascii-predicates" = callPackage 34210 34195 ({ mkDerivation, ascii-char, base, hedgehog }: 34211 34196 mkDerivation { ··· 34297 34240 testHaskellDepends = [ ascii-char base hedgehog text ]; 34298 34241 description = "Representing ASCII with refined supersets"; 34299 34242 license = lib.licenses.asl20; 34243 + }) {}; 34244 + 34245 + "ascii-superset_1_0_1_13" = callPackage 34246 + ({ mkDerivation, ascii-char, base, bytestring, hashable, hedgehog 34247 + , text 34248 + }: 34249 + mkDerivation { 34250 + pname = "ascii-superset"; 34251 + version = "1.0.1.13"; 34252 + sha256 = "0pf1awrx0bfpgyc96r1ycybgpy801iqxr8qf3vp9pvbnfava1v8s"; 34253 + libraryHaskellDepends = [ 34254 + ascii-char base bytestring hashable text 34255 + ]; 34256 + testHaskellDepends = [ ascii-char base hedgehog text ]; 34257 + description = "Representing ASCII with refined supersets"; 34258 + license = lib.licenses.asl20; 34259 + hydraPlatforms = lib.platforms.none; 34300 34260 }) {}; 34301 34261 34302 34262 "ascii-table" = callPackage ··· 39487 39413 pname = "base64-bytestring-type"; 39488 39414 version = "1.0.1"; 39489 39415 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 39490 - revision = "11"; 39491 - editedCabalFile = "0aj0av37xgxz6pyzwc8d3qr915a2d2pwz1g21ad8nd5ms4zpgz7l"; 39416 + revision = "12"; 39417 + editedCabalFile = "09ap4z85k3lncf27b2qzfks4lnjm8rzldmzvbik7il3ycc60dk5i"; 39492 39418 libraryHaskellDepends = [ 39493 39419 aeson base base-compat base64-bytestring binary bytestring cereal 39494 39420 deepseq hashable http-api-data QuickCheck serialise text ··· 41730 41656 ]; 41731 41657 description = "Combinators and utilities to make Generic-based deriving of Binary easier and more expressive"; 41732 41658 license = lib.licenses.bsd3; 41733 - hydraPlatforms = lib.platforms.none; 41734 - broken = true; 41735 41659 }) {}; 41736 41660 41737 41661 "binary-ieee754" = callPackage ··· 45378 45306 45379 45307 "bloodhound" = callPackage 45380 45308 ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers 45381 - , errors, exceptions, hashable, hspec, http-client, http-types 45382 - , microlens, microlens-aeson, mtl, network-uri, pretty-simple 45383 - , QuickCheck, quickcheck-arbitrary-template, quickcheck-properties 45384 - , scientific, semigroups, semver, temporary, text, time 45385 - , transformers, unix-compat, unordered-containers, vector 45309 + , errors, exceptions, generic-random, hashable, hspec, http-client 45310 + , http-types, microlens, microlens-aeson, mtl, network-uri 45311 + , pretty-simple, QuickCheck, quickcheck-properties, scientific 45312 + , semigroups, semver, temporary, text, time, transformers 45313 + , unix-compat, unordered-containers, vector 45386 45314 }: 45387 45315 mkDerivation { 45388 45316 pname = "bloodhound"; 45389 - version = "0.19.0.0"; 45390 - sha256 = "00kb7dr6xknws3pyx2qdapyb6b8sgbgjyn39vn052428ipyb3a6z"; 45317 + version = "0.19.1.0"; 45318 + sha256 = "0vflzwc90w69c78xpjldvgywl1ykn73wzq06501lnl6bwb07ahs0"; 45391 45319 libraryHaskellDepends = [ 45392 45320 aeson base blaze-builder bytestring containers exceptions hashable 45393 45321 http-client http-types mtl network-uri scientific semigroups semver ··· 45395 45323 ]; 45396 45324 testHaskellDepends = [ 45397 45325 aeson base blaze-builder bytestring containers errors exceptions 45398 - hashable hspec http-client http-types microlens microlens-aeson mtl 45399 - network-uri pretty-simple QuickCheck quickcheck-arbitrary-template 45326 + generic-random hashable hspec http-client http-types microlens 45327 + microlens-aeson mtl network-uri pretty-simple QuickCheck 45400 45328 quickcheck-properties scientific semigroups semver temporary text 45401 45329 time transformers unix-compat unordered-containers vector 45402 45330 ]; ··· 48787 48715 }: 48788 48716 mkDerivation { 48789 48717 pname = "bytebuild"; 48790 - version = "0.3.10.0"; 48791 - sha256 = "1g3ayqdvvszh0jp22xh04pj6g8sff8m1mk06i5f4a0yxxwpvj3bg"; 48718 + version = "0.3.11.0"; 48719 + sha256 = "0yxss8r5msgbp812xb0k1xsmil02zmh7n8nh7jdfkm8byf3l4saf"; 48792 48720 libraryHaskellDepends = [ 48793 48721 base byteslice bytestring haskell-src-meta integer-logarithms 48794 48722 natural-arithmetic primitive primitive-offset primitive-unlifted ··· 48803 48731 benchmarkHaskellDepends = [ 48804 48732 base byteslice gauge natural-arithmetic primitive text-short 48805 48733 ]; 48806 - description = "Serialize to a small byte arrays"; 48734 + description = "Build byte arrays"; 48807 48735 license = lib.licenses.bsd3; 48808 48736 }) {}; 48809 48737 ··· 49843 49771 }) {}; 49844 49772 49845 49773 "ca-patterns" = callPackage 49846 - ({ mkDerivation, base, parsec, text, vector }: 49774 + ({ mkDerivation, base, hspec, hspec-discover, parsec, text, vector 49775 + }: 49847 49776 mkDerivation { 49848 49777 pname = "ca-patterns"; 49849 - version = "0.1.0.0"; 49850 - sha256 = "1n5l7dxsci9dbrrngrc9q7f85i966i2vzidzrm3prjf8fq3i87b0"; 49778 + version = "0.2.0.0"; 49779 + sha256 = "1qqkkkv2qn7nmi7yrbj49836i9qkch63753smjyz9gj01mjqspbs"; 49851 49780 libraryHaskellDepends = [ base parsec text vector ]; 49781 + testHaskellDepends = [ base hspec vector ]; 49782 + testToolDepends = [ hspec-discover ]; 49852 49783 description = "Manipulate patterns in cellular automata, create and parse RLE files"; 49853 49784 license = lib.licenses.mit; 49854 49785 }) {}; ··· 51767 51692 , di-polysemy, exceptions, focus, generic-lens, hashable 51768 51693 , http-api-data, http-client, http-date, http-types, lens 51769 51694 , lens-aeson, megaparsec, mime-types, mtl, polysemy 51770 - , polysemy-plugin, PyF, reflection, req, safe-exceptions 51695 + , polysemy-plugin, PyF, random, reflection, req, safe-exceptions 51771 51696 , scientific, stm, stm-chans, stm-containers, text, text-show, time 51772 51697 , tls, typerep-map, unagi-chan, unboxing-vector 51773 51698 , unordered-containers, vector, websockets, x509-system 51774 51699 }: 51775 51700 mkDerivation { 51776 51701 pname = "calamity"; 51777 - version = "0.2.0.2"; 51778 - sha256 = "05yqh6prffcwdv4zl1xcw8p9xidrn95wffxjkiy5j5vh2yf5a7c0"; 51702 + version = "0.3.0.0"; 51703 + sha256 = "0cxcgm6xfwbqvzms8a6im7dl53p9pvhhjfakfjbr6vkg56jwn7a4"; 51779 51704 libraryHaskellDepends = [ 51780 51705 aeson async base bytestring calamity-commands colour 51781 51706 concurrent-extra connection containers data-default-class 51782 51707 data-flags deepseq deque df1 di-core di-polysemy exceptions focus 51783 51708 generic-lens hashable http-api-data http-client http-date 51784 51709 http-types lens lens-aeson megaparsec mime-types mtl polysemy 51785 - polysemy-plugin PyF reflection req safe-exceptions scientific stm 51786 - stm-chans stm-containers text text-show time tls typerep-map 51787 - unagi-chan unboxing-vector unordered-containers vector websockets 51788 - x509-system 51710 + polysemy-plugin PyF random reflection req safe-exceptions 51711 + scientific stm stm-chans stm-containers text text-show time tls 51712 + typerep-map unagi-chan unboxing-vector unordered-containers vector 51713 + websockets x509-system 51789 51714 ]; 51790 51715 description = "A library for writing discord bots in haskell"; 51791 51716 license = lib.licenses.mit; ··· 56932 56857 }) {}; 56933 56858 56934 56859 "cl3" = callPackage 56935 - ({ mkDerivation, base, criterion, deepseq, random }: 56860 + ({ mkDerivation, base, criterion, deepseq, massiv, random, time 56861 + , vector, weigh 56862 + }: 56936 56863 mkDerivation { 56937 56864 pname = "cl3"; 56938 - version = "2.0.0.0"; 56939 - sha256 = "0ibril0fjhm848za1grvpi6pdcshbxbfjwkflzh7zw4b9y5b7g89"; 56865 + version = "3.0.0.0"; 56866 + sha256 = "1x5pmmlhk1g4sq8gfrfpaiv20gamhnv3iwscp25pmhq6dwavf641"; 56940 56867 libraryHaskellDepends = [ base deepseq random ]; 56941 56868 testHaskellDepends = [ base criterion random ]; 56942 - benchmarkHaskellDepends = [ base criterion ]; 56869 + benchmarkHaskellDepends = [ 56870 + base criterion massiv time vector weigh 56871 + ]; 56943 56872 description = "Clifford Algebra of three dimensional space"; 56944 56873 license = lib.licenses.bsd3; 56945 56874 }) {}; ··· 56957 56878 libraryHaskellDepends = [ base cl3 hmatrix ]; 56958 56879 description = "Interface to/from Cl3 and HMatrix"; 56959 56880 license = lib.licenses.bsd3; 56881 + hydraPlatforms = lib.platforms.none; 56882 + broken = true; 56960 56883 }) {}; 56961 56884 56962 56885 "cl3-linear-interface" = callPackage ··· 56970 56889 libraryHaskellDepends = [ base cl3 linear ]; 56971 56890 description = "Interface to/from Cl3 and Linear"; 56972 56891 license = lib.licenses.bsd3; 56892 + hydraPlatforms = lib.platforms.none; 56893 + broken = true; 56973 56894 }) {}; 56974 56895 56975 56896 "clac" = callPackage ··· 57673 57590 }: 57674 57591 mkDerivation { 57675 57592 pname = "clckwrks"; 57676 - version = "0.27.2"; 57677 - sha256 = "088wx15f81h45ykhibq7ays5yn2ivwvgffaa459r6b6v53npkqkr"; 57593 + version = "0.28.0"; 57594 + sha256 = "11cr4mql6jhskhk1hg2c7kkvv005bha7y9b3ccpgy1147grnp00m"; 57678 57595 enableSeparateDataOutput = true; 57679 57596 libraryHaskellDepends = [ 57680 57597 acid-state aeson aeson-qq attoparsec base blaze-html bytestring ··· 57700 57617 }: 57701 57618 mkDerivation { 57702 57619 pname = "clckwrks-cli"; 57703 - version = "0.3.0.4"; 57704 - sha256 = "17ifv0awgx7fylc1pbdcdq9l8wl2shr6fy65rgb0xjv3zxnwx4i8"; 57620 + version = "0.3.0.5"; 57621 + sha256 = "198iixfqnv28vgx53dnyg4fn5a0g5lc0ybfr6z959xv02w6cfrqm"; 57705 57622 isLibrary = true; 57706 57623 isExecutable = true; 57707 57624 libraryHaskellDepends = [ ··· 60714 60631 "colour-space" = callPackage 60715 60632 ({ mkDerivation, base, call-stack, colour, constrained-categories 60716 60633 , JuicyPixels, lens, linear, linearmap-category, manifolds 60717 - , semigroups, vector-space 60634 + , manifolds-core, QuickCheck, random, semigroups, tasty 60635 + , tasty-quickcheck, vector-space 60718 60636 }: 60719 60637 mkDerivation { 60720 60638 pname = "colour-space"; 60721 - version = "0.1.5.1"; 60722 - sha256 = "18aqmppmq3czq38yn3rdblj6klvnax64jbkc524v9lsj45d7si43"; 60639 + version = "0.2.0.0"; 60640 + sha256 = "1ca62s0xdhc14jr123bzxpwqjaf8y8nakrm7a52srryr0d3mz7hg"; 60723 60641 libraryHaskellDepends = [ 60724 60642 base call-stack colour constrained-categories JuicyPixels lens 60725 - linear linearmap-category manifolds semigroups vector-space 60643 + linear linearmap-category manifolds manifolds-core QuickCheck 60644 + semigroups vector-space 60645 + ]; 60646 + testHaskellDepends = [ 60647 + base colour constrained-categories manifolds manifolds-core 60648 + QuickCheck random tasty tasty-quickcheck vector-space 60726 60649 ]; 60727 60650 description = "Instances of the manifold-classes for colour types"; 60728 60651 license = lib.licenses.gpl3Only; ··· 65404 65315 }: 65405 65316 mkDerivation { 65406 65317 pname = "contiguous"; 65407 - version = "0.6.1.1"; 65408 - sha256 = "0r1l2qpnmv8xbf5wk7ibcmn9ry9xab7r0v84a1srqlm1dxr9xmh3"; 65318 + version = "0.6.2.0"; 65319 + sha256 = "0ykd3nrc2ywf3svrkqsvvhycjf6hf5jm5dhhd3zpl57877r5cz72"; 65409 65320 libraryHaskellDepends = [ 65410 65321 base deepseq primitive primitive-unlifted run-st 65411 65322 ]; ··· 66374 66285 }: 66375 66286 mkDerivation { 66376 66287 pname = "core-data"; 66377 - version = "0.3.1.1"; 66378 - sha256 = "0i11m2k1xb97f0plvp9g7l4zhp9d1njn9z7xfhcmghbvlkk82vx2"; 66288 + version = "0.3.2.1"; 66289 + sha256 = "11ajh9lc3lg08czca18sn9jmb74skwdw0avzwimqphzvbkhdc0xj"; 66379 66290 libraryHaskellDepends = [ 66380 66291 aeson base bytestring containers core-text hashable prettyprinter 66381 66292 scientific text unordered-containers vector ··· 66430 66341 }: 66431 66342 mkDerivation { 66432 66343 pname = "core-telemetry"; 66433 - version = "0.1.9.2"; 66434 - sha256 = "07gb8ms3kchjvc0xbh36s1hzcmxaaci78gjgzdnkzap3lisjgcf0"; 66344 + version = "0.1.9.3"; 66345 + sha256 = "0rx2ji7g5a8bw7p394j52b3nj591h2d4zdvwryyxlwhg3y46iiv7"; 66435 66346 libraryHaskellDepends = [ 66436 66347 async base bytestring chronologique core-data core-program 66437 66348 core-text exceptions http-streams io-streams mtl network-info ··· 69088 68999 }: 69089 69000 mkDerivation { 69090 69001 pname = "cryptostore"; 69091 - version = "0.2.1.0"; 69092 - sha256 = "03y9xdjnraa7kyj3c79rqzw9lqw1csww21assxhjkjyid1ps4gn5"; 69002 + version = "0.2.2.0"; 69003 + sha256 = "0n70amg7y2qwfjhj4xaqjia46fbabba9l2g19ry191m7c4zp1skx"; 69093 69004 libraryHaskellDepends = [ 69094 69005 asn1-encoding asn1-types base basement bytestring cryptonite 69095 69006 hourglass memory pem x509 x509-validation ··· 70395 70306 ]; 70396 70307 hydraPlatforms = lib.platforms.none; 70397 70308 broken = true; 70398 - }) {inherit (pkgs) pocketsphinx; inherit (pkgs) sphinxbase;}; 70309 + }) {pocketsphinx = null; sphinxbase = null;}; 70399 70310 70400 70311 "cutter" = callPackage 70401 70312 ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet ··· 70447 70358 70448 70359 "cybus" = callPackage 70449 70360 ({ mkDerivation, adjunctions, base, checkers, deepseq, distributive 70450 - , indexed-traversable, lens, mtl, pos, pretty-simple, primus 70451 - , profunctors, QuickCheck, semigroupoids, tasty, tasty-hunit 70452 - , tasty-quickcheck, these, transformers, vector 70361 + , indexed-traversable, lens, mtl, pos, primus, profunctors 70362 + , QuickCheck, semigroupoids, tasty, tasty-hunit, tasty-quickcheck 70363 + , these, transformers, vector 70453 70364 }: 70454 70365 mkDerivation { 70455 70366 pname = "cybus"; 70456 - version = "0.2.0.0"; 70457 - sha256 = "01bzczqs7r7c2wfpzn1c6xfnhr910yy6kzzvlx2qhp5d8wml32wj"; 70367 + version = "0.3.0.0"; 70368 + sha256 = "1difprnmylgaa9g35s5w32q6wp8awnvv3cpw0vprvmdiyvwb4hf0"; 70458 70369 isLibrary = true; 70459 70370 isExecutable = true; 70460 70371 libraryHaskellDepends = [ ··· 70467 70378 ]; 70468 70379 testHaskellDepends = [ 70469 70380 adjunctions base checkers deepseq distributive indexed-traversable 70470 - lens mtl pos pretty-simple primus profunctors QuickCheck 70471 - semigroupoids tasty tasty-hunit tasty-quickcheck these transformers 70472 - vector 70381 + lens mtl pos primus profunctors QuickCheck semigroupoids tasty 70382 + tasty-hunit tasty-quickcheck these transformers vector 70473 70383 ]; 70474 70384 description = "multi-dimensional arrays"; 70475 70385 license = lib.licenses.bsd3; ··· 75346 75258 }: 75347 75259 mkDerivation { 75348 75260 pname = "dep-t"; 75349 - version = "0.6.1.0"; 75350 - sha256 = "093zic45a0q3lr0shhc0yjp5gclskyk7ipva0khsqgk2wrqgwqx6"; 75351 - revision = "1"; 75352 - editedCabalFile = "126h9isb8lzrqvf1rgl7n95snjzj181mkxn6qhbl8jg4rxn2zj3l"; 75261 + version = "0.6.2.0"; 75262 + sha256 = "1wpb5p07vvny0bhapi87iwh43nykgy6b25xmsxsp403mbnv9g9ws"; 75353 75263 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 75354 75264 testHaskellDepends = [ 75355 75265 aeson barbies base bytestring containers doctest mtl rank2classes ··· 75356 75270 ]; 75357 75271 description = "Dependency injection for records-of-functions"; 75358 75272 license = lib.licenses.bsd3; 75273 + hydraPlatforms = lib.platforms.none; 75274 + broken = true; 75359 75275 }) {}; 75360 75276 75361 75277 "dep-t-advice" = callPackage ··· 75385 75297 ]; 75386 75298 description = "Giving good advice to functions in records-of-functions"; 75387 75299 license = lib.licenses.bsd3; 75300 + hydraPlatforms = lib.platforms.none; 75388 75301 }) {}; 75389 75302 75390 75303 "dep-t-dynamic" = callPackage ··· 75396 75307 }: 75397 75308 mkDerivation { 75398 75309 pname = "dep-t-dynamic"; 75399 - version = "0.1.0.1"; 75400 - sha256 = "1wa68s5mcsgwchdm0xm2qcgpxvcxi6banmjzyfq1dn6wzj8028vn"; 75310 + version = "0.1.0.2"; 75311 + sha256 = "0dv7ydxqgmgphcjgphrdf6jghkykvg5nnppgpgglwi2rg7yfmp7i"; 75401 75312 libraryHaskellDepends = [ 75402 75313 algebraic-graphs base dep-t hashable sop-core transformers 75403 75314 unordered-containers ··· 75412 75323 license = lib.licenses.bsd3; 75413 75324 hydraPlatforms = lib.platforms.none; 75414 75325 broken = true; 75326 + }) {}; 75327 + 75328 + "dep-t-value" = callPackage 75329 + ({ mkDerivation, aeson, base, bytestring, containers, dep-t 75330 + , directory, filepath, mtl, split, tasty, tasty-hunit, text 75331 + , transformers, unliftio-core 75332 + }: 75333 + mkDerivation { 75334 + pname = "dep-t-value"; 75335 + version = "0.1.0.0"; 75336 + sha256 = "0zyhqv60n392zvl70fx69l8h8r8syn3s184ccjg9bc3wq5xd6p4y"; 75337 + libraryHaskellDepends = [ 75338 + aeson base bytestring containers dep-t directory filepath mtl split 75339 + text transformers unliftio-core 75340 + ]; 75341 + testHaskellDepends = [ 75342 + aeson base bytestring containers dep-t directory filepath mtl split 75343 + tasty tasty-hunit text transformers unliftio-core 75344 + ]; 75345 + description = "Pair resources files with types within your program"; 75346 + license = lib.licenses.bsd3; 75347 + hydraPlatforms = lib.platforms.none; 75415 75348 }) {}; 75416 75349 75417 75350 "dependency" = callPackage ··· 79410 79299 pname = "discord-haskell-voice"; 79411 79300 version = "2.2.2"; 79412 79301 sha256 = "0vbp8xdvb9ci49l1ifqghbv6smqx0ll902957yyxym6yj2xjfpmv"; 79413 - revision = "2"; 79414 - editedCabalFile = "11dylm637a0wgvdmk47rhznhfkvdssfl52mnaf3wmqvd3axfh1id"; 79302 + revision = "3"; 79303 + editedCabalFile = "0fpm9ch866d0aispl1priz6knkf1q5b99vhjyz6c4nm5p2gl89mc"; 79415 79304 isLibrary = true; 79416 79305 isExecutable = true; 79417 79306 libraryHaskellDepends = [ ··· 83952 83841 license = lib.licenses.bsd3; 83953 83842 }) {}; 83954 83843 83844 + "dyna" = callPackage 83845 + ({ mkDerivation, async, base, Boolean, lifted-async, lifted-base 83846 + , monad-control, MonadRandom, mtl, random, stm, temporal-media 83847 + , time, unagi-chan, unbounded-delays, vector, vector-space 83848 + }: 83849 + mkDerivation { 83850 + pname = "dyna"; 83851 + version = "0.1.0.0"; 83852 + sha256 = "100ln6v4h2lx71pkzhxvfw7hgsld8xp828bhmn0985am82gd445i"; 83853 + libraryHaskellDepends = [ 83854 + async base Boolean lifted-async lifted-base monad-control 83855 + MonadRandom mtl random stm temporal-media time unagi-chan 83856 + unbounded-delays vector vector-space 83857 + ]; 83858 + testHaskellDepends = [ base ]; 83859 + description = "Minimal FRP library"; 83860 + license = lib.licenses.bsd3; 83861 + }) {}; 83862 + 83863 + "dyna-brick" = callPackage 83864 + ({ mkDerivation, base, Boolean, brick, data-default, dyna 83865 + , lifted-base, monad-control, MonadRandom, mtl, random, stm 83866 + , temporal-media, text, time, transformers-base, unagi-chan 83867 + , vector-space, vty 83868 + }: 83869 + mkDerivation { 83870 + pname = "dyna-brick"; 83871 + version = "0.1.0.0"; 83872 + sha256 = "018da74l17s2fsdbsnwn4yjlwd02yjp25ahfgvpw9wn7vx3syzdq"; 83873 + libraryHaskellDepends = [ 83874 + base Boolean brick data-default dyna lifted-base monad-control 83875 + MonadRandom mtl random stm temporal-media text time 83876 + transformers-base unagi-chan vector-space vty 83877 + ]; 83878 + testHaskellDepends = [ base ]; 83879 + description = "FRP for brick Terminal user interface library"; 83880 + license = lib.licenses.bsd3; 83881 + }) {}; 83882 + 83883 + "dyna-gloss" = callPackage 83884 + ({ mkDerivation, base, Boolean, dyna, gloss, lifted-base 83885 + , monad-control, MonadRandom, mtl, random, stm, temporal-media 83886 + , time, transformers-base, unagi-chan, vector-space 83887 + }: 83888 + mkDerivation { 83889 + pname = "dyna-gloss"; 83890 + version = "0.1.0.0"; 83891 + sha256 = "00797q1sqsbm9jk7jfkb9gjmrx6c6qbz9p1a31iak5g9ws8i41b7"; 83892 + libraryHaskellDepends = [ 83893 + base Boolean dyna gloss lifted-base monad-control MonadRandom mtl 83894 + random stm temporal-media time transformers-base unagi-chan 83895 + vector-space 83896 + ]; 83897 + testHaskellDepends = [ base ]; 83898 + description = "FRP for gloss graphics and animation library"; 83899 + license = lib.licenses.bsd3; 83900 + }) {}; 83901 + 83902 + "dyna-processing" = callPackage 83903 + ({ mkDerivation, base, Boolean, dyna, lifted-base, monad-control 83904 + , MonadRandom, mtl, processing-for-haskell, random, stm 83905 + , temporal-media, time, transformers-base, unagi-chan, vector-space 83906 + }: 83907 + mkDerivation { 83908 + pname = "dyna-processing"; 83909 + version = "0.1.0.0"; 83910 + sha256 = "05yss5zxibic1i1sdwnl8c8lp6g6fn7jcmg9bivvk4v33wf3xahn"; 83911 + libraryHaskellDepends = [ 83912 + base Boolean dyna lifted-base monad-control MonadRandom mtl 83913 + processing-for-haskell random stm temporal-media time 83914 + transformers-base unagi-chan vector-space 83915 + ]; 83916 + testHaskellDepends = [ base ]; 83917 + description = "FRP library for processing-for-haskell package"; 83918 + license = lib.licenses.bsd3; 83919 + hydraPlatforms = lib.platforms.none; 83920 + broken = true; 83921 + }) {}; 83922 + 83955 83923 "dynamic" = callPackage 83956 83924 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cassava 83957 83925 , containers, http-conduit, text, unordered-containers, vector ··· 84212 84022 }: 84213 84023 mkDerivation { 84214 84024 pname = "dynamic-plot"; 84215 - version = "0.4.1.0"; 84216 - sha256 = "1nly6ra0kd72q42hiaqism94vmyg5hp4ppyd024iiq9pcbgpq7r6"; 84217 - revision = "2"; 84218 - editedCabalFile = "1nszn52hpimz5hnkd6q0gsv6cv8rl3g1h939bhr41x2fr5bjzimi"; 84025 + version = "0.4.2.0"; 84026 + sha256 = "08zw03fijlshqkfx6vp97qhifz6air0yz9wkjn20k4laki9krkyy"; 84219 84027 libraryHaskellDepends = [ 84220 84028 base colour colour-space constrained-categories containers 84221 84029 data-default deepseq diagrams-cairo diagrams-core diagrams-gtk ··· 88874 88686 }) {}; 88875 88687 88876 88688 "espial" = callPackage 88877 - ({ mkDerivation, aeson, attoparsec, base, bcrypt, blaze-html 88878 - , bytestring, case-insensitive, classy-prelude 88689 + ({ mkDerivation, aeson, attoparsec, base, base64, bcrypt 88690 + , blaze-html, bytestring, case-insensitive, classy-prelude 88879 88691 , classy-prelude-conduit, classy-prelude-yesod, conduit, connection 88880 - , containers, data-default, directory, entropy, esqueleto 88881 - , fast-logger, file-embed, foreign-store, hjsmin, hscolour, hspec 88882 - , html-entities, http-api-data, http-client, http-client-tls 88883 - , http-conduit, http-types, iso8601-time, microlens, monad-logger 88884 - , mtl, optparse-applicative, optparse-generic, parser-combinators 88885 - , persistent, persistent-sqlite, persistent-template, pretty-show 88886 - , safe, shakespeare, template-haskell, text, time, transformers 88692 + , containers, cryptohash-sha256, data-default, directory, entropy 88693 + , esqueleto, fast-logger, file-embed, foreign-store, hjsmin 88694 + , hscolour, hspec, html-entities, http-api-data, http-client 88695 + , http-client-tls, http-conduit, http-types, iso8601-time 88696 + , microlens, monad-logger, mtl, optparse-applicative 88697 + , optparse-generic, parser-combinators, persistent 88698 + , persistent-sqlite, persistent-template, pretty-show, safe 88699 + , shakespeare, template-haskell, text, time, transformers 88887 88700 , unordered-containers, vector, wai, wai-extra, wai-logger, warp 88888 88701 , yaml, yesod, yesod-auth, yesod-core, yesod-form, yesod-newsfeed 88889 88702 , yesod-static, yesod-test 88890 88703 }: 88891 88704 mkDerivation { 88892 88705 pname = "espial"; 88893 - version = "0.0.10"; 88894 - sha256 = "01xbnif1wwfr6w9mnc6fpsnf8vnfdi3r1gcg8gwdsg7mjxvjc0w1"; 88706 + version = "0.0.11"; 88707 + sha256 = "1y3hvrwb6sg2vgjrxakl27gh9i1kr8x4l64jc6sfxqx4gvrgi338"; 88895 88708 isLibrary = true; 88896 88709 isExecutable = true; 88897 88710 libraryHaskellDepends = [ 88898 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88899 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88900 - connection containers data-default directory entropy esqueleto 88711 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88712 + case-insensitive classy-prelude classy-prelude-conduit 88713 + classy-prelude-yesod conduit connection containers 88714 + cryptohash-sha256 data-default directory entropy esqueleto 88901 88715 fast-logger file-embed foreign-store hjsmin hscolour html-entities 88902 88716 http-api-data http-client http-client-tls http-conduit http-types 88903 88717 iso8601-time microlens monad-logger mtl parser-combinators ··· 88909 88719 yesod yesod-auth yesod-core yesod-form yesod-newsfeed yesod-static 88910 88720 ]; 88911 88721 executableHaskellDepends = [ 88912 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88913 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88914 - connection containers data-default directory entropy esqueleto 88722 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88723 + case-insensitive classy-prelude classy-prelude-conduit 88724 + classy-prelude-yesod conduit connection containers 88725 + cryptohash-sha256 data-default directory entropy esqueleto 88915 88726 fast-logger file-embed foreign-store hjsmin hscolour html-entities 88916 88727 http-api-data http-client http-client-tls http-conduit http-types 88917 88728 iso8601-time microlens monad-logger mtl optparse-applicative ··· 88923 88732 yesod-newsfeed yesod-static 88924 88733 ]; 88925 88734 testHaskellDepends = [ 88926 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88927 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88928 - connection containers data-default directory entropy esqueleto 88735 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88736 + case-insensitive classy-prelude classy-prelude-conduit 88737 + classy-prelude-yesod conduit connection containers 88738 + cryptohash-sha256 data-default directory entropy esqueleto 88929 88739 fast-logger file-embed foreign-store hjsmin hscolour hspec 88930 88740 html-entities http-api-data http-client http-client-tls 88931 88741 http-conduit http-types iso8601-time microlens monad-logger mtl ··· 88952 88760 }: 88953 88761 mkDerivation { 88954 88762 pname = "esqueleto"; 88955 - version = "3.5.4.0"; 88956 - sha256 = "1c38kx04nkk68bj76mkbjbmw9fhb3ljn3j8mwsls6q7m4z49m6yy"; 88763 + version = "3.5.4.1"; 88764 + sha256 = "05jnsaxmc5y1mh6n52agv9rfh6s11fidd30mr5f1f53568dw9c95"; 88957 88765 libraryHaskellDepends = [ 88958 88766 aeson attoparsec base blaze-html bytestring conduit containers 88959 88767 monad-logger persistent resourcet tagged text time transformers ··· 100201 100009 pname = "fsnotify"; 100202 100010 version = "0.3.0.1"; 100203 100011 sha256 = "19bdbz9wb9jvln6yg6qm0hz0w84bypvkxf0wjhgrgd52f9gidlny"; 100204 - revision = "1"; 100205 - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; 100012 + revision = "2"; 100013 + editedCabalFile = "12m0y5583plk9pikvwqy1rc0yyvicxf8j5nz0nwxb4grsgfqrv7v"; 100206 100014 libraryHaskellDepends = [ 100207 100015 async base bytestring containers directory filepath hinotify shelly 100208 100016 text time unix unix-compat ··· 101348 101156 , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 101349 101157 , directory, directory-tree, dlist, file-embed, filepath, free 101350 101158 , futhark-data, futhark-manifest, futhark-server, githash, half 101351 - , happy, haskeline, language-c-quote, mainland-pretty, megaparsec 101352 - , mtl, neat-interpolation, parallel, parser-combinators, process 101353 - , process-extras, QuickCheck, random, regex-tdfa, srcloc, tasty 101354 - , tasty-hunit, tasty-quickcheck, template-haskell, temporary 101355 - , terminal-size, text, time, transformers, vector, versions 101356 - , zip-archive, zlib 101159 + , happy, haskeline, hslogger, language-c-quote, lens, lsp 101160 + , mainland-pretty, megaparsec, mtl, mwc-random, neat-interpolation 101161 + , parallel, parser-combinators, process, process-extras, QuickCheck 101162 + , random, regex-tdfa, srcloc, statistics, tasty, tasty-hunit 101163 + , tasty-quickcheck, template-haskell, temporary, terminal-size 101164 + , text, time, transformers, vector, versions, zip-archive, zlib 101357 101165 }: 101358 101166 mkDerivation { 101359 101167 pname = "futhark"; 101360 - version = "0.21.8"; 101361 - sha256 = "16qvrmqrfsnj11f59xkb3cgibd1wq80bcssjfzbicwmrlxi86im6"; 101168 + version = "0.21.10"; 101169 + sha256 = "0mm0awd1sf5sfb6i1yjbcm67j2nhqpfnn11q8p61z3b2py6lnzzf"; 101362 101170 isLibrary = true; 101363 101171 isExecutable = true; 101364 101172 libraryHaskellDepends = [ ··· 101366 101174 bmp bytestring bytestring-to-vector cmark-gfm containers 101367 101175 cryptohash-md5 directory directory-tree dlist file-embed filepath 101368 101176 free futhark-data futhark-manifest futhark-server githash half 101369 - haskeline language-c-quote mainland-pretty megaparsec mtl 101370 - neat-interpolation parallel process process-extras random 101371 - regex-tdfa srcloc template-haskell temporary terminal-size text 101372 - time transformers vector versions zip-archive zlib 101177 + haskeline hslogger language-c-quote lens lsp mainland-pretty 101178 + megaparsec mtl mwc-random neat-interpolation parallel process 101179 + process-extras random regex-tdfa srcloc statistics template-haskell 101180 + temporary terminal-size text time transformers vector versions 101181 + zip-archive zlib 101373 101182 ]; 101374 101183 libraryToolDepends = [ alex happy ]; 101375 101184 executableHaskellDepends = [ base text ]; ··· 102700 102507 ]; 102701 102508 description = "a simple Gemini capsule (server)"; 102702 102509 license = lib.licenses.agpl3Plus; 102510 + hydraPlatforms = lib.platforms.none; 102511 + broken = true; 102512 + }) {}; 102513 + 102514 + "gemini-exports" = callPackage 102515 + ({ mkDerivation, aeson, base, base64, bytestring, cassava, cmdargs 102516 + , containers, cryptonite, directory, hedgehog, http-client 102517 + , http-types, mtl, raw-strings-qq, req, safe-exceptions, scientific 102518 + , tasty, tasty-hedgehog, tasty-hunit, text, time, xdg-basedir, yaml 102519 + }: 102520 + mkDerivation { 102521 + pname = "gemini-exports"; 102522 + version = "0.1.0.0"; 102523 + sha256 = "0a50mb0na1b595gpbq8ynisg6g6dispjgz1dj2gc51k6q618jgly"; 102524 + isLibrary = true; 102525 + isExecutable = true; 102526 + libraryHaskellDepends = [ 102527 + aeson base base64 bytestring cassava cmdargs containers cryptonite 102528 + directory http-client http-types mtl raw-strings-qq req 102529 + safe-exceptions scientific text time xdg-basedir yaml 102530 + ]; 102531 + executableHaskellDepends = [ base ]; 102532 + testHaskellDepends = [ 102533 + base hedgehog tasty tasty-hedgehog tasty-hunit 102534 + ]; 102535 + description = "Generate CSV Exports of Your Gemini Trades, Transfers, & Earn Transactions"; 102536 + license = lib.licenses.bsd3; 102703 102537 hydraPlatforms = lib.platforms.none; 102704 102538 broken = true; 102705 102539 }) {}; ··· 105163 104943 pname = "ghc-debug-common"; 105164 104944 version = "0.2.0.0"; 105165 104945 sha256 = "1fw9whgh2zayvaagn1f7x1qkwvznpjhpn4zkfnfav24pkmpf5ijy"; 105166 - revision = "1"; 105167 - editedCabalFile = "0p4n8ralbf8jsydjb1q42avrzya09hf0pq5zp1s1ggx3gm3q7ra8"; 104946 + revision = "2"; 104947 + editedCabalFile = "1cq2bgq9n6295912p8bfwkrg9jqx36x4zxzj468pkr3dsfhjqr23"; 105168 104948 libraryHaskellDepends = [ 105169 104949 array base binary bytestring containers cpu deepseq directory 105170 104950 dom-lt filepath ghc-debug-convention ghc-heap hashable transformers ··· 105196 104976 pname = "ghc-debug-stub"; 105197 104977 version = "0.2.0.0"; 105198 104978 sha256 = "1zi388jwdad9qlj1v0ihrv67abknbhh7scr1fymc808xmkkwk701"; 104979 + revision = "1"; 104980 + editedCabalFile = "0irnhf32ghxch8r0p2vd7afj3282a1r9lval2an2mj99kcllhl6d"; 105199 104981 libraryHaskellDepends = [ 105200 104982 base directory filepath ghc-debug-convention ghc-prim 105201 104983 ]; ··· 105223 105001 }: 105224 105002 mkDerivation { 105225 105003 pname = "ghc-dump-core"; 105226 - version = "0.1.2.0"; 105227 - sha256 = "0yv811iyjx4iklj44bhipmiwlxl8bx27866i32icnl5ds86ws7la"; 105004 + version = "0.2.1.0"; 105005 + sha256 = "01qbim2chc8kh76pza30nd5hgf4816ki130m71ajpsjghh34xrd9"; 105228 105006 libraryHaskellDepends = [ 105229 105007 base bytestring directory filepath ghc serialise text 105230 105008 ]; ··· 105261 105039 }) {}; 105262 105040 105263 105041 "ghc-dump-util" = callPackage 105264 - ({ mkDerivation, ansi-wl-pprint, base, bytestring, ghc-dump-core 105265 - , hashable, optparse-applicative, regex-tdfa, serialise, text 105042 + ({ mkDerivation, ansi-terminal, base, bytestring, ghc-dump-core 105043 + , hashable, lucid, optparse-applicative, prettyprinter 105044 + , prettyprinter-ansi-terminal, regex-tdfa, serialise, text 105266 105045 , unordered-containers 105267 105046 }: 105268 105047 mkDerivation { 105269 105048 pname = "ghc-dump-util"; 105270 - version = "0.1.2.0"; 105271 - sha256 = "1j85mscsc1g647r4d3v72lqclsi8bw174di6w9n24x0bq3rqskxi"; 105049 + version = "0.2.1.0"; 105050 + sha256 = "02gygafwdpz442pycal0gxsk9rryqcv6r0gzg55qwgqwdbdqyfp4"; 105272 105051 isLibrary = true; 105273 105052 isExecutable = true; 105274 105053 libraryHaskellDepends = [ 105275 - ansi-wl-pprint base bytestring ghc-dump-core hashable serialise 105276 - text unordered-containers 105054 + base bytestring ghc-dump-core hashable lucid prettyprinter 105055 + serialise text unordered-containers 105277 105056 ]; 105278 105057 executableHaskellDepends = [ 105279 - ansi-wl-pprint base ghc-dump-core optparse-applicative regex-tdfa 105058 + ansi-terminal base ghc-dump-core optparse-applicative prettyprinter 105059 + prettyprinter-ansi-terminal regex-tdfa 105280 105060 ]; 105281 105061 description = "Handy tools for working with ghc-dump dumps"; 105282 105062 license = lib.licenses.bsd3; ··· 105315 105091 testHaskellDepends = [ base ]; 105316 105092 description = "Library and tool for parsing .eventlog files from GHC"; 105317 105093 license = lib.licenses.bsd3; 105094 + }) {}; 105095 + 105096 + "ghc-events_0_17_0_3" = callPackage 105097 + ({ mkDerivation, array, base, binary, bytestring, containers, text 105098 + , vector 105099 + }: 105100 + mkDerivation { 105101 + pname = "ghc-events"; 105102 + version = "0.17.0.3"; 105103 + sha256 = "0m50x2ycv43d7yzwksbs1zc11wlyiszjz662fj47v9r7hacx335v"; 105104 + isLibrary = true; 105105 + isExecutable = true; 105106 + libraryHaskellDepends = [ 105107 + array base binary bytestring containers text vector 105108 + ]; 105109 + executableHaskellDepends = [ base containers ]; 105110 + testHaskellDepends = [ base ]; 105111 + description = "Library and tool for parsing .eventlog files from GHC"; 105112 + license = lib.licenses.bsd3; 105113 + hydraPlatforms = lib.platforms.none; 105318 105114 }) {}; 105319 105115 105320 105116 "ghc-events-analyze" = callPackage ··· 110370 110126 testHaskellDepends = [ base HUnit ]; 110371 110127 description = "Console IRC client"; 110372 110128 license = lib.licenses.isc; 110129 + hydraPlatforms = lib.platforms.none; 110373 110130 maintainers = with lib.maintainers; [ kiwi ]; 110131 + broken = true; 110374 110132 }) {}; 110375 110133 110376 110134 "gll" = callPackage ··· 114424 114178 license = lib.licenses.bsd3; 114425 114179 }) {}; 114426 114180 114181 + "gpmf" = callPackage 114182 + ({ mkDerivation, attoparsec, attoparsec-binary, base, binary 114183 + , bytestring, containers, data-binary-ieee754, HUnit, lens, mtl 114184 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, time 114185 + , transformers 114186 + }: 114187 + mkDerivation { 114188 + pname = "gpmf"; 114189 + version = "0.1.1.0"; 114190 + sha256 = "14xwfwy8d7nn15alllcs61zq0pa7llsjh18f7qd13b5qcf485mpx"; 114191 + isLibrary = true; 114192 + isExecutable = true; 114193 + libraryHaskellDepends = [ 114194 + attoparsec attoparsec-binary base binary bytestring containers 114195 + data-binary-ieee754 lens mtl time transformers 114196 + ]; 114197 + executableHaskellDepends = [ 114198 + attoparsec attoparsec-binary base binary bytestring containers 114199 + data-binary-ieee754 lens mtl time transformers 114200 + ]; 114201 + testHaskellDepends = [ 114202 + attoparsec attoparsec-binary base binary bytestring containers 114203 + data-binary-ieee754 HUnit lens mtl tasty tasty-golden tasty-hunit 114204 + tasty-quickcheck time transformers 114205 + ]; 114206 + license = lib.licenses.bsd3; 114207 + hydraPlatforms = lib.platforms.none; 114208 + broken = true; 114209 + }) {}; 114210 + 114427 114211 "gpolyline" = callPackage 114428 114212 ({ mkDerivation, base, split }: 114429 114213 mkDerivation { ··· 115357 115081 pname = "graphql-client"; 115358 115082 version = "1.1.1"; 115359 115083 sha256 = "1d00ib9c8ps8vv1qgrkjfzrjbgbsdnp1jiz7779bwm76j88vggb4"; 115360 - revision = "3"; 115361 - editedCabalFile = "0pnkq0wxjmfk67ji6wr7b42lsr2gp026cx91ryq146gh4c9gwacv"; 115084 + revision = "4"; 115085 + editedCabalFile = "0aiwn7pwv67nwfgg6ga4lr60i9gq9n402dsdyfw88i66fllhgmkc"; 115362 115086 isLibrary = true; 115363 115087 isExecutable = true; 115364 115088 libraryHaskellDepends = [ ··· 120213 119937 license = lib.licenses.bsd3; 120214 119938 }) {}; 120215 119939 119940 + "half-space" = callPackage 119941 + ({ mkDerivation, base, call-stack, equational-reasoning 119942 + , manifolds-core, vector-space 119943 + }: 119944 + mkDerivation { 119945 + pname = "half-space"; 119946 + version = "0.1.0.0"; 119947 + sha256 = "0pijcyxqsrzdp1jjcvi3xbrg878bp954j7n1i1y059riz9a7nyk6"; 119948 + libraryHaskellDepends = [ 119949 + base call-stack equational-reasoning manifolds-core vector-space 119950 + ]; 119951 + description = "Additive monoids generalising vector spaces"; 119952 + license = lib.licenses.gpl3Only; 119953 + hydraPlatforms = lib.platforms.none; 119954 + broken = true; 119955 + }) {}; 119956 + 120216 119957 "halfs" = callPackage 120217 119958 ({ mkDerivation, array, base, bytestring, cereal, containers 120218 119959 , directory, filepath, fingertree, HFuse, mtl, QuickCheck, random ··· 121131 120838 , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs 121132 120839 , http-conduit, http-types, ixset-typed, jmacro, jwt, lens 121133 120840 , mime-mail, mtl, pwstore-purehaskell, random, safecopy 121134 - , shakespeare, text, time, unordered-containers, userid, web-routes 121135 - , web-routes-boomerang, web-routes-happstack, web-routes-hsp 121136 - , web-routes-th 120841 + , shakespeare, stm, text, time, unordered-containers, userid 120842 + , web-routes, web-routes-boomerang, web-routes-happstack 120843 + , web-routes-hsp, web-routes-th 121137 120844 }: 121138 120845 mkDerivation { 121139 120846 pname = "happstack-authenticate"; 121140 - version = "2.5.1"; 121141 - sha256 = "13v128xcjdflzqiszal8iwbnp0ia02p2n52hwlhvb5ip2c4gipkm"; 120847 + version = "2.6.0"; 120848 + sha256 = "0sqldnhfp631vb3v69zm856zax89mgykvj4f9siisqn41qz097zx"; 121142 120849 enableSeparateDataOutput = true; 121143 120850 libraryHaskellDepends = [ 121144 120851 acid-state aeson authenticate base base64-bytestring boomerang 121145 120852 bytestring containers data-default email-validate filepath 121146 120853 happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro 121147 120854 hsx2hs http-conduit http-types ixset-typed jmacro jwt lens 121148 - mime-mail mtl pwstore-purehaskell random safecopy shakespeare text 121149 - time unordered-containers userid web-routes web-routes-boomerang 121150 - web-routes-happstack web-routes-hsp web-routes-th 120855 + mime-mail mtl pwstore-purehaskell random safecopy shakespeare stm 120856 + text time unordered-containers userid web-routes 120857 + web-routes-boomerang web-routes-happstack web-routes-hsp 120858 + web-routes-th 121151 120859 ]; 121152 120860 description = "Happstack Authentication Library"; 121153 120861 license = lib.licenses.bsd3; ··· 122009 121715 ({ mkDerivation, base }: 122010 121716 mkDerivation { 122011 121717 pname = "harp"; 122012 - version = "0.4.3.4"; 122013 - sha256 = "0n30bvpfijaji8p2lk3vc0dfcgd2sclwakvbi31jma4z1i03k89q"; 121718 + version = "0.4.3.5"; 121719 + sha256 = "0a9vhldmfrnzbv6ic311akcvyd39j8llkwpm8snaap6s593p7z5h"; 122014 121720 libraryHaskellDepends = [ base ]; 122015 121721 description = "HaRP allows pattern-matching with regular expressions"; 122016 121722 license = lib.licenses.bsd3; ··· 125861 125567 }: 125862 125568 mkDerivation { 125863 125569 pname = "haskoin-core"; 125864 - version = "0.21.1"; 125865 - sha256 = "0ld1a0pn5llnzdnffvcwh8zzh8143vkx3f5y1ixgb7qx6gpqnzrs"; 125570 + version = "0.21.2"; 125571 + sha256 = "12i490xjfb0aav18ay3ahh0hpa9l5095a4hmva1ka3497clm7cfr"; 125866 125572 libraryHaskellDepends = [ 125867 125573 aeson array base base16 binary bytes bytestring cereal conduit 125868 125574 containers cryptonite deepseq entropy hashable hspec memory mtl ··· 126001 125707 }: 126002 125708 mkDerivation { 126003 125709 pname = "haskoin-store"; 126004 - version = "0.65.0"; 126005 - sha256 = "0fd160w771x2rzy68rxrc8ail4xlplgf9qc2g8xi8j2am9if4q7y"; 125710 + version = "0.65.2"; 125711 + sha256 = "0sfb0z29jzi42yk734gw70dwxjzgfk9bmw3pl9l91iy6iqxakian"; 126006 125712 isLibrary = true; 126007 125713 isExecutable = true; 126008 125714 libraryHaskellDepends = [ ··· 126049 125755 }: 126050 125756 mkDerivation { 126051 125757 pname = "haskoin-store-data"; 126052 - version = "0.65.0"; 126053 - sha256 = "0758jsabbdkg2n9vi0b91bh3dwflpqq6vqkhvlxi1rdpdil4sl1l"; 125758 + version = "0.65.2"; 125759 + sha256 = "1nx2fiai27mycbqsxi1hbgwnsaa36836zzg65bdaj5wl03549ywj"; 126054 125760 libraryHaskellDepends = [ 126055 125761 aeson base binary bytes bytestring cereal containers data-default 126056 125762 deepseq hashable haskoin-core http-client http-types lens mtl ··· 127425 127131 license = lib.licenses.mit; 127426 127132 }) {}; 127427 127133 127134 + "hasql-th_0_4_0_12" = callPackage 127135 + ({ mkDerivation, base, bytestring, containers, contravariant, foldl 127136 + , hasql, postgresql-syntax, template-haskell 127137 + , template-haskell-compat-v0208, text, uuid, vector 127138 + }: 127139 + mkDerivation { 127140 + pname = "hasql-th"; 127141 + version = "0.4.0.12"; 127142 + sha256 = "0fcfm2d66f7hzzc9s73dd9dxcjsrr33c1q0v04j3zqm159kk69jd"; 127143 + libraryHaskellDepends = [ 127144 + base bytestring containers contravariant foldl hasql 127145 + postgresql-syntax template-haskell template-haskell-compat-v0208 127146 + text uuid vector 127147 + ]; 127148 + description = "Template Haskell utilities for Hasql"; 127149 + license = lib.licenses.mit; 127150 + hydraPlatforms = lib.platforms.none; 127151 + }) {}; 127152 + 127428 127153 "hasql-transaction" = callPackage 127429 127154 ({ mkDerivation, async, base, bytestring, bytestring-tree-builder 127430 127155 , contravariant, contravariant-extras, hasql, mtl, rerebase ··· 128029 127716 }: 128030 127717 mkDerivation { 128031 127718 pname = "haxl"; 128032 - version = "2.3.0.0"; 128033 - sha256 = "149k26iaas3sb9qyagzjkb0n86k34nf0r06fyvvqyap1w476fd3c"; 127719 + version = "2.4.0.0"; 127720 + sha256 = "1vah61fs047h9v0c8z6ka0lcckhcsjrjxqcck0jipcppzpg68inw"; 128034 127721 isLibrary = true; 128035 127722 isExecutable = true; 128036 127723 libraryHaskellDepends = [ ··· 129918 129605 broken = true; 129919 129606 }) {}; 129920 129607 129608 + "hedgehog-lens" = callPackage 129609 + ({ mkDerivation, base, hedgehog, lens }: 129610 + mkDerivation { 129611 + pname = "hedgehog-lens"; 129612 + version = "0.1.0.0"; 129613 + sha256 = "08zr8xyfb3ihbcy5y2afcl3a2fy68bfiyyb35hdqdjbzf80zlbhv"; 129614 + libraryHaskellDepends = [ base hedgehog lens ]; 129615 + description = "Hedgehog properties for lens laws"; 129616 + license = lib.licenses.mit; 129617 + hydraPlatforms = lib.platforms.none; 129618 + broken = true; 129619 + }) {}; 129620 + 129921 129621 "hedgehog-optics" = callPackage 129922 129622 ({ mkDerivation, base, hedgehog, optics-core }: 129923 129623 mkDerivation { ··· 130373 130047 }: 130374 130048 mkDerivation { 130375 130049 pname = "helic"; 130376 - version = "0.5.0.0"; 130377 - sha256 = "11g3w3v61k5z7wc1swnmifhcw6q3l1m1fcn3m8gmqa0ri4hixjzj"; 130050 + version = "0.5.1.0"; 130051 + sha256 = "1gglcac10abszarmrgggrirf51jj0qcbp7gdqh93kghx1pqv4ldg"; 130378 130052 isLibrary = true; 130379 130053 isExecutable = true; 130380 130054 libraryHaskellDepends = [ ··· 137951 137625 }: 137952 137626 mkDerivation { 137953 137627 pname = "hookup"; 137954 - version = "0.6"; 137955 - sha256 = "09rhsq0j2m1j87qsbsd3l1q3dv2zs4wrhcz2jhn4a6dx273w5528"; 137628 + version = "0.7"; 137629 + sha256 = "02prkwj4rj8g330z17bpjh7hpwfdvasaxsk74mcvbi03gjpydrib"; 137956 137630 libraryHaskellDepends = [ 137957 137631 async attoparsec base bytestring HsOpenSSL HsOpenSSL-x509-system 137958 137632 network stm ··· 143726 143400 license = lib.licenses.mit; 143727 143401 }) {}; 143728 143402 143729 - "hspec_2_9_6" = callPackage 143403 + "hspec_2_9_7" = callPackage 143730 143404 ({ mkDerivation, base, hspec-core, hspec-discover 143731 143405 , hspec-expectations, QuickCheck 143732 143406 }: 143733 143407 mkDerivation { 143734 143408 pname = "hspec"; 143735 - version = "2.9.6"; 143736 - sha256 = "1x3mizv029qn9yyq3ipr2awlapbsiyksxzd9x7r3vjfxlwbjs4sr"; 143409 + version = "2.9.7"; 143410 + sha256 = "092sfqjkargxxszp9jjqa8ldjz0xv34jwn6k21q59ys5ckvsrpc1"; 143737 143411 libraryHaskellDepends = [ 143738 143412 base hspec-core hspec-discover hspec-expectations QuickCheck 143739 143413 ]; ··· 143853 143527 license = lib.licenses.mit; 143854 143528 }) {}; 143855 143529 143856 - "hspec-core_2_9_6" = callPackage 143530 + "hspec-core_2_9_7" = callPackage 143857 143531 ({ mkDerivation, ansi-terminal, array, base, base-orphans 143858 143532 , call-stack, clock, deepseq, directory, filepath, ghc, ghc-boot-th 143859 143533 , hspec-expectations, hspec-meta, HUnit, process, QuickCheck ··· 143862 143536 }: 143863 143537 mkDerivation { 143864 143538 pname = "hspec-core"; 143865 - version = "2.9.6"; 143866 - sha256 = "0mg8rdg8ga24fk6cv7p8vb0j33agay1nwaxqvfga6d4kj5g440fr"; 143539 + version = "2.9.7"; 143540 + sha256 = "040rzqiqwkp373jjpij8lkmv08pp2ya92zzcf95bw8px215rp08n"; 143867 143541 libraryHaskellDepends = [ 143868 143542 ansi-terminal array base call-stack clock deepseq directory 143869 143543 filepath ghc ghc-boot-th hspec-expectations HUnit QuickCheck ··· 143942 143616 maintainers = with lib.maintainers; [ maralorn ]; 143943 143617 }) {}; 143944 143618 143945 - "hspec-discover_2_9_6" = callPackage 143619 + "hspec-discover_2_9_7" = callPackage 143946 143620 ({ mkDerivation, base, directory, filepath, hspec-meta, mockery 143947 143621 , QuickCheck 143948 143622 }: 143949 143623 mkDerivation { 143950 143624 pname = "hspec-discover"; 143951 - version = "2.9.6"; 143952 - sha256 = "1k77hn47b3l4m8qpp2zfv73k2in7pi2fybda0dkpfj3a1jsarpin"; 143625 + version = "2.9.7"; 143626 + sha256 = "0536kdxjw6p8b6gcwvmr22jbmb6cgzbddi0fkd01b2m847z37sb5"; 143953 143627 isLibrary = true; 143954 143628 isExecutable = true; 143955 143629 libraryHaskellDepends = [ base directory filepath ]; ··· 144495 144169 pname = "hspec-smallcheck"; 144496 144170 version = "0.5.2"; 144497 144171 sha256 = "06c1ym793zkdwi4bxk5f4l7m1n1bg5jmnm0p68q2pa9rlhk1lc4s"; 144172 + revision = "1"; 144173 + editedCabalFile = "0bih2r7pdfca8jw9jii84nsx3q6xfwjylsilgwxx02xl35dv0nkp"; 144498 144174 libraryHaskellDepends = [ 144499 144175 base call-stack hspec-core HUnit smallcheck 144500 144176 ]; ··· 145535 145207 }: 145536 145208 mkDerivation { 145537 145209 pname = "hsx2hs"; 145538 - version = "0.14.1.8"; 145539 - sha256 = "1yx2bnwjqwghp2jg3kpk42wbbqswnxph46xjrmyaharlw1s8y0f2"; 145210 + version = "0.14.1.9"; 145211 + sha256 = "1154p6ki51h5wlq8431q9h8r1q7f409vaq5hzi5q9895nxd3lkr3"; 145540 145212 isLibrary = true; 145541 145213 isExecutable = true; 145542 145214 libraryHaskellDepends = [ ··· 147446 147118 pname = "http2-client"; 147447 147119 version = "0.10.0.0"; 147448 147120 sha256 = "0kv4qa9cbwwj6b62manzpl1sk4jnsb5vx2y73w49drlfkrw1vpgy"; 147121 + revision = "1"; 147122 + editedCabalFile = "18ilcli28jfm914v1l059z74cj43m4xfwqk2wfhhw0vyvw2n8ryi"; 147449 147123 libraryHaskellDepends = [ 147450 147124 async base bytestring containers deepseq http2 lifted-async 147451 147125 lifted-base mtl network stm time tls transformers-base ··· 148428 148098 }: 148429 148099 mkDerivation { 148430 148100 pname = "hw-aeson"; 148431 - version = "0.1.5.0"; 148432 - sha256 = "0dzwn1k467dij8ihqzxq6vhm5faqqjndvyw0ikwjhwh0lf1h38cz"; 148101 + version = "0.1.6.0"; 148102 + sha256 = "06xi9bj0jsp2g2d2wkxs6w2p96i927alrrm4r9vpm530cd1zxzwr"; 148433 148103 libraryHaskellDepends = [ 148434 148104 aeson base containers text text-short unordered-containers 148435 148105 ]; ··· 150701 150371 license = lib.licenses.bsd3; 150702 150372 }) {}; 150703 150373 150374 + "hyperloglog_0_4_6" = callPackage 150375 + ({ mkDerivation, approximate, base, binary, bits, bytes, bytestring 150376 + , cereal, cereal-vector, comonad, cpu, deepseq, distributive 150377 + , hashable, lens, reflection, semigroupoids, semigroups, tagged 150378 + , vector 150379 + }: 150380 + mkDerivation { 150381 + pname = "hyperloglog"; 150382 + version = "0.4.6"; 150383 + sha256 = "0zwg4dhgasa9sx7pbjjjb9kz2bnhb3r2daij2b572cszv65l91nv"; 150384 + libraryHaskellDepends = [ 150385 + approximate base binary bits bytes bytestring cereal cereal-vector 150386 + comonad cpu deepseq distributive hashable lens reflection 150387 + semigroupoids semigroups tagged vector 150388 + ]; 150389 + description = "An approximate streaming (constant space) unique object counter"; 150390 + license = lib.licenses.bsd3; 150391 + hydraPlatforms = lib.platforms.none; 150392 + }) {}; 150393 + 150704 150394 "hyperloglogplus" = callPackage 150705 150395 ({ mkDerivation, base, bits, containers, HUnit, murmur-hash 150706 150396 , semigroups, tasty, tasty-hunit, vector ··· 151580 151230 license = lib.licenses.bsd3; 151581 151231 hydraPlatforms = lib.platforms.none; 151582 151232 broken = true; 151233 + }) {}; 151234 + 151235 + "idiomatic" = callPackage 151236 + ({ mkDerivation, base }: 151237 + mkDerivation { 151238 + pname = "idiomatic"; 151239 + version = "0.1.1.0"; 151240 + sha256 = "10mcccvxw5s5n2k481xlzd3sdfab5kh963izwf20z4am20plrqqi"; 151241 + isLibrary = true; 151242 + isExecutable = true; 151243 + libraryHaskellDepends = [ base ]; 151244 + description = "Deriving Applicative for sum types.. Idiomatically."; 151245 + license = lib.licenses.bsd3; 151583 151246 }) {}; 151584 151247 151585 151248 "idna" = callPackage ··· 157782 157419 }: 157783 157420 mkDerivation { 157784 157421 pname = "jacinda"; 157785 - version = "1.0.0.0"; 157786 - sha256 = "1yskpr3mvfhzxcjf0f9sf3mhsg892vqkx5kd4vz4w6wk3vv1iz3i"; 157422 + version = "1.1.0.0"; 157423 + sha256 = "0sx15lslkcvck7cvd55ykkifba9cv0ig0h53ycf0izbl3cxdr1j9"; 157787 157424 isLibrary = false; 157788 157425 isExecutable = true; 157789 157426 enableSeparateDataOutput = true; ··· 157915 157552 }) {}; 157916 157553 157917 157554 "jailbreak-cabal" = callPackage 157918 - ({ mkDerivation, base, Cabal }: 157555 + ({ mkDerivation, base, Cabal, Cabal-syntax }: 157919 157556 mkDerivation { 157920 157557 pname = "jailbreak-cabal"; 157921 - version = "1.3.5"; 157922 - sha256 = "1221gxggyk3pjqkc72wxx9gjl8dvqna1rn9nh9zkcmdpv5yww7wd"; 157558 + version = "1.3.6"; 157559 + sha256 = "11vzq4yklsi7v04lch0540fgvbg6d5fnl4sdfdcg8n3ijkwqy49p"; 157923 157560 isLibrary = false; 157924 157561 isExecutable = true; 157925 - executableHaskellDepends = [ base Cabal ]; 157562 + executableHaskellDepends = [ base Cabal Cabal-syntax ]; 157926 157563 description = "Strip version restrictions from Cabal files"; 157927 157564 license = lib.licenses.bsd3; 157928 157565 maintainers = with lib.maintainers; [ peti ]; ··· 162562 162199 }: 162563 162200 mkDerivation { 162564 162201 pname = "keter"; 162565 - version = "1.8.1"; 162566 - sha256 = "0lnjvbfiz5w37ylvqmlgxqnd5p0akq4nl59gagdbc2w06gj0an4d"; 162202 + version = "1.8.4"; 162203 + sha256 = "10p8hc1jfzkg3s8shazkip95i6r5a8gyiz6m1khl7myvb05i21gc"; 162567 162204 isLibrary = true; 162568 162205 isExecutable = true; 162569 162206 libraryHaskellDepends = [ ··· 167150 166787 license = lib.licenses.mit; 167151 166788 }) {}; 167152 166789 166790 + "lazy-bracket" = callPackage 166791 + ({ mkDerivation, base, doctest, exceptions, tasty, tasty-hunit }: 166792 + mkDerivation { 166793 + pname = "lazy-bracket"; 166794 + version = "0.1.0.0"; 166795 + sha256 = "1qaawj54hp68jy0qf4cbv37n67s7pbayyn5f59lj138fl15cj300"; 166796 + libraryHaskellDepends = [ base exceptions ]; 166797 + testHaskellDepends = [ base doctest exceptions tasty tasty-hunit ]; 166798 + description = "A bracket with lazy resource allocation"; 166799 + license = lib.licenses.bsd3; 166800 + hydraPlatforms = lib.platforms.none; 166801 + broken = true; 166802 + }) {}; 166803 + 167153 166804 "lazy-csv" = callPackage 167154 166805 ({ mkDerivation, base, bytestring }: 167155 166806 mkDerivation { ··· 169997 169620 libraryToolDepends = [ c2hs ]; 169998 169621 description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; 169999 169622 license = lib.licenses.bsd3; 169623 + platforms = [ 169624 + "aarch64-darwin" "aarch64-linux" "armv7l-linux" "i686-linux" 169625 + "x86_64-linux" 169626 + ]; 170000 169627 }) {inherit (pkgs) libvirt;}; 170001 169628 170002 169629 "libvorbis" = callPackage ··· 171114 170733 }: 171115 170734 mkDerivation { 171116 170735 pname = "linearmap-category"; 171117 - version = "0.4.1.0"; 171118 - sha256 = "01cpl44wg5kyx9lxv23hcsxd8dw90psqj9sgaklhxklbdvn77bvr"; 170736 + version = "0.4.2.0"; 170737 + sha256 = "0iblymralldn1xljdl6qyvxcsxg6rmgj42qx254vaajijp51ycmp"; 171119 170738 libraryHaskellDepends = [ 171120 170739 base call-stack constrained-categories containers 171121 170740 data-default-class free-vector-spaces hashable ieee754 lens linear ··· 175544 175163 license = lib.licenses.bsd3; 175545 175164 }) {}; 175546 175165 175166 + "lucid-aria" = callPackage 175167 + ({ mkDerivation, base, hspec, HUnit, lucid, text }: 175168 + mkDerivation { 175169 + pname = "lucid-aria"; 175170 + version = "0.1.0.1"; 175171 + sha256 = "125ha3v367nx0vfynv834gr8iyqklll0syk6g7p4w8p1fq746c7z"; 175172 + libraryHaskellDepends = [ base lucid text ]; 175173 + testHaskellDepends = [ base hspec HUnit lucid ]; 175174 + description = "Provides ARIA attributes for Lucid templates"; 175175 + license = lib.licenses.asl20; 175176 + }) {}; 175177 + 175547 175178 "lucid-cdn" = callPackage 175548 175179 ({ mkDerivation, base, lucid }: 175549 175180 mkDerivation { ··· 175615 175222 ({ mkDerivation, base, lucid, servant, text }: 175616 175223 mkDerivation { 175617 175224 pname = "lucid-htmx"; 175618 - version = "0.1.0.5"; 175619 - sha256 = "1zbk1fdril0cm4cs5scrvk1fvfkds8pgkwnb5c9vxawv5v3kgpl5"; 175225 + version = "0.1.0.6"; 175226 + sha256 = "0jd0igz4hymx5fnjsgx2y97440djfz416phnczz52g2vw7amgqjw"; 175620 175227 libraryHaskellDepends = [ base lucid servant text ]; 175621 175228 testHaskellDepends = [ base lucid servant text ]; 175622 175229 description = "Use htmx in your lucid templates"; ··· 176255 175862 }) {}; 176256 175863 176257 175864 "lzo" = callPackage 176258 - ({ mkDerivation, base, binary, bytestring, criterion, digest, tasty 176259 - , tasty-hunit 175865 + ({ mkDerivation, base, binary, bytestring, criterion, digest 175866 + , digest-sig, tasty, tasty-hunit 176260 175867 }: 176261 175868 mkDerivation { 176262 175869 pname = "lzo"; 176263 - version = "0.1.1.3"; 176264 - sha256 = "13l9fzvwyq1z3pv2p33w8ylb8wriwf5q2lif68f8n16fzh07ki7p"; 176265 - libraryHaskellDepends = [ base binary bytestring digest ]; 175870 + version = "0.1.1.4"; 175871 + sha256 = "1n6b2y2bmq3kl6h5mjl301r31rmvrcsc3l66jmnj3ilrj4506m1y"; 175872 + libraryHaskellDepends = [ 175873 + base binary bytestring digest digest-sig 175874 + ]; 176266 175875 testHaskellDepends = [ base bytestring tasty tasty-hunit ]; 176267 175876 benchmarkHaskellDepends = [ base bytestring criterion ]; 176268 175877 description = "minilzo bundled for Haskell"; ··· 177773 177378 }: 177774 177379 mkDerivation { 177775 177380 pname = "manifold-random"; 177776 - version = "0.5.1.0"; 177777 - sha256 = "0zip7ni06zljhj94d5vdf6sb6fbsm9iidcsrl85bdh7i7dkb3avr"; 177381 + version = "0.6.0.0"; 177382 + sha256 = "088kvfap0lbpnzz0vraa4pclj3savm0m4a174digd1r9x025v4kv"; 177778 177383 libraryHaskellDepends = [ 177779 177384 base constrained-categories linearmap-category manifolds random-fu 177780 177385 semigroups vector-space ··· 177786 177391 177787 177392 "manifolds" = callPackage 177788 177393 ({ mkDerivation, array, base, binary, call-stack, comonad 177789 - , constrained-categories, containers, deepseq, free 177790 - , free-vector-spaces, ieee754, lens, linear, linearmap-category 177791 - , manifolds-core, MemoTrie, number-show, placeholders 177792 - , pragmatic-show, QuickCheck, semigroups, spatial-rotations, tagged 177793 - , tasty, tasty-hunit, tasty-quickcheck, transformers, vector 177794 - , vector-space, void 177394 + , constrained-categories, containers, deepseq, equational-reasoning 177395 + , free, free-vector-spaces, half-space, ieee754, lens, linear 177396 + , linearmap-category, manifolds-core, MemoTrie, number-show 177397 + , placeholders, pragmatic-show, QuickCheck, semigroups 177398 + , spatial-rotations, tagged, tasty, tasty-hunit, tasty-quickcheck 177399 + , transformers, vector, vector-space, void 177795 177400 }: 177796 177401 mkDerivation { 177797 177402 pname = "manifolds"; 177798 - version = "0.5.1.0"; 177799 - sha256 = "12w1whsr8zbsvv06iwdd27hjnvs8s041hrsp5c85chl4xqxwkl5h"; 177403 + version = "0.6.0.0"; 177404 + sha256 = "1vp3lnp15s1qzkplxj8bss4s27gp7p9aj3rc0q99dzkr4ylbw2gz"; 177800 177405 libraryHaskellDepends = [ 177801 177406 array base binary call-stack comonad constrained-categories 177802 - containers deepseq free free-vector-spaces ieee754 lens linear 177803 - linearmap-category manifolds-core MemoTrie number-show placeholders 177804 - pragmatic-show QuickCheck semigroups spatial-rotations tagged 177805 - transformers vector vector-space void 177407 + containers deepseq equational-reasoning free free-vector-spaces 177408 + half-space ieee754 lens linear linearmap-category manifolds-core 177409 + MemoTrie number-show placeholders pragmatic-show QuickCheck 177410 + semigroups spatial-rotations tagged transformers vector 177411 + vector-space void 177806 177412 ]; 177807 177413 testHaskellDepends = [ 177808 177414 base constrained-categories containers lens linear ··· 177816 177420 }) {}; 177817 177421 177818 177422 "manifolds-core" = callPackage 177819 - ({ mkDerivation, base, call-stack, tagged, vector-space }: 177423 + ({ mkDerivation, base, call-stack, equational-reasoning, tagged 177424 + , vector-space 177425 + }: 177820 177426 mkDerivation { 177821 177427 pname = "manifolds-core"; 177822 - version = "0.5.1.0"; 177823 - sha256 = "1bvmr0gcfj7zd0rff0qjlzjy8hqdbh52ljiiazrmqmb9abdsciq3"; 177824 - libraryHaskellDepends = [ base call-stack tagged vector-space ]; 177428 + version = "0.6.0.0"; 177429 + sha256 = "000lfkvx6j3cf6dzccfncazlkqj9bjfl04x0d36k8w78d20md5kj"; 177430 + libraryHaskellDepends = [ 177431 + base call-stack equational-reasoning tagged vector-space 177432 + ]; 177825 177433 description = "The basic classes for the manifolds hierarchy"; 177826 177434 license = lib.licenses.gpl3Only; 177827 177435 }) {}; ··· 183921 183521 }: 183922 183522 mkDerivation { 183923 183523 pname = "mnist-idx"; 183924 - version = "0.1.3.0"; 183925 - sha256 = "0i65f83bs6l5gjf3wj3ad3c76ni3d22sac5qyi5hi5i93w0px32j"; 183524 + version = "0.1.3.1"; 183525 + sha256 = "12246lq1a0jc91yqyng9v2cgf4pqmfmf820jjwnc6aglx86vsmni"; 183926 183526 libraryHaskellDepends = [ base binary bytestring vector ]; 183927 183527 testHaskellDepends = [ 183928 183528 base binary directory hspec QuickCheck vector ··· 188199 187799 testToolDepends = [ hspec-discover ]; 188200 187800 description = "A Haskell implementation of MessagePack"; 188201 187801 license = lib.licenses.bsd3; 188202 - hydraPlatforms = lib.platforms.none; 188203 187802 }) {}; 188204 187803 188205 187804 "msgpack-binary" = callPackage ··· 188340 187941 testHaskellDepends = [ base hspec ]; 188341 187942 description = "A Haskell implementation of MessagePack"; 188342 187943 license = lib.licenses.bsd3; 188343 - hydraPlatforms = lib.platforms.none; 188344 187944 }) {}; 188345 187945 188346 187946 "msgpack-types" = callPackage ··· 188364 187966 testToolDepends = [ hspec-discover ]; 188365 187967 description = "A Haskell implementation of MessagePack"; 188366 187968 license = lib.licenses.bsd3; 188367 - hydraPlatforms = lib.platforms.none; 188368 - broken = true; 188369 187969 }) {}; 188370 187970 188371 187971 "msh" = callPackage ··· 197682 197286 }) {}; 197683 197287 197684 197288 "nvfetcher" = callPackage 197685 - ({ mkDerivation, aeson, async, base, binary, binary-instances 197686 - , bytestring, containers, data-default, extra, free, hspec 197687 - , hspec-discover, microlens, microlens-th, neat-interpolation 197688 - , optparse-simple, parsec, shake, stm, text, tomland, transformers 197689 - , unliftio, unordered-containers, validation-selective 197289 + ({ mkDerivation, aeson, aeson-pretty, async, base, binary 197290 + , binary-instances, bytestring, containers, data-default, extra 197291 + , free, hspec, hspec-discover, microlens, microlens-th 197292 + , neat-interpolation, optparse-simple, parsec, prettyprinter 197293 + , regex-tdfa, shake, stm, text, tomland, transformers, unliftio 197294 + , unordered-containers, validation-selective 197690 197295 }: 197691 197296 mkDerivation { 197692 197297 pname = "nvfetcher"; 197693 - version = "0.4.0.0"; 197694 - sha256 = "1mj2vmll0zpzx1f0j445h800lxvma30f9ainbnm54x3d4n6yvw7n"; 197298 + version = "0.5.0.0"; 197299 + sha256 = "0kglvniiqa3plxn973sl7dww75lxar5sf8ipjmgjryv9b0wxbv30"; 197695 197300 isLibrary = true; 197696 197301 isExecutable = true; 197697 197302 libraryHaskellDepends = [ 197698 - aeson base binary binary-instances bytestring containers 197699 - data-default extra free microlens microlens-th neat-interpolation 197700 - optparse-simple parsec shake text tomland transformers 197701 - unordered-containers 197303 + aeson aeson-pretty base binary binary-instances bytestring 197304 + containers data-default extra free microlens microlens-th 197305 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197306 + shake text tomland transformers unordered-containers 197702 197307 ]; 197703 197308 executableHaskellDepends = [ 197704 - aeson base binary binary-instances bytestring containers 197705 - data-default extra free microlens microlens-th neat-interpolation 197706 - optparse-simple parsec shake text tomland transformers 197707 - unordered-containers validation-selective 197309 + aeson aeson-pretty base binary binary-instances bytestring 197310 + containers data-default extra free microlens microlens-th 197311 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197312 + shake text tomland transformers unordered-containers 197313 + validation-selective 197708 197314 ]; 197709 197315 testHaskellDepends = [ 197710 - aeson async base binary binary-instances bytestring containers 197711 - data-default extra free hspec microlens microlens-th 197712 - neat-interpolation optparse-simple parsec shake stm text tomland 197713 - transformers unliftio unordered-containers 197316 + aeson aeson-pretty async base binary binary-instances bytestring 197317 + containers data-default extra free hspec microlens microlens-th 197318 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197319 + shake stm text tomland transformers unliftio unordered-containers 197714 197320 ]; 197715 197321 testToolDepends = [ hspec-discover ]; 197716 197322 description = "Generate nix sources expr for the latest version of packages"; ··· 200285 199887 testToolDepends = [ tasty-discover ]; 200286 199888 benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; 200287 199889 license = lib.licenses.asl20; 200288 - hydraPlatforms = lib.platforms.none; 200289 - broken = true; 200290 199890 }) {}; 200291 199891 200292 199892 "opentelemetry-extra_0_8_0" = callPackage ··· 200322 199926 benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; 200323 199927 license = lib.licenses.asl20; 200324 199928 hydraPlatforms = lib.platforms.none; 200325 - broken = true; 200326 199929 }) {}; 200327 199930 200328 199931 "opentelemetry-http-client" = callPackage ··· 200363 199968 splitmix text typed-process unordered-containers 200364 199969 ]; 200365 199970 license = lib.licenses.asl20; 200366 - hydraPlatforms = lib.platforms.none; 200367 199971 }) {}; 200368 199972 200369 199973 "opentelemetry-lightstep_0_8_0" = callPackage ··· 201403 201009 }: 201404 201010 mkDerivation { 201405 201011 pname = "optstream"; 201406 - version = "0.1.0.0"; 201407 - sha256 = "0514i983r1hsck6rqhk1ggs4f5zpghx6l5d140r3k7v0nrrya6y5"; 201012 + version = "0.1.1.0"; 201013 + sha256 = "1d9zpvfp31808zy574x7r00mckg6bm1bfn9zjrcfh3314wrhmm6x"; 201408 201014 libraryHaskellDepends = [ base ]; 201409 201015 testHaskellDepends = [ 201410 201016 base QuickCheck test-framework test-framework-quickcheck2 ··· 201622 201228 libraryHaskellDepends = [ base containers ]; 201623 201229 description = "Set- and Map-like types that remember the order elements were inserted"; 201624 201230 license = lib.licenses.bsd3; 201231 + }) {}; 201232 + 201233 + "ordering-util" = callPackage 201234 + ({ mkDerivation, base }: 201235 + mkDerivation { 201236 + pname = "ordering-util"; 201237 + version = "0.1.3.1"; 201238 + sha256 = "1f9dkrap8v9fpkj0s2991gqzi6hwascmx2g3n44njg4nn8r2an69"; 201239 + libraryHaskellDepends = [ base ]; 201240 + description = "Utilities for Orderings"; 201241 + license = lib.licenses.mit; 201625 201242 }) {}; 201626 201243 201627 201244 "orderly-workers" = callPackage ··· 203908 203503 ({ mkDerivation }: 203909 203504 mkDerivation { 203910 203505 pname = "pandora"; 203911 - version = "0.5.3"; 203912 - sha256 = "097vpsml5hma4acyrz26hmfddyz1j9kcbqw5z7lkhak1jmpdv2ac"; 203506 + version = "0.5.4"; 203507 + sha256 = "0mhhjny7djyg8m49klk5kxf4w4nb3hfj3if0qqamyzy3qlpfzpva"; 203913 203508 description = "A box of patterns and paradigms"; 203914 203509 license = lib.licenses.mit; 203915 203510 hydraPlatforms = lib.platforms.none; ··· 203920 203515 ({ mkDerivation, ghc-prim, pandora }: 203921 203516 mkDerivation { 203922 203517 pname = "pandora-io"; 203923 - version = "0.5.3"; 203924 - sha256 = "0m0cskpylr26sz6gs133j2p6yr6r22hksk7p4aimszbg88vayany"; 203518 + version = "0.5.4"; 203519 + sha256 = "0jymxxrcq9sj1xysqrrxcxfrygg5fjqq44zphxg0clh16kzzq8y7"; 203925 203520 libraryHaskellDepends = [ ghc-prim pandora ]; 203926 203521 description = "..."; 203927 203522 license = lib.licenses.mit; ··· 204132 203727 }: 204133 203728 mkDerivation { 204134 203729 pname = "pantry"; 204135 - version = "0.5.4"; 204136 - sha256 = "080j0pw8fmyb05klbi8vy3dpahiw3zxmykvqamvziwrznl1p4b2m"; 204137 - revision = "1"; 204138 - editedCabalFile = "0y1faym7qqcjn2f23sqhxaq83ih3h6nr7ql665k1pw93hi3jdv05"; 203730 + version = "0.5.5"; 203731 + sha256 = "0hdpngpq2i8kvw6lmpv99y7q1z6b1rwlcajngwjx46x55faw2gv4"; 204139 203732 libraryHaskellDepends = [ 204140 203733 aeson ansi-terminal base bytestring Cabal casa-client casa-types 204141 203734 conduit conduit-extra containers cryptonite cryptonite-conduit ··· 208310 207907 }: 208311 207908 mkDerivation { 208312 207909 pname = "persistent"; 208313 - version = "2.13.3.4"; 208314 - sha256 = "1hl11iicgvvd8wxs6zgm2lbv593rqywjiay3f45pfzwr7kmd7r3z"; 207910 + version = "2.13.3.5"; 207911 + sha256 = "0z69yvk0rd29dp5qdhi4p587b891y90azrzzpa3g10cxp3gyywvm"; 208315 207912 libraryHaskellDepends = [ 208316 207913 aeson attoparsec base base64-bytestring blaze-html bytestring 208317 207914 conduit containers fast-logger http-api-data lift-type monad-logger ··· 208332 207929 ]; 208333 207930 description = "Type-safe, multi-backend data serialization"; 208334 207931 license = lib.licenses.mit; 207932 + maintainers = with lib.maintainers; [ psibi ]; 207933 + }) {}; 207934 + 207935 + "persistent_2_14_0_0" = callPackage 207936 + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 207937 + , blaze-html, bytestring, conduit, containers, criterion, deepseq 207938 + , fast-logger, file-embed, hspec, http-api-data, lift-type 207939 + , monad-logger, mtl, path-pieces, QuickCheck, quickcheck-instances 207940 + , resource-pool, resourcet, scientific, shakespeare, silently 207941 + , template-haskell, text, th-lift-instances, time, transformers 207942 + , unliftio, unliftio-core, unordered-containers, vault, vector 207943 + }: 207944 + mkDerivation { 207945 + pname = "persistent"; 207946 + version = "2.14.0.0"; 207947 + sha256 = "16b3920zdp3cjvwkmp8yqm1p1gwzl4m4afr4kp567na5iczfih71"; 207948 + libraryHaskellDepends = [ 207949 + aeson attoparsec base base64-bytestring blaze-html bytestring 207950 + conduit containers fast-logger http-api-data lift-type monad-logger 207951 + mtl path-pieces resource-pool resourcet scientific silently 207952 + template-haskell text th-lift-instances time transformers unliftio 207953 + unliftio-core unordered-containers vault vector 207954 + ]; 207955 + testHaskellDepends = [ 207956 + aeson attoparsec base base64-bytestring blaze-html bytestring 207957 + conduit containers fast-logger hspec http-api-data monad-logger mtl 207958 + path-pieces QuickCheck quickcheck-instances resource-pool resourcet 207959 + scientific shakespeare silently template-haskell text 207960 + th-lift-instances time transformers unliftio unliftio-core 207961 + unordered-containers vector 207962 + ]; 207963 + benchmarkHaskellDepends = [ 207964 + base criterion deepseq file-embed template-haskell text 207965 + ]; 207966 + description = "Type-safe, multi-backend data serialization"; 207967 + license = lib.licenses.mit; 207968 + hydraPlatforms = lib.platforms.none; 208335 207969 maintainers = with lib.maintainers; [ psibi ]; 208336 207970 }) {}; 208337 207971 ··· 208863 208423 license = lib.licenses.mit; 208864 208424 }) {}; 208865 208425 208426 + "persistent-qq_2_12_0_3" = callPackage 208427 + ({ mkDerivation, aeson, base, bytestring, fast-logger 208428 + , haskell-src-meta, hspec, HUnit, monad-logger, mtl, persistent 208429 + , persistent-sqlite, resourcet, template-haskell, text, unliftio 208430 + }: 208431 + mkDerivation { 208432 + pname = "persistent-qq"; 208433 + version = "2.12.0.3"; 208434 + sha256 = "0iv9x73g846grhb4vdh1xhpbwmk6hg5jh1xl2i7yh986pnqbl23g"; 208435 + libraryHaskellDepends = [ 208436 + base haskell-src-meta mtl persistent template-haskell text 208437 + ]; 208438 + testHaskellDepends = [ 208439 + aeson base bytestring fast-logger haskell-src-meta hspec HUnit 208440 + monad-logger mtl persistent persistent-sqlite resourcet 208441 + template-haskell text unliftio 208442 + ]; 208443 + description = "Provides a quasi-quoter for raw SQL for persistent"; 208444 + license = lib.licenses.mit; 208445 + hydraPlatforms = lib.platforms.none; 208446 + }) {}; 208447 + 208866 208448 "persistent-ratelimit" = callPackage 208867 208449 ({ mkDerivation, base, time, yesod }: 208868 208450 mkDerivation { ··· 209065 208603 ]; 209066 208604 description = "Tests for Persistent"; 209067 208605 license = lib.licenses.mit; 208606 + }) {}; 208607 + 208608 + "persistent-test_2_13_1_3" = callPackage 208609 + ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit 208610 + , containers, exceptions, hspec, hspec-expectations, http-api-data 208611 + , HUnit, monad-control, monad-logger, mtl, path-pieces, persistent 208612 + , QuickCheck, quickcheck-instances, random, resourcet, text, time 208613 + , transformers, transformers-base, unliftio, unliftio-core 208614 + , unordered-containers 208615 + }: 208616 + mkDerivation { 208617 + pname = "persistent-test"; 208618 + version = "2.13.1.3"; 208619 + sha256 = "0qqv00nlqpnfx4h3kkd8k0y41a8dfmgj0rc0smdf6p4kl2g1hrdl"; 208620 + libraryHaskellDepends = [ 208621 + aeson base blaze-html bytestring conduit containers exceptions 208622 + hspec hspec-expectations http-api-data HUnit monad-control 208623 + monad-logger mtl path-pieces persistent QuickCheck 208624 + quickcheck-instances random resourcet text time transformers 208625 + transformers-base unliftio unliftio-core unordered-containers 208626 + ]; 208627 + description = "Tests for Persistent"; 208628 + license = lib.licenses.mit; 208629 + hydraPlatforms = lib.platforms.none; 209068 208630 }) {}; 209069 208631 209070 208632 "persistent-typed-db" = callPackage ··· 213084 212598 }: 213085 212599 mkDerivation { 213086 212600 pname = "ploterific"; 213087 - version = "0.2.1.3"; 213088 - sha256 = "0ggi653hjg9s3v9zqsapm3ryb37hfdbw21pznhsvzhyy3n0fv7jv"; 212601 + version = "0.2.1.4"; 212602 + sha256 = "1kss92ihn9gaif7c70az2pxbgrz2ab9g3257wspz6ivkds04lpip"; 213089 212603 isLibrary = true; 213090 212604 isExecutable = true; 213091 212605 libraryHaskellDepends = [ ··· 214493 214007 }: 214494 214008 mkDerivation { 214495 214009 pname = "polysemy-mocks"; 214496 - version = "0.2.0.0"; 214497 - sha256 = "1l17n7hxzb23y0vp9h8cxvfgdkwzbz8g0q37qppl4cqjkhcdq0ya"; 214010 + version = "0.3.0.0"; 214011 + sha256 = "03yq5pyrg2rhykyhvp3f8b816r9j035xr5d9d1cls73zh9pbbh7z"; 214498 214012 libraryHaskellDepends = [ base polysemy template-haskell ]; 214499 214013 testHaskellDepends = [ base hspec polysemy ]; 214500 214014 testToolDepends = [ hspec-discover ]; ··· 215595 215109 ({ mkDerivation, base, deepseq, tasty, tasty-hunit }: 215596 215110 mkDerivation { 215597 215111 pname = "pos"; 215598 - version = "0.2.0.0"; 215599 - sha256 = "0c8zbfkbin97b9bavv56m1ym00q7bz9fv4aac45vlg4ns9b9yshv"; 215112 + version = "0.3.0.0"; 215113 + sha256 = "1cdy9025cqypx3lxa3gsjkidz0g3cbx2cxn0pzyr2ccrm3wf7mfp"; 215600 215114 libraryHaskellDepends = [ base deepseq ]; 215601 215115 testHaskellDepends = [ base deepseq tasty tasty-hunit ]; 215602 215116 description = "positive numbers"; ··· 218767 218281 ({ mkDerivation, base, primitive }: 218768 218282 mkDerivation { 218769 218283 pname = "primitive-checked"; 218770 - version = "0.7.2.0"; 218771 - sha256 = "1swb10hd18w2xnxiwnscsv4fxmvrql3aw7fll5qlqi2hczbkd4lf"; 218284 + version = "0.7.3.0"; 218285 + sha256 = "1f4q6v70i8xllnphr894vcx35n0m9hplhlzgdyhrk76cv4fcwpl1"; 218772 218286 libraryHaskellDepends = [ base primitive ]; 218773 218287 description = "primitive functions with bounds-checking"; 218774 218288 license = lib.licenses.bsd3; ··· 219036 218550 }: 219037 218551 mkDerivation { 219038 218552 pname = "primus"; 219039 - version = "0.2.0.0"; 219040 - sha256 = "170lizshqraf2gqawfnahns019lsazmqvqs61yznzfj71xwr763c"; 218553 + version = "0.3.0.0"; 218554 + sha256 = "0g9b16cq9z6hbzdh49s952ihhfsv2z9cjfy1jh5nygg3zpvc8bdw"; 219041 218555 libraryHaskellDepends = [ 219042 218556 adjunctions base deepseq distributive pos profunctors semigroupoids 219043 218557 these ··· 220869 220383 }: 220870 220384 mkDerivation { 220871 220385 pname = "proto-lens-jsonpb"; 220872 - version = "0.2.0.2"; 220873 - sha256 = "1r98841byxkg5941yjrw15n56i0x68qr3gk29bimwcfifdf0idm2"; 220386 + version = "0.2.1"; 220387 + sha256 = "0ax5zkg9qa7mh4x38nchahr1n1x2wyaasplknig4hgza7xkcmmas"; 220874 220388 libraryHaskellDepends = [ 220875 220389 aeson attoparsec base base64-bytestring bytestring 220876 220390 proto-lens-runtime text vector ··· 225083 224597 }: 225084 224598 mkDerivation { 225085 224599 pname = "quote-quot"; 225086 - version = "0.2.0.0"; 225087 - sha256 = "0sj862037gdljwiv5s4yh0vjfppzf226z7sxb5f7y1k23rijsx0w"; 224600 + version = "0.2.1.0"; 224601 + sha256 = "1xsd5vs97dwp3wnz862mplakkryi44brr73aqrrv76svkj82bp37"; 225088 224602 libraryHaskellDepends = [ base template-haskell ]; 225089 224603 testHaskellDepends = [ 225090 224604 base tasty tasty-quickcheck template-haskell ··· 225095 224609 }) {}; 225096 224610 225097 224611 "quotet" = callPackage 225098 - ({ mkDerivation, base, exceptions, mtl, template-haskell, th-compat 225099 - }: 224612 + ({ mkDerivation, base, mtl, template-haskell, th-compat }: 225100 224613 mkDerivation { 225101 224614 pname = "quotet"; 225102 - version = "0.0.0.1"; 225103 - sha256 = "030d1r5skmv0gayryy89yfxr5cq4qs01anbhaclil92g07ffblhz"; 225104 - libraryHaskellDepends = [ 225105 - base exceptions mtl template-haskell th-compat 225106 - ]; 224615 + version = "0.0.1.0"; 224616 + sha256 = "1ajxvhh2zl99ddvmvicsjq775l0k3d8lh433v1z6z6i7zra5hg4g"; 224617 + libraryHaskellDepends = [ base mtl template-haskell th-compat ]; 225107 224618 description = "Monad transformer for Quote from template-haskell"; 225108 224619 license = lib.licenses.cc0; 225109 224620 }) {}; ··· 226269 225786 pname = "rapid"; 226270 225787 version = "0.1.4"; 226271 225788 sha256 = "0f86j4r3sm74w49v9x9s58wahgcgick6z7awl6piq83iqaiy4sh7"; 226272 - revision = "1"; 226273 - editedCabalFile = "1np33ba4d7crwsknw91igrrmkvzwsfmfijirsa7dxmap5npvn3ap"; 225789 + revision = "2"; 225790 + editedCabalFile = "1v31sadig136f7jv9cj7ddj2fn1ymhiahg4hg5n8l3czsjck7qmp"; 226274 225791 libraryHaskellDepends = [ 226275 225792 async base containers foreign-store stm 226276 225793 ]; ··· 229306 228823 }: 229307 228824 mkDerivation { 229308 228825 pname = "reflex-dom-ionic"; 229309 - version = "0.1.0.1"; 229310 - sha256 = "0ka81047gk3hnpj9rcvyq8wnw6kxiwr2hxf8fwy3lclbgpk1sard"; 228826 + version = "0.2.0.0"; 228827 + sha256 = "0pc2kzfk3msd5yfvsvw3q27c32nfzazifipa1d7m4vlpbn5iwrq2"; 229311 228828 libraryHaskellDepends = [ 229312 228829 base containers ghcjs-dom lens ref-tf reflex reflex-dom-core text 229313 228830 ]; ··· 229390 228907 "reflex-dom-th" = callPackage 229391 228908 ({ mkDerivation, array, base, bytestring, containers, filepath 229392 228909 , hspec, megaparsec, reflex-dom-core, stm, tasty, tasty-golden 229393 - , tasty-hspec, template-haskell, text 228910 + , tasty-hspec, template-haskell, text, th-lift-instances 229394 228911 }: 229395 228912 mkDerivation { 229396 228913 pname = "reflex-dom-th"; 229397 - version = "0.3.0.0"; 229398 - sha256 = "19s8jhqrzdd5i4fsjp9870fh3hjy55naasf63d0gp0j6kcnb7ghd"; 228914 + version = "0.3.0.1"; 228915 + sha256 = "1dpzsgix1ldv7n8z8k4pbs3awjzyhyizrd047kx005kz2b1q1ban"; 229399 228916 libraryHaskellDepends = [ 229400 228917 array base containers megaparsec reflex-dom-core template-haskell 229401 - text 228918 + text th-lift-instances 229402 228919 ]; 229403 228920 testHaskellDepends = [ 229404 228921 base bytestring filepath hspec megaparsec stm tasty tasty-golden ··· 229820 229337 libraryHaskellDepends = [ base containers mtl semigroups text ]; 229821 229338 description = "reform is a type-safe HTML form generation and validation library"; 229822 229339 license = lib.licenses.bsd3; 229340 + }) {}; 229341 + 229342 + "reform_0_2_7_5" = callPackage 229343 + ({ mkDerivation, base, containers, mtl, semigroups, text }: 229344 + mkDerivation { 229345 + pname = "reform"; 229346 + version = "0.2.7.5"; 229347 + sha256 = "14p98i2682dm1n4drdrvilz67wfp2lr7m8f0wlmk40q3qmhc05xb"; 229348 + libraryHaskellDepends = [ base containers mtl semigroups text ]; 229349 + description = "reform is a type-safe HTML form generation and validation library"; 229350 + license = lib.licenses.bsd3; 229351 + hydraPlatforms = lib.platforms.none; 229823 229352 }) {}; 229824 229353 229825 229354 "reform-blaze" = callPackage ··· 230891 230396 ]; 230892 230397 testToolDepends = [ tasty-discover ]; 230893 230398 description = "Hedgehog generators for Aeson"; 230399 + license = lib.licenses.mit; 230400 + hydraPlatforms = lib.platforms.none; 230401 + }) {}; 230402 + 230403 + "registry-messagepack" = callPackage 230404 + ({ mkDerivation, base, containers, msgpack, protolude, registry 230405 + , registry-hedgehog, tasty, template-haskell, text, time 230406 + , transformers, vector 230407 + }: 230408 + mkDerivation { 230409 + pname = "registry-messagepack"; 230410 + version = "0.1.0.2"; 230411 + sha256 = "0pwljb8zdq5m47zjfbmy8827g99y2fai6ib9z2p82kkknag1mg5q"; 230412 + libraryHaskellDepends = [ 230413 + base containers msgpack protolude registry template-haskell text 230414 + transformers vector 230415 + ]; 230416 + testHaskellDepends = [ 230417 + base containers msgpack protolude registry registry-hedgehog tasty 230418 + template-haskell text time transformers vector 230419 + ]; 230420 + description = "MessagePack encoders / decoders"; 230894 230421 license = lib.licenses.mit; 230895 230422 hydraPlatforms = lib.platforms.none; 230896 230423 }) {}; ··· 232129 231612 }: 232130 231613 mkDerivation { 232131 231614 pname = "replace-megaparsec"; 232132 - version = "1.4.4.0"; 232133 - sha256 = "1nlbs01ghm6gllkc7chv06hdrwlb94cipcwcx84wzasdqdzvcdl1"; 231615 + version = "1.4.5.0"; 231616 + sha256 = "1n9ik81hd5xgcbzzjrdqxp34q4qg6nklbg36124amdr14id03ylg"; 232134 231617 libraryHaskellDepends = [ 232135 231618 base bytestring megaparsec parser-combinators text 232136 231619 ]; ··· 233679 233162 }: 233680 233163 mkDerivation { 233681 233164 pname = "rex"; 233682 - version = "0.6.1"; 233683 - sha256 = "1zdsdwagrcjlfy2qfvn1gr8z9xz41s2vwf2y4dwrlvh11xswxvhb"; 233165 + version = "0.6.2"; 233166 + sha256 = "17lbpknqzly7h2gz3x4n4ykjirhqym7bk9wrvjhh23din6brg8p3"; 233684 233167 enableSeparateDataOutput = true; 233685 233168 libraryHaskellDepends = [ 233686 233169 base bytestring containers haskell-src-exts haskell-src-meta ··· 235087 234570 ]; 235088 234571 description = "Implementation of the ROC National ID standard"; 235089 234572 license = lib.licenses.bsd3; 235090 - hydraPlatforms = lib.platforms.none; 235091 - broken = true; 235092 234573 }) {}; 235093 234574 235094 234575 "rock" = callPackage ··· 236387 235872 pname = "rss"; 236388 235873 version = "3000.2.0.7"; 236389 235874 sha256 = "0z48xb610k1h29rg03q19y08fp78agxp2gr48innw5y3rz00s6ym"; 236390 - revision = "4"; 236391 - editedCabalFile = "10gn0rqbg3ffsz9c87d0baq27vzvcq7gbqdijhp7s2wl5w70yff2"; 235875 + revision = "5"; 235876 + editedCabalFile = "197a9q8zmfx8imbnrwp7b62xahh2qs47mk67hzhrrz0f5v88qszm"; 236392 235877 libraryHaskellDepends = [ base HaXml network network-uri time ]; 236393 235878 description = "A library for generating RSS 2.0 feeds."; 236394 235879 license = lib.licenses.publicDomain; ··· 238651 238136 }: 238652 238137 mkDerivation { 238653 238138 pname = "sbp"; 238654 - version = "4.1.5"; 238655 - sha256 = "1f3i50i4mfxi8y5akg3kncgkwx2wflcgsv7rzxccd75bv3ynk45z"; 238139 + version = "4.1.6"; 238140 + sha256 = "0ph1bn95bxpmfs2xvbgj7kpz3ji6jf65ykah5srmhqgbw21d1wl7"; 238656 238141 isLibrary = true; 238657 238142 isExecutable = true; 238658 238143 libraryHaskellDepends = [ ··· 241125 240610 license = lib.licenses.mit; 241126 240611 }) {inherit (pkgs) secp256k1;}; 241127 240612 240613 + "secp256k1-haskell_0_6_1" = callPackage 240614 + ({ mkDerivation, base, base16, bytestring, cereal, deepseq, entropy 240615 + , hashable, hspec, hspec-discover, HUnit, monad-par, mtl 240616 + , QuickCheck, secp256k1, string-conversions, unliftio-core 240617 + }: 240618 + mkDerivation { 240619 + pname = "secp256k1-haskell"; 240620 + version = "0.6.1"; 240621 + sha256 = "0abxwmls4rvsnck7p5gpajmha2vc9fbcrr2q1alkpw8acmgfhr76"; 240622 + libraryHaskellDepends = [ 240623 + base base16 bytestring cereal deepseq entropy hashable QuickCheck 240624 + string-conversions unliftio-core 240625 + ]; 240626 + libraryPkgconfigDepends = [ secp256k1 ]; 240627 + testHaskellDepends = [ 240628 + base base16 bytestring cereal deepseq entropy hashable hspec HUnit 240629 + monad-par mtl QuickCheck string-conversions unliftio-core 240630 + ]; 240631 + testToolDepends = [ hspec-discover ]; 240632 + description = "Bindings for secp256k1"; 240633 + license = lib.licenses.mit; 240634 + hydraPlatforms = lib.platforms.none; 240635 + }) {inherit (pkgs) secp256k1;}; 240636 + 241128 240637 "secp256k1-legacy" = callPackage 241129 240638 ({ mkDerivation, base, base16-bytestring, bytestring, Cabal, cereal 241130 240639 , cryptohash, entropy, HUnit, mtl, QuickCheck, string-conversions ··· 241977 241438 }: 241978 241439 mkDerivation { 241979 241440 pname = "sensei"; 241980 - version = "0.6.1"; 241981 - sha256 = "1x5wvxfa08mmfwsyfm5h50lag5knyf19lycvjp3zb6ih70j2l390"; 241441 + version = "0.6.2"; 241442 + sha256 = "168znkrlciywsqpgbssnz2n2w1w6240j1cxk83bpzlflg7q934ps"; 241982 241443 isLibrary = false; 241983 241444 isExecutable = true; 241984 241445 executableHaskellDepends = [ ··· 241993 241454 testToolDepends = [ hspec-discover ]; 241994 241455 description = "Automatically run Hspec tests on file modifications"; 241995 241456 license = lib.licenses.mit; 241996 - hydraPlatforms = lib.platforms.none; 241997 - broken = true; 241457 + platforms = [ 241458 + "aarch64-darwin" "aarch64-linux" "armv7l-linux" "i686-linux" 241459 + "x86_64-linux" 241460 + ]; 241461 + maintainers = with lib.maintainers; [ libjared ]; 241998 241462 }) {}; 241999 241463 242000 241464 "sensenet" = callPackage ··· 252316 251774 pname = "snap-core"; 252317 251775 version = "1.0.5.0"; 252318 251776 sha256 = "0hf671g7h4nikfvi05q3mmcxhfcsh874dkansssn0mc68k9fsak4"; 251777 + revision = "1"; 251778 + editedCabalFile = "17ls02j8lxk0ml3pikxqkpmivzi49n2x5xh14gnrk2j1f8g06zk5"; 252319 251779 libraryHaskellDepends = [ 252320 251780 attoparsec base bytestring bytestring-builder case-insensitive 252321 251781 containers directory filepath hashable HUnit io-streams lifted-base ··· 253077 252533 "snaplet-persistent" = callPackage 253078 252534 ({ mkDerivation, base, bytestring, clientsession, configurator 253079 252535 , errors, heist, lens, map-syntax, monad-logger, mtl, persistent 253080 - , persistent-postgresql, persistent-template, readable 253081 - , resource-pool, resourcet, safe, snap, text, time, transformers 253082 - , unordered-containers 252536 + , persistent-postgresql, readable, resource-pool, resourcet, safe 252537 + , snap, text, time, transformers, unordered-containers 253083 252538 }: 253084 252539 mkDerivation { 253085 252540 pname = "snaplet-persistent"; 253086 - version = "0.6.1"; 253087 - sha256 = "1s1ay1kzmjg3gh14ggnb24hpr2gjyk0ip0jbn55ly5zgfqdb422v"; 252541 + version = "0.7.1"; 252542 + sha256 = "1vp114ddq5fjl3bwwnwry39flfb3d4b7zws9m3yh315qk85ji3s6"; 253088 252543 enableSeparateDataOutput = true; 253089 252544 libraryHaskellDepends = [ 253090 252545 base bytestring clientsession configurator errors heist lens 253091 252546 map-syntax monad-logger mtl persistent persistent-postgresql 253092 - persistent-template readable resource-pool resourcet safe snap text 253093 - time transformers unordered-containers 252547 + readable resource-pool resourcet safe snap text time transformers 252548 + unordered-containers 253094 252549 ]; 253095 252550 description = "persistent snaplet for the Snap Framework"; 253096 252551 license = lib.licenses.bsd3; ··· 255213 254670 }: 255214 254671 mkDerivation { 255215 254672 pname = "spatial-rotations"; 255216 - version = "0.1.0.1"; 255217 - sha256 = "02nysw4dbg5l37j83kdybxkrdzgjxn20h3lknnphwz0hr0n489ii"; 255218 - revision = "3"; 255219 - editedCabalFile = "03kjhr51w600cnm1jgdc9nbm9ay66fxq93z7r6xgph1a4dmcjvg4"; 254673 + version = "0.1.0.2"; 254674 + sha256 = "01jac0m6hjx89sp6wqs8f103gjd6wlmj7vxl3a6sy6xchk81irl9"; 255220 254675 libraryHaskellDepends = [ 255221 254676 base linear manifolds-core vector-space 255222 254677 ]; ··· 258920 258379 pname = "steeloverseer"; 258921 258380 version = "2.1.0.0"; 258922 258381 sha256 = "1l2pfk6fdnc2ssmcjmwj8w5wfk6ra4n880nbxr670kzrlnr2vqg1"; 258382 + revision = "1"; 258383 + editedCabalFile = "0vb2k7c02gmnn03zq84pb9ycsl8nkahkddwzn3nh0jsgb2jc9pln"; 258923 258384 isLibrary = true; 258924 258385 isExecutable = true; 258925 258386 libraryHaskellDepends = [ ··· 263997 263454 }: 263998 263455 mkDerivation { 263999 263456 pname = "syb-with-class"; 264000 - version = "0.6.1.13"; 264001 - sha256 = "1w767im0a2qdi6br6lx4kh946yryibjwjx4a64cijxfrj7gbfxk5"; 263457 + version = "0.6.1.14"; 263458 + sha256 = "1dm64pn06sc05sbkmgrnj5b6p33xaz65ghx8233h5jqq7phyjrlc"; 264002 263459 libraryHaskellDepends = [ 264003 263460 array base bytestring containers template-haskell 264004 263461 ]; ··· 264031 263488 }: 264032 263489 mkDerivation { 264033 263490 pname = "sydtest"; 264034 - version = "0.8.0.1"; 264035 - sha256 = "0h524wiwmvx4gp73lsnl5bk93866z6ac1s37xbym7jlfbzn6q8x1"; 263491 + version = "0.9.0.0"; 263492 + sha256 = "1gp9kifyh88pjnk7vnb0p09fkcmnhy5akgfdacmrmgwcnyswx6f1"; 264036 263493 libraryHaskellDepends = [ 264037 263494 async autodocodec autodocodec-yaml base bytestring containers Diff 264038 263495 dlist envparse filepath MonadRandom mtl optparse-applicative path 264039 263496 path-io pretty-show QuickCheck quickcheck-io random-shuffle safe 264040 - safe-coloured-text safe-coloured-text-terminfo split text yaml 263497 + safe-coloured-text safe-coloured-text-terminfo split stm text yaml 264041 263498 ]; 264042 263499 testHaskellDepends = [ 264043 263500 base bytestring path path-io QuickCheck random safe-coloured-text ··· 264108 263565 }) {}; 264109 263566 264110 263567 "sydtest-hedgehog" = callPackage 264111 - ({ mkDerivation, base, containers, hedgehog, sydtest 263568 + ({ mkDerivation, base, containers, hedgehog, stm, sydtest 264112 263569 , sydtest-discover 264113 263570 }: 264114 263571 mkDerivation { 264115 263572 pname = "sydtest-hedgehog"; 264116 - version = "0.0.0.0"; 264117 - sha256 = "0kxx2r4hjqzkrhplgfby2x7zcya05n42hna86zk27k2i9hkabhnh"; 264118 - libraryHaskellDepends = [ base containers hedgehog sydtest ]; 263573 + version = "0.1.0.0"; 263574 + sha256 = "0p0aj2jd6cgi3mdzdlwksczikxsx9ajh0lcvd6k4059x1ddjxplb"; 263575 + libraryHaskellDepends = [ base containers hedgehog stm sydtest ]; 264119 263576 testHaskellDepends = [ base hedgehog sydtest ]; 264120 263577 testToolDepends = [ sydtest-discover ]; 264121 263578 description = "A Hedgehog companion library for sydtest"; ··· 264144 263601 }) {}; 264145 263602 264146 263603 "sydtest-hspec" = callPackage 264147 - ({ mkDerivation, base, hspec, hspec-core, mtl, sydtest 264148 - , sydtest-discover 263604 + ({ mkDerivation, base, hspec, hspec-core, mtl, QuickCheck, stm 263605 + , sydtest, sydtest-discover 264149 263606 }: 264150 263607 mkDerivation { 264151 263608 pname = "sydtest-hspec"; 264152 - version = "0.0.0.1"; 264153 - sha256 = "14z15z0yihssy2s0cn570q61md3zbagf329gj26i5r7rfwr9mm7m"; 264154 - libraryHaskellDepends = [ base hspec-core mtl sydtest ]; 264155 - testHaskellDepends = [ base hspec sydtest ]; 263609 + version = "0.1.0.0"; 263610 + sha256 = "17j48cp7n0smci0m42yyvkz0rd5xfrysb2f6hwxaqhl703ifhlyy"; 263611 + libraryHaskellDepends = [ 263612 + base hspec-core mtl QuickCheck stm sydtest 263613 + ]; 263614 + testHaskellDepends = [ base hspec stm sydtest ]; 264156 263615 testToolDepends = [ sydtest-discover ]; 264157 263616 description = "An Hspec companion library for sydtest"; 264158 263617 license = "unknown"; ··· 264337 263792 ]; 264338 263793 testToolDepends = [ sydtest-discover ]; 264339 263794 description = "A wai companion library for sydtest"; 263795 + license = "unknown"; 263796 + hydraPlatforms = lib.platforms.none; 263797 + }) {}; 263798 + 263799 + "sydtest-webdriver" = callPackage 263800 + ({ mkDerivation, aeson, base, http-client, http-types 263801 + , monad-control, mtl, network, network-uri, path, path-io 263802 + , port-utils, sydtest, sydtest-discover, sydtest-typed-process 263803 + , sydtest-wai, transformers-base, typed-process, wai, webdriver 263804 + }: 263805 + mkDerivation { 263806 + pname = "sydtest-webdriver"; 263807 + version = "0.0.0.0"; 263808 + sha256 = "030qv68sb075lqwz449yvliwg356ggn3ab90zcad6hc6hyz8x3vp"; 263809 + libraryHaskellDepends = [ 263810 + aeson base http-client http-types monad-control mtl network 263811 + network-uri path path-io port-utils sydtest sydtest-typed-process 263812 + sydtest-wai transformers-base typed-process webdriver 263813 + ]; 263814 + testHaskellDepends = [ 263815 + base http-types network-uri sydtest sydtest-wai wai 263816 + ]; 263817 + testToolDepends = [ sydtest-discover ]; 263818 + description = "A webdriver companion library for sydtest"; 263819 + license = "unknown"; 263820 + hydraPlatforms = lib.platforms.none; 263821 + }) {}; 263822 + 263823 + "sydtest-webdriver-screenshot" = callPackage 263824 + ({ mkDerivation, base, bytestring, http-types, JuicyPixels, mtl 263825 + , network-uri, path, path-io, sydtest, sydtest-discover 263826 + , sydtest-wai, sydtest-webdriver, wai, webdriver 263827 + }: 263828 + mkDerivation { 263829 + pname = "sydtest-webdriver-screenshot"; 263830 + version = "0.0.0.0"; 263831 + sha256 = "00w3ijgwwplgg0310qnc56c5a50i1vnzn94np4jscjv4aw849s1b"; 263832 + libraryHaskellDepends = [ 263833 + base bytestring http-types JuicyPixels mtl network-uri path path-io 263834 + sydtest sydtest-wai sydtest-webdriver webdriver 263835 + ]; 263836 + testHaskellDepends = [ 263837 + base http-types network-uri sydtest sydtest-wai sydtest-webdriver 263838 + wai 263839 + ]; 263840 + testToolDepends = [ sydtest-discover ]; 263841 + description = "A webdriver screenshot companion library for sydtest"; 263842 + license = "unknown"; 263843 + hydraPlatforms = lib.platforms.none; 263844 + }) {}; 263845 + 263846 + "sydtest-webdriver-yesod" = callPackage 263847 + ({ mkDerivation, base, bytestring, http-client, http-types, mtl 263848 + , network-uri, path, path-io, sydtest, sydtest-discover 263849 + , sydtest-wai, sydtest-webdriver, sydtest-yesod, text, webdriver 263850 + , yesod 263851 + }: 263852 + mkDerivation { 263853 + pname = "sydtest-webdriver-yesod"; 263854 + version = "0.0.0.0"; 263855 + sha256 = "10q112rsj5gh3ijy7pf93zslsxqk7jim1i1fslqpld71wqw2abr2"; 263856 + libraryHaskellDepends = [ 263857 + base bytestring http-client http-types mtl network-uri path path-io 263858 + sydtest sydtest-wai sydtest-webdriver sydtest-yesod text webdriver 263859 + yesod 263860 + ]; 263861 + testHaskellDepends = [ 263862 + base path path-io sydtest sydtest-webdriver yesod 263863 + ]; 263864 + testToolDepends = [ sydtest-discover ]; 263865 + description = "A webdriver+yesod companion library for sydtest"; 264340 263866 license = "unknown"; 264341 263867 hydraPlatforms = lib.platforms.none; 264342 263868 }) {}; ··· 268850 268234 license = lib.licenses.bsd3; 268851 268235 }) {}; 268852 268236 268237 + "telegram-bot-simple_0_5" = callPackage 268238 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron 268239 + , filepath, hashable, http-api-data, http-client, http-client-tls 268240 + , monad-control, mtl, pretty-show, profunctors, servant 268241 + , servant-client, servant-multipart-api, servant-multipart-client 268242 + , split, stm, template-haskell, text, time, transformers 268243 + , unordered-containers 268244 + }: 268245 + mkDerivation { 268246 + pname = "telegram-bot-simple"; 268247 + version = "0.5"; 268248 + sha256 = "0mzzq7lfl56h1i9dr617h5vcv47j2nsf77pkq18s8wk5zrc67r2w"; 268249 + isLibrary = true; 268250 + isExecutable = true; 268251 + libraryHaskellDepends = [ 268252 + aeson aeson-pretty base bytestring cron filepath hashable 268253 + http-api-data http-client http-client-tls monad-control mtl 268254 + pretty-show profunctors servant servant-client 268255 + servant-multipart-api servant-multipart-client split stm 268256 + template-haskell text time transformers unordered-containers 268257 + ]; 268258 + description = "Easy to use library for building Telegram bots"; 268259 + license = lib.licenses.bsd3; 268260 + hydraPlatforms = lib.platforms.none; 268261 + }) {}; 268262 + 268853 268263 "telegram-raw-api" = callPackage 268854 268264 ({ mkDerivation, aeson, base, bytestring, deriving-aeson 268855 268265 , generic-lens, hashable, http-client, http-client-tls, http-media ··· 271073 270431 }: 271074 270432 mkDerivation { 271075 270433 pname = "text-builder-dev"; 271076 - version = "0.2.0.1"; 271077 - sha256 = "196qnqr5pxx6s4dd37pbzfmbml379s1m91pkimkklf8r2jcvf1zn"; 270434 + version = "0.2.1"; 270435 + sha256 = "0jrzs4dcm2zq5gsn4lbmrasrsk31rs0z6n3vgs514x7p3fdv6lpj"; 271078 270436 libraryHaskellDepends = [ 271079 270437 base bytestring deferred-folds split text text-conversions tostring 271080 270438 transformers ··· 278015 277373 }: 278016 277374 mkDerivation { 278017 277375 pname = "tree-sitter"; 278018 - version = "0.9.0.2"; 278019 - sha256 = "1jw70m7z7yj4d2ivgynh8z7n5ndd978r21012hxj93sy87axz7mf"; 277376 + version = "0.9.0.3"; 277377 + sha256 = "0al8pywpg0xr7cq9bq7acppkpl6zlzggf0pdh8g0vgi5vipbscad"; 278020 277378 libraryHaskellDepends = [ 278021 277379 base bytestring containers directory filepath split 278022 277380 template-haskell unordered-containers ··· 278026 277384 license = lib.licenses.bsd3; 278027 277385 }) {}; 278028 277386 277387 + "tree-sitter-c-sharp" = callPackage 277388 + ({ mkDerivation, base, tree-sitter }: 277389 + mkDerivation { 277390 + pname = "tree-sitter-c-sharp"; 277391 + version = "0.1.0.1"; 277392 + sha256 = "0cdp95djcjdb123hc87jrhcrvhi4s0r1x2c8l6sy58bhal4cgkhz"; 277393 + enableSeparateDataOutput = true; 277394 + libraryHaskellDepends = [ base tree-sitter ]; 277395 + description = "Tree-sitter grammar/parser for C#"; 277396 + license = lib.licenses.bsd3; 277397 + }) {}; 277398 + 278029 277399 "tree-sitter-go" = callPackage 278030 277400 ({ mkDerivation, base, tree-sitter }: 278031 277401 mkDerivation { 278032 277402 pname = "tree-sitter-go"; 278033 - version = "0.5.0.2"; 278034 - sha256 = "0zl8q96xffi4cqd3yl44x64q9440qragg8735lzwwfl8nayx78bj"; 277403 + version = "0.5.0.3"; 277404 + sha256 = "0z4x25dk6m34di829431gsa9gfh2ih2svpm73dj53p2fz78m4988"; 278035 277405 enableSeparateDataOutput = true; 278036 277406 libraryHaskellDepends = [ base tree-sitter ]; 278037 277407 description = "Tree-sitter grammar/parser for Go"; ··· 278054 277400 ({ mkDerivation, base, tree-sitter }: 278055 277401 mkDerivation { 278056 277402 pname = "tree-sitter-haskell"; 278057 - version = "0.3.0.1"; 278058 - sha256 = "194rws181v8pv3w9zxx9h8fqnilivwrdw27hwlps30kmmk26rraq"; 277403 + version = "0.3.0.2"; 277404 + sha256 = "0ir90y3nh3pvx0f3rs4k14y8fqjia9r964ir5pnj1f8wggiijnyz"; 278059 277405 isLibrary = true; 278060 277406 isExecutable = true; 278061 277407 libraryHaskellDepends = [ base tree-sitter ]; ··· 278067 277413 ({ mkDerivation, base, tree-sitter }: 278068 277414 mkDerivation { 278069 277415 pname = "tree-sitter-java"; 278070 - version = "0.7.0.2"; 278071 - sha256 = "1im1cwf20f02i244ggb5xl1cblkxr4rjk5h1c91vhzfv1hja37sn"; 277416 + version = "0.7.0.3"; 277417 + sha256 = "0d8cyrzpl00v3l01pr4sdm22r644781kac9fn93nm9ix7n3wj6fs"; 278072 277418 enableSeparateDataOutput = true; 278073 277419 libraryHaskellDepends = [ base tree-sitter ]; 278074 277420 description = "Tree-sitter grammar/parser for Java"; ··· 278079 277425 ({ mkDerivation, base, tree-sitter }: 278080 277426 mkDerivation { 278081 277427 pname = "tree-sitter-json"; 278082 - version = "0.7.0.2"; 278083 - sha256 = "02ly1dj4l8l1cvi5ymwqv85l0jdq9dixcpgqgyy1d744d214gg4g"; 277428 + version = "0.7.0.3"; 277429 + sha256 = "08h91b7sbl2i96w3gw6z9cs7q40bifliicl7pb1ghq4v9vzgmcm6"; 278084 277430 enableSeparateDataOutput = true; 278085 277431 libraryHaskellDepends = [ base tree-sitter ]; 278086 277432 description = "Tree-sitter grammar/parser for JSON"; 277433 + license = lib.licenses.bsd3; 277434 + }) {}; 277435 + 277436 + "tree-sitter-ocaml" = callPackage 277437 + ({ mkDerivation, base, tree-sitter }: 277438 + mkDerivation { 277439 + pname = "tree-sitter-ocaml"; 277440 + version = "0.1.0.1"; 277441 + sha256 = "1pgfz6zrpf62m7j20vx8r0x0m06y5dnv8ps2clxl4a8j8dmk7scn"; 277442 + enableSeparateDataOutput = true; 277443 + libraryHaskellDepends = [ base tree-sitter ]; 277444 + description = "Tree-sitter grammar/parser for OCaml"; 278087 277445 license = lib.licenses.bsd3; 278088 277446 }) {}; 278089 277447 ··· 278103 277437 ({ mkDerivation, base, tree-sitter }: 278104 277438 mkDerivation { 278105 277439 pname = "tree-sitter-php"; 278106 - version = "0.5.0.1"; 278107 - sha256 = "05nfsw1mk27xiqr9ca8bky437xqin4zqb1mammcjpyi9qif9zzbh"; 277440 + version = "0.5.0.2"; 277441 + sha256 = "02g3mdj8cx4h1gx65v3s38kmmmrj7d3ki95qhrcifjwbjgn7nc36"; 278108 277442 enableSeparateDataOutput = true; 278109 277443 libraryHaskellDepends = [ base tree-sitter ]; 278110 277444 description = "Tree-sitter grammar/parser for PHP"; ··· 278115 277449 ({ mkDerivation, base, tree-sitter }: 278116 277450 mkDerivation { 278117 277451 pname = "tree-sitter-python"; 278118 - version = "0.9.0.3"; 278119 - sha256 = "1bjiddhm0zj01s7785xr7yldsbd1agbj4nc9cyxvkadxmf7cha7h"; 277452 + version = "0.9.0.4"; 277453 + sha256 = "0hx5vc03mvhd0m92n4m87iqxyr1i8hbyxhb33ziq7c510cr6c6gq"; 278120 277454 enableSeparateDataOutput = true; 278121 277455 libraryHaskellDepends = [ base tree-sitter ]; 278122 277456 description = "Tree-sitter grammar/parser for Python"; ··· 278127 277461 ({ mkDerivation, base, tree-sitter }: 278128 277462 mkDerivation { 278129 277463 pname = "tree-sitter-ql"; 278130 - version = "0.1.0.4"; 278131 - sha256 = "0pawzp1q160h6ccl2dkngrgkyxjs1szsyxjn55clbv4jla3zypni"; 277464 + version = "0.1.0.5"; 277465 + sha256 = "1xfr0rpzmxjwlhd1s99gi9jl0yjd3awa328z01x7hk8ww4jpbg00"; 278132 277466 enableSeparateDataOutput = true; 278133 277467 libraryHaskellDepends = [ base tree-sitter ]; 278134 277468 description = "Tree-sitter grammar/parser for QL"; ··· 278139 277473 ({ mkDerivation, base, tree-sitter }: 278140 277474 mkDerivation { 278141 277475 pname = "tree-sitter-ruby"; 278142 - version = "0.5.0.3"; 278143 - sha256 = "097wrscdjlr5nqyx2d3076gppfv3xm299b6iya5g50z24g5izfxn"; 277476 + version = "0.5.0.4"; 277477 + sha256 = "0rvlgw5d8ryinabq6520g1y5gwgrjdb1wjr6jc9ikhdsqppp17yy"; 278144 277478 enableSeparateDataOutput = true; 278145 277479 libraryHaskellDepends = [ base tree-sitter ]; 278146 277480 description = "Tree-sitter grammar/parser for Ruby"; ··· 278151 277485 ({ mkDerivation, base, tree-sitter }: 278152 277486 mkDerivation { 278153 277487 pname = "tree-sitter-rust"; 278154 - version = "0.1.0.1"; 278155 - sha256 = "0h8dbr4pn1qnqlg0fs1f6jxasjpfjs4j6x4h86dhz6sw3fih9g00"; 277488 + version = "0.1.0.2"; 277489 + sha256 = "0ql5x6bxsmqnzj2xz6dfqdp3ab87df9jv8vcjxywr8nx07fwi6zl"; 278156 277490 enableSeparateDataOutput = true; 278157 277491 libraryHaskellDepends = [ base tree-sitter ]; 278158 277492 description = "Tree-sitter grammar/parser for Rust"; ··· 278163 277497 ({ mkDerivation, base, tree-sitter }: 278164 277498 mkDerivation { 278165 277499 pname = "tree-sitter-tsx"; 278166 - version = "0.5.0.2"; 278167 - sha256 = "0ir4n732wd5i6m8jkkrwah7091i147pxbaa2mpl56zg8nya52490"; 277500 + version = "0.5.0.3"; 277501 + sha256 = "0d2qqqlqs5qr776b3wrnzbfk7iq635c1knpvmf8dc8a7cvqbrrhz"; 278168 277502 enableSeparateDataOutput = true; 278169 277503 libraryHaskellDepends = [ base tree-sitter ]; 278170 277504 description = "Tree-sitter grammar/parser for TSX"; ··· 278175 277509 ({ mkDerivation, base, tree-sitter }: 278176 277510 mkDerivation { 278177 277511 pname = "tree-sitter-typescript"; 278178 - version = "0.5.0.2"; 278179 - sha256 = "0qlwiks80861f9prps4x5ag6ivi9ihp8rq416jmmgmc3bj72bkfi"; 277512 + version = "0.5.0.3"; 277513 + sha256 = "0s7bp11jgj4381lln2z3zl7dxvyi10yiza08473nd8z5d3xr0kjh"; 278180 277514 enableSeparateDataOutput = true; 278181 277515 libraryHaskellDepends = [ base tree-sitter ]; 278182 277516 description = "Tree-sitter grammar/parser for TypeScript"; ··· 285655 284989 }: 285656 284990 mkDerivation { 285657 284991 pname = "userid"; 285658 - version = "0.1.3.6"; 285659 - sha256 = "02alsm7h42hjymmr2xn2cf9ks6sph6arccirpndbndyvbgrds7nn"; 284992 + version = "0.1.3.7"; 284993 + sha256 = "12ijma954vss6a2nicq17q5pz3l7qjgh1f6s8lcrrxcf8vc10m1c"; 285660 284994 libraryHaskellDepends = [ 285661 284995 aeson base boomerang cereal safecopy web-routes web-routes-th 285662 284996 ]; ··· 286798 286132 pname = "validity"; 286799 286133 version = "0.12.0.0"; 286800 286134 sha256 = "03md04q3ymilgc1pssczij392bphmg9ld6aa0fwfwjyjlqjj67fk"; 286135 + revision = "1"; 286136 + editedCabalFile = "1ifdx7vrr6n3zkgk6gp9djp0xcy8ndvrl585c01rq12rg3l0my8p"; 286801 286137 libraryHaskellDepends = [ base ]; 286802 286138 testHaskellDepends = [ base hspec ]; 286803 286139 description = "Validity typeclass"; ··· 286814 286146 pname = "validity-aeson"; 286815 286147 version = "0.2.0.4"; 286816 286148 sha256 = "1k0x6va9mmz0z9hgd1is71ks4fgbziw53rm7r6jsidp4ksszdzm0"; 286149 + revision = "1"; 286150 + editedCabalFile = "1zhqg6hac0js33yn0xw10pcp11hbygr95vmcmgpp3sdxdhgpbnmy"; 286817 286151 libraryHaskellDepends = [ 286818 286152 aeson base validity validity-scientific validity-text 286819 286153 validity-unordered-containers validity-vector ··· 286904 286234 pname = "validity-text"; 286905 286235 version = "0.3.1.2"; 286906 286236 sha256 = "00sfiykazz2iwwr43lxl0q6dn03jpf515k0s8hymqpychmflyqhi"; 286237 + revision = "1"; 286238 + editedCabalFile = "0d0gkp9wjbhq2p6zfnc2jx5ifh6xi84psiqrrxczdgi1kwl0af3j"; 286907 286239 libraryHaskellDepends = [ base bytestring text validity ]; 286908 286240 description = "Validity instances for text"; 286909 286241 license = lib.licenses.mit; ··· 290152 289480 license = lib.licenses.mit; 290153 289481 }) {}; 290154 289482 289483 + "wai-extra_3_1_10" = callPackage 289484 + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring 289485 + , bytestring, call-stack, case-insensitive, containers, cookie 289486 + , data-default-class, directory, fast-logger, hspec, http-types 289487 + , http2, HUnit, iproute, network, resourcet, streaming-commons 289488 + , text, time, transformers, unix, vault, wai, wai-logger, word8 289489 + , zlib 289490 + }: 289491 + mkDerivation { 289492 + pname = "wai-extra"; 289493 + version = "3.1.10"; 289494 + sha256 = "0ldzwcjgj0k3ma25y4jaywv4g4bjjnn75ixlk1h4r4f3iapxm6kr"; 289495 + isLibrary = true; 289496 + isExecutable = true; 289497 + libraryHaskellDepends = [ 289498 + aeson ansi-terminal base base64-bytestring bytestring call-stack 289499 + case-insensitive containers cookie data-default-class directory 289500 + fast-logger http-types http2 HUnit iproute network resourcet 289501 + streaming-commons text time transformers unix vault wai wai-logger 289502 + word8 289503 + ]; 289504 + testHaskellDepends = [ 289505 + aeson base bytestring case-insensitive cookie fast-logger hspec 289506 + http-types http2 HUnit iproute resourcet text time transformers wai 289507 + zlib 289508 + ]; 289509 + description = "Provides some basic WAI handlers and middleware"; 289510 + license = lib.licenses.mit; 289511 + hydraPlatforms = lib.platforms.none; 289512 + }) {}; 289513 + 290155 289514 "wai-feature-flags" = callPackage 290156 289515 ({ mkDerivation, aeson, base, bytestring, splitmix, text 290157 289516 , unordered-containers, wai, warp ··· 292609 291906 license = lib.licenses.bsd3; 292610 291907 }) {}; 292611 291908 291909 + "web-routes_0_27_14_4" = callPackage 291910 + ({ mkDerivation, base, blaze-builder, bytestring, exceptions 291911 + , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck 291912 + , split, text, utf8-string 291913 + }: 291914 + mkDerivation { 291915 + pname = "web-routes"; 291916 + version = "0.27.14.4"; 291917 + sha256 = "10zpyxigrmp97x7xd9aw8kn925ygjf0jv8hppxmksjf9a6pvyfn1"; 291918 + libraryHaskellDepends = [ 291919 + base blaze-builder bytestring exceptions ghc-prim http-types mtl 291920 + parsec split text utf8-string 291921 + ]; 291922 + testHaskellDepends = [ base hspec HUnit QuickCheck text ]; 291923 + description = "portable, type-safe URL routing"; 291924 + license = lib.licenses.bsd3; 291925 + hydraPlatforms = lib.platforms.none; 291926 + }) {}; 291927 + 292612 291928 "web-routes-boomerang" = callPackage 292613 291929 ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 292614 291930 mkDerivation { ··· 292639 291917 ]; 292640 291918 description = "Use boomerang for type-safe URL parsers/printers"; 292641 291919 license = lib.licenses.bsd3; 291920 + }) {}; 291921 + 291922 + "web-routes-boomerang_0_28_4_3" = callPackage 291923 + ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 291924 + mkDerivation { 291925 + pname = "web-routes-boomerang"; 291926 + version = "0.28.4.3"; 291927 + sha256 = "1cdn29084i2bvsh7pa6d4dr5bgpixix36dhi49q8nbcbp02qycap"; 291928 + libraryHaskellDepends = [ 291929 + base boomerang mtl parsec text web-routes 291930 + ]; 291931 + description = "Use boomerang for type-safe URL parsers/printers"; 291932 + license = lib.licenses.bsd3; 291933 + hydraPlatforms = lib.platforms.none; 292642 291934 }) {}; 292643 291935 292644 291936 "web-routes-generics" = callPackage ··· 292681 291945 license = lib.licenses.bsd3; 292682 291946 }) {}; 292683 291947 291948 + "web-routes-happstack_0_23_12_2" = callPackage 291949 + ({ mkDerivation, base, bytestring, happstack-server, text 291950 + , web-routes 291951 + }: 291952 + mkDerivation { 291953 + pname = "web-routes-happstack"; 291954 + version = "0.23.12.2"; 291955 + sha256 = "01ks9c8bln8yiff7dqfm3ai7scci304q94w1zaqvzph57m1whrd6"; 291956 + libraryHaskellDepends = [ 291957 + base bytestring happstack-server text web-routes 291958 + ]; 291959 + description = "Adds support for using web-routes with Happstack"; 291960 + license = lib.licenses.bsd3; 291961 + hydraPlatforms = lib.platforms.none; 291962 + }) {}; 291963 + 292684 291964 "web-routes-hsp" = callPackage 292685 291965 ({ mkDerivation, base, hsp, text, web-routes }: 292686 291966 mkDerivation { ··· 292706 291954 libraryHaskellDepends = [ base hsp text web-routes ]; 292707 291955 description = "Adds XMLGenerator instance for RouteT monad"; 292708 291956 license = lib.licenses.bsd3; 291957 + }) {}; 291958 + 291959 + "web-routes-hsp_0_24_6_2" = callPackage 291960 + ({ mkDerivation, base, hsp, text, web-routes }: 291961 + mkDerivation { 291962 + pname = "web-routes-hsp"; 291963 + version = "0.24.6.2"; 291964 + sha256 = "0cmijyklkrakcwfmwfa70kbm619p1dfl900lx57mca23k8m2aksn"; 291965 + libraryHaskellDepends = [ base hsp text web-routes ]; 291966 + description = "Adds XMLGenerator instance for RouteT monad"; 291967 + license = lib.licenses.bsd3; 291968 + hydraPlatforms = lib.platforms.none; 292709 291969 }) {}; 292710 291970 292711 291971 "web-routes-mtl" = callPackage ··· 292764 292000 }: 292765 292001 mkDerivation { 292766 292002 pname = "web-routes-th"; 292767 - version = "0.22.6.6"; 292768 - sha256 = "0z5mcpnp38x6yzazdkdbj9z99837g9nlm4pp3lxzzsib7qs9a6sp"; 292003 + version = "0.22.7"; 292004 + sha256 = "0h3xaml18jgc66ylmwlymp1mqnf59lfvsd3xswdki8dk31ryaca4"; 292769 292005 libraryHaskellDepends = [ 292770 292006 base parsec split template-haskell text web-routes 292771 292007 ]; ··· 292802 292038 ]; 292803 292039 description = "Library for maintaining correctness of URLs within an application"; 292804 292040 license = lib.licenses.bsd3; 292041 + }) {}; 292042 + 292043 + "web-routes-wai_0_24_3_2" = callPackage 292044 + ({ mkDerivation, base, bytestring, http-types, text, wai 292045 + , web-routes 292046 + }: 292047 + mkDerivation { 292048 + pname = "web-routes-wai"; 292049 + version = "0.24.3.2"; 292050 + sha256 = "1cdahkpw0194gdx11g4h4313ni0b6sdj9j5r666rgwwzr22wgql7"; 292051 + libraryHaskellDepends = [ 292052 + base bytestring http-types text wai web-routes 292053 + ]; 292054 + description = "Library for maintaining correctness of URLs within an application"; 292055 + license = lib.licenses.bsd3; 292056 + hydraPlatforms = lib.platforms.none; 292805 292057 }) {}; 292806 292058 292807 292059 "web-routing" = callPackage ··· 294171 293391 }) {inherit (pkgs) SDL2;}; 294172 293392 294173 293393 "what4" = callPackage 294174 - ({ mkDerivation, attoparsec, base, bifunctors, bimap, bv-sized 294175 - , bytestring, config-value, containers, contravariant 294176 - , data-binary-ieee754, deepseq, deriving-compat, directory 294177 - , exceptions, extra, filepath, fingertree, ghc-prim, hashable 293394 + ({ mkDerivation, async, attoparsec, base, bifunctors, bimap 293395 + , bv-sized, bytestring, concurrent-extra, config-value, containers 293396 + , contravariant, data-binary-ieee754, deepseq, deriving-compat 293397 + , directory, exceptions, filepath, fingertree, ghc-prim, hashable 294178 293398 , hashtables, hedgehog, io-streams, lens, libBF, lumberjack, mtl 294179 293399 , panic, parameterized-utils, prettyprinter, process, QuickCheck 294180 - , scientific, tasty, tasty-checklist, tasty-hedgehog, tasty-hunit 294181 - , tasty-quickcheck, tasty-sugar, template-haskell, temporary, text 294182 - , th-abstraction, th-lift, th-lift-instances, transformers 294183 - , unordered-containers, utf8-string, vector, versions, zenc 293400 + , scientific, tasty, tasty-checklist, tasty-expected-failure 293401 + , tasty-hedgehog, tasty-hunit, tasty-quickcheck, tasty-sugar 293402 + , template-haskell, temporary, text, th-abstraction, th-lift 293403 + , th-lift-instances, transformers, unordered-containers 293404 + , utf8-string, vector, versions, zenc 294184 293405 }: 294185 293406 mkDerivation { 294186 293407 pname = "what4"; 294187 - version = "1.2.1"; 294188 - sha256 = "0cbvdiszqzhw50m51kfm0qsadq04dxwb8836hibv61sshgckpsf3"; 293408 + version = "1.3"; 293409 + sha256 = "03p4sk543vygmah0mf1nzlxv9l3qzaiy023if3cszcwys22gr7kq"; 294189 293410 isLibrary = true; 294190 293411 isExecutable = true; 294191 293412 enableSeparateDataOutput = true; 294192 293413 libraryHaskellDepends = [ 294193 - attoparsec base bifunctors bimap bv-sized bytestring config-value 294194 - containers data-binary-ieee754 deepseq deriving-compat directory 294195 - exceptions extra filepath fingertree ghc-prim hashable hashtables 294196 - io-streams lens libBF mtl panic parameterized-utils prettyprinter 294197 - process scientific template-haskell temporary text th-abstraction 294198 - th-lift th-lift-instances transformers unordered-containers 294199 - utf8-string vector versions zenc 293414 + async attoparsec base bifunctors bimap bv-sized bytestring 293415 + concurrent-extra config-value containers data-binary-ieee754 293416 + deepseq deriving-compat directory exceptions filepath fingertree 293417 + ghc-prim hashable hashtables io-streams lens libBF mtl panic 293418 + parameterized-utils prettyprinter process scientific 293419 + template-haskell temporary text th-abstraction th-lift 293420 + th-lift-instances transformers unordered-containers utf8-string 293421 + vector versions zenc 294200 293422 ]; 294201 293423 executableHaskellDepends = [ base parameterized-utils ]; 294202 293424 testHaskellDepends = [ 294203 293425 base bv-sized bytestring containers contravariant 294204 293426 data-binary-ieee754 exceptions hedgehog io-streams libBF lumberjack 294205 - parameterized-utils prettyprinter QuickCheck tasty tasty-checklist 294206 - tasty-hedgehog tasty-hunit tasty-quickcheck tasty-sugar text 294207 - transformers versions 293427 + parameterized-utils prettyprinter process QuickCheck tasty 293428 + tasty-checklist tasty-expected-failure tasty-hedgehog tasty-hunit 293429 + tasty-quickcheck tasty-sugar text transformers versions 294208 293430 ]; 294209 293431 description = "Solver-agnostic symbolic values support for issuing queries"; 294210 293432 license = lib.licenses.bsd3; ··· 295372 294590 pname = "word24"; 295373 294591 version = "2.0.1"; 295374 294592 sha256 = "11m0qffpjngylmci73v7y3ap7v8244cylzgj3qai9wwdr1ya2jy3"; 294593 + revision = "1"; 294594 + editedCabalFile = "1mhjln83z2sz0pq9phlzjbdl7lny8fn3pb0smphm2rz09j6nmb0m"; 295375 294595 libraryHaskellDepends = [ base deepseq ]; 295376 294596 testHaskellDepends = [ 295377 294597 base deepseq QuickCheck test-framework test-framework-quickcheck2 ··· 300230 299446 }: 300231 299447 mkDerivation { 300232 299448 pname = "yapb"; 300233 - version = "0.2.3"; 300234 - sha256 = "14909qgfvz19jqyj64y2mjg4nzrd3kk3zffg53mf6715y49y6npb"; 299449 + version = "0.2.6"; 299450 + sha256 = "1gdmnhafr7i4f4zxsiq3yw2kzlxrir9vygf2g41war9wnd9mfq8p"; 300235 299451 isLibrary = true; 300236 299452 isExecutable = true; 300237 299453 libraryHaskellDepends = [ ··· 302132 301348 }: 302133 301349 mkDerivation { 302134 301350 pname = "yesod-persistent"; 302135 - version = "1.6.0.7"; 302136 - sha256 = "102xmp7n08sk1g5rv31jpln2v9kqf1zsqsnmi83mnhmgggcbj1k4"; 301351 + version = "1.6.0.8"; 301352 + sha256 = "02vm0qm0yxqn6x61iir81wf6ibwnf8gkia8lw71fgpxgav154ig6"; 302137 301353 libraryHaskellDepends = [ 302138 301354 base blaze-builder conduit persistent persistent-template 302139 301355 resource-pool resourcet transformers yesod-core ··· 302673 301889 ]; 302674 301890 description = "integration testing for WAI/Yesod Applications"; 302675 301891 license = lib.licenses.mit; 301892 + }) {}; 301893 + 301894 + "yesod-test_1_6_13" = callPackage 301895 + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 301896 + , bytestring, case-insensitive, conduit, containers, cookie, hspec 301897 + , hspec-core, html-conduit, http-types, HUnit, memory, mtl, network 301898 + , pretty-show, text, time, transformers, unliftio, unliftio-core 301899 + , wai, wai-extra, xml-conduit, xml-types, yesod-core, yesod-form 301900 + }: 301901 + mkDerivation { 301902 + pname = "yesod-test"; 301903 + version = "1.6.13"; 301904 + sha256 = "1r5ip85x0shv00dvznd201fbl9gi90nkk33szmh0cz77x8960v19"; 301905 + libraryHaskellDepends = [ 301906 + aeson attoparsec base blaze-builder blaze-html bytestring 301907 + case-insensitive conduit containers cookie hspec-core html-conduit 301908 + http-types HUnit memory mtl network pretty-show text time 301909 + transformers wai wai-extra xml-conduit xml-types yesod-core 301910 + ]; 301911 + testHaskellDepends = [ 301912 + base bytestring containers cookie hspec html-conduit http-types 301913 + HUnit text unliftio unliftio-core wai wai-extra xml-conduit 301914 + yesod-core yesod-form 301915 + ]; 301916 + description = "integration testing for WAI/Yesod Applications"; 301917 + license = lib.licenses.mit; 301918 + hydraPlatforms = lib.platforms.none; 302676 301919 }) {}; 302677 301920 302678 301921 "yesod-test-json" = callPackage ··· 304086 303275 }: 304087 303276 mkDerivation { 304088 303277 pname = "zeolite-lang"; 304089 - version = "0.22.0.0"; 304090 - sha256 = "1569qdpy2llvi4cvbmya89ll21rjjwbzxhm0f639aaaxal21szj5"; 303278 + version = "0.22.1.0"; 303279 + sha256 = "0gr3p9k7v44b09bcm1acyds5ai52cy72py2z975d6l08szvsbc5f"; 304091 303280 isLibrary = false; 304092 303281 isExecutable = true; 304093 303282 enableSeparateDataOutput = true; ··· 304627 303816 pname = "zip"; 304628 303817 version = "1.7.2"; 304629 303818 sha256 = "1c5pr3hv11dpn4ybd4742qkpqmvb9l3l7xmzlsf65wm2p8071dvj"; 303819 + revision = "1"; 303820 + editedCabalFile = "1hazf2p31rzjycci8y40zm302msr0mgvb242lww21rxrpicbzl8d"; 304630 303821 isLibrary = true; 304631 303822 isExecutable = true; 304632 303823 libraryHaskellDepends = [
+23 -14
pkgs/development/python-modules/flake8-debugger/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, isPy27 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 2 4 , flake8 3 5 , pycodestyle 4 - , six 5 6 , pytestCheckHook 7 + , pythonOlder 6 8 }: 7 9 8 10 buildPythonPackage rec { 9 11 pname = "flake8-debugger"; 10 - version = "4.0.0"; 11 - disabled = isPy27; 12 + version = "4.1.2"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "e43dc777f7db1481db473210101ec2df2bd39a45b149d7218a618e954177eda6"; 19 + hash = "sha256-UrACVglB422b+Ab8olI9x/uFYKKV1fGm4VrC3tenOEA="; 16 20 }; 17 21 18 - propagatedBuildInputs = [ flake8 pycodestyle six ]; 22 + propagatedBuildInputs = [ 23 + flake8 24 + pycodestyle 25 + ]; 19 26 20 - checkInputs = [ pytestCheckHook ]; 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 21 30 22 - # Tests not included in PyPI tarball 23 - # FIXME: Remove when https://github.com/JBKahn/flake8-debugger/pull/15 is merged 24 - doCheck = false; 31 + pythonImportsCheck = [ 32 + "flake8_debugger" 33 + ]; 25 34 26 - meta = { 27 - homepage = "https://github.com/jbkahn/flake8-debugger"; 35 + meta = with lib; { 28 36 description = "ipdb/pdb statement checker plugin for flake8"; 29 - maintainers = with lib.maintainers; [ johbo ]; 30 - license = lib.licenses.mit; 37 + homepage = "https://github.com/jbkahn/flake8-debugger"; 38 + license = licenses.mit; 39 + maintainers = with maintainers; [ johbo ]; 31 40 }; 32 41 }
+2 -2
pkgs/development/python-modules/pyshp/default.nix
··· 2 2 , setuptools }: 3 3 4 4 buildPythonPackage rec { 5 - version = "2.2.0"; 5 + version = "2.3.0"; 6 6 pname = "pyshp"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-Dtogm9YvM0VwHE9nmbY4wRTOtn/uKClc3bThyvBT6UQ="; 10 + sha256 = "sha256-glBk6kA6zxNehGz4sJJEmUMOa+HNN6DzS+cTCQZhfTw="; 11 11 }; 12 12 13 13 buildInputs = [ setuptools ];
+11 -4
pkgs/development/python-modules/pytrafikverket/default.nix
··· 4 4 , aiohttp 5 5 , async-timeout 6 6 , lxml 7 + , pythonOlder 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "pytrafikverket"; 11 - version = "0.1.6.2"; 12 + version = "0.2.0.1"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "0hrjsw53ixgmhsiszdrzzh0wma705nrhq8npzacsyaf43r29zvqy"; 19 + hash = "sha256-RsB8b96aCIBM3aABOuuexB5fIo7H1Kq/XsGvV8b7/sA="; 16 20 }; 17 21 18 22 propagatedBuildInputs = [ ··· 27 23 28 24 # Project has no tests 29 25 doCheck = false; 30 - pythonImportsCheck = [ "pytrafikverket" ]; 26 + 27 + pythonImportsCheck = [ 28 + "pytrafikverket" 29 + ]; 31 30 32 31 meta = with lib; { 33 - description = "Python library to manage Etekcity Devices and Levoit Air Purifier"; 32 + description = "Library to get data from the Swedish Transport Administration (Trafikverket) API"; 34 33 homepage = "https://github.com/endor-force/pytrafikverket"; 35 34 license = with licenses; [ mit ]; 36 35 maintainers = with maintainers; [ fab ];
+21 -13
pkgs/development/python-modules/ratelimiter/default.nix
··· 1 - { 2 - lib 1 + { lib 3 2 , buildPythonPackage 4 3 , fetchPypi 5 - , pytest 6 - , glibcLocales 4 + , pytest-asyncio 5 + , pytestCheckHook 7 6 }: 8 7 9 8 buildPythonPackage rec { 10 9 pname = "ratelimiter"; 11 10 version = "1.2.0.post0"; 11 + format = "setuptools"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "5c395dcabdbbde2e5178ef3f89b568a3066454a6ddc223b76473dac22f89b4f7"; 15 + hash = "sha256-XDldyr273i5ReO8/ibVoowZkVKbdwiO3ZHPawi+JtPc="; 16 16 }; 17 17 18 - LC_ALL = "en_US.utf-8"; 18 + checkInputs = [ 19 + pytest-asyncio 20 + pytestCheckHook 21 + ]; 19 22 20 - nativeBuildInputs = [ glibcLocales ]; 23 + pythonImportsCheck = [ 24 + "ratelimiter" 25 + ]; 21 26 22 - checkInputs = [ pytest ]; 23 - 24 - checkPhase = '' 25 - py.test tests 27 + preCheck = '' 28 + # Uses out-dated options 29 + rm tests/conftest.py 26 30 ''; 27 31 32 + disabledTests = [ 33 + # TypeError: object Lock can't be used in 'await' expression 34 + "test_alock" 35 + ]; 36 + 28 37 meta = with lib; { 38 + description = "Simple python rate limiting object"; 29 39 homepage = "https://github.com/RazerM/ratelimiter"; 30 40 license = licenses.asl20; 31 - description = "Simple python rate limiting object"; 32 41 maintainers = with maintainers; [ helkafen ]; 33 42 }; 34 43 } 35 -
+2 -2
pkgs/development/python-modules/types-paramiko/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-paramiko"; 9 - version = "2.8.20"; 9 + version = "2.8.21"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-tsK0nbyjv6hlONLinKRAgckjECEIqrGsK0f1OL5h5S4="; 13 + sha256 = "sha256-ZAyFCsqK3EGw1aIl7jaseBJonhpDcMMS+OS5Ks7I5AU="; 14 14 }; 15 15 16 16 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/types-requests/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-requests"; 9 - version = "2.27.24"; 9 + version = "2.27.25"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-4c3pnpLV+3r6DuU5JLIR9MR2OVFkNNhtyE1T7IT8+oo="; 14 + sha256 = "sha256-gFrn44/Z0VcVMGbcQ4HPWF/TTfohLy/B/s4kjAWqxXE="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+9 -4
pkgs/development/python-modules/xknx/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , cryptography 5 - , netifaces 5 + , ifaddr 6 6 , voluptuous 7 7 , pyyaml 8 8 , pytest-asyncio ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "xknx"; 15 - version = "0.20.4"; 15 + version = "0.21.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "XKNX"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - sha256 = "sha256-uqFS/kveWLEmu+8L9dOprcQcO+Odq9lzfTI9lqIhaSw="; 24 + sha256 = "sha256-9fpWl9mYhYwc8Ig4uCF1RJvWS3LqrZQx88IrdaSPo7c="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [ 28 28 cryptography 29 - netifaces 29 + ifaddr 30 30 ]; 31 31 32 32 checkInputs = [ ··· 36 36 37 37 pythonImportsCheck = [ 38 38 "xknx" 39 + ]; 40 + 41 + disabledTests = [ 42 + # Test requires network access 43 + "test_scan_timeout" 39 44 ]; 40 45 41 46 meta = with lib; {
+3 -3
pkgs/development/tools/purescript/spago/spago.nix
··· 14 14 }: 15 15 mkDerivation { 16 16 pname = "spago"; 17 - version = "0.20.7"; 17 + version = "0.20.8"; 18 18 src = fetchgit { 19 19 url = "https://github.com/purescript/spago.git"; 20 - sha256 = "0k9ablqhx4m1hk0sc0rx824qq5gr7fp7dpg9rj5v793v6hd3q4jv"; 21 - rev = "41d9c967dc1db0de03985e31083eb76b3e2fcce4"; 20 + sha256 = "0lakss2pg5kwbxqsmvzgkcc70l6j40cj9rarhkpcf0kxw98bb5x0"; 21 + rev = "744bdbbefc538750d4c36888ee53dc5d336314c4"; 22 22 fetchSubmodules = true; 23 23 }; 24 24 isLibrary = true;
+5
pkgs/games/hedgewars/default.nix
··· 103 103 all movement on the battlefield has ceased).''; 104 104 maintainers = with maintainers; [ kragniz fpletz ]; 105 105 inherit (fpc.meta) platforms; 106 + 107 + # Appears to be some sort of C++ linking error. 108 + # Example: https://hydra.nixos.org/build/174544990/nixlog/6 109 + broken = true; 110 + hydraPlatforms = platforms.none; 106 111 }; 107 112 }
+13 -26
pkgs/servers/gpm/default.nix
··· 1 - { lib, stdenv, fetchurl, automake, autoconf, libtool, flex, bison, texinfo, fetchpatch 2 - 3 - # Optional Dependencies 4 - , ncurses ? null 1 + { lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, flex, bison, texinfo, fetchpatch, pkgsStatic 2 + , withNcurses ? true, ncurses 5 3 }: 6 4 7 5 stdenv.mkDerivation rec { 8 6 pname = "gpm"; 9 - version = "1.20.7"; 7 + version = "unstable-2020-06-17"; 10 8 11 - src = fetchurl { 12 - url = "https://www.nico.schottelius.org/software/gpm/archives/gpm-${version}.tar.bz2"; 13 - sha256 = "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh"; 9 + src = fetchFromGitHub { 10 + owner = "telmich"; 11 + repo = "gpm"; 12 + rev = "e82d1a653ca94aa4ed12441424da6ce780b1e530"; 13 + sha256 = "0ndn6dwc87slvyqp2cnbb02a6hkjwb6zjhs6viysykv06hq7ihy6"; 14 14 }; 15 15 16 16 postPatch = '' ··· 23 23 hardeningDisable = [ "format" ]; 24 24 25 25 patches = [ 26 - # musl compat patches, safe everywhere 27 - (fetchpatch { 28 - url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-musl-missing-headers.patch"; 29 - sha256 = "1g338m6j1sba84wlqp1r6rpabj5nm6ki577hjalg46czg0lfp20h"; 30 - }) 31 - # Touches same code as glibc fix in postPatch above, but on the non-glibc route 32 - (fetchpatch { 33 - url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-musl-portable-sigaction.patch"; 34 - sha256 = "0hfdqm9977hd5dpzn05y0a6jbj55w1kp4hd9gyzmg9wslmxni4rg"; 35 - }) 36 - (fetchpatch { 37 - url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-sysmacros.patch"; 38 - sha256 = "0lg4l9phvy2n8gy17qsn6zn0qq52vm8g01pgq5kqpr8sd3fb21c2"; 39 - }) 40 - (fetchpatch { 41 - # upstream build fix against -fno-common compilers like >=gcc-10 42 - url = "https://github.com/telmich/gpm/commit/f04f24dd5ca5c1c13608b144ab66e2ccd47f106a.patch"; 43 - sha256 = "1q5hl5m61pci2f0x7r5in99rmqh328v1k0zj2693wdlafk9dabks"; 26 + (fetchpatch { # pull request telmich/gpm#42 27 + url = "https://github.com/kaction/gpm/commit/217b4fe4c9b62298a4e9a54c1f07e3b52b013a09.patch"; 28 + sha256 = "1f74h12iph4z1dldbxk9imcq11805c3ai2xhbsqvx8jpjrcfp19q"; 44 29 }) 45 30 ]; 46 31 preConfigure = '' ··· 42 57 postInstall = '' 43 58 ln -sv $out/lib/libgpm.so.2 $out/lib/libgpm.so 44 59 ''; 60 + 61 + passthru.tests.static = pkgsStatic.gpm; 45 62 46 63 meta = with lib; { 47 64 homepage = "https://www.nico.schottelius.org/software/gpm/";
+27
pkgs/tools/networking/ooniprobe-cli/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "ooniprobe-cli"; 8 + version = "3.14.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ooni"; 12 + repo = "probe-cli"; 13 + rev = "v${version}"; 14 + hash = "sha256-9n/Ozyy1QzjFum/R/X2DChzTHl70e+JQuo09nToAIcE="; 15 + }; 16 + 17 + vendorSha256 = "/fN9nRYOy00EeI8zZQFkCgTMGLZ0pFbYmRdTr2NLIsc="; 18 + 19 + subPackages = [ "cmd/ooniprobe" ]; 20 + 21 + meta = with lib; { 22 + description = "The Open Observatory of Network Interference command line network probe"; 23 + homepage = "https://ooni.org/install/cli"; 24 + license = licenses.gpl3Plus; 25 + maintainers = with maintainers; [ dotlambda ]; 26 + }; 27 + }
+6 -6
pkgs/tools/security/vault/vault-bin.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "vault-bin"; 5 - version = "1.10.1"; 5 + version = "1.10.2"; 6 6 7 7 src = 8 8 let ··· 16 16 aarch64-darwin = "darwin_arm64"; 17 17 }; 18 18 sha256 = selectSystem { 19 - x86_64-linux = "sha256-8qrCGJNEWs3I/IRK1CiGfbbpQhwziFgoQyMcUX40wbw="; 20 - aarch64-linux = "sha256-/rW39m2XnJp0MsBmXs4ktRnQriLdYHRJ9MIEtO9MxNk="; 21 - i686-linux = "sha256-NHIxN3rdX+3yLjbh25c1IwB+Q/QRQCrIBF9XwxIwVpY="; 22 - x86_64-darwin = "sha256-2OuJZftsP+fKInhBYlcRLZ1Rs+j/jl7Ve4M6Oz3Q7Ac="; 23 - aarch64-darwin = "sha256-JSu8eS4jzRl8d8MOWnAgmvO68xGzxFRn8HW28gQbzmU="; 19 + x86_64-linux = "sha256-8DF97kpBRqKvRqCi20QdVgE5T4QugM+Hh+2e1qdZAA8="; 20 + aarch64-linux = "sha256-SZ1+q4um6aFMPoF6t5ycOrG5gQQRDNC7SGFJi/JReBI="; 21 + i686-linux = "sha256-AatWqF2eDOslpK5J5fyGdrrjkag9GnCJcM0DnYCSZqg="; 22 + x86_64-darwin = "sha256-pFQLm967yRiAWHm7PcZRknB4H6ZoEahf4rl8CCdh5AA="; 23 + aarch64-darwin = "sha256-Br6fbJUkuIe7BVJU+bGGB9UOQyn2FV+Xy4ajfdfWCcM="; 24 24 }; 25 25 in 26 26 fetchzip {
+10
pkgs/top-level/all-packages.nix
··· 1886 1886 1887 1887 brewtarget = libsForQt514.callPackage ../applications/misc/brewtarget { } ; 1888 1888 1889 + stdenvBootstrapTools = 1890 + let args = { crossSystem = stdenv.hostPlatform.system; }; in 1891 + if stdenv.hostPlatform.isDarwin 1892 + then callPackage ../stdenv/darwin/make-bootstrap-tools.nix args 1893 + else if stdenv.hostPlatform.isLinux 1894 + then callPackage ../stdenv/linux/make-bootstrap-tools.nix args 1895 + else throw "stdenvBootstrapTools: unknown hostPlatform ${stdenv.hostPlatform.config}"; 1896 + 1889 1897 boxes = callPackage ../tools/text/boxes { }; 1890 1898 1891 1899 boundary = callPackage ../tools/networking/boundary { }; ··· 8888 8880 onlykey-cli = callPackage ../tools/security/onlykey-cli { }; 8889 8881 8890 8882 onlykey = callPackage ../tools/security/onlykey { node_webkit = nwjs; }; 8883 + 8884 + ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { }; 8891 8885 8892 8886 openapi-generator-cli = callPackage ../tools/networking/openapi-generator-cli { jre = pkgs.jre_headless; }; 8893 8887 openapi-generator-cli-unstable = callPackage ../tools/networking/openapi-generator-cli/unstable.nix { jre = pkgs.jre_headless; };
+12 -11
pkgs/top-level/release-haskell.nix
··· 304 304 # Test some statically linked packages to catch regressions 305 305 # and get some cache going for static compilation with GHC. 306 306 # Use integer-simple to avoid GMP linking problems (LGPL) 307 - pkgsStatic.haskell.packages = 307 + pkgsStatic = 308 308 removePlatforms 309 309 [ 310 310 "aarch64-linux" # times out on Hydra 311 311 "x86_64-darwin" # TODO: reenable when static libiconv works on darwin 312 312 ] { 313 - integer-simple.ghc8107 = { 314 - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.integer-simple.ghc8107) 313 + haskellPackages = { 314 + inherit (packagePlatforms pkgs.pkgsStatic.haskellPackages) 315 315 hello 316 316 lens 317 317 random 318 318 QuickCheck 319 + cabal2nix 319 320 ; 320 321 }; 321 322 322 - native-bignum.ghc902 = { 323 - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc902) 323 + haskell.packages.native-bignum.ghc922 = { 324 + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc922) 324 325 hello 325 326 lens 326 327 random 327 328 QuickCheck 329 + cabal2nix 328 330 ; 329 331 }; 330 332 }; ··· 363 361 ghc-lib = released; 364 362 ghc-lib-parser = released; 365 363 ghc-lib-parser-ex = released; 364 + spectacle = [ 365 + compilerNames.ghc8107 366 + ]; 366 367 }) 367 368 { 368 369 mergeable = pkgs.releaseTools.aggregate { ··· 451 446 ]; 452 447 }; 453 448 constituents = accumulateDerivations [ 454 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.hello 455 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.lens 456 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.random 457 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.hello 458 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.lens 459 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.random 449 + jobs.pkgsStatic.haskellPackages 450 + jobs.pkgsStatic.haskell.packages.native-bignum.ghc922 460 451 ]; 461 452 }; 462 453 }