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 ··· 853 850 854 851 # test suite requires git and does a bunch of git operations 855 852 restless-git = dontCheck super.restless-git; 853 + 854 + # requires git at test-time *and* runtime, but we'll just rely on users to 855 + # bring their own git at runtime 856 + sensei = overrideCabal (drv: { 857 + testHaskellDepends = drv.testHaskellDepends or [] ++ [ self.hspec-meta_2_9_3 ]; 858 + testToolDepends = drv.testToolDepends or [] ++ [ pkgs.git ]; 859 + }) (super.sensei.overrideScope (self: super: { 860 + hspec-meta = self.hspec-meta_2_9_3; 861 + hspec = self.hspec_2_9_7; 862 + hspec-core = dontCheck self.hspec-core_2_9_7; 863 + hspec-discover = self.hspec-discover_2_9_7; 864 + })); 856 865 857 866 # Depends on broken fluid. 858 867 fluid-idl-http-client = markBroken super.fluid-idl-http-client; ··· 1153 1162 1154 1163 # https://github.com/danfran/cabal-macosx/issues/13 1155 1164 cabal-macosx = dontCheck super.cabal-macosx; 1165 + 1166 + # Causes Test.QuickCheck.resize: negative size crashes e.g. in test suites 1167 + # https://github.com/typeable/generic-arbitrary/issues/14 1168 + generic-arbitrary = appendPatches [ 1169 + (pkgs.fetchpatch { 1170 + name = "generic-arbitrary-no-negative-resize.patch"; 1171 + url = "https://github.com/typeable/generic-arbitrary/commit/c13d119d8ad0d43860ecdb93b357b0239e366a6c.patch"; 1172 + sha256 = "1jgbd2jn575icqw9nfdzh57nacm3pn8n53ka52129pnfjqfzyhsi"; 1173 + }) 1174 + ] super.generic-arbitrary; 1156 1175 1157 1176 # https://github.com/DanielG/cabal-helper/pull/123 1158 1177 cabal-helper = doJailbreak super.cabal-helper; ··· 2583 2602 2584 2603 # 2022-03-16: Upstream stopped updating bounds https://github.com/haskell-hvr/base-noprelude/pull/15 2585 2604 base-noprelude = doJailbreak super.base-noprelude; 2586 - 2587 - # Manually upgrade cryptostore to work around 2588 - # https://github.com/ocheron/cryptostore/issues/7 2589 - cryptostore = assert super.cryptostore.version == "0.2.1.0"; overrideCabal { 2590 - version = "0.2.2.0"; 2591 - sha256 = "0n70amg7y2qwfjhj4xaqjia46fbabba9l2g19ry191m7c4zp1skx"; 2592 - revision = null; 2593 - editedCabalFile = null; 2594 - } super.cryptostore; 2595 2605 2596 2606 # 2022-03-16: Bounds need to be loosened https://github.com/obsidiansystems/dependent-sum-aeson-orphans/issues/10 2597 2607 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; ··· 170 171 ]; 171 172 172 173 # lens >= 5.1 supports 9.2.1 173 - lens = super.lens_5_1; 174 + lens = doDistribute self.lens_5_1; 174 175 175 176 # Syntax error in tests fixed in https://github.com/simonmar/alex/commit/84b29475e057ef744f32a94bc0d3954b84160760 176 177 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 ··· 669 668 - citeproc-hs 670 669 - cjk 671 670 - cj-token 671 + - cl3-hmatrix-interface 672 + - cl3-linear-interface 672 673 - clang-compilation-database 673 674 - clang-pure 674 675 - clanki ··· 1048 1049 - dense-int-set 1049 1050 - dependent-hashmap 1050 1051 - dependent-monoidal-map 1052 + - dep-t 1051 1053 - dep-t-dynamic 1052 1054 - deptrack-core 1053 1055 - derangement ··· 1208 1210 - dynamic-object 1209 1211 - dynamic-pipeline 1210 1212 - DynamicTimeWarp 1213 + - dyna-processing 1211 1214 - dynloader 1212 1215 - DysFRP 1213 1216 - dywapitchtrack ··· 1600 1603 - gegl 1601 1604 - gelatin 1602 1605 - gemcap 1606 + - gemini-exports 1603 1607 - gemstone 1604 1608 - gencheck 1605 1609 - gender ··· 1736 1740 - gli 1737 1741 - glicko 1738 1742 - glider-nlp 1743 + - glirc 1739 1744 - GLMatrix 1740 1745 - global-variables 1741 1746 - glob-posix ··· 1774 1779 - gpah 1775 1780 - GPipe 1776 1781 - GPipe-GLFW4 1782 + - gpmf 1777 1783 - gpx-conduit 1778 1784 - graceful 1779 1785 - grafana ··· 1890 1896 - hakyll-typescript 1891 1897 - HaLeX 1892 1898 - halfs 1899 + - half-space 1893 1900 - halipeto 1894 1901 - halive 1895 1902 - halma ··· 2103 2110 - hedgehog-checkers 2104 2111 - hedgehog-generic 2105 2112 - hedgehog-golden 2113 + - hedgehog-lens 2106 2114 - hedgehog-servant 2107 2115 - hedis-config 2108 2116 - hedis-namespace ··· 2894 2902 - lazify 2895 2903 - lazyarray 2896 2904 - lazyboy 2905 + - lazy-bracket 2897 2906 - lazy-priority-queue 2898 2907 - lazyset 2899 2908 - LazyVault ··· 3334 3343 - msgpack 3335 3344 - msgpack-binary 3336 3345 - msgpack-persist 3337 - - msgpack-types 3338 3346 - msh 3339 3347 - msi-kb-backlit 3340 3348 - MTGBuilder ··· 3600 3608 - open-signals 3601 3609 - opensoundcontrol-ht 3602 3610 - openssh-protocol 3603 - - opentelemetry-extra 3604 3611 - opentelemetry-http-client 3605 3612 - opentheory-char 3606 3613 - opentok ··· 4337 4344 - robin 4338 4345 - robots-txt 4339 4346 - roc-cluster 4340 - - roc-id 4341 4347 - roku-api 4342 4348 - rollbar-client 4343 4349 - rollbar-hs ··· 4467 4473 - semigroups-actions 4468 4474 - sendgrid-haskell 4469 4475 - sendgrid-v3 4470 - - sensei 4471 4476 - sensu-run 4472 4477 - sentry 4473 4478 - 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 ··· 463 465 libmodbus: [ x86_64-darwin, aarch64-darwin ] 464 466 libsystemd-journal: [ x86_64-darwin, aarch64-darwin ] 465 467 libtelnet: [ x86_64-darwin, aarch64-darwin ] 468 + libvirt-hs: [ x86_64-darwin ] # spidermonkey is not supported on darwin 466 469 libzfs: [ x86_64-darwin, aarch64-darwin ] 467 470 linearEqSolver: [ aarch64-linux ] 468 471 linux-evdev: [ x86_64-darwin, aarch64-darwin ] ··· 505 508 scrypt: [ aarch64-linux, armv7l-linux ] # https://github.com/informatikr/scrypt/issues/8 506 509 sdl2-mixer: [ x86_64-darwin, aarch64-darwin ] 507 510 sdl2-ttf: [ x86_64-darwin, aarch64-darwin ] 511 + sensei: [ x86_64-darwin ] 508 512 synthesizer-alsa: [ x86_64-darwin, aarch64-darwin ] 509 513 taffybar: [ x86_64-darwin, aarch64-darwin ] 510 514 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 ··· 117 118 - autoexporter ==2.0.0.1 118 119 - auto-update ==0.1.6 119 120 - aws-cloudfront-signed-cookies ==0.2.0.10 121 + - aws-xray-client ==0.1.0.2 122 + - aws-xray-client-persistent ==0.1.0.5 123 + - aws-xray-client-wai ==0.1.0.2 120 124 - backtracking ==0.1.0 121 125 - bank-holidays-england ==0.2.0.7 122 126 - barbies ==2.0.3.1 ··· 391 395 - conduino ==0.2.2.0 392 396 - conduit ==1.3.4.2 393 397 - conduit-aeson ==0.1.0.1 398 + - conduit-algorithms ==0.0.12.0 394 399 - conduit-combinators ==1.3.0 395 400 - conduit-concurrent-map ==0.1.1 396 401 - conduit-connection ==0.1.0.5 ··· 422 427 - convertible ==1.1.1.0 423 428 - cookie ==0.4.5 424 429 - copr-api ==0.1.0 425 - - core-data ==0.3.1.1 430 + - core-data ==0.3.2.1 426 431 - core-program ==0.4.5.1 427 - - core-telemetry ==0.1.9.2 432 + - core-telemetry ==0.1.9.3 428 433 - core-text ==0.3.5.0 429 434 - countable ==1.0 430 435 - covariance ==0.1.0.6 ··· 456 461 - crypto-pubkey-types ==0.4.3 457 462 - crypto-random ==0.0.9 458 463 - crypto-random-api ==0.2.0 459 - - cryptostore ==0.2.1.0 464 + - cryptostore ==0.2.2.0 460 465 - crypt-sha512 ==0 461 466 - csp ==1.4.0 462 467 - css-text ==0.1.3.0 ··· 505 510 - data-default-instances-unordered-containers ==0.0.1 506 511 - data-default-instances-vector ==0.0.1 507 512 - data-diverse ==4.7.0.0 513 + - datadog ==0.3.0.0 508 514 - data-dword ==0.3.2.1 509 515 - data-endian ==0.1.1 510 516 - data-fix ==0.3.2 ··· 680 686 - errors ==2.3.0 681 687 - errors-ext ==0.4.2 682 688 - ersatz ==0.4.10 683 - - esqueleto ==3.5.4.0 689 + - esqueleto ==3.5.4.1 684 690 - essence-of-live-coding ==0.2.6 685 691 - essence-of-live-coding-gloss ==0.2.6 686 692 - essence-of-live-coding-pulse ==0.2.6 ··· 998 1004 - haskell-src-meta ==0.8.9 999 1005 - haskey-btree ==0.3.0.1 1000 1006 - haskintex ==0.8.0.0 1001 - - haskoin-core ==0.21.1 1007 + - haskoin-core ==0.21.2 1002 1008 - hasktags ==0.72.0 1003 1009 - hasql ==1.5.0.2 1004 1010 - hasql-migration ==0.3.0 ··· 1011 1017 - has-transformers ==0.1.0.4 1012 1018 - hasty-hamiltonian ==1.3.4 1013 1019 - HaTeX ==3.22.3.1 1014 - - HaXml ==1.25.8 1020 + - HaXml ==1.25.9 1015 1021 - haxr ==3000.11.4.1 1016 1022 - HCodecs ==0.5.2 1017 1023 - hdaemonize ==0.5.6 ··· 1537 1543 - mmark-cli ==0.0.5.1 1538 1544 - mmark-ext ==0.2.1.5 1539 1545 - mmorph ==1.1.5 1540 - - mnist-idx ==0.1.3.0 1546 + - mnist-idx ==0.1.3.1 1541 1547 - mnist-idx-conduit ==0.4.0.0 1542 1548 - mockery ==0.3.5 1543 1549 - mock-time ==0.1.0 ··· 1747 1753 - pandoc-plot ==1.4.1 1748 1754 - pandoc-throw ==0.1.0.0 1749 1755 - pandoc-types ==1.22.2 1750 - - pantry ==0.5.4 1756 + - pantry ==0.5.5 1751 1757 - parallel ==3.2.2.0 1752 1758 - parallel-io ==0.3.5 1753 1759 - parameterized ==0.5.0.0 ··· 1797 1803 - perf ==0.9.0 1798 1804 - perfect-hash-generator ==0.2.0.6 1799 1805 - persist ==0.1.1.5 1800 - - persistent ==2.13.3.4 1806 + - persistent ==2.13.3.5 1801 1807 - persistent-discover ==0.1.0.5 1802 1808 - persistent-documentation ==0.1.0.4 1803 1809 - persistent-mongoDB ==2.13.0.1 ··· 1971 1977 - quickcheck-unicode ==1.0.1.0 1972 1978 - quicklz ==1.5.0.11 1973 1979 - quiet ==0.2 1974 - - quote-quot ==0.2.0.0 1980 + - quote-quot ==0.2.1.0 1975 1981 - radius ==0.7.1.0 1976 1982 - rainbow ==0.34.2.2 1977 1983 - rainbox ==0.26.0.0 ··· 2050 2056 - repa ==3.4.1.5 2051 2057 - repa-io ==3.4.1.2 2052 2058 - replace-attoparsec ==1.4.5.0 2053 - - replace-megaparsec ==1.4.4.0 2059 + - replace-megaparsec ==1.4.5.0 2054 2060 - repline ==0.4.0.0 2055 2061 - req ==3.10.0 2056 2062 - req-conduit ==1.0.1 ··· 2116 2122 - sandwich-quickcheck ==0.1.0.6 2117 2123 - sandwich-slack ==0.1.0.6 2118 2124 - say ==0.1.0.1 2119 - - sbp ==4.1.5 2125 + - sbp ==4.1.6 2120 2126 - sbv ==8.17 2121 2127 - scalpel ==0.6.2 2122 2128 - scalpel-core ==0.6.2 ··· 2461 2467 - text-ansi ==0.1.1 2462 2468 - text-binary ==0.2.1.1 2463 2469 - text-builder ==0.6.6.5 2464 - - text-builder-dev ==0.2.0.1 2470 + - text-builder-dev ==0.2.1 2465 2471 - text-conversions ==0.3.1 2466 2472 - text-icu ==0.7.1.0 2467 2473 - text-latin1 ==0.3.1 ··· 2843 2849 - yesod-newsfeed ==1.7.0.0 2844 2850 - yesod-page-cursor ==2.0.0.10 2845 2851 - yesod-paginator ==1.1.2.1 2846 - - yesod-persistent ==1.6.0.7 2852 + - yesod-persistent ==1.6.0.8 2847 2853 - yesod-recaptcha2 ==1.0.2 2848 2854 - yesod-routes-flow ==3.0.0.2 2849 2855 - yesod-sitemap ==1.6.0 2856 + - yesod-static ==1.6.1.0 2857 + - yesod-test ==1.6.12 2858 + - yesod-websockets ==0.3.0.3 2850 2859 - yes-precure5-command ==5.5.3 2860 + - yi-rope ==0.11 2861 + - yjsvg ==0.2.0.1 2862 + - yjtools ==0.9.18 2863 + - yoga ==0.0.0.5 2864 + - youtube ==0.2.1.1 2865 + - zenacy-html ==2.0.4 2866 + - zenacy-unicode ==1.0.1 2867 + - zero ==0.1.5 2868 + - zeromq4-haskell ==0.8.0 2869 + - zeromq4-patterns ==0.3.1.0 2870 + - zim-parser ==0.2.1.0 2871 + - zio ==0.1.0.2 2872 + - zip ==1.7.2 2873 + - zip-archive ==0.4.2.1 2874 + - zipper-extra ==0.1.3.2 2875 + - zippers ==0.3.2 2876 + - zip-stream ==0.2.1.0 2877 + - zlib ==0.6.2.3 2878 + - zlib-bindings ==0.1.1.5 2879 + - zlib-lens ==0.1.2.1 2880 + - zot ==0.0.3 2881 + - zstd ==0.1.3.0 2882 + - 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 ··· 1203 1204 - delimiter-separated 1204 1205 - delta 1205 1206 - delta-h 1207 + - dep-t-advice 1208 + - dep-t-value 1206 1209 - dependent-literals-plugin 1207 1210 - dependent-state 1208 1211 - depends ··· 2811 2814 - mptcp-pm 2812 2815 - mptcpanalyzer 2813 2816 - msgpack-aeson 2814 - - msgpack-arbitrary 2815 2817 - msgpack-idl 2816 2818 - msgpack-rpc 2817 2819 - msgpack-rpc-conduit 2818 - - msgpack-testsuite 2819 2820 - mtgoxapi 2820 2821 - mu-avro 2821 2822 - mu-graphql ··· 2967 2968 - openpgp-Crypto 2968 2969 - openpgp-crypto-api 2969 2970 - openssh-github-keys 2970 - - opentelemetry-lightstep 2971 - - opentelemetry-lightstep_0_8_0 2972 2971 - optima-for-hasql 2973 2972 - optimal-blocks 2974 2973 - optimusprime ··· 3325 3324 - regions-mtl 3326 3325 - registry-hedgehog 3327 3326 - registry-hedgehog-aeson 3327 + - registry-messagepack 3328 3328 - regular-extras 3329 3329 - regular-web 3330 3330 - 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; ··· 25148 25147 ({ mkDerivation, aeson, base, inspection-testing }: 25149 25148 mkDerivation { 25150 25149 pname = "aeson-modern-tojson"; 25151 - version = "0.1.0.0"; 25152 - sha256 = "066yrs4r0ymsf62y1fjaim5l5dddgk7x1ng9m76j36zc8n0xwiqy"; 25150 + version = "0.1.1.0"; 25151 + sha256 = "0x1798k4kyndilnm7fpkl8cc4fgn2f3jc1f9x8j2dc8kjkhv1fv7"; 25153 25152 libraryHaskellDepends = [ aeson base ]; 25154 25153 testHaskellDepends = [ aeson base inspection-testing ]; 25155 25154 description = "Provide a handy way for derving ToJSON proprely"; ··· 25198 25197 license = lib.licenses.mit; 25199 25198 }) {}; 25200 25199 25200 + "aeson-optics_1_2" = callPackage 25201 + ({ mkDerivation, aeson, attoparsec, base, bytestring, optics-core 25202 + , optics-extra, scientific, text, text-short, unordered-containers 25203 + , vector 25204 + }: 25205 + mkDerivation { 25206 + pname = "aeson-optics"; 25207 + version = "1.2"; 25208 + sha256 = "0p852w0ns9mkmydbhj1p3szvkw7pl83c0xaqhvn5jwdrpqj6ma74"; 25209 + libraryHaskellDepends = [ 25210 + aeson attoparsec base bytestring optics-core optics-extra 25211 + scientific text text-short unordered-containers vector 25212 + ]; 25213 + description = "Law-abiding optics for aeson"; 25214 + license = lib.licenses.mit; 25215 + hydraPlatforms = lib.platforms.none; 25216 + }) {}; 25217 + 25201 25218 "aeson-options" = callPackage 25202 25219 ({ mkDerivation, aeson, base }: 25203 25220 mkDerivation { ··· 26083 26100 }: 26084 26101 mkDerivation { 26085 26102 pname = "airship"; 26086 - version = "0.9.4"; 26087 - sha256 = "03wawmbd1dcf9bmv9046q93gn6isdlpcyvzb7bp0awqmzaymyw4z"; 26103 + version = "0.9.5"; 26104 + sha256 = "1x38pda1g1g6ihl3c39s3wmspn2qq09887apinwlna5cxbxjf3pc"; 26088 26105 libraryHaskellDepends = [ 26089 26106 attoparsec base base64-bytestring blaze-builder bytestring 26090 26107 bytestring-trie case-insensitive containers cryptohash directory ··· 30771 30788 }: 30772 30789 mkDerivation { 30773 30790 pname = "annotated-exception"; 30774 - version = "0.1.2.1"; 30775 - sha256 = "06nzxm6vxli3jlj940vjxa4j8cg76v5l4za2w1w3j3z9lfzms0h9"; 30791 + version = "0.2.0.1"; 30792 + sha256 = "0lqr283ql82kfpd6rvznwj4p0h4176mg9xnb1wnzdxxbl9rn3xgl"; 30776 30793 libraryHaskellDepends = [ 30777 30794 base containers safe-exceptions text unliftio-core 30778 30795 ]; ··· 34054 34071 hydraPlatforms = lib.platforms.none; 34055 34072 }) {}; 34056 34073 34074 + "ascii_1_2_0_0" = callPackage 34075 + ({ mkDerivation, ascii-case, ascii-char, ascii-group, ascii-numbers 34076 + , ascii-predicates, ascii-superset, ascii-th, base, bytestring 34077 + , hedgehog, text 34078 + }: 34079 + mkDerivation { 34080 + pname = "ascii"; 34081 + version = "1.2.0.0"; 34082 + sha256 = "1m043s6030mwz4gam83nb1dyxsbkaar6i7cdvzjfgawv9gdpwkbb"; 34083 + libraryHaskellDepends = [ 34084 + ascii-case ascii-char ascii-group ascii-numbers ascii-predicates 34085 + ascii-superset ascii-th base bytestring text 34086 + ]; 34087 + testHaskellDepends = [ base hedgehog text ]; 34088 + description = "The ASCII character set and encoding"; 34089 + license = lib.licenses.asl20; 34090 + hydraPlatforms = lib.platforms.none; 34091 + }) {}; 34092 + 34057 34093 "ascii-art-to-unicode" = callPackage 34058 34094 ({ mkDerivation, base, comonad, doctest, strict }: 34059 34095 mkDerivation { ··· 34170 34206 broken = true; 34171 34207 }) {}; 34172 34208 34209 + "ascii-numbers_1_1_0_0" = callPackage 34210 + ({ mkDerivation, ascii-case, ascii-char, ascii-superset, base 34211 + , bytestring, hashable, hedgehog, invert, text 34212 + }: 34213 + mkDerivation { 34214 + pname = "ascii-numbers"; 34215 + version = "1.1.0.0"; 34216 + sha256 = "041qyhgksqchj3x09fbirxba7s31aicaqnk8185g2l70zgxjz6iv"; 34217 + libraryHaskellDepends = [ 34218 + ascii-case ascii-char ascii-superset base bytestring hashable text 34219 + ]; 34220 + testHaskellDepends = [ 34221 + ascii-case ascii-char ascii-superset base bytestring hashable 34222 + hedgehog invert text 34223 + ]; 34224 + description = "ASCII representations of numbers"; 34225 + license = lib.licenses.asl20; 34226 + hydraPlatforms = lib.platforms.none; 34227 + broken = true; 34228 + }) {}; 34229 + 34173 34230 "ascii-predicates" = callPackage 34174 34231 ({ mkDerivation, ascii-char, base, hedgehog }: 34175 34232 mkDerivation { ··· 34242 34299 license = lib.licenses.asl20; 34243 34300 }) {}; 34244 34301 34302 + "ascii-superset_1_0_1_13" = callPackage 34303 + ({ mkDerivation, ascii-char, base, bytestring, hashable, hedgehog 34304 + , text 34305 + }: 34306 + mkDerivation { 34307 + pname = "ascii-superset"; 34308 + version = "1.0.1.13"; 34309 + sha256 = "0pf1awrx0bfpgyc96r1ycybgpy801iqxr8qf3vp9pvbnfava1v8s"; 34310 + libraryHaskellDepends = [ 34311 + ascii-char base bytestring hashable text 34312 + ]; 34313 + testHaskellDepends = [ ascii-char base hedgehog text ]; 34314 + description = "Representing ASCII with refined supersets"; 34315 + license = lib.licenses.asl20; 34316 + hydraPlatforms = lib.platforms.none; 34317 + }) {}; 34318 + 34245 34319 "ascii-table" = callPackage 34246 34320 ({ mkDerivation, aeson, base, containers, dlist, hashable, text 34247 34321 , unordered-containers, vector, wl-pprint-extras ··· 39413 39487 pname = "base64-bytestring-type"; 39414 39488 version = "1.0.1"; 39415 39489 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 39416 - revision = "11"; 39417 - editedCabalFile = "0aj0av37xgxz6pyzwc8d3qr915a2d2pwz1g21ad8nd5ms4zpgz7l"; 39490 + revision = "12"; 39491 + editedCabalFile = "09ap4z85k3lncf27b2qzfks4lnjm8rzldmzvbik7il3ycc60dk5i"; 39418 39492 libraryHaskellDepends = [ 39419 39493 aeson base base-compat base64-bytestring binary bytestring cereal 39420 39494 deepseq hashable http-api-data QuickCheck serialise text ··· 41656 41730 ]; 41657 41731 description = "Combinators and utilities to make Generic-based deriving of Binary easier and more expressive"; 41658 41732 license = lib.licenses.bsd3; 41659 - hydraPlatforms = lib.platforms.none; 41660 - broken = true; 41661 41733 }) {}; 41662 41734 41663 41735 "binary-ieee754" = callPackage ··· 45306 45378 45307 45379 "bloodhound" = callPackage 45308 45380 ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers 45309 - , errors, exceptions, hashable, hspec, http-client, http-types 45310 - , microlens, microlens-aeson, mtl, network-uri, pretty-simple 45311 - , QuickCheck, quickcheck-arbitrary-template, quickcheck-properties 45312 - , scientific, semigroups, semver, temporary, text, time 45313 - , transformers, unix-compat, unordered-containers, vector 45381 + , errors, exceptions, generic-random, hashable, hspec, http-client 45382 + , http-types, microlens, microlens-aeson, mtl, network-uri 45383 + , pretty-simple, QuickCheck, quickcheck-properties, scientific 45384 + , semigroups, semver, temporary, text, time, transformers 45385 + , unix-compat, unordered-containers, vector 45314 45386 }: 45315 45387 mkDerivation { 45316 45388 pname = "bloodhound"; 45317 - version = "0.19.0.0"; 45318 - sha256 = "00kb7dr6xknws3pyx2qdapyb6b8sgbgjyn39vn052428ipyb3a6z"; 45389 + version = "0.19.1.0"; 45390 + sha256 = "0vflzwc90w69c78xpjldvgywl1ykn73wzq06501lnl6bwb07ahs0"; 45319 45391 libraryHaskellDepends = [ 45320 45392 aeson base blaze-builder bytestring containers exceptions hashable 45321 45393 http-client http-types mtl network-uri scientific semigroups semver ··· 45323 45395 ]; 45324 45396 testHaskellDepends = [ 45325 45397 aeson base blaze-builder bytestring containers errors exceptions 45326 - hashable hspec http-client http-types microlens microlens-aeson mtl 45327 - network-uri pretty-simple QuickCheck quickcheck-arbitrary-template 45398 + generic-random hashable hspec http-client http-types microlens 45399 + microlens-aeson mtl network-uri pretty-simple QuickCheck 45328 45400 quickcheck-properties scientific semigroups semver temporary text 45329 45401 time transformers unix-compat unordered-containers vector 45330 45402 ]; ··· 48715 48787 }: 48716 48788 mkDerivation { 48717 48789 pname = "bytebuild"; 48718 - version = "0.3.10.0"; 48719 - sha256 = "1g3ayqdvvszh0jp22xh04pj6g8sff8m1mk06i5f4a0yxxwpvj3bg"; 48790 + version = "0.3.11.0"; 48791 + sha256 = "0yxss8r5msgbp812xb0k1xsmil02zmh7n8nh7jdfkm8byf3l4saf"; 48720 48792 libraryHaskellDepends = [ 48721 48793 base byteslice bytestring haskell-src-meta integer-logarithms 48722 48794 natural-arithmetic primitive primitive-offset primitive-unlifted ··· 48731 48803 benchmarkHaskellDepends = [ 48732 48804 base byteslice gauge natural-arithmetic primitive text-short 48733 48805 ]; 48734 - description = "Serialize to a small byte arrays"; 48806 + description = "Build byte arrays"; 48735 48807 license = lib.licenses.bsd3; 48736 48808 }) {}; 48737 48809 ··· 49771 49843 }) {}; 49772 49844 49773 49845 "ca-patterns" = callPackage 49774 - ({ mkDerivation, base, parsec, text, vector }: 49846 + ({ mkDerivation, base, hspec, hspec-discover, parsec, text, vector 49847 + }: 49775 49848 mkDerivation { 49776 49849 pname = "ca-patterns"; 49777 - version = "0.1.0.0"; 49778 - sha256 = "1n5l7dxsci9dbrrngrc9q7f85i966i2vzidzrm3prjf8fq3i87b0"; 49850 + version = "0.2.0.0"; 49851 + sha256 = "1qqkkkv2qn7nmi7yrbj49836i9qkch63753smjyz9gj01mjqspbs"; 49779 49852 libraryHaskellDepends = [ base parsec text vector ]; 49853 + testHaskellDepends = [ base hspec vector ]; 49854 + testToolDepends = [ hspec-discover ]; 49780 49855 description = "Manipulate patterns in cellular automata, create and parse RLE files"; 49781 49856 license = lib.licenses.mit; 49782 49857 }) {}; ··· 51692 51767 , di-polysemy, exceptions, focus, generic-lens, hashable 51693 51768 , http-api-data, http-client, http-date, http-types, lens 51694 51769 , lens-aeson, megaparsec, mime-types, mtl, polysemy 51695 - , polysemy-plugin, PyF, reflection, req, safe-exceptions 51770 + , polysemy-plugin, PyF, random, reflection, req, safe-exceptions 51696 51771 , scientific, stm, stm-chans, stm-containers, text, text-show, time 51697 51772 , tls, typerep-map, unagi-chan, unboxing-vector 51698 51773 , unordered-containers, vector, websockets, x509-system 51699 51774 }: 51700 51775 mkDerivation { 51701 51776 pname = "calamity"; 51702 - version = "0.2.0.2"; 51703 - sha256 = "05yqh6prffcwdv4zl1xcw8p9xidrn95wffxjkiy5j5vh2yf5a7c0"; 51777 + version = "0.3.0.0"; 51778 + sha256 = "0cxcgm6xfwbqvzms8a6im7dl53p9pvhhjfakfjbr6vkg56jwn7a4"; 51704 51779 libraryHaskellDepends = [ 51705 51780 aeson async base bytestring calamity-commands colour 51706 51781 concurrent-extra connection containers data-default-class 51707 51782 data-flags deepseq deque df1 di-core di-polysemy exceptions focus 51708 51783 generic-lens hashable http-api-data http-client http-date 51709 51784 http-types lens lens-aeson megaparsec mime-types mtl polysemy 51710 - polysemy-plugin PyF reflection req safe-exceptions scientific stm 51711 - stm-chans stm-containers text text-show time tls typerep-map 51712 - unagi-chan unboxing-vector unordered-containers vector websockets 51713 - x509-system 51785 + polysemy-plugin PyF random reflection req safe-exceptions 51786 + scientific stm stm-chans stm-containers text text-show time tls 51787 + typerep-map unagi-chan unboxing-vector unordered-containers vector 51788 + websockets x509-system 51714 51789 ]; 51715 51790 description = "A library for writing discord bots in haskell"; 51716 51791 license = lib.licenses.mit; ··· 56857 56932 }) {}; 56858 56933 56859 56934 "cl3" = callPackage 56860 - ({ mkDerivation, base, criterion, deepseq, random }: 56935 + ({ mkDerivation, base, criterion, deepseq, massiv, random, time 56936 + , vector, weigh 56937 + }: 56861 56938 mkDerivation { 56862 56939 pname = "cl3"; 56863 - version = "2.0.0.0"; 56864 - sha256 = "0ibril0fjhm848za1grvpi6pdcshbxbfjwkflzh7zw4b9y5b7g89"; 56940 + version = "3.0.0.0"; 56941 + sha256 = "1x5pmmlhk1g4sq8gfrfpaiv20gamhnv3iwscp25pmhq6dwavf641"; 56865 56942 libraryHaskellDepends = [ base deepseq random ]; 56866 56943 testHaskellDepends = [ base criterion random ]; 56867 - benchmarkHaskellDepends = [ base criterion ]; 56944 + benchmarkHaskellDepends = [ 56945 + base criterion massiv time vector weigh 56946 + ]; 56868 56947 description = "Clifford Algebra of three dimensional space"; 56869 56948 license = lib.licenses.bsd3; 56870 56949 }) {}; ··· 56878 56957 libraryHaskellDepends = [ base cl3 hmatrix ]; 56879 56958 description = "Interface to/from Cl3 and HMatrix"; 56880 56959 license = lib.licenses.bsd3; 56960 + hydraPlatforms = lib.platforms.none; 56961 + broken = true; 56881 56962 }) {}; 56882 56963 56883 56964 "cl3-linear-interface" = callPackage ··· 56889 56970 libraryHaskellDepends = [ base cl3 linear ]; 56890 56971 description = "Interface to/from Cl3 and Linear"; 56891 56972 license = lib.licenses.bsd3; 56973 + hydraPlatforms = lib.platforms.none; 56974 + broken = true; 56892 56975 }) {}; 56893 56976 56894 56977 "clac" = callPackage ··· 57590 57673 }: 57591 57674 mkDerivation { 57592 57675 pname = "clckwrks"; 57593 - version = "0.27.2"; 57594 - sha256 = "088wx15f81h45ykhibq7ays5yn2ivwvgffaa459r6b6v53npkqkr"; 57676 + version = "0.28.0"; 57677 + sha256 = "11cr4mql6jhskhk1hg2c7kkvv005bha7y9b3ccpgy1147grnp00m"; 57595 57678 enableSeparateDataOutput = true; 57596 57679 libraryHaskellDepends = [ 57597 57680 acid-state aeson aeson-qq attoparsec base blaze-html bytestring ··· 57617 57700 }: 57618 57701 mkDerivation { 57619 57702 pname = "clckwrks-cli"; 57620 - version = "0.3.0.4"; 57621 - sha256 = "17ifv0awgx7fylc1pbdcdq9l8wl2shr6fy65rgb0xjv3zxnwx4i8"; 57703 + version = "0.3.0.5"; 57704 + sha256 = "198iixfqnv28vgx53dnyg4fn5a0g5lc0ybfr6z959xv02w6cfrqm"; 57622 57705 isLibrary = true; 57623 57706 isExecutable = true; 57624 57707 libraryHaskellDepends = [ ··· 60631 60714 "colour-space" = callPackage 60632 60715 ({ mkDerivation, base, call-stack, colour, constrained-categories 60633 60716 , JuicyPixels, lens, linear, linearmap-category, manifolds 60634 - , semigroups, vector-space 60717 + , manifolds-core, QuickCheck, random, semigroups, tasty 60718 + , tasty-quickcheck, vector-space 60635 60719 }: 60636 60720 mkDerivation { 60637 60721 pname = "colour-space"; 60638 - version = "0.1.5.1"; 60639 - sha256 = "18aqmppmq3czq38yn3rdblj6klvnax64jbkc524v9lsj45d7si43"; 60722 + version = "0.2.0.0"; 60723 + sha256 = "1ca62s0xdhc14jr123bzxpwqjaf8y8nakrm7a52srryr0d3mz7hg"; 60640 60724 libraryHaskellDepends = [ 60641 60725 base call-stack colour constrained-categories JuicyPixels lens 60642 - linear linearmap-category manifolds semigroups vector-space 60726 + linear linearmap-category manifolds manifolds-core QuickCheck 60727 + semigroups vector-space 60728 + ]; 60729 + testHaskellDepends = [ 60730 + base colour constrained-categories manifolds manifolds-core 60731 + QuickCheck random tasty tasty-quickcheck vector-space 60643 60732 ]; 60644 60733 description = "Instances of the manifold-classes for colour types"; 60645 60734 license = lib.licenses.gpl3Only; ··· 65315 65404 }: 65316 65405 mkDerivation { 65317 65406 pname = "contiguous"; 65318 - version = "0.6.1.1"; 65319 - sha256 = "0r1l2qpnmv8xbf5wk7ibcmn9ry9xab7r0v84a1srqlm1dxr9xmh3"; 65407 + version = "0.6.2.0"; 65408 + sha256 = "0ykd3nrc2ywf3svrkqsvvhycjf6hf5jm5dhhd3zpl57877r5cz72"; 65320 65409 libraryHaskellDepends = [ 65321 65410 base deepseq primitive primitive-unlifted run-st 65322 65411 ]; ··· 66285 66374 }: 66286 66375 mkDerivation { 66287 66376 pname = "core-data"; 66288 - version = "0.3.1.1"; 66289 - sha256 = "0i11m2k1xb97f0plvp9g7l4zhp9d1njn9z7xfhcmghbvlkk82vx2"; 66377 + version = "0.3.2.1"; 66378 + sha256 = "11ajh9lc3lg08czca18sn9jmb74skwdw0avzwimqphzvbkhdc0xj"; 66290 66379 libraryHaskellDepends = [ 66291 66380 aeson base bytestring containers core-text hashable prettyprinter 66292 66381 scientific text unordered-containers vector ··· 66341 66430 }: 66342 66431 mkDerivation { 66343 66432 pname = "core-telemetry"; 66344 - version = "0.1.9.2"; 66345 - sha256 = "07gb8ms3kchjvc0xbh36s1hzcmxaaci78gjgzdnkzap3lisjgcf0"; 66433 + version = "0.1.9.3"; 66434 + sha256 = "0rx2ji7g5a8bw7p394j52b3nj591h2d4zdvwryyxlwhg3y46iiv7"; 66346 66435 libraryHaskellDepends = [ 66347 66436 async base bytestring chronologique core-data core-program 66348 66437 core-text exceptions http-streams io-streams mtl network-info ··· 68999 69088 }: 69000 69089 mkDerivation { 69001 69090 pname = "cryptostore"; 69002 - version = "0.2.1.0"; 69003 - sha256 = "03y9xdjnraa7kyj3c79rqzw9lqw1csww21assxhjkjyid1ps4gn5"; 69091 + version = "0.2.2.0"; 69092 + sha256 = "0n70amg7y2qwfjhj4xaqjia46fbabba9l2g19ry191m7c4zp1skx"; 69004 69093 libraryHaskellDepends = [ 69005 69094 asn1-encoding asn1-types base basement bytestring cryptonite 69006 69095 hourglass memory pem x509 x509-validation ··· 70306 70395 ]; 70307 70396 hydraPlatforms = lib.platforms.none; 70308 70397 broken = true; 70309 - }) {inherit (pkgs) pocketsphinx; inherit (pkgs) sphinxbase;}; 70398 + }) {pocketsphinx = null; sphinxbase = null;}; 70310 70399 70311 70400 "cutter" = callPackage 70312 70401 ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet ··· 70358 70447 70359 70448 "cybus" = callPackage 70360 70449 ({ mkDerivation, adjunctions, base, checkers, deepseq, distributive 70361 - , indexed-traversable, lens, mtl, pos, pretty-simple, primus 70362 - , profunctors, QuickCheck, semigroupoids, tasty, tasty-hunit 70363 - , tasty-quickcheck, these, transformers, vector 70450 + , indexed-traversable, lens, mtl, pos, primus, profunctors 70451 + , QuickCheck, semigroupoids, tasty, tasty-hunit, tasty-quickcheck 70452 + , these, transformers, vector 70364 70453 }: 70365 70454 mkDerivation { 70366 70455 pname = "cybus"; 70367 - version = "0.2.0.0"; 70368 - sha256 = "01bzczqs7r7c2wfpzn1c6xfnhr910yy6kzzvlx2qhp5d8wml32wj"; 70456 + version = "0.3.0.0"; 70457 + sha256 = "1difprnmylgaa9g35s5w32q6wp8awnvv3cpw0vprvmdiyvwb4hf0"; 70369 70458 isLibrary = true; 70370 70459 isExecutable = true; 70371 70460 libraryHaskellDepends = [ ··· 70378 70467 ]; 70379 70468 testHaskellDepends = [ 70380 70469 adjunctions base checkers deepseq distributive indexed-traversable 70381 - lens mtl pos pretty-simple primus profunctors QuickCheck 70382 - semigroupoids tasty tasty-hunit tasty-quickcheck these transformers 70383 - vector 70470 + lens mtl pos primus profunctors QuickCheck semigroupoids tasty 70471 + tasty-hunit tasty-quickcheck these transformers vector 70384 70472 ]; 70385 70473 description = "multi-dimensional arrays"; 70386 70474 license = lib.licenses.bsd3; ··· 75258 75346 }: 75259 75347 mkDerivation { 75260 75348 pname = "dep-t"; 75261 - version = "0.6.1.0"; 75262 - sha256 = "093zic45a0q3lr0shhc0yjp5gclskyk7ipva0khsqgk2wrqgwqx6"; 75263 - revision = "1"; 75264 - editedCabalFile = "126h9isb8lzrqvf1rgl7n95snjzj181mkxn6qhbl8jg4rxn2zj3l"; 75349 + version = "0.6.2.0"; 75350 + sha256 = "1wpb5p07vvny0bhapi87iwh43nykgy6b25xmsxsp403mbnv9g9ws"; 75265 75351 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 75266 75352 testHaskellDepends = [ 75267 75353 aeson barbies base bytestring containers doctest mtl rank2classes ··· 75270 75356 ]; 75271 75357 description = "Dependency injection for records-of-functions"; 75272 75358 license = lib.licenses.bsd3; 75359 + hydraPlatforms = lib.platforms.none; 75360 + broken = true; 75273 75361 }) {}; 75274 75362 75275 75363 "dep-t-advice" = callPackage ··· 75297 75385 ]; 75298 75386 description = "Giving good advice to functions in records-of-functions"; 75299 75387 license = lib.licenses.bsd3; 75388 + hydraPlatforms = lib.platforms.none; 75300 75389 }) {}; 75301 75390 75302 75391 "dep-t-dynamic" = callPackage ··· 75307 75396 }: 75308 75397 mkDerivation { 75309 75398 pname = "dep-t-dynamic"; 75310 - version = "0.1.0.1"; 75311 - sha256 = "1wa68s5mcsgwchdm0xm2qcgpxvcxi6banmjzyfq1dn6wzj8028vn"; 75399 + version = "0.1.0.2"; 75400 + sha256 = "0dv7ydxqgmgphcjgphrdf6jghkykvg5nnppgpgglwi2rg7yfmp7i"; 75312 75401 libraryHaskellDepends = [ 75313 75402 algebraic-graphs base dep-t hashable sop-core transformers 75314 75403 unordered-containers ··· 75325 75414 broken = true; 75326 75415 }) {}; 75327 75416 75417 + "dep-t-value" = callPackage 75418 + ({ mkDerivation, aeson, base, bytestring, containers, dep-t 75419 + , directory, filepath, mtl, split, tasty, tasty-hunit, text 75420 + , transformers, unliftio-core 75421 + }: 75422 + mkDerivation { 75423 + pname = "dep-t-value"; 75424 + version = "0.1.0.0"; 75425 + sha256 = "0zyhqv60n392zvl70fx69l8h8r8syn3s184ccjg9bc3wq5xd6p4y"; 75426 + libraryHaskellDepends = [ 75427 + aeson base bytestring containers dep-t directory filepath mtl split 75428 + text transformers unliftio-core 75429 + ]; 75430 + testHaskellDepends = [ 75431 + aeson base bytestring containers dep-t directory filepath mtl split 75432 + tasty tasty-hunit text transformers unliftio-core 75433 + ]; 75434 + description = "Pair resources files with types within your program"; 75435 + license = lib.licenses.bsd3; 75436 + hydraPlatforms = lib.platforms.none; 75437 + }) {}; 75438 + 75328 75439 "dependency" = callPackage 75329 75440 ({ mkDerivation, ansi-wl-pprint, base, binary, containers 75330 75441 , criterion, deepseq, hspec, microlens ··· 79299 79410 pname = "discord-haskell-voice"; 79300 79411 version = "2.2.2"; 79301 79412 sha256 = "0vbp8xdvb9ci49l1ifqghbv6smqx0ll902957yyxym6yj2xjfpmv"; 79302 - revision = "2"; 79303 - editedCabalFile = "11dylm637a0wgvdmk47rhznhfkvdssfl52mnaf3wmqvd3axfh1id"; 79413 + revision = "3"; 79414 + editedCabalFile = "0fpm9ch866d0aispl1priz6knkf1q5b99vhjyz6c4nm5p2gl89mc"; 79304 79415 isLibrary = true; 79305 79416 isExecutable = true; 79306 79417 libraryHaskellDepends = [ ··· 83841 83952 license = lib.licenses.bsd3; 83842 83953 }) {}; 83843 83954 83955 + "dyna" = callPackage 83956 + ({ mkDerivation, async, base, Boolean, lifted-async, lifted-base 83957 + , monad-control, MonadRandom, mtl, random, stm, temporal-media 83958 + , time, unagi-chan, unbounded-delays, vector, vector-space 83959 + }: 83960 + mkDerivation { 83961 + pname = "dyna"; 83962 + version = "0.1.0.0"; 83963 + sha256 = "100ln6v4h2lx71pkzhxvfw7hgsld8xp828bhmn0985am82gd445i"; 83964 + libraryHaskellDepends = [ 83965 + async base Boolean lifted-async lifted-base monad-control 83966 + MonadRandom mtl random stm temporal-media time unagi-chan 83967 + unbounded-delays vector vector-space 83968 + ]; 83969 + testHaskellDepends = [ base ]; 83970 + description = "Minimal FRP library"; 83971 + license = lib.licenses.bsd3; 83972 + }) {}; 83973 + 83974 + "dyna-brick" = callPackage 83975 + ({ mkDerivation, base, Boolean, brick, data-default, dyna 83976 + , lifted-base, monad-control, MonadRandom, mtl, random, stm 83977 + , temporal-media, text, time, transformers-base, unagi-chan 83978 + , vector-space, vty 83979 + }: 83980 + mkDerivation { 83981 + pname = "dyna-brick"; 83982 + version = "0.1.0.0"; 83983 + sha256 = "018da74l17s2fsdbsnwn4yjlwd02yjp25ahfgvpw9wn7vx3syzdq"; 83984 + libraryHaskellDepends = [ 83985 + base Boolean brick data-default dyna lifted-base monad-control 83986 + MonadRandom mtl random stm temporal-media text time 83987 + transformers-base unagi-chan vector-space vty 83988 + ]; 83989 + testHaskellDepends = [ base ]; 83990 + description = "FRP for brick Terminal user interface library"; 83991 + license = lib.licenses.bsd3; 83992 + }) {}; 83993 + 83994 + "dyna-gloss" = callPackage 83995 + ({ mkDerivation, base, Boolean, dyna, gloss, lifted-base 83996 + , monad-control, MonadRandom, mtl, random, stm, temporal-media 83997 + , time, transformers-base, unagi-chan, vector-space 83998 + }: 83999 + mkDerivation { 84000 + pname = "dyna-gloss"; 84001 + version = "0.1.0.0"; 84002 + sha256 = "00797q1sqsbm9jk7jfkb9gjmrx6c6qbz9p1a31iak5g9ws8i41b7"; 84003 + libraryHaskellDepends = [ 84004 + base Boolean dyna gloss lifted-base monad-control MonadRandom mtl 84005 + random stm temporal-media time transformers-base unagi-chan 84006 + vector-space 84007 + ]; 84008 + testHaskellDepends = [ base ]; 84009 + description = "FRP for gloss graphics and animation library"; 84010 + license = lib.licenses.bsd3; 84011 + }) {}; 84012 + 84013 + "dyna-processing" = callPackage 84014 + ({ mkDerivation, base, Boolean, dyna, lifted-base, monad-control 84015 + , MonadRandom, mtl, processing-for-haskell, random, stm 84016 + , temporal-media, time, transformers-base, unagi-chan, vector-space 84017 + }: 84018 + mkDerivation { 84019 + pname = "dyna-processing"; 84020 + version = "0.1.0.0"; 84021 + sha256 = "05yss5zxibic1i1sdwnl8c8lp6g6fn7jcmg9bivvk4v33wf3xahn"; 84022 + libraryHaskellDepends = [ 84023 + base Boolean dyna lifted-base monad-control MonadRandom mtl 84024 + processing-for-haskell random stm temporal-media time 84025 + transformers-base unagi-chan vector-space 84026 + ]; 84027 + testHaskellDepends = [ base ]; 84028 + description = "FRP library for processing-for-haskell package"; 84029 + license = lib.licenses.bsd3; 84030 + hydraPlatforms = lib.platforms.none; 84031 + broken = true; 84032 + }) {}; 84033 + 83844 84034 "dynamic" = callPackage 83845 84035 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cassava 83846 84036 , containers, http-conduit, text, unordered-containers, vector ··· 84022 84212 }: 84023 84213 mkDerivation { 84024 84214 pname = "dynamic-plot"; 84025 - version = "0.4.1.0"; 84026 - sha256 = "1nly6ra0kd72q42hiaqism94vmyg5hp4ppyd024iiq9pcbgpq7r6"; 84027 - revision = "2"; 84028 - editedCabalFile = "1nszn52hpimz5hnkd6q0gsv6cv8rl3g1h939bhr41x2fr5bjzimi"; 84215 + version = "0.4.2.0"; 84216 + sha256 = "08zw03fijlshqkfx6vp97qhifz6air0yz9wkjn20k4laki9krkyy"; 84029 84217 libraryHaskellDepends = [ 84030 84218 base colour colour-space constrained-categories containers 84031 84219 data-default deepseq diagrams-cairo diagrams-core diagrams-gtk ··· 88686 88874 }) {}; 88687 88875 88688 88876 "espial" = callPackage 88689 - ({ mkDerivation, aeson, attoparsec, base, bcrypt, blaze-html 88690 - , bytestring, case-insensitive, classy-prelude 88877 + ({ mkDerivation, aeson, attoparsec, base, base64, bcrypt 88878 + , blaze-html, bytestring, case-insensitive, classy-prelude 88691 88879 , classy-prelude-conduit, classy-prelude-yesod, conduit, connection 88692 - , containers, data-default, directory, entropy, esqueleto 88693 - , fast-logger, file-embed, foreign-store, hjsmin, hscolour, hspec 88694 - , html-entities, http-api-data, http-client, http-client-tls 88695 - , http-conduit, http-types, iso8601-time, microlens, monad-logger 88696 - , mtl, optparse-applicative, optparse-generic, parser-combinators 88697 - , persistent, persistent-sqlite, persistent-template, pretty-show 88698 - , safe, shakespeare, template-haskell, text, time, transformers 88880 + , containers, cryptohash-sha256, data-default, directory, entropy 88881 + , esqueleto, fast-logger, file-embed, foreign-store, hjsmin 88882 + , hscolour, hspec, html-entities, http-api-data, http-client 88883 + , http-client-tls, http-conduit, http-types, iso8601-time 88884 + , microlens, monad-logger, mtl, optparse-applicative 88885 + , optparse-generic, parser-combinators, persistent 88886 + , persistent-sqlite, persistent-template, pretty-show, safe 88887 + , shakespeare, template-haskell, text, time, transformers 88699 88888 , unordered-containers, vector, wai, wai-extra, wai-logger, warp 88700 88889 , yaml, yesod, yesod-auth, yesod-core, yesod-form, yesod-newsfeed 88701 88890 , yesod-static, yesod-test 88702 88891 }: 88703 88892 mkDerivation { 88704 88893 pname = "espial"; 88705 - version = "0.0.10"; 88706 - sha256 = "01xbnif1wwfr6w9mnc6fpsnf8vnfdi3r1gcg8gwdsg7mjxvjc0w1"; 88894 + version = "0.0.11"; 88895 + sha256 = "1y3hvrwb6sg2vgjrxakl27gh9i1kr8x4l64jc6sfxqx4gvrgi338"; 88707 88896 isLibrary = true; 88708 88897 isExecutable = true; 88709 88898 libraryHaskellDepends = [ 88710 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88711 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88712 - connection containers data-default directory entropy esqueleto 88899 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88900 + case-insensitive classy-prelude classy-prelude-conduit 88901 + classy-prelude-yesod conduit connection containers 88902 + cryptohash-sha256 data-default directory entropy esqueleto 88713 88903 fast-logger file-embed foreign-store hjsmin hscolour html-entities 88714 88904 http-api-data http-client http-client-tls http-conduit http-types 88715 88905 iso8601-time microlens monad-logger mtl parser-combinators ··· 88719 88909 yesod yesod-auth yesod-core yesod-form yesod-newsfeed yesod-static 88720 88910 ]; 88721 88911 executableHaskellDepends = [ 88722 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88723 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88724 - connection containers data-default directory entropy esqueleto 88912 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88913 + case-insensitive classy-prelude classy-prelude-conduit 88914 + classy-prelude-yesod conduit connection containers 88915 + cryptohash-sha256 data-default directory entropy esqueleto 88725 88916 fast-logger file-embed foreign-store hjsmin hscolour html-entities 88726 88917 http-api-data http-client http-client-tls http-conduit http-types 88727 88918 iso8601-time microlens monad-logger mtl optparse-applicative ··· 88732 88923 yesod-newsfeed yesod-static 88733 88924 ]; 88734 88925 testHaskellDepends = [ 88735 - aeson attoparsec base bcrypt blaze-html bytestring case-insensitive 88736 - classy-prelude classy-prelude-conduit classy-prelude-yesod conduit 88737 - connection containers data-default directory entropy esqueleto 88926 + aeson attoparsec base base64 bcrypt blaze-html bytestring 88927 + case-insensitive classy-prelude classy-prelude-conduit 88928 + classy-prelude-yesod conduit connection containers 88929 + cryptohash-sha256 data-default directory entropy esqueleto 88738 88930 fast-logger file-embed foreign-store hjsmin hscolour hspec 88739 88931 html-entities http-api-data http-client http-client-tls 88740 88932 http-conduit http-types iso8601-time microlens monad-logger mtl ··· 88760 88952 }: 88761 88953 mkDerivation { 88762 88954 pname = "esqueleto"; 88763 - version = "3.5.4.0"; 88764 - sha256 = "1c38kx04nkk68bj76mkbjbmw9fhb3ljn3j8mwsls6q7m4z49m6yy"; 88955 + version = "3.5.4.1"; 88956 + sha256 = "05jnsaxmc5y1mh6n52agv9rfh6s11fidd30mr5f1f53568dw9c95"; 88765 88957 libraryHaskellDepends = [ 88766 88958 aeson attoparsec base blaze-html bytestring conduit containers 88767 88959 monad-logger persistent resourcet tagged text time transformers ··· 100009 100201 pname = "fsnotify"; 100010 100202 version = "0.3.0.1"; 100011 100203 sha256 = "19bdbz9wb9jvln6yg6qm0hz0w84bypvkxf0wjhgrgd52f9gidlny"; 100012 - revision = "1"; 100013 - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; 100204 + revision = "2"; 100205 + editedCabalFile = "12m0y5583plk9pikvwqy1rc0yyvicxf8j5nz0nwxb4grsgfqrv7v"; 100014 100206 libraryHaskellDepends = [ 100015 100207 async base bytestring containers directory filepath hinotify shelly 100016 100208 text time unix unix-compat ··· 101156 101348 , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 101157 101349 , directory, directory-tree, dlist, file-embed, filepath, free 101158 101350 , futhark-data, futhark-manifest, futhark-server, githash, half 101159 - , happy, haskeline, language-c-quote, mainland-pretty, megaparsec 101160 - , mtl, neat-interpolation, parallel, parser-combinators, process 101161 - , process-extras, QuickCheck, random, regex-tdfa, srcloc, tasty 101162 - , tasty-hunit, tasty-quickcheck, template-haskell, temporary 101163 - , terminal-size, text, time, transformers, vector, versions 101164 - , zip-archive, zlib 101351 + , happy, haskeline, hslogger, language-c-quote, lens, lsp 101352 + , mainland-pretty, megaparsec, mtl, mwc-random, neat-interpolation 101353 + , parallel, parser-combinators, process, process-extras, QuickCheck 101354 + , random, regex-tdfa, srcloc, statistics, tasty, tasty-hunit 101355 + , tasty-quickcheck, template-haskell, temporary, terminal-size 101356 + , text, time, transformers, vector, versions, zip-archive, zlib 101165 101357 }: 101166 101358 mkDerivation { 101167 101359 pname = "futhark"; 101168 - version = "0.21.8"; 101169 - sha256 = "16qvrmqrfsnj11f59xkb3cgibd1wq80bcssjfzbicwmrlxi86im6"; 101360 + version = "0.21.10"; 101361 + sha256 = "0mm0awd1sf5sfb6i1yjbcm67j2nhqpfnn11q8p61z3b2py6lnzzf"; 101170 101362 isLibrary = true; 101171 101363 isExecutable = true; 101172 101364 libraryHaskellDepends = [ ··· 101174 101366 bmp bytestring bytestring-to-vector cmark-gfm containers 101175 101367 cryptohash-md5 directory directory-tree dlist file-embed filepath 101176 101368 free futhark-data futhark-manifest futhark-server githash half 101177 - haskeline language-c-quote mainland-pretty megaparsec mtl 101178 - neat-interpolation parallel process process-extras random 101179 - regex-tdfa srcloc template-haskell temporary terminal-size text 101180 - time transformers vector versions zip-archive zlib 101369 + haskeline hslogger language-c-quote lens lsp mainland-pretty 101370 + megaparsec mtl mwc-random neat-interpolation parallel process 101371 + process-extras random regex-tdfa srcloc statistics template-haskell 101372 + temporary terminal-size text time transformers vector versions 101373 + zip-archive zlib 101181 101374 ]; 101182 101375 libraryToolDepends = [ alex happy ]; 101183 101376 executableHaskellDepends = [ base text ]; ··· 102511 102704 broken = true; 102512 102705 }) {}; 102513 102706 102707 + "gemini-exports" = callPackage 102708 + ({ mkDerivation, aeson, base, base64, bytestring, cassava, cmdargs 102709 + , containers, cryptonite, directory, hedgehog, http-client 102710 + , http-types, mtl, raw-strings-qq, req, safe-exceptions, scientific 102711 + , tasty, tasty-hedgehog, tasty-hunit, text, time, xdg-basedir, yaml 102712 + }: 102713 + mkDerivation { 102714 + pname = "gemini-exports"; 102715 + version = "0.1.0.0"; 102716 + sha256 = "0a50mb0na1b595gpbq8ynisg6g6dispjgz1dj2gc51k6q618jgly"; 102717 + isLibrary = true; 102718 + isExecutable = true; 102719 + libraryHaskellDepends = [ 102720 + aeson base base64 bytestring cassava cmdargs containers cryptonite 102721 + directory http-client http-types mtl raw-strings-qq req 102722 + safe-exceptions scientific text time xdg-basedir yaml 102723 + ]; 102724 + executableHaskellDepends = [ base ]; 102725 + testHaskellDepends = [ 102726 + base hedgehog tasty tasty-hedgehog tasty-hunit 102727 + ]; 102728 + description = "Generate CSV Exports of Your Gemini Trades, Transfers, & Earn Transactions"; 102729 + license = lib.licenses.bsd3; 102730 + hydraPlatforms = lib.platforms.none; 102731 + broken = true; 102732 + }) {}; 102733 + 102514 102734 "gemini-router" = callPackage 102515 102735 ({ mkDerivation, base, gemini-server, HsOpenSSL, network-uri 102516 102736 , transformers ··· 104943 105163 pname = "ghc-debug-common"; 104944 105164 version = "0.2.0.0"; 104945 105165 sha256 = "1fw9whgh2zayvaagn1f7x1qkwvznpjhpn4zkfnfav24pkmpf5ijy"; 104946 - revision = "1"; 104947 - editedCabalFile = "0p4n8ralbf8jsydjb1q42avrzya09hf0pq5zp1s1ggx3gm3q7ra8"; 105166 + revision = "2"; 105167 + editedCabalFile = "1cq2bgq9n6295912p8bfwkrg9jqx36x4zxzj468pkr3dsfhjqr23"; 104948 105168 libraryHaskellDepends = [ 104949 105169 array base binary bytestring containers cpu deepseq directory 104950 105170 dom-lt filepath ghc-debug-convention ghc-heap hashable transformers ··· 104976 105196 pname = "ghc-debug-stub"; 104977 105197 version = "0.2.0.0"; 104978 105198 sha256 = "1zi388jwdad9qlj1v0ihrv67abknbhh7scr1fymc808xmkkwk701"; 105199 + revision = "1"; 105200 + editedCabalFile = "0irnhf32ghxch8r0p2vd7afj3282a1r9lval2an2mj99kcllhl6d"; 104979 105201 libraryHaskellDepends = [ 104980 105202 base directory filepath ghc-debug-convention ghc-prim 104981 105203 ]; ··· 105001 105223 }: 105002 105224 mkDerivation { 105003 105225 pname = "ghc-dump-core"; 105004 - version = "0.1.2.0"; 105005 - sha256 = "0yv811iyjx4iklj44bhipmiwlxl8bx27866i32icnl5ds86ws7la"; 105226 + version = "0.2.1.0"; 105227 + sha256 = "01qbim2chc8kh76pza30nd5hgf4816ki130m71ajpsjghh34xrd9"; 105006 105228 libraryHaskellDepends = [ 105007 105229 base bytestring directory filepath ghc serialise text 105008 105230 ]; ··· 105039 105261 }) {}; 105040 105262 105041 105263 "ghc-dump-util" = callPackage 105042 - ({ mkDerivation, ansi-wl-pprint, base, bytestring, ghc-dump-core 105043 - , hashable, optparse-applicative, regex-tdfa, serialise, text 105264 + ({ mkDerivation, ansi-terminal, base, bytestring, ghc-dump-core 105265 + , hashable, lucid, optparse-applicative, prettyprinter 105266 + , prettyprinter-ansi-terminal, regex-tdfa, serialise, text 105044 105267 , unordered-containers 105045 105268 }: 105046 105269 mkDerivation { 105047 105270 pname = "ghc-dump-util"; 105048 - version = "0.1.2.0"; 105049 - sha256 = "1j85mscsc1g647r4d3v72lqclsi8bw174di6w9n24x0bq3rqskxi"; 105271 + version = "0.2.1.0"; 105272 + sha256 = "02gygafwdpz442pycal0gxsk9rryqcv6r0gzg55qwgqwdbdqyfp4"; 105050 105273 isLibrary = true; 105051 105274 isExecutable = true; 105052 105275 libraryHaskellDepends = [ 105053 - ansi-wl-pprint base bytestring ghc-dump-core hashable serialise 105054 - text unordered-containers 105276 + base bytestring ghc-dump-core hashable lucid prettyprinter 105277 + serialise text unordered-containers 105055 105278 ]; 105056 105279 executableHaskellDepends = [ 105057 - ansi-wl-pprint base ghc-dump-core optparse-applicative regex-tdfa 105280 + ansi-terminal base ghc-dump-core optparse-applicative prettyprinter 105281 + prettyprinter-ansi-terminal regex-tdfa 105058 105282 ]; 105059 105283 description = "Handy tools for working with ghc-dump dumps"; 105060 105284 license = lib.licenses.bsd3; ··· 105093 105317 license = lib.licenses.bsd3; 105094 105318 }) {}; 105095 105319 105320 + "ghc-events_0_17_0_3" = callPackage 105321 + ({ mkDerivation, array, base, binary, bytestring, containers, text 105322 + , vector 105323 + }: 105324 + mkDerivation { 105325 + pname = "ghc-events"; 105326 + version = "0.17.0.3"; 105327 + sha256 = "0m50x2ycv43d7yzwksbs1zc11wlyiszjz662fj47v9r7hacx335v"; 105328 + isLibrary = true; 105329 + isExecutable = true; 105330 + libraryHaskellDepends = [ 105331 + array base binary bytestring containers text vector 105332 + ]; 105333 + executableHaskellDepends = [ base containers ]; 105334 + testHaskellDepends = [ base ]; 105335 + description = "Library and tool for parsing .eventlog files from GHC"; 105336 + license = lib.licenses.bsd3; 105337 + hydraPlatforms = lib.platforms.none; 105338 + }) {}; 105339 + 105096 105340 "ghc-events-analyze" = callPackage 105097 105341 ({ mkDerivation, base, blaze-svg, bytestring, containers 105098 105342 , diagrams-lib, diagrams-svg, filepath, ghc-events, hashable, lens ··· 110126 110370 testHaskellDepends = [ base HUnit ]; 110127 110371 description = "Console IRC client"; 110128 110372 license = lib.licenses.isc; 110373 + hydraPlatforms = lib.platforms.none; 110129 110374 maintainers = with lib.maintainers; [ kiwi ]; 110375 + broken = true; 110130 110376 }) {}; 110131 110377 110132 110378 "gll" = callPackage ··· 114178 114424 license = lib.licenses.bsd3; 114179 114425 }) {}; 114180 114426 114427 + "gpmf" = callPackage 114428 + ({ mkDerivation, attoparsec, attoparsec-binary, base, binary 114429 + , bytestring, containers, data-binary-ieee754, HUnit, lens, mtl 114430 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, time 114431 + , transformers 114432 + }: 114433 + mkDerivation { 114434 + pname = "gpmf"; 114435 + version = "0.1.1.0"; 114436 + sha256 = "14xwfwy8d7nn15alllcs61zq0pa7llsjh18f7qd13b5qcf485mpx"; 114437 + isLibrary = true; 114438 + isExecutable = true; 114439 + libraryHaskellDepends = [ 114440 + attoparsec attoparsec-binary base binary bytestring containers 114441 + data-binary-ieee754 lens mtl time transformers 114442 + ]; 114443 + executableHaskellDepends = [ 114444 + attoparsec attoparsec-binary base binary bytestring containers 114445 + data-binary-ieee754 lens mtl time transformers 114446 + ]; 114447 + testHaskellDepends = [ 114448 + attoparsec attoparsec-binary base binary bytestring containers 114449 + data-binary-ieee754 HUnit lens mtl tasty tasty-golden tasty-hunit 114450 + tasty-quickcheck time transformers 114451 + ]; 114452 + license = lib.licenses.bsd3; 114453 + hydraPlatforms = lib.platforms.none; 114454 + broken = true; 114455 + }) {}; 114456 + 114181 114457 "gpolyline" = callPackage 114182 114458 ({ mkDerivation, base, split }: 114183 114459 mkDerivation { ··· 115081 115357 pname = "graphql-client"; 115082 115358 version = "1.1.1"; 115083 115359 sha256 = "1d00ib9c8ps8vv1qgrkjfzrjbgbsdnp1jiz7779bwm76j88vggb4"; 115084 - revision = "3"; 115085 - editedCabalFile = "0pnkq0wxjmfk67ji6wr7b42lsr2gp026cx91ryq146gh4c9gwacv"; 115360 + revision = "4"; 115361 + editedCabalFile = "0aiwn7pwv67nwfgg6ga4lr60i9gq9n402dsdyfw88i66fllhgmkc"; 115086 115362 isLibrary = true; 115087 115363 isExecutable = true; 115088 115364 libraryHaskellDepends = [ ··· 119937 120213 license = lib.licenses.bsd3; 119938 120214 }) {}; 119939 120215 120216 + "half-space" = callPackage 120217 + ({ mkDerivation, base, call-stack, equational-reasoning 120218 + , manifolds-core, vector-space 120219 + }: 120220 + mkDerivation { 120221 + pname = "half-space"; 120222 + version = "0.1.0.0"; 120223 + sha256 = "0pijcyxqsrzdp1jjcvi3xbrg878bp954j7n1i1y059riz9a7nyk6"; 120224 + libraryHaskellDepends = [ 120225 + base call-stack equational-reasoning manifolds-core vector-space 120226 + ]; 120227 + description = "Additive monoids generalising vector spaces"; 120228 + license = lib.licenses.gpl3Only; 120229 + hydraPlatforms = lib.platforms.none; 120230 + broken = true; 120231 + }) {}; 120232 + 119940 120233 "halfs" = callPackage 119941 120234 ({ mkDerivation, array, base, bytestring, cereal, containers 119942 120235 , directory, filepath, fingertree, HFuse, mtl, QuickCheck, random ··· 120838 121131 , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs 120839 121132 , http-conduit, http-types, ixset-typed, jmacro, jwt, lens 120840 121133 , mime-mail, mtl, pwstore-purehaskell, random, safecopy 120841 - , shakespeare, text, time, unordered-containers, userid, web-routes 120842 - , web-routes-boomerang, web-routes-happstack, web-routes-hsp 120843 - , web-routes-th 121134 + , shakespeare, stm, text, time, unordered-containers, userid 121135 + , web-routes, web-routes-boomerang, web-routes-happstack 121136 + , web-routes-hsp, web-routes-th 120844 121137 }: 120845 121138 mkDerivation { 120846 121139 pname = "happstack-authenticate"; 120847 - version = "2.5.1"; 120848 - sha256 = "13v128xcjdflzqiszal8iwbnp0ia02p2n52hwlhvb5ip2c4gipkm"; 121140 + version = "2.6.0"; 121141 + sha256 = "0sqldnhfp631vb3v69zm856zax89mgykvj4f9siisqn41qz097zx"; 120849 121142 enableSeparateDataOutput = true; 120850 121143 libraryHaskellDepends = [ 120851 121144 acid-state aeson authenticate base base64-bytestring boomerang 120852 121145 bytestring containers data-default email-validate filepath 120853 121146 happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro 120854 121147 hsx2hs http-conduit http-types ixset-typed jmacro jwt lens 120855 - mime-mail mtl pwstore-purehaskell random safecopy shakespeare text 120856 - time unordered-containers userid web-routes web-routes-boomerang 120857 - web-routes-happstack web-routes-hsp web-routes-th 121148 + mime-mail mtl pwstore-purehaskell random safecopy shakespeare stm 121149 + text time unordered-containers userid web-routes 121150 + web-routes-boomerang web-routes-happstack web-routes-hsp 121151 + web-routes-th 120858 121152 ]; 120859 121153 description = "Happstack Authentication Library"; 120860 121154 license = lib.licenses.bsd3; ··· 121715 122009 ({ mkDerivation, base }: 121716 122010 mkDerivation { 121717 122011 pname = "harp"; 121718 - version = "0.4.3.4"; 121719 - sha256 = "0n30bvpfijaji8p2lk3vc0dfcgd2sclwakvbi31jma4z1i03k89q"; 122012 + version = "0.4.3.5"; 122013 + sha256 = "0a9vhldmfrnzbv6ic311akcvyd39j8llkwpm8snaap6s593p7z5h"; 121720 122014 libraryHaskellDepends = [ base ]; 121721 122015 description = "HaRP allows pattern-matching with regular expressions"; 121722 122016 license = lib.licenses.bsd3; ··· 125567 125861 }: 125568 125862 mkDerivation { 125569 125863 pname = "haskoin-core"; 125570 - version = "0.21.1"; 125571 - sha256 = "0ld1a0pn5llnzdnffvcwh8zzh8143vkx3f5y1ixgb7qx6gpqnzrs"; 125864 + version = "0.21.2"; 125865 + sha256 = "12i490xjfb0aav18ay3ahh0hpa9l5095a4hmva1ka3497clm7cfr"; 125572 125866 libraryHaskellDepends = [ 125573 125867 aeson array base base16 binary bytes bytestring cereal conduit 125574 125868 containers cryptonite deepseq entropy hashable hspec memory mtl ··· 125707 126001 }: 125708 126002 mkDerivation { 125709 126003 pname = "haskoin-store"; 125710 - version = "0.65.0"; 125711 - sha256 = "0fd160w771x2rzy68rxrc8ail4xlplgf9qc2g8xi8j2am9if4q7y"; 126004 + version = "0.65.2"; 126005 + sha256 = "0sfb0z29jzi42yk734gw70dwxjzgfk9bmw3pl9l91iy6iqxakian"; 125712 126006 isLibrary = true; 125713 126007 isExecutable = true; 125714 126008 libraryHaskellDepends = [ ··· 125755 126049 }: 125756 126050 mkDerivation { 125757 126051 pname = "haskoin-store-data"; 125758 - version = "0.65.0"; 125759 - sha256 = "0758jsabbdkg2n9vi0b91bh3dwflpqq6vqkhvlxi1rdpdil4sl1l"; 126052 + version = "0.65.2"; 126053 + sha256 = "1nx2fiai27mycbqsxi1hbgwnsaa36836zzg65bdaj5wl03549ywj"; 125760 126054 libraryHaskellDepends = [ 125761 126055 aeson base binary bytes bytestring cereal containers data-default 125762 126056 deepseq hashable haskoin-core http-client http-types lens mtl ··· 127131 127425 license = lib.licenses.mit; 127132 127426 }) {}; 127133 127427 127428 + "hasql-th_0_4_0_12" = callPackage 127429 + ({ mkDerivation, base, bytestring, containers, contravariant, foldl 127430 + , hasql, postgresql-syntax, template-haskell 127431 + , template-haskell-compat-v0208, text, uuid, vector 127432 + }: 127433 + mkDerivation { 127434 + pname = "hasql-th"; 127435 + version = "0.4.0.12"; 127436 + sha256 = "0fcfm2d66f7hzzc9s73dd9dxcjsrr33c1q0v04j3zqm159kk69jd"; 127437 + libraryHaskellDepends = [ 127438 + base bytestring containers contravariant foldl hasql 127439 + postgresql-syntax template-haskell template-haskell-compat-v0208 127440 + text uuid vector 127441 + ]; 127442 + description = "Template Haskell utilities for Hasql"; 127443 + license = lib.licenses.mit; 127444 + hydraPlatforms = lib.platforms.none; 127445 + }) {}; 127446 + 127134 127447 "hasql-transaction" = callPackage 127135 127448 ({ mkDerivation, async, base, bytestring, bytestring-tree-builder 127136 127449 , contravariant, contravariant-extras, hasql, mtl, rerebase ··· 127716 128029 }: 127717 128030 mkDerivation { 127718 128031 pname = "haxl"; 127719 - version = "2.3.0.0"; 127720 - sha256 = "149k26iaas3sb9qyagzjkb0n86k34nf0r06fyvvqyap1w476fd3c"; 128032 + version = "2.4.0.0"; 128033 + sha256 = "1vah61fs047h9v0c8z6ka0lcckhcsjrjxqcck0jipcppzpg68inw"; 127721 128034 isLibrary = true; 127722 128035 isExecutable = true; 127723 128036 libraryHaskellDepends = [ ··· 129605 129918 broken = true; 129606 129919 }) {}; 129607 129920 129921 + "hedgehog-lens" = callPackage 129922 + ({ mkDerivation, base, hedgehog, lens }: 129923 + mkDerivation { 129924 + pname = "hedgehog-lens"; 129925 + version = "0.1.0.0"; 129926 + sha256 = "08zr8xyfb3ihbcy5y2afcl3a2fy68bfiyyb35hdqdjbzf80zlbhv"; 129927 + libraryHaskellDepends = [ base hedgehog lens ]; 129928 + description = "Hedgehog properties for lens laws"; 129929 + license = lib.licenses.mit; 129930 + hydraPlatforms = lib.platforms.none; 129931 + broken = true; 129932 + }) {}; 129933 + 129608 129934 , regex-posix, tagsoup, template-haskell, transformers 129609 129935 , regex-posix, tagsoup, template-haskell, transformers 129610 129936 mkDerivation { ··· 130047 130373 }: 130048 130374 mkDerivation { 130049 130375 , regex-posix, tagsoup, template-haskell, transformers 130050 - version = "0.5.0.0"; 130051 - , regex-posix, tagsoup, template-haskell, transformers 130376 + version = "0.5.1.0"; 130377 + sha256 = "1gglcac10abszarmrgggrirf51jj0qcbp7gdqh93kghx1pqv4ldg"; 130052 130378 isLibrary = true; 130053 130379 isExecutable = true; 130054 130380 libraryHaskellDepends = [ ··· 137625 137951 }: 137626 137952 mkDerivation { 137627 137953 pname = "hookup"; 137628 - version = "0.6"; 137629 - sha256 = "09rhsq0j2m1j87qsbsd3l1q3dv2zs4wrhcz2jhn4a6dx273w5528"; 137954 + version = "0.7"; 137955 + sha256 = "02prkwj4rj8g330z17bpjh7hpwfdvasaxsk74mcvbi03gjpydrib"; 137630 137956 libraryHaskellDepends = [ 137631 137957 async attoparsec base bytestring HsOpenSSL HsOpenSSL-x509-system 137632 137958 network stm ··· 143400 143726 license = lib.licenses.mit; 143401 143727 }) {}; 143402 143728 143403 - "hspec_2_9_6" = callPackage 143729 + "hspec_2_9_7" = callPackage 143404 143730 ({ mkDerivation, base, hspec-core, hspec-discover 143405 143731 , hspec-expectations, QuickCheck 143406 143732 }: 143407 143733 mkDerivation { 143408 143734 pname = "hspec"; 143409 - version = "2.9.6"; 143410 - sha256 = "1x3mizv029qn9yyq3ipr2awlapbsiyksxzd9x7r3vjfxlwbjs4sr"; 143735 + version = "2.9.7"; 143736 + sha256 = "092sfqjkargxxszp9jjqa8ldjz0xv34jwn6k21q59ys5ckvsrpc1"; 143411 143737 libraryHaskellDepends = [ 143412 143738 base hspec-core hspec-discover hspec-expectations QuickCheck 143413 143739 ]; ··· 143527 143853 license = lib.licenses.mit; 143528 143854 }) {}; 143529 143855 143530 - "hspec-core_2_9_6" = callPackage 143856 + "hspec-core_2_9_7" = callPackage 143531 143857 ({ mkDerivation, ansi-terminal, array, base, base-orphans 143532 143858 , call-stack, clock, deepseq, directory, filepath, ghc, ghc-boot-th 143533 143859 , hspec-expectations, hspec-meta, HUnit, process, QuickCheck ··· 143536 143862 }: 143537 143863 mkDerivation { 143538 143864 pname = "hspec-core"; 143539 - version = "2.9.6"; 143540 - sha256 = "0mg8rdg8ga24fk6cv7p8vb0j33agay1nwaxqvfga6d4kj5g440fr"; 143865 + version = "2.9.7"; 143866 + sha256 = "040rzqiqwkp373jjpij8lkmv08pp2ya92zzcf95bw8px215rp08n"; 143541 143867 libraryHaskellDepends = [ 143542 143868 ansi-terminal array base call-stack clock deepseq directory 143543 143869 filepath ghc ghc-boot-th hspec-expectations HUnit QuickCheck ··· 143616 143942 maintainers = with lib.maintainers; [ maralorn ]; 143617 143943 }) {}; 143618 143944 143619 - "hspec-discover_2_9_6" = callPackage 143945 + "hspec-discover_2_9_7" = callPackage 143620 143946 ({ mkDerivation, base, directory, filepath, hspec-meta, mockery 143621 143947 , QuickCheck 143622 143948 }: 143623 143949 mkDerivation { 143624 143950 pname = "hspec-discover"; 143625 - version = "2.9.6"; 143626 - sha256 = "1k77hn47b3l4m8qpp2zfv73k2in7pi2fybda0dkpfj3a1jsarpin"; 143951 + version = "2.9.7"; 143952 + sha256 = "0536kdxjw6p8b6gcwvmr22jbmb6cgzbddi0fkd01b2m847z37sb5"; 143627 143953 isLibrary = true; 143628 143954 isExecutable = true; 143629 143955 libraryHaskellDepends = [ base directory filepath ]; ··· 144169 144495 pname = "hspec-smallcheck"; 144170 144496 version = "0.5.2"; 144171 144497 sha256 = "06c1ym793zkdwi4bxk5f4l7m1n1bg5jmnm0p68q2pa9rlhk1lc4s"; 144498 + revision = "1"; 144499 + editedCabalFile = "0bih2r7pdfca8jw9jii84nsx3q6xfwjylsilgwxx02xl35dv0nkp"; 144172 144500 libraryHaskellDepends = [ 144173 144501 base call-stack hspec-core HUnit smallcheck 144174 144502 ]; ··· 145207 145535 }: 145208 145536 mkDerivation { 145209 145537 pname = "hsx2hs"; 145210 - version = "0.14.1.8"; 145211 - sha256 = "1yx2bnwjqwghp2jg3kpk42wbbqswnxph46xjrmyaharlw1s8y0f2"; 145538 + version = "0.14.1.9"; 145539 + sha256 = "1154p6ki51h5wlq8431q9h8r1q7f409vaq5hzi5q9895nxd3lkr3"; 145212 145540 isLibrary = true; 145213 145541 isExecutable = true; 145214 145542 libraryHaskellDepends = [ ··· 147118 147446 pname = "http2-client"; 147119 147447 version = "0.10.0.0"; 147120 147448 sha256 = "0kv4qa9cbwwj6b62manzpl1sk4jnsb5vx2y73w49drlfkrw1vpgy"; 147449 + revision = "1"; 147450 + editedCabalFile = "18ilcli28jfm914v1l059z74cj43m4xfwqk2wfhhw0vyvw2n8ryi"; 147121 147451 libraryHaskellDepends = [ 147122 147452 async base bytestring containers deepseq http2 lifted-async 147123 147453 lifted-base mtl network stm time tls transformers-base ··· 148098 148428 }: 148099 148429 mkDerivation { 148100 148430 pname = "hw-aeson"; 148101 - version = "0.1.5.0"; 148102 - sha256 = "0dzwn1k467dij8ihqzxq6vhm5faqqjndvyw0ikwjhwh0lf1h38cz"; 148431 + version = "0.1.6.0"; 148432 + sha256 = "06xi9bj0jsp2g2d2wkxs6w2p96i927alrrm4r9vpm530cd1zxzwr"; 148103 148433 libraryHaskellDepends = [ 148104 148434 aeson base containers text text-short unordered-containers 148105 148435 ]; ··· 150371 150701 license = lib.licenses.bsd3; 150372 150702 }) {}; 150373 150703 150704 + "hyperloglog_0_4_6" = callPackage 150705 + ({ mkDerivation, approximate, base, binary, bits, bytes, bytestring 150706 + , cereal, cereal-vector, comonad, cpu, deepseq, distributive 150707 + , hashable, lens, reflection, semigroupoids, semigroups, tagged 150708 + , vector 150709 + }: 150710 + mkDerivation { 150711 + pname = "hyperloglog"; 150712 + version = "0.4.6"; 150713 + sha256 = "0zwg4dhgasa9sx7pbjjjb9kz2bnhb3r2daij2b572cszv65l91nv"; 150714 + libraryHaskellDepends = [ 150715 + approximate base binary bits bytes bytestring cereal cereal-vector 150716 + comonad cpu deepseq distributive hashable lens reflection 150717 + semigroupoids semigroups tagged vector 150718 + ]; 150719 + description = "An approximate streaming (constant space) unique object counter"; 150720 + license = lib.licenses.bsd3; 150721 + hydraPlatforms = lib.platforms.none; 150722 + }) {}; 150723 + 150374 150724 "hyperloglogplus" = callPackage 150375 150725 ({ mkDerivation, base, bits, containers, HUnit, murmur-hash 150376 150726 , semigroups, tasty, tasty-hunit, vector ··· 151230 151580 license = lib.licenses.bsd3; 151231 151581 hydraPlatforms = lib.platforms.none; 151232 151582 broken = true; 151583 + }) {}; 151584 + 151585 + "idiomatic" = callPackage 151586 + ({ mkDerivation, base }: 151587 + mkDerivation { 151588 + pname = "idiomatic"; 151589 + version = "0.1.1.0"; 151590 + sha256 = "10mcccvxw5s5n2k481xlzd3sdfab5kh963izwf20z4am20plrqqi"; 151591 + isLibrary = true; 151592 + isExecutable = true; 151593 + libraryHaskellDepends = [ base ]; 151594 + description = "Deriving Applicative for sum types.. Idiomatically."; 151595 + license = lib.licenses.bsd3; 151233 151596 }) {}; 151234 151597 151235 151598 "idna" = callPackage ··· 157419 157782 }: 157420 157783 mkDerivation { 157421 157784 pname = "jacinda"; 157422 - version = "1.0.0.0"; 157423 - sha256 = "1yskpr3mvfhzxcjf0f9sf3mhsg892vqkx5kd4vz4w6wk3vv1iz3i"; 157785 + version = "1.1.0.0"; 157786 + sha256 = "0sx15lslkcvck7cvd55ykkifba9cv0ig0h53ycf0izbl3cxdr1j9"; 157424 157787 isLibrary = false; 157425 157788 isExecutable = true; 157426 157789 enableSeparateDataOutput = true; ··· 157552 157915 }) {}; 157553 157916 157554 157917 "jailbreak-cabal" = callPackage 157555 - ({ mkDerivation, base, Cabal }: 157918 + ({ mkDerivation, base, Cabal, Cabal-syntax }: 157556 157919 mkDerivation { 157557 157920 pname = "jailbreak-cabal"; 157558 - version = "1.3.5"; 157559 - sha256 = "1221gxggyk3pjqkc72wxx9gjl8dvqna1rn9nh9zkcmdpv5yww7wd"; 157921 + version = "1.3.6"; 157922 + sha256 = "11vzq4yklsi7v04lch0540fgvbg6d5fnl4sdfdcg8n3ijkwqy49p"; 157560 157923 isLibrary = false; 157561 157924 isExecutable = true; 157562 - executableHaskellDepends = [ base Cabal ]; 157925 + executableHaskellDepends = [ base Cabal Cabal-syntax ]; 157563 157926 description = "Strip version restrictions from Cabal files"; 157564 157927 license = lib.licenses.bsd3; 157565 157928 maintainers = with lib.maintainers; [ peti ]; ··· 162199 162562 }: 162200 162563 mkDerivation { 162201 162564 pname = "keter"; 162202 - version = "1.8.1"; 162203 - sha256 = "0lnjvbfiz5w37ylvqmlgxqnd5p0akq4nl59gagdbc2w06gj0an4d"; 162565 + version = "1.8.4"; 162566 + sha256 = "10p8hc1jfzkg3s8shazkip95i6r5a8gyiz6m1khl7myvb05i21gc"; 162204 162567 isLibrary = true; 162205 162568 isExecutable = true; 162206 162569 libraryHaskellDepends = [ ··· 166787 167150 license = lib.licenses.mit; 166788 167151 }) {}; 166789 167152 167153 + "lazy-bracket" = callPackage 167154 + ({ mkDerivation, base, doctest, exceptions, tasty, tasty-hunit }: 167155 + mkDerivation { 167156 + pname = "lazy-bracket"; 167157 + version = "0.1.0.0"; 167158 + sha256 = "1qaawj54hp68jy0qf4cbv37n67s7pbayyn5f59lj138fl15cj300"; 167159 + libraryHaskellDepends = [ base exceptions ]; 167160 + testHaskellDepends = [ base doctest exceptions tasty tasty-hunit ]; 167161 + description = "A bracket with lazy resource allocation"; 167162 + license = lib.licenses.bsd3; 167163 + hydraPlatforms = lib.platforms.none; 167164 + broken = true; 167165 + }) {}; 167166 + 166790 167167 "lazy-csv" = callPackage 166791 167168 ({ mkDerivation, base, bytestring }: 166792 167169 mkDerivation { ··· 169620 169997 libraryToolDepends = [ c2hs ]; 169621 169998 description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; 169622 169999 license = lib.licenses.bsd3; 170000 + platforms = [ 170001 + "aarch64-darwin" "aarch64-linux" "armv7l-linux" "i686-linux" 170002 + "x86_64-linux" 170003 + ]; 169623 170004 }) {inherit (pkgs) libvirt;}; 169624 170005 169625 170006 "libvorbis" = callPackage ··· 170733 171114 }: 170734 171115 mkDerivation { 170735 171116 pname = "linearmap-category"; 170736 - version = "0.4.1.0"; 170737 - sha256 = "01cpl44wg5kyx9lxv23hcsxd8dw90psqj9sgaklhxklbdvn77bvr"; 171117 + version = "0.4.2.0"; 171118 + sha256 = "0iblymralldn1xljdl6qyvxcsxg6rmgj42qx254vaajijp51ycmp"; 170738 171119 libraryHaskellDepends = [ 170739 171120 base call-stack constrained-categories containers 170740 171121 data-default-class free-vector-spaces hashable ieee754 lens linear ··· 175163 175544 license = lib.licenses.bsd3; 175164 175545 }) {}; 175165 175546 175547 + "lucid-aria" = callPackage 175548 + ({ mkDerivation, base, hspec, HUnit, lucid, text }: 175549 + mkDerivation { 175550 + pname = "lucid-aria"; 175551 + version = "0.1.0.1"; 175552 + sha256 = "125ha3v367nx0vfynv834gr8iyqklll0syk6g7p4w8p1fq746c7z"; 175553 + libraryHaskellDepends = [ base lucid text ]; 175554 + testHaskellDepends = [ base hspec HUnit lucid ]; 175555 + description = "Provides ARIA attributes for Lucid templates"; 175556 + license = lib.licenses.asl20; 175557 + }) {}; 175558 + 175166 175559 "lucid-cdn" = callPackage 175167 175560 ({ mkDerivation, base, lucid }: 175168 175561 mkDerivation { ··· 175222 175615 ({ mkDerivation, base, lucid, servant, text }: 175223 175616 mkDerivation { 175224 175617 pname = "lucid-htmx"; 175225 - version = "0.1.0.5"; 175226 - sha256 = "1zbk1fdril0cm4cs5scrvk1fvfkds8pgkwnb5c9vxawv5v3kgpl5"; 175618 + version = "0.1.0.6"; 175619 + sha256 = "0jd0igz4hymx5fnjsgx2y97440djfz416phnczz52g2vw7amgqjw"; 175227 175620 libraryHaskellDepends = [ base lucid servant text ]; 175228 175621 testHaskellDepends = [ base lucid servant text ]; 175229 175622 description = "Use htmx in your lucid templates"; ··· 175862 176255 }) {}; 175863 176256 175864 176257 "lzo" = callPackage 175865 - ({ mkDerivation, base, binary, bytestring, criterion, digest, tasty 175866 - , tasty-hunit 176258 + ({ mkDerivation, base, binary, bytestring, criterion, digest 176259 + , digest-sig, tasty, tasty-hunit 175867 176260 }: 175868 176261 mkDerivation { 175869 176262 pname = "lzo"; 175870 - version = "0.1.1.3"; 175871 - sha256 = "13l9fzvwyq1z3pv2p33w8ylb8wriwf5q2lif68f8n16fzh07ki7p"; 175872 - libraryHaskellDepends = [ base binary bytestring digest ]; 176263 + version = "0.1.1.4"; 176264 + sha256 = "1n6b2y2bmq3kl6h5mjl301r31rmvrcsc3l66jmnj3ilrj4506m1y"; 176265 + libraryHaskellDepends = [ 176266 + base binary bytestring digest digest-sig 176267 + ]; 175873 176268 testHaskellDepends = [ base bytestring tasty tasty-hunit ]; 175874 176269 benchmarkHaskellDepends = [ base bytestring criterion ]; 175875 176270 description = "minilzo bundled for Haskell"; ··· 177378 177773 }: 177379 177774 mkDerivation { 177380 177775 pname = "manifold-random"; 177381 - version = "0.5.1.0"; 177382 - sha256 = "0zip7ni06zljhj94d5vdf6sb6fbsm9iidcsrl85bdh7i7dkb3avr"; 177776 + version = "0.6.0.0"; 177777 + sha256 = "088kvfap0lbpnzz0vraa4pclj3savm0m4a174digd1r9x025v4kv"; 177383 177778 libraryHaskellDepends = [ 177384 177779 base constrained-categories linearmap-category manifolds random-fu 177385 177780 semigroups vector-space ··· 177391 177786 177392 177787 "manifolds" = callPackage 177393 177788 ({ mkDerivation, array, base, binary, call-stack, comonad 177394 - , constrained-categories, containers, deepseq, free 177395 - , free-vector-spaces, ieee754, lens, linear, linearmap-category 177396 - , manifolds-core, MemoTrie, number-show, placeholders 177397 - , pragmatic-show, QuickCheck, semigroups, spatial-rotations, tagged 177398 - , tasty, tasty-hunit, tasty-quickcheck, transformers, vector 177399 - , vector-space, void 177789 + , constrained-categories, containers, deepseq, equational-reasoning 177790 + , free, free-vector-spaces, half-space, ieee754, lens, linear 177791 + , linearmap-category, manifolds-core, MemoTrie, number-show 177792 + , placeholders, pragmatic-show, QuickCheck, semigroups 177793 + , spatial-rotations, tagged, tasty, tasty-hunit, tasty-quickcheck 177794 + , transformers, vector, vector-space, void 177400 177795 }: 177401 177796 mkDerivation { 177402 177797 pname = "manifolds"; 177403 - version = "0.5.1.0"; 177404 - sha256 = "12w1whsr8zbsvv06iwdd27hjnvs8s041hrsp5c85chl4xqxwkl5h"; 177798 + version = "0.6.0.0"; 177799 + sha256 = "1vp3lnp15s1qzkplxj8bss4s27gp7p9aj3rc0q99dzkr4ylbw2gz"; 177405 177800 libraryHaskellDepends = [ 177406 177801 array base binary call-stack comonad constrained-categories 177407 - containers deepseq free free-vector-spaces ieee754 lens linear 177408 - linearmap-category manifolds-core MemoTrie number-show placeholders 177409 - pragmatic-show QuickCheck semigroups spatial-rotations tagged 177410 - transformers vector vector-space void 177802 + containers deepseq equational-reasoning free free-vector-spaces 177803 + half-space ieee754 lens linear linearmap-category manifolds-core 177804 + MemoTrie number-show placeholders pragmatic-show QuickCheck 177805 + semigroups spatial-rotations tagged transformers vector 177806 + vector-space void 177411 177807 ]; 177412 177808 testHaskellDepends = [ 177413 177809 base constrained-categories containers lens linear ··· 177420 177816 }) {}; 177421 177817 177422 177818 "manifolds-core" = callPackage 177423 - ({ mkDerivation, base, call-stack, tagged, vector-space }: 177819 + ({ mkDerivation, base, call-stack, equational-reasoning, tagged 177820 + , vector-space 177821 + }: 177424 177822 mkDerivation { 177425 177823 pname = "manifolds-core"; 177426 - version = "0.5.1.0"; 177427 - sha256 = "1bvmr0gcfj7zd0rff0qjlzjy8hqdbh52ljiiazrmqmb9abdsciq3"; 177428 - libraryHaskellDepends = [ base call-stack tagged vector-space ]; 177824 + version = "0.6.0.0"; 177825 + sha256 = "000lfkvx6j3cf6dzccfncazlkqj9bjfl04x0d36k8w78d20md5kj"; 177826 + libraryHaskellDepends = [ 177827 + base call-stack equational-reasoning tagged vector-space 177828 + ]; 177429 177829 description = "The basic classes for the manifolds hierarchy"; 177430 177830 license = lib.licenses.gpl3Only; 177431 177831 }) {}; ··· 183521 183921 }: 183522 183922 mkDerivation { 183523 183923 pname = "mnist-idx"; 183524 - version = "0.1.3.0"; 183525 - sha256 = "0i65f83bs6l5gjf3wj3ad3c76ni3d22sac5qyi5hi5i93w0px32j"; 183924 + version = "0.1.3.1"; 183925 + sha256 = "12246lq1a0jc91yqyng9v2cgf4pqmfmf820jjwnc6aglx86vsmni"; 183526 183926 libraryHaskellDepends = [ base binary bytestring vector ]; 183527 183927 testHaskellDepends = [ 183528 183928 base binary directory hspec QuickCheck vector ··· 187799 188199 testToolDepends = [ hspec-discover ]; 187800 188200 description = "A Haskell implementation of MessagePack"; 187801 188201 license = lib.licenses.bsd3; 187802 - hydraPlatforms = lib.platforms.none; 187803 188202 }) {}; 187804 188203 187805 188204 "msgpack-binary" = callPackage ··· 187941 188340 testHaskellDepends = [ base hspec ]; 187942 188341 description = "A Haskell implementation of MessagePack"; 187943 188342 license = lib.licenses.bsd3; 187944 - hydraPlatforms = lib.platforms.none; 187945 188343 }) {}; 187946 188344 187947 188345 "msgpack-types" = callPackage ··· 187966 188364 testToolDepends = [ hspec-discover ]; 187967 188365 description = "A Haskell implementation of MessagePack"; 187968 188366 license = lib.licenses.bsd3; 187969 - hydraPlatforms = lib.platforms.none; 187970 - broken = true; 187971 188367 }) {}; 187972 188368 187973 188369 "msh" = callPackage ··· 197286 197682 }) {}; 197287 197683 197288 197684 "nvfetcher" = callPackage 197289 - ({ mkDerivation, aeson, async, base, binary, binary-instances 197290 - , bytestring, containers, data-default, extra, free, hspec 197291 - , hspec-discover, microlens, microlens-th, neat-interpolation 197292 - , optparse-simple, parsec, shake, stm, text, tomland, transformers 197293 - , unliftio, unordered-containers, validation-selective 197685 + ({ mkDerivation, aeson, aeson-pretty, async, base, binary 197686 + , binary-instances, bytestring, containers, data-default, extra 197687 + , free, hspec, hspec-discover, microlens, microlens-th 197688 + , neat-interpolation, optparse-simple, parsec, prettyprinter 197689 + , regex-tdfa, shake, stm, text, tomland, transformers, unliftio 197690 + , unordered-containers, validation-selective 197294 197691 }: 197295 197692 mkDerivation { 197296 197693 pname = "nvfetcher"; 197297 - version = "0.4.0.0"; 197298 - sha256 = "1mj2vmll0zpzx1f0j445h800lxvma30f9ainbnm54x3d4n6yvw7n"; 197694 + version = "0.5.0.0"; 197695 + sha256 = "0kglvniiqa3plxn973sl7dww75lxar5sf8ipjmgjryv9b0wxbv30"; 197299 197696 isLibrary = true; 197300 197697 isExecutable = true; 197301 197698 libraryHaskellDepends = [ 197302 - aeson base binary binary-instances bytestring containers 197303 - data-default extra free microlens microlens-th neat-interpolation 197304 - optparse-simple parsec shake text tomland transformers 197305 - unordered-containers 197699 + aeson aeson-pretty base binary binary-instances bytestring 197700 + containers data-default extra free microlens microlens-th 197701 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197702 + shake text tomland transformers unordered-containers 197306 197703 ]; 197307 197704 executableHaskellDepends = [ 197308 - aeson base binary binary-instances bytestring containers 197309 - data-default extra free microlens microlens-th neat-interpolation 197310 - optparse-simple parsec shake text tomland transformers 197311 - unordered-containers validation-selective 197705 + aeson aeson-pretty base binary binary-instances bytestring 197706 + containers data-default extra free microlens microlens-th 197707 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197708 + shake text tomland transformers unordered-containers 197709 + validation-selective 197312 197710 ]; 197313 197711 testHaskellDepends = [ 197314 - aeson async base binary binary-instances bytestring containers 197315 - data-default extra free hspec microlens microlens-th 197316 - neat-interpolation optparse-simple parsec shake stm text tomland 197317 - transformers unliftio unordered-containers 197712 + aeson aeson-pretty async base binary binary-instances bytestring 197713 + containers data-default extra free hspec microlens microlens-th 197714 + neat-interpolation optparse-simple parsec prettyprinter regex-tdfa 197715 + shake stm text tomland transformers unliftio unordered-containers 197318 197716 ]; 197319 197717 testToolDepends = [ hspec-discover ]; 197320 197718 description = "Generate nix sources expr for the latest version of packages"; ··· 199887 200285 testToolDepends = [ tasty-discover ]; 199888 200286 benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; 199889 200287 license = lib.licenses.asl20; 199890 - hydraPlatforms = lib.platforms.none; 199891 - broken = true; 199892 200288 }) {}; 199893 200289 199894 200290 "opentelemetry-extra_0_8_0" = callPackage ··· 199926 200322 benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; 199927 200323 license = lib.licenses.asl20; 199928 200324 hydraPlatforms = lib.platforms.none; 199929 - broken = true; 199930 200325 }) {}; 199931 200326 199932 200327 "opentelemetry-http-client" = callPackage ··· 199968 200363 splitmix text typed-process unordered-containers 199969 200364 ]; 199970 200365 license = lib.licenses.asl20; 199971 - hydraPlatforms = lib.platforms.none; 199972 200366 }) {}; 199973 200367 199974 200368 "opentelemetry-lightstep_0_8_0" = callPackage ··· 201009 201403 }: 201010 201404 mkDerivation { 201011 201405 pname = "optstream"; 201012 - version = "0.1.0.0"; 201013 - sha256 = "0514i983r1hsck6rqhk1ggs4f5zpghx6l5d140r3k7v0nrrya6y5"; 201406 + version = "0.1.1.0"; 201407 + sha256 = "1d9zpvfp31808zy574x7r00mckg6bm1bfn9zjrcfh3314wrhmm6x"; 201014 201408 libraryHaskellDepends = [ base ]; 201015 201409 testHaskellDepends = [ 201016 201410 base QuickCheck test-framework test-framework-quickcheck2 ··· 201230 201624 license = lib.licenses.bsd3; 201231 201625 }) {}; 201232 201626 201627 + "ordering-util" = callPackage 201628 + ({ mkDerivation, base }: 201629 + mkDerivation { 201630 + pname = "ordering-util"; 201631 + version = "0.1.3.1"; 201632 + sha256 = "1f9dkrap8v9fpkj0s2991gqzi6hwascmx2g3n44njg4nn8r2an69"; 201633 + libraryHaskellDepends = [ base ]; 201634 + description = "Utilities for Orderings"; 201635 + license = lib.licenses.mit; 201636 + }) {}; 201637 + 201233 201638 "orderly-workers" = callPackage 201234 201639 ({ mkDerivation, base, stm }: 201235 201640 mkDerivation { ··· 203503 203908 ({ mkDerivation }: 203504 203909 mkDerivation { 203505 203910 pname = "pandora"; 203506 - version = "0.5.3"; 203507 - sha256 = "097vpsml5hma4acyrz26hmfddyz1j9kcbqw5z7lkhak1jmpdv2ac"; 203911 + version = "0.5.4"; 203912 + sha256 = "0mhhjny7djyg8m49klk5kxf4w4nb3hfj3if0qqamyzy3qlpfzpva"; 203508 203913 description = "A box of patterns and paradigms"; 203509 203914 license = lib.licenses.mit; 203510 203915 hydraPlatforms = lib.platforms.none; ··· 203515 203920 ({ mkDerivation, ghc-prim, pandora }: 203516 203921 mkDerivation { 203517 203922 pname = "pandora-io"; 203518 - version = "0.5.3"; 203519 - sha256 = "0m0cskpylr26sz6gs133j2p6yr6r22hksk7p4aimszbg88vayany"; 203923 + version = "0.5.4"; 203924 + sha256 = "0jymxxrcq9sj1xysqrrxcxfrygg5fjqq44zphxg0clh16kzzq8y7"; 203520 203925 libraryHaskellDepends = [ ghc-prim pandora ]; 203521 203926 description = "..."; 203522 203927 license = lib.licenses.mit; ··· 203727 204132 }: 203728 204133 mkDerivation { 203729 204134 pname = "pantry"; 203730 - version = "0.5.4"; 203731 - sha256 = "080j0pw8fmyb05klbi8vy3dpahiw3zxmykvqamvziwrznl1p4b2m"; 203732 - revision = "1"; 203733 - editedCabalFile = "0y1faym7qqcjn2f23sqhxaq83ih3h6nr7ql665k1pw93hi3jdv05"; 204135 + version = "0.5.5"; 204136 + sha256 = "0hdpngpq2i8kvw6lmpv99y7q1z6b1rwlcajngwjx46x55faw2gv4"; 203734 204137 libraryHaskellDepends = [ 203735 204138 aeson ansi-terminal base bytestring Cabal casa-client casa-types 203736 204139 conduit conduit-extra containers cryptonite cryptonite-conduit ··· 207907 208310 }: 207908 208311 mkDerivation { 207909 208312 pname = "persistent"; 207910 - version = "2.13.3.4"; 207911 - sha256 = "1hl11iicgvvd8wxs6zgm2lbv593rqywjiay3f45pfzwr7kmd7r3z"; 208313 + version = "2.13.3.5"; 208314 + sha256 = "0z69yvk0rd29dp5qdhi4p587b891y90azrzzpa3g10cxp3gyywvm"; 208315 + libraryHaskellDepends = [ 208316 + aeson attoparsec base base64-bytestring blaze-html bytestring 208317 + conduit containers fast-logger http-api-data lift-type monad-logger 208318 + mtl path-pieces resource-pool resourcet scientific silently 208319 + template-haskell text th-lift-instances time transformers unliftio 208320 + unliftio-core unordered-containers vault vector 208321 + ]; 208322 + testHaskellDepends = [ 208323 + aeson attoparsec base base64-bytestring blaze-html bytestring 208324 + conduit containers fast-logger hspec http-api-data monad-logger mtl 208325 + path-pieces QuickCheck quickcheck-instances resource-pool resourcet 208326 + scientific shakespeare silently template-haskell text 208327 + th-lift-instances time transformers unliftio unliftio-core 208328 + unordered-containers vector 208329 + ]; 208330 + benchmarkHaskellDepends = [ 208331 + base criterion deepseq file-embed template-haskell text 208332 + ]; 208333 + description = "Type-safe, multi-backend data serialization"; 208334 + license = lib.licenses.mit; 208335 + maintainers = with lib.maintainers; [ psibi ]; 208336 + }) {}; 208337 + 208338 + "persistent_2_14_0_0" = callPackage 208339 + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 208340 + , blaze-html, bytestring, conduit, containers, criterion, deepseq 208341 + , fast-logger, file-embed, hspec, http-api-data, lift-type 208342 + , monad-logger, mtl, path-pieces, QuickCheck, quickcheck-instances 208343 + , resource-pool, resourcet, scientific, shakespeare, silently 208344 + , template-haskell, text, th-lift-instances, time, transformers 208345 + , unliftio, unliftio-core, unordered-containers, vault, vector 208346 + }: 208347 + mkDerivation { 208348 + pname = "persistent"; 208349 + version = "2.14.0.0"; 208350 + sha256 = "16b3920zdp3cjvwkmp8yqm1p1gwzl4m4afr4kp567na5iczfih71"; 207912 208351 libraryHaskellDepends = [ 207913 208352 aeson attoparsec base base64-bytestring blaze-html bytestring 207914 208353 conduit containers fast-logger http-api-data lift-type monad-logger ··· 207929 208368 ]; 207930 208369 description = "Type-safe, multi-backend data serialization"; 207931 208370 license = lib.licenses.mit; 208371 + hydraPlatforms = lib.platforms.none; 207932 208372 maintainers = with lib.maintainers; [ psibi ]; 207933 208373 }) {}; 207934 208374 ··· 208423 208863 license = lib.licenses.mit; 208424 208864 }) {}; 208425 208865 208866 + "persistent-qq_2_12_0_3" = callPackage 208867 + ({ mkDerivation, aeson, base, bytestring, fast-logger 208868 + , haskell-src-meta, hspec, HUnit, monad-logger, mtl, persistent 208869 + , persistent-sqlite, resourcet, template-haskell, text, unliftio 208870 + }: 208871 + mkDerivation { 208872 + pname = "persistent-qq"; 208873 + version = "2.12.0.3"; 208874 + sha256 = "0iv9x73g846grhb4vdh1xhpbwmk6hg5jh1xl2i7yh986pnqbl23g"; 208875 + libraryHaskellDepends = [ 208876 + base haskell-src-meta mtl persistent template-haskell text 208877 + ]; 208878 + testHaskellDepends = [ 208879 + aeson base bytestring fast-logger haskell-src-meta hspec HUnit 208880 + monad-logger mtl persistent persistent-sqlite resourcet 208881 + template-haskell text unliftio 208882 + ]; 208883 + description = "Provides a quasi-quoter for raw SQL for persistent"; 208884 + license = lib.licenses.mit; 208885 + hydraPlatforms = lib.platforms.none; 208886 + }) {}; 208887 + 208426 208888 "persistent-ratelimit" = callPackage 208427 208889 ({ mkDerivation, base, time, yesod }: 208428 208890 mkDerivation { ··· 208605 209067 license = lib.licenses.mit; 208606 209068 }) {}; 208607 209069 209070 + "persistent-test_2_13_1_3" = callPackage 209071 + ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit 209072 + , containers, exceptions, hspec, hspec-expectations, http-api-data 209073 + , HUnit, monad-control, monad-logger, mtl, path-pieces, persistent 209074 + , QuickCheck, quickcheck-instances, random, resourcet, text, time 209075 + , transformers, transformers-base, unliftio, unliftio-core 209076 + , unordered-containers 209077 + }: 209078 + mkDerivation { 209079 + pname = "persistent-test"; 209080 + version = "2.13.1.3"; 209081 + sha256 = "0qqv00nlqpnfx4h3kkd8k0y41a8dfmgj0rc0smdf6p4kl2g1hrdl"; 209082 + libraryHaskellDepends = [ 209083 + aeson base blaze-html bytestring conduit containers exceptions 209084 + hspec hspec-expectations http-api-data HUnit monad-control 209085 + monad-logger mtl path-pieces persistent QuickCheck 209086 + quickcheck-instances random resourcet text time transformers 209087 + transformers-base unliftio unliftio-core unordered-containers 209088 + ]; 209089 + description = "Tests for Persistent"; 209090 + license = lib.licenses.mit; 209091 + hydraPlatforms = lib.platforms.none; 209092 + }) {}; 209093 + 208608 209094 "persistent-typed-db" = callPackage 208609 209095 ({ mkDerivation, aeson, base, bytestring, conduit, esqueleto, hspec 208610 209096 , hspec-discover, http-api-data, monad-logger, path-pieces ··· 212598 213084 }: 212599 213085 mkDerivation { 212600 213086 pname = "ploterific"; 212601 - version = "0.2.1.3"; 212602 - sha256 = "0ggi653hjg9s3v9zqsapm3ryb37hfdbw21pznhsvzhyy3n0fv7jv"; 213087 + version = "0.2.1.4"; 213088 + sha256 = "1kss92ihn9gaif7c70az2pxbgrz2ab9g3257wspz6ivkds04lpip"; 212603 213089 isLibrary = true; 212604 213090 isExecutable = true; 212605 213091 libraryHaskellDepends = [ ··· 214007 214493 }: 214008 214494 mkDerivation { 214009 214495 pname = "polysemy-mocks"; 214010 - version = "0.2.0.0"; 214011 - sha256 = "1l17n7hxzb23y0vp9h8cxvfgdkwzbz8g0q37qppl4cqjkhcdq0ya"; 214496 + version = "0.3.0.0"; 214497 + sha256 = "03yq5pyrg2rhykyhvp3f8b816r9j035xr5d9d1cls73zh9pbbh7z"; 214012 214498 libraryHaskellDepends = [ base polysemy template-haskell ]; 214013 214499 testHaskellDepends = [ base hspec polysemy ]; 214014 214500 testToolDepends = [ hspec-discover ]; ··· 215109 215595 ({ mkDerivation, base, deepseq, tasty, tasty-hunit }: 215110 215596 mkDerivation { 215111 215597 pname = "pos"; 215112 - version = "0.2.0.0"; 215113 - sha256 = "0c8zbfkbin97b9bavv56m1ym00q7bz9fv4aac45vlg4ns9b9yshv"; 215598 + version = "0.3.0.0"; 215599 + sha256 = "1cdy9025cqypx3lxa3gsjkidz0g3cbx2cxn0pzyr2ccrm3wf7mfp"; 215114 215600 libraryHaskellDepends = [ base deepseq ]; 215115 215601 testHaskellDepends = [ base deepseq tasty tasty-hunit ]; 215116 215602 description = "positive numbers"; ··· 218281 218767 ({ mkDerivation, base, primitive }: 218282 218768 mkDerivation { 218283 218769 pname = "primitive-checked"; 218284 - , regex-posix, tagsoup, template-haskell, transformers 218285 - sha256 = "1swb10hd18w2xnxiwnscsv4fxmvrql3aw7fll5qlqi2hczbkd4lf"; 218770 + version = "0.7.3.0"; 218771 + sha256 = "1f4q6v70i8xllnphr894vcx35n0m9hplhlzgdyhrk76cv4fcwpl1"; 218286 218772 libraryHaskellDepends = [ base primitive ]; 218287 218773 description = "primitive functions with bounds-checking"; 218288 218774 license = lib.licenses.bsd3; ··· 218550 219036 }: 218551 219037 mkDerivation { 218552 219038 pname = "primus"; 218553 - version = "0.2.0.0"; 218554 - sha256 = "170lizshqraf2gqawfnahns019lsazmqvqs61yznzfj71xwr763c"; 219039 + version = "0.3.0.0"; 219040 + sha256 = "0g9b16cq9z6hbzdh49s952ihhfsv2z9cjfy1jh5nygg3zpvc8bdw"; 218555 219041 libraryHaskellDepends = [ 218556 219042 adjunctions base deepseq distributive pos profunctors semigroupoids 218557 219043 these ··· 220383 220869 }: 220384 220870 mkDerivation { 220385 220871 pname = "proto-lens-jsonpb"; 220386 - version = "0.2.0.2"; 220387 - sha256 = "1r98841byxkg5941yjrw15n56i0x68qr3gk29bimwcfifdf0idm2"; 220872 + version = "0.2.1"; 220873 + sha256 = "0ax5zkg9qa7mh4x38nchahr1n1x2wyaasplknig4hgza7xkcmmas"; 220388 220874 libraryHaskellDepends = [ 220389 220875 aeson attoparsec base base64-bytestring bytestring 220390 220876 proto-lens-runtime text vector ··· 224597 225083 }: 224598 225084 mkDerivation { 224599 225085 pname = "quote-quot"; 224600 - version = "0.2.0.0"; 224601 - sha256 = "0sj862037gdljwiv5s4yh0vjfppzf226z7sxb5f7y1k23rijsx0w"; 225086 + version = "0.2.1.0"; 225087 + sha256 = "1xsd5vs97dwp3wnz862mplakkryi44brr73aqrrv76svkj82bp37"; 224602 225088 libraryHaskellDepends = [ base template-haskell ]; 224603 225089 testHaskellDepends = [ 224604 225090 base tasty tasty-quickcheck template-haskell ··· 224609 225095 }) {}; 224610 225096 224611 225097 "quotet" = callPackage 224612 - ({ mkDerivation, base, exceptions, mtl, template-haskell, th-compat 224613 - }: 225098 + ({ mkDerivation, base, mtl, template-haskell, th-compat }: 224614 225099 mkDerivation { 224615 225100 pname = "quotet"; 224616 - version = "0.0.0.1"; 224617 - sha256 = "030d1r5skmv0gayryy89yfxr5cq4qs01anbhaclil92g07ffblhz"; 224618 - libraryHaskellDepends = [ 224619 - base exceptions mtl template-haskell th-compat 224620 - ]; 225101 + version = "0.0.1.0"; 225102 + sha256 = "1ajxvhh2zl99ddvmvicsjq775l0k3d8lh433v1z6z6i7zra5hg4g"; 225103 + libraryHaskellDepends = [ base mtl template-haskell th-compat ]; 224621 225104 description = "Monad transformer for Quote from template-haskell"; 224622 225105 license = lib.licenses.cc0; 224623 225106 }) {}; ··· 225786 226269 pname = "rapid"; 225787 226270 version = "0.1.4"; 225788 226271 sha256 = "0f86j4r3sm74w49v9x9s58wahgcgick6z7awl6piq83iqaiy4sh7"; 225789 - revision = "1"; 225790 - editedCabalFile = "1np33ba4d7crwsknw91igrrmkvzwsfmfijirsa7dxmap5npvn3ap"; 226272 + revision = "2"; 226273 + editedCabalFile = "1v31sadig136f7jv9cj7ddj2fn1ymhiahg4hg5n8l3czsjck7qmp"; 225791 226274 libraryHaskellDepends = [ 225792 226275 async base containers foreign-store stm 225793 226276 ]; ··· 228823 229306 }: 228824 229307 mkDerivation { 228825 229308 pname = "reflex-dom-ionic"; 228826 - version = "0.1.0.1"; 228827 - sha256 = "0ka81047gk3hnpj9rcvyq8wnw6kxiwr2hxf8fwy3lclbgpk1sard"; 229309 + version = "0.2.0.0"; 229310 + sha256 = "0pc2kzfk3msd5yfvsvw3q27c32nfzazifipa1d7m4vlpbn5iwrq2"; 228828 229311 libraryHaskellDepends = [ 228829 229312 base containers ghcjs-dom lens ref-tf reflex reflex-dom-core text 228830 229313 ]; ··· 228907 229390 "reflex-dom-th" = callPackage 228908 229391 ({ mkDerivation, array, base, bytestring, containers, filepath 228909 229392 , hspec, megaparsec, reflex-dom-core, stm, tasty, tasty-golden 228910 - , tasty-hspec, template-haskell, text 229393 + , tasty-hspec, template-haskell, text, th-lift-instances 228911 229394 }: 228912 229395 mkDerivation { 228913 229396 pname = "reflex-dom-th"; 228914 - version = "0.3.0.0"; 228915 - sha256 = "19s8jhqrzdd5i4fsjp9870fh3hjy55naasf63d0gp0j6kcnb7ghd"; 229397 + version = "0.3.0.1"; 229398 + sha256 = "1dpzsgix1ldv7n8z8k4pbs3awjzyhyizrd047kx005kz2b1q1ban"; 228916 229399 libraryHaskellDepends = [ 228917 229400 array base containers megaparsec reflex-dom-core template-haskell 228918 - text 229401 + text th-lift-instances 228919 229402 ]; 228920 229403 testHaskellDepends = [ 228921 229404 base bytestring filepath hspec megaparsec stm tasty tasty-golden ··· 229337 229820 libraryHaskellDepends = [ base containers mtl semigroups text ]; 229338 229821 description = "reform is a type-safe HTML form generation and validation library"; 229339 229822 license = lib.licenses.bsd3; 229823 + }) {}; 229824 + 229825 + "reform_0_2_7_5" = callPackage 229826 + ({ mkDerivation, base, containers, mtl, semigroups, text }: 229827 + mkDerivation { 229828 + pname = "reform"; 229829 + version = "0.2.7.5"; 229830 + sha256 = "14p98i2682dm1n4drdrvilz67wfp2lr7m8f0wlmk40q3qmhc05xb"; 229831 + libraryHaskellDepends = [ base containers mtl semigroups text ]; 229832 + description = "reform is a type-safe HTML form generation and validation library"; 229833 + license = lib.licenses.bsd3; 229834 + hydraPlatforms = lib.platforms.none; 229340 229835 }) {}; 229341 229836 229342 229837 "reform-blaze" = callPackage ··· 230400 230895 hydraPlatforms = lib.platforms.none; 230401 230896 }) {}; 230402 230897 230898 + "registry-messagepack" = callPackage 230899 + ({ mkDerivation, base, containers, msgpack, protolude, registry 230900 + , registry-hedgehog, tasty, template-haskell, text, time 230901 + , transformers, vector 230902 + }: 230903 + mkDerivation { 230904 + pname = "registry-messagepack"; 230905 + version = "0.1.0.2"; 230906 + sha256 = "0pwljb8zdq5m47zjfbmy8827g99y2fai6ib9z2p82kkknag1mg5q"; 230907 + libraryHaskellDepends = [ 230908 + base containers msgpack protolude registry template-haskell text 230909 + transformers vector 230910 + ]; 230911 + testHaskellDepends = [ 230912 + base containers msgpack protolude registry registry-hedgehog tasty 230913 + template-haskell text time transformers vector 230914 + ]; 230915 + description = "MessagePack encoders / decoders"; 230916 + license = lib.licenses.mit; 230917 + hydraPlatforms = lib.platforms.none; 230918 + }) {}; 230919 + 230403 230920 "regress" = callPackage 230404 230921 ({ mkDerivation, ad, base, vector }: 230405 230922 mkDerivation { ··· 231612 232129 }: 231613 232130 mkDerivation { 231614 232131 pname = "replace-megaparsec"; 231615 - version = "1.4.4.0"; 231616 - sha256 = "1nlbs01ghm6gllkc7chv06hdrwlb94cipcwcx84wzasdqdzvcdl1"; 232132 + version = "1.4.5.0"; 232133 + sha256 = "1n9ik81hd5xgcbzzjrdqxp34q4qg6nklbg36124amdr14id03ylg"; 231617 232134 libraryHaskellDepends = [ 231618 232135 base bytestring megaparsec parser-combinators text 231619 232136 ]; ··· 233162 233679 }: 233163 233680 mkDerivation { 233164 233681 pname = "rex"; 233165 - version = "0.6.1"; 233166 - sha256 = "1zdsdwagrcjlfy2qfvn1gr8z9xz41s2vwf2y4dwrlvh11xswxvhb"; 233682 + version = "0.6.2"; 233683 + sha256 = "17lbpknqzly7h2gz3x4n4ykjirhqym7bk9wrvjhh23din6brg8p3"; 233167 233684 enableSeparateDataOutput = true; 233168 233685 libraryHaskellDepends = [ 233169 233686 base bytestring containers haskell-src-exts haskell-src-meta ··· 234570 235087 ]; 234571 235088 description = "Implementation of the ROC National ID standard"; 234572 235089 license = lib.licenses.bsd3; 234573 - hydraPlatforms = lib.platforms.none; 234574 - broken = true; 234575 235090 }) {}; 234576 235091 234577 235092 "rock" = callPackage ··· 235872 236387 pname = "rss"; 235873 236388 version = "3000.2.0.7"; 235874 236389 sha256 = "0z48xb610k1h29rg03q19y08fp78agxp2gr48innw5y3rz00s6ym"; 235875 - revision = "4"; 235876 - editedCabalFile = "10gn0rqbg3ffsz9c87d0baq27vzvcq7gbqdijhp7s2wl5w70yff2"; 236390 + revision = "5"; 236391 + editedCabalFile = "197a9q8zmfx8imbnrwp7b62xahh2qs47mk67hzhrrz0f5v88qszm"; 235877 236392 libraryHaskellDepends = [ base HaXml network network-uri time ]; 235878 236393 description = "A library for generating RSS 2.0 feeds."; 235879 236394 license = lib.licenses.publicDomain; ··· 238136 238651 }: 238137 238652 mkDerivation { 238138 238653 pname = "sbp"; 238139 - version = "4.1.5"; 238140 - sha256 = "1f3i50i4mfxi8y5akg3kncgkwx2wflcgsv7rzxccd75bv3ynk45z"; 238654 + version = "4.1.6"; 238655 + sha256 = "0ph1bn95bxpmfs2xvbgj7kpz3ji6jf65ykah5srmhqgbw21d1wl7"; 238141 238656 isLibrary = true; 238142 238657 isExecutable = true; 238143 238658 libraryHaskellDepends = [ ··· 240610 241125 license = lib.licenses.mit; 240611 241126 }) {inherit (pkgs) secp256k1;}; 240612 241127 241128 + "secp256k1-haskell_0_6_1" = callPackage 241129 + ({ mkDerivation, base, base16, bytestring, cereal, deepseq, entropy 241130 + , hashable, hspec, hspec-discover, HUnit, monad-par, mtl 241131 + , QuickCheck, secp256k1, string-conversions, unliftio-core 241132 + }: 241133 + mkDerivation { 241134 + pname = "secp256k1-haskell"; 241135 + version = "0.6.1"; 241136 + sha256 = "0abxwmls4rvsnck7p5gpajmha2vc9fbcrr2q1alkpw8acmgfhr76"; 241137 + libraryHaskellDepends = [ 241138 + base base16 bytestring cereal deepseq entropy hashable QuickCheck 241139 + string-conversions unliftio-core 241140 + ]; 241141 + libraryPkgconfigDepends = [ secp256k1 ]; 241142 + testHaskellDepends = [ 241143 + base base16 bytestring cereal deepseq entropy hashable hspec HUnit 241144 + monad-par mtl QuickCheck string-conversions unliftio-core 241145 + ]; 241146 + testToolDepends = [ hspec-discover ]; 241147 + description = "Bindings for secp256k1"; 241148 + license = lib.licenses.mit; 241149 + hydraPlatforms = lib.platforms.none; 241150 + }) {inherit (pkgs) secp256k1;}; 241151 + 240613 241152 "secp256k1-legacy" = callPackage 240614 241153 ({ mkDerivation, base, base16-bytestring, bytestring, Cabal, cereal 240615 241154 , cryptohash, entropy, HUnit, mtl, QuickCheck, string-conversions ··· 241438 241977 }: 241439 241978 mkDerivation { 241440 241979 pname = "sensei"; 241441 - version = "0.6.1"; 241442 - sha256 = "1x5wvxfa08mmfwsyfm5h50lag5knyf19lycvjp3zb6ih70j2l390"; 241980 + version = "0.6.2"; 241981 + sha256 = "168znkrlciywsqpgbssnz2n2w1w6240j1cxk83bpzlflg7q934ps"; 241443 241982 isLibrary = false; 241444 241983 isExecutable = true; 241445 241984 executableHaskellDepends = [ ··· 241454 241993 testToolDepends = [ hspec-discover ]; 241455 241994 description = "Automatically run Hspec tests on file modifications"; 241456 241995 license = lib.licenses.mit; 241457 - hydraPlatforms = lib.platforms.none; 241458 - broken = true; 241996 + platforms = [ 241997 + "aarch64-darwin" "aarch64-linux" "armv7l-linux" "i686-linux" 241998 + "x86_64-linux" 241999 + ]; 242000 + maintainers = with lib.maintainers; [ libjared ]; 241459 242001 }) {}; 241460 242002 241461 242003 "sensenet" = callPackage ··· 251774 252316 pname = "snap-core"; 251775 252317 version = "1.0.5.0"; 251776 252318 sha256 = "0hf671g7h4nikfvi05q3mmcxhfcsh874dkansssn0mc68k9fsak4"; 252319 + revision = "1"; 252320 + editedCabalFile = "17ls02j8lxk0ml3pikxqkpmivzi49n2x5xh14gnrk2j1f8g06zk5"; 251777 252321 libraryHaskellDepends = [ 251778 252322 attoparsec base bytestring bytestring-builder case-insensitive 251779 252323 containers directory filepath hashable HUnit io-streams lifted-base ··· 252533 253077 "snaplet-persistent" = callPackage 252534 253078 ({ mkDerivation, base, bytestring, clientsession, configurator 252535 253079 , errors, heist, lens, map-syntax, monad-logger, mtl, persistent 252536 - , persistent-postgresql, persistent-template, readable 252537 - , resource-pool, resourcet, safe, snap, text, time, transformers 252538 - , unordered-containers 253080 + , persistent-postgresql, readable, resource-pool, resourcet, safe 253081 + , snap, text, time, transformers, unordered-containers 252539 253082 }: 252540 253083 mkDerivation { 252541 253084 pname = "snaplet-persistent"; 252542 - version = "0.6.1"; 252543 - sha256 = "1s1ay1kzmjg3gh14ggnb24hpr2gjyk0ip0jbn55ly5zgfqdb422v"; 253085 + version = "0.7.1"; 253086 + sha256 = "1vp114ddq5fjl3bwwnwry39flfb3d4b7zws9m3yh315qk85ji3s6"; 252544 253087 enableSeparateDataOutput = true; 252545 253088 libraryHaskellDepends = [ 252546 253089 base bytestring clientsession configurator errors heist lens 252547 253090 map-syntax monad-logger mtl persistent persistent-postgresql 252548 - persistent-template readable resource-pool resourcet safe snap text 252549 - time transformers unordered-containers 253091 + readable resource-pool resourcet safe snap text time transformers 253092 + unordered-containers 252550 253093 ]; 252551 253094 description = "persistent snaplet for the Snap Framework"; 252552 253095 license = lib.licenses.bsd3; ··· 254670 255213 }: 254671 255214 mkDerivation { 254672 255215 pname = "spatial-rotations"; 254673 - version = "0.1.0.1"; 254674 - sha256 = "02nysw4dbg5l37j83kdybxkrdzgjxn20h3lknnphwz0hr0n489ii"; 254675 - revision = "3"; 254676 - editedCabalFile = "03kjhr51w600cnm1jgdc9nbm9ay66fxq93z7r6xgph1a4dmcjvg4"; 255216 + version = "0.1.0.2"; 255217 + sha256 = "01jac0m6hjx89sp6wqs8f103gjd6wlmj7vxl3a6sy6xchk81irl9"; 254677 255218 libraryHaskellDepends = [ 254678 255219 base linear manifolds-core vector-space 254679 255220 ]; ··· 258379 258920 pname = "steeloverseer"; 258380 258921 version = "2.1.0.0"; 258381 258922 sha256 = "1l2pfk6fdnc2ssmcjmwj8w5wfk6ra4n880nbxr670kzrlnr2vqg1"; 258923 + revision = "1"; 258924 + editedCabalFile = "0vb2k7c02gmnn03zq84pb9ycsl8nkahkddwzn3nh0jsgb2jc9pln"; 258382 258925 isLibrary = true; 258383 258926 isExecutable = true; 258384 258927 libraryHaskellDepends = [ ··· 263454 263997 }: 263455 263998 mkDerivation { 263456 263999 pname = "syb-with-class"; 263457 - version = "0.6.1.13"; 263458 - sha256 = "1w767im0a2qdi6br6lx4kh946yryibjwjx4a64cijxfrj7gbfxk5"; 264000 + version = "0.6.1.14"; 264001 + sha256 = "1dm64pn06sc05sbkmgrnj5b6p33xaz65ghx8233h5jqq7phyjrlc"; 263459 264002 libraryHaskellDepends = [ 263460 264003 array base bytestring containers template-haskell 263461 264004 ]; ··· 263488 264031 }: 263489 264032 mkDerivation { 263490 264033 pname = "sydtest"; 263491 - version = "0.8.0.1"; 263492 - sha256 = "0h524wiwmvx4gp73lsnl5bk93866z6ac1s37xbym7jlfbzn6q8x1"; 264034 + version = "0.9.0.0"; 264035 + sha256 = "1gp9kifyh88pjnk7vnb0p09fkcmnhy5akgfdacmrmgwcnyswx6f1"; 263493 264036 libraryHaskellDepends = [ 263494 264037 async autodocodec autodocodec-yaml base bytestring containers Diff 263495 264038 dlist envparse filepath MonadRandom mtl optparse-applicative path 263496 264039 path-io pretty-show QuickCheck quickcheck-io random-shuffle safe 263497 - safe-coloured-text safe-coloured-text-terminfo split text yaml 264040 + safe-coloured-text safe-coloured-text-terminfo split stm text yaml 263498 264041 ]; 263499 264042 testHaskellDepends = [ 263500 264043 base bytestring path path-io QuickCheck random safe-coloured-text ··· 263565 264108 }) {}; 263566 264109 263567 264110 "sydtest-hedgehog" = callPackage 263568 - ({ mkDerivation, base, containers, hedgehog, sydtest 264111 + ({ mkDerivation, base, containers, hedgehog, stm, sydtest 263569 264112 , sydtest-discover 263570 264113 }: 263571 264114 mkDerivation { 263572 264115 pname = "sydtest-hedgehog"; 263573 - version = "0.0.0.0"; 263574 - sha256 = "0kxx2r4hjqzkrhplgfby2x7zcya05n42hna86zk27k2i9hkabhnh"; 263575 - libraryHaskellDepends = [ base containers hedgehog sydtest ]; 264116 + version = "0.1.0.0"; 264117 + sha256 = "0p0aj2jd6cgi3mdzdlwksczikxsx9ajh0lcvd6k4059x1ddjxplb"; 264118 + libraryHaskellDepends = [ base containers hedgehog stm sydtest ]; 263576 264119 testHaskellDepends = [ base hedgehog sydtest ]; 263577 264120 testToolDepends = [ sydtest-discover ]; 263578 264121 description = "A Hedgehog companion library for sydtest"; ··· 263601 264144 }) {}; 263602 264145 263603 264146 "sydtest-hspec" = callPackage 263604 - ({ mkDerivation, base, hspec, hspec-core, mtl, sydtest 263605 - , sydtest-discover 264147 + ({ mkDerivation, base, hspec, hspec-core, mtl, QuickCheck, stm 264148 + , sydtest, sydtest-discover 263606 264149 }: 263607 264150 mkDerivation { 263608 264151 pname = "sydtest-hspec"; 263609 - version = "0.0.0.1"; 263610 - sha256 = "14z15z0yihssy2s0cn570q61md3zbagf329gj26i5r7rfwr9mm7m"; 263611 - libraryHaskellDepends = [ base hspec-core mtl sydtest ]; 263612 - testHaskellDepends = [ base hspec sydtest ]; 264152 + version = "0.1.0.0"; 264153 + sha256 = "17j48cp7n0smci0m42yyvkz0rd5xfrysb2f6hwxaqhl703ifhlyy"; 264154 + libraryHaskellDepends = [ 264155 + base hspec-core mtl QuickCheck stm sydtest 264156 + ]; 264157 + testHaskellDepends = [ base hspec stm sydtest ]; 263613 264158 testToolDepends = [ sydtest-discover ]; 263614 264159 description = "An Hspec companion library for sydtest"; 263615 264160 license = "unknown"; ··· 263792 264337 ]; 263793 264338 testToolDepends = [ sydtest-discover ]; 263794 264339 description = "A wai companion library for sydtest"; 264340 + license = "unknown"; 264341 + hydraPlatforms = lib.platforms.none; 264342 + }) {}; 264343 + 264344 + "sydtest-webdriver" = callPackage 264345 + ({ mkDerivation, aeson, base, http-client, http-types 264346 + , monad-control, mtl, network, network-uri, path, path-io 264347 + , port-utils, sydtest, sydtest-discover, sydtest-typed-process 264348 + , sydtest-wai, transformers-base, typed-process, wai, webdriver 264349 + }: 264350 + mkDerivation { 264351 + pname = "sydtest-webdriver"; 264352 + version = "0.0.0.0"; 264353 + sha256 = "030qv68sb075lqwz449yvliwg356ggn3ab90zcad6hc6hyz8x3vp"; 264354 + libraryHaskellDepends = [ 264355 + aeson base http-client http-types monad-control mtl network 264356 + network-uri path path-io port-utils sydtest sydtest-typed-process 264357 + sydtest-wai transformers-base typed-process webdriver 264358 + ]; 264359 + testHaskellDepends = [ 264360 + base http-types network-uri sydtest sydtest-wai wai 264361 + ]; 264362 + testToolDepends = [ sydtest-discover ]; 264363 + description = "A webdriver companion library for sydtest"; 264364 + license = "unknown"; 264365 + hydraPlatforms = lib.platforms.none; 264366 + }) {}; 264367 + 264368 + "sydtest-webdriver-screenshot" = callPackage 264369 + ({ mkDerivation, base, bytestring, http-types, JuicyPixels, mtl 264370 + , network-uri, path, path-io, sydtest, sydtest-discover 264371 + , sydtest-wai, sydtest-webdriver, wai, webdriver 264372 + }: 264373 + mkDerivation { 264374 + pname = "sydtest-webdriver-screenshot"; 264375 + version = "0.0.0.0"; 264376 + sha256 = "00w3ijgwwplgg0310qnc56c5a50i1vnzn94np4jscjv4aw849s1b"; 264377 + libraryHaskellDepends = [ 264378 + base bytestring http-types JuicyPixels mtl network-uri path path-io 264379 + sydtest sydtest-wai sydtest-webdriver webdriver 264380 + ]; 264381 + testHaskellDepends = [ 264382 + base http-types network-uri sydtest sydtest-wai sydtest-webdriver 264383 + wai 264384 + ]; 264385 + testToolDepends = [ sydtest-discover ]; 264386 + description = "A webdriver screenshot companion library for sydtest"; 264387 + license = "unknown"; 264388 + hydraPlatforms = lib.platforms.none; 264389 + }) {}; 264390 + 264391 + "sydtest-webdriver-yesod" = callPackage 264392 + ({ mkDerivation, base, bytestring, http-client, http-types, mtl 264393 + , network-uri, path, path-io, sydtest, sydtest-discover 264394 + , sydtest-wai, sydtest-webdriver, sydtest-yesod, text, webdriver 264395 + , yesod 264396 + }: 264397 + mkDerivation { 264398 + pname = "sydtest-webdriver-yesod"; 264399 + version = "0.0.0.0"; 264400 + sha256 = "10q112rsj5gh3ijy7pf93zslsxqk7jim1i1fslqpld71wqw2abr2"; 264401 + libraryHaskellDepends = [ 264402 + base bytestring http-client http-types mtl network-uri path path-io 264403 + sydtest sydtest-wai sydtest-webdriver sydtest-yesod text webdriver 264404 + yesod 264405 + ]; 264406 + testHaskellDepends = [ 264407 + base path path-io sydtest sydtest-webdriver yesod 264408 + ]; 264409 + testToolDepends = [ sydtest-discover ]; 264410 + description = "A webdriver+yesod companion library for sydtest"; 263795 264411 license = "unknown"; 263796 264412 hydraPlatforms = lib.platforms.none; 263797 264413 }) {}; ··· 268234 268850 license = lib.licenses.bsd3; 268235 268851 }) {}; 268236 268852 268853 + "telegram-bot-simple_0_5" = callPackage 268854 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron 268855 + , filepath, hashable, http-api-data, http-client, http-client-tls 268856 + , monad-control, mtl, pretty-show, profunctors, servant 268857 + , servant-client, servant-multipart-api, servant-multipart-client 268858 + , split, stm, template-haskell, text, time, transformers 268859 + , unordered-containers 268860 + }: 268861 + mkDerivation { 268862 + pname = "telegram-bot-simple"; 268863 + version = "0.5"; 268864 + sha256 = "0mzzq7lfl56h1i9dr617h5vcv47j2nsf77pkq18s8wk5zrc67r2w"; 268865 + isLibrary = true; 268866 + isExecutable = true; 268867 + libraryHaskellDepends = [ 268868 + aeson aeson-pretty base bytestring cron filepath hashable 268869 + http-api-data http-client http-client-tls monad-control mtl 268870 + pretty-show profunctors servant servant-client 268871 + servant-multipart-api servant-multipart-client split stm 268872 + template-haskell text time transformers unordered-containers 268873 + ]; 268874 + description = "Easy to use library for building Telegram bots"; 268875 + license = lib.licenses.bsd3; 268876 + hydraPlatforms = lib.platforms.none; 268877 + }) {}; 268878 + 268237 268879 "telegram-raw-api" = callPackage 268238 268880 ({ mkDerivation, aeson, base, bytestring, deriving-aeson 268239 268881 , generic-lens, hashable, http-client, http-client-tls, http-media ··· 270431 271073 }: 270432 271074 mkDerivation { 270433 271075 pname = "text-builder-dev"; 270434 - version = "0.2.0.1"; 270435 - sha256 = "196qnqr5pxx6s4dd37pbzfmbml379s1m91pkimkklf8r2jcvf1zn"; 271076 + version = "0.2.1"; 271077 + sha256 = "0jrzs4dcm2zq5gsn4lbmrasrsk31rs0z6n3vgs514x7p3fdv6lpj"; 270436 271078 libraryHaskellDepends = [ 270437 271079 base bytestring deferred-folds split text text-conversions tostring 270438 271080 transformers ··· 277373 278015 }: 277374 278016 mkDerivation { 277375 278017 pname = "tree-sitter"; 277376 - version = "0.9.0.2"; 277377 - sha256 = "1jw70m7z7yj4d2ivgynh8z7n5ndd978r21012hxj93sy87axz7mf"; 278018 + version = "0.9.0.3"; 278019 + sha256 = "0al8pywpg0xr7cq9bq7acppkpl6zlzggf0pdh8g0vgi5vipbscad"; 277378 278020 libraryHaskellDepends = [ 277379 278021 base bytestring containers directory filepath split 277380 278022 template-haskell unordered-containers ··· 277384 278026 license = lib.licenses.bsd3; 277385 278027 }) {}; 277386 278028 278029 + "tree-sitter-c-sharp" = callPackage 278030 + ({ mkDerivation, base, tree-sitter }: 278031 + mkDerivation { 278032 + pname = "tree-sitter-c-sharp"; 278033 + version = "0.1.0.1"; 278034 + sha256 = "0cdp95djcjdb123hc87jrhcrvhi4s0r1x2c8l6sy58bhal4cgkhz"; 278035 + enableSeparateDataOutput = true; 278036 + libraryHaskellDepends = [ base tree-sitter ]; 278037 + description = "Tree-sitter grammar/parser for C#"; 278038 + license = lib.licenses.bsd3; 278039 + }) {}; 278040 + 277387 278041 "tree-sitter-go" = callPackage 277388 278042 ({ mkDerivation, base, tree-sitter }: 277389 278043 mkDerivation { 277390 278044 pname = "tree-sitter-go"; 277391 - version = "0.5.0.2"; 277392 - sha256 = "0zl8q96xffi4cqd3yl44x64q9440qragg8735lzwwfl8nayx78bj"; 278045 + version = "0.5.0.3"; 278046 + sha256 = "0z4x25dk6m34di829431gsa9gfh2ih2svpm73dj53p2fz78m4988"; 277393 278047 enableSeparateDataOutput = true; 277394 278048 libraryHaskellDepends = [ base tree-sitter ]; 277395 278049 description = "Tree-sitter grammar/parser for Go"; ··· 277400 278054 ({ mkDerivation, base, tree-sitter }: 277401 278055 mkDerivation { 277402 278056 pname = "tree-sitter-haskell"; 277403 - version = "0.3.0.1"; 277404 - sha256 = "194rws181v8pv3w9zxx9h8fqnilivwrdw27hwlps30kmmk26rraq"; 278057 + version = "0.3.0.2"; 278058 + sha256 = "0ir90y3nh3pvx0f3rs4k14y8fqjia9r964ir5pnj1f8wggiijnyz"; 277405 278059 isLibrary = true; 277406 278060 isExecutable = true; 277407 278061 libraryHaskellDepends = [ base tree-sitter ]; ··· 277413 278067 ({ mkDerivation, base, tree-sitter }: 277414 278068 mkDerivation { 277415 278069 pname = "tree-sitter-java"; 277416 - version = "0.7.0.2"; 277417 - sha256 = "1im1cwf20f02i244ggb5xl1cblkxr4rjk5h1c91vhzfv1hja37sn"; 278070 + version = "0.7.0.3"; 278071 + sha256 = "0d8cyrzpl00v3l01pr4sdm22r644781kac9fn93nm9ix7n3wj6fs"; 277418 278072 enableSeparateDataOutput = true; 277419 278073 libraryHaskellDepends = [ base tree-sitter ]; 277420 278074 description = "Tree-sitter grammar/parser for Java"; ··· 277425 278079 ({ mkDerivation, base, tree-sitter }: 277426 278080 mkDerivation { 277427 278081 pname = "tree-sitter-json"; 277428 - version = "0.7.0.2"; 277429 - sha256 = "02ly1dj4l8l1cvi5ymwqv85l0jdq9dixcpgqgyy1d744d214gg4g"; 278082 + version = "0.7.0.3"; 278083 + sha256 = "08h91b7sbl2i96w3gw6z9cs7q40bifliicl7pb1ghq4v9vzgmcm6"; 277430 278084 enableSeparateDataOutput = true; 277431 278085 libraryHaskellDepends = [ base tree-sitter ]; 277432 278086 description = "Tree-sitter grammar/parser for JSON"; 277433 278087 license = lib.licenses.bsd3; 277434 278088 }) {}; 277435 278089 278090 + "tree-sitter-ocaml" = callPackage 278091 + ({ mkDerivation, base, tree-sitter }: 278092 + mkDerivation { 278093 + pname = "tree-sitter-ocaml"; 278094 + version = "0.1.0.1"; 278095 + sha256 = "1pgfz6zrpf62m7j20vx8r0x0m06y5dnv8ps2clxl4a8j8dmk7scn"; 278096 + enableSeparateDataOutput = true; 278097 + libraryHaskellDepends = [ base tree-sitter ]; 278098 + description = "Tree-sitter grammar/parser for OCaml"; 278099 + license = lib.licenses.bsd3; 278100 + }) {}; 278101 + 277436 278102 "tree-sitter-php" = callPackage 277437 278103 ({ mkDerivation, base, tree-sitter }: 277438 278104 mkDerivation { 277439 278105 pname = "tree-sitter-php"; 277440 - version = "0.5.0.1"; 277441 - sha256 = "05nfsw1mk27xiqr9ca8bky437xqin4zqb1mammcjpyi9qif9zzbh"; 278106 + version = "0.5.0.2"; 278107 + sha256 = "02g3mdj8cx4h1gx65v3s38kmmmrj7d3ki95qhrcifjwbjgn7nc36"; 277442 278108 enableSeparateDataOutput = true; 277443 278109 libraryHaskellDepends = [ base tree-sitter ]; 277444 278110 description = "Tree-sitter grammar/parser for PHP"; ··· 277449 278115 ({ mkDerivation, base, tree-sitter }: 277450 278116 mkDerivation { 277451 278117 pname = "tree-sitter-python"; 277452 - version = "0.9.0.3"; 277453 - sha256 = "1bjiddhm0zj01s7785xr7yldsbd1agbj4nc9cyxvkadxmf7cha7h"; 278118 + version = "0.9.0.4"; 278119 + sha256 = "0hx5vc03mvhd0m92n4m87iqxyr1i8hbyxhb33ziq7c510cr6c6gq"; 277454 278120 enableSeparateDataOutput = true; 277455 278121 libraryHaskellDepends = [ base tree-sitter ]; 277456 278122 description = "Tree-sitter grammar/parser for Python"; ··· 277461 278127 ({ mkDerivation, base, tree-sitter }: 277462 278128 mkDerivation { 277463 278129 pname = "tree-sitter-ql"; 277464 - version = "0.1.0.4"; 277465 - sha256 = "0pawzp1q160h6ccl2dkngrgkyxjs1szsyxjn55clbv4jla3zypni"; 278130 + version = "0.1.0.5"; 278131 + sha256 = "1xfr0rpzmxjwlhd1s99gi9jl0yjd3awa328z01x7hk8ww4jpbg00"; 277466 278132 enableSeparateDataOutput = true; 277467 278133 libraryHaskellDepends = [ base tree-sitter ]; 277468 278134 description = "Tree-sitter grammar/parser for QL"; ··· 277473 278139 ({ mkDerivation, base, tree-sitter }: 277474 278140 mkDerivation { 277475 278141 pname = "tree-sitter-ruby"; 277476 - version = "0.5.0.3"; 277477 - sha256 = "097wrscdjlr5nqyx2d3076gppfv3xm299b6iya5g50z24g5izfxn"; 278142 + version = "0.5.0.4"; 278143 + sha256 = "0rvlgw5d8ryinabq6520g1y5gwgrjdb1wjr6jc9ikhdsqppp17yy"; 277478 278144 enableSeparateDataOutput = true; 277479 278145 libraryHaskellDepends = [ base tree-sitter ]; 277480 278146 description = "Tree-sitter grammar/parser for Ruby"; ··· 277485 278151 ({ mkDerivation, base, tree-sitter }: 277486 278152 mkDerivation { 277487 278153 pname = "tree-sitter-rust"; 277488 - version = "0.1.0.1"; 277489 - sha256 = "0h8dbr4pn1qnqlg0fs1f6jxasjpfjs4j6x4h86dhz6sw3fih9g00"; 278154 + version = "0.1.0.2"; 278155 + sha256 = "0ql5x6bxsmqnzj2xz6dfqdp3ab87df9jv8vcjxywr8nx07fwi6zl"; 277490 278156 enableSeparateDataOutput = true; 277491 278157 libraryHaskellDepends = [ base tree-sitter ]; 277492 278158 description = "Tree-sitter grammar/parser for Rust"; ··· 277497 278163 ({ mkDerivation, base, tree-sitter }: 277498 278164 mkDerivation { 277499 278165 pname = "tree-sitter-tsx"; 277500 - version = "0.5.0.2"; 277501 - sha256 = "0ir4n732wd5i6m8jkkrwah7091i147pxbaa2mpl56zg8nya52490"; 278166 + version = "0.5.0.3"; 278167 + sha256 = "0d2qqqlqs5qr776b3wrnzbfk7iq635c1knpvmf8dc8a7cvqbrrhz"; 277502 278168 enableSeparateDataOutput = true; 277503 278169 libraryHaskellDepends = [ base tree-sitter ]; 277504 278170 description = "Tree-sitter grammar/parser for TSX"; ··· 277509 278175 ({ mkDerivation, base, tree-sitter }: 277510 278176 mkDerivation { 277511 278177 pname = "tree-sitter-typescript"; 277512 - version = "0.5.0.2"; 277513 - sha256 = "0qlwiks80861f9prps4x5ag6ivi9ihp8rq416jmmgmc3bj72bkfi"; 278178 + version = "0.5.0.3"; 278179 + sha256 = "0s7bp11jgj4381lln2z3zl7dxvyi10yiza08473nd8z5d3xr0kjh"; 277514 278180 enableSeparateDataOutput = true; 277515 278181 libraryHaskellDepends = [ base tree-sitter ]; 277516 278182 description = "Tree-sitter grammar/parser for TypeScript"; ··· 284989 285655 }: 284990 285656 mkDerivation { 284991 285657 pname = "userid"; 284992 - version = "0.1.3.6"; 284993 - sha256 = "02alsm7h42hjymmr2xn2cf9ks6sph6arccirpndbndyvbgrds7nn"; 285658 + version = "0.1.3.7"; 285659 + sha256 = "12ijma954vss6a2nicq17q5pz3l7qjgh1f6s8lcrrxcf8vc10m1c"; 284994 285660 libraryHaskellDepends = [ 284995 285661 aeson base boomerang cereal safecopy web-routes web-routes-th 284996 285662 ]; ··· 286132 286798 pname = "validity"; 286133 286799 version = "0.12.0.0"; 286134 286800 sha256 = "03md04q3ymilgc1pssczij392bphmg9ld6aa0fwfwjyjlqjj67fk"; 286801 + revision = "1"; 286802 + editedCabalFile = "1ifdx7vrr6n3zkgk6gp9djp0xcy8ndvrl585c01rq12rg3l0my8p"; 286135 286803 libraryHaskellDepends = [ base ]; 286136 286804 testHaskellDepends = [ base hspec ]; 286137 286805 description = "Validity typeclass"; ··· 286146 286814 pname = "validity-aeson"; 286147 286815 version = "0.2.0.4"; 286148 286816 sha256 = "1k0x6va9mmz0z9hgd1is71ks4fgbziw53rm7r6jsidp4ksszdzm0"; 286817 + revision = "1"; 286818 + editedCabalFile = "1zhqg6hac0js33yn0xw10pcp11hbygr95vmcmgpp3sdxdhgpbnmy"; 286149 286819 libraryHaskellDepends = [ 286150 286820 aeson base validity validity-scientific validity-text 286151 286821 validity-unordered-containers validity-vector ··· 286234 286904 pname = "validity-text"; 286235 286905 version = "0.3.1.2"; 286236 286906 sha256 = "00sfiykazz2iwwr43lxl0q6dn03jpf515k0s8hymqpychmflyqhi"; 286907 + revision = "1"; 286908 + editedCabalFile = "0d0gkp9wjbhq2p6zfnc2jx5ifh6xi84psiqrrxczdgi1kwl0af3j"; 286237 286909 libraryHaskellDepends = [ base bytestring text validity ]; 286238 286910 description = "Validity instances for text"; 286239 286911 license = lib.licenses.mit; ··· 289480 290152 license = lib.licenses.mit; 289481 290153 }) {}; 289482 290154 290155 + "wai-extra_3_1_10" = callPackage 290156 + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring 290157 + , bytestring, call-stack, case-insensitive, containers, cookie 290158 + , data-default-class, directory, fast-logger, hspec, http-types 290159 + , http2, HUnit, iproute, network, resourcet, streaming-commons 290160 + , text, time, transformers, unix, vault, wai, wai-logger, word8 290161 + , zlib 290162 + }: 290163 + mkDerivation { 290164 + pname = "wai-extra"; 290165 + version = "3.1.10"; 290166 + sha256 = "0ldzwcjgj0k3ma25y4jaywv4g4bjjnn75ixlk1h4r4f3iapxm6kr"; 290167 + isLibrary = true; 290168 + isExecutable = true; 290169 + libraryHaskellDepends = [ 290170 + aeson ansi-terminal base base64-bytestring bytestring call-stack 290171 + case-insensitive containers cookie data-default-class directory 290172 + fast-logger http-types http2 HUnit iproute network resourcet 290173 + streaming-commons text time transformers unix vault wai wai-logger 290174 + word8 290175 + ]; 290176 + testHaskellDepends = [ 290177 + aeson base bytestring case-insensitive cookie fast-logger hspec 290178 + http-types http2 HUnit iproute resourcet text time transformers wai 290179 + zlib 290180 + ]; 290181 + description = "Provides some basic WAI handlers and middleware"; 290182 + license = lib.licenses.mit; 290183 + hydraPlatforms = lib.platforms.none; 290184 + }) {}; 290185 + 289483 290186 "wai-feature-flags" = callPackage 289484 290187 ({ mkDerivation, aeson, base, bytestring, splitmix, text 289485 290188 , unordered-containers, wai, warp ··· 291906 292609 license = lib.licenses.bsd3; 291907 292610 }) {}; 291908 292611 292612 + "web-routes_0_27_14_4" = callPackage 292613 + ({ mkDerivation, base, blaze-builder, bytestring, exceptions 292614 + , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck 292615 + , split, text, utf8-string 292616 + }: 292617 + mkDerivation { 292618 + pname = "web-routes"; 292619 + version = "0.27.14.4"; 292620 + sha256 = "10zpyxigrmp97x7xd9aw8kn925ygjf0jv8hppxmksjf9a6pvyfn1"; 292621 + libraryHaskellDepends = [ 292622 + base blaze-builder bytestring exceptions ghc-prim http-types mtl 292623 + parsec split text utf8-string 292624 + ]; 292625 + testHaskellDepends = [ base hspec HUnit QuickCheck text ]; 292626 + description = "portable, type-safe URL routing"; 292627 + license = lib.licenses.bsd3; 292628 + hydraPlatforms = lib.platforms.none; 292629 + }) {}; 292630 + 291909 292631 "web-routes-boomerang" = callPackage 291910 292632 ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 291911 292633 mkDerivation { ··· 291917 292639 ]; 291918 292640 description = "Use boomerang for type-safe URL parsers/printers"; 291919 292641 license = lib.licenses.bsd3; 292642 + }) {}; 292643 + 292644 + "web-routes-boomerang_0_28_4_3" = callPackage 292645 + ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 292646 + mkDerivation { 292647 + pname = "web-routes-boomerang"; 292648 + version = "0.28.4.3"; 292649 + sha256 = "1cdn29084i2bvsh7pa6d4dr5bgpixix36dhi49q8nbcbp02qycap"; 292650 + libraryHaskellDepends = [ 292651 + base boomerang mtl parsec text web-routes 292652 + ]; 292653 + description = "Use boomerang for type-safe URL parsers/printers"; 292654 + license = lib.licenses.bsd3; 292655 + hydraPlatforms = lib.platforms.none; 291920 292656 }) {}; 291921 292657 291922 292658 "web-routes-generics" = callPackage ··· 291945 292681 license = lib.licenses.bsd3; 291946 292682 }) {}; 291947 292683 292684 + "web-routes-happstack_0_23_12_2" = callPackage 292685 + ({ mkDerivation, base, bytestring, happstack-server, text 292686 + , web-routes 292687 + }: 292688 + mkDerivation { 292689 + pname = "web-routes-happstack"; 292690 + version = "0.23.12.2"; 292691 + sha256 = "01ks9c8bln8yiff7dqfm3ai7scci304q94w1zaqvzph57m1whrd6"; 292692 + libraryHaskellDepends = [ 292693 + base bytestring happstack-server text web-routes 292694 + ]; 292695 + description = "Adds support for using web-routes with Happstack"; 292696 + license = lib.licenses.bsd3; 292697 + hydraPlatforms = lib.platforms.none; 292698 + }) {}; 292699 + 291948 292700 "web-routes-hsp" = callPackage 291949 292701 ({ mkDerivation, base, hsp, text, web-routes }: 291950 292702 mkDerivation { ··· 291956 292708 license = lib.licenses.bsd3; 291957 292709 }) {}; 291958 292710 292711 + "web-routes-hsp_0_24_6_2" = callPackage 292712 + ({ mkDerivation, base, hsp, text, web-routes }: 292713 + mkDerivation { 292714 + pname = "web-routes-hsp"; 292715 + version = "0.24.6.2"; 292716 + sha256 = "0cmijyklkrakcwfmwfa70kbm619p1dfl900lx57mca23k8m2aksn"; 292717 + libraryHaskellDepends = [ base hsp text web-routes ]; 292718 + description = "Adds XMLGenerator instance for RouteT monad"; 292719 + license = lib.licenses.bsd3; 292720 + hydraPlatforms = lib.platforms.none; 292721 + }) {}; 292722 + 291959 292723 "web-routes-mtl" = callPackage 291960 292724 ({ mkDerivation, base, web-routes }: 291961 292725 mkDerivation { ··· 292000 292764 }: 292001 292765 mkDerivation { 292002 292766 pname = "web-routes-th"; 292003 - version = "0.22.6.6"; 292004 - sha256 = "0z5mcpnp38x6yzazdkdbj9z99837g9nlm4pp3lxzzsib7qs9a6sp"; 292767 + version = "0.22.7"; 292768 + sha256 = "0h3xaml18jgc66ylmwlymp1mqnf59lfvsd3xswdki8dk31ryaca4"; 292005 292769 libraryHaskellDepends = [ 292006 292770 base parsec split template-haskell text web-routes 292007 292771 ]; ··· 292040 292804 license = lib.licenses.bsd3; 292041 292805 }) {}; 292042 292806 292807 + "web-routes-wai_0_24_3_2" = callPackage 292808 + ({ mkDerivation, base, bytestring, http-types, text, wai 292809 + , web-routes 292810 + }: 292811 + mkDerivation { 292812 + pname = "web-routes-wai"; 292813 + version = "0.24.3.2"; 292814 + sha256 = "1cdahkpw0194gdx11g4h4313ni0b6sdj9j5r666rgwwzr22wgql7"; 292815 + libraryHaskellDepends = [ 292816 + base bytestring http-types text wai web-routes 292817 + ]; 292818 + description = "Library for maintaining correctness of URLs within an application"; 292819 + license = lib.licenses.bsd3; 292820 + hydraPlatforms = lib.platforms.none; 292821 + }) {}; 292822 + 292043 292823 "web-routing" = callPackage 292044 292824 ({ mkDerivation, base, bytestring, criterion, doctest, primitive 292045 292825 , text, types-compat, unordered-containers ··· 293391 294171 }) {inherit (pkgs) SDL2;}; 293392 294172 293393 294173 "what4" = callPackage 293394 - ({ mkDerivation, attoparsec, base, bifunctors, bimap, bv-sized 293395 - , bytestring, config-value, containers, contravariant 293396 - , data-binary-ieee754, deepseq, deriving-compat, directory 293397 - , exceptions, extra, filepath, fingertree, ghc-prim, hashable 294174 + ({ mkDerivation, async, attoparsec, base, bifunctors, bimap 294175 + , bv-sized, bytestring, concurrent-extra, config-value, containers 294176 + , contravariant, data-binary-ieee754, deepseq, deriving-compat 294177 + , directory, exceptions, filepath, fingertree, ghc-prim, hashable 293398 294178 , hashtables, hedgehog, io-streams, lens, libBF, lumberjack, mtl 293399 294179 , panic, parameterized-utils, prettyprinter, process, QuickCheck 293400 - , scientific, tasty, tasty-checklist, tasty-hedgehog, tasty-hunit 293401 - , tasty-quickcheck, tasty-sugar, template-haskell, temporary, text 293402 - , th-abstraction, th-lift, th-lift-instances, transformers 293403 - , unordered-containers, utf8-string, vector, versions, zenc 294180 + , scientific, tasty, tasty-checklist, tasty-expected-failure 294181 + , tasty-hedgehog, tasty-hunit, tasty-quickcheck, tasty-sugar 294182 + , template-haskell, temporary, text, th-abstraction, th-lift 294183 + , th-lift-instances, transformers, unordered-containers 294184 + , utf8-string, vector, versions, zenc 293404 294185 }: 293405 294186 mkDerivation { 293406 294187 pname = "what4"; 293407 - version = "1.2.1"; 293408 - sha256 = "0cbvdiszqzhw50m51kfm0qsadq04dxwb8836hibv61sshgckpsf3"; 294188 + version = "1.3"; 294189 + sha256 = "03p4sk543vygmah0mf1nzlxv9l3qzaiy023if3cszcwys22gr7kq"; 293409 294190 isLibrary = true; 293410 294191 isExecutable = true; 293411 294192 enableSeparateDataOutput = true; 293412 294193 libraryHaskellDepends = [ 293413 - attoparsec base bifunctors bimap bv-sized bytestring config-value 293414 - containers data-binary-ieee754 deepseq deriving-compat directory 293415 - exceptions extra filepath fingertree ghc-prim hashable hashtables 293416 - io-streams lens libBF mtl panic parameterized-utils prettyprinter 293417 - process scientific template-haskell temporary text th-abstraction 293418 - th-lift th-lift-instances transformers unordered-containers 293419 - utf8-string vector versions zenc 294194 + async attoparsec base bifunctors bimap bv-sized bytestring 294195 + concurrent-extra config-value containers data-binary-ieee754 294196 + deepseq deriving-compat directory exceptions filepath fingertree 294197 + ghc-prim hashable hashtables io-streams lens libBF mtl panic 294198 + parameterized-utils prettyprinter process scientific 294199 + template-haskell temporary text th-abstraction th-lift 294200 + th-lift-instances transformers unordered-containers utf8-string 294201 + vector versions zenc 293420 294202 ]; 293421 294203 executableHaskellDepends = [ base parameterized-utils ]; 293422 294204 testHaskellDepends = [ 293423 294205 base bv-sized bytestring containers contravariant 293424 294206 data-binary-ieee754 exceptions hedgehog io-streams libBF lumberjack 293425 - parameterized-utils prettyprinter QuickCheck tasty tasty-checklist 293426 - tasty-hedgehog tasty-hunit tasty-quickcheck tasty-sugar text 293427 - transformers versions 294207 + parameterized-utils prettyprinter process QuickCheck tasty 294208 + tasty-checklist tasty-expected-failure tasty-hedgehog tasty-hunit 294209 + tasty-quickcheck tasty-sugar text transformers versions 293428 294210 ]; 293429 294211 description = "Solver-agnostic symbolic values support for issuing queries"; 293430 294212 license = lib.licenses.bsd3; ··· 294590 295372 pname = "word24"; 294591 295373 version = "2.0.1"; 294592 295374 sha256 = "11m0qffpjngylmci73v7y3ap7v8244cylzgj3qai9wwdr1ya2jy3"; 295375 + revision = "1"; 295376 + editedCabalFile = "1mhjln83z2sz0pq9phlzjbdl7lny8fn3pb0smphm2rz09j6nmb0m"; 294593 295377 libraryHaskellDepends = [ base deepseq ]; 294594 295378 testHaskellDepends = [ 294595 295379 base deepseq QuickCheck test-framework test-framework-quickcheck2 ··· 299446 300230 }: 299447 300231 mkDerivation { 299448 300232 pname = "yapb"; 299449 - version = "0.2.3"; 299450 - sha256 = "14909qgfvz19jqyj64y2mjg4nzrd3kk3zffg53mf6715y49y6npb"; 300233 + version = "0.2.6"; 300234 + sha256 = "1gdmnhafr7i4f4zxsiq3yw2kzlxrir9vygf2g41war9wnd9mfq8p"; 299451 300235 isLibrary = true; 299452 300236 isExecutable = true; 299453 300237 libraryHaskellDepends = [ ··· 301348 302132 }: 301349 302133 mkDerivation { 301350 302134 pname = "yesod-persistent"; 301351 - version = "1.6.0.7"; 301352 - sha256 = "102xmp7n08sk1g5rv31jpln2v9kqf1zsqsnmi83mnhmgggcbj1k4"; 302135 + version = "1.6.0.8"; 302136 + sha256 = "02vm0qm0yxqn6x61iir81wf6ibwnf8gkia8lw71fgpxgav154ig6"; 301353 302137 libraryHaskellDepends = [ 301354 302138 base blaze-builder conduit persistent persistent-template 301355 302139 resource-pool resourcet transformers yesod-core ··· 301891 302675 license = lib.licenses.mit; 301892 302676 }) {}; 301893 302677 302678 + "yesod-test_1_6_13" = callPackage 302679 + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 302680 + , bytestring, case-insensitive, conduit, containers, cookie, hspec 302681 + , hspec-core, html-conduit, http-types, HUnit, memory, mtl, network 302682 + , pretty-show, text, time, transformers, unliftio, unliftio-core 302683 + , wai, wai-extra, xml-conduit, xml-types, yesod-core, yesod-form 302684 + }: 302685 + mkDerivation { 302686 + pname = "yesod-test"; 302687 + version = "1.6.13"; 302688 + sha256 = "1r5ip85x0shv00dvznd201fbl9gi90nkk33szmh0cz77x8960v19"; 302689 + libraryHaskellDepends = [ 302690 + , regex-posix, tagsoup, template-haskell, transformers 302691 + case-insensitive conduit containers cookie hspec-core html-conduit 302692 + http-types HUnit memory mtl network pretty-show text time 302693 + transformers wai wai-extra xml-conduit xml-types yesod-core 302694 + ]; 302695 + testHaskellDepends = [ 302696 + base bytestring containers cookie hspec html-conduit http-types 302697 + HUnit text unliftio unliftio-core wai wai-extra xml-conduit 302698 + yesod-core yesod-form 302699 + ]; 302700 + description = "integration testing for WAI/Yesod Applications"; 302701 + license = lib.licenses.mit; 302702 + hydraPlatforms = lib.platforms.none; 302703 + }) {}; 302704 + 301894 302705 "yesod-test-json" = callPackage 301895 302706 ({ mkDerivation, aeson, base, bytestring, conduit, hspec 301896 302707 , http-types, HUnit, text, transformers, wai, wai-test ··· 303275 304086 }: 303276 304087 mkDerivation { 303277 304088 pname = "zeolite-lang"; 303278 - version = "0.22.0.0"; 303279 - sha256 = "1569qdpy2llvi4cvbmya89ll21rjjwbzxhm0f639aaaxal21szj5"; 304089 + version = "0.22.1.0"; 304090 + sha256 = "0gr3p9k7v44b09bcm1acyds5ai52cy72py2z975d6l08szvsbc5f"; 303280 304091 isLibrary = false; 303281 304092 isExecutable = true; 303282 304093 enableSeparateDataOutput = true; ··· 303816 304627 pname = "zip"; 303817 304628 version = "1.7.2"; 303818 304629 sha256 = "1c5pr3hv11dpn4ybd4742qkpqmvb9l3l7xmzlsf65wm2p8071dvj"; 304630 + revision = "1"; 304631 + editedCabalFile = "1hazf2p31rzjycci8y40zm302msr0mgvb242lww21rxrpicbzl8d"; 303819 304632 isLibrary = true; 303820 304633 isExecutable = true; 303821 304634 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 = { 35 + meta = with lib; { 36 + description = "ipdb/pdb statement checker plugin for flake8"; 27 37 homepage = "https://github.com/jbkahn/flake8-debugger"; 28 - description = "ipdb/pdb statement checker plugin for flake8"; 29 - maintainers = with lib.maintainers; [ johbo ]; 30 - license = lib.licenses.mit; 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 = [ ··· 23 27 24 28 # Project has no tests 25 29 doCheck = false; 26 - pythonImportsCheck = [ "pytrafikverket" ]; 30 + 31 + pythonImportsCheck = [ 32 + "pytrafikverket" 33 + ]; 27 34 28 35 meta = with lib; { 29 - description = "Python library to manage Etekcity Devices and Levoit Air Purifier"; 36 + description = "Library to get data from the Swedish Transport Administration (Trafikverket) API"; 30 37 homepage = "https://github.com/endor-force/pytrafikverket"; 31 38 license = with licenses; [ mit ]; 32 39 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"; 19 - 20 - nativeBuildInputs = [ glibcLocales ]; 18 + checkInputs = [ 19 + pytest-asyncio 20 + pytestCheckHook 21 + ]; 21 22 22 - checkInputs = [ pytest ]; 23 + pythonImportsCheck = [ 24 + "ratelimiter" 25 + ]; 23 26 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 = '' ··· 57 42 postInstall = '' 58 43 ln -sv $out/lib/libgpm.so.2 $out/lib/libgpm.so 59 44 ''; 45 + 46 + passthru.tests.static = pkgsStatic.gpm; 60 47 61 48 meta = with lib; { 62 49 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 { }; ··· 8880 8888 onlykey-cli = callPackage ../tools/security/onlykey-cli { }; 8881 8889 8882 8890 onlykey = callPackage ../tools/security/onlykey { node_webkit = nwjs; }; 8891 + 8892 + ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { }; 8883 8893 8884 8894 openapi-generator-cli = callPackage ../tools/networking/openapi-generator-cli { jre = pkgs.jre_headless; }; 8885 8895 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 }; ··· 361 363 ghc-lib = released; 362 364 ghc-lib-parser = released; 363 365 ghc-lib-parser-ex = released; 366 + spectacle = [ 367 + compilerNames.ghc8107 368 + ]; 364 369 }) 365 370 { 366 371 mergeable = pkgs.releaseTools.aggregate { ··· 446 451 ]; 447 452 }; 448 453 constituents = accumulateDerivations [ 449 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.hello 450 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.lens 451 - jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.random 452 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.hello 453 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.lens 454 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc902.random 454 + jobs.pkgsStatic.haskellPackages 455 + jobs.pkgsStatic.haskell.packages.native-bignum.ghc922 455 456 ]; 456 457 }; 457 458 }