lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
fadee272 2bd4b710

+2065 -1289
+1
nixos/modules/module-list.nix
··· 457 457 ./services/misc/domoticz.nix 458 458 ./services/misc/errbot.nix 459 459 ./services/misc/etcd.nix 460 + ./services/misc/etebase-server.nix 460 461 ./services/misc/ethminer.nix 461 462 ./services/misc/exhibitor.nix 462 463 ./services/misc/felix.nix
+19 -5
nixos/modules/services/audio/snapserver.nix
··· 198 198 type = with types; attrsOf (submodule { 199 199 options = { 200 200 location = mkOption { 201 - type = types.path; 201 + type = types.oneOf [ types.path types.str ]; 202 202 description = '' 203 - The location of the pipe. 203 + The location of the pipe, file, Librespot/Airplay/process binary, or a TCP address. 204 + Use an empty string for alsa. 204 205 ''; 205 206 }; 206 207 type = mkOption { 207 - type = types.enum [ "pipe" "file" "process" "spotify" "airplay" ]; 208 + type = types.enum [ "pipe" "librespot" "airplay" "file" "process" "tcp" "alsa" "spotify" ]; 208 209 default = "pipe"; 209 210 description = '' 210 211 The type of input stream. ··· 219 220 example = literalExample '' 220 221 # for type == "pipe": 221 222 { 222 - mode = "listen"; 223 + mode = "create"; 223 224 }; 224 225 # for type == "process": 225 226 { 226 227 params = "--param1 --param2"; 227 228 logStderr = "true"; 228 229 }; 230 + # for type == "tcp": 231 + { 232 + mode = "client"; 233 + } 234 + # for type == "alsa": 235 + { 236 + device = "hw:0,0"; 237 + } 229 238 ''; 230 239 }; 231 240 inherit sampleFormat; ··· 255 264 256 265 config = mkIf cfg.enable { 257 266 267 + # https://github.com/badaix/snapcast/blob/98ac8b2fb7305084376607b59173ce4097c620d8/server/streamreader/stream_manager.cpp#L85 268 + warnings = filter (w: w != "") (mapAttrsToList (k: v: if v.type == "spotify" then '' 269 + services.snapserver.streams.${k}.type = "spotify" is deprecated, use services.snapserver.streams.${k}.type = "librespot" instead. 270 + '' else "") cfg.streams); 271 + 258 272 systemd.services.snapserver = { 259 273 after = [ "network.target" ]; 260 274 description = "Snapserver"; ··· 272 286 ProtectKernelTunables = true; 273 287 ProtectControlGroups = true; 274 288 ProtectKernelModules = true; 275 - RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX"; 289 + RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX AF_NETLINK"; 276 290 RestrictNamespaces = true; 277 291 RuntimeDirectory = name; 278 292 StateDirectory = name;
+205
nixos/modules/services/misc/etebase-server.nix
··· 1 + { config, pkgs, lib, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.etebase-server; 7 + 8 + pythonEnv = pkgs.python3.withPackages (ps: with ps; 9 + [ etebase-server daphne ]); 10 + 11 + dbConfig = { 12 + sqlite3 = '' 13 + engine = django.db.backends.sqlite3 14 + name = ${cfg.dataDir}/db.sqlite3 15 + ''; 16 + }; 17 + 18 + defaultConfigIni = toString (pkgs.writeText "etebase-server.ini" '' 19 + [global] 20 + debug = false 21 + secret_file = ${if cfg.secretFile != null then cfg.secretFile else ""} 22 + media_root = ${cfg.dataDir}/media 23 + 24 + [allowed_hosts] 25 + allowed_host1 = ${cfg.host} 26 + 27 + [database] 28 + ${dbConfig."${cfg.database.type}"} 29 + ''); 30 + 31 + configIni = if cfg.customIni != null then cfg.customIni else defaultConfigIni; 32 + 33 + defaultUser = "etebase-server"; 34 + in 35 + { 36 + options = { 37 + services.etebase-server = { 38 + enable = mkOption { 39 + type = types.bool; 40 + default = false; 41 + example = true; 42 + description = '' 43 + Whether to enable the Etebase server. 44 + 45 + Once enabled you need to create an admin user using the 46 + shell command <literal>etebase-server createsuperuser</literal>. 47 + Then you can login and create accounts on your-etebase-server.com/admin 48 + ''; 49 + }; 50 + 51 + secretFile = mkOption { 52 + default = null; 53 + type = with types; nullOr str; 54 + description = '' 55 + The path to a file containing the secret 56 + used as django's SECRET_KEY. 57 + ''; 58 + }; 59 + 60 + dataDir = mkOption { 61 + type = types.str; 62 + default = "/var/lib/etebase-server"; 63 + description = "Directory to store the Etebase server data."; 64 + }; 65 + 66 + port = mkOption { 67 + type = with types; nullOr port; 68 + default = 8001; 69 + description = "Port to listen on."; 70 + }; 71 + 72 + openFirewall = mkOption { 73 + type = types.bool; 74 + default = false; 75 + description = '' 76 + Whether to open ports in the firewall for the server. 77 + ''; 78 + }; 79 + 80 + host = mkOption { 81 + type = types.str; 82 + default = "0.0.0.0"; 83 + example = "localhost"; 84 + description = '' 85 + Host to listen on. 86 + ''; 87 + }; 88 + 89 + unixSocket = mkOption { 90 + type = with types; nullOr str; 91 + default = null; 92 + description = "The path to the socket to bind to."; 93 + example = "/run/etebase-server/etebase-server.sock"; 94 + }; 95 + 96 + database = { 97 + type = mkOption { 98 + type = types.enum [ "sqlite3" ]; 99 + default = "sqlite3"; 100 + description = '' 101 + Database engine to use. 102 + Currently only sqlite3 is supported. 103 + Other options can be configured using <literal>extraConfig</literal>. 104 + ''; 105 + }; 106 + }; 107 + 108 + customIni = mkOption { 109 + type = with types; nullOr str; 110 + default = null; 111 + description = '' 112 + Custom etebase-server.ini. 113 + 114 + See <literal>etebase-src/etebase-server.ini.example</literal> for available options. 115 + 116 + Setting this option overrides the default config which is generated from the options 117 + <literal>secretFile</literal>, <literal>host</literal> and <literal>database</literal>. 118 + ''; 119 + example = literalExample '' 120 + [global] 121 + debug = false 122 + secret_file = /path/to/secret 123 + media_root = /path/to/media 124 + 125 + [allowed_hosts] 126 + allowed_host1 = example.com 127 + 128 + [database] 129 + engine = django.db.backends.sqlite3 130 + name = db.sqlite3 131 + ''; 132 + }; 133 + 134 + user = mkOption { 135 + type = types.str; 136 + default = defaultUser; 137 + description = "User under which Etebase server runs."; 138 + }; 139 + }; 140 + }; 141 + 142 + config = mkIf cfg.enable { 143 + 144 + environment.systemPackages = with pkgs; [ 145 + (runCommand "etebase-server" { 146 + buildInputs = [ makeWrapper ]; 147 + } '' 148 + makeWrapper ${pythonEnv}/bin/etebase-server \ 149 + $out/bin/etebase-server \ 150 + --run "cd ${cfg.dataDir}" \ 151 + --prefix ETEBASE_EASY_CONFIG_PATH : "${configIni}" 152 + '') 153 + ]; 154 + 155 + systemd.tmpfiles.rules = [ 156 + "d '${cfg.dataDir}' - ${cfg.user} ${config.users.users.${cfg.user}.group} - -" 157 + ]; 158 + 159 + systemd.services.etebase-server = { 160 + description = "An Etebase (EteSync 2.0) server"; 161 + after = [ "network.target" "systemd-tmpfiles-setup.service" ]; 162 + wantedBy = [ "multi-user.target" ]; 163 + serviceConfig = { 164 + User = cfg.user; 165 + Restart = "always"; 166 + WorkingDirectory = cfg.dataDir; 167 + }; 168 + environment = { 169 + PYTHONPATH="${pythonEnv}/${pkgs.python3.sitePackages}"; 170 + ETEBASE_EASY_CONFIG_PATH="${configIni}"; 171 + }; 172 + preStart = '' 173 + # Auto-migrate on first run or if the package has changed 174 + versionFile="${cfg.dataDir}/src-version" 175 + if [[ $(cat "$versionFile" 2>/dev/null) != ${pkgs.etebase-server} ]]; then 176 + ${pythonEnv}/bin/etebase-server migrate 177 + echo ${pkgs.etebase-server} > "$versionFile" 178 + fi 179 + ''; 180 + script = 181 + let 182 + networking = if cfg.unixSocket != null 183 + then "-u ${cfg.unixSocket}" 184 + else "-b 0.0.0.0 -p ${toString cfg.port}"; 185 + in '' 186 + cd "${pythonEnv}/lib/etebase-server"; 187 + ${pythonEnv}/bin/daphne ${networking} \ 188 + etebase_server.asgi:application 189 + ''; 190 + }; 191 + 192 + users = optionalAttrs (cfg.user == defaultUser) { 193 + users.${defaultUser} = { 194 + group = defaultUser; 195 + home = cfg.dataDir; 196 + }; 197 + 198 + groups.${defaultUser} = {}; 199 + }; 200 + 201 + networking.firewall = mkIf cfg.openFirewall { 202 + allowedTCPPorts = [ cfg.port ]; 203 + }; 204 + }; 205 + }
+7
nixos/tests/snapcast.nix
··· 4 4 port = 10004; 5 5 tcpPort = 10005; 6 6 httpPort = 10080; 7 + tcpStreamPort = 10006; 7 8 in { 8 9 name = "snapcast"; 9 10 meta = with pkgs.lib.maintainers; { ··· 21 22 mpd = { 22 23 type = "pipe"; 23 24 location = "/run/snapserver/mpd"; 25 + query.mode = "create"; 24 26 }; 25 27 bluetooth = { 26 28 type = "pipe"; 27 29 location = "/run/snapserver/bluetooth"; 28 30 }; 31 + tcp = { 32 + type = "tcp"; 33 + location = "127.0.0.1:${toString tcpStreamPort}"; 34 + }; 29 35 }; 30 36 }; 31 37 }; ··· 42 48 server.wait_until_succeeds("ss -ntl | grep -q ${toString port}") 43 49 server.wait_until_succeeds("ss -ntl | grep -q ${toString tcpPort}") 44 50 server.wait_until_succeeds("ss -ntl | grep -q ${toString httpPort}") 51 + server.wait_until_succeeds("ss -ntl | grep -q ${toString tcpStreamPort}") 45 52 46 53 with subtest("check that pipes are created"): 47 54 server.succeed("test -p /run/snapserver/mpd")
+4 -4
pkgs/applications/audio/snapcast/default.nix
··· 20 20 21 21 aixlog = dependency { 22 22 name = "aixlog"; 23 - version = "1.2.1"; 24 - sha256 = "1rh4jib5g41b85bqrxkl5g74hk5ryf187y9fw0am76g59xlymfpr"; 23 + version = "1.4.0"; 24 + sha256 = "0f2bs5j1jjajcpa251dslnwkgglaam3b0cm6wdx5l7mbwvnmib2g"; 25 25 }; 26 26 27 27 popl = dependency { ··· 34 34 35 35 stdenv.mkDerivation rec { 36 36 pname = "snapcast"; 37 - version = "0.20.0"; 37 + version = "0.23.0"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "badaix"; 41 41 repo = "snapcast"; 42 42 rev = "v${version}"; 43 - sha256 = "152ic8hlyawcmj9pykb33xc6yx7il6yb9ilmsy6m9nlh40m8yxls"; 43 + sha256 = "0183hhghzn0fhw2qzc1s009q7miabpcf0pxaqjdscsl8iivxqknd"; 44 44 }; 45 45 46 46 nativeBuildInputs = [ cmake pkg-config boost170.dev ];
+1 -1
pkgs/applications/misc/qsyncthingtray/default.nix
··· 67 67 # 0.5.7 segfaults when opening the main panel with qt 5.7 and fails to compile with qt 5.8 68 68 # but qt > 5.6 works when only using the native browser 69 69 # https://github.com/sieren/QSyncthingTray/issues/223 70 - broken = (builtins.compareVersions qtbase.version "5.7.0" >= 0 && !preferNative); 70 + broken = (builtins.compareVersions qtbase.version "5.7.0" >= 0 && !preferNative) || stdenv.isDarwin; 71 71 }; 72 72 }
+2 -2
pkgs/applications/networking/appgate-sdp/default.nix
··· 96 96 in 97 97 stdenv.mkDerivation rec { 98 98 pname = "appgate-sdp"; 99 - version = "5.3.2"; 99 + version = "5.3.3"; 100 100 101 101 src = fetchurl { 102 102 url = "https://bin.appgate-sdp.com/${lib.versions.majorMinor version}/client/appgate-sdp_${version}_amd64.deb"; 103 - sha256 = "123d4mx2nsh8q3ckm4g2chdcdwgg0cz9cvhiwjggxzvy7j6bqgy4"; 103 + sha256 = "1854m93mr2crg68zhh1pgwwis0dqdv0778wqrb8dz9sdz940rza8"; 104 104 }; 105 105 106 106 dontConfigure = true;
+9 -9
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 1 1 { 2 2 "stable": { 3 - "version": "88.0.4324.146", 4 - "sha256": "0zc2gx5wjv00n2xmlagjd2xv4plg128d1kkhy7j8kpxvx3xiic9q", 5 - "sha256bin64": "109wz6w1c8v32b7fvcbks1wj8ycdyb9y88alksmr3h42z3s0b4id", 3 + "version": "88.0.4324.150", 4 + "sha256": "1hrqrggg4g1hjmaajbpydwsij2mfkfj5ccs1lj76nv4qj91yj4mf", 5 + "sha256bin64": "0xyhvhppxk95clk6vycg2yca1yyzpi13rs3lhs4j9a482api6ks0", 6 6 "deps": { 7 7 "gn": { 8 8 "version": "2020-11-05", ··· 31 31 } 32 32 }, 33 33 "dev": { 34 - "version": "90.0.4400.8", 35 - "sha256": "0z7695r8k1xm5kx7cc42kmcr11dbagcwjak32sglj0sw3hsr2yqz", 36 - "sha256bin64": "11gp2sxaly66qfb2gfxnikq1xad520r32pgshkm2jsb7a7vj7mmf", 34 + "version": "90.0.4408.0", 35 + "sha256": "0bg16nz65j13a8sdzrzkmbidlglh7bz7y8s4bi68il9ppbffw3k4", 36 + "sha256bin64": "0ad2xif8ng71ian07vb8h3jsd5wh95xndja43vwswc3072zk5h05", 37 37 "deps": { 38 38 "gn": { 39 - "version": "2021-01-14", 39 + "version": "2021-01-25", 40 40 "url": "https://gn.googlesource.com/gn", 41 - "rev": "d62642c920e6a0d1756316d225a90fd6faa9e21e", 42 - "sha256": "0f1i079asiznn092vm6lyad96wcs8pxh95fjmjbnaqjaalivsic0" 41 + "rev": "55ad154c961d8326315b1c8147f4e504cd95e9e6", 42 + "sha256": "0x5i1axkg44z412357sdb6kgs1h9ykzy8p5c7s40bybs4hg33lkc" 43 43 } 44 44 } 45 45 },
+2 -2
pkgs/applications/networking/cluster/k3s/default.nix
··· 120 120 # with generated bindata yet. 121 121 k3sBuildStage1 = buildGoPackage rec { 122 122 name = "k3s-build-1"; 123 - version = "${k3sVersion}"; 123 + version = k3sVersion; 124 124 125 125 goPackagePath = "github.com/rancher/k3s"; 126 126 ··· 160 160 }; 161 161 k3sBin = buildGoPackage rec { 162 162 name = "k3s-bin"; 163 - version = "${k3sVersion}"; 163 + version = k3sVersion; 164 164 165 165 goPackagePath = "github.com/rancher/k3s"; 166 166
+2 -2
pkgs/applications/networking/cluster/kube3d/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube3d"; 5 - version = "4.0.0"; 5 + version = "4.1.0"; 6 6 7 7 excludedPackages = "tools"; 8 8 ··· 10 10 owner = "rancher"; 11 11 repo = "k3d"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-sHtPW9EaTycHh9d/vp28BvzhmbLUQYsu6yMfJlJYH+k="; 13 + sha256 = "sha256-hhgZpX6nM5viGW37gxejO1SRRlN9+m8F6j9EV9/6ApM="; 14 14 }; 15 15 16 16 vendorSha256 = null;
+1 -3
pkgs/applications/networking/gns3/server.nix
··· 34 34 }; 35 35 36 36 postPatch = '' 37 - # yarl 1.4+ only requires Python 3.6+ 38 37 substituteInPlace requirements.txt \ 39 - --replace "aiohttp==3.6.2" "aiohttp>=3.6.2" \ 40 - --replace "yarl==1.3.0" "" 38 + --replace "aiohttp==3.6.2" "aiohttp>=3.6.2" 41 39 ''; 42 40 43 41 propagatedBuildInputs = with python.pkgs; [
+2 -2
pkgs/applications/networking/gopher/sacc/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "sacc"; 7 - version = "1.02"; 7 + version = "1.03"; 8 8 9 9 src = fetchurl { 10 10 url = "ftp://bitreich.org/releases/sacc/sacc-${version}.tgz"; 11 - sha512 = "18ja95cscgjaj1xqn70dj0482f76d0561bdcc47flqfsjh4mqckjqr65qv7awnw6rzm03i5cp45j1qx12y0y83skgsar4pplmy8q014"; 11 + sha512 = "sha512-vOjAGBM2+080JZv4C4b5dNRTTX45evWFEJfK1DRaWCYrHRCAe07QdEIrHhbaIxhSYfrBd3D1y75rmDnuPC4THA=="; 12 12 }; 13 13 14 14 inherit patches;
+3
pkgs/applications/networking/protonvpn-gui/default.nix
··· 76 76 done 77 77 ''; 78 78 79 + # no tests 80 + doCheck = false; 81 + 79 82 meta = with lib; { 80 83 description = "Linux GUI for ProtonVPN, written in Python"; 81 84 homepage = "https://github.com/ProtonVPN/linux-gui";
+7 -12
pkgs/applications/office/libreoffice/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, lib, pam, python3, libxslt, perl, ArchiveZip, gettext 1 + { stdenv, fetchurl, fetchpatch, lib, pam, python3, libxslt, perl, ArchiveZip, box2d, gettext 2 2 , IOCompress, zlib, libjpeg, expat, freetype, libwpd 3 3 , libxml2, db, curl, fontconfig, libsndfile, neon 4 4 , bison, flex, zip, unzip, gtk3, libmspack, getopt, file, cairo, which ··· 58 58 59 59 outputs = [ "out" "dev" ]; 60 60 61 - # For some reason librdf_redland sometimes refers to rasqal.h instead 62 - # of rasqal/rasqal.h 63 61 NIX_CFLAGS_COMPILE = [ 64 - "-I${librdf_rasqal}/include/rasqal" 65 - ] ++ lib.optionals stdenv.isx86_64 [ "-mno-fma" "-mno-avx" ] 66 - # https://bugs.documentfoundation.org/show_bug.cgi?id=78174#c10 67 - ++ [ "-fno-visibility-inlines-hidden" ]; 62 + "-I${librdf_rasqal}/include/rasqal" # librdf_redland refers to rasqal.h instead of rasqal/rasqal.h 63 + "-fno-visibility-inlines-hidden" # https://bugs.documentfoundation.org/show_bug.cgi?id=78174#c10 64 + ]; 68 65 69 - patches = [ 70 - ./xdg-open-brief.patch 71 - ]; 66 + patches = [ ./xdg-open-brief.patch ]; 72 67 73 68 tarballPath = "external/tarballs"; 74 69 ··· 378 373 "--enable-kf5" 379 374 "--enable-qt5" 380 375 "--enable-gtk3-kde5" 381 - ] ++ lib.optional (lib.versionOlder version "6.4") "--disable-gtk"; # disables GTK2, GTK3 is still there 376 + ]; 382 377 383 378 checkPhase = '' 384 379 make unitcheck ··· 391 386 ++ lib.optional kdeIntegration wrapQtAppsHook; 392 387 393 388 buildInputs = with xorg; 394 - [ ant ArchiveZip boost cairo clucene_core 389 + [ ant ArchiveZip boost box2d cairo clucene_core 395 390 IOCompress cppunit cups curl db dbus-glib expat file flex fontconfig 396 391 freetype getopt gperf gtk3 397 392 hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
+67 -60
pkgs/applications/office/libreoffice/src-fresh/download.nix
··· 35 35 md5name = "35e06a3bd7cd8f66be822c7d64e80c2b6051a181e9e897006917cb8e7988a543-boost_1_71_0.tar.xz"; 36 36 } 37 37 { 38 + name = "box2d-2.3.1.tar.gz"; 39 + url = "https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz"; 40 + sha256 = "58ffc8475a8650aadc351345aef696937747b40501ab78d72c197c5ff5b3035c"; 41 + md5 = ""; 42 + md5name = "58ffc8475a8650aadc351345aef696937747b40501ab78d72c197c5ff5b3035c-box2d-2.3.1.tar.gz"; 43 + } 44 + { 38 45 name = "breakpad.zip"; 39 46 url = "https://dev-www.libreoffice.org/src/breakpad.zip"; 40 47 sha256 = "7060149be16a8789b0ccf596bdeaf63115f03f520acb508f72a14686fb311cb9"; ··· 329 336 md5name = "c5e167c042afd2d7ad642ace6b643863baeb33880781983563e1ab68a30d3e95-glm-0.9.9.7.zip"; 330 337 } 331 338 { 332 - name = "gpgme-1.9.0.tar.bz2"; 333 - url = "https://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2"; 334 - sha256 = "1b29fedb8bfad775e70eafac5b0590621683b2d9869db994568e6401f4034ceb"; 339 + name = "gpgme-1.13.1.tar.bz2"; 340 + url = "https://dev-www.libreoffice.org/src/gpgme-1.13.1.tar.bz2"; 341 + sha256 = "c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46"; 335 342 md5 = ""; 336 - md5name = "1b29fedb8bfad775e70eafac5b0590621683b2d9869db994568e6401f4034ceb-gpgme-1.9.0.tar.bz2"; 343 + md5name = "c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46-gpgme-1.13.1.tar.bz2"; 337 344 } 338 345 { 339 346 name = "graphite2-minimal-1.3.14.tgz"; ··· 371 378 md5name = "5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 372 379 } 373 380 { 374 - name = "icu4c-67_1-src.tgz"; 375 - url = "https://dev-www.libreoffice.org/src/icu4c-67_1-src.tgz"; 376 - sha256 = "94a80cd6f251a53bd2a997f6f1b5ac6653fe791dfab66e1eb0227740fb86d5dc"; 381 + name = "icu4c-68_1-src.tgz"; 382 + url = "https://dev-www.libreoffice.org/src/icu4c-68_1-src.tgz"; 383 + sha256 = "a9f2e3d8b4434b8e53878b4308bd1e6ee51c9c7042e2b1a376abefb6fbb29f2d"; 377 384 md5 = ""; 378 - md5name = "94a80cd6f251a53bd2a997f6f1b5ac6653fe791dfab66e1eb0227740fb86d5dc-icu4c-67_1-src.tgz"; 385 + md5name = "a9f2e3d8b4434b8e53878b4308bd1e6ee51c9c7042e2b1a376abefb6fbb29f2d-icu4c-68_1-src.tgz"; 379 386 } 380 387 { 381 - name = "icu4c-67_1-data.zip"; 382 - url = "https://dev-www.libreoffice.org/src/icu4c-67_1-data.zip"; 383 - sha256 = "7c16a59cc8c06128b7ecc1dc4fc056b36b17349312829b17408b9e67b05c4a7e"; 388 + name = "icu4c-68_1-data.zip"; 389 + url = "https://dev-www.libreoffice.org/src/icu4c-68_1-data.zip"; 390 + sha256 = "03ea8b4694155620548c8c0ba20444f1e7db246cc79e3b9c4fc7a960b160d510"; 384 391 md5 = ""; 385 - md5name = "7c16a59cc8c06128b7ecc1dc4fc056b36b17349312829b17408b9e67b05c4a7e-icu4c-67_1-data.zip"; 392 + md5name = "03ea8b4694155620548c8c0ba20444f1e7db246cc79e3b9c4fc7a960b160d510-icu4c-68_1-data.zip"; 386 393 } 387 394 { 388 395 name = "flow-engine-0.9.4.zip"; ··· 483 490 md5name = "b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2"; 484 491 } 485 492 { 486 - name = "lcms2-2.9.tar.gz"; 487 - url = "https://dev-www.libreoffice.org/src/lcms2-2.9.tar.gz"; 488 - sha256 = "48c6fdf98396fa245ed86e622028caf49b96fa22f3e5734f853f806fbc8e7d20"; 493 + name = "lcms2-2.11.tar.gz"; 494 + url = "https://dev-www.libreoffice.org/src/lcms2-2.11.tar.gz"; 495 + sha256 = "dc49b9c8e4d7cdff376040571a722902b682a795bf92985a85b48854c270772e"; 489 496 md5 = ""; 490 - md5name = "48c6fdf98396fa245ed86e622028caf49b96fa22f3e5734f853f806fbc8e7d20-lcms2-2.9.tar.gz"; 497 + md5name = "dc49b9c8e4d7cdff376040571a722902b682a795bf92985a85b48854c270772e-lcms2-2.11.tar.gz"; 491 498 } 492 499 { 493 - name = "libassuan-2.5.1.tar.bz2"; 494 - url = "https://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2"; 495 - sha256 = "47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449"; 500 + name = "libassuan-2.5.3.tar.bz2"; 501 + url = "https://dev-www.libreoffice.org/src/libassuan-2.5.3.tar.bz2"; 502 + sha256 = "91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f765e702"; 496 503 md5 = ""; 497 - md5name = "47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449-libassuan-2.5.1.tar.bz2"; 504 + md5name = "91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f765e702-libassuan-2.5.3.tar.bz2"; 498 505 } 499 506 { 500 507 name = "libatomic_ops-7.6.8.tar.gz"; ··· 525 532 md5name = "72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056-libffi-3.3.tar.gz"; 526 533 } 527 534 { 528 - name = "libgpg-error-1.27.tar.bz2"; 529 - url = "https://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2"; 530 - sha256 = "4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2"; 535 + name = "libgpg-error-1.37.tar.bz2"; 536 + url = "https://dev-www.libreoffice.org/src/libgpg-error-1.37.tar.bz2"; 537 + sha256 = "b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763"; 531 538 md5 = ""; 532 - md5name = "4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2-libgpg-error-1.27.tar.bz2"; 539 + md5name = "b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763-libgpg-error-1.37.tar.bz2"; 533 540 } 534 541 { 535 542 name = "liblangtag-0.6.2.tar.bz2"; ··· 595 602 md5name = "431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b-mariadb-connector-c-3.1.8-src.tar.gz"; 596 603 } 597 604 { 598 - name = "mdds-1.6.0.tar.bz2"; 599 - url = "https://dev-www.libreoffice.org/src/mdds-1.6.0.tar.bz2"; 600 - sha256 = "f1585c9cbd12f83a6d43d395ac1ab6a9d9d5d77f062c7b5f704e24ed72dae07d"; 605 + name = "mdds-1.7.0.tar.bz2"; 606 + url = "https://dev-www.libreoffice.org/src/mdds-1.7.0.tar.bz2"; 607 + sha256 = "a66a2a8293a3abc6cd9baff7c236156e2666935cbfb69a15d64d38141638fecf"; 601 608 md5 = ""; 602 - md5name = "f1585c9cbd12f83a6d43d395ac1ab6a9d9d5d77f062c7b5f704e24ed72dae07d-mdds-1.6.0.tar.bz2"; 609 + md5name = "a66a2a8293a3abc6cd9baff7c236156e2666935cbfb69a15d64d38141638fecf-mdds-1.7.0.tar.bz2"; 603 610 } 604 611 { 605 612 name = "mDNSResponder-878.200.35.tar.gz"; ··· 616 623 md5name = "ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba-libmspub-0.1.4.tar.xz"; 617 624 } 618 625 { 619 - name = "libmwaw-0.3.16.tar.xz"; 620 - url = "https://dev-www.libreoffice.org/src/libmwaw-0.3.16.tar.xz"; 621 - sha256 = "0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868"; 626 + name = "libmwaw-0.3.17.tar.xz"; 627 + url = "https://dev-www.libreoffice.org/src/libmwaw-0.3.17.tar.xz"; 628 + sha256 = "8e1537eb1de1b4714f4bf0a20478f342c5d71a65bf99307a694b1e9e30bb911c"; 622 629 md5 = ""; 623 - md5name = "0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868-libmwaw-0.3.16.tar.xz"; 630 + md5name = "8e1537eb1de1b4714f4bf0a20478f342c5d71a65bf99307a694b1e9e30bb911c-libmwaw-0.3.17.tar.xz"; 624 631 } 625 632 { 626 633 name = "mythes-1.2.4.tar.gz"; ··· 630 637 md5name = "a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 631 638 } 632 639 { 633 - name = "neon-0.30.2.tar.gz"; 634 - url = "https://dev-www.libreoffice.org/src/neon-0.30.2.tar.gz"; 635 - sha256 = "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca"; 640 + name = "neon-0.31.1.tar.gz"; 641 + url = "https://dev-www.libreoffice.org/src/neon-0.31.1.tar.gz"; 642 + sha256 = "c9dfcee723050df37ce18ba449d7707b78e7ab8230f3a4c59d9112e17dc2718d"; 636 643 md5 = ""; 637 - md5name = "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca-neon-0.30.2.tar.gz"; 644 + md5name = "c9dfcee723050df37ce18ba449d7707b78e7ab8230f3a4c59d9112e17dc2718d-neon-0.31.1.tar.gz"; 638 645 } 639 646 { 640 647 name = "nss-3.55-with-nspr-4.27.tar.gz"; ··· 672 679 md5name = "cdd6cffdebcd95161a73305ec13fc7a78e9707b46ca9f84fb897cd5626df3824-openldap-2.4.45.tgz"; 673 680 } 674 681 { 675 - name = "openssl-1.0.2t.tar.gz"; 676 - url = "https://dev-www.libreoffice.org/src/openssl-1.0.2t.tar.gz"; 677 - sha256 = "14cb464efe7ac6b54799b34456bd69558a749a4931ecfd9cf9f71d7881cac7bc"; 682 + name = "openssl-1.1.1i.tar.gz"; 683 + url = "https://dev-www.libreoffice.org/src/openssl-1.1.1i.tar.gz"; 684 + sha256 = "e8be6a35fe41d10603c3cc635e93289ed00bf34b79671a3a4de64fcee00d5242"; 678 685 md5 = ""; 679 - md5name = "14cb464efe7ac6b54799b34456bd69558a749a4931ecfd9cf9f71d7881cac7bc-openssl-1.0.2t.tar.gz"; 686 + md5name = "e8be6a35fe41d10603c3cc635e93289ed00bf34b79671a3a4de64fcee00d5242-openssl-1.1.1i.tar.gz"; 680 687 } 681 688 { 682 - name = "liborcus-0.15.4.tar.bz2"; 683 - url = "https://dev-www.libreoffice.org/src/liborcus-0.15.4.tar.bz2"; 684 - sha256 = "cfb2aa60825f2a78589ed030c07f46a1ee16ef8a2d1bf2279192fbc1ae5a5f61"; 689 + name = "liborcus-0.16.1.tar.bz2"; 690 + url = "https://dev-www.libreoffice.org/src/liborcus-0.16.1.tar.bz2"; 691 + sha256 = "c700d1325f744104d9fca0d5a019434901e9d51a16eedfb05792f90a298587a4"; 685 692 md5 = ""; 686 - md5name = "cfb2aa60825f2a78589ed030c07f46a1ee16ef8a2d1bf2279192fbc1ae5a5f61-liborcus-0.15.4.tar.bz2"; 693 + md5name = "c700d1325f744104d9fca0d5a019434901e9d51a16eedfb05792f90a298587a4-liborcus-0.16.1.tar.bz2"; 687 694 } 688 695 { 689 696 name = "owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; ··· 721 728 md5name = "505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca-libpng-1.6.37.tar.xz"; 722 729 } 723 730 { 724 - name = "poppler-0.82.0.tar.xz"; 725 - url = "https://dev-www.libreoffice.org/src/poppler-0.82.0.tar.xz"; 726 - sha256 = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df"; 731 + name = "poppler-21.01.0.tar.xz"; 732 + url = "https://dev-www.libreoffice.org/src/poppler-21.01.0.tar.xz"; 733 + sha256 = "016dde34e5f868ea98a32ca99b643325a9682281500942b7113f4ec88d20e2f3"; 727 734 md5 = ""; 728 - md5name = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df-poppler-0.82.0.tar.xz"; 735 + md5name = "016dde34e5f868ea98a32ca99b643325a9682281500942b7113f4ec88d20e2f3-poppler-21.01.0.tar.xz"; 729 736 } 730 737 { 731 738 name = "postgresql-9.2.24.tar.bz2"; ··· 735 742 md5name = "a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126-postgresql-9.2.24.tar.bz2"; 736 743 } 737 744 { 738 - name = "Python-3.7.7.tar.xz"; 739 - url = "https://dev-www.libreoffice.org/src/Python-3.7.7.tar.xz"; 740 - sha256 = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136"; 745 + name = "Python-3.8.4.tar.xz"; 746 + url = "https://dev-www.libreoffice.org/src/Python-3.8.4.tar.xz"; 747 + sha256 = "5f41968a95afe9bc12192d7e6861aab31e80a46c46fa59d3d837def6a4cd4d37"; 741 748 md5 = ""; 742 - md5name = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136-Python-3.7.7.tar.xz"; 749 + md5name = "5f41968a95afe9bc12192d7e6861aab31e80a46c46fa59d3d837def6a4cd4d37-Python-3.8.4.tar.xz"; 743 750 } 744 751 { 745 752 name = "QR-Code-generator-1.4.0.tar.gz"; ··· 798 805 md5name = "6988d394b62c3494635b6f0760bc3079f9a0cd380baf0f6b075af1eb9fa5e700-serf-1.2.1.tar.bz2"; 799 806 } 800 807 { 801 - name = "skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 802 - url = "https://dev-www.libreoffice.org/src/skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 803 - sha256 = "3294877fa2b61b220d98a0f7bfc11325429b13edd2cf455444c703ee3a14d760"; 808 + name = "skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz"; 809 + url = "https://dev-www.libreoffice.org/src/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz"; 810 + sha256 = "f293656a15342a53bb407b932fc907c6894178a162f09728bd383e24d84b1301"; 804 811 md5 = ""; 805 - md5name = "3294877fa2b61b220d98a0f7bfc11325429b13edd2cf455444c703ee3a14d760-skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 812 + md5name = "f293656a15342a53bb407b932fc907c6894178a162f09728bd383e24d84b1301-skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz"; 806 813 } 807 814 { 808 815 name = "libstaroffice-0.0.7.tar.xz"; ··· 854 861 md5name = "99b3f7f8832385748582ab8130fbb9e5607bd5179bebf9751ac1d51a53099d1c-libwpg-0.3.3.tar.xz"; 855 862 } 856 863 { 857 - name = "libwps-0.4.11.tar.xz"; 858 - url = "https://dev-www.libreoffice.org/src/libwps-0.4.11.tar.xz"; 859 - sha256 = "a8fdaabc28654a975fa78c81873ac503ba18f0d1cdbb942f470a21d29284b4d1"; 864 + name = "libwps-0.4.12.tar.xz"; 865 + url = "https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz"; 866 + sha256 = "e21afb52a06d03b774c5a8c72679687ab64891b91ce0c3bdf2d3e97231534edb"; 860 867 md5 = ""; 861 - md5name = "a8fdaabc28654a975fa78c81873ac503ba18f0d1cdbb942f470a21d29284b4d1-libwps-0.4.11.tar.xz"; 868 + md5name = "e21afb52a06d03b774c5a8c72679687ab64891b91ce0c3bdf2d3e97231534edb-libwps-0.4.12.tar.xz"; 862 869 } 863 870 { 864 871 name = "xsltml_2.1.2.zip";
+6 -6
pkgs/applications/office/libreoffice/src-fresh/primary.nix
··· 7 7 }; 8 8 9 9 major = "7"; 10 - minor = "0"; 11 - patch = "4"; 12 - tweak = "2"; 10 + minor = "1"; 11 + patch = "0"; 12 + tweak = "3"; 13 13 14 14 subdir = "${major}.${minor}.${patch}"; 15 15 ··· 17 17 18 18 src = fetchurl { 19 19 url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - sha256 = "1g9akxvm7fh6lnprnc3g184qdy8gbinhb4rb60gjpw82ip6d5acz"; 20 + sha256 = "1rpk90g1g8m70nrj4lwkg50aiild73d29yjlgyrgg8wx6hzq7l4y"; 21 21 }; 22 22 23 23 # FIXME rename 24 24 translations = fetchSrc { 25 25 name = "translations"; 26 - sha256 = "1v3kpk56fm783d5wihx41jqidpclizkfxrg4n0pq95d79hdiljsl"; 26 + sha256 = "0m6cxyrxig8akv9183xdn6ialmjddicn676149nm506yc5y0szmi"; 27 27 }; 28 28 29 29 # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from ··· 31 31 32 32 help = fetchSrc { 33 33 name = "help"; 34 - sha256 = "1np9f799ww12kggl5az6piv5fi9rf737il5a5r47r4wl2li56qqb"; 34 + sha256 = "1kvsi28n8x3gxpiszxh84x05aw23i3z4id63pgw2s7mfclby52k9"; 35 35 }; 36 36 }
+221 -193
pkgs/applications/office/libreoffice/src-still/download.nix
··· 1 1 [ 2 2 { 3 3 name = "libabw-0.1.3.tar.xz"; 4 - url = "http://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz"; 4 + url = "https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz"; 5 5 sha256 = "e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed"; 6 6 md5 = ""; 7 7 md5name = "e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed-libabw-0.1.3.tar.xz"; 8 8 } 9 9 { 10 10 name = "commons-logging-1.2-src.tar.gz"; 11 - url = "http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz"; 11 + url = "https://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz"; 12 12 sha256 = "49665da5a60d033e6dff40fe0a7f9173e886ae859ce6096c1afe34c48b677c81"; 13 13 md5 = ""; 14 14 md5name = "49665da5a60d033e6dff40fe0a7f9173e886ae859ce6096c1afe34c48b677c81-commons-logging-1.2-src.tar.gz"; 15 15 } 16 16 { 17 17 name = "apr-1.5.2.tar.gz"; 18 - url = "http://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz"; 18 + url = "https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz"; 19 19 sha256 = "1af06e1720a58851d90694a984af18355b65bb0d047be03ec7d659c746d6dbdb"; 20 20 md5 = ""; 21 21 md5name = "1af06e1720a58851d90694a984af18355b65bb0d047be03ec7d659c746d6dbdb-apr-1.5.2.tar.gz"; 22 22 } 23 23 { 24 24 name = "apr-util-1.5.4.tar.gz"; 25 - url = "http://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz"; 25 + url = "https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz"; 26 26 sha256 = "976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19"; 27 27 md5 = ""; 28 28 md5name = "976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19-apr-util-1.5.4.tar.gz"; 29 29 } 30 30 { 31 - name = "boost_1_69_0.tar.bz2"; 32 - url = "http://dev-www.libreoffice.org/src/boost_1_69_0.tar.bz2"; 33 - sha256 = "8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406"; 31 + name = "boost_1_71_0.tar.xz"; 32 + url = "https://dev-www.libreoffice.org/src/boost_1_71_0.tar.xz"; 33 + sha256 = "35e06a3bd7cd8f66be822c7d64e80c2b6051a181e9e897006917cb8e7988a543"; 34 34 md5 = ""; 35 - md5name = "8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406-boost_1_69_0.tar.bz2"; 35 + md5name = "35e06a3bd7cd8f66be822c7d64e80c2b6051a181e9e897006917cb8e7988a543-boost_1_71_0.tar.xz"; 36 36 } 37 37 { 38 38 name = "breakpad.zip"; 39 - url = "http://dev-www.libreoffice.org/src/breakpad.zip"; 39 + url = "https://dev-www.libreoffice.org/src/breakpad.zip"; 40 40 sha256 = "7060149be16a8789b0ccf596bdeaf63115f03f520acb508f72a14686fb311cb9"; 41 41 md5 = ""; 42 42 md5name = "7060149be16a8789b0ccf596bdeaf63115f03f520acb508f72a14686fb311cb9-breakpad.zip"; 43 43 } 44 44 { 45 45 name = "bsh-2.0b6-src.zip"; 46 - url = "http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip"; 46 + url = "https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip"; 47 47 sha256 = "9e93c73e23aff644b17dfff656444474c14150e7f3b38b19635e622235e01c96"; 48 48 md5 = "beeca87be45ec87d241ddd0e1bad80c1"; 49 49 md5name = "beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip"; 50 50 } 51 51 { 52 52 name = "bzip2-1.0.6.tar.gz"; 53 - url = "http://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz"; 53 + url = "https://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz"; 54 54 sha256 = "a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd"; 55 55 md5 = "00b516f4704d4a7cb50a1d97e6e8e15b"; 56 56 md5name = "00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz"; 57 57 } 58 58 { 59 59 name = "cairo-1.16.0.tar.xz"; 60 - url = "http://dev-www.libreoffice.org/src/cairo-1.16.0.tar.xz"; 60 + url = "https://dev-www.libreoffice.org/src/cairo-1.16.0.tar.xz"; 61 61 sha256 = "5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331"; 62 62 md5 = ""; 63 63 md5name = "5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331-cairo-1.16.0.tar.xz"; 64 64 } 65 65 { 66 - name = "libcdr-0.1.5.tar.xz"; 67 - url = "http://dev-www.libreoffice.org/src/libcdr-0.1.5.tar.xz"; 68 - sha256 = "6ace5c499a8be34ad871e825442ce388614ae2d8675c4381756a7319429e3a48"; 66 + name = "libcdr-0.1.6.tar.xz"; 67 + url = "https://dev-www.libreoffice.org/src/libcdr-0.1.6.tar.xz"; 68 + sha256 = "01cd00b04a030977e544433c2d127c997205332cd9b8e35ec0ee17110da7f861"; 69 69 md5 = ""; 70 - md5name = "6ace5c499a8be34ad871e825442ce388614ae2d8675c4381756a7319429e3a48-libcdr-0.1.5.tar.xz"; 70 + md5name = "01cd00b04a030977e544433c2d127c997205332cd9b8e35ec0ee17110da7f861-libcdr-0.1.6.tar.xz"; 71 71 } 72 72 { 73 73 name = "clucene-core-2.3.3.4.tar.gz"; 74 - url = "http://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz"; 74 + url = "https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz"; 75 75 sha256 = "ddfdc433dd8ad31b5c5819cc4404a8d2127472a3b720d3e744e8c51d79732eab"; 76 76 md5 = "48d647fbd8ef8889e5a7f422c1bfda94"; 77 77 md5name = "48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz"; 78 78 } 79 79 { 80 + name = "dtoa-20180411.tgz"; 81 + url = "https://dev-www.libreoffice.org/src/dtoa-20180411.tgz"; 82 + sha256 = "0082d0684f7db6f62361b76c4b7faba19e0c7ce5cb8e36c4b65fea8281e711b4"; 83 + md5 = ""; 84 + md5name = "0082d0684f7db6f62361b76c4b7faba19e0c7ce5cb8e36c4b65fea8281e711b4-dtoa-20180411.tgz"; 85 + } 86 + { 80 87 name = "libcmis-0.5.2.tar.xz"; 81 - url = "http://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz"; 88 + url = "https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz"; 82 89 sha256 = "d7b18d9602190e10d437f8a964a32e983afd57e2db316a07d87477a79f5000a2"; 83 90 md5 = ""; 84 91 md5name = "d7b18d9602190e10d437f8a964a32e983afd57e2db316a07d87477a79f5000a2-libcmis-0.5.2.tar.xz"; 85 92 } 86 93 { 87 94 name = "CoinMP-1.7.6.tgz"; 88 - url = "http://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz"; 95 + url = "https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz"; 89 96 sha256 = "86c798780b9e1f5921fe4efe651a93cb420623b45aa1fdff57af8c37f116113f"; 90 97 md5 = ""; 91 98 md5name = "86c798780b9e1f5921fe4efe651a93cb420623b45aa1fdff57af8c37f116113f-CoinMP-1.7.6.tgz"; 92 99 } 93 100 { 94 - name = "cppunit-1.14.0.tar.gz"; 95 - url = "http://dev-www.libreoffice.org/src/cppunit-1.14.0.tar.gz"; 96 - sha256 = "3d569869d27b48860210c758c4f313082103a5e58219a7669b52bfd29d674780"; 101 + name = "cppunit-1.15.1.tar.gz"; 102 + url = "https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz"; 103 + sha256 = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7"; 97 104 md5 = ""; 98 - md5name = "3d569869d27b48860210c758c4f313082103a5e58219a7669b52bfd29d674780-cppunit-1.14.0.tar.gz"; 105 + md5name = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7-cppunit-1.15.1.tar.gz"; 99 106 } 100 107 { 101 108 name = "converttexttonumber-1-5-0.oxt"; 102 - url = "http://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt"; 109 + url = "https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt"; 103 110 sha256 = "71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3"; 104 111 md5 = "1f467e5bb703f12cbbb09d5cf67ecf4a"; 105 112 md5name = "1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt"; 106 113 } 107 114 { 108 - name = "curl-7.65.0.tar.xz"; 109 - url = "http://dev-www.libreoffice.org/src/curl-7.65.0.tar.xz"; 110 - sha256 = "7766d263929404f693905b5e5222aa0f2bdf8c66ab4b8758f0c0820a42b966cd"; 115 + name = "curl-7.71.0.tar.xz"; 116 + url = "https://dev-www.libreoffice.org/src/curl-7.71.0.tar.xz"; 117 + sha256 = "cdf18794393d8bead915312708a9e5d819c6e9919de14b20d5c8e7987abd9772"; 111 118 md5 = ""; 112 - md5name = "7766d263929404f693905b5e5222aa0f2bdf8c66ab4b8758f0c0820a42b966cd-curl-7.65.0.tar.xz"; 119 + md5name = "cdf18794393d8bead915312708a9e5d819c6e9919de14b20d5c8e7987abd9772-curl-7.71.0.tar.xz"; 113 120 } 114 121 { 115 122 name = "libe-book-0.1.3.tar.xz"; 116 - url = "http://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz"; 123 + url = "https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz"; 117 124 sha256 = "7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9"; 118 125 md5 = ""; 119 126 md5name = "7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9-libe-book-0.1.3.tar.xz"; 120 127 } 121 128 { 122 129 name = "libepoxy-1.5.3.tar.xz"; 123 - url = "http://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz"; 130 + url = "https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz"; 124 131 sha256 = "002958c5528321edd53440235d3c44e71b5b1e09b9177e8daf677450b6c4433d"; 125 132 md5 = ""; 126 133 md5name = "002958c5528321edd53440235d3c44e71b5b1e09b9177e8daf677450b6c4433d-libepoxy-1.5.3.tar.xz"; 127 134 } 128 135 { 129 136 name = "epm-3.7.tar.gz"; 130 - url = "http://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz"; 137 + url = "https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz"; 131 138 sha256 = "b3fc4c5445de6c9a801504a3ea3efb2d4ea9d5a622c9427e716736e7713ddb91"; 132 139 md5 = "3ade8cfe7e59ca8e65052644fed9fca4"; 133 140 md5name = "3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz"; 134 141 } 135 142 { 136 143 name = "libepubgen-0.1.1.tar.xz"; 137 - url = "http://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz"; 144 + url = "https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz"; 138 145 sha256 = "03e084b994cbeffc8c3dd13303b2cb805f44d8f2c3b79f7690d7e3fc7f6215ad"; 139 146 md5 = ""; 140 147 md5name = "03e084b994cbeffc8c3dd13303b2cb805f44d8f2c3b79f7690d7e3fc7f6215ad-libepubgen-0.1.1.tar.xz"; 141 148 } 142 149 { 143 150 name = "libetonyek-0.1.9.tar.xz"; 144 - url = "http://dev-www.libreoffice.org/src/libetonyek-0.1.9.tar.xz"; 151 + url = "https://dev-www.libreoffice.org/src/libetonyek-0.1.9.tar.xz"; 145 152 sha256 = "e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a"; 146 153 md5 = ""; 147 154 md5name = "e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a-libetonyek-0.1.9.tar.xz"; 148 155 } 149 156 { 150 157 name = "expat-2.2.8.tar.bz2"; 151 - url = "http://dev-www.libreoffice.org/src/expat-2.2.8.tar.bz2"; 158 + url = "https://dev-www.libreoffice.org/src/expat-2.2.8.tar.bz2"; 152 159 sha256 = "9a130948b05a82da34e4171d5f5ae5d321d9630277af02c8fa51e431f6475102"; 153 160 md5 = ""; 154 161 md5name = "9a130948b05a82da34e4171d5f5ae5d321d9630277af02c8fa51e431f6475102-expat-2.2.8.tar.bz2"; 155 162 } 156 163 { 157 164 name = "Firebird-3.0.0.32483-0.tar.bz2"; 158 - url = "http://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2"; 165 + url = "https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2"; 159 166 sha256 = "6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860"; 160 167 md5 = ""; 161 168 md5name = "6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860-Firebird-3.0.0.32483-0.tar.bz2"; 162 169 } 163 170 { 164 - name = "fontconfig-2.12.6.tar.bz2"; 165 - url = "http://dev-www.libreoffice.org/src/fontconfig-2.12.6.tar.bz2"; 166 - sha256 = "cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017"; 171 + name = "fontconfig-2.13.91.tar.gz"; 172 + url = "https://dev-www.libreoffice.org/src/fontconfig-2.13.91.tar.gz"; 173 + sha256 = "19e5b1bc9d013a52063a44e1307629711f0bfef35b9aca16f9c793971e2eb1e5"; 167 174 md5 = ""; 168 - md5name = "cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017-fontconfig-2.12.6.tar.bz2"; 175 + md5name = "19e5b1bc9d013a52063a44e1307629711f0bfef35b9aca16f9c793971e2eb1e5-fontconfig-2.13.91.tar.gz"; 169 176 } 170 177 { 171 178 name = "crosextrafonts-20130214.tar.gz"; 172 - url = "http://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz"; 179 + url = "https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz"; 173 180 sha256 = "c48d1c2fd613c9c06c959c34da7b8388059e2408d2bb19845dc3ed35f76e4d09"; 174 181 md5 = "368f114c078f94214a308a74c7e991bc"; 175 182 md5name = "368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz"; 176 183 } 177 184 { 178 185 name = "crosextrafonts-carlito-20130920.tar.gz"; 179 - url = "http://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz"; 186 + url = "https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz"; 180 187 sha256 = "4bd12b6cbc321c1cf16da76e2c585c925ce956a08067ae6f6c64eff6ccfdaf5a"; 181 188 md5 = "c74b7223abe75949b4af367942d96c7a"; 182 189 md5name = "c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz"; 183 190 } 184 191 { 185 192 name = "dejavu-fonts-ttf-2.37.zip"; 186 - url = "http://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip"; 193 + url = "https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip"; 187 194 sha256 = "7576310b219e04159d35ff61dd4a4ec4cdba4f35c00e002a136f00e96a908b0a"; 188 195 md5 = "33e1e61fab06a547851ed308b4ffef42"; 189 196 md5name = "33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip"; 190 197 } 191 198 { 192 199 name = "GentiumBasic_1102.zip"; 193 - url = "http://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip"; 200 + url = "https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip"; 194 201 sha256 = "2f1a2c5491d7305dffd3520c6375d2f3e14931ee35c6d8ae1e8f098bf1a7b3cc"; 195 202 md5 = "1725634df4bb3dcb1b2c91a6175f8789"; 196 203 md5name = "1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip"; 197 204 } 198 205 { 199 206 name = "liberation-narrow-fonts-ttf-1.07.6.tar.gz"; 200 - url = "http://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz"; 207 + url = "https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz"; 201 208 sha256 = "8879d89b5ff7b506c9fc28efc31a5c0b954bbe9333e66e5283d27d20a8519ea3"; 202 209 md5 = ""; 203 210 md5name = "8879d89b5ff7b506c9fc28efc31a5c0b954bbe9333e66e5283d27d20a8519ea3-liberation-narrow-fonts-ttf-1.07.6.tar.gz"; 204 211 } 205 212 { 206 213 name = "liberation-fonts-ttf-2.00.4.tar.gz"; 207 - url = "http://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.00.4.tar.gz"; 214 + url = "https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.00.4.tar.gz"; 208 215 sha256 = "c40e95fc5e0ecb73d4be565ae2afc1114e2bc7dc5253e00ee92d8fd6cc4adf45"; 209 216 md5 = ""; 210 217 md5name = "c40e95fc5e0ecb73d4be565ae2afc1114e2bc7dc5253e00ee92d8fd6cc4adf45-liberation-fonts-ttf-2.00.4.tar.gz"; 211 218 } 212 219 { 213 220 name = "LinLibertineG-20120116.zip"; 214 - url = "http://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip"; 221 + url = "https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip"; 215 222 sha256 = "54adcb2bc8cac0927a647fbd9362f45eff48130ce6e2379dc3867643019e08c5"; 216 223 md5 = "e7a384790b13c29113e22e596ade9687"; 217 224 md5name = "e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip"; 218 225 } 219 226 { 220 227 name = "source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 221 - url = "http://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 228 + url = "https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 222 229 sha256 = "09466dce87653333f189acd8358c60c6736dcd95f042dee0b644bdcf65b6ae2f"; 223 230 md5 = "907d6e99f241876695c19ff3db0b8923"; 224 231 md5name = "907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 225 232 } 226 233 { 227 234 name = "source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 228 - url = "http://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 235 + url = "https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 229 236 sha256 = "e7bc9a1fec787a529e49f5a26b93dcdcf41506449dfc70f92cdef6d17eb6fb61"; 230 237 md5 = "edc4d741888bc0d38e32dbaa17149596"; 231 238 md5name = "edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 232 239 } 233 240 { 234 241 name = "source-serif-pro-3.000R.tar.gz"; 235 - url = "http://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz"; 242 + url = "https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz"; 236 243 sha256 = "826a2b784d5cdb4c2bbc7830eb62871528360a61a52689c102a101623f1928e3"; 237 244 md5 = ""; 238 245 md5name = "826a2b784d5cdb4c2bbc7830eb62871528360a61a52689c102a101623f1928e3-source-serif-pro-3.000R.tar.gz"; 239 246 } 240 247 { 241 248 name = "EmojiOneColor-SVGinOT-1.3.tar.gz"; 242 - url = "http://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz"; 249 + url = "https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz"; 243 250 sha256 = "d1a08f7c10589f22740231017694af0a7a270760c8dec33d8d1c038e2be0a0c7"; 244 251 md5 = ""; 245 252 md5name = "d1a08f7c10589f22740231017694af0a7a270760c8dec33d8d1c038e2be0a0c7-EmojiOneColor-SVGinOT-1.3.tar.gz"; 246 253 } 247 254 { 248 255 name = "noto-fonts-20171024.tar.gz"; 249 - url = "http://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz"; 256 + url = "https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz"; 250 257 sha256 = "29acc15a4c4d6b51201ba5d60f303dfbc2e5acbfdb70413c9ae1ed34fa259994"; 251 258 md5 = ""; 252 259 md5name = "29acc15a4c4d6b51201ba5d60f303dfbc2e5acbfdb70413c9ae1ed34fa259994-noto-fonts-20171024.tar.gz"; 253 260 } 254 261 { 255 262 name = "culmus-0.131.tar.gz"; 256 - url = "http://dev-www.libreoffice.org/src/culmus-0.131.tar.gz"; 263 + url = "https://dev-www.libreoffice.org/src/culmus-0.131.tar.gz"; 257 264 sha256 = "dcf112cfcccb76328dcfc095f4d7c7f4d2f7e48d0eed5e78b100d1d77ce2ed1b"; 258 265 md5 = ""; 259 266 md5name = "dcf112cfcccb76328dcfc095f4d7c7f4d2f7e48d0eed5e78b100d1d77ce2ed1b-culmus-0.131.tar.gz"; 260 267 } 261 268 { 262 269 name = "libre-hebrew-1.0.tar.gz"; 263 - url = "http://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz"; 270 + url = "https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz"; 264 271 sha256 = "f596257c1db706ce35795b18d7f66a4db99d427725f20e9384914b534142579a"; 265 272 md5 = ""; 266 273 md5name = "f596257c1db706ce35795b18d7f66a4db99d427725f20e9384914b534142579a-libre-hebrew-1.0.tar.gz"; 267 274 } 268 275 { 269 276 name = "alef-1.001.tar.gz"; 270 - url = "http://dev-www.libreoffice.org/src/alef-1.001.tar.gz"; 277 + url = "https://dev-www.libreoffice.org/src/alef-1.001.tar.gz"; 271 278 sha256 = "b98b67602a2c8880a1770f0b9e37c190f29a7e2ade5616784f0b89fbdb75bf52"; 272 279 md5 = ""; 273 280 md5name = "b98b67602a2c8880a1770f0b9e37c190f29a7e2ade5616784f0b89fbdb75bf52-alef-1.001.tar.gz"; 274 281 } 275 282 { 276 283 name = "Amiri-0.111.zip"; 277 - url = "http://dev-www.libreoffice.org/src/Amiri-0.111.zip"; 284 + url = "https://dev-www.libreoffice.org/src/Amiri-0.111.zip"; 278 285 sha256 = "1fbfccced6348b5db2c1c21d5b319cd488e14d055702fa817a0f6cb83d882166"; 279 286 md5 = ""; 280 287 md5name = "1fbfccced6348b5db2c1c21d5b319cd488e14d055702fa817a0f6cb83d882166-Amiri-0.111.zip"; 281 288 } 282 289 { 283 290 name = "ttf-kacst_2.01+mry.tar.gz"; 284 - url = "http://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz"; 291 + url = "https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz"; 285 292 sha256 = "dca00f5e655f2f217a766faa73a81f542c5c204aa3a47017c3c2be0b31d00a56"; 286 293 md5 = ""; 287 294 md5name = "dca00f5e655f2f217a766faa73a81f542c5c204aa3a47017c3c2be0b31d00a56-ttf-kacst_2.01+mry.tar.gz"; 288 295 } 289 296 { 290 297 name = "ReemKufi-0.7.zip"; 291 - url = "http://dev-www.libreoffice.org/src/ReemKufi-0.7.zip"; 298 + url = "https://dev-www.libreoffice.org/src/ReemKufi-0.7.zip"; 292 299 sha256 = "f60c6508d209ce4236d2d7324256c2ffddd480be7e3d6023770b93dc391a605f"; 293 300 md5 = ""; 294 301 md5name = "f60c6508d209ce4236d2d7324256c2ffddd480be7e3d6023770b93dc391a605f-ReemKufi-0.7.zip"; 295 302 } 296 303 { 297 304 name = "Scheherazade-2.100.zip"; 298 - url = "http://dev-www.libreoffice.org/src/Scheherazade-2.100.zip"; 305 + url = "https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip"; 299 306 sha256 = "251c8817ceb87d9b661ce1d5b49e732a0116add10abc046be4b8ba5196e149b5"; 300 307 md5 = ""; 301 308 md5name = "251c8817ceb87d9b661ce1d5b49e732a0116add10abc046be4b8ba5196e149b5-Scheherazade-2.100.zip"; 302 309 } 303 310 { 304 311 name = "libfreehand-0.1.2.tar.xz"; 305 - url = "http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz"; 312 + url = "https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz"; 306 313 sha256 = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac"; 307 314 md5 = ""; 308 315 md5name = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac-libfreehand-0.1.2.tar.xz"; 309 316 } 310 317 { 311 318 name = "freetype-2.9.1.tar.bz2"; 312 - url = "http://dev-www.libreoffice.org/src/freetype-2.9.1.tar.bz2"; 319 + url = "https://dev-www.libreoffice.org/src/freetype-2.9.1.tar.bz2"; 313 320 sha256 = "db8d87ea720ea9d5edc5388fc7a0497bb11ba9fe972245e0f7f4c7e8b1e1e84d"; 314 321 md5 = ""; 315 322 md5name = "db8d87ea720ea9d5edc5388fc7a0497bb11ba9fe972245e0f7f4c7e8b1e1e84d-freetype-2.9.1.tar.bz2"; 316 323 } 317 324 { 318 - name = "glm-0.9.4.6-libreoffice.zip"; 319 - url = "http://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip"; 320 - sha256 = "d0312c360efe04dd048b3311fe375ff36f1993b4c2e3cb58c81062990532904a"; 321 - md5 = "bae83fa5dc7f081768daace6e199adc3"; 322 - md5name = "bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip"; 325 + name = "glm-0.9.9.7.zip"; 326 + url = "https://dev-www.libreoffice.org/src/glm-0.9.9.7.zip"; 327 + sha256 = "c5e167c042afd2d7ad642ace6b643863baeb33880781983563e1ab68a30d3e95"; 328 + md5 = ""; 329 + md5name = "c5e167c042afd2d7ad642ace6b643863baeb33880781983563e1ab68a30d3e95-glm-0.9.9.7.zip"; 323 330 } 324 331 { 325 332 name = "gpgme-1.9.0.tar.bz2"; 326 - url = "http://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2"; 333 + url = "https://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2"; 327 334 sha256 = "1b29fedb8bfad775e70eafac5b0590621683b2d9869db994568e6401f4034ceb"; 328 335 md5 = ""; 329 336 md5name = "1b29fedb8bfad775e70eafac5b0590621683b2d9869db994568e6401f4034ceb-gpgme-1.9.0.tar.bz2"; 330 337 } 331 338 { 332 - name = "graphite2-minimal-1.3.13.tgz"; 333 - url = "http://dev-www.libreoffice.org/src/graphite2-minimal-1.3.13.tgz"; 334 - sha256 = "d47d387161db7f7ebade1920aa7cbdc797e79772597d8b55e80b58d1071bcc36"; 339 + name = "graphite2-minimal-1.3.14.tgz"; 340 + url = "https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz"; 341 + sha256 = "b8e892d8627c41888ff121e921455b9e2d26836978f2359173d19825da62b8fc"; 335 342 md5 = ""; 336 - md5name = "d47d387161db7f7ebade1920aa7cbdc797e79772597d8b55e80b58d1071bcc36-graphite2-minimal-1.3.13.tgz"; 343 + md5name = "b8e892d8627c41888ff121e921455b9e2d26836978f2359173d19825da62b8fc-graphite2-minimal-1.3.14.tgz"; 337 344 } 338 345 { 339 - name = "harfbuzz-2.3.1.tar.bz2"; 340 - url = "http://dev-www.libreoffice.org/src/harfbuzz-2.3.1.tar.bz2"; 341 - sha256 = "f205699d5b91374008d6f8e36c59e419ae2d9a7bb8c5d9f34041b9a5abcae468"; 346 + name = "harfbuzz-2.6.0.tar.xz"; 347 + url = "https://dev-www.libreoffice.org/src/harfbuzz-2.6.0.tar.xz"; 348 + sha256 = "9cf7d117548265f95ca884e2f4c9fafaf4e17d45a67b11107147b79eed76c966"; 342 349 md5 = ""; 343 - md5name = "f205699d5b91374008d6f8e36c59e419ae2d9a7bb8c5d9f34041b9a5abcae468-harfbuzz-2.3.1.tar.bz2"; 350 + md5name = "9cf7d117548265f95ca884e2f4c9fafaf4e17d45a67b11107147b79eed76c966-harfbuzz-2.6.0.tar.xz"; 344 351 } 345 352 { 346 353 name = "hsqldb_1_8_0.zip"; 347 - url = "http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip"; 354 + url = "https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip"; 348 355 sha256 = "d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370"; 349 356 md5 = "17410483b5b5f267aa18b7e00b65e6e0"; 350 357 md5name = "17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip"; 351 358 } 352 359 { 353 360 name = "hunspell-1.7.0.tar.gz"; 354 - url = "http://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz"; 361 + url = "https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz"; 355 362 sha256 = "57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951"; 356 363 md5 = ""; 357 364 md5name = "57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951-hunspell-1.7.0.tar.gz"; 358 365 } 359 366 { 360 367 name = "hyphen-2.8.8.tar.gz"; 361 - url = "http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 368 + url = "https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 362 369 sha256 = "304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705"; 363 370 md5 = "5ade6ae2a99bc1e9e57031ca88d36dad"; 364 371 md5name = "5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 365 372 } 366 373 { 367 - name = "icu4c-63_1-src.tgz"; 368 - url = "http://dev-www.libreoffice.org/src/icu4c-63_1-src.tgz"; 369 - sha256 = "05c490b69454fce5860b7e8e2821231674af0a11d7ef2febea9a32512998cb9d"; 374 + name = "icu4c-67_1-src.tgz"; 375 + url = "https://dev-www.libreoffice.org/src/icu4c-67_1-src.tgz"; 376 + sha256 = "94a80cd6f251a53bd2a997f6f1b5ac6653fe791dfab66e1eb0227740fb86d5dc"; 370 377 md5 = ""; 371 - md5name = "05c490b69454fce5860b7e8e2821231674af0a11d7ef2febea9a32512998cb9d-icu4c-63_1-src.tgz"; 378 + md5name = "94a80cd6f251a53bd2a997f6f1b5ac6653fe791dfab66e1eb0227740fb86d5dc-icu4c-67_1-src.tgz"; 372 379 } 373 380 { 374 - name = "icu4c-63_1-data.zip"; 375 - url = "http://dev-www.libreoffice.org/src/icu4c-63_1-data.zip"; 376 - sha256 = "9bef2bf28ec4fdc86a3bd88d7ac4d509fef6dfbe9c6798299e55b9d4343e960c"; 381 + name = "icu4c-67_1-data.zip"; 382 + url = "https://dev-www.libreoffice.org/src/icu4c-67_1-data.zip"; 383 + sha256 = "7c16a59cc8c06128b7ecc1dc4fc056b36b17349312829b17408b9e67b05c4a7e"; 377 384 md5 = ""; 378 - md5name = "9bef2bf28ec4fdc86a3bd88d7ac4d509fef6dfbe9c6798299e55b9d4343e960c-icu4c-63_1-data.zip"; 385 + md5name = "7c16a59cc8c06128b7ecc1dc4fc056b36b17349312829b17408b9e67b05c4a7e-icu4c-67_1-data.zip"; 379 386 } 380 387 { 381 388 name = "flow-engine-0.9.4.zip"; 382 - url = "http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip"; 389 + url = "https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip"; 383 390 sha256 = "233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd"; 384 391 md5 = "ba2930200c9f019c2d93a8c88c651a0f"; 385 392 md5name = "ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip"; 386 393 } 387 394 { 388 395 name = "flute-1.1.6.zip"; 389 - url = "http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip"; 396 + url = "https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip"; 390 397 sha256 = "1b5b24f7bc543c0362b667692f78db8bab4ed6dafc6172f104d0bd3757d8a133"; 391 398 md5 = "d8bd5eed178db6e2b18eeed243f85aa8"; 392 399 md5name = "d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip"; 393 400 } 394 401 { 395 402 name = "libbase-1.1.6.zip"; 396 - url = "http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip"; 403 + url = "https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip"; 397 404 sha256 = "75c80359c9ce343c20aab8a36a45cb3b9ee7c61cf92c13ae45399d854423a9ba"; 398 405 md5 = "eeb2c7ddf0d302fba4bfc6e97eac9624"; 399 406 md5name = "eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip"; 400 407 } 401 408 { 402 409 name = "libfonts-1.1.6.zip"; 403 - url = "http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip"; 410 + url = "https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip"; 404 411 sha256 = "e0531091787c0f16c83965fdcbc49162c059d7f0c64669e7f119699321549743"; 405 412 md5 = "3bdf40c0d199af31923e900d082ca2dd"; 406 413 md5name = "3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip"; 407 414 } 408 415 { 409 416 name = "libformula-1.1.7.zip"; 410 - url = "http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip"; 417 + url = "https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip"; 411 418 sha256 = "5826d1551bf599b85742545f6e01a0079b93c1b2c8434bf409eddb3a29e4726b"; 412 419 md5 = "3404ab6b1792ae5f16bbd603bd1e1d03"; 413 420 md5name = "3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip"; 414 421 } 415 422 { 416 423 name = "liblayout-0.2.10.zip"; 417 - url = "http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip"; 424 + url = "https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip"; 418 425 sha256 = "e1fb87f3f7b980d33414473279615c4644027e013012d156efa538bc2b031772"; 419 426 md5 = "db60e4fde8dd6d6807523deb71ee34dc"; 420 427 md5name = "db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip"; 421 428 } 422 429 { 423 430 name = "libloader-1.1.6.zip"; 424 - url = "http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip"; 431 + url = "https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip"; 425 432 sha256 = "3d853b19b1d94a6efa69e7af90f7f2b09ecf302913bee3da796c15ecfebcfac8"; 426 433 md5 = "97b2d4dba862397f446b217e2b623e71"; 427 434 md5name = "97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip"; 428 435 } 429 436 { 430 437 name = "librepository-1.1.6.zip"; 431 - url = "http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip"; 438 + url = "https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip"; 432 439 sha256 = "abe2c57ac12ba45d83563b02e240fa95d973376de2f720aab8fe11f2e621c095"; 433 440 md5 = "8ce2fcd72becf06c41f7201d15373ed9"; 434 441 md5name = "8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip"; 435 442 } 436 443 { 437 444 name = "libserializer-1.1.6.zip"; 438 - url = "http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip"; 445 + url = "https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip"; 439 446 sha256 = "05640a1f6805b2b2d7e2cb9c50db9a5cb084e3c52ab1a71ce015239b4a1d4343"; 440 447 md5 = "f94d9870737518e3b597f9265f4e9803"; 441 448 md5name = "f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip"; 442 449 } 443 450 { 444 451 name = "libxml-1.1.7.zip"; 445 - url = "http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip"; 452 + url = "https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip"; 446 453 sha256 = "7d2797fe9f79a77009721e3f14fa4a1dec17a6d706bdc93f85f1f01d124fab66"; 447 454 md5 = "ace6ab49184e329db254e454a010f56d"; 448 455 md5name = "ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip"; 449 456 } 450 457 { 451 458 name = "sacjava-1.3.zip"; 452 - url = "http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip"; 459 + url = "https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip"; 453 460 sha256 = "085f2112c51fa8c1783fac12fbd452650596415121348393bb51f0f7e85a9045"; 454 461 md5 = "39bb3fcea1514f1369fcfc87542390fd"; 455 462 md5name = "39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip"; 456 463 } 457 464 { 458 465 name = "libjpeg-turbo-1.5.3.tar.gz"; 459 - url = "http://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.3.tar.gz"; 466 + url = "https://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.3.tar.gz"; 460 467 sha256 = "b24890e2bb46e12e72a79f7e965f409f4e16466d00e1dd15d93d73ee6b592523"; 461 468 md5 = ""; 462 469 md5name = "b24890e2bb46e12e72a79f7e965f409f4e16466d00e1dd15d93d73ee6b592523-libjpeg-turbo-1.5.3.tar.gz"; 463 470 } 464 471 { 465 - name = "language-subtag-registry-2019-09-16.tar.bz2"; 466 - url = "http://dev-www.libreoffice.org/src/language-subtag-registry-2019-09-16.tar.bz2"; 467 - sha256 = "07b66bc0f2786fde55f6bbcbcb4a455a846eb8e2351c8ce3d0a219a73693736a"; 472 + name = "language-subtag-registry-2020-09-29.tar.bz2"; 473 + url = "https://dev-www.libreoffice.org/src/language-subtag-registry-2020-09-29.tar.bz2"; 474 + sha256 = "cbe9fca811a37056560aab73e9fc9d3522b46b6785cb02db165f521bf42c230f"; 468 475 md5 = ""; 469 - md5name = "07b66bc0f2786fde55f6bbcbcb4a455a846eb8e2351c8ce3d0a219a73693736a-language-subtag-registry-2019-09-16.tar.bz2"; 476 + md5name = "cbe9fca811a37056560aab73e9fc9d3522b46b6785cb02db165f521bf42c230f-language-subtag-registry-2020-09-29.tar.bz2"; 470 477 } 471 478 { 472 479 name = "JLanguageTool-1.7.0.tar.bz2"; 473 - url = "http://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2"; 480 + url = "https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2"; 474 481 sha256 = "48c87e41636783bba438b65fd895821e369ed139e1465fac654323ad93c5a82d"; 475 482 md5 = "b63e6340a02ff1cacfeadb2c42286161"; 476 483 md5name = "b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2"; 477 484 } 478 485 { 479 486 name = "lcms2-2.9.tar.gz"; 480 - url = "http://dev-www.libreoffice.org/src/lcms2-2.9.tar.gz"; 487 + url = "https://dev-www.libreoffice.org/src/lcms2-2.9.tar.gz"; 481 488 sha256 = "48c6fdf98396fa245ed86e622028caf49b96fa22f3e5734f853f806fbc8e7d20"; 482 489 md5 = ""; 483 490 md5name = "48c6fdf98396fa245ed86e622028caf49b96fa22f3e5734f853f806fbc8e7d20-lcms2-2.9.tar.gz"; 484 491 } 485 492 { 486 493 name = "libassuan-2.5.1.tar.bz2"; 487 - url = "http://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2"; 494 + url = "https://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2"; 488 495 sha256 = "47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449"; 489 496 md5 = ""; 490 497 md5name = "47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449-libassuan-2.5.1.tar.bz2"; 491 498 } 492 499 { 493 500 name = "libatomic_ops-7.6.8.tar.gz"; 494 - url = "http://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz"; 501 + url = "https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz"; 495 502 sha256 = "1d6a279edf81767e74d2ad2c9fce09459bc65f12c6525a40b0cb3e53c089f665"; 496 503 md5 = ""; 497 504 md5name = "1d6a279edf81767e74d2ad2c9fce09459bc65f12c6525a40b0cb3e53c089f665-libatomic_ops-7.6.8.tar.gz"; 498 505 } 499 506 { 500 507 name = "libeot-0.01.tar.bz2"; 501 - url = "http://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2"; 508 + url = "https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2"; 502 509 sha256 = "cf5091fa8e7dcdbe667335eb90a2cfdd0a3fe8f8c7c8d1ece44d9d055736a06a"; 503 510 md5 = ""; 504 511 md5name = "cf5091fa8e7dcdbe667335eb90a2cfdd0a3fe8f8c7c8d1ece44d9d055736a06a-libeot-0.01.tar.bz2"; 505 512 } 506 513 { 507 514 name = "libexttextcat-3.4.5.tar.xz"; 508 - url = "http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz"; 515 + url = "https://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz"; 509 516 sha256 = "13fdbc9d4c489a4d0519e51933a1aa21fe3fb9eb7da191b87f7a63e82797dac8"; 510 517 md5 = ""; 511 518 md5name = "13fdbc9d4c489a4d0519e51933a1aa21fe3fb9eb7da191b87f7a63e82797dac8-libexttextcat-3.4.5.tar.xz"; 512 519 } 513 520 { 521 + name = "libffi-3.3.tar.gz"; 522 + url = "https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz"; 523 + sha256 = "72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056"; 524 + md5 = ""; 525 + md5name = "72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056-libffi-3.3.tar.gz"; 526 + } 527 + { 514 528 name = "libgpg-error-1.27.tar.bz2"; 515 - url = "http://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2"; 529 + url = "https://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2"; 516 530 sha256 = "4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2"; 517 531 md5 = ""; 518 532 md5name = "4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2-libgpg-error-1.27.tar.bz2"; 519 533 } 520 534 { 521 535 name = "liblangtag-0.6.2.tar.bz2"; 522 - url = "http://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2"; 536 + url = "https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2"; 523 537 sha256 = "d6242790324f1432fb0a6fae71b6851f520b2c5a87675497cf8ea14c2924d52e"; 524 538 md5 = ""; 525 539 md5name = "d6242790324f1432fb0a6fae71b6851f520b2c5a87675497cf8ea14c2924d52e-liblangtag-0.6.2.tar.bz2"; 526 540 } 527 541 { 528 - name = "libnumbertext-1.0.5.tar.xz"; 529 - url = "http://dev-www.libreoffice.org/src/libnumbertext-1.0.5.tar.xz"; 530 - sha256 = "e1c9086b4cecb6b25f180316f30740dfabe6a4dbaf70dddc34276fc839e4f4f7"; 542 + name = "libnumbertext-1.0.6.tar.xz"; 543 + url = "https://dev-www.libreoffice.org/src/libnumbertext-1.0.6.tar.xz"; 544 + sha256 = "739f220b34bf7cb731c09de2921771d644d37dfd276c45564401e5759f10ae57"; 531 545 md5 = ""; 532 - md5name = "e1c9086b4cecb6b25f180316f30740dfabe6a4dbaf70dddc34276fc839e4f4f7-libnumbertext-1.0.5.tar.xz"; 546 + md5name = "739f220b34bf7cb731c09de2921771d644d37dfd276c45564401e5759f10ae57-libnumbertext-1.0.6.tar.xz"; 533 547 } 534 548 { 535 549 name = "ltm-1.0.zip"; 536 - url = "http://dev-www.libreoffice.org/src/ltm-1.0.zip"; 550 + url = "https://dev-www.libreoffice.org/src/ltm-1.0.zip"; 537 551 sha256 = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483"; 538 552 md5 = ""; 539 553 md5name = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483-ltm-1.0.zip"; 540 554 } 541 555 { 542 - name = "xmlsec1-1.2.28.tar.gz"; 543 - url = "http://dev-www.libreoffice.org/src/xmlsec1-1.2.28.tar.gz"; 544 - sha256 = "13eec4811ea30e3f0e16a734d1dbf7f9d246a71d540b48d143a07b489f6222d4"; 556 + name = "xmlsec1-1.2.30.tar.gz"; 557 + url = "https://dev-www.libreoffice.org/src/xmlsec1-1.2.30.tar.gz"; 558 + sha256 = "2d84360b03042178def1d9ff538acacaed2b3a27411db7b2874f1612ed71abc8"; 545 559 md5 = ""; 546 - md5name = "13eec4811ea30e3f0e16a734d1dbf7f9d246a71d540b48d143a07b489f6222d4-xmlsec1-1.2.28.tar.gz"; 560 + md5name = "2d84360b03042178def1d9ff538acacaed2b3a27411db7b2874f1612ed71abc8-xmlsec1-1.2.30.tar.gz"; 547 561 } 548 562 { 549 563 name = "libxml2-2.9.10.tar.gz"; 550 - url = "http://dev-www.libreoffice.org/src/libxml2-2.9.10.tar.gz"; 564 + url = "https://dev-www.libreoffice.org/src/libxml2-2.9.10.tar.gz"; 551 565 sha256 = "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f"; 552 566 md5 = ""; 553 567 md5name = "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f-libxml2-2.9.10.tar.gz"; 554 568 } 555 569 { 556 570 name = "libxslt-1.1.34.tar.gz"; 557 - url = "http://dev-www.libreoffice.org/src/libxslt-1.1.34.tar.gz"; 571 + url = "https://dev-www.libreoffice.org/src/libxslt-1.1.34.tar.gz"; 558 572 sha256 = "98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f"; 559 573 md5 = ""; 560 574 md5name = "98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f-libxslt-1.1.34.tar.gz"; 561 575 } 562 576 { 563 577 name = "lp_solve_5.5.tar.gz"; 564 - url = "http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz"; 578 + url = "https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz"; 565 579 sha256 = "171816288f14215c69e730f7a4f1c325739873e21f946ff83884b350574e6695"; 566 580 md5 = "26b3e95ddf3d9c077c480ea45874b3b8"; 567 581 md5name = "26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz"; 568 582 } 569 583 { 570 584 name = "lxml-4.1.1.tgz"; 571 - url = "http://dev-www.libreoffice.org/src/lxml-4.1.1.tgz"; 585 + url = "https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz"; 572 586 sha256 = "940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e"; 573 587 md5 = ""; 574 588 md5name = "940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e-lxml-4.1.1.tgz"; 575 589 } 576 590 { 577 - name = "mariadb_client-2.0.0-src.tar.gz"; 578 - url = "http://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz"; 579 - sha256 = "fd2f751dea049c1907735eb236aeace1d811d6a8218118b00bbaa9b84dc5cd60"; 580 - md5 = "a233181e03d3c307668b4c722d881661"; 581 - md5name = "a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz"; 591 + name = "mariadb-connector-c-3.1.8-src.tar.gz"; 592 + url = "https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz"; 593 + sha256 = "431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b"; 594 + md5 = ""; 595 + md5name = "431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b-mariadb-connector-c-3.1.8-src.tar.gz"; 582 596 } 583 597 { 584 - name = "mdds-1.4.3.tar.bz2"; 585 - url = "http://dev-www.libreoffice.org/src/mdds-1.4.3.tar.bz2"; 586 - sha256 = "25ce3d5af9f6609e1de05bb22b2316e57b74a72a5b686fbb2da199da72349c81"; 598 + name = "mdds-1.6.0.tar.bz2"; 599 + url = "https://dev-www.libreoffice.org/src/mdds-1.6.0.tar.bz2"; 600 + sha256 = "f1585c9cbd12f83a6d43d395ac1ab6a9d9d5d77f062c7b5f704e24ed72dae07d"; 587 601 md5 = ""; 588 - md5name = "25ce3d5af9f6609e1de05bb22b2316e57b74a72a5b686fbb2da199da72349c81-mdds-1.4.3.tar.bz2"; 602 + md5name = "f1585c9cbd12f83a6d43d395ac1ab6a9d9d5d77f062c7b5f704e24ed72dae07d-mdds-1.6.0.tar.bz2"; 589 603 } 590 604 { 591 605 name = "mDNSResponder-878.200.35.tar.gz"; 592 - url = "http://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz"; 606 + url = "https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz"; 593 607 sha256 = "e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e3990d68aabf6e8b3f5a0"; 594 608 md5 = ""; 595 609 md5name = "e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e3990d68aabf6e8b3f5a0-mDNSResponder-878.200.35.tar.gz"; 596 610 } 597 611 { 598 612 name = "libmspub-0.1.4.tar.xz"; 599 - url = "http://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz"; 613 + url = "https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz"; 600 614 sha256 = "ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba"; 601 615 md5 = ""; 602 616 md5name = "ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba-libmspub-0.1.4.tar.xz"; 603 617 } 604 618 { 605 - name = "libmwaw-0.3.15.tar.xz"; 606 - url = "http://dev-www.libreoffice.org/src/libmwaw-0.3.15.tar.xz"; 607 - sha256 = "0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1"; 619 + name = "libmwaw-0.3.16.tar.xz"; 620 + url = "https://dev-www.libreoffice.org/src/libmwaw-0.3.16.tar.xz"; 621 + sha256 = "0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868"; 608 622 md5 = ""; 609 - md5name = "0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1-libmwaw-0.3.15.tar.xz"; 623 + md5name = "0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868-libmwaw-0.3.16.tar.xz"; 610 624 } 611 625 { 612 626 name = "mythes-1.2.4.tar.gz"; 613 - url = "http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 627 + url = "https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 614 628 sha256 = "1e81f395d8c851c3e4e75b568e20fa2fa549354e75ab397f9de4b0e0790a305f"; 615 629 md5 = "a8c2c5b8f09e7ede322d5c602ff6a4b6"; 616 630 md5name = "a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 617 631 } 618 632 { 619 633 name = "neon-0.30.2.tar.gz"; 620 - url = "http://dev-www.libreoffice.org/src/neon-0.30.2.tar.gz"; 634 + url = "https://dev-www.libreoffice.org/src/neon-0.30.2.tar.gz"; 621 635 sha256 = "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca"; 622 636 md5 = ""; 623 637 md5name = "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca-neon-0.30.2.tar.gz"; 624 638 } 625 639 { 626 - name = "nss-3.47.1-with-nspr-4.23.tar.gz"; 627 - url = "http://dev-www.libreoffice.org/src/nss-3.47.1-with-nspr-4.23.tar.gz"; 628 - sha256 = "07d4276168f59bb3038c7826dabb5fbfbab8336ddf65e4e6e43bce89ada78c64"; 640 + name = "nss-3.55-with-nspr-4.27.tar.gz"; 641 + url = "https://dev-www.libreoffice.org/src/nss-3.55-with-nspr-4.27.tar.gz"; 642 + sha256 = "ec6032d78663c6ef90b4b83eb552dedf721d2bce208cec3bf527b8f637db7e45"; 629 643 md5 = ""; 630 - md5name = "07d4276168f59bb3038c7826dabb5fbfbab8336ddf65e4e6e43bce89ada78c64-nss-3.47.1-with-nspr-4.23.tar.gz"; 644 + md5name = "ec6032d78663c6ef90b4b83eb552dedf721d2bce208cec3bf527b8f637db7e45-nss-3.55-with-nspr-4.27.tar.gz"; 631 645 } 632 646 { 633 647 name = "libodfgen-0.1.6.tar.bz2"; 634 - url = "http://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2"; 648 + url = "https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2"; 635 649 sha256 = "2c7b21892f84a4c67546f84611eccdad6259875c971e98ddb027da66ea0ac9c2"; 636 650 md5 = ""; 637 651 md5name = "2c7b21892f84a4c67546f84611eccdad6259875c971e98ddb027da66ea0ac9c2-libodfgen-0.1.6.tar.bz2"; 638 652 } 639 653 { 640 - name = "odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar"; 641 - url = "http://dev-www.libreoffice.org/src/../extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar"; 642 - sha256 = "984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504"; 654 + name = "odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar"; 655 + url = "https://dev-www.libreoffice.org/src/../extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar"; 656 + sha256 = "d55495ab3a86544650587de2a72180ddf8bfc6376d14ddfa923992dbc86a06e0"; 643 657 md5 = ""; 644 - md5name = "984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504-odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar"; 658 + md5name = "d55495ab3a86544650587de2a72180ddf8bfc6376d14ddfa923992dbc86a06e0-odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar"; 645 659 } 646 660 { 647 661 name = "officeotron-0.7.4-master.jar"; 648 - url = "http://dev-www.libreoffice.org/src/../extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar"; 662 + url = "https://dev-www.libreoffice.org/src/../extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar"; 649 663 sha256 = "f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770"; 650 664 md5 = "8249374c274932a21846fa7629c2aa9b"; 651 665 md5name = "8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar"; 652 666 } 653 667 { 654 668 name = "openldap-2.4.45.tgz"; 655 - url = "http://dev-www.libreoffice.org/src/openldap-2.4.45.tgz"; 669 + url = "https://dev-www.libreoffice.org/src/openldap-2.4.45.tgz"; 656 670 sha256 = "cdd6cffdebcd95161a73305ec13fc7a78e9707b46ca9f84fb897cd5626df3824"; 657 671 md5 = ""; 658 672 md5name = "cdd6cffdebcd95161a73305ec13fc7a78e9707b46ca9f84fb897cd5626df3824-openldap-2.4.45.tgz"; 659 673 } 660 674 { 661 675 name = "openssl-1.0.2t.tar.gz"; 662 - url = "http://dev-www.libreoffice.org/src/openssl-1.0.2t.tar.gz"; 676 + url = "https://dev-www.libreoffice.org/src/openssl-1.0.2t.tar.gz"; 663 677 sha256 = "14cb464efe7ac6b54799b34456bd69558a749a4931ecfd9cf9f71d7881cac7bc"; 664 678 md5 = ""; 665 679 md5name = "14cb464efe7ac6b54799b34456bd69558a749a4931ecfd9cf9f71d7881cac7bc-openssl-1.0.2t.tar.gz"; 666 680 } 667 681 { 668 - name = "liborcus-0.14.1.tar.gz"; 669 - url = "http://dev-www.libreoffice.org/src/liborcus-0.14.1.tar.gz"; 670 - sha256 = "3f48cfbc21ad74787218284939c04d42cb836c73bc393f27f538b668e4d78a5f"; 682 + name = "liborcus-0.15.4.tar.bz2"; 683 + url = "https://dev-www.libreoffice.org/src/liborcus-0.15.4.tar.bz2"; 684 + sha256 = "cfb2aa60825f2a78589ed030c07f46a1ee16ef8a2d1bf2279192fbc1ae5a5f61"; 671 685 md5 = ""; 672 - md5name = "3f48cfbc21ad74787218284939c04d42cb836c73bc393f27f538b668e4d78a5f-liborcus-0.14.1.tar.gz"; 686 + md5name = "cfb2aa60825f2a78589ed030c07f46a1ee16ef8a2d1bf2279192fbc1ae5a5f61-liborcus-0.15.4.tar.bz2"; 673 687 } 674 688 { 675 689 name = "owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; 676 - url = "http://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; 690 + url = "https://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; 677 691 sha256 = "b18b3e3ef7fae6a79b62f2bb43cc47a5346b6330f6a383dc4be34439aca5e9fb"; 678 692 md5 = ""; 679 693 md5name = "b18b3e3ef7fae6a79b62f2bb43cc47a5346b6330f6a383dc4be34439aca5e9fb-owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; 680 694 } 681 695 { 682 696 name = "libpagemaker-0.0.4.tar.xz"; 683 - url = "http://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz"; 697 + url = "https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz"; 684 698 sha256 = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d"; 685 699 md5 = ""; 686 700 md5name = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d-libpagemaker-0.0.4.tar.xz"; 687 701 } 688 702 { 689 - name = "pdfium-3794.tar.bz2"; 690 - url = "http://dev-www.libreoffice.org/src/pdfium-3794.tar.bz2"; 691 - sha256 = "e3faddcf741336c64ca2e6f72b23e9e60979969b2cf67c878c9a5bc38328cfc4"; 703 + name = "pdfium-4306.tar.bz2"; 704 + url = "https://dev-www.libreoffice.org/src/pdfium-4306.tar.bz2"; 705 + sha256 = "eca406d47ac7e2a84dcc86f93c08f96e591d409589e881477fa75e488e4851d8"; 692 706 md5 = ""; 693 - md5name = "e3faddcf741336c64ca2e6f72b23e9e60979969b2cf67c878c9a5bc38328cfc4-pdfium-3794.tar.bz2"; 707 + md5name = "eca406d47ac7e2a84dcc86f93c08f96e591d409589e881477fa75e488e4851d8-pdfium-4306.tar.bz2"; 694 708 } 695 709 { 696 710 name = "pixman-0.34.0.tar.gz"; 697 - url = "http://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz"; 711 + url = "https://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz"; 698 712 sha256 = "21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e"; 699 713 md5 = "e80ebae4da01e77f68744319f01d52a3"; 700 714 md5name = "e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz"; 701 715 } 702 716 { 703 717 name = "libpng-1.6.37.tar.xz"; 704 - url = "http://dev-www.libreoffice.org/src/libpng-1.6.37.tar.xz"; 718 + url = "https://dev-www.libreoffice.org/src/libpng-1.6.37.tar.xz"; 705 719 sha256 = "505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca"; 706 720 md5 = ""; 707 721 md5name = "505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca-libpng-1.6.37.tar.xz"; 708 722 } 709 723 { 710 724 name = "poppler-0.82.0.tar.xz"; 711 - url = "http://dev-www.libreoffice.org/src/poppler-0.82.0.tar.xz"; 725 + url = "https://dev-www.libreoffice.org/src/poppler-0.82.0.tar.xz"; 712 726 sha256 = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df"; 713 727 md5 = ""; 714 728 md5name = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df-poppler-0.82.0.tar.xz"; 715 729 } 716 730 { 717 731 name = "postgresql-9.2.24.tar.bz2"; 718 - url = "http://dev-www.libreoffice.org/src/postgresql-9.2.24.tar.bz2"; 732 + url = "https://dev-www.libreoffice.org/src/postgresql-9.2.24.tar.bz2"; 719 733 sha256 = "a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126"; 720 734 md5 = ""; 721 735 md5name = "a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126-postgresql-9.2.24.tar.bz2"; 722 736 } 723 737 { 724 - name = "Python-3.5.9.tar.xz"; 725 - url = "http://dev-www.libreoffice.org/src/Python-3.5.9.tar.xz"; 726 - sha256 = "c24a37c63a67f53bdd09c5f287b5cff8e8b98f857bf348c577d454d3f74db049"; 738 + name = "Python-3.7.7.tar.xz"; 739 + url = "https://dev-www.libreoffice.org/src/Python-3.7.7.tar.xz"; 740 + sha256 = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136"; 727 741 md5 = ""; 728 - md5name = "c24a37c63a67f53bdd09c5f287b5cff8e8b98f857bf348c577d454d3f74db049-Python-3.5.9.tar.xz"; 742 + md5name = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136-Python-3.7.7.tar.xz"; 743 + } 744 + { 745 + name = "QR-Code-generator-1.4.0.tar.gz"; 746 + url = "https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz"; 747 + sha256 = "fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a"; 748 + md5 = ""; 749 + md5name = "fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a-QR-Code-generator-1.4.0.tar.gz"; 729 750 } 730 751 { 731 752 name = "libqxp-0.0.2.tar.xz"; 732 - url = "http://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz"; 753 + url = "https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz"; 733 754 sha256 = "e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c"; 734 755 md5 = ""; 735 756 md5name = "e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c-libqxp-0.0.2.tar.xz"; 736 757 } 737 758 { 738 759 name = "raptor2-2.0.15.tar.gz"; 739 - url = "http://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz"; 760 + url = "https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz"; 740 761 sha256 = "ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed"; 741 762 md5 = "a39f6c07ddb20d7dd2ff1f95fa21e2cd"; 742 763 md5name = "a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz"; 743 764 } 744 765 { 745 766 name = "rasqal-0.9.33.tar.gz"; 746 - url = "http://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz"; 767 + url = "https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz"; 747 768 sha256 = "6924c9ac6570bd241a9669f83b467c728a322470bf34f4b2da4f69492ccfd97c"; 748 769 md5 = "1f5def51ca0026cd192958ef07228b52"; 749 770 md5name = "1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz"; 750 771 } 751 772 { 752 773 name = "redland-1.0.17.tar.gz"; 753 - url = "http://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz"; 774 + url = "https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz"; 754 775 sha256 = "de1847f7b59021c16bdc72abb4d8e2d9187cd6124d69156f3326dd34ee043681"; 755 776 md5 = "e5be03eda13ef68aabab6e42aa67715e"; 756 777 md5name = "e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz"; 757 778 } 758 779 { 759 780 name = "librevenge-0.0.4.tar.bz2"; 760 - url = "http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2"; 781 + url = "https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2"; 761 782 sha256 = "c51601cd08320b75702812c64aae0653409164da7825fd0f451ac2c5dbe77cbf"; 762 783 md5 = ""; 763 784 md5name = "c51601cd08320b75702812c64aae0653409164da7825fd0f451ac2c5dbe77cbf-librevenge-0.0.4.tar.bz2"; 764 785 } 765 786 { 766 787 name = "rhino1_5R5.zip"; 767 - url = "http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip"; 788 + url = "https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip"; 768 789 sha256 = "1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753"; 769 790 md5 = "798b2ffdc8bcfe7bca2cf92b62caf685"; 770 791 md5name = "798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip"; 771 792 } 772 793 { 773 794 name = "serf-1.2.1.tar.bz2"; 774 - url = "http://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2"; 795 + url = "https://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2"; 775 796 sha256 = "6988d394b62c3494635b6f0760bc3079f9a0cd380baf0f6b075af1eb9fa5e700"; 776 797 md5 = ""; 777 798 md5name = "6988d394b62c3494635b6f0760bc3079f9a0cd380baf0f6b075af1eb9fa5e700-serf-1.2.1.tar.bz2"; 778 799 } 779 800 { 780 - name = "libstaroffice-0.0.6.tar.xz"; 781 - url = "http://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz"; 782 - sha256 = "6b00e1ed8194e6072be4441025d1b888e39365727ed5b23e0e8c92c4009d1ec4"; 801 + name = "skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 802 + url = "https://dev-www.libreoffice.org/src/skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 803 + sha256 = "3294877fa2b61b220d98a0f7bfc11325429b13edd2cf455444c703ee3a14d760"; 783 804 md5 = ""; 784 - md5name = "6b00e1ed8194e6072be4441025d1b888e39365727ed5b23e0e8c92c4009d1ec4-libstaroffice-0.0.6.tar.xz"; 805 + md5name = "3294877fa2b61b220d98a0f7bfc11325429b13edd2cf455444c703ee3a14d760-skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz"; 806 + } 807 + { 808 + name = "libstaroffice-0.0.7.tar.xz"; 809 + url = "https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz"; 810 + sha256 = "f94fb0ad8216f97127bedef163a45886b43c62deac5e5b0f5e628e234220c8db"; 811 + md5 = ""; 812 + md5name = "f94fb0ad8216f97127bedef163a45886b43c62deac5e5b0f5e628e234220c8db-libstaroffice-0.0.7.tar.xz"; 785 813 } 786 814 { 787 815 name = "swingExSrc.zip"; 788 - url = "http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip"; 816 + url = "https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip"; 789 817 sha256 = "64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1"; 790 818 md5 = "35c94d2df8893241173de1d16b6034c0"; 791 819 md5name = "35c94d2df8893241173de1d16b6034c0-swingExSrc.zip"; 792 820 } 793 821 { 794 822 name = "twaindsm_2.4.1.orig.tar.gz"; 795 - url = "http://dev-www.libreoffice.org/src/twaindsm_2.4.1.orig.tar.gz"; 823 + url = "https://dev-www.libreoffice.org/src/twaindsm_2.4.1.orig.tar.gz"; 796 824 sha256 = "82c818be771f242388457aa8c807e4b52aa84dc22b21c6c56184a6b4cbb085e6"; 797 825 md5 = ""; 798 826 md5name = "82c818be771f242388457aa8c807e4b52aa84dc22b21c6c56184a6b4cbb085e6-twaindsm_2.4.1.orig.tar.gz"; 799 827 } 800 828 { 801 829 name = "ucpp-1.3.2.tar.gz"; 802 - url = "http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz"; 830 + url = "https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz"; 803 831 sha256 = "983941d31ee8d366085cadf28db75eb1f5cb03ba1e5853b98f12f7f51c63b776"; 804 832 md5 = "0168229624cfac409e766913506961a8"; 805 833 md5name = "0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz"; 806 834 } 807 835 { 808 836 name = "libvisio-0.1.7.tar.xz"; 809 - url = "http://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz"; 837 + url = "https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz"; 810 838 sha256 = "8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c"; 811 839 md5 = ""; 812 840 md5name = "8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c-libvisio-0.1.7.tar.xz"; 813 841 } 814 842 { 815 843 name = "libwpd-0.10.3.tar.xz"; 816 - url = "http://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz"; 844 + url = "https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz"; 817 845 sha256 = "2465b0b662fdc5d4e3bebcdc9a79027713fb629ca2bff04a3c9251fdec42dd09"; 818 846 md5 = ""; 819 847 md5name = "2465b0b662fdc5d4e3bebcdc9a79027713fb629ca2bff04a3c9251fdec42dd09-libwpd-0.10.3.tar.xz"; 820 848 } 821 849 { 822 850 name = "libwpg-0.3.3.tar.xz"; 823 - url = "http://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz"; 851 + url = "https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz"; 824 852 sha256 = "99b3f7f8832385748582ab8130fbb9e5607bd5179bebf9751ac1d51a53099d1c"; 825 853 md5 = ""; 826 854 md5name = "99b3f7f8832385748582ab8130fbb9e5607bd5179bebf9751ac1d51a53099d1c-libwpg-0.3.3.tar.xz"; 827 855 } 828 856 { 829 - name = "libwps-0.4.10.tar.xz"; 830 - url = "http://dev-www.libreoffice.org/src/libwps-0.4.10.tar.xz"; 831 - sha256 = "1421e034286a9f96d3168a1c54ea570ee7aa008ca07b89de005ad5ce49fb29ca"; 857 + name = "libwps-0.4.11.tar.xz"; 858 + url = "https://dev-www.libreoffice.org/src/libwps-0.4.11.tar.xz"; 859 + sha256 = "a8fdaabc28654a975fa78c81873ac503ba18f0d1cdbb942f470a21d29284b4d1"; 832 860 md5 = ""; 833 - md5name = "1421e034286a9f96d3168a1c54ea570ee7aa008ca07b89de005ad5ce49fb29ca-libwps-0.4.10.tar.xz"; 861 + md5name = "a8fdaabc28654a975fa78c81873ac503ba18f0d1cdbb942f470a21d29284b4d1-libwps-0.4.11.tar.xz"; 834 862 } 835 863 { 836 864 name = "xsltml_2.1.2.zip"; 837 - url = "http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip"; 865 + url = "https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip"; 838 866 sha256 = "75823776fb51a9c526af904f1503a7afaaab900fba83eda64f8a41073724c870"; 839 867 md5 = "a7983f859eafb2677d7ff386a023bc40"; 840 868 md5name = "a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip"; 841 869 } 842 870 { 843 871 name = "zlib-1.2.11.tar.xz"; 844 - url = "http://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz"; 872 + url = "https://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz"; 845 873 sha256 = "4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066"; 846 874 md5 = ""; 847 875 md5name = "4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066-zlib-1.2.11.tar.xz"; 848 876 } 849 877 { 850 878 name = "libzmf-0.0.2.tar.xz"; 851 - url = "http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz"; 879 + url = "https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz"; 852 880 sha256 = "27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22"; 853 881 md5 = ""; 854 882 md5name = "27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22-libzmf-0.0.2.tar.xz";
+5 -14
pkgs/applications/office/libreoffice/src-still/override.nix
··· 1 - { lib, kdeIntegration, fetchpatch, ... }: 1 + { lib, kdeIntegration, ... }: 2 2 attrs: 3 3 { 4 - patches = attrs.patches or [ ] ++ [ 5 - (fetchpatch { 6 - url = "https://git.pld-linux.org/gitweb.cgi?p=packages/libreoffice.git;a=blob_plain;f=poppler-0.86.patch;h=76b8356d5f22ef537a83b0f9b0debab591f152fe;hb=a2737a61353e305a9ee69640fb20d4582c218008"; 7 - name = "poppler-0.86.patch"; 8 - sha256 = "0q6k4l8imgp8ailcv0qx5l83afyw44hah24fi7gjrm9xgv5sbb8j"; 9 - }) 10 - ]; 11 4 postConfigure = attrs.postConfigure + '' 12 - sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/extras/inc/swmodeltestbase.hxx' 5 + sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx' 13 6 ''; 14 - configureFlags = lib.remove "--without-system-qrcodegen" 15 - (attrs.configureFlags ++ [ 16 - (lib.enableFeature kdeIntegration "kde5") 17 - ]); 18 - meta = attrs.meta // { description = "Comprehensive, professional-quality productivity suite (Still/Stable release)"; }; 7 + configureFlags = attrs.configureFlags ++ [ 8 + (lib.enableFeature kdeIntegration "kf5") 9 + ]; 19 10 }
+6 -6
pkgs/applications/office/libreoffice/src-still/primary.nix
··· 6 6 inherit sha256; 7 7 }; 8 8 9 - major = "6"; 10 - minor = "3"; 11 - patch = "5"; 9 + major = "7"; 10 + minor = "0"; 11 + patch = "4"; 12 12 tweak = "2"; 13 13 14 14 subdir = "${major}.${minor}.${patch}"; ··· 17 17 18 18 src = fetchurl { 19 19 url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - sha256 = "0jnayv1i0iq1gpf3q3z9nfq6jid77d0c76675lkqb3gi07f63nzz"; 20 + sha256 = "1g9akxvm7fh6lnprnc3g184qdy8gbinhb4rb60gjpw82ip6d5acz"; 21 21 }; 22 22 23 23 # FIXME rename 24 24 translations = fetchSrc { 25 25 name = "translations"; 26 - sha256 = "01g09bbn1ixrsfj4l0x6x8p06dz9hnlrhnr3f3xb42drmi9ipvjv"; 26 + sha256 = "1v3kpk56fm783d5wihx41jqidpclizkfxrg4n0pq95d79hdiljsl"; 27 27 }; 28 28 29 29 # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from ··· 31 31 32 32 help = fetchSrc { 33 33 name = "help"; 34 - sha256 = "1p38wlclv6cbjpkkq7n2mjpxy84pxi4vxc9s5kjp4dm63zzxafd6"; 34 + sha256 = "1np9f799ww12kggl5az6piv5fi9rf737il5a5r47r4wl2li56qqb"; 35 35 }; 36 36 }
+1 -1
pkgs/applications/version-management/git-and-tools/git-interactive-rebase-tool/default.nix
··· 23 23 description = "Native cross platform full feature terminal based sequence editor for git interactive rebase"; 24 24 changelog = "https://github.com/MitMaro/git-interactive-rebase-tool/releases/tag/${version}"; 25 25 license = licenses.mit; 26 - maintainers = with maintainers; [ masaeedu zowoq ]; 26 + maintainers = with maintainers; [ masaeedu SuperSandro2000 zowoq ]; 27 27 }; 28 28 }
+57
pkgs/applications/window-managers/labwc/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , meson 6 + , ninja 7 + , cairo 8 + , glib 9 + , libinput 10 + , libxml2 11 + , pandoc 12 + , pango 13 + , wayland 14 + , wayland-protocols 15 + , wlroots 16 + , libxcb 17 + , libxkbcommon 18 + , xwayland 19 + }: 20 + 21 + stdenv.mkDerivation rec { 22 + pname = "labwc"; 23 + version = "unstable-2021-01-12"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "johanmalm"; 27 + repo = pname; 28 + rev = "2a7086d9f7367d4a81bce58a6f7fc6614bbfbdb3"; 29 + sha256 = "ECwEbWkCjktNNtbLSCflOVlEyxkg4XTfRevq7+qQ2IA="; 30 + }; 31 + 32 + nativeBuildInputs = [ pkg-config meson ninja pandoc ]; 33 + buildInputs = [ 34 + cairo 35 + glib 36 + libinput 37 + libxml2 38 + pango 39 + wayland 40 + wayland-protocols 41 + wlroots 42 + libxcb 43 + libxkbcommon 44 + xwayland 45 + ]; 46 + 47 + mesonFlags = [ "-Dxwayland=enabled" ]; 48 + 49 + meta = with lib; { 50 + homepage = "https://github.com/johanmalm/labwc"; 51 + description = "Openbox alternative for Wayland"; 52 + license = licenses.gpl2Plus; 53 + maintainers = with maintainers; [ AndersonTorres ]; 54 + platforms = platforms.unix; 55 + }; 56 + } 57 + # TODO: report a SIGSEGV when labwc starts inside a started Wayland window
+5 -10
pkgs/build-support/fetchzip/default.nix
··· 45 45 '' else '' 46 46 mv "$unpackDir" "$out" 47 47 '') 48 - + extraPostFetch 49 - # Remove write permissions for files unpacked with write bits set 48 + + '' 49 + ${extraPostFetch} 50 + '' 51 + # Remove non-owner write permissions 50 52 # Fixes https://github.com/NixOS/nixpkgs/issues/38649 51 - # 52 - # However, we should (for the moment) retain write permission on the directory 53 - # itself, to avoid tickling https://github.com/NixOS/nix/issues/4295 in 54 - # single-user Nix installations. This is because in sandbox mode we'll try to 55 - # move the path, and if we don't have write permissions on the directory, 56 - # then we can't update the ".." entry. 57 53 + '' 58 - chmod -R a-w "$out" 59 - chmod u+w "$out" 54 + chmod 755 "$out" 60 55 ''; 61 56 } // removeAttrs args [ "stripRoot" "extraPostFetch" ])).overrideAttrs (x: { 62 57 # Hackety-hack: we actually need unzip hooks, too
+2 -2
pkgs/data/misc/osinfo-db/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "osinfo-db"; 5 - version = "20201218"; 5 + version = "20210202"; 6 6 7 7 src = fetchurl { 8 8 url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-APKuXWtnpF1r/q2MXddaDeBnBigx4hwMevPwx5uNq3k="; 9 + sha256 = "sha256-C7Vq7d+Uos9IhTwOgsrK64c9mMGVkNgfvOrbBqORsRs="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ osinfo-db-tools gettext libxml2 ];
+10
pkgs/development/compilers/ghc/8.10.1.nix
··· 116 116 117 117 outputs = [ "out" "doc" ]; 118 118 119 + patches = [ 120 + # See upstream patch at 121 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 122 + # from source distributions, the auto-generated configure script needs to be 123 + # patched as well, therefore we use an in-tree patch instead of pulling the 124 + # upstream patch. Don't forget to check backport status of the upstream patch 125 + # when adding new GHC releases in nixpkgs. 126 + ./respect-ar-path.patch 127 + ]; 128 + 119 129 postPatch = "patchShebangs ."; 120 130 121 131 # GHC is a bit confused on its cross terminology.
+9 -1
pkgs/development/compilers/ghc/8.10.2.nix
··· 107 107 108 108 outputs = [ "out" "doc" ]; 109 109 110 - # https://gitlab.haskell.org/ghc/ghc/-/issues/18549 111 110 patches = [ 111 + # See upstream patch at 112 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 113 + # from source distributions, the auto-generated configure script needs to be 114 + # patched as well, therefore we use an in-tree patch instead of pulling the 115 + # upstream patch. Don't forget to check backport status of the upstream patch 116 + # when adding new GHC releases in nixpkgs. 117 + ./respect-ar-path.patch 118 + 119 + # https://gitlab.haskell.org/ghc/ghc/-/issues/18549 112 120 ./issue-18549.patch 113 121 ] ++ lib.optionals stdenv.isDarwin [ 114 122 # Make Block.h compile with c++ compilers. Remove with the next release
+9 -1
pkgs/development/compilers/ghc/8.10.3.nix
··· 107 107 108 108 outputs = [ "out" "doc" ]; 109 109 110 - patches = lib.optionals stdenv.isDarwin [ 110 + patches = [ 111 + # See upstream patch at 112 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 113 + # from source distributions, the auto-generated configure script needs to be 114 + # patched as well, therefore we use an in-tree patch instead of pulling the 115 + # upstream patch. Don't forget to check backport status of the upstream patch 116 + # when adding new GHC releases in nixpkgs. 117 + ./respect-ar-path.patch 118 + ] ++ lib.optionals stdenv.isDarwin [ 111 119 # Make Block.h compile with c++ compilers. Remove with the next release 112 120 (fetchpatch { 113 121 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/97d0b0a367e4c6a52a17c3299439ac7de129da24.patch";
+8
pkgs/development/compilers/ghc/8.6.5.nix
··· 110 110 outputs = [ "out" "doc" ]; 111 111 112 112 patches = [ 113 + # See upstream patch at 114 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 115 + # from source distributions, the auto-generated configure script needs to be 116 + # patched as well, therefore we use an in-tree patch instead of pulling the 117 + # upstream patch. Don't forget to check backport status of the upstream patch 118 + # when adding new GHC releases in nixpkgs. 119 + ./respect-ar-path.patch 120 + 113 121 (fetchpatch { # https://phabricator.haskell.org/D5123 114 122 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/13ff0b7ced097286e0d7b054f050871effe07f86.diff"; 115 123 name = "D5123.diff";
+10
pkgs/development/compilers/ghc/8.8.2.nix
··· 111 111 112 112 outputs = [ "out" "doc" ]; 113 113 114 + patches = [ 115 + # See upstream patch at 116 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 117 + # from source distributions, the auto-generated configure script needs to be 118 + # patched as well, therefore we use an in-tree patch instead of pulling the 119 + # upstream patch. Don't forget to check backport status of the upstream patch 120 + # when adding new GHC releases in nixpkgs. 121 + ./respect-ar-path.patch 122 + ]; 123 + 114 124 postPatch = "patchShebangs ."; 115 125 116 126 # GHC is a bit confused on its cross terminology.
+10
pkgs/development/compilers/ghc/8.8.3.nix
··· 116 116 117 117 outputs = [ "out" "doc" ]; 118 118 119 + patches = [ 120 + # See upstream patch at 121 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 122 + # from source distributions, the auto-generated configure script needs to be 123 + # patched as well, therefore we use an in-tree patch instead of pulling the 124 + # upstream patch. Don't forget to check backport status of the upstream patch 125 + # when adding new GHC releases in nixpkgs. 126 + ./respect-ar-path.patch 127 + ]; 128 + 119 129 postPatch = "patchShebangs ."; 120 130 121 131 # GHC is a bit confused on its cross terminology.
+10
pkgs/development/compilers/ghc/8.8.4.nix
··· 116 116 117 117 outputs = [ "out" "doc" ]; 118 118 119 + patches = [ 120 + # See upstream patch at 121 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4885. Since we build 122 + # from source distributions, the auto-generated configure script needs to be 123 + # patched as well, therefore we use an in-tree patch instead of pulling the 124 + # upstream patch. Don't forget to check backport status of the upstream patch 125 + # when adding new GHC releases in nixpkgs. 126 + ./respect-ar-path.patch 127 + ]; 128 + 119 129 postPatch = "patchShebangs ."; 120 130 121 131 # GHC is a bit confused on its cross terminology.
+3 -3
pkgs/development/compilers/ghc/9.0.1.nix
··· 96 96 97 97 in 98 98 stdenv.mkDerivation (rec { 99 - version = "9.0.0.20201227"; 99 + version = "9.0.1"; 100 100 name = "${targetPrefix}ghc-${version}"; 101 101 102 102 src = fetchurl { 103 - url = "https://downloads.haskell.org/ghc/9.0.1-rc1/ghc-${version}-src.tar.xz"; 104 - sha256 = "1kg227fzg9qq2p7r8xqr99vvnx7ind4clxkydikyzf3vqvaacjfy"; 103 + url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 104 + sha256 = "1y9mi9bq76z04hmggavrn8jwi1gx92bm3zhx6z69ypq6wha068x5"; 105 105 }; 106 106 107 107 enableParallelBuilding = true;
+25
pkgs/development/compilers/ghc/respect-ar-path.patch
··· 1 + diff -urd a/aclocal.m4 b/aclocal.m4 2 + --- a/aclocal.m4 3 + +++ b/aclocal.m4 4 + @@ -1199,7 +1199,8 @@ 5 + # thinks that target == host so it never checks the unqualified 6 + # tools for Windows. See #14274. 7 + AC_DEFUN([FP_PROG_AR], 8 + -[if test -z "$fp_prog_ar"; then 9 + +[AC_SUBST(fp_prog_ar,$AR) 10 + +if test -z "$fp_prog_ar"; then 11 + if test "$HostOS" = "mingw32" 12 + then 13 + AC_PATH_PROG([fp_prog_ar], [ar]) 14 + diff -urd a/configure b/configure 15 + --- a/configure 16 + +++ b/configure 17 + @@ -10744,6 +10744,8 @@ 18 + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 19 + 20 + 21 + +fp_prog_ar=$AR 22 + + 23 + if test -z "$fp_prog_ar"; then 24 + if test "$HostOS" = "mingw32" 25 + then
+5 -13
pkgs/development/haskell-modules/configuration-common.nix
··· 1405 1405 # quickcheck-instances is only used in the tests of binary-instances. 1406 1406 binary-instances = dontCheck super.binary-instances; 1407 1407 1408 - # tons of overrides for bleeding edge versions for ghcide and hls 1409 - # overriding aeson on all of them to prevent double compilations 1410 - # this shouldn‘t break anything because nearly all their reverse deps are 1411 - # in this list or marked as broken anyways 1412 1408 # 2020-11-19: Checks nearly fixed, but still disabled because of flaky tests: 1413 1409 # https://github.com/haskell/haskell-language-server/issues/610 1414 1410 # https://github.com/haskell/haskell-language-server/issues/611 1415 - haskell-language-server = dontCheck (super.haskell-language-server.override { 1416 - lsp-test = dontCheck self.lsp-test; 1417 - fourmolu = self.fourmolu_0_3_0_0; 1418 - }); 1411 + haskell-language-server = dontCheck super.haskell-language-server; 1412 + 1419 1413 # 2021-01-20 1420 1414 # apply-refact 0.9.0.0 get's a build error with hls-hlint-plugin 0.8.0 1421 1415 # https://github.com/haskell/haskell-language-server/issues/1240 1422 1416 apply-refact = super.apply-refact_0_8_2_1; 1423 - 1424 - fourmolu = dontCheck super.fourmolu; 1425 1417 1426 1418 # 1. test requires internet 1427 1419 # 2. dependency shake-bench hasn't been published yet so we also need unmarkBroken and doDistribute 1428 - ghcide = doDistribute (unmarkBroken (dontCheck (super.ghcide_0_7_0_0.override { lsp-test = dontCheck self.lsp-test; }))); 1429 - refinery = doDistribute super.refinery_0_3_0_0; 1420 + ghcide = doDistribute (unmarkBroken (dontCheck super.ghcide)); 1421 + 1430 1422 data-tree-print = doJailbreak super.data-tree-print; 1431 1423 1432 1424 # 2020-11-15: aeson 1.5.4.1 needs to new quickcheck-instances for testing ··· 1527 1519 1528 1520 # 2020-12-05: http-client is fixed on too old version 1529 1521 essence-of-live-coding-warp = super.essence-of-live-coding-warp.override { 1530 - http-client = self.http-client_0_7_4; 1522 + http-client = self.http-client_0_7_5; 1531 1523 }; 1532 1524 1533 1525 # 2020-12-06: Restrictive upper bounds w.r.t. pandoc-types (https://github.com/owickstrom/pandoc-include-code/issues/27)
+1
pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
··· 88 88 89 89 # ghc versions prior to 8.8.x needs additional dependency to compile successfully. 90 90 ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser; 91 + hls-hlint-plugin = addBuildDepend super.hls-hlint-plugin self.ghc-lib; 91 92 92 93 }
+5
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
··· 94 94 95 95 # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore. 96 96 exceptions = super.exceptions_0_10_4; 97 + 98 + # Older compilers need the latest ghc-lib to build this package. 99 + hls-hlint-plugin = addBuildDepend super.hls-hlint-plugin self.ghc-lib; 100 + 101 + mmorph = super.mmorph_1_1_3; 97 102 }
+4
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 123 123 # ghc versions which don‘t match the ghc-lib-parser-ex version need the 124 124 # additional dependency to compile successfully. 125 125 ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser; 126 + 127 + # Older compilers need the latest ghc-lib to build this package. 128 + hls-hlint-plugin = addBuildDepend super.hls-hlint-plugin self.ghc-lib; 129 + 126 130 }
-4
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 100 100 url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/regex-base-0.94.0.0.patch"; 101 101 sha256 = "0k5fglbl7nnhn8400c4cpnflxcbj9p3xi5prl9jfmszr31jwdy5d"; 102 102 }); 103 - syb = appendPatch (dontCheck super.syb) (pkgs.fetchpatch { 104 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/syb-0.7.1.patch"; 105 - sha256 = "1407r8xv6bfnmpbw7glfh4smi76a2fc9pkq300c3d9f575708zqr"; 106 - }); 107 103 108 104 # The test suite depends on ChasingBottoms, which is broken with ghc-9.0.x. 109 105 unordered-containers = dontCheck super.unordered-containers;
+168 -169
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 73 73 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 74 74 # not yet available in Nixpkgs 75 75 - gi-gdkx11 < 4 76 - # haskell-language-server 0.5.0.0 doesn't accept newer versions 77 - - fourmolu ==0.2.* 78 - - refinery ==0.2.* 79 - # Stackage Nightly 2021-01-29 76 + - hls-plugin-api == 0.6.0.0 # Needed for hls 0.8.0 77 + - hls-eval-plugin == 0.1.0.0 # Needed for hls 0.8.0 78 + - hls-hlint-plugin == 0.1.0.0 # Needed for hls 0.8.0 79 + - ghcide == 0.7.0.0 # Needed for hls 0.8.0 80 + 81 + # Stackage Nightly 2021-02-02 80 82 - abstract-deque ==0.3 81 83 - abstract-par ==0.3.3 82 84 - AC-Angle ==1.0 ··· 215 217 - ansi-terminal ==0.10.3 216 218 - ansi-wl-pprint ==0.6.9 217 219 - ANum ==0.2.0.2 218 - - ap-normalize ==0.1.0.0 219 220 - apecs ==0.9.2 220 221 - apecs-gloss ==0.2.4 221 222 - apecs-physics ==0.4.5 222 223 - api-field-json-th ==0.1.0.2 223 224 - api-maker ==0.1.0.0 224 - - app-settings ==0.2.0.12 225 + - ap-normalize ==0.1.0.0 225 226 - appar ==0.1.8 226 227 - appendmap ==0.1.5 227 228 - apply-refact ==0.9.0.0 228 229 - apportionment ==0.0.0.3 229 230 - approximate ==0.3.2 230 231 - approximate-equality ==1.1.0.2 232 + - app-settings ==0.2.0.12 231 233 - arbor-lru-cache ==0.1.1.1 232 234 - arbor-postgres ==0.0.5 233 235 - arithmoi ==0.11.0.1 ··· 236 238 - ascii ==1.0.1.0 237 239 - ascii-case ==1.0.0.2 238 240 - ascii-char ==1.0.0.6 241 + - asciidiagram ==1.3.3.3 239 242 - ascii-group ==1.0.0.2 240 243 - ascii-predicates ==1.0.0.2 241 244 - ascii-progress ==0.3.3.0 242 245 - ascii-superset ==1.0.1.0 243 246 - ascii-th ==1.0.0.2 244 - - asciidiagram ==1.3.3.3 245 247 - asif ==6.0.4 246 248 - asn1-encoding ==0.9.6 247 249 - asn1-parse ==0.9.5 ··· 269 271 - authenticate ==1.3.5 270 272 - authenticate-oauth ==1.6.0.1 271 273 - auto ==0.4.3.1 272 - - auto-update ==0.1.6 273 274 - autoexporter ==1.1.19 275 + - auto-update ==0.1.6 274 276 - avers ==0.0.17.1 275 277 - avro ==0.5.2.0 276 278 - aws-cloudfront-signed-cookies ==0.2.0.6 ··· 278 280 - backtracking ==0.1.0 279 281 - bank-holidays-england ==0.2.0.6 280 282 - barbies ==2.0.2.0 281 - - base-compat ==0.11.2 282 - - base-compat-batteries ==0.11.2 283 - - base-orphans ==0.8.4 284 - - base-prelude ==1.4 285 - - base-unicode-symbols ==0.2.4.2 286 283 - base16 ==0.3.0.1 287 284 - base16-bytestring ==0.1.1.7 288 285 - base16-lens ==0.1.3.0 ··· 296 293 - base64-bytestring-type ==1.0.1 297 294 - base64-lens ==0.3.0 298 295 - base64-string ==0.2 296 + - base-compat ==0.11.2 297 + - base-compat-batteries ==0.11.2 299 298 - basement ==0.0.11 299 + - base-orphans ==0.8.4 300 + - base-prelude ==1.4 301 + - base-unicode-symbols ==0.2.4.2 300 302 - basic-prelude ==0.7.0 301 303 - bazel-runfiles ==0.12 302 304 - bbdb ==0.8 ··· 309 311 - bibtex ==0.1.0.6 310 312 - bifunctors ==5.5.10 311 313 - bimap ==0.4.0 312 - - bimap-server ==0.1.0.1 313 314 - bimaps ==0.1.0.2 315 + - bimap-server ==0.1.0.1 314 316 - bin ==0.1 315 317 - binary-conduit ==1.3.1 316 318 - binary-ext ==2.0.4 ··· 330 332 - bins ==0.1.2.0 331 333 - bitarray ==0.0.1.1 332 334 - bits ==0.5.2 333 - - bits-extra ==0.0.2.0 334 335 - bitset-word8 ==0.1.1.2 336 + - bits-extra ==0.0.2.0 335 337 - bitvec ==1.0.3.0 336 338 - bitwise-enum ==1.0.0.3 337 339 - blake2 ==0.3.0 ··· 357 359 - boring ==0.1.3 358 360 - both ==0.1.1.1 359 361 - bound ==2.0.2 362 + - BoundedChan ==1.0.3.0 360 363 - bounded-queue ==1.0.0 361 - - BoundedChan ==1.0.3.0 362 364 - boundingboxes ==0.2.3 363 365 - bower-json ==1.0.0.1 364 366 - boxes ==0.1.5 ··· 376 378 - butcher ==1.3.3.2 377 379 - bv ==0.5 378 380 - bv-little ==1.1.1 379 - - byte-count-reader ==0.10.1.2 380 - - byte-order ==0.1.2.0 381 381 - byteable ==0.1.1 382 + - byte-count-reader ==0.10.1.2 382 383 - bytedump ==1.0 384 + - byte-order ==0.1.2.0 383 385 - byteorder ==1.0.4 384 386 - bytes ==0.17 385 387 - byteset ==0.1.1.0 ··· 395 397 - bzlib-conduit ==0.3.0.2 396 398 - c14n ==0.1.0.1 397 399 - c2hs ==0.28.7 398 - - ca-province-codes ==1.0.0.0 399 400 - cabal-debian ==5.1 400 401 - cabal-doctest ==1.0.8 401 402 - cabal-file ==0.1.1 ··· 407 408 - calendar-recycling ==0.0.0.1 408 409 - call-stack ==0.2.0 409 410 - can-i-haz ==0.3.1.0 411 + - ca-province-codes ==1.0.0.0 410 412 - cardano-coin-selection ==1.0.1 411 413 - carray ==0.1.6.8 412 414 - casa-client ==0.0.1 413 415 - casa-types ==0.0.1 414 - - case-insensitive ==1.2.1.0 415 416 - cased ==0.1.0.0 417 + - case-insensitive ==1.2.1.0 416 418 - cases ==0.1.4 417 419 - casing ==0.1.4.1 418 420 - cassava ==0.5.2.0 ··· 473 475 - cmark-gfm ==0.2.2 474 476 - cmark-lucid ==0.1.0.0 475 477 - cmdargs ==0.10.20 478 + - codec-beam ==0.2.0 479 + - codec-rpm ==0.2.2 480 + - code-page ==0.2 476 481 - co-log ==0.4.0.1 477 482 - co-log-concurrent ==0.5.0.0 478 483 - co-log-core ==0.2.1.1 479 - - code-page ==0.2 480 - - codec-beam ==0.2.0 481 - - codec-rpm ==0.2.2 482 484 - Color ==0.3.0 483 485 - colorful-monoids ==0.2.1.3 484 486 - colorize-haskell ==1.0.1 ··· 524 526 - conferer-aeson ==1.0.0.0 525 527 - conferer-hspec ==1.0.0.0 526 528 - conferer-warp ==1.0.0.0 529 + - ConfigFile ==1.1.4 527 530 - config-ini ==0.2.4.0 528 - - ConfigFile ==1.1.4 529 531 - configurator ==0.3.0.0 530 532 - configurator-export ==0.1.0.1 531 533 - configurator-pg ==0.2.5 ··· 533 535 - connection-pool ==0.2.2 534 536 - console-style ==0.0.2.1 535 537 - constraint ==0.1.4.0 536 - - constraint-tuples ==0.1.2 537 538 - constraints ==0.12 539 + - constraint-tuples ==0.1.2 538 540 - construct ==0.3 539 541 - contravariant ==1.5.3 540 542 - contravariant-extras ==0.3.5.2 ··· 562 564 - cron ==0.7.0 563 565 - crypto-api ==0.13.3 564 566 - crypto-cipher-types ==0.0.9 567 + - cryptocompare ==0.1.2 565 568 - crypto-enigma ==0.1.1.6 566 - - crypto-numbers ==0.2.7 567 - - crypto-pubkey ==0.2.8 568 - - crypto-pubkey-types ==0.4.3 569 - - crypto-random ==0.0.9 570 - - crypto-random-api ==0.2.0 571 - - cryptocompare ==0.1.2 572 569 - cryptohash ==0.11.9 573 570 - cryptohash-cryptoapi ==0.1.4 574 571 - cryptohash-md5 ==0.11.100.1 ··· 577 574 - cryptonite ==0.27 578 575 - cryptonite-conduit ==0.2.2 579 576 - cryptonite-openssl ==0.7 577 + - crypto-numbers ==0.2.7 578 + - crypto-pubkey ==0.2.8 579 + - crypto-pubkey-types ==0.4.3 580 + - crypto-random ==0.0.9 581 + - crypto-random-api ==0.2.0 580 582 - csp ==1.4.0 581 583 - css-syntax ==0.1.0.0 582 584 - css-text ==0.1.3.0 ··· 613 615 - data-default-instances-dlist ==0.0.1 614 616 - data-default-instances-old-locale ==0.0.1 615 617 - data-diverse ==4.7.0.0 618 + - datadog ==0.2.5.0 616 619 - data-dword ==0.3.2 617 620 - data-endian ==0.1.1 618 621 - data-fix ==0.3.0 ··· 631 634 - data-reify ==0.6.3 632 635 - data-serializer ==0.3.4.1 633 636 - data-textual ==0.3.0.3 634 - - datadog ==0.2.5.0 635 637 - dataurl ==0.1.0.0 636 638 - DAV ==1.3.4 637 639 - DBFunctor ==0.1.1.1 ··· 650 652 - dense-linear-algebra ==0.1.0.0 651 653 - depq ==0.4.1.0 652 654 - deque ==0.4.3 653 - - derive-topdown ==0.0.2.2 654 655 - deriveJsonNoPrefix ==0.1.0.1 656 + - derive-topdown ==0.0.2.2 655 657 - deriving-aeson ==0.2.6 656 658 - deriving-compat ==0.5.10 657 659 - derulo ==1.0.9 ··· 660 662 - dhall-json ==1.7.5 661 663 - dhall-lsp-server ==1.0.13 662 664 - dhall-yaml ==1.2.5 663 - - di-core ==1.0.4 664 - - di-monad ==1.3.1 665 665 - diagrams-solve ==0.1.2 666 666 - dialogflow-fulfillment ==0.1.1.3 667 + - di-core ==1.0.4 667 668 - dictionary-sharing ==0.1.0.0 668 669 - Diff ==0.4.0 669 670 - digest ==0.0.1.2 670 671 - digits ==0.3.1 671 672 - dimensional ==1.3 673 + - di-monad ==1.3.1 674 + - directory-tree ==0.12.1 672 675 - direct-sqlite ==2.3.26 673 - - directory-tree ==0.12.1 674 676 - dirichlet ==0.1.0.2 675 677 - discount ==0.1.1 676 678 - disk-free-space ==0.1.0.1 ··· 682 684 - dlist-instances ==0.1.1.1 683 685 - dlist-nonempty ==0.1.1 684 686 - dns ==4.0.1 685 - - do-list ==1.0.1 686 - - do-notation ==0.1.0.2 687 687 - dockerfile ==0.2.0 688 688 - doclayout ==0.3 689 689 - doctemplates ==0.9 ··· 692 692 - doctest-exitcode-stdio ==0.0 693 693 - doctest-lib ==0.1 694 694 - doldol ==0.4.1.2 695 + - do-list ==1.0.1 696 + - do-notation ==0.1.0.2 695 697 - dot ==0.3 696 698 - dotenv ==0.8.0.7 697 699 - dotgen ==0.4.3 ··· 731 733 - elerea ==2.9.0 732 734 - elf ==0.30 733 735 - eliminators ==0.7 736 + - elm2nix ==0.2.1 734 737 - elm-bridge ==0.6.1 735 738 - elm-core-sources ==1.0.0 736 739 - elm-export ==0.6.0.1 737 - - elm2nix ==0.2.1 738 740 - elynx ==0.5.0.1 739 741 - elynx-markov ==0.5.0.1 740 742 - elynx-nexus ==0.5.0.1 ··· 746 748 - enclosed-exceptions ==1.0.3 747 749 - ENIG ==0.0.1.0 748 750 - entropy ==0.4.1.6 749 - - enum-subset-generate ==0.1.0.0 750 751 - enummapset ==0.6.0.3 751 752 - enumset ==0.0.5 753 + - enum-subset-generate ==0.1.0.0 752 754 - envelope ==0.2.2.0 753 755 - envparse ==0.4.1 754 756 - envy ==2.1.0.0 ··· 770 772 - essence-of-live-coding-quickcheck ==0.2.4 771 773 - etc ==0.4.1.0 772 774 - eve ==0.1.9.0 773 - - event-list ==0.1.2 774 775 - eventful-core ==0.2.0 775 776 - eventful-test-helpers ==0.2.0 777 + - event-list ==0.1.2 776 778 - eventstore ==1.4.1 777 779 - every ==0.0.1 778 780 - exact-combinatorics ==0.2.0.9 779 781 - exact-pi ==0.5.0.1 780 782 - exception-hierarchy ==0.1.0.4 781 783 - exception-mtl ==0.4.0.1 784 + - exceptions ==0.10.4 782 785 - exception-transformers ==0.4.0.9 783 786 - exception-via ==0.1.0.0 784 - - exceptions ==0.10.4 785 787 - executable-path ==0.0.3.1 786 788 - exit-codes ==1.0.0 787 789 - exomizer ==1.0.0 788 - - exp-pairs ==0.2.1.0 789 790 - experimenter ==0.1.0.4 790 791 - expiring-cache-map ==0.0.6.1 791 792 - explicit-exception ==0.1.10 793 + - exp-pairs ==0.2.1.0 792 794 - express ==0.1.3 793 795 - extended-reals ==0.2.4.0 794 796 - extensible-effects ==5.0.0.1 ··· 815 817 - fgl ==5.7.0.3 816 818 - file-embed ==0.0.13.0 817 819 - file-embed-lzma ==0 820 + - filelock ==0.1.1.5 821 + - filemanip ==0.3.6.3 818 822 - file-modules ==0.1.2.4 819 823 - file-path-th ==0.1.0.0 820 - - filelock ==0.1.1.5 821 - - filemanip ==0.3.6.3 822 824 - filepattern ==0.1.2 823 825 - fileplow ==0.1.0.0 824 826 - filtrable ==0.1.4.0 ··· 848 850 - fn ==0.3.0.2 849 851 - focus ==1.0.2 850 852 - focuslist ==0.1.0.2 853 + - foldable1 ==0.1.0.0 851 854 - fold-debounce ==0.2.0.9 852 855 - fold-debounce-conduit ==0.2.0.5 853 - - foldable1 ==0.1.0.0 854 856 - foldl ==1.4.10 855 857 - folds ==0.7.5 856 858 - follow-file ==0.0.3 ··· 864 866 - foundation ==0.0.25 865 867 - free ==5.1.5 866 868 - free-categories ==0.2.0.2 867 - - free-vl ==0.1.4 868 869 - freenect ==1.2.1 869 870 - freer-simple ==1.2.1.1 870 871 - freetype2 ==0.2.0 872 + - free-vl ==0.1.4 871 873 - friendly-time ==0.4.1 872 874 - from-sum ==0.2.3.0 873 875 - frontmatter ==0.1.0.2 ··· 883 885 - fuzzcheck ==0.1.1 884 886 - fuzzy ==0.1.0.0 885 887 - fuzzy-dates ==0.1.1.2 886 - - fuzzy-time ==0.1.0.0 887 888 - fuzzyset ==0.2.0 889 + - fuzzy-time ==0.1.0.0 888 890 - gauge ==0.2.5 889 891 - gd ==3000.7.3 890 892 - gdp ==0.0.3.0 ··· 899 901 - generic-lens-core ==2.0.0.0 900 902 - generic-monoid ==0.1.0.1 901 903 - generic-optics ==2.0.0.0 902 - - generic-random ==1.3.0.1 903 904 - GenericPretty ==1.2.2 905 + - generic-random ==1.3.0.1 904 906 - generics-sop ==0.5.1.0 905 907 - generics-sop-lens ==0.2.0.1 906 908 - geniplate-mirror ==0.7.7 ··· 933 935 - ghc-check ==0.5.0.3 934 936 - ghc-core ==0.5.6 935 937 - ghc-events ==0.15.1 936 - - ghc-exactprint ==0.6.3.3 938 + - ghc-exactprint ==0.6.3.4 939 + - ghcid ==0.8.7 940 + - ghci-hexcalc ==0.1.1.0 941 + - ghcjs-codemirror ==0.0.0.2 937 942 - ghc-lib ==8.10.3.20201220 938 943 - ghc-lib-parser ==8.10.3.20201220 939 944 - ghc-lib-parser-ex ==8.10.0.17 ··· 948 953 - ghc-typelits-knownnat ==0.7.4 949 954 - ghc-typelits-natnormalise ==0.7.3 950 955 - ghc-typelits-presburger ==0.5.2.0 951 - - ghci-hexcalc ==0.1.1.0 952 - - ghcid ==0.8.7 953 - - ghcjs-codemirror ==0.0.0.2 954 956 - ghost-buster ==0.1.1.0 955 957 - gi-atk ==2.0.22 956 958 - gi-cairo ==1.0.24 ··· 968 970 - gi-gtk ==3.0.36 969 971 - gi-gtk-hs ==0.3.9 970 972 - gi-harfbuzz ==0.0.3 971 - - gi-pango ==1.0.23 972 - - gi-xlib ==2.0.9 973 973 - ginger ==0.10.1.0 974 974 - gingersnap ==0.3.1.0 975 + - gi-pango ==1.0.23 975 976 - githash ==0.1.5.0 976 977 - github ==0.26 977 978 - github-release ==1.3.5 ··· 980 981 - github-webhooks ==0.15.0 981 982 - gitlab-haskell ==0.2.5 982 983 - gitrev ==1.3.1 984 + - gi-xlib ==2.0.9 983 985 - gl ==0.9 984 986 - glabrous ==2.0.2 985 987 - GLFW-b ==3.3.0.0 ··· 994 996 - gothic ==0.1.5 995 997 - gpolyline ==0.1.0.1 996 998 - graph-core ==0.3.0.0 997 - - graph-wrapper ==0.2.6.0 998 999 - graphite ==0.10.0.1 999 1000 - graphql-client ==1.1.0 1000 1001 - graphs ==0.7.1 1001 1002 - graphviz ==2999.20.1.0 1003 + - graph-wrapper ==0.2.6.0 1002 1004 - gravatar ==0.8.0 1003 1005 - greskell ==1.2.0.0 1004 1006 - greskell-core ==0.1.3.5 ··· 1013 1015 - hackage-db ==2.1.0 1014 1016 - hackage-security ==0.6.0.1 1015 1017 - haddock-library ==1.9.0 1016 - - hadolint ==1.20.0 1018 + - hadolint ==1.21.0 1017 1019 - hadoop-streaming ==0.2.0.3 1018 1020 - hakyll-convert ==0.3.0.3 1019 1021 - half ==0.3.1 ··· 1068 1070 - hedgehog-fakedata ==0.0.1.3 1069 1071 - hedgehog-fn ==1.0 1070 1072 - hedgehog-quickcheck ==0.1.1 1071 - - hedis ==0.14.1 1073 + - hedis ==0.14.2 1072 1074 - hedn ==0.3.0.2 1073 1075 - here ==1.2.13 1074 1076 - heredoc ==0.2.0.0 ··· 1082 1084 - hgeometry ==0.11.0.0 1083 1085 - hgeometry-combinatorial ==0.11.0.0 1084 1086 - hgrev ==0.2.6 1085 - - hi-file-parser ==0.1.0.0 1086 1087 - hidapi ==0.1.5 1087 1088 - hie-bios ==0.7.2 1089 + - hi-file-parser ==0.1.0.0 1088 1090 - higher-leveldb ==0.6.0.0 1089 1091 - highlighting-kate ==0.6.4 1090 1092 - hinfo ==0.0.3.0 ··· 1123 1125 - hpc-lcov ==1.0.1 1124 1126 - hprotoc ==2.4.17 1125 1127 - hruby ==0.3.8 1128 + - hsass ==0.8.0 1126 1129 - hs-bibutils ==6.10.0.0 1127 - - hs-functors ==0.1.7.1 1128 - - hs-GeoIP ==0.3 1129 - - hs-php-session ==0.0.9.3 1130 - - hsass ==0.8.0 1131 1130 - hsc2hs ==0.68.7 1132 1131 - hscolour ==1.24.4 1133 1132 - hsdns ==1.8 1134 1133 - hsebaysdk ==0.4.1.0 1135 1134 - hsemail ==2.2.1 1135 + - hs-functors ==0.1.7.1 1136 + - hs-GeoIP ==0.3 1136 1137 - hsini ==0.5.1.2 1137 1138 - hsinstall ==2.6 1138 1139 - HSlippyMap ==3.0.1 ··· 1166 1167 - hspec-tables ==0.0.1 1167 1168 - hspec-wai ==0.10.1 1168 1169 - hspec-wai-json ==0.10.1 1170 + - hs-php-session ==0.0.9.3 1169 1171 - hsshellscript ==3.4.5 1170 1172 - HStringTemplate ==0.8.7 1171 1173 - HSvm ==0.1.1.3.22 ··· 1179 1181 - html-entities ==1.1.4.3 1180 1182 - html-entity-map ==0.1.0.0 1181 1183 - htoml ==1.0.0.3 1184 + - http2 ==2.0.5 1182 1185 - HTTP ==4000.3.15 1183 1186 - http-api-data ==0.4.1.1 1184 1187 - http-client ==0.6.4.1 ··· 1190 1193 - http-date ==0.0.10 1191 1194 - http-directory ==0.1.8 1192 1195 - http-download ==0.2.0.0 1196 + - httpd-shed ==0.4.1.1 1193 1197 - http-link-header ==1.0.3.1 1194 1198 - http-media ==0.8.0.0 1195 1199 - http-query ==0.1.0 1196 1200 - http-reverse-proxy ==0.6.0 1197 1201 - http-streams ==0.8.7.2 1198 1202 - http-types ==0.12.3 1199 - - http2 ==2.0.5 1200 - - httpd-shed ==0.4.1.1 1201 1203 - human-readable-duration ==0.2.1.4 1202 1204 - HUnit ==1.6.1.0 1203 1205 - HUnit-approx ==1.1.1.1 ··· 1210 1212 - hw-conduit-merges ==0.2.1.0 1211 1213 - hw-diagnostics ==0.0.1.0 1212 1214 - hw-dsv ==0.4.1.0 1215 + - hweblib ==0.6.3 1213 1216 - hw-eliasfano ==0.1.2.0 1214 1217 - hw-excess ==0.2.3.0 1215 1218 - hw-fingertree ==0.1.2.0 ··· 1222 1225 - hw-json-simd ==0.1.1.0 1223 1226 - hw-json-simple-cursor ==0.1.1.0 1224 1227 - hw-json-standard-cursor ==0.2.3.1 1225 - - hw-kafka-client ==4.0.2 1228 + - hw-kafka-client ==4.0.3 1226 1229 - hw-mquery ==0.2.1.0 1227 1230 - hw-packed-vector ==0.2.1.0 1228 1231 - hw-parser ==0.1.1.0 ··· 1234 1237 - hw-string-parse ==0.0.0.4 1235 1238 - hw-succinct ==0.1.0.1 1236 1239 - hw-xml ==0.5.1.0 1237 - - hweblib ==0.6.3 1238 1240 - hxt ==9.3.1.18 1239 1241 - hxt-charproperties ==9.4.0.0 1240 1242 - hxt-css ==0.1.0.3 ··· 1318 1320 - iso3166-country-codes ==0.20140203.8 1319 1321 - iso639 ==0.1.0.3 1320 1322 - iso8601-time ==0.1.5 1321 - - it-has ==0.2.0.0 1322 1323 - iterable ==3.0 1323 - - ix-shapable ==0.1.0 1324 + - it-has ==0.2.0.0 1324 1325 - ixset-typed ==0.5 1325 1326 - ixset-typed-binary-instance ==0.1.0.2 1326 1327 - ixset-typed-conversions ==0.1.2.0 1327 1328 - ixset-typed-hashable-instance ==0.1.0.2 1329 + - ix-shapable ==0.1.0 1328 1330 - jack ==0.7.1.4 1329 1331 - jalaali ==1.0.0.0 1330 1332 - jira-wiki-markup ==1.3.2 ··· 1335 1337 - js-flot ==0.8.3 1336 1338 - js-jquery ==3.3.1 1337 1339 - json-feed ==1.0.11 1340 + - jsonpath ==0.2.0.0 1338 1341 - json-rpc ==1.0.3 1339 1342 - json-rpc-generic ==0.2.1.5 1340 - - jsonpath ==0.2.0.0 1341 1343 - JuicyPixels ==3.3.5 1342 1344 - JuicyPixels-blurhash ==0.1.0.3 1343 1345 - JuicyPixels-extra ==0.4.1 ··· 1416 1418 - libyaml ==0.1.2 1417 1419 - LibZip ==1.0.1 1418 1420 - life-sync ==1.1.1.0 1419 - - lift-generics ==0.2 1420 1421 - lifted-async ==0.10.1.2 1421 1422 - lifted-base ==0.2.3.12 1423 + - lift-generics ==0.2 1422 1424 - line ==4.0.1 1423 - - linear ==1.21.3 1425 + - linear ==1.21.4 1424 1426 - linear-circuit ==0.1.0.2 1425 1427 - linenoise ==0.3.2 1426 1428 - linux-file-extents ==0.2.0.0 1427 1429 - linux-namespaces ==0.1.3.0 1428 1430 - liquid-fixpoint ==0.8.10.2 1429 1431 - List ==0.6.2 1432 + - ListLike ==4.7.4 1430 1433 - list-predicate ==0.1.0.1 1434 + - listsafe ==0.1.0.1 1431 1435 - list-singleton ==1.0.0.4 1432 1436 - list-t ==1.0.4 1433 - - ListLike ==4.7.4 1434 - - listsafe ==0.1.0.1 1435 1437 - ListTree ==0.2.3 1436 1438 - little-logger ==0.3.1 1437 1439 - little-rio ==0.2.2 ··· 1464 1466 - machines ==0.7.1 1465 1467 - magic ==1.1 1466 1468 - magico ==0.0.2.1 1467 - - main-tester ==0.2.0.1 1468 1469 - mainland-pretty ==0.7.0.1 1470 + - main-tester ==0.2.0.1 1469 1471 - makefile ==1.1.0.0 1470 1472 - managed ==1.0.8 1471 1473 - MapWith ==0.2.0.0 ··· 1477 1479 - massiv-persist ==0.1.0.0 1478 1480 - massiv-serialise ==0.1.0.0 1479 1481 - massiv-test ==0.1.6.1 1482 + - mathexpr ==0.3.0.0 1480 1483 - math-extras ==0.1.1.0 1481 1484 - math-functions ==0.3.4.1 1482 - - mathexpr ==0.3.0.0 1483 1485 - matplotlib ==0.7.5 1484 1486 - matrices ==0.5.0 1485 1487 - matrix ==0.3.6.1 ··· 1491 1493 - mbox-utility ==0.0.3.1 1492 1494 - mcmc ==0.4.0.0 1493 1495 - mcmc-types ==1.0.3 1494 - - med-module ==0.1.2.1 1495 1496 - medea ==1.2.0 1496 1497 - median-stream ==0.7.0.0 1498 + - med-module ==0.1.2.1 1497 1499 - megaparsec ==9.0.1 1498 1500 - megaparsec-tests ==9.0.1 1499 1501 - membrain ==0.0.0.2 ··· 1522 1524 - mime-mail ==0.5.0 1523 1525 - mime-mail-ses ==0.4.3 1524 1526 - mime-types ==0.1.0.9 1525 - - min-max-pqueue ==0.1.0.2 1526 1527 - mini-egison ==1.0.0 1527 1528 - minimal-configuration ==0.1.4 1528 1529 - minimorph ==0.3.0.0 1529 1530 - minio-hs ==1.5.3 1530 1531 - miniutter ==0.5.1.1 1532 + - min-max-pqueue ==0.1.0.2 1531 1533 - mintty ==0.1.2 1532 1534 - missing-foreign ==0.1.1 1533 1535 - MissingH ==1.4.3.0 ··· 1537 1539 - mmark ==0.0.7.2 1538 1540 - mmark-cli ==0.0.5.0 1539 1541 - mmark-ext ==0.2.1.2 1540 - - mmorph ==1.1.3 1542 + - mmorph ==1.1.4 1541 1543 - mnist-idx ==0.1.2.8 1544 + - mockery ==0.3.5 1542 1545 - mock-time ==0.1.0 1543 - - mockery ==0.3.5 1544 1546 - mod ==0.1.2.1 1545 1547 - model ==0.5 1546 1548 - modern-uri ==0.3.3.0 ··· 1550 1552 - monad-control-aligned ==0.0.1.1 1551 1553 - monad-coroutine ==0.9.0.4 1552 1554 - monad-extras ==0.6.0 1555 + - monadic-arrays ==0.2.2 1553 1556 - monad-journal ==0.8.1 1557 + - monadlist ==0.0.2 1554 1558 - monad-logger ==0.3.36 1555 1559 - monad-logger-json ==0.1.0.0 1556 1560 - monad-logger-logstash ==0.1.0.0 ··· 1559 1563 - monad-memo ==0.5.3 1560 1564 - monad-metrics ==0.2.2.0 1561 1565 - monad-par ==0.3.5 1562 - - monad-par-extras ==0.3.3 1563 1566 - monad-parallel ==0.7.2.3 1567 + - monad-par-extras ==0.3.3 1564 1568 - monad-peel ==0.2.1.2 1565 1569 - monad-primitive ==0.1 1566 1570 - monad-products ==4.0.1 1571 + - MonadPrompt ==1.0.0.5 1572 + - MonadRandom ==0.5.2 1567 1573 - monad-resumption ==0.1.4.0 1568 1574 - monad-skeleton ==0.1.5 1569 1575 - monad-st ==0.2.4.1 1576 + - monads-tf ==0.1.0.3 1570 1577 - monad-time ==0.3.1.0 1571 1578 - monad-unlift ==0.2.0 1572 1579 - monad-unlift-ref ==0.2.1 1573 - - monadic-arrays ==0.2.2 1574 - - monadlist ==0.0.2 1575 - - MonadPrompt ==1.0.0.5 1576 - - MonadRandom ==0.5.2 1577 - - monads-tf ==0.1.0.3 1578 1580 - mongoDB ==2.7.0.0 1581 + - monoid-subclasses ==1.0.1 1582 + - monoid-transformer ==0.0.4 1579 1583 - mono-traversable ==1.0.15.1 1580 1584 - mono-traversable-instances ==0.1.1.0 1581 1585 - mono-traversable-keys ==0.1.0 1582 - - monoid-subclasses ==1.0.1 1583 - - monoid-transformer ==0.0.4 1584 1586 - more-containers ==0.2.2.0 1585 1587 - morpheus-graphql ==0.16.0 1586 1588 - morpheus-graphql-client ==0.16.0 ··· 1593 1595 - mpi-hs-cereal ==0.1.0.0 1594 1596 - mtl-compat ==0.2.2 1595 1597 - mtl-prelude ==2.0.3.1 1596 - - multi-containers ==0.1.1 1597 1598 - multiarg ==0.30.0.10 1599 + - multi-containers ==0.1.1 1598 1600 - multimap ==1.2.1 1599 1601 - multipart ==0.2.1 1600 1602 - multiset ==0.3.4.3 1601 1603 - multistate ==0.8.0.3 1602 - - murmur-hash ==0.1.0.9 1603 1604 - murmur3 ==1.0.4 1605 + - murmur-hash ==0.1.0.9 1604 1606 - MusicBrainz ==0.4.1 1605 1607 - mustache ==2.3.1 1606 1608 - mutable-containers ==0.3.4 ··· 1648 1650 - nicify-lib ==1.0.1 1649 1651 - NineP ==0.0.2.1 1650 1652 - nix-paths ==1.0.1 1651 - - no-value ==1.0.0.0 1652 - - non-empty ==0.3.2 1653 - - non-empty-sequence ==0.2.0.4 1654 - - non-negative ==0.1.2 1655 1653 - nonce ==1.0.7 1656 1654 - nondeterminism ==1.4 1655 + - non-empty ==0.3.2 1657 1656 - nonempty-containers ==0.3.4.1 1658 - - nonempty-vector ==0.2.1.0 1659 1657 - nonemptymap ==0.0.6.0 1658 + - non-empty-sequence ==0.2.0.4 1659 + - nonempty-vector ==0.2.1.0 1660 + - non-negative ==0.1.2 1660 1661 - not-gloss ==0.7.7.0 1662 + - no-value ==1.0.0.0 1661 1663 - nowdoc ==0.1.1.0 1662 1664 - nqe ==0.6.3 1663 1665 - nri-env-parser ==0.1.0.3 ··· 1673 1675 - nvim-hs ==2.1.0.4 1674 1676 - nvim-hs-contrib ==2.0.0.0 1675 1677 - nvim-hs-ghcid ==2.0.0.0 1676 - - o-clock ==1.2.0.1 1677 1678 - oauthenticated ==0.2.1.0 1678 1679 - ObjectName ==1.1.0.1 1680 + - o-clock ==1.2.0.1 1679 1681 - odbc ==0.2.2 1680 1682 - oeis2 ==1.0.4 1681 1683 - ofx ==0.4.4.0 ··· 1688 1690 - Only ==0.1 1689 1691 - oo-prototypes ==0.1.0.0 1690 1692 - opaleye ==0.7.1.0 1691 - - open-browser ==0.2.1.0 1692 1693 - OpenAL ==1.7.0.5 1693 1694 - openapi3 ==3.0.1.0 1695 + - open-browser ==0.2.1.0 1694 1696 - openexr-write ==0.1.0.2 1695 1697 - OpenGL ==3.0.3.0 1696 1698 - OpenGLRaw ==3.3.4.0 ··· 1754 1756 - pattern-arrows ==0.0.2 1755 1757 - pava ==0.1.1.0 1756 1758 - pcg-random ==0.1.3.7 1759 + - pcre2 ==1.1.4 1757 1760 - pcre-heavy ==1.0.0.2 1758 1761 - pcre-light ==0.4.1.0 1759 1762 - pcre-utils ==0.1.8.1.1 1760 - - pcre2 ==1.1.4 1761 1763 - pdfinfo ==1.5.4 1762 1764 - peano ==0.1.0.1 1763 1765 - pem ==0.2.4 ··· 1779 1781 - persistent-test ==2.0.3.5 1780 1782 - persistent-typed-db ==0.1.0.2 1781 1783 - pg-harness-client ==0.6.0 1782 - - pg-transact ==0.3.1.1 1783 1784 - pgp-wordlist ==0.1.0.3 1785 + - pg-transact ==0.3.1.1 1784 1786 - phantom-state ==0.2.1.2 1785 1787 - pid1 ==0.1.2.0 1786 1788 - pinboard ==0.10.2.0 ··· 1819 1821 - port-utils ==0.2.1.0 1820 1822 - posix-paths ==0.2.1.6 1821 1823 - possibly ==1.0.0.0 1822 - - post-mess-age ==0.2.1.0 1823 1824 - postgres-options ==0.2.0.0 1824 1825 - postgresql-binary ==0.12.3.3 1825 1826 - postgresql-libpq ==0.9.4.3 ··· 1828 1829 - postgresql-simple ==0.6.4 1829 1830 - postgresql-typed ==0.6.1.2 1830 1831 - postgrest ==7.0.1 1832 + - post-mess-age ==0.2.1.0 1831 1833 - pptable ==0.3.0.0 1832 1834 - pqueue ==1.4.1.3 1833 1835 - prairie ==0.0.1.0 1834 1836 - prefix-units ==0.2.0 1835 1837 - prelude-compat ==0.0.0.2 1836 1838 - prelude-safeenum ==0.1.1.2 1839 + - prettyclass ==1.0.0.0 1837 1840 - pretty-class ==1.0.1.1 1838 1841 - pretty-diff ==0.2.0.3 1839 1842 - pretty-hex ==1.1 1840 - - pretty-relative-time ==0.2.0.0 1841 - - pretty-show ==1.10 1842 - - pretty-simple ==4.0.0.0 1843 - - pretty-sop ==0.2.0.3 1844 - - pretty-terminal ==0.1.0.0 1845 - - prettyclass ==1.0.0.0 1846 1843 - prettyprinter ==1.7.0 1847 1844 - prettyprinter-ansi-terminal ==1.1.2 1848 1845 - prettyprinter-compat-annotated-wl-pprint ==1.1 1849 1846 - prettyprinter-compat-ansi-wl-pprint ==1.0.1 1850 1847 - prettyprinter-compat-wl-pprint ==1.0.0.1 1851 1848 - prettyprinter-convert-ansi-wl-pprint ==1.1.1 1849 + - pretty-relative-time ==0.2.0.0 1850 + - pretty-show ==1.10 1851 + - pretty-simple ==4.0.0.0 1852 + - pretty-sop ==0.2.0.3 1853 + - pretty-terminal ==0.1.0.0 1852 1854 - primes ==0.2.1.0 1853 1855 - primitive ==0.7.1.0 1854 1856 - primitive-addr ==0.1.0.2 ··· 1862 1864 - product-profunctors ==0.11.0.1 1863 1865 - profiterole ==0.1 1864 1866 - profunctors ==5.5.2 1865 - - project-template ==0.2.1.0 1866 1867 - projectroot ==0.2.0.1 1868 + - project-template ==0.2.1.0 1867 1869 - prometheus ==2.2.2 1868 1870 - prometheus-client ==1.0.1 1869 1871 - prometheus-wai-middleware ==1.0.1.0 1870 1872 - promises ==0.3 1871 1873 - prompt ==0.1.1.2 1872 1874 - prospect ==0.1.0.0 1873 - - proto-lens ==0.7.0.0 1874 - - proto-lens-optparse ==0.1.1.7 1875 - - proto-lens-protobuf-types ==0.7.0.0 1876 - - proto-lens-protoc ==0.7.0.0 1877 - - proto-lens-runtime ==0.7.0.0 1878 - - proto-lens-setup ==0.4.0.4 1879 1875 - proto3-wire ==1.1.0 1880 1876 - protobuf ==0.2.1.3 1881 1877 - protobuf-simple ==0.1.1.0 ··· 1883 1879 - protocol-buffers-descriptor ==2.4.17 1884 1880 - protocol-radius ==0.0.1.1 1885 1881 - protocol-radius-test ==0.1.0.1 1882 + - proto-lens ==0.7.0.0 1883 + - proto-lens-optparse ==0.1.1.7 1884 + - proto-lens-protobuf-types ==0.7.0.0 1885 + - proto-lens-protoc ==0.7.0.0 1886 + - proto-lens-runtime ==0.7.0.0 1887 + - proto-lens-setup ==0.4.0.4 1886 1888 - protolude ==0.3.0 1887 1889 - proxied ==0.3.1 1888 1890 - psqueues ==0.2.7.2 ··· 1929 1931 - random-source ==0.3.0.8 1930 1932 - random-tree ==0.6.0.5 1931 1933 - range ==0.3.0.2 1932 - - range-set-list ==0.1.3.1 1933 1934 - Ranged-sets ==0.4.0 1935 + - range-set-list ==0.1.3.1 1934 1936 - rank1dynamic ==0.4.1 1935 1937 - rank2classes ==1.4.1 1936 1938 - Rasterific ==0.7.5.3 1937 1939 - rasterific-svg ==0.3.3.2 1938 - - rate-limit ==1.4.2 1939 1940 - ratel ==1.0.12 1941 + - rate-limit ==1.4.2 1940 1942 - ratel-wai ==1.1.3 1941 1943 - rattle ==0.2 1942 - - raw-strings-qq ==1.1 1943 1944 - rawfilepath ==0.2.4 1944 1945 - rawstring-qm ==0.2.3.0 1946 + - raw-strings-qq ==1.1 1945 1947 - rcu ==0.2.4 1946 1948 - rdf ==0.1.0.4 1947 1949 - rdtsc ==1.3.0.1 1948 1950 - re2 ==0.3 1951 + - readable ==0.3.1 1949 1952 - read-editor ==0.1.0.2 1950 1953 - read-env-var ==1.0.0.0 1951 - - readable ==0.3.1 1952 1954 - reanimate ==1.1.3.2 1953 1955 - reanimate-svg ==0.13.0.0 1954 1956 - rebase ==1.6.1 1955 1957 - record-dot-preprocessor ==0.2.7 1956 1958 - record-hasfield ==1.0 1957 - - record-wrangler ==0.1.1.0 1958 1959 - records-sop ==0.1.0.3 1960 + - record-wrangler ==0.1.1.0 1959 1961 - recursion-schemes ==5.2.1 1960 1962 - reducers ==3.12.3 1963 + - refact ==0.3.0.2 1961 1964 - ref-fd ==0.4.0.2 1962 - - ref-tf ==0.4.0.2 1963 - - refact ==0.3.0.2 1964 - - refined ==0.6.1 1965 + - refined ==0.6.2 1965 1966 - reflection ==2.1.6 1966 1967 - reform ==0.2.7.4 1967 1968 - reform-blaze ==0.2.4.3 1968 1969 - reform-hamlet ==0.0.5.3 1969 1970 - reform-happstack ==0.2.5.4 1970 1971 - RefSerialize ==0.4.0 1972 + - ref-tf ==0.4.0.2 1971 1973 - regex ==1.1.0.0 1972 1974 - regex-applicative ==0.3.4 1973 1975 - regex-applicative-text ==0.1.0.1 ··· 2025 2027 - runmemo ==1.0.0.1 2026 2028 - rvar ==0.2.0.6 2027 2029 - safe ==0.3.19 2030 + - safecopy ==0.10.3.1 2028 2031 - safe-decimal ==0.2.0.0 2029 2032 - safe-exceptions ==0.1.7.1 2030 2033 - safe-foldable ==0.1.0.0 2034 + - safeio ==0.0.5.0 2031 2035 - safe-json ==1.1.1.1 2032 2036 - safe-money ==0.9 2033 - - safe-tensor ==0.2.1.0 2034 - - safecopy ==0.10.3.1 2035 - - safeio ==0.0.5.0 2036 2037 - SafeSemaphore ==0.10.1 2038 + - safe-tensor ==0.2.1.0 2037 2039 - salak ==0.3.6 2038 2040 - salak-yaml ==0.3.5.3 2039 2041 - saltine ==0.1.1.1 ··· 2071 2073 - semigroupoid-extras ==5 2072 2074 - semigroupoids ==5.3.5 2073 2075 - semigroups ==0.19.1 2074 - - semiring-simple ==1.0.0.1 2075 2076 - semirings ==0.6 2077 + - semiring-simple ==1.0.0.1 2076 2078 - semver ==0.4.0.1 2077 2079 - sendfile ==0.7.11.1 2078 2080 - seqalign ==0.2.0.4 ··· 2118 2120 - shared-memory ==0.2.0.0 2119 2121 - shell-conduit ==5.0.0 2120 2122 - shell-escape ==0.2.0 2121 - - shell-utility ==0.1 2122 2123 - shellmet ==0.0.3.1 2123 2124 - shelltestrunner ==1.9 2125 + - shell-utility ==0.1 2124 2126 - shelly ==1.9.0 2125 2127 - shikensu ==0.3.11 2126 2128 - shortcut-links ==0.5.1.1 ··· 2191 2193 - splitmix ==0.1.0.3 2192 2194 - spoon ==0.3.1 2193 2195 - spreadsheet ==0.1.3.8 2194 - - sql-words ==0.1.6.4 2195 2196 - sqlcli ==0.2.2.0 2196 2197 - sqlcli-odbc ==0.2.0.1 2197 2198 - sqlite-simple ==0.4.18.0 2199 + - sql-words ==0.1.6.4 2198 2200 - squeal-postgresql ==0.7.0.1 2199 2201 - squeather ==0.6.0.0 2200 2202 - srcloc ==0.5.1.2 2201 2203 - stache ==2.2.0 2202 - - stack-templatizer ==0.1.0.2 2203 2204 - stackcollapse-ghc ==0.0.1.3 2205 + - stack-templatizer ==0.1.0.2 2204 2206 - stateref ==0.3 2205 2207 - StateVar ==1.2.1 2206 2208 - static-text ==0.2.0.6 ··· 2215 2217 - stm-extras ==0.1.0.3 2216 2218 - stm-hamt ==1.2.0.4 2217 2219 - stm-lifted ==2.5.0.0 2218 - - stm-split ==0.0.2.1 2219 2220 - STMonadTrans ==0.4.5 2221 + - stm-split ==0.0.2.1 2220 2222 - stopwatch ==0.1.0.6 2221 2223 - storable-complex ==0.2.3.0 2222 2224 - storable-endian ==0.2.6 ··· 2237 2239 - strict-list ==0.1.5 2238 2240 - strict-tuple ==0.1.4 2239 2241 - strict-tuple-lens ==0.1.0.1 2242 + - stringbuilder ==0.5.1 2240 2243 - string-class ==0.1.7.0 2241 2244 - string-combinators ==0.6.0.5 2242 2245 - string-conv ==0.1.2 ··· 2244 2247 - string-interpolate ==0.3.0.2 2245 2248 - string-qq ==0.0.4 2246 2249 - string-random ==0.1.4.0 2250 + - stringsearch ==0.3.6.6 2247 2251 - string-transform ==1.1.1 2248 - - stringbuilder ==0.5.1 2249 - - stringsearch ==0.3.6.6 2250 2252 - stripe-concepts ==1.0.2.4 2251 2253 - stripe-core ==2.6.2 2252 2254 - stripe-haskell ==2.6.2 ··· 2271 2273 - symmetry-operations-symbols ==0.0.2.1 2272 2274 - sysinfo ==0.1.1 2273 2275 - system-argv0 ==0.1.1 2276 + - systemd ==2.3.0 2274 2277 - system-fileio ==0.3.16.4 2275 2278 - system-filepath ==0.4.14 2276 2279 - system-info ==0.5.1 2277 - - systemd ==2.3.0 2278 2280 - tabular ==0.2.2.8 2279 2281 - taffybar ==3.2.3 2280 2282 - tagchup ==0.4.1.1 ··· 2291 2293 - tardis ==0.4.1.0 2292 2294 - tasty ==1.2.3 2293 2295 - tasty-ant-xml ==1.1.7 2296 + - tasty-bench ==0.1 2294 2297 - tasty-dejafu ==2.0.0.7 2295 2298 - tasty-discover ==4.2.2 2296 2299 - tasty-expected-failure ==0.12.2 ··· 2340 2343 - text-icu ==0.7.0.1 2341 2344 - text-latin1 ==0.3.1 2342 2345 - text-ldap ==0.1.1.13 2346 + - textlocal ==0.1.0.5 2343 2347 - text-manipulate ==0.2.0.1 2344 2348 - text-metrics ==0.3.0 2345 2349 - text-postgresql ==0.0.3.1 ··· 2350 2354 - text-show ==3.9 2351 2355 - text-show-instances ==3.8.4 2352 2356 - text-zipper ==0.11 2353 - - textlocal ==0.1.0.5 2357 + - tfp ==1.0.1.1 2354 2358 - tf-random ==0.5 2355 - - tfp ==1.0.1.1 2356 2359 - th-abstraction ==0.4.2.0 2357 2360 - th-bang-compat ==0.0.1.0 2358 2361 - th-compat ==0.1 ··· 2360 2363 - th-data-compat ==0.1.0.0 2361 2364 - th-desugar ==1.11 2362 2365 - th-env ==0.1.0.2 2366 + - these ==1.1.1.1 2367 + - these-lens ==1.0.1.1 2368 + - these-optics ==1.0.1.1 2369 + - these-skinny ==0.7.4 2363 2370 - th-expand-syns ==0.4.6.0 2364 2371 - th-extras ==0.0.0.4 2365 2372 - th-lift ==0.8.2 ··· 2367 2374 - th-nowq ==0.1.0.5 2368 2375 - th-orphans ==0.13.11 2369 2376 - th-printf ==0.7 2370 - - th-reify-compat ==0.0.1.5 2371 - - th-reify-many ==0.1.9 2372 - - th-strict-compat ==0.1.0.1 2373 - - th-test-utils ==1.1.0 2374 - - th-utilities ==0.2.4.1 2375 - - these ==1.1.1.1 2376 - - these-lens ==1.0.1.1 2377 - - these-optics ==1.0.1.1 2378 - - these-skinny ==0.7.4 2379 2377 - thread-hierarchy ==0.3.0.2 2380 2378 - thread-local-storage ==0.2 2379 + - threads ==0.5.1.6 2381 2380 - thread-supervisor ==0.2.0.0 2382 - - threads ==0.5.1.6 2383 2381 - threepenny-gui ==0.9.0.0 2382 + - th-reify-compat ==0.0.1.5 2383 + - th-reify-many ==0.1.9 2384 2384 - throttle-io-stream ==0.2.0.1 2385 2385 - through-text ==0.1.0.0 2386 2386 - throwable-exceptions ==0.1.0.9 2387 + - th-strict-compat ==0.1.0.1 2388 + - th-test-utils ==1.1.0 2389 + - th-utilities ==0.2.4.1 2387 2390 - thyme ==0.3.5.5 2388 2391 - tidal ==1.6.1 2389 2392 - tile ==0.3.0.0 2390 2393 - time-compat ==1.9.5 2394 + - timeit ==2.0 2395 + - timelens ==0.2.0.2 2391 2396 - time-lens ==0.4.0.2 2392 2397 - time-locale-compat ==0.1.1.5 2393 2398 - time-locale-vietnamese ==1.0.0.0 2394 2399 - time-manager ==0.0.0 2395 2400 - time-parsers ==0.1.2.1 2396 - - time-units ==1.0.0 2397 - - timeit ==2.0 2398 - - timelens ==0.2.0.2 2399 - - timer-wheel ==0.3.0 2400 2401 - timerep ==2.0.1.0 2402 + - timer-wheel ==0.3.0 2403 + - time-units ==1.0.0 2401 2404 - timezone-olson ==0.2.0 2402 2405 - timezone-series ==0.1.9 2403 2406 - tinylog ==0.15.0 ··· 2432 2435 - ttl-hashtables ==1.4.1.0 2433 2436 - ttrie ==0.1.2.1 2434 2437 - tuple ==0.3.0.2 2438 + - tuples-homogenous-h98 ==0.1.1.0 2435 2439 - tuple-sop ==0.3.1.0 2436 2440 - tuple-th ==0.2.5 2437 - - tuples-homogenous-h98 ==0.1.1.0 2438 2441 - turtle ==1.5.20 2442 + - typecheck-plugin-nat-simple ==0.1.0.2 2443 + - TypeCompose ==0.9.14 2444 + - typed-process ==0.2.6.0 2445 + - typed-uuid ==0.0.0.2 2439 2446 - type-equality ==1 2440 2447 - type-errors ==0.2.0.0 2441 2448 - type-errors-pretty ==0.0.1.1 ··· 2449 2456 - type-of-html ==1.6.1.2 2450 2457 - type-of-html-static ==0.1.0.2 2451 2458 - type-operators ==0.2.0.0 2452 - - type-spec ==0.4.0.0 2453 - - typecheck-plugin-nat-simple ==0.1.0.2 2454 - - TypeCompose ==0.9.14 2455 - - typed-process ==0.2.6.0 2456 - - typed-uuid ==0.0.0.2 2457 2459 - typerep-map ==0.3.3.0 2460 + - type-spec ==0.4.0.0 2458 2461 - tzdata ==0.2.20201021.0 2459 2462 - ua-parser ==0.7.5.1 2460 2463 - uglymemo ==0.1.0.1 ··· 2593 2596 - Win32-notify ==0.3.0.3 2594 2597 - windns ==0.1.0.1 2595 2598 - witch ==0.0.0.4 2599 + - witherable-class ==0 2600 + - within ==0.2.0.1 2596 2601 - with-location ==0.1.0 2597 2602 - with-utf8 ==1.0.2.1 2598 - - witherable-class ==0 2599 - - within ==0.2.0.1 2600 2603 - wizards ==1.0.3 2601 2604 - wl-pprint-annotated ==0.1.0.1 2602 2605 - wl-pprint-console ==0.1.0.2 2603 2606 - wl-pprint-text ==1.2.0.1 2607 + - word24 ==2.0.1 2608 + - word8 ==0.1.3 2604 2609 - word-trie ==0.3.0 2605 2610 - word-wrap ==0.4.1 2606 - - word24 ==2.0.1 2607 - - word8 ==0.1.3 2608 2611 - world-peace ==1.0.2.0 2609 2612 - wrap ==0.0.0 2610 2613 - wreq ==0.5.3.2 ··· 2631 2634 - xml-basic ==0.1.3.1 2632 2635 - xml-conduit ==1.9.0.0 2633 2636 - xml-conduit-writer ==0.1.1.2 2637 + - xmlgen ==0.6.2.2 2634 2638 - xml-hamlet ==0.5.0.1 2635 2639 - xml-helpers ==1.0.0 2636 2640 - xml-html-qq ==0.1.0.1 ··· 2640 2644 - xml-to-json ==2.0.1 2641 2645 - xml-to-json-fast ==2.0.0 2642 2646 - xml-types ==0.3.8 2643 - - xmlgen ==0.6.2.2 2644 2647 - xmonad ==0.15 2645 2648 - xmonad-contrib ==0.16 2646 2649 - xmonad-extras ==0.15.3 ··· 2648 2651 - xxhash-ffi ==0.2.0.0 2649 2652 - yaml ==0.11.5.0 2650 2653 - yamlparse-applicative ==0.1.0.2 2651 - - yes-precure5-command ==5.5.3 2652 2654 - yesod ==1.6.1.0 2653 2655 - yesod-auth ==1.6.10.1 2654 2656 - yesod-auth-hashdb ==1.7.1.5 ··· 2666 2668 - yesod-static ==1.6.1.0 2667 2669 - yesod-test ==1.6.12 2668 2670 - yesod-websockets ==0.3.0.2 2671 + - yes-precure5-command ==5.5.3 2669 2672 - yi-rope ==0.11 2670 2673 - yjsvg ==0.2.0.1 2671 2674 - yjtools ==0.9.18 ··· 2680 2683 - zio ==0.1.0.2 2681 2684 - zip ==1.7.0 2682 2685 - zip-archive ==0.4.1 2683 - - zip-stream ==0.2.0.1 2684 2686 - zipper-extra ==0.1.3.2 2685 2687 - zippers ==0.3 2688 + - zip-stream ==0.2.0.1 2686 2689 - zlib ==0.6.2.2 2687 2690 - zlib-bindings ==0.1.1.5 2688 2691 - zlib-lens ==0.1.2.1 ··· 2694 2697 extra-packages: 2695 2698 - Cabal == 2.2.* # required for jailbreak-cabal etc. 2696 2699 - Cabal == 2.4.* # required for cabal-install etc. 2697 - - dhall == 1.29.0 # required for spago 0.14.0. 2700 + - dhall == 1.29.0 # required for ats-pkg 2701 + - dhall == 1.37.1 # required for spago 0.19.0. 2698 2702 - Diff < 0.4 # required by liquidhaskell-0.8.10.2: https://github.com/ucsd-progsys/liquidhaskell/issues/1729 2699 2703 - ghc-tcplugins-extra ==0.3.2 # required for polysemy-plugin 0.2.5.0 2700 2704 - haddock == 2.23.* # required on GHC < 8.10.x ··· 2707 2711 - dependent-map == 0.2.4.0 # required by Hasura 1.3.1, 2020-08-20 2708 2712 - dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20 2709 2713 - network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15 2710 - - ghcide == 0.7.0.0 # Needed for hls 0.8.0 2711 2714 - apply-refact == 0.8.2.1 # Needed for hls 0.8.0 2715 + - mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls 2712 2716 2713 2717 package-maintainers: 2714 2718 peti: ··· 6036 6040 - haskell-igraph 6037 6041 - haskell-in-space 6038 6042 - haskell-kubernetes 6039 - - haskell-language-server 6040 6043 - haskell-lsp-client 6041 6044 - haskell-ml 6042 6045 - haskell-mpfr ··· 6466 6469 - hlrdb 6467 6470 - hlrdb-core 6468 6471 - hls 6469 - - hls-explicit-imports-plugin 6470 - - hls-hlint-plugin 6471 - - hls-retrie-plugin 6472 6472 - hlwm 6473 6473 - hly 6474 6474 - hmark ··· 6854 6854 - hugs2yc 6855 6855 - hulk 6856 6856 - HulkImport 6857 - - hum 6858 6857 - human-parse 6859 6858 - human-text 6860 6859 - humble-prelude ··· 7563 7562 - libxml-enumerator 7564 7563 - libxslt 7565 7564 - lie 7565 + - lifetimes 7566 7566 - lifted-base-tf 7567 7567 - lifted-protolude 7568 7568 - lifter ··· 8963 8963 - postgresql-tx-squeal 8964 8964 - postgresql-tx-squeal-compat-simple 8965 8965 - postgresql-typed-lifted 8966 - - postgrest 8967 8966 - postgrest-ws 8968 8967 - postie 8969 8968 - postmark
+5 -3
pkgs/development/haskell-modules/configuration-nix.nix
··· 659 659 let 660 660 # spago requires an older version of megaparsec, but it appears to work 661 661 # fine with newer versions. 662 - spagoWithOverrides = doJailbreak super.spago; 662 + spagoWithOverrides = doJailbreak (super.spago.override { 663 + dhall = self.dhall_1_37_1; 664 + }); 663 665 664 666 # This defines the version of the purescript-docs-search release we are using. 665 667 # This is defined in the src/Spago/Prelude.hs file in the spago source. ··· 785 787 testTarget = "unit-tests"; 786 788 }; 787 789 788 - haskell-language-server = overrideCabal super.haskell-language-server (drv: { 790 + haskell-language-server = enableCabalFlag (enableCabalFlag (overrideCabal super.haskell-language-server (drv: { 789 791 postInstall = let 790 792 inherit (pkgs.lib) concatStringsSep take splitString; 791 793 ghc_version = self.ghc.version; ··· 800 802 export PATH=$PATH:$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper 801 803 export HOME=$TMPDIR 802 804 ''; 803 - }); 805 + })) "all-plugins") "all-formatters"; 804 806 805 807 # tests depend on a specific version of solc 806 808 hevm = dontCheck (doJailbreak super.hevm);
+878 -421
pkgs/development/haskell-modules/hackage-packages.nix
··· 8012 8012 }: 8013 8013 mkDerivation { 8014 8014 pname = "HDBC-postgresql"; 8015 - version = "2.4.0.0"; 8016 - sha256 = "1zmilqvlp170nb7zakbhdpihykkq95s7nb7la2sdas1fv69mhnx3"; 8015 + version = "2.5.0.0"; 8016 + sha256 = "1awwrq7hivk1hp709iz624hm2wjbk18hspld91pixv5x34fcn7s9"; 8017 8017 isLibrary = true; 8018 8018 isExecutable = true; 8019 8019 setupHaskellDepends = [ base Cabal ]; ··· 21931 21931 }: 21932 21932 mkDerivation { 21933 21933 pname = "Z-Data"; 21934 - version = "0.5.0.0"; 21935 - sha256 = "07yx0mh1h0p5qsw0sn20mcz542h5dh3p6l3nbzqrjvdpp22s27h0"; 21934 + version = "0.6.0.0"; 21935 + sha256 = "16wb7hrk6rlxl0sks5nkhl60wxwlxdyjwj9j72g40l5x6qnlvk7d"; 21936 21936 setupHaskellDepends = [ base Cabal ]; 21937 21937 libraryHaskellDepends = [ 21938 21938 base bytestring case-insensitive containers deepseq ghc-prim ··· 21959 21959 }: 21960 21960 mkDerivation { 21961 21961 pname = "Z-IO"; 21962 - version = "0.4.0.0"; 21963 - sha256 = "0jyx2mghm40llcvilg6m9120wfngvpmsggy7xy6zdf29lz3v9bd5"; 21962 + version = "0.6.0.0"; 21963 + sha256 = "1s7vdmp2i89c2rvcifn6znwl167ji8x3yrvk19rrkqpamdy9m3m3"; 21964 21964 libraryHaskellDepends = [ 21965 21965 base containers exceptions primitive stm time unix-time 21966 21966 unordered-containers Z-Data ··· 30182 30182 "ansi-terminal-game" = callPackage 30183 30183 ({ mkDerivation, ansi-terminal, array, base, bytestring, cereal 30184 30184 , clock, exceptions, hspec, linebreak, mintty, mtl, QuickCheck 30185 - , random, split, terminal-size, timers-tick 30185 + , random, split, terminal-size, timers-tick, unidecode 30186 30186 }: 30187 30187 mkDerivation { 30188 30188 pname = "ansi-terminal-game"; 30189 - version = "1.0.0.0"; 30190 - sha256 = "0h33ih7sxzyp1a6r6ivk73lrfx6haxxzmgh56n75sa7p8vhr8f1i"; 30191 - revision = "1"; 30192 - editedCabalFile = "1x601p97ragf9k56qy1ndmn7g3brs8fvvmf1wcrxz1ynhndqqpjw"; 30189 + version = "1.1.0.0"; 30190 + sha256 = "08sy50yicjgcxmnpq2828xggmvxc5yjp3xp03nd0bq4ykyr4za80"; 30193 30191 isLibrary = true; 30194 30192 isExecutable = true; 30195 30193 libraryHaskellDepends = [ 30196 30194 ansi-terminal array base bytestring cereal clock exceptions 30197 30195 linebreak mintty mtl QuickCheck random split terminal-size 30198 - timers-tick 30196 + timers-tick unidecode 30199 30197 ]; 30200 30198 testHaskellDepends = [ 30201 30199 ansi-terminal array base bytestring cereal clock exceptions hspec 30202 30200 linebreak mtl QuickCheck random split terminal-size timers-tick 30201 + unidecode 30203 30202 ]; 30204 30203 description = "sdl-like functions for terminal applications, based on ansi-terminal"; 30205 30204 license = lib.licenses.gpl3; ··· 36491 36490 pname = "aws-larpi"; 36492 36491 version = "0.1.0.0"; 36493 36492 sha256 = "04z5wcvkcvq961zc9pg79k6340vgm6rdws6lfjysl5jrwr5sfxg9"; 36493 + revision = "1"; 36494 + editedCabalFile = "00singwkjvv2g92i16bsaqdq2rwg2l4v39vmy1vdi6dbpalkka4n"; 36494 36495 libraryHaskellDepends = [ 36495 36496 aeson base bytestring modern-uri req text 36496 36497 ]; ··· 42955 42956 pname = "bitwise-enum"; 42956 42957 version = "1.0.0.3"; 42957 42958 sha256 = "0ykrr8x1hc1lsj8cn19jcypvww4598g1v0vrn3z3b7n6hp6wfyis"; 42959 + revision = "3"; 42960 + editedCabalFile = "19d5xwigd482z47s8gpbd2jmm4pmx5bxg2fxkzjl8dias4yb431x"; 42958 42961 libraryHaskellDepends = [ 42959 42962 aeson array base deepseq mono-traversable vector 42960 42963 ]; ··· 44978 44981 pname = "bound"; 44979 44982 version = "2.0.2"; 44980 44983 sha256 = "14kl0aak48m1sbvi0g772hfmn6w984yc4j9p4ljxq6bfb2q4gqax"; 44984 + revision = "1"; 44985 + editedCabalFile = "1349bq2vrmhr63r1iqwfcb1sxm7yyf0641wsqmzd332g3aad159w"; 44981 44986 setupHaskellDepends = [ base Cabal cabal-doctest ]; 44982 44987 libraryHaskellDepends = [ 44983 44988 base bifunctors binary bytes cereal comonad deepseq hashable mmorph ··· 44992 44997 license = lib.licenses.bsd3; 44993 44998 }) {}; 44994 44999 45000 + "bound_2_0_3" = callPackage 45001 + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad 45002 + , deepseq, deriving-compat, functor-classes-compat, hashable 45003 + , mmorph, profunctors, template-haskell, th-abstraction 45004 + , transformers, transformers-compat, vector, void 45005 + }: 45006 + mkDerivation { 45007 + pname = "bound"; 45008 + version = "2.0.3"; 45009 + sha256 = "0rhpcz99sax81zh2k1ww7g2xgfcna56ppj9xc1l4gfnsrrlb27yg"; 45010 + libraryHaskellDepends = [ 45011 + base bifunctors binary bytes cereal comonad deepseq hashable mmorph 45012 + profunctors template-haskell th-abstraction transformers 45013 + transformers-compat 45014 + ]; 45015 + testHaskellDepends = [ 45016 + base deriving-compat functor-classes-compat transformers 45017 + transformers-compat vector void 45018 + ]; 45019 + description = "Making de Bruijn Succ Less"; 45020 + license = lib.licenses.bsd3; 45021 + hydraPlatforms = lib.platforms.none; 45022 + }) {}; 45023 + 44995 45024 "bound-extras" = callPackage 44996 45025 ({ mkDerivation, base, bound, containers, deepseq, filepath 44997 45026 , hashable, pretty, tasty, tasty-golden, text-short, transformers ··· 45419 45448 ]; 45420 45449 description = "A declarative terminal user interface library"; 45421 45450 license = lib.licenses.bsd3; 45451 + }) {}; 45452 + 45453 + "brick_0_60_1" = callPackage 45454 + ({ mkDerivation, base, bytestring, config-ini, containers 45455 + , contravariant, data-clist, deepseq, directory, dlist, exceptions 45456 + , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm 45457 + , template-haskell, text, text-zipper, transformers, unix, vector 45458 + , vty, word-wrap 45459 + }: 45460 + mkDerivation { 45461 + pname = "brick"; 45462 + version = "0.60.1"; 45463 + sha256 = "017zhf5frk1dx5brjnz101pr9hyz4m03sw54gvlx7qv58r4prvjx"; 45464 + isLibrary = true; 45465 + isExecutable = true; 45466 + libraryHaskellDepends = [ 45467 + base bytestring config-ini containers contravariant data-clist 45468 + deepseq directory dlist exceptions filepath microlens microlens-mtl 45469 + microlens-th stm template-haskell text text-zipper transformers 45470 + unix vector vty word-wrap 45471 + ]; 45472 + testHaskellDepends = [ 45473 + base containers microlens QuickCheck vector 45474 + ]; 45475 + description = "A declarative terminal user interface library"; 45476 + license = lib.licenses.bsd3; 45477 + hydraPlatforms = lib.platforms.none; 45422 45478 }) {}; 45423 45479 45424 45480 "brick-dropdownmenu" = callPackage ··· 48092 48148 ({ mkDerivation, base, Cabal, filepath }: 48093 48149 mkDerivation { 48094 48150 pname = "cabal-appimage"; 48095 - version = "0.3.0.0"; 48096 - sha256 = "0m3xq3k4s6rn90vd2sp115jyb722vi9wgih3lz05fnc2bypyg6zi"; 48151 + version = "0.3.0.1"; 48152 + sha256 = "0cl588kqsmq8vpnd96knqp6bllbc1kznfgs786vccvq7s4zxna6v"; 48097 48153 libraryHaskellDepends = [ base Cabal filepath ]; 48098 48154 description = "Cabal support for creating AppImage applications"; 48099 48155 license = lib.licenses.agpl3; ··· 49880 49936 }: 49881 49937 mkDerivation { 49882 49938 pname = "calamity"; 49883 - version = "0.1.24.1"; 49884 - sha256 = "14q0s17an5vk2gq9vcy0ghd30zg1dj3q5vdln86mnd4v34wkpfr2"; 49939 + version = "0.1.24.2"; 49940 + sha256 = "03z9wkvb75vib5m15ml2mrkdq2jgdnjnjp77wdb494xj50g3wgqn"; 49885 49941 libraryHaskellDepends = [ 49886 49942 aeson async base bytestring colour concurrent-extra connection 49887 49943 containers data-default-class data-flags deepseq deque df1 di-core ··· 54705 54761 }: 54706 54762 mkDerivation { 54707 54763 pname = "citeproc"; 54708 - version = "0.3.0.5"; 54709 - sha256 = "18ybi21fmw9rkd4m74dgy1cf3i9l79bpalm79427kass8mv4wpia"; 54764 + version = "0.3.0.7"; 54765 + sha256 = "03cc3d7a1rf3k23150b19y4mx1c6vk53l9c59vv9npf39id33g7s"; 54710 54766 isLibrary = true; 54711 54767 isExecutable = true; 54712 54768 libraryHaskellDepends = [ ··· 59192 59248 }: 59193 59249 mkDerivation { 59194 59250 pname = "compdata"; 59195 - version = "0.12"; 59196 - sha256 = "0b08mmj04bbi735hvvdbg1nmg66qg1c11r0kvq7m569r91bmy54v"; 59251 + version = "0.12.1"; 59252 + sha256 = "0ksa3bgqjvshkrpd74420z9kkb3asq4flszzwrqswd4qw1yn9f05"; 59197 59253 libraryHaskellDepends = [ 59198 59254 base containers deepseq mtl QuickCheck template-haskell 59199 59255 th-expand-syns transformers tree-view ··· 62851 62907 pname = "contra-tracer"; 62852 62908 version = "0.1.0.0"; 62853 62909 sha256 = "146g43sqa23n1qg100jvz5m1jcjfxx4rxzmc8559b6apys9ys4br"; 62910 + revision = "1"; 62911 + editedCabalFile = "1r3rnxlbvfirj4n2vwysh7zkfdwlx3x4p9yjd32hpr3vdikgpvds"; 62854 62912 libraryHaskellDepends = [ base ]; 62855 62913 description = "Arrow and contravariant tracers"; 62856 62914 license = lib.licenses.bsd3; ··· 64860 64918 }: 64861 64919 mkDerivation { 64862 64920 pname = "crdt"; 64863 - version = "10.6"; 64864 - sha256 = "0c86gf70iv59dwmm0yv8isyyd6zy497vqgf6ml9s6rz4hhg1rwl0"; 64921 + version = "10.7"; 64922 + sha256 = "0745aa7zs5niwi55kdkfnyii9vdg9jfqr2872w068r8p33njcbdk"; 64865 64923 libraryHaskellDepends = [ 64866 64924 base binary bytestring containers Diff hashable mtl network-info 64867 64925 safe stm time vector ··· 69041 69099 license = lib.licenses.bsd3; 69042 69100 }) {}; 69043 69101 69102 + "data-fix_0_3_1" = callPackage 69103 + ({ mkDerivation, base, deepseq, hashable }: 69104 + mkDerivation { 69105 + pname = "data-fix"; 69106 + version = "0.3.1"; 69107 + sha256 = "0yfciggx8l82nfpv40w2673glnl9nnbh269kpfbw28i98x0c0icv"; 69108 + libraryHaskellDepends = [ base deepseq hashable ]; 69109 + description = "Fixpoint data types"; 69110 + license = lib.licenses.bsd3; 69111 + hydraPlatforms = lib.platforms.none; 69112 + }) {}; 69113 + 69044 69114 "data-fix-cse" = callPackage 69045 69115 ({ mkDerivation, base, containers, data-fix, transformers }: 69046 69116 mkDerivation { ··· 71688 71758 broken = true; 71689 71759 }) {}; 71690 71760 71691 - "deepseq_1_4_4_0" = callPackage 71761 + "deepseq_1_4_5_0" = callPackage 71692 71762 ({ mkDerivation, array, base, ghc-prim, HUnit, test-framework 71693 71763 , test-framework-hunit 71694 71764 }: 71695 71765 mkDerivation { 71696 71766 pname = "deepseq"; 71697 - version = "1.4.4.0"; 71698 - sha256 = "09kfpmgl679l74b6dadia11pvhya9ik4wrd8x76cgkxk7gwcbkrc"; 71699 - revision = "1"; 71700 - editedCabalFile = "0mbby1hig605jyiyy4m2y2nnjjf5i2adzc6x269hbz4pxscjp43n"; 71767 + version = "1.4.5.0"; 71768 + sha256 = "0d3yw95xkyx7wwx3anfj1fqb10080xykqic483xpl7rvi1mik6js"; 71701 71769 libraryHaskellDepends = [ array base ]; 71702 71770 testHaskellDepends = [ 71703 71771 array base ghc-prim HUnit test-framework test-framework-hunit ··· 72261 72329 }) {}; 72262 72330 72263 72331 "dep-t" = callPackage 72264 - ({ mkDerivation, base, mtl, rank2classes, tasty, tasty-hunit 72265 - , template-haskell, transformers, unliftio-core 72332 + ({ mkDerivation, base, doctest, mtl, rank2classes, sop-core, tasty 72333 + , tasty-hunit, template-haskell, transformers, unliftio-core 72266 72334 }: 72267 72335 mkDerivation { 72268 72336 pname = "dep-t"; 72269 - version = "0.1.3.0"; 72270 - sha256 = "1bzf2czbml949an6gffc7jh898ba2axfh87phnrla0595x7nrx21"; 72337 + version = "0.4.0.2"; 72338 + sha256 = "0jnby6k89ink5dh12y5cc4ws8nn2cwhchnqqxyxwd29pwrx0vmx6"; 72271 72339 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 72272 72340 testHaskellDepends = [ 72273 - base mtl rank2classes tasty tasty-hunit template-haskell 72274 - transformers unliftio-core 72341 + base doctest mtl rank2classes sop-core tasty tasty-hunit 72342 + template-haskell transformers unliftio-core 72275 72343 ]; 72276 72344 description = "Reader-like monad transformer for dependency injection"; 72277 72345 license = lib.licenses.bsd3; 72278 72346 }) {}; 72279 72347 72280 72348 "dep-t-advice" = callPackage 72281 - ({ mkDerivation, base, dep-t, doctest, mtl, rank2classes, sop-core 72282 - , tasty, tasty-hunit, template-haskell, transformers 72349 + ({ mkDerivation, base, criterion, dep-t, doctest, mtl, rank2classes 72350 + , sop-core, tasty, tasty-hunit, template-haskell, transformers 72283 72351 }: 72284 72352 mkDerivation { 72285 72353 pname = "dep-t-advice"; 72286 - version = "0.3.0.0"; 72287 - sha256 = "00nqf37x877s5arkwv55cki068gpgq64yns4qhp039az2mfr4g9q"; 72288 - libraryHaskellDepends = [ base dep-t sop-core ]; 72354 + version = "0.4.0.1"; 72355 + sha256 = "11qjlidmjn2z1gnngrssdzm8hqiq9a54jksp9al8wzflf31jgh0i"; 72356 + libraryHaskellDepends = [ base dep-t sop-core transformers ]; 72289 72357 testHaskellDepends = [ 72290 72358 base dep-t doctest mtl rank2classes sop-core tasty tasty-hunit 72291 72359 template-haskell transformers 72360 + ]; 72361 + benchmarkHaskellDepends = [ 72362 + base criterion dep-t mtl rank2classes sop-core template-haskell 72363 + transformers 72292 72364 ]; 72293 72365 description = "Giving good advice to functions in a DepT environment"; 72294 72366 license = lib.licenses.bsd3; ··· 73336 73408 hydraPlatforms = lib.platforms.none; 73337 73409 }) {}; 73338 73410 73411 + "dhall_1_37_1" = callPackage 73412 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 73413 + , base, bytestring, case-insensitive, cborg, cborg-json, containers 73414 + , contravariant, cryptonite, data-fix, deepseq, Diff, directory 73415 + , doctest, dotgen, either, exceptions, filepath, foldl, gauge 73416 + , generic-random, half, hashable, haskeline, http-client 73417 + , http-client-tls, http-types, lens-family-core, megaparsec, memory 73418 + , mmorph, mockery, mtl, network-uri, optparse-applicative 73419 + , parser-combinators, parsers, pretty-simple, prettyprinter 73420 + , prettyprinter-ansi-terminal, profunctors, QuickCheck 73421 + , quickcheck-instances, repline, scientific, serialise 73422 + , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit 73423 + , tasty-quickcheck, tasty-silver, template-haskell, text 73424 + , text-manipulate, th-lift-instances, transformers 73425 + , transformers-compat, turtle, unordered-containers, uri-encode 73426 + , vector 73427 + }: 73428 + mkDerivation { 73429 + pname = "dhall"; 73430 + version = "1.37.1"; 73431 + sha256 = "16qpasw41wcgbi9ljrs43dn2ajw25yipm8kxri6v5fwj3gyzj24d"; 73432 + revision = "1"; 73433 + editedCabalFile = "11sjra0k7sdy0xcbhlxvjjpd4h7ki9dcrndcpaq71qlgdql32w24"; 73434 + isLibrary = true; 73435 + isExecutable = true; 73436 + enableSeparateDataOutput = true; 73437 + libraryHaskellDepends = [ 73438 + aeson aeson-pretty ansi-terminal atomic-write base bytestring 73439 + case-insensitive cborg cborg-json containers contravariant 73440 + cryptonite data-fix deepseq Diff directory dotgen either exceptions 73441 + filepath half hashable haskeline http-client http-client-tls 73442 + http-types lens-family-core megaparsec memory mmorph mtl 73443 + network-uri optparse-applicative parser-combinators parsers 73444 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 73445 + repline scientific serialise template-haskell text text-manipulate 73446 + th-lift-instances transformers transformers-compat 73447 + unordered-containers uri-encode vector 73448 + ]; 73449 + executableHaskellDepends = [ base ]; 73450 + testHaskellDepends = [ 73451 + base bytestring cborg containers data-fix deepseq directory doctest 73452 + either filepath foldl generic-random http-client http-client-tls 73453 + lens-family-core megaparsec mockery prettyprinter QuickCheck 73454 + quickcheck-instances scientific serialise special-values spoon 73455 + tasty tasty-expected-failure tasty-hunit tasty-quickcheck 73456 + tasty-silver template-haskell text transformers turtle 73457 + unordered-containers vector 73458 + ]; 73459 + benchmarkHaskellDepends = [ 73460 + base bytestring containers directory gauge text 73461 + ]; 73462 + doCheck = false; 73463 + description = "A configuration language guaranteed to terminate"; 73464 + license = lib.licenses.bsd3; 73465 + hydraPlatforms = lib.platforms.none; 73466 + }) {}; 73467 + 73339 73468 "dhall" = callPackage 73340 73469 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 73341 73470 , base, bytestring, case-insensitive, cborg, cborg-json, containers ··· 75828 75957 }: 75829 75958 mkDerivation { 75830 75959 pname = "discord-haskell"; 75831 - version = "1.8.1"; 75832 - sha256 = "07rhg7r4v05q1y6rin4b5v49231r2w35jfwnrbg7b7s1skdld9g3"; 75960 + version = "1.8.2"; 75961 + sha256 = "0gw2c5fb4i6j5prmbj20fsnmci34kbzx3gk8pv93i33jndbs6g6h"; 75833 75962 isLibrary = true; 75834 75963 isExecutable = true; 75835 75964 libraryHaskellDepends = [ ··· 81642 81771 ({ mkDerivation, base, containers, doctest }: 81643 81772 mkDerivation { 81644 81773 pname = "either-list-functions"; 81645 - version = "0.0.4.2"; 81646 - sha256 = "1cagf93vaz41hl5vm1xqvzdds82h2cck294apr5b082nscv6r9bc"; 81774 + version = "0.0.4.4"; 81775 + sha256 = "1kh10iykk6gqzl78smrwv1zl8dcy0ns2raisx5qchcvrdgshzdiy"; 81647 81776 libraryHaskellDepends = [ base containers ]; 81648 81777 testHaskellDepends = [ base doctest ]; 81649 81778 description = "Functions involving lists of Either"; ··· 88048 88177 }: 88049 88178 mkDerivation { 88050 88179 pname = "faktory"; 88051 - version = "1.0.1.4"; 88052 - sha256 = "151jlcrp80f8riyf8rxzvggyxq3k2mg2fi81r7wnc4in6gzsc0qj"; 88180 + version = "1.0.1.5"; 88181 + sha256 = "0v7hd609315lvkkvk00f0q6jkp87hi0zy9zf18b5rkbwalx12avp"; 88053 88182 isLibrary = true; 88054 88183 isExecutable = true; 88055 88184 libraryHaskellDepends = [ ··· 88879 89008 ({ mkDerivation, base, doctest, first-class-families, Glob }: 88880 89009 mkDerivation { 88881 89010 pname = "fcf-containers"; 88882 - version = "0.5.0"; 88883 - sha256 = "0j4ij4iw5axjp56zhxb3kn6ls1l8m2ckqx6620y1yjhz3ja608f2"; 89011 + version = "0.6.0"; 89012 + sha256 = "09sr1xqdjzfk5gysd7hi66xadwcfrjq4q3vakmdilc14lw833wgp"; 88884 89013 isLibrary = true; 88885 89014 isExecutable = true; 88886 89015 libraryHaskellDepends = [ base first-class-families ]; ··· 93787 93916 }: 93788 93917 mkDerivation { 93789 93918 pname = "forsyde-shallow"; 93790 - version = "3.4.0.0"; 93791 - sha256 = "0czrgfx22j94xp56mf4cwrz2rdw2id77va89xpjxxrhdzwzfsvcn"; 93919 + version = "3.4.0.1"; 93920 + sha256 = "0im5xf8dcalsjk85fyvih042apv3wl54k3jlmdjg7fnm3mgxj1yj"; 93792 93921 libraryHaskellDepends = [ base directory old-time process random ]; 93793 93922 testHaskellDepends = [ 93794 93923 base directory doctest hspec old-time process QuickCheck random ··· 93982 94111 }: 93983 94112 mkDerivation { 93984 94113 pname = "fourmolu"; 93985 - version = "0.2.0.0"; 93986 - sha256 = "1jak0xgd6gcbw7icyrblvqnvzjyyakpw2zfnqj1z958qyg763v52"; 93987 - isLibrary = true; 93988 - isExecutable = true; 93989 - enableSeparateDataOutput = true; 93990 - libraryHaskellDepends = [ 93991 - aeson base bytestring containers directory dlist exceptions 93992 - filepath ghc-lib-parser HsYAML HsYAML-aeson mtl syb text 93993 - ]; 93994 - executableHaskellDepends = [ 93995 - base directory ghc-lib-parser gitrev optparse-applicative text 93996 - ]; 93997 - testHaskellDepends = [ 93998 - base containers filepath hspec path path-io text 93999 - ]; 94000 - testToolDepends = [ hspec-discover ]; 94001 - description = "A formatter for Haskell source code"; 94002 - license = lib.licenses.bsd3; 94003 - }) {}; 94004 - 94005 - "fourmolu_0_3_0_0" = callPackage 94006 - ({ mkDerivation, aeson, base, bytestring, containers, directory 94007 - , dlist, exceptions, filepath, ghc-lib-parser, gitrev, hspec 94008 - , hspec-discover, HsYAML, HsYAML-aeson, mtl, optparse-applicative 94009 - , path, path-io, syb, text 94010 - }: 94011 - mkDerivation { 94012 - pname = "fourmolu"; 94013 94114 version = "0.3.0.0"; 94014 94115 sha256 = "0v89dvcr8l0swj23kkakc39q6lyxjz90rqgwy7m6a5p6iv3h2wms"; 94015 94116 isLibrary = true; ··· 94028 94129 testToolDepends = [ hspec-discover ]; 94029 94130 description = "A formatter for Haskell source code"; 94030 94131 license = lib.licenses.bsd3; 94031 - hydraPlatforms = lib.platforms.none; 94032 94132 }) {}; 94033 94133 94034 94134 "fp-ieee" = callPackage ··· 95614 95714 }: 95615 95715 mkDerivation { 95616 95716 pname = "fswatcher"; 95617 - version = "0.2.2"; 95618 - sha256 = "0rdvh9310qbnp6vh3janr60nla33kyfy23yfzbzsca8ridr7ab7w"; 95717 + version = "0.3.0"; 95718 + sha256 = "0bn3pnk7jra4p20hm4ydvnqibfh3h9kc5lswvs8s02wlzf5z5a9f"; 95619 95719 isLibrary = false; 95620 95720 isExecutable = true; 95621 95721 executableHaskellDepends = [ ··· 99635 99735 }: 99636 99736 mkDerivation { 99637 99737 pname = "geoip2"; 99638 - version = "0.4.0.1"; 99639 - sha256 = "0q0clfmq7spfplxr6dxhq0d39f5l95yfr87ixnv2cn0ahcx7fpi7"; 99738 + version = "0.4.1.0"; 99739 + sha256 = "06sbiyqy63ymqafdw14yz6aww412v3g6vsqq0v99vph3yzhn8xxp"; 99640 99740 libraryHaskellDepends = [ 99641 99741 base bytestring cereal containers iproute lens mmap 99642 99742 reinterpret-cast text ··· 100243 100343 }: 100244 100344 mkDerivation { 100245 100345 pname = "ghc-exactprint"; 100246 - version = "0.6.3.3"; 100247 - sha256 = "1psrr6iaa7k5f3zz7j82crg052n3x1h2dljyb16qzbv98bqny6nb"; 100346 + version = "0.6.3.4"; 100347 + sha256 = "0x3z9zlghcd22v6hidby72w6g11xl6cbwyskzcjlv0235csr5v98"; 100248 100348 isLibrary = true; 100249 100349 isExecutable = true; 100250 100350 libraryHaskellDepends = [ ··· 100410 100510 license = lib.licenses.bsd3; 100411 100511 }) {}; 100412 100512 100513 + "ghc-lib_9_0_1_20210205" = callPackage 100514 + ({ mkDerivation, alex, array, base, binary, bytestring, containers 100515 + , deepseq, directory, exceptions, filepath, ghc-lib-parser 100516 + , ghc-prim, happy, hpc, pretty, process, time, transformers, unix 100517 + }: 100518 + mkDerivation { 100519 + pname = "ghc-lib"; 100520 + version = "9.0.1.20210205"; 100521 + sha256 = "1kj69qbz7yv943ybbnmk2xvrba9220ky4cmx3d1vxzjg951x1ici"; 100522 + enableSeparateDataOutput = true; 100523 + libraryHaskellDepends = [ 100524 + array base binary bytestring containers deepseq directory 100525 + exceptions filepath ghc-lib-parser ghc-prim hpc pretty process time 100526 + transformers unix 100527 + ]; 100528 + libraryToolDepends = [ alex happy ]; 100529 + description = "The GHC API, decoupled from GHC versions"; 100530 + license = lib.licenses.bsd3; 100531 + hydraPlatforms = lib.platforms.none; 100532 + }) {}; 100533 + 100413 100534 "ghc-lib-parser" = callPackage 100414 100535 ({ mkDerivation, alex, array, base, binary, bytestring, containers 100415 100536 , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty ··· 100429 100550 license = lib.licenses.bsd3; 100430 100551 }) {}; 100431 100552 100553 + "ghc-lib-parser_9_0_1_20210205" = callPackage 100554 + ({ mkDerivation, alex, array, base, binary, bytestring, containers 100555 + , deepseq, directory, exceptions, filepath, ghc-prim, happy, hpc 100556 + , pretty, process, time, transformers, unix 100557 + }: 100558 + mkDerivation { 100559 + pname = "ghc-lib-parser"; 100560 + version = "9.0.1.20210205"; 100561 + sha256 = "1lzqbm1nrnw1bydjd9py82rlzznxnnbplzjx80sn966kyyxmlr8v"; 100562 + enableSeparateDataOutput = true; 100563 + libraryHaskellDepends = [ 100564 + array base binary bytestring containers deepseq directory 100565 + exceptions filepath ghc-prim hpc pretty process time transformers 100566 + unix 100567 + ]; 100568 + libraryToolDepends = [ alex happy ]; 100569 + description = "The GHC API, decoupled from GHC versions"; 100570 + license = lib.licenses.bsd3; 100571 + hydraPlatforms = lib.platforms.none; 100572 + }) {}; 100573 + 100432 100574 "ghc-lib-parser-ex" = callPackage 100433 100575 ({ mkDerivation, base, bytestring, containers, directory, extra 100434 100576 , filepath, ghc, ghc-boot, ghc-boot-th, tasty, tasty-hunit ··· 100449 100591 license = lib.licenses.bsd3; 100450 100592 }) {}; 100451 100593 100594 + "ghc-lib-parser-ex_9_0_0_1" = callPackage 100595 + ({ mkDerivation, base, bytestring, containers, directory, extra 100596 + , filepath, ghc, ghc-boot, ghc-boot-th, ghc-lib-parser, tasty 100597 + , tasty-hunit, uniplate 100598 + }: 100599 + mkDerivation { 100600 + pname = "ghc-lib-parser-ex"; 100601 + version = "9.0.0.1"; 100602 + sha256 = "03a98bn50bhqvfrchd5fx0w2x4ddb3ap78wikbb3hfhcgq4843nl"; 100603 + libraryHaskellDepends = [ 100604 + base bytestring containers ghc-lib-parser uniplate 100605 + ]; 100606 + testHaskellDepends = [ 100607 + base directory extra filepath ghc ghc-boot ghc-boot-th tasty 100608 + tasty-hunit uniplate 100609 + ]; 100610 + description = "Algorithms on GHC parse trees"; 100611 + license = lib.licenses.bsd3; 100612 + hydraPlatforms = lib.platforms.none; 100613 + }) {}; 100614 + 100452 100615 "ghc-make" = callPackage 100453 100616 ({ mkDerivation, base, process, shake, unordered-containers }: 100454 100617 mkDerivation { ··· 101110 101273 }: 101111 101274 mkDerivation { 101112 101275 pname = "ghc-vis"; 101113 - version = "0.9"; 101114 - sha256 = "134m5hzpbggifvigw2f4q6ci1lm5r2457va8lb0j7daiadq7xhcw"; 101276 + version = "0.9.1"; 101277 + sha256 = "1sqs6hkc2yf7nlbawadzychni8hbl6h9qclf7k11dfrfaqj10f4z"; 101115 101278 enableSeparateDataOutput = true; 101116 101279 libraryHaskellDepends = [ 101117 101280 base cairo containers deepseq fgl ghc-heap-view graphviz gtk3 mtl ··· 101154 101317 101155 101318 "ghci-dap" = callPackage 101156 101319 ({ mkDerivation, array, base, bytestring, containers, deepseq 101157 - , directory, filepath, ghc, ghc-boot, ghc-paths, ghc-prim, ghci 101158 - , haskeline, haskell-dap, process, text, time, transformers, unix 101320 + , directory, exceptions, filepath, ghc, ghc-boot, ghc-paths 101321 + , ghc-prim, ghci, haskeline, haskell-dap, process, text, time 101322 + , transformers, unix 101159 101323 }: 101160 101324 mkDerivation { 101161 101325 pname = "ghci-dap"; 101162 - version = "0.0.14.0"; 101163 - sha256 = "0gnawjk1bzrcinazygwal4kfnqq780v7q4lm0xrvjb50cvixkjpf"; 101326 + version = "0.0.15.0"; 101327 + sha256 = "1m4ypd2d9bjdkdqrnqijc1na5g14mmjrcr5msgr7spsnskhzi4yg"; 101164 101328 isLibrary = true; 101165 101329 isExecutable = true; 101166 101330 libraryHaskellDepends = [ 101167 - array base bytestring containers deepseq directory filepath ghc 101168 - ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap process text 101169 - time transformers 101331 + array base bytestring containers deepseq directory exceptions 101332 + filepath ghc ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap 101333 + process text time transformers 101170 101334 ]; 101171 101335 executableHaskellDepends = [ 101172 - array base bytestring containers deepseq directory filepath ghc 101173 - ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap process text 101174 - time transformers unix 101336 + array base bytestring containers deepseq directory exceptions 101337 + filepath ghc ghc-boot ghc-paths ghc-prim ghci haskeline haskell-dap 101338 + process text time transformers unix 101175 101339 ]; 101176 101340 description = "ghci-dap is a GHCi having DAP interface"; 101177 101341 license = lib.licenses.bsd3; ··· 101329 101493 license = lib.licenses.bsd3; 101330 101494 }) {}; 101331 101495 101332 - "ghcide_0_7_0_0" = callPackage 101496 + "ghcide" = callPackage 101333 101497 ({ mkDerivation, aeson, array, async, base, base16-bytestring 101334 101498 , binary, bytestring, case-insensitive, containers, cryptohash-sha1 101335 101499 , data-default, deepseq, directory, extra, filepath, fingertree ··· 101388 101552 broken = true; 101389 101553 }) {shake-bench = null;}; 101390 101554 101391 - "ghcide" = callPackage 101555 + "ghcide_0_7_3_0" = callPackage 101392 101556 ({ mkDerivation, aeson, array, async, base, base16-bytestring 101393 101557 , binary, bytestring, case-insensitive, containers, cryptohash-sha1 101394 101558 , data-default, deepseq, directory, dlist, extra, filepath 101395 101559 , fingertree, fuzzy, ghc, ghc-boot, ghc-boot-th, ghc-check 101396 101560 , ghc-exactprint, ghc-paths, ghc-typelits-knownnat, gitrev, Glob 101397 101561 , haddock-library, hashable, haskell-lsp, haskell-lsp-types 101398 - , heapsize, hie-bios, hie-compat, hls-plugin-api, hslogger 101399 - , implicit-hie-cradle, lens, lsp-test, mtl, network-uri 101562 + , heapsize, hie-bios, hie-compat, hls-plugin-api, hp2pretty 101563 + , hslogger, implicit-hie-cradle, lens, lsp-test, mtl, network-uri 101400 101564 , opentelemetry, optparse-applicative, parallel, prettyprinter 101401 101565 , prettyprinter-ansi-terminal, process, QuickCheck 101402 101566 , quickcheck-instances, record-dot-preprocessor, record-hasfield ··· 101408 101572 }: 101409 101573 mkDerivation { 101410 101574 pname = "ghcide"; 101411 - version = "0.7.2.0"; 101412 - sha256 = "1d35vfwg906djfr2klrql7crgcyabfad12akalx25jc6c7pacv1d"; 101575 + version = "0.7.3.0"; 101576 + sha256 = "0iak2bwkp0x66cl9axcxq00vmf4yn6y0h8ih4wq6mnavmplbyi3b"; 101413 101577 isLibrary = true; 101414 101578 isExecutable = true; 101415 101579 libraryHaskellDepends = [ ··· 101443 101607 benchmarkHaskellDepends = [ 101444 101608 aeson base directory filepath shake shake-bench text yaml 101445 101609 ]; 101610 + benchmarkToolDepends = [ hp2pretty ]; 101446 101611 description = "The core of an IDE"; 101447 101612 license = lib.licenses.asl20; 101448 101613 hydraPlatforms = lib.platforms.none; ··· 101984 102149 description = "Gdk bindings"; 101985 102150 license = lib.licenses.lgpl21; 101986 102151 hydraPlatforms = lib.platforms.none; 101987 - }) {gtk4 = null;}; 102152 + }) {inherit (pkgs) gtk4;}; 101988 102153 101989 102154 "gi-gdkpixbuf" = callPackage 101990 102155 ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf ··· 102194 102359 license = lib.licenses.lgpl21; 102195 102360 hydraPlatforms = lib.platforms.none; 102196 102361 broken = true; 102197 - }) {gtk4 = null;}; 102362 + }) {inherit (pkgs) gtk4;}; 102198 102363 102199 102364 "gi-gst" = callPackage 102200 102365 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib ··· 102376 102541 description = "Gtk bindings"; 102377 102542 license = lib.licenses.lgpl21; 102378 102543 hydraPlatforms = lib.platforms.none; 102379 - }) {gtk4 = null;}; 102544 + }) {inherit (pkgs) gtk4;}; 102380 102545 102381 102546 "gi-gtk-declarative" = callPackage 102382 102547 ({ mkDerivation, async, base, containers, data-default-class ··· 113329 113494 113330 113495 "hadolint" = callPackage 113331 113496 ({ mkDerivation, aeson, async, base, bytestring, containers 113332 - , directory, filepath, gitrev, hspec, HsYAML, HUnit 113497 + , cryptonite, directory, filepath, gitrev, hspec, HsYAML, HUnit 113333 113498 , language-docker, megaparsec, mtl, optparse-applicative, parallel 113334 113499 , ShellCheck, split, text, void 113335 113500 }: 113336 113501 mkDerivation { 113337 113502 pname = "hadolint"; 113338 - version = "1.20.0"; 113339 - sha256 = "1wb2q26najfmmgvj35wvinvip4l1d3k5mazrang4cr3ch8v1nv6w"; 113503 + version = "1.21.0"; 113504 + sha256 = "1hxp8wl0jh30njd2z5g339qi3zlszy3br21d1pzarziwdabi9vcg"; 113340 113505 isLibrary = true; 113341 113506 isExecutable = true; 113342 113507 libraryHaskellDepends = [ 113343 - aeson async base bytestring containers directory filepath HsYAML 113344 - language-docker megaparsec mtl parallel ShellCheck split text void 113508 + aeson async base bytestring containers cryptonite directory 113509 + filepath HsYAML language-docker megaparsec mtl parallel ShellCheck 113510 + split text void 113345 113511 ]; 113346 113512 executableHaskellDepends = [ 113347 113513 base containers gitrev language-docker megaparsec ··· 114791 114957 ({ mkDerivation, base, containers, random }: 114792 114958 mkDerivation { 114793 114959 pname = "hanabi-dealer"; 114794 - version = "0.11.0.1"; 114795 - sha256 = "1w4zxjs6253rxkfhhsvcvpfzzslaxyb3m2c6nbh22l6a1li9bcm9"; 114960 + version = "0.11.0.2"; 114961 + sha256 = "1ndg8zmcc5a9z9qcc5z5nwssywxighnqxa4pzc5iy7kw4x9bm3kn"; 114796 114962 isLibrary = true; 114797 114963 isExecutable = true; 114798 114964 libraryHaskellDepends = [ base containers random ]; ··· 117437 117603 }) {}; 117438 117604 117439 117605 "haskell-dap" = callPackage 117440 - ({ mkDerivation, base, containers, unix }: 117606 + ({ mkDerivation, base, containers }: 117441 117607 mkDerivation { 117442 117608 pname = "haskell-dap"; 117443 - version = "0.0.14.0"; 117444 - sha256 = "1n4w7kvsy7dri07840i6rm6b7fl425f8r3fglbcss42g674k35di"; 117445 - isLibrary = true; 117446 - isExecutable = true; 117609 + version = "0.0.15.0"; 117610 + sha256 = "1wk6813pwwnph7w1waci9q6r0glsjpayk27kr43zddwd2v0abcld"; 117447 117611 libraryHaskellDepends = [ base containers ]; 117448 - executableHaskellDepends = [ base unix ]; 117449 117612 description = "Haskell implementation of the DAP interface data"; 117450 117613 license = lib.licenses.bsd3; 117451 117614 }) {}; ··· 117459 117622 }: 117460 117623 mkDerivation { 117461 117624 pname = "haskell-debug-adapter"; 117462 - version = "0.0.33.0"; 117463 - sha256 = "1v4dzjv1w0jdp5dyq3qrbdw34433b5xg6wk5hg87agzc3mllbkqa"; 117625 + version = "0.0.34.0"; 117626 + sha256 = "00z9yhs2c34rdki404gcwf938a2lshr0a7mrvzpknk70n1a0gall"; 117464 117627 isLibrary = true; 117465 117628 isExecutable = true; 117466 117629 libraryHaskellDepends = [ ··· 117880 118043 testToolDepends = [ ghcide ]; 117881 118044 description = "LSP server for GHC"; 117882 118045 license = lib.licenses.asl20; 117883 - hydraPlatforms = lib.platforms.none; 117884 - broken = true; 117885 118046 }) {}; 117886 118047 117887 118048 "haskell-lexer" = callPackage ··· 119992 120153 }: 119993 120154 mkDerivation { 119994 120155 pname = "haskoin-core"; 119995 - version = "0.18.0"; 119996 - sha256 = "13j8hsyj7x30s6rl8pigvkcwn9ahrwd85y4i8z6728rsjj2ygih3"; 120156 + version = "0.19.0"; 120157 + sha256 = "0yyrka8hr6jsl7w59j3xmnvzq4gnwz4gybjar2zq1g096shdpk7c"; 119997 120158 libraryHaskellDepends = [ 119998 120159 aeson array base base16-bytestring bytestring cereal conduit 119999 120160 containers cryptonite deepseq entropy hashable hspec memory mtl ··· 120126 120287 ({ mkDerivation, aeson, aeson-pretty, base, base64, bytestring 120127 120288 , cereal, conduit, containers, data-default, deepseq, filepath 120128 120289 , hashable, haskoin-core, haskoin-node, haskoin-store-data, hedis 120129 - , hspec, hspec-discover, http-types, monad-logger, mtl, network 120130 - , nqe, optparse-applicative, QuickCheck, random 120290 + , hspec, hspec-discover, http-types, lens, monad-logger, mtl 120291 + , network, nqe, optparse-applicative, QuickCheck, random 120131 120292 , rocksdb-haskell-jprupp, rocksdb-query, scotty, string-conversions 120132 120293 , text, time, transformers, unliftio, unordered-containers, wai 120133 - , warp 120294 + , warp, wreq 120134 120295 }: 120135 120296 mkDerivation { 120136 120297 pname = "haskoin-store"; 120137 - version = "0.39.0"; 120138 - sha256 = "1a1bhsjxb1nj49b5xjv78h89xsc5ffrf9qq1n12ak54ckvw0rgmv"; 120298 + version = "0.40.18"; 120299 + sha256 = "13zpl2kkirq0nl0sjblllm6gzfj82ghm3i18rh7ak9dxzavjnphy"; 120139 120300 isLibrary = true; 120140 120301 isExecutable = true; 120141 120302 libraryHaskellDepends = [ 120142 120303 aeson aeson-pretty base bytestring cereal conduit containers 120143 120304 data-default deepseq hashable haskoin-core haskoin-node 120144 - haskoin-store-data hedis http-types monad-logger mtl network nqe 120145 - random rocksdb-haskell-jprupp rocksdb-query scotty 120305 + haskoin-store-data hedis http-types lens monad-logger mtl network 120306 + nqe random rocksdb-haskell-jprupp rocksdb-query scotty 120146 120307 string-conversions text time transformers unliftio 120147 - unordered-containers wai warp 120308 + unordered-containers wai warp wreq 120148 120309 ]; 120149 120310 executableHaskellDepends = [ 120150 120311 aeson aeson-pretty base bytestring cereal conduit containers 120151 120312 data-default deepseq filepath hashable haskoin-core haskoin-node 120152 - haskoin-store-data hedis http-types monad-logger mtl network nqe 120153 - optparse-applicative random rocksdb-haskell-jprupp rocksdb-query 120154 - scotty string-conversions text time transformers unliftio 120155 - unordered-containers wai warp 120313 + haskoin-store-data hedis http-types lens monad-logger mtl network 120314 + nqe optparse-applicative random rocksdb-haskell-jprupp 120315 + rocksdb-query scotty string-conversions text time transformers 120316 + unliftio unordered-containers wai warp wreq 120156 120317 ]; 120157 120318 testHaskellDepends = [ 120158 120319 aeson aeson-pretty base base64 bytestring cereal conduit containers 120159 120320 data-default deepseq hashable haskoin-core haskoin-node 120160 - haskoin-store-data hedis hspec http-types monad-logger mtl network 120161 - nqe QuickCheck random rocksdb-haskell-jprupp rocksdb-query scotty 120162 - string-conversions text time transformers unliftio 120163 - unordered-containers wai warp 120321 + haskoin-store-data hedis hspec http-types lens monad-logger mtl 120322 + network nqe QuickCheck random rocksdb-haskell-jprupp rocksdb-query 120323 + scotty string-conversions text time transformers unliftio 120324 + unordered-containers wai warp wreq 120164 120325 ]; 120165 120326 testToolDepends = [ hspec-discover ]; 120166 120327 description = "Storage and index for Bitcoin and Bitcoin Cash"; ··· 120173 120334 ({ mkDerivation, aeson, base, bytestring, cereal, containers 120174 120335 , data-default, deepseq, hashable, haskoin-core, hspec 120175 120336 , hspec-discover, http-client, http-types, lens, mtl, network 120176 - , QuickCheck, scotty, string-conversions, text, wreq 120337 + , QuickCheck, scotty, string-conversions, text 120338 + , unordered-containers, wreq 120177 120339 }: 120178 120340 mkDerivation { 120179 120341 pname = "haskoin-store-data"; 120180 - version = "0.38.1"; 120181 - sha256 = "0x3p0fylfc8llv94nmjaz9537qp2jwm5zlbs8mw7b4lh9z69f3ba"; 120342 + version = "0.40.2"; 120343 + sha256 = "08c2ga6j5himcprsyyd2jw3mygsj7if6i9h4mrg4m4v8x31vhg3f"; 120182 120344 libraryHaskellDepends = [ 120183 120345 aeson base bytestring cereal containers data-default deepseq 120184 120346 hashable haskoin-core http-client http-types lens mtl network 120185 - scotty string-conversions text wreq 120347 + scotty string-conversions text unordered-containers wreq 120186 120348 ]; 120187 120349 testHaskellDepends = [ 120188 120350 aeson base bytestring cereal containers data-default deepseq 120189 120351 hashable haskoin-core hspec http-client http-types lens mtl network 120190 - QuickCheck scotty string-conversions text wreq 120352 + QuickCheck scotty string-conversions text unordered-containers wreq 120191 120353 ]; 120192 120354 testToolDepends = [ hspec-discover ]; 120193 120355 description = "Data for Haskoin Store"; ··· 120860 121022 ({ mkDerivation, base, doctest }: 120861 121023 mkDerivation { 120862 121024 pname = "haskus-utils-types"; 120863 - version = "1.5"; 120864 - sha256 = "1mbgnx4i82g9bq1qpvjjs9yb683gfja5bws8y26mzjl4igk6izsy"; 120865 - revision = "1"; 120866 - editedCabalFile = "1mjwmk5prbrb91dbhxg9pp47zf5cfnnm07h3f2m902af3l0yjiih"; 121025 + version = "1.5.1"; 121026 + sha256 = "1nm5nn45r2c9f20j7v0v3abkbglyi45wmyrigy1v65c5lk4g57r5"; 120867 121027 libraryHaskellDepends = [ base ]; 120868 121028 testHaskellDepends = [ base doctest ]; 120869 121029 description = "Haskus types utility modules"; ··· 123404 123564 ({ mkDerivation, async, base, io-streams, time }: 123405 123565 mkDerivation { 123406 123566 pname = "heartbeat-streams"; 123407 - version = "0.1.0.2"; 123408 - sha256 = "059dx7paaniwmxgyzapv0542jf8yb4vzbg8501d2j779ixvzm80d"; 123567 + version = "0.1.0.3"; 123568 + sha256 = "004dkld0friilhb9j1fhibzndchkljxzqm6k99zli4h83q787wlf"; 123409 123569 libraryHaskellDepends = [ async base io-streams time ]; 123410 123570 description = "Heartbeats for io-streams"; 123411 123571 license = lib.licenses.bsd3; ··· 123726 123886 broken = true; 123727 123887 }) {}; 123728 123888 123889 + "hedgehog-fakedata_0_0_1_4" = callPackage 123890 + ({ mkDerivation, base, containers, fakedata, hedgehog, random }: 123891 + mkDerivation { 123892 + pname = "hedgehog-fakedata"; 123893 + version = "0.0.1.4"; 123894 + sha256 = "1pa8kf6pxsvmfy8r29xk486cdi38881blqj1lcnjya98ilb6ldx3"; 123895 + libraryHaskellDepends = [ base fakedata hedgehog random ]; 123896 + testHaskellDepends = [ base containers fakedata hedgehog ]; 123897 + description = "Use 'fakedata' with 'hedgehog'"; 123898 + license = lib.licenses.bsd3; 123899 + hydraPlatforms = lib.platforms.none; 123900 + broken = true; 123901 + }) {}; 123902 + 123729 123903 "hedgehog-fn" = callPackage 123730 123904 ({ mkDerivation, base, contravariant, hedgehog, transformers }: 123731 123905 mkDerivation { ··· 123859 124033 }: 123860 124034 mkDerivation { 123861 124035 pname = "hedis"; 123862 - version = "0.14.1"; 123863 - sha256 = "0n7hwg8mp4v512g7s8cblmai0j00l1149bbdacm6s7d0plnk0qqd"; 124036 + version = "0.14.2"; 124037 + sha256 = "1zm8llpbbvr5f5s0i4qsn025734s1mamfvm1dgxw4p87m9zhprlm"; 123864 124038 libraryHaskellDepends = [ 123865 124039 async base bytestring bytestring-lexing containers deepseq errors 123866 124040 exceptions HTTP mtl network network-uri resource-pool scanner stm ··· 125106 125280 "hevm" = callPackage 125107 125281 ({ mkDerivation, abstract-par, aeson, ansi-wl-pprint, async, base 125108 125282 , base16-bytestring, binary, brick, bytestring, cereal, containers 125109 - , cryptonite, data-dword, deepseq, directory, fgl, filepath, free 125110 - , haskeline, here, HUnit, lens, lens-aeson, libff, megaparsec 125111 - , memory, monad-par, mtl, multiset, operational, optparse-generic 125112 - , process, QuickCheck, quickcheck-text, regex-tdfa, restless-git 125113 - , rosezipper, s-cargot, sbv, scientific, secp256k1, semver-range 125114 - , tasty, tasty-hunit, tasty-quickcheck, temporary, text 125115 - , text-format, time, transformers, tree-view, unordered-containers 125116 - , vector, vty, witherable, wreq 125283 + , cryptonite, data-dword, Decimal, deepseq, directory, fgl 125284 + , filepath, free, haskeline, here, HUnit, lens, lens-aeson, libff 125285 + , megaparsec, memory, monad-par, mtl, multiset, operational 125286 + , optparse-generic, process, QuickCheck, quickcheck-text 125287 + , regex-tdfa, restless-git, rosezipper, s-cargot, sbv, scientific 125288 + , secp256k1, semver-range, tasty, tasty-hunit, tasty-quickcheck 125289 + , temporary, text, text-format, time, transformers, tree-view 125290 + , unordered-containers, vector, vty, witherable, wreq 125117 125291 }: 125118 125292 mkDerivation { 125119 125293 pname = "hevm"; 125120 - version = "0.42.0"; 125121 - sha256 = "0p736bxsg91l7n82xad52j5gqvyx6ik7hbmlnnz5bsrnsm05maxz"; 125294 + version = "0.44.1"; 125295 + sha256 = "1ygrksnqav1cw9pq1x2xi0na5fxy0phyc0v48nkzpis868gy0b97"; 125122 125296 isLibrary = true; 125123 125297 isExecutable = true; 125124 125298 enableSeparateDataOutput = true; 125125 125299 libraryHaskellDepends = [ 125126 125300 abstract-par aeson ansi-wl-pprint base base16-bytestring binary 125127 - brick bytestring cereal containers cryptonite data-dword deepseq 125128 - directory fgl filepath free haskeline lens lens-aeson megaparsec 125129 - memory monad-par mtl multiset operational optparse-generic process 125130 - QuickCheck quickcheck-text regex-tdfa restless-git rosezipper 125131 - s-cargot sbv scientific semver-range temporary text text-format 125132 - time transformers tree-view unordered-containers vector vty 125133 - witherable wreq 125301 + brick bytestring cereal containers cryptonite data-dword Decimal 125302 + deepseq directory fgl filepath free haskeline lens lens-aeson 125303 + megaparsec memory monad-par mtl multiset operational 125304 + optparse-generic process QuickCheck quickcheck-text regex-tdfa 125305 + restless-git rosezipper s-cargot sbv scientific semver-range 125306 + temporary text text-format time transformers tree-view 125307 + unordered-containers vector vty witherable wreq 125134 125308 ]; 125135 125309 librarySystemDepends = [ libff secp256k1 ]; 125136 125310 executableHaskellDepends = [ ··· 125398 125572 }: 125399 125573 mkDerivation { 125400 125574 pname = "hexpat-streamparser"; 125401 - version = "0.0.1"; 125402 - sha256 = "09klv9if55rlhjrh7cw68kk9z3mrwm1p2agb7a23j8a68iga5gvi"; 125575 + version = "0.0.2"; 125576 + sha256 = "11g78dkr9dp4kgz8zmckgq66587qahdhxyhcn03ajr0b07ab27z3"; 125403 125577 libraryHaskellDepends = [ 125404 125578 base bytestring hexpat List mtl parser-combinators text 125405 125579 transformers ··· 127071 127245 }: 127072 127246 mkDerivation { 127073 127247 pname = "hindent"; 127074 - version = "5.3.1"; 127075 - sha256 = "008s8zm9qs972b7v5kkmr8l3i9kc6zm7yj33mkw6dv69b7h3c01l"; 127248 + version = "5.3.2"; 127249 + sha256 = "129gkn8qg68wsd60mq8yk7hrqsc8sd8v56xn41m5ii3hriq1mmv7"; 127076 127250 isLibrary = true; 127077 127251 isExecutable = true; 127078 127252 enableSeparateDataOutput = true; ··· 127763 127937 license = lib.licenses.bsd3; 127764 127938 }) {}; 127765 127939 127940 + "histogram-simple" = callPackage 127941 + ({ mkDerivation, base, containers }: 127942 + mkDerivation { 127943 + pname = "histogram-simple"; 127944 + version = "1.0"; 127945 + sha256 = "11x8v0svvsc0impf59vixbsaxh5nwvyc9wmw9xkshd4k4a30bdb8"; 127946 + libraryHaskellDepends = [ base containers ]; 127947 + description = "Simple Data.Map-based histogram"; 127948 + license = lib.licenses.bsd3; 127949 + }) {}; 127950 + 127766 127951 "historian" = callPackage 127767 127952 ({ mkDerivation, base, containers, directory, filepath, process 127768 127953 , regex-compat, regex-posix ··· 128266 128451 }: 128267 128452 mkDerivation { 128268 128453 pname = "hledger"; 128269 - version = "1.20.3"; 128270 - sha256 = "1wy45ppcakml2wk021yr8kqv0q0x85vms8kx0npjawzbs498qqx9"; 128454 + version = "1.20.4"; 128455 + sha256 = "1fsdh4k0lrlx3n81hns8h2dh917i0cmh1iax55d9q7jlxvy5bq95"; 128271 128456 isLibrary = true; 128272 128457 isExecutable = true; 128273 128458 libraryHaskellDepends = [ ··· 128467 128652 }: 128468 128653 mkDerivation { 128469 128654 pname = "hledger-lib"; 128470 - version = "1.20.3"; 128471 - sha256 = "0pm6ckim1krkg4x7azspsnc1alwynqnjdhxrda764xyrz9s0r8cp"; 128655 + version = "1.20.4"; 128656 + sha256 = "17fs3jh3wx1hgzijqpw0s57hq6hq43fadplmqkcjw1ikgm8h0zyw"; 128472 128657 libraryHaskellDepends = [ 128473 128658 aeson aeson-pretty ansi-terminal array base base-compat-batteries 128474 128659 blaze-markup bytestring call-stack cassava cassava-megaparsec ··· 128544 128729 }: 128545 128730 mkDerivation { 128546 128731 pname = "hledger-ui"; 128547 - version = "1.20.3"; 128548 - sha256 = "02g6xdxif67fjj6rjskw69cxhx2irwv7sk0b1slr20nch122pzl1"; 128732 + version = "1.20.4"; 128733 + sha256 = "0y9jyv4mphzyla70z365l5dwg50chsng011bazzpfwr6w889803i"; 128549 128734 isLibrary = false; 128550 128735 isExecutable = true; 128551 128736 executableHaskellDepends = [ ··· 128591 128776 }: 128592 128777 mkDerivation { 128593 128778 pname = "hledger-web"; 128594 - version = "1.20.3"; 128595 - sha256 = "1dz3lwp86dlmdrnj5hda12219x03xw8csxk0bjysn43rjzxag4q4"; 128779 + version = "1.20.4"; 128780 + sha256 = "06psp5r6blj3s1z8zg515jgw58pyxy43qinh5cl161fxcl8ldfn4"; 128596 128781 isLibrary = true; 128597 128782 isExecutable = true; 128598 128783 libraryHaskellDepends = [ ··· 128886 129071 }: 128887 129072 mkDerivation { 128888 129073 pname = "hls-eval-plugin"; 128889 - version = "0.1.0.5"; 128890 - sha256 = "1vfsvhn7b5w537hsri6bz36c547pxv13jyjvj1a5934jzyzvv9qn"; 129074 + version = "0.1.0.0"; 129075 + sha256 = "1rghn0p8qqh9vh0x1ib2w00vv74y8j9qj2ydhwc68viii03wpjan"; 128891 129076 libraryHaskellDepends = [ 128892 129077 aeson base containers deepseq Diff directory extra filepath ghc 128893 129078 ghc-boot-th ghc-paths ghcide hashable haskell-lsp haskell-lsp-types ··· 128899 129084 license = lib.licenses.asl20; 128900 129085 }) {}; 128901 129086 129087 + "hls-eval-plugin_0_2_0_0" = callPackage 129088 + ({ mkDerivation, aeson, base, containers, deepseq, Diff, directory 129089 + , dlist, extra, filepath, ghc, ghc-boot-th, ghc-paths, ghcide 129090 + , hashable, haskell-lsp, haskell-lsp-types, hls-plugin-api, lens 129091 + , megaparsec, mtl, parser-combinators, pretty-simple, QuickCheck 129092 + , safe-exceptions, shake, temporary, text, time, transformers 129093 + , unordered-containers 129094 + }: 129095 + mkDerivation { 129096 + pname = "hls-eval-plugin"; 129097 + version = "0.2.0.0"; 129098 + sha256 = "0l85qia3gsdafxmkidr26sxgajvp46hcphkb1l8vm6q7h6jgj0d5"; 129099 + libraryHaskellDepends = [ 129100 + aeson base containers deepseq Diff directory dlist extra filepath 129101 + ghc ghc-boot-th ghc-paths ghcide hashable haskell-lsp 129102 + haskell-lsp-types hls-plugin-api lens megaparsec mtl 129103 + parser-combinators pretty-simple QuickCheck safe-exceptions shake 129104 + temporary text time transformers unordered-containers 129105 + ]; 129106 + description = "Eval plugin for Haskell Language Server"; 129107 + license = lib.licenses.asl20; 129108 + hydraPlatforms = lib.platforms.none; 129109 + }) {}; 129110 + 128902 129111 "hls-exactprint-utils" = callPackage 128903 129112 ({ mkDerivation, base, dlist, ghc, ghc-exactprint, ghcide 128904 129113 , haskell-lsp-types, hls-plugin-api, retrie, syb, text ··· 128931 129140 ]; 128932 129141 description = "Explicit imports plugin for Haskell Language Server"; 128933 129142 license = lib.licenses.asl20; 128934 - hydraPlatforms = lib.platforms.none; 128935 - broken = true; 128936 129143 }) {}; 128937 129144 128938 129145 "hls-haddock-comments-plugin" = callPackage ··· 128941 129148 }: 128942 129149 mkDerivation { 128943 129150 pname = "hls-haddock-comments-plugin"; 128944 - version = "0.1.0.0"; 128945 - sha256 = "12zs6yq39jpg3x6w9y5a5jri5rfh8qpxawdhmhiqm067zjnj9xi4"; 128946 - revision = "1"; 128947 - editedCabalFile = "0kddmrlmcsa1d22mqzw1wsh82x4nn0ff4xbwci7585i9z61mzhg2"; 129151 + version = "0.1.1.0"; 129152 + sha256 = "1kqkdbwx34k109dk3bl57hk2mcqw1cjj7l5382qfwy5bky4zjihn"; 128948 129153 libraryHaskellDepends = [ 128949 129154 base containers ghc ghc-exactprint ghcide haskell-lsp-types 128950 129155 hls-plugin-api text unordered-containers ··· 128971 129176 deepseq Diff directory extra filepath ghc ghcide hashable 128972 129177 haskell-lsp hlint hls-plugin-api hslogger lens regex-tdfa shake 128973 129178 temporary text transformers unordered-containers 129179 + ]; 129180 + description = "Hlint integration plugin with Haskell Language Server"; 129181 + license = lib.licenses.asl20; 129182 + }) {}; 129183 + 129184 + "hls-hlint-plugin_0_2_0_0" = callPackage 129185 + ({ mkDerivation, aeson, apply-refact, base, binary, bytestring 129186 + , containers, data-default, deepseq, Diff, directory, extra 129187 + , filepath, ghc, ghc-exactprint, ghcide, hashable, haskell-lsp 129188 + , hlint, hls-plugin-api, hslogger, lens, regex-tdfa, shake 129189 + , temporary, text, transformers, unordered-containers 129190 + }: 129191 + mkDerivation { 129192 + pname = "hls-hlint-plugin"; 129193 + version = "0.2.0.0"; 129194 + sha256 = "0v822s8m6iy7s0sld06gwh3ly20na0624s5g4642kkb2facbhm7d"; 129195 + libraryHaskellDepends = [ 129196 + aeson apply-refact base binary bytestring containers data-default 129197 + deepseq Diff directory extra filepath ghc ghc-exactprint ghcide 129198 + hashable haskell-lsp hlint hls-plugin-api hslogger lens regex-tdfa 129199 + shake temporary text transformers unordered-containers 128974 129200 ]; 128975 129201 description = "Hlint integration plugin with Haskell Language Server"; 128976 129202 license = lib.licenses.asl20; 128977 129203 hydraPlatforms = lib.platforms.none; 128978 - broken = true; 128979 129204 }) {}; 128980 129205 128981 129206 "hls-plugin-api" = callPackage ··· 128998 129223 license = lib.licenses.asl20; 128999 129224 }) {}; 129000 129225 129226 + "hls-plugin-api_0_7_0_0" = callPackage 129227 + ({ mkDerivation, aeson, base, containers, data-default, Diff 129228 + , hashable, haskell-lsp, hslogger, lens, process, regex-tdfa, shake 129229 + , text, unix, unordered-containers 129230 + }: 129231 + mkDerivation { 129232 + pname = "hls-plugin-api"; 129233 + version = "0.7.0.0"; 129234 + sha256 = "1cpl65ay55k3lvwsvqzwbg0c6lkzmiki2qvk6lj2dn6rcry9gk55"; 129235 + libraryHaskellDepends = [ 129236 + aeson base containers data-default Diff hashable haskell-lsp 129237 + hslogger lens process regex-tdfa shake text unix 129238 + unordered-containers 129239 + ]; 129240 + description = "Haskell Language Server API for plugin communication"; 129241 + license = lib.licenses.asl20; 129242 + hydraPlatforms = lib.platforms.none; 129243 + }) {}; 129244 + 129001 129245 "hls-retrie-plugin" = callPackage 129002 129246 ({ mkDerivation, aeson, base, containers, deepseq, directory, extra 129003 129247 , ghc, ghcide, hashable, haskell-lsp, haskell-lsp-types ··· 129015 129259 ]; 129016 129260 description = "Retrie integration plugin for Haskell Language Server"; 129017 129261 license = lib.licenses.asl20; 129018 - hydraPlatforms = lib.platforms.none; 129019 - broken = true; 129020 129262 }) {}; 129021 129263 129022 129264 "hls-splice-plugin" = callPackage 129023 129265 ({ mkDerivation, aeson, base, containers, dlist, foldl, ghc 129024 - , ghc-exactprint, ghcide, haskell-lsp, hls-exactprint-utils 129025 - , hls-plugin-api, lens, retrie, shake, syb, text, transformers 129026 - , unordered-containers 129266 + , ghc-exactprint, ghcide, haskell-lsp, hls-plugin-api, lens, retrie 129267 + , shake, syb, text, transformers, unordered-containers 129027 129268 }: 129028 129269 mkDerivation { 129029 129270 pname = "hls-splice-plugin"; 129030 - version = "0.1.0.0"; 129031 - sha256 = "10zqgczp1mx81ac8fh59dp1hipfh09w4hnxylqjhj6c6wzgwa4cj"; 129271 + version = "0.3.0.0"; 129272 + sha256 = "1mi9951hgq7mcwry5mdi4ywxk3jkzs47x7q4nvm2svkpvgnbfhdv"; 129032 129273 libraryHaskellDepends = [ 129033 129274 aeson base containers dlist foldl ghc ghc-exactprint ghcide 129034 - haskell-lsp hls-exactprint-utils hls-plugin-api lens retrie shake 129035 - syb text transformers unordered-containers 129275 + haskell-lsp hls-plugin-api lens retrie shake syb text transformers 129276 + unordered-containers 129036 129277 ]; 129037 129278 description = "HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes"; 129038 129279 license = lib.licenses.asl20; ··· 132371 132612 132372 132613 random regex-tdfa stm tar template-haskell text time tls 132373 132614 random regex-tdfa stm tar template-haskell text time tls 132374 - random regex-tdfa stm tar template-haskell text time tls 132375 - random regex-tdfa stm tar template-haskell text time tls 132376 - random regex-tdfa stm tar template-haskell text time tls 132615 + , cryptohash, deepseq, exceptions, extra, fields-json, hpqtypes 132616 + , lifted-base, log-base, monad-control, mtl, QuickCheck, safe 132617 + , semigroups, tasty, tasty-bench, tasty-hunit, text, text-show 132618 + , time, transformers, uuid-types 132377 132619 }: 132378 132620 mkDerivation { 132379 132621 random regex-tdfa stm tar template-haskell text time tls 132380 - random regex-tdfa stm tar template-haskell text time tls 132381 - random regex-tdfa stm tar template-haskell text time tls 132382 - revision = "1"; 132383 - random regex-tdfa stm tar template-haskell text time tls 132622 + version = "1.10.4.0"; 132623 + sha256 = "0qlxhq4vkr0qq1ckazb0lng9mbnljh32xsmcpbp5qm01bngadz56"; 132384 132624 libraryHaskellDepends = [ 132385 132625 random regex-tdfa stm tar template-haskell text time tls 132386 - random regex-tdfa stm tar template-haskell text time tls 132387 - random regex-tdfa stm tar template-haskell text time tls 132626 + extra fields-json hpqtypes lifted-base log-base monad-control mtl 132627 + safe semigroups text text-show 132388 132628 ]; 132389 132629 testHaskellDepends = [ 132390 - random regex-tdfa stm tar template-haskell text time tls 132391 - random regex-tdfa stm tar template-haskell text time tls 132630 + base exceptions hpqtypes lifted-base log-base monad-control 132631 + QuickCheck tasty tasty-hunit text time transformers uuid-types 132392 132632 ]; 132633 + benchmarkHaskellDepends = [ base deepseq tasty-bench ]; 132393 132634 random regex-tdfa stm tar template-haskell text time tls 132394 132635 license = lib.licenses.bsd3; 132395 132636 hydraPlatforms = lib.platforms.none; ··· 135568 135809 license = lib.licenses.mit; 135569 135810 }) {}; 135570 135811 135812 + "hslua-module-path" = callPackage 135813 + ({ mkDerivation, base, filepath, hslua, tasty, tasty-hunit 135814 + , tasty-lua, text 135815 + }: 135816 + mkDerivation { 135817 + pname = "hslua-module-path"; 135818 + version = "0.1.0"; 135819 + sha256 = "18z6k9nlba0a1f0fdfw0cr0y5daa381dfmrinfp70c8r3dh7w7ny"; 135820 + libraryHaskellDepends = [ base filepath hslua text ]; 135821 + testHaskellDepends = [ 135822 + base filepath hslua tasty tasty-hunit tasty-lua text 135823 + ]; 135824 + description = "Lua module to work with file paths"; 135825 + license = lib.licenses.mit; 135826 + }) {}; 135827 + 135571 135828 "hslua-module-system" = callPackage 135572 135829 ({ mkDerivation, base, containers, directory, exceptions, hslua 135573 135830 , tasty, tasty-hunit, tasty-lua, temporary, text ··· 138430 138687 license = lib.licenses.mit; 138431 138688 }) {}; 138432 138689 138433 - "http-client_0_7_4" = callPackage 138690 + "http-client_0_7_5" = callPackage 138434 138691 ({ mkDerivation, array, async, base, base64-bytestring 138435 138692 , blaze-builder, bytestring, case-insensitive, containers, cookie 138436 138693 , deepseq, directory, exceptions, filepath, ghc-prim, hspec ··· 138439 138696 }: 138440 138697 mkDerivation { 138441 138698 pname = "http-client"; 138442 - version = "0.7.4"; 138443 - sha256 = "1a4vhhn8y5qcqd4i2q7pl9jqfrsh65nkv32qcsc80cjy2bcqivjs"; 138699 + version = "0.7.5"; 138700 + sha256 = "11p4szyrdl0ck2iixdrq2dcjz9dlv4pd36ymkipmq7c28l1cvy7k"; 138444 138701 libraryHaskellDepends = [ 138445 138702 array base base64-bytestring blaze-builder bytestring 138446 138703 case-insensitive containers cookie deepseq exceptions filepath ··· 139924 140181 pname = "hum"; 139925 140182 version = "0.2.0.0"; 139926 140183 sha256 = "144b1161rvlmayklvgm7cajs0jz5bhlbcgrq288pvymlyl4f962b"; 139927 - revision = "1"; 139928 - editedCabalFile = "07d19lqi5djdsda976qr1w8ps535dxxjsp0lr43b62cinw2ssnki"; 140184 + revision = "2"; 140185 + editedCabalFile = "03hh7nyqchskkp4iqcq335mnpdsvgdw8d1pf3dp7p4wmsk20kwmk"; 139929 140186 isLibrary = true; 139930 140187 isExecutable = true; 139931 140188 libraryHaskellDepends = [ ··· 139945 140202 ]; 139946 140203 description = "A TUI MPD client, inspired by ncmpcpp"; 139947 140204 license = lib.licenses.gpl2Plus; 139948 - hydraPlatforms = lib.platforms.none; 139949 - broken = true; 139950 140205 }) {}; 139951 140206 139952 140207 "human-parse" = callPackage ··· 140323 140578 }: 140324 140579 mkDerivation { 140325 140580 pname = "husk-scheme"; 140326 - version = "3.19.3"; 140327 - sha256 = "0bb4iph3pp26rm9sdsjsshbig3misd1yr4waqblj8vr9fmrpx084"; 140581 + version = "3.20"; 140582 + sha256 = "11pghca4msm5nw1zdw3qlxzhmcwl9xg5hyvjd9z7869a3qahid5q"; 140328 140583 isLibrary = true; 140329 140584 isExecutable = true; 140330 140585 enableSeparateDataOutput = true; ··· 141135 141390 }: 141136 141391 mkDerivation { 141137 141392 pname = "hw-kafka-client"; 141138 - version = "4.0.2"; 141139 - sha256 = "166gi8mj2ljv4xcjrhi2pgjmnj112998fzbzjfpf5ckj54d20ch9"; 141393 + version = "4.0.3"; 141394 + sha256 = "1s3wj5ih9mc7vp0w9rymw22w1yxp8z3qi7qmza9qw00aail8c5dg"; 141140 141395 isLibrary = true; 141141 141396 isExecutable = true; 141142 141397 libraryHaskellDepends = [ ··· 144600 144855 }: 144601 144856 mkDerivation { 144602 144857 pname = "imperative-edsl"; 144603 - version = "0.8"; 144604 - sha256 = "0mz6yy472wvcg4ywjhaaqi0cxyy9l437pw4rkwd2j392n6hlfbar"; 144858 + version = "0.8.1"; 144859 + sha256 = "1z1a7b7m69m9xagvfa6xx3l1j0s7lrlvp4n09lra1x3q7lpfgnra"; 144605 144860 libraryHaskellDepends = [ 144606 144861 array base BoundedChan containers data-default-class deepseq 144607 144862 directory exception-transformers ghc-prim language-c-quote ··· 144915 145170 }: 144916 145171 mkDerivation { 144917 145172 pname = "in-other-words"; 144918 - version = "0.1.1.0"; 144919 - sha256 = "0f11si2bnxw2bm5mfnnqh9cfwhlzdcqkw5dfjql1y618db808am9"; 145173 + version = "0.2.0.0"; 145174 + sha256 = "0adl539jilc3rnwx9ir39y97f6h60xavzhhc8pa9vc6gqp1v4g20"; 144920 145175 libraryHaskellDepends = [ 144921 145176 async base exceptions monad-control mtl stm transformers 144922 145177 transformers-base ··· 144930 145185 license = lib.licenses.bsd3; 144931 145186 }) {}; 144932 145187 145188 + "in-other-words-plugin" = callPackage 145189 + ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra, hspec 145190 + , hspec-discover, in-other-words, syb, transformers 145191 + }: 145192 + mkDerivation { 145193 + pname = "in-other-words-plugin"; 145194 + version = "0.1.0.0"; 145195 + sha256 = "02c6qprny0x1qs5zpcma07vr3ikrksr18gqxpvf9hx55w3pnni0w"; 145196 + libraryHaskellDepends = [ 145197 + base containers ghc ghc-tcplugins-extra in-other-words syb 145198 + transformers 145199 + ]; 145200 + testHaskellDepends = [ 145201 + base containers ghc ghc-tcplugins-extra hspec in-other-words syb 145202 + transformers 145203 + ]; 145204 + testToolDepends = [ hspec-discover ]; 145205 + description = "Disambiguate obvious uses of effects when using in-other-words"; 145206 + license = lib.licenses.bsd3; 145207 + }) {}; 145208 + 144933 145209 "inbox" = callPackage 144934 145210 ({ mkDerivation, async, base, error-or, text, time }: 144935 145211 mkDerivation { ··· 147408 147684 pname = "io-streams"; 147409 147685 version = "1.5.2.0"; 147410 147686 sha256 = "1hbabrk5145d77qi23688piaf1wc93n8vaj846n0s3zk953z1lk3"; 147687 + revision = "1"; 147688 + editedCabalFile = "1dcadj5gv1m2yy97zsbq5x67vsblp8gy58a0kl5di9vkbgrcw46n"; 147411 147689 configureFlags = [ "-fnointeractivetests" ]; 147412 147690 libraryHaskellDepends = [ 147413 147691 attoparsec base bytestring bytestring-builder network primitive ··· 149364 149642 149365 149643 "j" = callPackage 149366 149644 ({ mkDerivation, base, bytestring, repa, tasty, tasty-hunit, unix 149645 + , vector 149367 149646 }: 149368 149647 mkDerivation { 149369 149648 pname = "j"; 149370 - version = "0.2.1.1"; 149371 - sha256 = "14mmqdkh73idqsxsvgvz5nfv7n0ashj35amawzy63zs80hfmqcf2"; 149372 - libraryHaskellDepends = [ base bytestring repa unix ]; 149649 + version = "0.2.2.0"; 149650 + sha256 = "1lmk6zw5w51d6aglykiyp9qpa656qs9imf99nalzn7qldsz81aqd"; 149651 + libraryHaskellDepends = [ base bytestring repa unix vector ]; 149373 149652 testHaskellDepends = [ base bytestring repa tasty tasty-hunit ]; 149374 149653 description = "J in Haskell"; 149375 149654 license = lib.licenses.bsd3; ··· 151648 151927 }: 151649 151928 mkDerivation { 151650 151929 pname = "jsonifier"; 151651 - version = "0.1.0.6"; 151652 - sha256 = "0yhczdq3m79xbg04hcahl2c75kipm5szahr7bmj8xjml4zxzd3bk"; 151930 + version = "0.1.1"; 151931 + sha256 = "09w92adnjskx7cxyki415nqxdzqfz78rcqisk1g862r92907ibwf"; 151653 151932 libraryHaskellDepends = [ 151654 151933 base bytestring ptr-poker scientific text 151655 151934 ]; ··· 154564 154843 broken = true; 154565 154844 }) {}; 154566 154845 154846 + "kparams" = callPackage 154847 + ({ mkDerivation, base, HUnit }: 154848 + mkDerivation { 154849 + pname = "kparams"; 154850 + version = "0.1.0.0"; 154851 + sha256 = "0q1ma3qm2anpr6w4xa78wh97b7pzy85ggjiiwbd0gb7b0vwbglx0"; 154852 + isLibrary = false; 154853 + isExecutable = true; 154854 + libraryHaskellDepends = [ base ]; 154855 + executableHaskellDepends = [ base ]; 154856 + testHaskellDepends = [ base HUnit ]; 154857 + doHaddock = false; 154858 + description = "Extracts values from /proc/cmdline"; 154859 + license = lib.licenses.mit; 154860 + }) {}; 154861 + 154567 154862 "kqueue" = callPackage 154568 154863 ({ mkDerivation, base, c2hs, directory, filepath, mtl, time, unix 154569 154864 }: ··· 157810 158105 }: 157811 158106 mkDerivation { 157812 158107 pname = "launchdarkly-server-sdk"; 157813 - version = "2.0.2"; 157814 - sha256 = "01c42wyjvnd1wp665p2khjsm1apc9kw3gw6mnlwbdgsimhj8v4z0"; 158108 + version = "2.1.0"; 158109 + sha256 = "1nj6jcmara4x8y292q5qacli6hmfhahw856a0nyngca2c8m5mwr1"; 157815 158110 libraryHaskellDepends = [ 157816 158111 aeson attoparsec base base16-bytestring bytestring 157817 158112 bytestring-conversion clock containers cryptohash exceptions extra ··· 158107 158402 pname = "lazy-io-streams"; 158108 158403 version = "0.1.0.0"; 158109 158404 sha256 = "022x0sikvdsvpp0gh7q82sdpd5kxd2zmprdpmf7z4c3hf4xk9vxy"; 158110 - revision = "1"; 158111 - editedCabalFile = "0pn446g45naqh92g9mib98fw5xznbp6r4x27acmnqrmlcqjz9jsm"; 158405 + revision = "2"; 158406 + editedCabalFile = "01r6i81rxm6rng50yhfj84z3dvhcbap10sfqigg01mfmy4zn9pnl"; 158112 158407 libraryHaskellDepends = [ base bytestring io-streams ]; 158113 158408 description = "Get lazy with your io-streams"; 158114 158409 license = lib.licenses.bsd3; ··· 158887 159182 pname = "lens"; 158888 159183 version = "4.19.2"; 158889 159184 sha256 = "0fy2vr5r11cc6ana8m2swqgs3zals4kims55vd6119bi76p5iy2j"; 158890 - revision = "3"; 158891 - editedCabalFile = "1anqghjbi0wyvqpg7qcbph5rfq78sjpdavrajh4z6f20kzy4mn45"; 159185 + revision = "4"; 159186 + editedCabalFile = "013cfgb5q2zq02pb8dlyzmb6sfp8k82af609srmqda26kccbyci2"; 158892 159187 setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; 158893 159188 libraryHaskellDepends = [ 158894 159189 array base base-orphans bifunctors bytestring call-stack comonad ··· 159170 159465 license = lib.licenses.bsd3; 159171 159466 }) {}; 159172 159467 159468 + "lens-process_0_4_0_0" = callPackage 159469 + ({ mkDerivation, base, filepath, lens, process, tasty, tasty-hunit 159470 + }: 159471 + mkDerivation { 159472 + pname = "lens-process"; 159473 + version = "0.4.0.0"; 159474 + sha256 = "1gms2bxa1sygpid09cg3nk1kyhkg4s38dqs0gd77ia2aln6zd7qg"; 159475 + libraryHaskellDepends = [ base filepath lens process ]; 159476 + testHaskellDepends = [ 159477 + base filepath lens process tasty tasty-hunit 159478 + ]; 159479 + description = "Optics for system processes"; 159480 + license = lib.licenses.bsd3; 159481 + hydraPlatforms = lib.platforms.none; 159482 + }) {}; 159483 + 159173 159484 "lens-properties" = callPackage 159174 159485 ({ mkDerivation, base, lens, QuickCheck, transformers }: 159175 159486 mkDerivation { ··· 159812 160123 }) {}; 159813 160124 159814 160125 "libBF" = callPackage 159815 - ({ mkDerivation, base, deepseq }: 160126 + ({ mkDerivation, base, deepseq, hashable }: 159816 160127 mkDerivation { 159817 160128 pname = "libBF"; 159818 - version = "0.5.1"; 159819 - sha256 = "0iwbkfbp26z1zmnk28mnkvyh8k0i0bx56wl2jwygdnqvl5lmfv6i"; 160129 + version = "0.6"; 160130 + sha256 = "01dh44fj1fhg912hw6p0r1ng7spm59xpzwc1rps8p2lcsicj4gvw"; 159820 160131 isLibrary = true; 159821 160132 isExecutable = true; 159822 - libraryHaskellDepends = [ base deepseq ]; 160133 + libraryHaskellDepends = [ base deepseq hashable ]; 159823 160134 executableHaskellDepends = [ base ]; 159824 160135 testHaskellDepends = [ base ]; 159825 160136 description = "A binding to the libBF library"; ··· 160858 161169 }: 160859 161170 mkDerivation { 160860 161171 pname = "licensor"; 160861 - version = "0.4.1"; 160862 - sha256 = "0p1wnyff2v23405v42ks5m3lyxhcahmcs3vh2qc5kz4q7ybnks7b"; 161172 + version = "0.4.2"; 161173 + sha256 = "1knmd13plijk4f1pzk8h3br69agjqzajgr9n3d180w6ask1iaz4z"; 160863 161174 isLibrary = true; 160864 161175 isExecutable = true; 160865 161176 libraryHaskellDepends = [ ··· 160928 161239 license = lib.licenses.mpl20; 160929 161240 }) {}; 160930 161241 161242 + "lifetimes" = callPackage 161243 + ({ mkDerivation, base, containers, hspec, monad-stm 161244 + , safe-exceptions, stm, transformers, zenhack-prelude 161245 + }: 161246 + mkDerivation { 161247 + pname = "lifetimes"; 161248 + version = "0.1.0.0"; 161249 + sha256 = "192bzz4nqqi2kdk9x4nxlwmx0mf0sshqdcnx1dgyjh5z9k29rww5"; 161250 + libraryHaskellDepends = [ 161251 + base containers monad-stm stm transformers zenhack-prelude 161252 + ]; 161253 + testHaskellDepends = [ 161254 + base containers hspec monad-stm safe-exceptions stm transformers 161255 + zenhack-prelude 161256 + ]; 161257 + description = "Flexible manual resource management"; 161258 + license = lib.licenses.asl20; 161259 + hydraPlatforms = lib.platforms.none; 161260 + broken = true; 161261 + }) {}; 161262 + 160931 161263 "lift-generics" = callPackage 160932 161264 ({ mkDerivation, base, base-compat, generic-deriving, ghc-prim 160933 161265 , hspec, hspec-discover, mtl, template-haskell, th-compat ··· 161462 161794 161463 161795 "linear" = callPackage 161464 161796 ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes 161465 - , bytestring, Cabal, cabal-doctest, cereal, containers, deepseq 161466 - , distributive, doctest, ghc-prim, hashable, HUnit, lens, random 161467 - , reflection, semigroupoids, semigroups, simple-reflect, tagged 161468 - , template-haskell, test-framework, test-framework-hunit 161469 - , transformers, transformers-compat, unordered-containers, vector 161470 - , void 161471 - }: 161472 - mkDerivation { 161473 - pname = "linear"; 161474 - version = "1.21.3"; 161475 - sha256 = "12gn571cfchrj9zir30c86vib3ppjia5908di21pnsfy6dmw6994"; 161476 - revision = "1"; 161477 - editedCabalFile = "17cbb44yyfcxz9fybv05yxli8gdfka415dwrp7vh804q7qxs5vna"; 161478 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 161479 - libraryHaskellDepends = [ 161480 - adjunctions base base-orphans binary bytes cereal containers 161481 - deepseq distributive ghc-prim hashable lens random reflection 161482 - semigroupoids semigroups tagged template-haskell transformers 161483 - transformers-compat unordered-containers vector void 161484 - ]; 161485 - testHaskellDepends = [ 161486 - base binary bytestring deepseq doctest HUnit lens reflection 161487 - simple-reflect test-framework test-framework-hunit vector 161488 - ]; 161489 - description = "Linear Algebra"; 161490 - license = lib.licenses.bsd3; 161491 - }) {}; 161492 - 161493 - "linear_1_21_4" = callPackage 161494 - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes 161495 161797 , bytestring, cereal, containers, deepseq, distributive, ghc-prim 161496 161798 , hashable, HUnit, lens, random, reflection, semigroupoids 161497 161799 , semigroups, simple-reflect, tagged, template-haskell ··· 161514 161816 ]; 161515 161817 description = "Linear Algebra"; 161516 161818 license = lib.licenses.bsd3; 161517 - hydraPlatforms = lib.platforms.none; 161518 161819 }) {}; 161519 161820 161520 161821 "linear-accelerate" = callPackage ··· 169488 169789 169489 169790 "matterhorn" = callPackage 169490 169791 ({ mkDerivation, aeson, aspell-pipe, async, base, base-compat 169491 - , brick, brick-skylighting, bytestring, cheapskate, checkers 169492 - , config-ini, connection, containers, data-clist, directory 169493 - , filepath, gitrev, hashable, Hclip, mattermost-api 169494 - , mattermost-api-qc, microlens-platform, mtl, network-uri, process 169495 - , random, semigroups, skylighting-core, split, stm, stm-delay 169496 - , strict, tasty, tasty-hunit, tasty-quickcheck, temporary, text 169497 - , text-zipper, time, timezone-olson, timezone-series, transformers 169498 - , Unique, unix, unordered-containers, utf8-string, uuid, vector 169499 - , vty, word-wrap, xdg-basedir 169792 + , brick, brick-skylighting, bytestring, checkers, commonmark 169793 + , commonmark-extensions, config-ini, connection, containers 169794 + , data-clist, directory, filepath, gitrev, hashable, Hclip 169795 + , mattermost-api, mattermost-api-qc, microlens-platform, mtl 169796 + , network-uri, parsec, process, random, semigroups 169797 + , skylighting-core, split, stm, stm-delay, strict, tasty 169798 + , tasty-hunit, tasty-quickcheck, temporary, text, text-zipper, time 169799 + , timezone-olson, timezone-series, transformers, Unique, unix 169800 + , unordered-containers, utf8-string, uuid, vector, vty, word-wrap 169801 + , xdg-basedir 169500 169802 }: 169501 169803 mkDerivation { 169502 169804 pname = "matterhorn"; 169503 - version = "50200.11.0"; 169504 - sha256 = "0wvw3wbv2sii1bjc8nmwyb1k0hzixfkfvpkmlkwa2my564vvmgz8"; 169805 + version = "50200.12.0"; 169806 + sha256 = "0rsxgc4igcjhddfil01la1sbnglvr08mf7gfi9fr6pf7sb9w6qbq"; 169505 169807 isLibrary = true; 169506 169808 isExecutable = true; 169507 169809 enableSeparateDataOutput = true; 169508 169810 libraryHaskellDepends = [ 169509 169811 aeson aspell-pipe async base base-compat brick brick-skylighting 169510 - bytestring cheapskate config-ini connection containers data-clist 169511 - directory filepath gitrev hashable Hclip mattermost-api 169512 - microlens-platform mtl network-uri process random semigroups 169513 - skylighting-core split stm stm-delay strict temporary text 169514 - text-zipper time timezone-olson timezone-series transformers unix 169515 - unordered-containers utf8-string uuid vector vty word-wrap 169516 - xdg-basedir 169812 + bytestring commonmark commonmark-extensions config-ini connection 169813 + containers data-clist directory filepath gitrev hashable Hclip 169814 + mattermost-api microlens-platform mtl network-uri parsec process 169815 + random semigroups skylighting-core split stm stm-delay strict 169816 + temporary text text-zipper time timezone-olson timezone-series 169817 + transformers unix unordered-containers utf8-string uuid vector vty 169818 + word-wrap xdg-basedir 169517 169819 ]; 169518 169820 executableHaskellDepends = [ base text ]; 169519 169821 testHaskellDepends = [ 169520 - base bytestring cheapskate checkers containers mattermost-api 169822 + base bytestring checkers commonmark containers mattermost-api 169521 169823 mattermost-api-qc tasty tasty-hunit tasty-quickcheck text time 169522 169824 Unique uuid 169523 169825 ]; ··· 169536 169838 }: 169537 169839 mkDerivation { 169538 169840 pname = "mattermost-api"; 169539 - version = "50200.9.0"; 169540 - sha256 = "08whhlkr3ayimn66lwinvv0ci8zbhk5i7sz1fk5r1dp7mg2jzgig"; 169841 + version = "50200.10.0"; 169842 + sha256 = "0pbp4f0gwhap8d9chn6c2zf22ic3r32302zir4a5r6cmgg4vscgd"; 169541 169843 isLibrary = true; 169542 169844 isExecutable = true; 169543 169845 libraryHaskellDepends = [ ··· 169561 169863 }: 169562 169864 mkDerivation { 169563 169865 pname = "mattermost-api-qc"; 169564 - version = "50200.9.0"; 169565 - sha256 = "0rcbsf5hrp2fd9jqmcr07gg2y0xg4ksasrqfxrc7n4mgw0a409i6"; 169866 + version = "50200.10.0"; 169867 + sha256 = "0cv7l5g63ar7ii704j8q3y5hsvbmljm8cmgdw6p2shqigv8slzci"; 169566 169868 libraryHaskellDepends = [ 169567 169869 base containers mattermost-api QuickCheck text time 169568 169870 ]; ··· 173756 174058 license = lib.licenses.bsd3; 173757 174059 }) {}; 173758 174060 173759 - "mmorph" = callPackage 174061 + "mmorph_1_1_3" = callPackage 173760 174062 ({ mkDerivation, base, mtl, transformers, transformers-compat }: 173761 174063 mkDerivation { 173762 174064 pname = "mmorph"; 173763 174065 version = "1.1.3"; 173764 174066 sha256 = "0rfsy9n9mlinpmqi2s17fhc67fzma2ig5fbmh6m5m830canzf8vr"; 174067 + libraryHaskellDepends = [ 174068 + base mtl transformers transformers-compat 174069 + ]; 174070 + description = "Monad morphisms"; 174071 + license = lib.licenses.bsd3; 174072 + hydraPlatforms = lib.platforms.none; 174073 + }) {}; 174074 + 174075 + "mmorph" = callPackage 174076 + ({ mkDerivation, base, mtl, transformers, transformers-compat }: 174077 + mkDerivation { 174078 + pname = "mmorph"; 174079 + version = "1.1.4"; 174080 + sha256 = "1hxyyh0x58kjdsyf1kj2kibjxzk2d9rcabv2y9vrpb59w85lqanz"; 174081 + revision = "1"; 174082 + editedCabalFile = "0xvwjcfpy6243wiwgyckmwc1nbw31y32n3hrrswdjw21znz894yl"; 173765 174083 libraryHaskellDepends = [ 173766 174084 base mtl transformers transformers-compat 173767 174085 ]; ··· 174219 174537 license = lib.licenses.bsd3; 174220 174538 }) {}; 174221 174539 174540 + "modern-uri_0_3_3_1" = callPackage 174541 + ({ mkDerivation, base, bytestring, containers, contravariant 174542 + , criterion, deepseq, exceptions, hspec, hspec-discover 174543 + , hspec-megaparsec, megaparsec, mtl, profunctors, QuickCheck 174544 + , reflection, tagged, template-haskell, text, weigh 174545 + }: 174546 + mkDerivation { 174547 + pname = "modern-uri"; 174548 + version = "0.3.3.1"; 174549 + sha256 = "0h4ssb4wy4ac6vd5jcbvp0r2fr1jmyc60hg56s7ym50bbymj5wp3"; 174550 + libraryHaskellDepends = [ 174551 + base bytestring containers contravariant deepseq exceptions 174552 + megaparsec mtl profunctors QuickCheck reflection tagged 174553 + template-haskell text 174554 + ]; 174555 + testHaskellDepends = [ 174556 + base bytestring hspec hspec-megaparsec megaparsec QuickCheck text 174557 + ]; 174558 + testToolDepends = [ hspec-discover ]; 174559 + benchmarkHaskellDepends = [ 174560 + base bytestring criterion deepseq megaparsec text weigh 174561 + ]; 174562 + description = "Modern library for working with URIs"; 174563 + license = lib.licenses.bsd3; 174564 + hydraPlatforms = lib.platforms.none; 174565 + }) {}; 174566 + 174222 174567 "modify-fasta" = callPackage 174223 174568 ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative 174224 174569 , pipes, pipes-text, regex-tdfa, regex-tdfa-text, semigroups, split ··· 175268 175613 175269 175614 "monad-metrics-extensible" = callPackage 175270 175615 ({ mkDerivation, base, dependent-map, dependent-sum, ekg, ekg-core 175271 - , exceptions, hspec, mtl, stm, text 175616 + , exceptions, hspec, mtl, stm, text, time 175272 175617 }: 175273 175618 mkDerivation { 175274 175619 pname = "monad-metrics-extensible"; 175275 - version = "0.1.0.1"; 175276 - sha256 = "044hvhnf7wsgd18cac2j3bfw2vbxfnra736l6qndfx07mkv1nz5n"; 175620 + version = "0.1.1.0"; 175621 + sha256 = "14ahi50c6pd30zywjbsffn3p090ib57h6as2ad8jqxywjalxd8dm"; 175277 175622 libraryHaskellDepends = [ 175278 175623 base dependent-map dependent-sum ekg ekg-core exceptions mtl stm 175279 - text 175624 + text time 175280 175625 ]; 175281 175626 testHaskellDepends = [ 175282 175627 base dependent-map dependent-sum ekg ekg-core exceptions hspec mtl 175283 - stm text 175628 + stm text time 175284 175629 ]; 175285 175630 description = "An extensible and type-safe wrapper around EKG metrics"; 175286 175631 license = lib.licenses.bsd3; ··· 178443 178788 pname = "mu-protobuf"; 178444 178789 version = "0.4.2.0"; 178445 178790 sha256 = "07mgld1cmpynhdih7ppki8xw85zpknv0ipn7fvn79bj53s0nx6vg"; 178791 + revision = "1"; 178792 + editedCabalFile = "12zp8g0v8f924dsc3c0ynzqcv2j4c4xl6dh72mz11nmxi9la51s7"; 178446 178793 isLibrary = true; 178447 178794 isExecutable = true; 178448 178795 enableSeparateDataOutput = true; ··· 178485 178832 }: 178486 178833 mkDerivation { 178487 178834 pname = "mu-schema"; 178488 - version = "0.3.1.1"; 178489 - sha256 = "0n30xn2z1dl4n28mbfnif8csvz0namll0hab1r7mhnamp0yc3gs8"; 178835 + version = "0.3.1.2"; 178836 + sha256 = "0q4a1anqrx6d5n0br26lb4x8gw10gasv8ggiw4fgcaly2sd09rs1"; 178490 178837 libraryHaskellDepends = [ 178491 178838 aeson base bytestring containers first-class-families sop-core 178492 178839 template-haskell text th-abstraction unordered-containers uuid ··· 180476 180823 license = lib.licenses.bsd3; 180477 180824 }) {inherit (pkgs) mysql;}; 180478 180825 180826 + "mysql_0_1_7_3" = callPackage 180827 + ({ mkDerivation, base, bytestring, Cabal, containers, hspec, mysql 180828 + }: 180829 + mkDerivation { 180830 + pname = "mysql"; 180831 + version = "0.1.7.3"; 180832 + sha256 = "1yf9ni64q19ci6ripcjh0pvpklxyi0fzigb33ss05wswlal385rc"; 180833 + setupHaskellDepends = [ base Cabal ]; 180834 + libraryHaskellDepends = [ base bytestring containers ]; 180835 + librarySystemDepends = [ mysql ]; 180836 + testHaskellDepends = [ base bytestring hspec ]; 180837 + description = "A low-level MySQL client library"; 180838 + license = lib.licenses.bsd3; 180839 + hydraPlatforms = lib.platforms.none; 180840 + }) {inherit (pkgs) mysql;}; 180841 + 180479 180842 "mysql-effect" = callPackage 180480 180843 ({ mkDerivation, base, bytestring, extensible-effects, mysql 180481 180844 , mysql-simple ··· 180979 181342 ({ mkDerivation, base, named, servant }: 180980 181343 mkDerivation { 180981 181344 pname = "named-servant"; 180982 - version = "0.3.0"; 180983 - sha256 = "14a55ww538c39wmacazdchrinc098yw9kbv44z4dw1739zhsghb6"; 180984 - revision = "1"; 180985 - editedCabalFile = "1xrbz9vhb61wkjb1amswvpb9sfslg1258vqlm880angc18i3dyi7"; 181345 + version = "0.3.1"; 181346 + sha256 = "01wy971gf178i866wly5fs86ll2rwkjp3n99ni0rdxw6p1hnq447"; 180986 181347 libraryHaskellDepends = [ base named servant ]; 180987 181348 description = "support records and named (from the named package) parameters in servant"; 180988 181349 license = lib.licenses.bsd3; ··· 180996 181357 }: 180997 181358 mkDerivation { 180998 181359 pname = "named-servant-client"; 180999 - version = "0.3.0"; 181000 - sha256 = "1ilzhvdvspd8wddv6yypvl6whbzsa3pzqz2a8ikmk0l3vkskv60d"; 181001 - revision = "1"; 181002 - editedCabalFile = "19frg1vj2zzibdrbmxdmjfas31z5hwhy7kjkk28vm20y51h4lir3"; 181360 + version = "0.3.1"; 181361 + sha256 = "1q6xzg5sgjy52jp378jm9dq2wl283mnnpslc8fq0pdly2v6d7z6i"; 181003 181362 libraryHaskellDepends = [ 181004 181363 base named named-servant servant servant-client-core 181005 181364 ]; ··· 181015 181374 }: 181016 181375 mkDerivation { 181017 181376 pname = "named-servant-server"; 181018 - version = "0.3.0"; 181019 - sha256 = "14v1sgfz6agsbiy2938chy0vi4j4jd1swdhwb9g2yg068m3262k3"; 181020 - revision = "1"; 181021 - editedCabalFile = "0880w18l18hjnrpf0j4z0rd98waai3431gzakqm53zh8zs75lcll"; 181377 + version = "0.3.1"; 181378 + sha256 = "168xvsdkln5pgf6iqs1qzy07b9ichzpqhx95j79hrba941jzd19y"; 181022 181379 libraryHaskellDepends = [ 181023 181380 base named named-servant servant servant-server text 181024 181381 ]; ··· 184283 184640 license = lib.licenses.bsd3; 184284 184641 }) {}; 184285 184642 184643 + "newtype-generics_0_6" = callPackage 184644 + ({ mkDerivation, base, gauge, hspec, hspec-discover, semigroups 184645 + , transformers 184646 + }: 184647 + mkDerivation { 184648 + pname = "newtype-generics"; 184649 + version = "0.6"; 184650 + sha256 = "04bymwhkvlsgcsd0v630mndrzf0xnh3v81ba6nfzwcvbg3ksr2wa"; 184651 + libraryHaskellDepends = [ base transformers ]; 184652 + testHaskellDepends = [ base hspec ]; 184653 + testToolDepends = [ hspec-discover ]; 184654 + benchmarkHaskellDepends = [ base gauge semigroups ]; 184655 + description = "A typeclass and set of functions for working with newtypes"; 184656 + license = lib.licenses.bsd3; 184657 + hydraPlatforms = lib.platforms.none; 184658 + }) {}; 184659 + 184286 184660 "newtype-th" = callPackage 184287 184661 ({ mkDerivation, base, haskell-src-meta, newtype, syb 184288 184662 , template-haskell ··· 184448 184822 }: 184449 184823 mkDerivation { 184450 184824 pname = "ngx-export-tools"; 184451 - version = "0.4.9.1"; 184452 - sha256 = "0ib0xzs815q29a2v1m550g7cm5cr7l6lkslmi0lpcxpfgpi08ccv"; 184825 + version = "0.4.9.2"; 184826 + sha256 = "064zbwamkkd5cx0wjisa019pprb4pg2mmm5n6a948f3dn0zpmlwx"; 184453 184827 libraryHaskellDepends = [ 184454 184828 aeson base binary bytestring ngx-export safe template-haskell 184455 184829 ]; ··· 188504 188878 }: 188505 188879 mkDerivation { 188506 188880 pname = "opaleye-sqlite"; 188507 - version = "0.0.1.0"; 188508 - sha256 = "0r3ij02wkxq50hl70wn53fdr1qi5gigg4x3y0vabm53gabgxdbxq"; 188881 + version = "0.0.1.1"; 188882 + sha256 = "02wpy2q3j6z91kjrwl9qyka74rqhbs7dlgfrc6nvpnl1ssp9vps0"; 188509 188883 libraryHaskellDepends = [ 188510 188884 base base16-bytestring bytestring case-insensitive contravariant 188511 188885 direct-sqlite pretty product-profunctors profunctors semigroups ··· 188527 188901 }: 188528 188902 mkDerivation { 188529 188903 pname = "opaleye-trans"; 188530 - version = "0.5.1"; 188531 - sha256 = "11vfp8rb46fvrhryyw9k66cbfnd920n5r4mcasdcnxhn1n8hc7i4"; 188904 + version = "0.5.2"; 188905 + sha256 = "0vszkxbgk4cqiaz4q8vgsc56yzh37dg7np2315h6bpvp1hy8fcs0"; 188532 188906 isLibrary = true; 188533 188907 isExecutable = true; 188534 188908 libraryHaskellDepends = [ ··· 190236 190610 pname = "optparse-generic"; 190237 190611 version = "1.4.4"; 190238 190612 sha256 = "0xy0kc8qximsiqpnc1fmh5zlsh6n26s7scrixin5bwnylg056j74"; 190613 + revision = "1"; 190614 + editedCabalFile = "14vbfbl2va3s2pa4qjyyny1i15s2iw9993ld5b0qsqdv1z6nfjz1"; 190239 190615 libraryHaskellDepends = [ 190240 190616 base bytestring Only optparse-applicative system-filepath text time 190241 190617 transformers void ··· 191885 192261 }: 191886 192262 mkDerivation { 191887 192263 pname = "pandoc-crossref"; 191888 - version = "0.3.9.0"; 191889 - sha256 = "18hxvzrl4b9y3343nissbcxrl4g8x82yrinyir9ifgmpz5ikg248"; 192264 + version = "0.3.9.1"; 192265 + sha256 = "0kyml1bmzjp6by86inlmyx8qkl4f92yibmhc477sglv9m8haw0wx"; 191890 192266 isLibrary = true; 191891 192267 isExecutable = true; 191892 192268 enableSeparateDataOutput = true; ··· 192179 192555 192180 192556 "pandoc-plantuml-diagrams" = callPackage 192181 192557 ({ mkDerivation, base, bytestring, directory, hspec, hspec-discover 192182 - , mtl, pandoc-types, process, SHA, utf8-string 192558 + , mtl, pandoc-types, process, SHA, text, utf8-string 192183 192559 }: 192184 192560 mkDerivation { 192185 192561 pname = "pandoc-plantuml-diagrams"; 192186 - version = "0.1.0.4"; 192187 - sha256 = "1fshgv5wl56z3w0yimwv5dbi7dal600anb5wkxd5n3jlpmp8fwky"; 192562 + version = "0.1.1.0"; 192563 + sha256 = "19wd13vwf7v2v57wiv4s2y68zrvk6rcy1w2wxxad4cv5bb65wnfn"; 192188 192564 isLibrary = true; 192189 192565 isExecutable = true; 192190 192566 libraryHaskellDepends = [ 192191 - base bytestring directory pandoc-types process SHA utf8-string 192567 + base bytestring directory pandoc-types process SHA text utf8-string 192192 192568 ]; 192193 192569 executableHaskellDepends = [ base pandoc-types ]; 192194 192570 testHaskellDepends = [ 192195 192571 base bytestring directory hspec hspec-discover mtl pandoc-types 192196 - process SHA utf8-string 192572 + process SHA text utf8-string 192197 192573 ]; 192198 192574 testToolDepends = [ hspec-discover ]; 192199 192575 description = "Render and insert PlantUML diagrams with Pandoc"; ··· 196017 196393 }: 196018 196394 mkDerivation { 196019 196395 pname = "peregrin"; 196020 - version = "0.3.0"; 196021 - sha256 = "0jhvd69avl5wy2fcsx93ng2yll97gagylwd264dv7qjaa4m6hqs2"; 196396 + version = "0.3.1"; 196397 + sha256 = "1hiv9rzpjmjywwc4j6bqkqvqwv2gr6d512hv0l6m5c6idsyk2v12"; 196022 196398 libraryHaskellDepends = [ base bytestring postgresql-simple text ]; 196023 196399 testHaskellDepends = [ 196024 196400 base hspec pg-harness-client postgresql-simple resource-pool text ··· 197837 198213 }: 197838 198214 mkDerivation { 197839 198215 pname = "phonetic-languages-examples"; 197840 - version = "0.6.2.1"; 197841 - sha256 = "0k9cwvfdxf13izbww7g08p0x702xgmm7dck3mjk4maajjfia34zm"; 198216 + version = "0.7.0.0"; 198217 + sha256 = "1dwqkl9223rmz503gclzs0l00mi9gkk542fwpvw71hd121hl4qvg"; 197842 198218 isLibrary = true; 197843 198219 isExecutable = true; 197844 198220 libraryHaskellDepends = [ ··· 197934 198310 }: 197935 198311 mkDerivation { 197936 198312 pname = "phonetic-languages-properties"; 197937 - version = "0.3.0.1"; 197938 - sha256 = "0b3wnzlka9dapk1478jr35pnd3ykj3mn5nkhvmwjdsxigzzaa1wf"; 198313 + version = "0.4.0.0"; 198314 + sha256 = "194sg4crm5z4lqqzr8apjgnbcl5h6ddkqk8crja41c5q3d5mpih5"; 197939 198315 libraryHaskellDepends = [ 197940 198316 base phonetic-languages-common phonetic-languages-rhythmicity 197941 198317 phonetic-languages-vector ukrainian-phonetics-basic vector ··· 197948 198324 ({ mkDerivation, base }: 197949 198325 mkDerivation { 197950 198326 pname = "phonetic-languages-rhythmicity"; 197951 - version = "0.1.2.0"; 197952 - sha256 = "1ljblyk0m1fs3n2gj72w6gs62dxjk5gsn8x6p7fwlwhvaa316wm3"; 198327 + version = "0.2.0.0"; 198328 + sha256 = "0cvn2l0ds5nyz4inx354l8r9m4bkqjic7plpjgvhih8f4b53j6ln"; 197953 198329 libraryHaskellDepends = [ base ]; 197954 - description = "Allows to estimate the rhythmicity metrices for the text (usually, the Ukrainian poetic one)"; 198330 + description = "Allows to estimate the rhythmicity properties for the text (usually, the Ukrainian poetic one)"; 197955 198331 license = lib.licenses.mit; 197956 198332 }) {}; 197957 198333 ··· 197998 198374 }: 197999 198375 mkDerivation { 198000 198376 pname = "phonetic-languages-simplified-examples-array"; 198001 - version = "0.3.0.0"; 198002 - sha256 = "17akng54rj8mn4ic9h1a806b03nqsigkyjggfskf4k1z9x84hdf4"; 198377 + version = "0.4.0.0"; 198378 + sha256 = "03vin7gng1sqifyy0s83igmd41bxxwrp7ck9j7bxhnqq0qmg5d7n"; 198003 198379 isLibrary = true; 198004 198380 isExecutable = true; 198005 198381 libraryHaskellDepends = [ ··· 198059 198435 }: 198060 198436 mkDerivation { 198061 198437 pname = "phonetic-languages-simplified-lists-examples"; 198062 - version = "0.6.0.0"; 198063 - sha256 = "0y843gymz9wf7hmp8asxmd90rdlgxz2b1pgi27mpglr7xmhpfr34"; 198438 + version = "0.7.0.0"; 198439 + sha256 = "1y3ad4lxapd9nblijn09i36f3xl6g9hxqmn8adcza74f4cq8pgyb"; 198064 198440 isLibrary = true; 198065 198441 isExecutable = true; 198066 198442 libraryHaskellDepends = [ ··· 198088 198464 }: 198089 198465 mkDerivation { 198090 198466 pname = "phonetic-languages-simplified-properties-array"; 198091 - version = "0.1.2.0"; 198092 - sha256 = "1vxjq0ki7slmgp1sq481srnqzcy8sazl0c2vqdkyz0hsx5hi8lyv"; 198467 + version = "0.2.0.0"; 198468 + sha256 = "1y7cki8c07q9423b54cjvy9k6a9byarpww3px50bc91ivirda6zr"; 198093 198469 libraryHaskellDepends = [ 198094 198470 base phonetic-languages-rhythmicity 198095 198471 phonetic-languages-simplified-base ukrainian-phonetics-basic-array ··· 198105 198481 }: 198106 198482 mkDerivation { 198107 198483 pname = "phonetic-languages-simplified-properties-lists"; 198108 - version = "0.3.0.0"; 198109 - sha256 = "094fyljkvfi2snj41j00xqflhabnsp5hn50xp6dvmpcr12k6nvs0"; 198484 + version = "0.4.0.0"; 198485 + sha256 = "01awd747w67m4rnm9zgsb8j28756fpvyml1j613kz33fp5s91ml2"; 198110 198486 libraryHaskellDepends = [ 198111 198487 base phonetic-languages-rhythmicity 198112 198488 phonetic-languages-simplified-common ukrainian-phonetics-basic ··· 198123 198499 }: 198124 198500 mkDerivation { 198125 198501 pname = "phonetic-languages-simplified-properties-lists-double"; 198126 - version = "0.1.0.0"; 198127 - sha256 = "1mx282gq9b2m718zrjjqxk1a17qdw5mdipmb818jr5ccrb81yhsl"; 198502 + version = "0.2.0.0"; 198503 + sha256 = "1ci63bhlk8xzf111njg97xs1ibamiv04k19wsfnhvxs3zzyzgrj0"; 198128 198504 libraryHaskellDepends = [ 198129 198505 base phonetic-languages-rhythmicity 198130 198506 phonetic-languages-simplified-common ukrainian-phonetics-basic ··· 200200 200576 license = lib.licenses.mit; 200201 200577 hydraPlatforms = lib.platforms.none; 200202 200578 broken = true; 200579 + }) {}; 200580 + 200581 + "pixiv" = callPackage 200582 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 200583 + , cryptohash-md5, directory, exceptions, filepath, http-client 200584 + , http-client-tls, lens, monad-control, mtl, process, servant 200585 + , servant-client, servant-client-core, template-haskell, temporary 200586 + , text, time, transformers, transformers-base, zip-archive 200587 + }: 200588 + mkDerivation { 200589 + pname = "pixiv"; 200590 + version = "0.1.0"; 200591 + sha256 = "001pfzijh7ibcyinmw0l8yvw0kxsvmniw993qx9b6zlzf689cpp6"; 200592 + libraryHaskellDepends = [ 200593 + aeson base base16-bytestring bytestring cryptohash-md5 directory 200594 + exceptions filepath http-client http-client-tls lens monad-control 200595 + mtl process servant servant-client servant-client-core 200596 + template-haskell temporary text time transformers transformers-base 200597 + zip-archive 200598 + ]; 200599 + testHaskellDepends = [ 200600 + aeson base bytestring http-client http-client-tls 200601 + ]; 200602 + description = "Pixiv API binding based on servant-client"; 200603 + license = lib.licenses.bsd3; 200203 200604 }) {}; 200204 200605 200205 200606 "piyo" = callPackage ··· 203997 204398 ]; 203998 204399 description = "REST API for any Postgres database"; 203999 204400 license = lib.licenses.mit; 204000 - hydraPlatforms = lib.platforms.none; 204001 - broken = true; 204002 204401 }) {}; 204003 204402 204004 204403 "postgrest-ws" = callPackage ··· 205809 206208 pname = "primitive"; 205810 206209 version = "0.7.1.0"; 205811 206210 sha256 = "1w53i4mk248g58xrffmksznr4nmn2bbbycajzpcqfxx5ybyyrsvb"; 205812 - revision = "1"; 205813 - editedCabalFile = "0nllkqvfrplhslfgbqgpn0r5k4mj5wlfixjxrpjz6vb73xwi5977"; 206211 + revision = "2"; 206212 + editedCabalFile = "1m08slj8m596z4pqsw3ag25ijhzlv9ki809ydh4nbin141bpsdgn"; 205814 206213 libraryHaskellDepends = [ base deepseq transformers ]; 205815 206214 testHaskellDepends = [ 205816 206215 base base-orphans ghc-prim QuickCheck quickcheck-classes-base ··· 206410 206809 pname = "process"; 206411 206810 version = "1.6.11.0"; 206412 206811 sha256 = "0nv8c2hnx1l6xls6b61l8sm7j250qfbj1fjj5n6m15ppk9f0d9jd"; 206812 + revision = "1"; 206813 + editedCabalFile = "136mp45m1jh27yayb0gx4giybp6imh7hbr774fsb2m9vj2l52b27"; 206413 206814 libraryHaskellDepends = [ base deepseq directory filepath unix ]; 206414 206815 testHaskellDepends = [ base bytestring directory ]; 206415 206816 description = "Process libraries"; ··· 213606 214007 }: 213607 214008 mkDerivation { 213608 214009 pname = "raw-feldspar"; 213609 - version = "0.3"; 213610 - sha256 = "0kxnl7vvqkmrq2cjwgrb4342bvr8a57v652f2pd5yvndamcz5m3w"; 214010 + version = "0.3.1"; 214011 + sha256 = "1kn86izm2wpqj59nnpxw34n37bh1w5y7h9rd59c1pcymhp29n6qd"; 213611 214012 libraryHaskellDepends = [ 213612 214013 array base constraints containers data-default-class data-hash 213613 214014 imperative-edsl language-c-quote mtl operational-alacarte ··· 215622 216023 }: 215623 216024 mkDerivation { 215624 216025 pname = "refined"; 215625 - version = "0.6.1"; 215626 - sha256 = "124sqpcii62jh2n2vfskg9jc8ic4hhlwmwim40f6a0dmhdnsh8lx"; 216026 + version = "0.6.2"; 216027 + sha256 = "1xfy6sl6kl9k7vvlvwg8fb3kdpqd0fl1c9wcfwgdqb874a4xn6dz"; 215627 216028 libraryHaskellDepends = [ 215628 216029 aeson base bytestring deepseq exceptions mtl QuickCheck 215629 216030 template-haskell text these-skinny ··· 215652 216053 }: 215653 216054 mkDerivation { 215654 216055 pname = "refinery"; 215655 - version = "0.2.0.0"; 215656 - sha256 = "0nsfmb5y8y0hanh3h03v0n8wa5frgj85gz8ycl8h5z045j2kk3wq"; 215657 - libraryHaskellDepends = [ base exceptions logict mmorph mtl ]; 215658 - testHaskellDepends = [ 215659 - base checkers exceptions hspec logict mmorph mtl QuickCheck 215660 - ]; 215661 - description = "Toolkit for building proof automation systems"; 215662 - license = lib.licenses.bsd3; 215663 - }) {}; 215664 - 215665 - "refinery_0_3_0_0" = callPackage 215666 - ({ mkDerivation, base, checkers, exceptions, hspec, logict, mmorph 215667 - , mtl, QuickCheck 215668 - }: 215669 - mkDerivation { 215670 - pname = "refinery"; 215671 216056 version = "0.3.0.0"; 215672 216057 sha256 = "1bsbnxf75prw153c3k02jk84h3sravdi1c1sl75c7sx4xq81qhlp"; 215673 216058 libraryHaskellDepends = [ base exceptions logict mmorph mtl ]; ··· 215676 216061 ]; 215677 216062 description = "Toolkit for building proof automation systems"; 215678 216063 license = lib.licenses.bsd3; 215679 - hydraPlatforms = lib.platforms.none; 215680 216064 }) {}; 215681 216065 215682 216066 "reflection" = callPackage ··· 218269 218653 pname = "repa"; 218270 218654 version = "3.4.1.4"; 218271 218655 sha256 = "17m3wl4hvf04fxwm4fflhnv41yl9bm263hnbpxc8x6xqwifplq23"; 218272 - revision = "7"; 218273 - editedCabalFile = "0j0nqp6xvwis83h1hwm9910xjfxh13nddy61dlli0wdzzddpb8ah"; 218656 + revision = "8"; 218657 + editedCabalFile = "0bhkiav26m61lzjkxjldals136viixyg88xf1bbihsp9kzkbv6as"; 218274 218658 libraryHaskellDepends = [ 218275 218659 base bytestring ghc-prim QuickCheck template-haskell vector 218276 218660 ]; ··· 222468 222852 broken = true; 222469 222853 }) {}; 222470 222854 222855 + "rpmbuild-order_0_4_3_2" = callPackage 222856 + ({ mkDerivation, base, case-insensitive, containers, directory 222857 + , extra, fgl, filepath, hspec, optparse-applicative, process 222858 + , simple-cmd, simple-cmd-args, unix 222859 + }: 222860 + mkDerivation { 222861 + pname = "rpmbuild-order"; 222862 + version = "0.4.3.2"; 222863 + sha256 = "1510v4gbylzpdh7l23r4z6xhqmjalay3crxg2216lz8j0mb4sbq9"; 222864 + isLibrary = true; 222865 + isExecutable = true; 222866 + libraryHaskellDepends = [ 222867 + base case-insensitive containers directory extra fgl filepath 222868 + process 222869 + ]; 222870 + executableHaskellDepends = [ 222871 + base directory extra fgl optparse-applicative simple-cmd-args 222872 + ]; 222873 + testHaskellDepends = [ base extra hspec simple-cmd unix ]; 222874 + description = "Order RPM packages by dependencies"; 222875 + license = lib.licenses.bsd3; 222876 + hydraPlatforms = lib.platforms.none; 222877 + broken = true; 222878 + }) {}; 222879 + 222471 222880 "rrule" = callPackage 222472 222881 ({ mkDerivation, base, hspec, megaparsec, parser-combinators, text 222473 222882 , time ··· 222983 223392 }: 222984 223393 mkDerivation { 222985 223394 pname = "runhs"; 222986 - version = "1.0.0.8"; 222987 - sha256 = "177xak0p91xn827cnpa374l94lmmym2yrrcsxzjd9752hdzyw7k3"; 223395 + version = "1.0.0.9"; 223396 + sha256 = "1i2g706997wkqj081pqxj8nq6nhj94x4kf5q0fnj39fp35fmak6q"; 222988 223397 isLibrary = false; 222989 223398 isExecutable = true; 222990 223399 executableHaskellDepends = [ ··· 228629 229038 }: 228630 229039 mkDerivation { 228631 229040 pname = "servant-cassava"; 228632 - version = "0.10"; 228633 - sha256 = "03jnyghwa5kjbl5j55njmp7as92flw91zs9cgdvb4jrsdy85sb4v"; 228634 - revision = "7"; 228635 - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; 229041 + version = "0.10.1"; 229042 + sha256 = "0hf7v35yyfqxc20hgq755laba7lziz2vsy7y8cj8nhczcc67smq0"; 228636 229043 libraryHaskellDepends = [ 228637 229044 base base-compat bytestring cassava http-media servant vector 228638 229045 ]; ··· 229381 229788 pname = "servant-iCalendar"; 229382 229789 version = "0.1.0.1"; 229383 229790 sha256 = "15gqlb60r8msn3k1j8wjxq89qg6d790lnb751wabg2lsxybmdzas"; 229384 - revision = "7"; 229385 - editedCabalFile = "0yf5gccdilswzabzysc2mrxxq84xdx7k18a647bksimwd44x2i68"; 229791 + revision = "8"; 229792 + editedCabalFile = "10ka19ga7slcv4cb2f0ncfbkz52bbrm8jkxma8qksz6hm48wxjya"; 229386 229793 libraryHaskellDepends = [ 229387 229794 base data-default http-media iCalendar servant 229388 229795 ]; ··· 235840 236247 }) {}; 235841 236248 235842 236249 "slack-web" = callPackage 235843 - ({ mkDerivation, aeson, base, containers, errors, hspec 235844 - , http-api-data, http-client, http-client-tls, megaparsec, mtl 236250 + ({ mkDerivation, aeson, base, containers, deepseq, errors, fakepull 236251 + , hashable, hspec, http-api-data, http-client, http-client-tls 236252 + , megaparsec, mtl, QuickCheck, quickcheck-instances, scientific 235845 236253 , servant, servant-client, servant-client-core, text, time 235846 - , transformers 236254 + , transformers, unordered-containers 235847 236255 }: 235848 236256 mkDerivation { 235849 236257 pname = "slack-web"; 235850 - version = "0.2.0.11"; 235851 - sha256 = "14ngln71sn5i26041m4v614vq4qhr44pzlgyxliyqw08dxn25la7"; 236258 + version = "0.2.1.0"; 236259 + sha256 = "01bwiq3b97bznn3sc51vi7q8xkjdslvqqh250fk7arcaq6hkkiw1"; 236260 + isLibrary = true; 236261 + isExecutable = true; 235852 236262 libraryHaskellDepends = [ 235853 - aeson base containers errors http-api-data http-client 235854 - http-client-tls megaparsec mtl servant servant-client 235855 - servant-client-core text time transformers 236263 + aeson base containers deepseq errors hashable http-api-data 236264 + http-client http-client-tls megaparsec mtl scientific servant 236265 + servant-client servant-client-core text time transformers 236266 + unordered-containers 235856 236267 ]; 235857 236268 testHaskellDepends = [ 235858 - aeson base containers errors hspec http-api-data megaparsec text 235859 - time 236269 + aeson base fakepull hspec QuickCheck quickcheck-instances text time 235860 236270 ]; 235861 236271 description = "Bindings for the Slack web API"; 235862 236272 license = lib.licenses.mit; ··· 241733 242143 }: 241734 242144 mkDerivation { 241735 242145 pname = "stack-all"; 241736 - version = "0.1.1"; 241737 - sha256 = "0b81f6v18dyd5zia6drqn3jqncj3sp8cscrhlrcwvbljs1j8fd0j"; 242146 + version = "0.1.2"; 242147 + sha256 = "1iqm96f9c6csv4dzr6l7cyiv99nmbc9739xhycg2gvpm9sncmxrb"; 241738 242148 isLibrary = false; 241739 242149 isExecutable = true; 241740 242150 executableHaskellDepends = [ ··· 248624 249034 }: 248625 249035 mkDerivation { 248626 249036 pname = "symantic-parser"; 248627 - version = "0.0.0.20210102"; 248628 - sha256 = "00gmcbn1amdr9nx54wia898gc7437563g9gpvlkhsg9r7197acid"; 249037 + version = "0.1.0.20210201"; 249038 + sha256 = "0c7vqxd0dagn7l3k4khbqvwg51y6a40m0f5qf587vj4rpjalc473"; 248629 249039 libraryHaskellDepends = [ 248630 249040 array base bytestring containers ghc-prim hashable template-haskell 248631 249041 text transformers unordered-containers ··· 248945 249355 }: 248946 249356 mkDerivation { 248947 249357 pname = "syntactic"; 248948 - version = "3.8.1"; 248949 - sha256 = "0560h3k360316q05wwylpbcvadp9dxzywbp206xm2wslpl1d9m8v"; 249358 + version = "3.8.2"; 249359 + sha256 = "04lv8v42bs4qjjcia39grfxmabiv41dipgg5b58xgiv4ay884nfm"; 248950 249360 libraryHaskellDepends = [ 248951 249361 base constraints containers data-hash deepseq mtl syb 248952 249362 template-haskell tree-view ··· 251212 251622 broken = true; 251213 251623 }) {}; 251214 251624 251625 + "tasty-bench" = callPackage 251626 + ({ mkDerivation, base, deepseq, tasty }: 251627 + mkDerivation { 251628 + pname = "tasty-bench"; 251629 + version = "0.1"; 251630 + sha256 = "0dc1fbsxxbdj90dihx8nv587pfds3s9si81i2qx438gkh3pyinmi"; 251631 + libraryHaskellDepends = [ base deepseq tasty ]; 251632 + description = "Featherlight benchmark framework"; 251633 + license = lib.licenses.mit; 251634 + }) {}; 251635 + 251215 251636 "tasty-dejafu" = callPackage 251216 251637 ({ mkDerivation, base, dejafu, random, tagged, tasty }: 251217 251638 mkDerivation { ··· 251806 252227 }: 251807 252228 mkDerivation { 251808 252229 pname = "tasty-sugar"; 251809 - version = "1.0.1.1"; 251810 - sha256 = "1mkph7g4ybvy4h4rblr60bnalj5jf1acfgdqcw0ggwmbhfbzbg68"; 252230 + version = "1.1.0.0"; 252231 + sha256 = "1v1ikl4jy02c0jlvm4di8ndm7fbyr8235ydppp953d7qb8yilsyp"; 251811 252232 libraryHaskellDepends = [ 251812 252233 base directory filemanip filepath logict optparse-applicative 251813 252234 prettyprinter tagged tasty ··· 259229 259650 }: 259230 259651 mkDerivation { 259231 259652 pname = "tokyocabinet-haskell"; 259232 - version = "0.0.6"; 259233 - sha256 = "1cav27hnl49ghl6f7mhyaqmvfdqib6s76z251vai4vih9psis8rk"; 259653 + version = "0.0.7"; 259654 + sha256 = "1fmj46wvl6ayx30r5r538vnygz32s1877m2f9zf7nb2zyiz5vmcb"; 259234 259655 revision = "1"; 259235 - editedCabalFile = "1mk2nwi51zm0b2081db26xipwa0yd53ikhxa5vd8fp8x2w52wliw"; 259656 + editedCabalFile = "07kx002x3yh1klhxn9fq0bi2pfy4mdqacg3caqklmdl22dkh74lq"; 259236 259657 libraryHaskellDepends = [ base bytestring mtl ]; 259237 259658 librarySystemDepends = [ tokyocabinet ]; 259238 259659 testHaskellDepends = [ base bytestring directory HUnit mtl ]; ··· 260197 260618 }) {}; 260198 260619 260199 260620 "trackit" = callPackage 260200 - ({ mkDerivation, base, brick, fsnotify, mtl, optparse-generic 260201 - , process, process-extras, stm, text, time, vty 260621 + ({ mkDerivation, base, brick, fsnotify, microlens-platform, mtl 260622 + , optparse-generic, process, process-extras, stm, text, time, vty 260202 260623 }: 260203 260624 mkDerivation { 260204 260625 pname = "trackit"; 260205 - version = "0.6.3"; 260206 - sha256 = "0bjsvz1kc6i2zpzdcjrrncqs3rpl7rfp961njhihymazffhsx3l2"; 260626 + version = "0.7"; 260627 + sha256 = "0v0f1a4p1602jgz5iik7mxxnld61ai7saan0brqry2sd6a8cjw43"; 260207 260628 isLibrary = false; 260208 260629 isExecutable = true; 260209 260630 executableHaskellDepends = [ 260210 - base brick fsnotify mtl optparse-generic process process-extras stm 260211 - text time vty 260631 + base brick fsnotify microlens-platform mtl optparse-generic process 260632 + process-extras stm text time vty 260212 260633 ]; 260213 260634 description = "A command-line tool for live monitoring"; 260214 260635 license = lib.licenses.bsd3; ··· 266358 266779 }: 266359 266780 mkDerivation { 266360 266781 pname = "uniqueness-periods-vector-examples"; 266361 - version = "0.14.5.0"; 266362 - sha256 = "0c30dd5x1bgk40gzfa5wdrnlam0j41z0cpd1dhmcj6fzwd1l2nra"; 266782 + version = "0.15.0.0"; 266783 + sha256 = "0cgl2xnmp0m73iizmhbl33vgc6mf1wzj49nf9xm1c1d70ak21g1l"; 266363 266784 isLibrary = true; 266364 266785 isExecutable = true; 266365 266786 libraryHaskellDepends = [ ··· 266412 266833 }: 266413 266834 mkDerivation { 266414 266835 pname = "uniqueness-periods-vector-properties"; 266415 - version = "0.5.5.0"; 266416 - sha256 = "08pzazvgg0nldybbj1558xvipn3wafqm9491fk2xcrf4na5pc42l"; 266836 + version = "0.6.0.0"; 266837 + sha256 = "08c97g221xcbsrwzyv36gikilim2yz2v2kkrhqvaj102v7ygh6ih"; 266417 266838 libraryHaskellDepends = [ 266418 266839 base mmsyn6ukr mmsyn7s phonetic-languages-rhythmicity 266419 266840 phonetic-languages-ukrainian uniqueness-periods-vector ··· 267096 267517 }: 267097 267518 mkDerivation { 267098 267519 pname = "unliftio-streams"; 267099 - version = "0.1.1.0"; 267100 - sha256 = "0qp78c610anqpgpd13pz24x68kcpc69z2wjrz6a3qixvqjvp72bw"; 267520 + version = "0.1.1.1"; 267521 + sha256 = "1r9yn710nwx4h2ky2pmlhmap5ydx4fhcaq119dq7cysnygzi5q2n"; 267101 267522 libraryHaskellDepends = [ 267102 267523 base bytestring io-streams text unliftio-core 267103 267524 ]; ··· 267868 268289 pname = "uri-encode"; 267869 268290 version = "1.5.0.7"; 267870 268291 sha256 = "0lj2h701af12539p957rw24bxr07mfqd5r4h52i42f43ax165767"; 268292 + revision = "1"; 268293 + editedCabalFile = "172mgdd8dgy8wphgl9vbvp26lrzp01prr5jshbng4rlhpyd340p1"; 267871 268294 isLibrary = true; 267872 268295 isExecutable = true; 267873 268296 libraryHaskellDepends = [ ··· 274216 274639 license = lib.licenses.mit; 274217 274640 }) {}; 274218 274641 274642 + "warp_3_3_14" = callPackage 274643 + ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked 274644 + , bytestring, case-insensitive, containers, directory, gauge 274645 + , ghc-prim, hashable, hspec, http-client, http-date, http-types 274646 + , http2, HUnit, iproute, lifted-base, network, process, QuickCheck 274647 + , simple-sendfile, stm, streaming-commons, text, time, time-manager 274648 + , unix, unix-compat, vault, wai, word8, x509 274649 + }: 274650 + mkDerivation { 274651 + pname = "warp"; 274652 + version = "3.3.14"; 274653 + sha256 = "0whmh6dbl7321a2kg6ypngw5kgvvxqdk161li0l4hr3wqqddlc93"; 274654 + libraryHaskellDepends = [ 274655 + array async auto-update base bsb-http-chunked bytestring 274656 + case-insensitive containers ghc-prim hashable http-date http-types 274657 + http2 iproute network simple-sendfile stm streaming-commons text 274658 + time-manager unix unix-compat vault wai word8 x509 274659 + ]; 274660 + testHaskellDepends = [ 274661 + array async auto-update base bsb-http-chunked bytestring 274662 + case-insensitive containers directory ghc-prim hashable hspec 274663 + http-client http-date http-types http2 HUnit iproute lifted-base 274664 + network process QuickCheck simple-sendfile stm streaming-commons 274665 + text time time-manager unix unix-compat vault wai word8 x509 274666 + ]; 274667 + benchmarkHaskellDepends = [ 274668 + auto-update base bytestring containers gauge hashable http-date 274669 + http-types network time-manager unix unix-compat x509 274670 + ]; 274671 + description = "A fast, light-weight web server for WAI applications"; 274672 + license = lib.licenses.mit; 274673 + hydraPlatforms = lib.platforms.none; 274674 + }) {}; 274675 + 274219 274676 "warp-dynamic" = callPackage 274220 274677 ({ mkDerivation, base, data-default, dyre, http-types, wai, warp }: 274221 274678 mkDerivation { ··· 278885 279342 }: 278886 279343 mkDerivation { 278887 279344 pname = "xdot"; 278888 - version = "0.3.0.2"; 278889 - sha256 = "0k3lklghlj51nslv8pi8anj78hls2srmdr6hz5yibfhvycpib0c2"; 279345 + version = "0.3.0.3"; 279346 + sha256 = "06pgs74b3llyhhp2rr9a3rvgycnvg395q5ib9vwdiv9pqgq31kia"; 278890 279347 isLibrary = true; 278891 279348 isExecutable = true; 278892 279349 libraryHaskellDepends = [ ··· 282680 283137 broken = true; 282681 283138 }) {}; 282682 283139 282683 - "yesod-auth-oauth2_0_6_2_1" = callPackage 283140 + "yesod-auth-oauth2_0_6_2_2" = callPackage 282684 283141 ({ mkDerivation, aeson, base, bytestring, cryptonite, errors 282685 283142 , hoauth2, hspec, http-client, http-conduit, http-types, memory 282686 283143 , microlens, safe-exceptions, text, uri-bytestring, yesod-auth ··· 282688 283145 }: 282689 283146 mkDerivation { 282690 283147 pname = "yesod-auth-oauth2"; 282691 - version = "0.6.2.1"; 282692 - sha256 = "1kzz271y69l47wikfmfix5v9csh6xy7cv8b36gxzlwr6vil59bmy"; 283148 + version = "0.6.2.2"; 283149 + sha256 = "176iz5mg9jhrp8kp61f12j1jw3icnqp10dxln7046p1nqam0nv3d"; 282693 283150 isLibrary = true; 282694 283151 isExecutable = true; 282695 283152 libraryHaskellDepends = [
-10
pkgs/development/haskell-modules/non-hackage-packages.nix
··· 18 18 # https://github.com/spacchetti/spago/issues/512 19 19 spago = self.callPackage ../tools/purescript/spago/spago.nix { }; 20 20 21 - # HLS and its fork of ghcide that it uses 22 - # both are auto-generated by pkgs/development/tools/haskell/haskell-language-server/update.sh 23 - haskell-language-server = self.callPackage ../tools/haskell/haskell-language-server { }; 24 - hls-hlint-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-hlint-plugin.nix { }; 25 - hls-tactics-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-tactics-plugin.nix { }; 26 - hls-explicit-imports-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-explicit-imports-plugin.nix { }; 27 - hls-retrie-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-retrie-plugin.nix { }; 28 - hls-class-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-class-plugin.nix { }; 29 - hls-eval-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-eval-plugin.nix { }; 30 - 31 21 nix-output-monitor = self.callPackage ../../tools/nix/nix-output-monitor { }; 32 22 33 23 # cabal2nix --revision <rev> https://github.com/hasura/ci-info-hs.git
+6 -8
pkgs/development/libraries/neon/default.nix
··· 1 - { lib, stdenv, fetchurl, libxml2, pkg-config, perl 1 + { lib, stdenv, fetchurl, libxml2, pkg-config 2 2 , compressionSupport ? true, zlib ? null 3 3 , sslSupport ? true, openssl ? null 4 4 , static ? stdenv.hostPlatform.isStatic ··· 14 14 in 15 15 16 16 stdenv.mkDerivation rec { 17 - version = "0.31.0"; 17 + version = "0.31.2"; 18 18 pname = "neon"; 19 19 20 20 src = fetchurl { 21 - url = "http://www.webdav.org/neon/${pname}-${version}.tar.gz"; 22 - sha256 = "19dx4rsqrck9jl59y4ad9jf115hzh6pz1hcl2dnlfc84hc86ymc0"; 21 + url = "https://notroj.github.io/${pname}/${pname}-${version}.tar.gz"; 22 + sha256 = "0y46dbhiblcvg8k41bdydr3fivghwk73z040ki5825d24ynf67ng"; 23 23 }; 24 24 25 25 patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ]; ··· 37 37 38 38 passthru = {inherit compressionSupport sslSupport;}; 39 39 40 - checkInputs = [ perl ]; 41 - doCheck = false; # fails, needs the net 42 - 43 40 meta = with lib; { 44 41 description = "An HTTP and WebDAV client library"; 45 - homepage = "http://www.webdav.org/neon/"; 42 + homepage = "https://notroj.github.io/neon/"; 43 + changelog = "https://github.com/notroj/${pname}/blob/${version}/NEWS"; 46 44 platforms = platforms.unix; 47 45 license = licenses.lgpl2; 48 46 };
+15 -3
pkgs/development/libraries/wolfssl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wolfssl"; 5 - version = "4.5.0"; 5 + version = "4.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "wolfSSL"; 9 9 repo = "wolfssl"; 10 10 rev = "v${version}-stable"; 11 - sha256 = "138ppnwkqkfi7nnqpd0b93dqaph72ma65m9286bz2qzlis1x8r0v"; 11 + sha256 = "0hk3bnzznxj047gwxdxw2v3w6jqq47996m7g72iwj6c2ai9g6h4m"; 12 12 }; 13 13 14 - configureFlags = [ "--enable-all" ]; 14 + # almost same as Debian but for now using --enable-all instead of --enable-distro to ensure options.h gets installed 15 + configureFlags = [ "--enable-all --enable-pkcs11 --enable-tls13 --enable-base64encode" ]; 15 16 16 17 outputs = [ "out" "dev" "doc" "lib" ]; 17 18 18 19 nativeBuildInputs = [ autoreconfHook ]; 20 + 21 + postPatch = '' 22 + # fix recursive cycle: 23 + # build flags (including location of header files) are exposed in the 24 + # public API of wolfssl, causing lib to depend on dev 25 + substituteInPlace configure.ac \ 26 + --replace '#define LIBWOLFSSL_CONFIGURE_ARGS \"$ac_configure_args\"' ' ' 27 + substituteInPlace configure.ac \ 28 + --replace '#define LIBWOLFSSL_GLOBAL_CFLAGS \"$CPPFLAGS $AM_CPPFLAGS $CFLAGS $AM_CFLAGS\"' ' ' 29 + ''; 30 + 19 31 20 32 postInstall = '' 21 33 # fix recursive cycle:
+18 -9
pkgs/development/python-modules/aioharmony/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k, slixmpp, async-timeout, aiohttp }: 1 + { lib 2 + , aiohttp 3 + , async-timeout 4 + , buildPythonPackage 5 + , fetchPypi 6 + , isPy3k 7 + , slixmpp 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "aioharmony"; 5 - version = "0.2.6"; 12 + version = "0.2.7"; 13 + disabled = !isPy3k; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 - sha256 = "90f4d1220d44b48b21a57e0273aa3c4a51599d0097af88e8be26df151e599344"; 17 + sha256 = "sha256-aej8xC0Bsy6ip7IwO6onp55p6afkz8yZnz14cCExSPA="; 10 18 }; 11 19 12 - disabled = !isPy3k; 20 + propagatedBuildInputs = [ 21 + aiohttp 22 + async-timeout 23 + slixmpp 24 + ]; 13 25 14 - #aioharmony does not seem to include tests 26 + # aioharmony does not seem to include tests 15 27 doCheck = false; 16 28 17 29 pythonImportsCheck = [ "aioharmony.harmonyapi" "aioharmony.harmonyclient" ]; 18 - 19 - propagatedBuildInputs = [ slixmpp async-timeout aiohttp ]; 20 30 21 31 meta = with lib; { 22 32 homepage = "https://github.com/ehendrix23/aioharmony"; 23 - description = 24 - "Asyncio Python library for connecting to and controlling the Logitech Harmony"; 33 + description = "Python library for interacting the Logitech Harmony devices"; 25 34 license = licenses.asl20; 26 35 maintainers = with maintainers; [ oro ]; 27 36 };
+6 -2
pkgs/development/python-modules/crytic-compile/default.nix
··· 6 6 7 7 disabled = pythonOlder "3.6"; 8 8 9 + patchPhase = '' 10 + substituteInPlace setup.py --replace 'version="0.1.11",' 'version="${version}",' 11 + ''; 12 + 9 13 src = fetchFromGitHub { 10 14 owner = "crytic"; 11 15 repo = "crytic-compile"; ··· 21 25 meta = with lib; { 22 26 description = "Abstraction layer for smart contract build systems"; 23 27 homepage = "https://github.com/crytic/crytic-compile"; 24 - license = licenses.agpl3; 25 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + license = licenses.agpl3Plus; 29 + maintainers = with maintainers; [ SuperSandro2000 arturcygan ]; 26 30 }; 27 31 }
+2 -2
pkgs/development/python-modules/dash-core-components/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "dash_core_components"; 8 - version = "1.13.0"; 8 + version = "1.15.0"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "f92025b12931539cdda2173f2b4cd077119cbabbf3ddf62333f6302fd0d8a3ac"; 12 + sha256 = "b61cb37322de91b4feb0d4d823694cbba8686f6459db774b53d553135350c71e"; 13 13 }; 14 14 15 15 # No tests in archive
+2 -2
pkgs/development/python-modules/dash-html-components/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "dash_html_components"; 8 - version = "1.1.1"; 8 + version = "1.1.2"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "2c662e640528c890aaa0fa23d48e51c4d13ce69a97841d856ddcaaf2c6a47be3"; 12 + sha256 = "83eaa39667b7c3e6cbefa360743e6e536d913269ea15db14308ad022c78bc301"; 13 13 }; 14 14 15 15 # No tests in archive
+2 -2
pkgs/development/python-modules/dash-renderer/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "dash_renderer"; 8 - version = "1.8.3"; 8 + version = "1.9.0"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "f7ab2b922f4f0850bae0e9793cec99f8a1a241e5f7f5786e367ddd9e41d2b170"; 12 + sha256 = "3c5519a781beb2261ee73b2d193bef6f212697636f204acd7d58cd986ba88e30"; 13 13 }; 14 14 15 15 # No tests in archive
+2 -2
pkgs/development/python-modules/dash-table/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "dash_table"; 8 - version = "4.11.0"; 8 + version = "4.11.2"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "3170504a8626a9676b016c5ab456ab8c1fb1ea0206dcc2eddb8c4c6589216304"; 12 + sha256 = "90fbdd12eaaf657aa80d429263de4bbeef982649eb5981ebeb2410d67c1d20eb"; 13 13 }; 14 14 15 15 # No tests in archive
+3 -3
pkgs/development/python-modules/dash/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "dash"; 19 - version = "1.17.0"; 19 + version = "1.19.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "plotly"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "1fbnhpmkxavv6yirmhx7659q1y9bqynwjd1g6cscv1mfv9m59l60"; 25 + sha256 = "067ipkp186h26j7whfid8hjf6cwjmw2b5jp6fvvg280j7q9bjsa9"; 26 26 }; 27 27 28 28 propagatedBuildInputs = [ ··· 43 43 ]; 44 44 45 45 checkPhase = '' 46 - pytest tests/unit/test_{configs,fingerprint,import,resources}.py \ 46 + pytest tests/unit/test_{configs,fingerprint,resources}.py \ 47 47 tests/unit/dash/ 48 48 ''; 49 49
-5
pkgs/development/python-modules/datashader/default.nix
··· 76 76 nbconvert 77 77 ]; 78 78 79 - postConfigure = '' 80 - substituteInPlace setup.py \ 81 - --replace "'numba >=0.37.0,<0.49'" "'numba'" 82 - ''; 83 - 84 79 # dask doesn't do well with large core counts 85 80 checkPhase = '' 86 81 pytest -n $NIX_BUILD_CORES datashader -k 'not dask.array'
+38
pkgs/development/python-modules/drf-nested-routers/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , setuptools 5 + , django 6 + , djangorestframework 7 + , pytest 8 + , pytest-cov 9 + , pytest-django 10 + , ipdb 11 + , python 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "drf-nested-routers"; 16 + version = "0.92.5"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "alanjds"; 20 + repo = "drf-nested-routers"; 21 + rev = "v${version}"; 22 + sha256 = "1l1jza8xz6xcm3gwxh1k6pc8fs95cq3v751gxj497y1a83d26j8i"; 23 + }; 24 + 25 + propagatedBuildInputs = [ django djangorestframework setuptools ]; 26 + checkInputs = [ pytest pytest-cov pytest-django ipdb ]; 27 + 28 + checkPhase = '' 29 + ${python.interpreter} runtests.py --nolint 30 + ''; 31 + 32 + meta = with lib; { 33 + homepage = "https://github.com/alanjds/drf-nested-routers"; 34 + description = "Provides routers and fields to create nested resources in the Django Rest Framework"; 35 + license = licenses.asl20; 36 + maintainers = with maintainers; [ felschr ]; 37 + }; 38 + }
+1 -1
pkgs/development/python-modules/j2cli/default.nix
··· 26 26 J2Cli is a command-line tool for templating in shell-scripts, 27 27 leveraging the Jinja2 library. 28 28 ''; 29 - maintainers = with maintainers; [ rushmorem ]; 29 + maintainers = with maintainers; [ rushmorem SuperSandro2000 ]; 30 30 }; 31 31 32 32 }
+3
pkgs/development/python-modules/jupyterhub-systemdspawner/default.nix
··· 28 28 --replace "/bin/bash" "${bash}/bin/bash" 29 29 ''; 30 30 31 + # no tests 32 + doCheck = false; 33 + 31 34 meta = with lib; { 32 35 description = "JupyterHub Spawner using systemd for resource isolation"; 33 36 homepage = "https://github.com/jupyterhub/systemdspawner";
+1
pkgs/development/python-modules/manticore/default.nix
··· 57 57 ] ++ lib.optionals (!stdenv.isLinux) [ 58 58 "--ignore=tests/native" 59 59 "--ignore=tests/other/test_locking.py" 60 + "--ignore=tests/other/test_state_introspection.py" 60 61 ]; 61 62 disabledTests = [ 62 63 # failing tests
+12 -4
pkgs/development/python-modules/nunavut/default.nix
··· 1 - { lib, buildPythonPackage, pythonOlder, fetchPypi, pydsdl }: 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , pydsdl 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "nunavut"; 5 - version = "0.6.2"; 10 + version = "1.0.1"; 6 11 disabled = pythonOlder "3.5"; # only python>=3.5 is supported 7 12 8 13 src = fetchPypi { 9 14 inherit pname version; 10 - sha256 = "48b6802722d78542ca5d7bbc0d6aa9b0a31e1be0070c47b41527f227eb6a1443"; 15 + sha256 = "1gvs3fx2l15y5ffqsxxjfa4p1ydaqbq7qp5nsgb8jbz871358jxm"; 11 16 }; 12 17 13 18 propagatedBuildInputs = [ ··· 19 24 export HOME=$TMPDIR 20 25 ''; 21 26 22 - # repo doesn't contain tests, ensure imports aren't broken 27 + # No tests in pypy package and no git tags yet for release versions, see 28 + # https://github.com/UAVCAN/nunavut/issues/182 29 + doCheck = false; 30 + 23 31 pythonImportsCheck = [ 24 32 "nunavut" 25 33 ];
+2 -2
pkgs/development/python-modules/praw/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "praw"; 17 - version = "7.1.2"; 17 + version = "7.1.3"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "praw-dev"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-aEx0swjfyBrSu1fgIiAwdwWmk9v5o7sbT5HTVp7L3R4="; 23 + sha256 = "sha256-Ndj7JNRQVLlWyOkS7zSi3B07mZyulyIL0Ju3owNoAsw="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+5 -6
pkgs/development/python-modules/pydsdl/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pydsdl"; 5 - version = "1.4.2"; 5 + version = "1.9.4"; 6 6 disabled = pythonOlder "3.5"; # only python>=3.5 is supported 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "UAVCAN"; 10 10 repo = pname; 11 11 rev = version; 12 - sha256 = "03kbpzdrjzj5vpgz5rhc110pm1axdn3ynv88b42zq6iyab4k8k1x"; 12 + sha256 = "1hmmc4sg6dckbx2ghcjpi74yprapa6lkxxzy0h446mvyngp0kwfv"; 13 13 }; 14 14 15 - propagatedBuildInputs = [ 16 - ]; 17 - 18 15 # allow for writable directory for darwin 19 16 preBuild = '' 20 17 export HOME=$TMPDIR 21 18 ''; 22 19 23 - # repo doesn't contain tests, ensure imports aren't broken 20 + # repo doesn't contain tests 21 + doCheck = false; 22 + 24 23 pythonImportsCheck = [ 25 24 "pydsdl" 26 25 ];
+36
pkgs/development/python-modules/pysma/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , attrs 4 + , buildPythonPackage 5 + , fetchPypi 6 + , jmespath 7 + , async-timeout 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pysma"; 12 + version = "0.3.5"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + sha256 = "1awcsbk14i2aw01f7b7hrmpn9q6vr9v6la0i9n7ldv1h8rzq6j16"; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + aiohttp 21 + async-timeout 22 + attrs 23 + jmespath 24 + ]; 25 + 26 + # pypi does not contain tests and GitHub archive not available 27 + doCheck = false; 28 + pythonImportsCheck = [ "pysma" ]; 29 + 30 + meta = with lib; { 31 + description = "Python library for interacting with SMA Solar's WebConnect"; 32 + homepage = "https://github.com/kellerza/pysma"; 33 + license = with licenses; [ mit ]; 34 + maintainers = with maintainers; [ fab ]; 35 + }; 36 + }
+2
pkgs/development/python-modules/slackclient/default.nix
··· 49 49 responses 50 50 ]; 51 51 52 + pythonImportsCheck = [ "slack" ]; 53 + 52 54 meta = with lib; { 53 55 description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API"; 54 56 homepage = "https://github.com/slackapi/python-slackclient";
+7 -5
pkgs/development/python-modules/slither-analyzer/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder 2 - , crytic-compile, prettytable, setuptools, solc 1 + { lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder 2 + , crytic-compile, prettytable, setuptools 3 + # solc is currently broken on Darwin, default to false 4 + , solc, withSolc ? !stdenv.isDarwin 3 5 }: 4 6 5 7 buildPythonPackage rec { ··· 19 21 nativeBuildInputs = [ makeWrapper ]; 20 22 propagatedBuildInputs = [ crytic-compile prettytable setuptools ]; 21 23 22 - postFixup = '' 24 + postFixup = lib.optionalString withSolc '' 23 25 wrapProgram $out/bin/slither \ 24 26 --prefix PATH : "${lib.makeBinPath [ solc ]}" 25 27 ''; ··· 32 34 contract details, and provides an API to easily write custom analyses. 33 35 ''; 34 36 homepage = "https://github.com/trailofbits/slither"; 35 - license = licenses.agpl3; 36 - maintainers = [ maintainers.asymmetric ]; 37 + license = licenses.agpl3Plus; 38 + maintainers = with maintainers; [ asymmetric arturcygan ]; 37 39 }; 38 40 }
-53
pkgs/development/tools/haskell/haskell-language-server/default.nix
··· 1 - { mkDerivation, aeson, base, binary, blaze-markup, brittany 2 - , bytestring, containers, data-default, deepseq, directory, extra 3 - , fetchgit, filepath, floskell, fourmolu, ghc, ghc-boot-th 4 - , ghc-paths, ghcide, gitrev, hashable, haskell-lsp, hie-bios 5 - , hls-class-plugin, hls-eval-plugin, hls-explicit-imports-plugin 6 - , hls-hlint-plugin, hls-plugin-api, hls-retrie-plugin 7 - , hls-tactics-plugin, hslogger, hspec, hspec-core 8 - , hspec-expectations, lens, lsp-test, mtl, optparse-applicative 9 - , optparse-simple, ormolu, process, regex-tdfa, safe-exceptions 10 - , shake, lib, stm, stylish-haskell, tasty, tasty-ant-xml 11 - , tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun 12 - , temporary, text, transformers, unordered-containers, with-utf8 13 - , yaml 14 - }: 15 - mkDerivation { 16 - pname = "haskell-language-server"; 17 - version = "0.8.0.0"; 18 - src = fetchgit { 19 - url = "https://github.com/haskell/haskell-language-server.git"; 20 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 21 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 22 - fetchSubmodules = true; 23 - }; 24 - isLibrary = true; 25 - isExecutable = true; 26 - libraryHaskellDepends = [ 27 - base containers data-default directory extra filepath ghc ghcide 28 - gitrev haskell-lsp hls-plugin-api hslogger optparse-applicative 29 - optparse-simple process shake text unordered-containers 30 - ]; 31 - executableHaskellDepends = [ 32 - aeson base binary brittany bytestring containers deepseq directory 33 - extra filepath floskell fourmolu ghc ghc-boot-th ghc-paths ghcide 34 - gitrev hashable haskell-lsp hie-bios hls-class-plugin 35 - hls-eval-plugin hls-explicit-imports-plugin hls-hlint-plugin 36 - hls-plugin-api hls-retrie-plugin hls-tactics-plugin hslogger lens 37 - mtl optparse-applicative optparse-simple ormolu process regex-tdfa 38 - safe-exceptions shake stylish-haskell temporary text transformers 39 - unordered-containers with-utf8 40 - ]; 41 - testHaskellDepends = [ 42 - aeson base blaze-markup bytestring containers data-default 43 - directory extra filepath haskell-lsp hie-bios hls-plugin-api 44 - hslogger hspec hspec-core hspec-expectations lens lsp-test process 45 - stm tasty tasty-ant-xml tasty-expected-failure tasty-golden 46 - tasty-hunit tasty-rerun temporary text transformers 47 - unordered-containers yaml 48 - ]; 49 - testToolDepends = [ ghcide ]; 50 - homepage = "https://github.com/haskell/haskell-language-server#readme"; 51 - description = "LSP server for GHC"; 52 - license = lib.licenses.asl20; 53 - }
-21
pkgs/development/tools/haskell/haskell-language-server/hls-class-plugin.nix
··· 1 - { mkDerivation, aeson, base, containers, fetchgit, ghc 2 - , ghc-exactprint, ghcide, haskell-lsp, hls-plugin-api, lens, shake 3 - , lib, text, transformers, unordered-containers 4 - }: 5 - mkDerivation { 6 - pname = "hls-class-plugin"; 7 - version = "0.1.0.0"; 8 - src = fetchgit { 9 - url = "https://github.com/haskell/haskell-language-server.git"; 10 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 11 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 12 - fetchSubmodules = true; 13 - }; 14 - postUnpack = "sourceRoot+=/plugins/hls-class-plugin; echo source root reset to $sourceRoot"; 15 - libraryHaskellDepends = [ 16 - aeson base containers ghc ghc-exactprint ghcide haskell-lsp 17 - hls-plugin-api lens shake text transformers unordered-containers 18 - ]; 19 - description = "Explicit imports plugin for Haskell Language Server"; 20 - license = lib.licenses.asl20; 21 - }
-27
pkgs/development/tools/haskell/haskell-language-server/hls-eval-plugin.nix
··· 1 - { mkDerivation, aeson, base, containers, deepseq, Diff, directory 2 - , extra, fetchgit, filepath, ghc, ghc-boot-th, ghc-paths, ghcide 3 - , hashable, haskell-lsp, haskell-lsp-types, hls-plugin-api 4 - , parser-combinators, pretty-simple, QuickCheck, safe-exceptions 5 - , shake, lib, temporary, text, time, transformers 6 - , unordered-containers 7 - }: 8 - mkDerivation { 9 - pname = "hls-eval-plugin"; 10 - version = "0.1.0.0"; 11 - src = fetchgit { 12 - url = "https://github.com/haskell/haskell-language-server.git"; 13 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 14 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 15 - fetchSubmodules = true; 16 - }; 17 - postUnpack = "sourceRoot+=/plugins/hls-eval-plugin; echo source root reset to $sourceRoot"; 18 - libraryHaskellDepends = [ 19 - aeson base containers deepseq Diff directory extra filepath ghc 20 - ghc-boot-th ghc-paths ghcide hashable haskell-lsp haskell-lsp-types 21 - hls-plugin-api parser-combinators pretty-simple QuickCheck 22 - safe-exceptions shake temporary text time transformers 23 - unordered-containers 24 - ]; 25 - description = "Eval plugin for Haskell Language Server"; 26 - license = lib.licenses.asl20; 27 - }
-21
pkgs/development/tools/haskell/haskell-language-server/hls-explicit-imports-plugin.nix
··· 1 - { mkDerivation, aeson, base, containers, deepseq, fetchgit, ghc 2 - , ghcide, haskell-lsp-types, hls-plugin-api, shake, lib, text 3 - , unordered-containers 4 - }: 5 - mkDerivation { 6 - pname = "hls-explicit-imports-plugin"; 7 - version = "0.1.0.0"; 8 - src = fetchgit { 9 - url = "https://github.com/haskell/haskell-language-server.git"; 10 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 11 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 12 - fetchSubmodules = true; 13 - }; 14 - postUnpack = "sourceRoot+=/plugins/hls-explicit-imports-plugin; echo source root reset to $sourceRoot"; 15 - libraryHaskellDepends = [ 16 - aeson base containers deepseq ghc ghcide haskell-lsp-types 17 - hls-plugin-api shake text unordered-containers 18 - ]; 19 - description = "Explicit imports plugin for Haskell Language Server"; 20 - license = lib.licenses.asl20; 21 - }
-26
pkgs/development/tools/haskell/haskell-language-server/hls-hlint-plugin.nix
··· 1 - { mkDerivation, aeson, apply-refact, base, binary, bytestring 2 - , containers, data-default, deepseq, Diff, directory, extra 3 - , fetchgit, filepath, ghc, ghc-lib, ghc-lib-parser-ex, ghcide 4 - , hashable, haskell-lsp, hlint, hls-plugin-api, hslogger, lens 5 - , regex-tdfa, shake, lib, temporary, text, transformers 6 - , unordered-containers 7 - }: 8 - mkDerivation { 9 - pname = "hls-hlint-plugin"; 10 - version = "0.1.0.0"; 11 - src = fetchgit { 12 - url = "https://github.com/haskell/haskell-language-server.git"; 13 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 14 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 15 - fetchSubmodules = true; 16 - }; 17 - postUnpack = "sourceRoot+=/plugins/hls-hlint-plugin; echo source root reset to $sourceRoot"; 18 - libraryHaskellDepends = [ 19 - aeson apply-refact base binary bytestring containers data-default 20 - deepseq Diff directory extra filepath ghc ghc-lib ghc-lib-parser-ex 21 - ghcide hashable haskell-lsp hlint hls-plugin-api hslogger lens 22 - regex-tdfa shake temporary text transformers unordered-containers 23 - ]; 24 - description = "Hlint integration plugin with Haskell Language Server"; 25 - license = lib.licenses.asl20; 26 - }
-23
pkgs/development/tools/haskell/haskell-language-server/hls-retrie-plugin.nix
··· 1 - { mkDerivation, aeson, base, containers, deepseq, directory, extra 2 - , fetchgit, ghc, ghcide, hashable, haskell-lsp, haskell-lsp-types 3 - , hls-plugin-api, retrie, safe-exceptions, shake, lib, text 4 - , transformers, unordered-containers 5 - }: 6 - mkDerivation { 7 - pname = "hls-retrie-plugin"; 8 - version = "0.1.0.0"; 9 - src = fetchgit { 10 - url = "https://github.com/haskell/haskell-language-server.git"; 11 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 12 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 13 - fetchSubmodules = true; 14 - }; 15 - postUnpack = "sourceRoot+=/plugins/hls-retrie-plugin; echo source root reset to $sourceRoot"; 16 - libraryHaskellDepends = [ 17 - aeson base containers deepseq directory extra ghc ghcide hashable 18 - haskell-lsp haskell-lsp-types hls-plugin-api retrie safe-exceptions 19 - shake text transformers unordered-containers 20 - ]; 21 - description = "Retrie integration plugin for Haskell Language Server"; 22 - license = lib.licenses.asl20; 23 - }
-32
pkgs/development/tools/haskell/haskell-language-server/hls-tactics-plugin.nix
··· 1 - { mkDerivation, aeson, base, checkers, containers, deepseq 2 - , directory, extra, fetchgit, filepath, fingertree, generic-lens 3 - , ghc, ghc-boot-th, ghc-exactprint, ghc-source-gen, ghcide 4 - , haskell-lsp, hie-bios, hls-plugin-api, hspec, hspec-discover 5 - , lens, mtl, QuickCheck, refinery, retrie, shake, lib, syb, text 6 - , transformers 7 - }: 8 - mkDerivation { 9 - pname = "hls-tactics-plugin"; 10 - version = "0.5.1.0"; 11 - src = fetchgit { 12 - url = "https://github.com/haskell/haskell-language-server.git"; 13 - sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588"; 14 - rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5"; 15 - fetchSubmodules = true; 16 - }; 17 - postUnpack = "sourceRoot+=/plugins/tactics; echo source root reset to $sourceRoot"; 18 - libraryHaskellDepends = [ 19 - aeson base containers deepseq directory extra filepath fingertree 20 - generic-lens ghc ghc-boot-th ghc-exactprint ghc-source-gen ghcide 21 - haskell-lsp hls-plugin-api lens mtl refinery retrie shake syb text 22 - transformers 23 - ]; 24 - testHaskellDepends = [ 25 - base checkers containers ghc hie-bios hls-plugin-api hspec mtl 26 - QuickCheck 27 - ]; 28 - testToolDepends = [ hspec-discover ]; 29 - description = "Tactics plugin for Haskell Language Server"; 30 - license = "unknown"; 31 - hydraPlatforms = lib.platforms.none; 32 - }
-50
pkgs/development/tools/haskell/haskell-language-server/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p cabal2nix jq curl 3 - # 4 - # This script will update the haskell-language-server derivation to the latest version using 5 - # cabal2nix. 6 - # 7 - # Note that you should always try building haskell-language-server after updating it here, since 8 - # some of the overrides in pkgs/development/haskell/configuration-nix.nix may 9 - # need to be updated/changed. 10 - # 11 - # Remember to split out different updates into multiple commits 12 - 13 - set -eo pipefail 14 - 15 - # This is the directory of this update.sh script. 16 - script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" 17 - 18 - # =========================== 19 - # HLS 20 - # =========================== 21 - 22 - # hls derivation created with cabal2nix. 23 - hls_derivation_file="${script_dir}/default.nix" 24 - 25 - # This is the current revision of hls in Nixpkgs. 26 - hls_old_version="$(sed -En 's/.*\bversion = "(.*?)".*/\1/p' "$hls_derivation_file")" 27 - 28 - # This is the latest release version of hls on GitHub. 29 - # Get all tag names, filter to the hls ones (no prefix like 'hls-plugin-api-'), 30 - # sort for the latest one and select just that 31 - hls_latest_release=$(curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/haskell/haskell-language-server/tags | 32 - jq --raw-output 'map(.name) | .[]' | 33 - grep '^[0-9]' | 34 - sort --version-sort | 35 - tail -n1) 36 - 37 - # Use this value instead for the very latest revision 38 - # hls_head=(curl --silent "https://api.github.com/repos/haskell/haskell-language-server/commits/master" | jq '.sha' --raw-output) 39 - 40 - hls_new_version=$hls_latest_release 41 - 42 - echo "Updating haskell-language-server from old version $hls_old_version to new version $hls_new_version." 43 - echo "Running cabal2nix and outputting to ${hls_derivation_file}..." 44 - cabal2nix --revision "$hls_new_version" "https://github.com/haskell/haskell-language-server.git" > "$hls_derivation_file" 45 - cabal2nix --revision "$hls_new_version" --subpath plugins/tactics "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-tactics-plugin.nix" 46 - for plugin in "hls-hlint-plugin" "hls-explicit-imports-plugin" "hls-retrie-plugin" "hls-class-plugin" "hls-eval-plugin"; do 47 - cabal2nix --revision "$hls_new_version" --subpath plugins/$plugin "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/$plugin.nix" 48 - done 49 - 50 - echo "Finished."
+57
pkgs/servers/etebase/default.nix
··· 1 + { lib, stdenv, python3, fetchFromGitHub }: 2 + 3 + let 4 + py = python3.override { 5 + packageOverrides = self: super: { 6 + django = super.django_3; 7 + }; 8 + }; 9 + in 10 + with py.pkgs; 11 + 12 + buildPythonPackage rec { 13 + pname = "etebase-server"; 14 + version = "0.7.0"; 15 + format = "pyproject"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "etesync"; 19 + repo = "server"; 20 + rev = "v${version}"; 21 + sha256 = "1r2a7ki9w2h3l6rwqa3fzxjlqfj2lbgfrm8lynjhvcdv02s5abbi"; 22 + }; 23 + 24 + patches = [ ./secret.patch ]; 25 + 26 + propagatedBuildInputs = with pythonPackages; [ 27 + asgiref 28 + cffi 29 + django 30 + django-cors-headers 31 + djangorestframework 32 + drf-nested-routers 33 + msgpack 34 + psycopg2 35 + pycparser 36 + pynacl 37 + pytz 38 + six 39 + sqlparse 40 + ]; 41 + 42 + installPhase = '' 43 + mkdir -p $out/bin $out/lib 44 + cp -r . $out/lib/etebase-server 45 + ln -s $out/lib/etebase-server/manage.py $out/bin/etebase-server 46 + wrapProgram $out/bin/etebase-server --prefix PYTHONPATH : "$PYTHONPATH" 47 + chmod +x $out/bin/etebase-server 48 + ''; 49 + 50 + meta = with lib; { 51 + homepage = "https://github.com/etesync/server"; 52 + description = "An Etebase (EteSync 2.0) server so you can run your own."; 53 + license = licenses.agpl3Only; 54 + maintainers = with maintainers; [ felschr ]; 55 + broken = stdenv.isDarwin; 56 + }; 57 + }
+26
pkgs/servers/etebase/secret.patch
··· 1 + diff --git a/etebase_server/settings.py b/etebase_server/settings.py 2 + index 9baf8d3..501d9f6 100644 3 + --- a/etebase_server/settings.py 4 + +++ b/etebase_server/settings.py 5 + @@ -23,11 +22,6 @@ 6 + # Quick-start development settings - unsuitable for production 7 + # See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ 8 + 9 + -# SECURITY WARNING: keep the secret key used in production secret! 10 + -# See secret.py for how this is generated; uses a file 'secret.txt' in the root 11 + -# directory 12 + -SECRET_FILE = os.path.join(BASE_DIR, "secret.txt") 13 + - 14 + # SECURITY WARNING: don't run with debug turned on in production! 15 + DEBUG = True 16 + 17 + @@ -143,7 +137,7 @@ 18 + 19 + section = config["global"] 20 + 21 + - SECRET_FILE = section.get("secret_file", SECRET_FILE) 22 + + SECRET_FILE = section.get("secret_file", None) 23 + STATIC_ROOT = section.get("static_root", STATIC_ROOT) 24 + STATIC_URL = section.get("static_url", STATIC_URL) 25 + MEDIA_ROOT = section.get("media_root", MEDIA_ROOT) 26 +
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 744 744 "slack" = ps: with ps; [ ]; # missing inputs: slackclient 745 745 "sleepiq" = ps: with ps; [ ]; # missing inputs: sleepyq 746 746 "slide" = ps: with ps; [ ]; # missing inputs: goslide-api 747 - "sma" = ps: with ps; [ ]; # missing inputs: pysma 747 + "sma" = ps: with ps; [ pysma ]; 748 748 "smappee" = ps: with ps; [ aiohttp-cors ]; # missing inputs: pysmappee 749 749 "smart_meter_texas" = ps: with ps; [ ]; # missing inputs: smart-meter-texas 750 750 "smarthab" = ps: with ps; [ ]; # missing inputs: smarthab
+3 -3
pkgs/tools/admin/procs/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "procs"; 5 - version = "0.11.1"; 5 + version = "0.11.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dalance"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-e9fdqsv/P3zZdjsdAkwO21txPS1aWd0DuqRQUdr1vX4="; 11 + sha256 = "sha256-OaHsNxrOrPlAwtFDY3Tnx+nOabax98xcGQeNds32iOA="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-ilSDLbPQnmhQcNbtKCpUNmyZY0JUY/Ksg0sj/t7veT0="; 14 + cargoSha256 = "sha256-miOfm1Sw6tIICkT9T2V82cdGG2STo9vuLPWsAN/8wuM="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/tools/graphics/pngcheck/default.nix
··· 1 1 { lib, stdenv, fetchurl, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "pngcheck-2.3.0"; 4 + name = "pngcheck-3.0.2"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://sourceforge/png-mng/${name}.tar.gz"; 8 - sha256 = "0pzkj1bb4kdybk6vbfq9s0wzdm5szmrgixkas3xmbpv4mhws1w3p"; 8 + sha256 = "sha256-DX4mLyQRb93yhHqM61yS2fXybvtC6f/2PsK7dnYTHKc="; 9 9 }; 10 10 11 11 hardeningDisable = [ "format" ];
+5 -7
pkgs/tools/misc/duf/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "duf"; 5 - version = "0.5.0"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "muesli"; 9 9 repo = "duf"; 10 10 rev = "v${version}"; 11 - sha256 = "0n0nvrqrlr75dmf2j6ja615ighzs35cfixn7z9cwdz3vhj1xhc5f"; 11 + sha256 = "sha256-Wm3gfir6blQFLLi+2bT5Y/5tf7qUxEddJQ7tCYfBGgM="; 12 12 }; 13 13 14 - dontStrip = true; 15 - 16 - vendorSha256 = "1jqilfsirj7bkhzywimzf98w2b4s777phb06nsw6lr3bi6nnwzr1"; 14 + vendorSha256 = "0icxy6wbqjqawr6i5skwp1z37fq303p8f95crd8lwn6pjjiqzk4i"; 17 15 18 - buildFlagsArray = [ "-ldflags=" "-X=main.Version=${version}" ]; 16 + buildFlagsArray = [ "-ldflags=" "-s -w -X=main.Version=${version}" ]; 19 17 20 18 meta = with lib; { 21 19 homepage = "https://github.com/muesli/duf/"; 22 20 description = "Disk Usage/Free Utility"; 23 21 license = licenses.mit; 24 22 platforms = platforms.unix; 25 - maintainers = with maintainers; [ petabyteboy penguwin ]; 23 + maintainers = with maintainers; [ petabyteboy penguwin SuperSandro2000 ]; 26 24 }; 27 25 }
+2 -2
pkgs/tools/misc/pcb2gcode/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "pcb2gcode"; 16 - version = "2.1.0"; 16 + version = "2.2.2"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "pcb2gcode"; 20 20 repo = "pcb2gcode"; 21 21 rev = "v${version}"; 22 - sha256 = "0nzglcyh6ban27cc73j4l7w7r9k38qivq0jz8iwnci02pfalw4ry"; 22 + sha256 = "sha256-GSLWpLp/InAxVolKmBIjljpe3ZzmS/87TWKwzax5SkY="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ autoreconfHook pkg-config ];
+5 -6
pkgs/top-level/all-packages.nix
··· 21823 21823 21824 21824 eteroj.lv2 = libsForQt5.callPackage ../applications/audio/eteroj.lv2 { }; 21825 21825 21826 + etebase-server = with python3Packages; toPythonApplication etebase-server; 21827 + 21826 21828 etesync-dav = callPackage ../applications/misc/etesync-dav {}; 21827 21829 21828 21830 etherape = callPackage ../applications/networking/sniffers/etherape { }; ··· 23179 23181 23180 23182 lame = callPackage ../development/libraries/lame { }; 23181 23183 23184 + labwc = callPackage ../applications/window-managers/labwc { }; 23185 + 23182 23186 larswm = callPackage ../applications/window-managers/larswm { }; 23183 23187 23184 23188 lash = callPackage ../applications/audio/lash { }; ··· 23239 23243 }; 23240 23244 23241 23245 libreoffice-qt = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 23242 - libreoffice = libsForQt514.callPackage ../applications/office/libreoffice 23246 + libreoffice = libsForQt5.callPackage ../applications/office/libreoffice 23243 23247 (libreoffice-args // { 23244 23248 kdeIntegration = true; 23245 23249 variant = "fresh"; 23246 - jdk = jdk11; 23247 23250 }); 23248 23251 }); 23249 23252 ··· 23251 23254 libreoffice = callPackage ../applications/office/libreoffice 23252 23255 (libreoffice-args // { 23253 23256 variant = "fresh"; 23254 - jdk = jdk11; 23255 23257 }); 23256 23258 }); 23257 23259 libreoffice-fresh-unwrapped = libreoffice-fresh.libreoffice; ··· 23259 23261 libreoffice-still = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 23260 23262 libreoffice = callPackage ../applications/office/libreoffice 23261 23263 (libreoffice-args // { 23262 - stdenv = gcc9Stdenv; # Fails in multiple ways with gcc10 23263 - icu = icu64; 23264 23264 variant = "still"; 23265 - jdk = jdk8; 23266 23265 }); 23267 23266 }); 23268 23267 libreoffice-still-unwrapped = libreoffice-still.libreoffice;
+6
pkgs/top-level/python-packages.nix
··· 1960 1960 1961 1961 dpkt = callPackage ../development/python-modules/dpkt { }; 1962 1962 1963 + drf-nested-routers = callPackage ../development/python-modules/drf-nested-routers { }; 1964 + 1963 1965 drf-yasg = callPackage ../development/python-modules/drf-yasg { }; 1964 1966 1965 1967 drms = callPackage ../development/python-modules/drms { }; ··· 2086 2088 etebase = callPackage ../development/python-modules/etebase { 2087 2089 inherit (pkgs.darwin.apple_sdk.frameworks) Security; 2088 2090 }; 2091 + 2092 + etebase-server = callPackage ../servers/etebase { }; 2089 2093 2090 2094 etesync = callPackage ../development/python-modules/etesync { }; 2091 2095 ··· 5929 5933 pysingleton = callPackage ../development/python-modules/pysingleton { }; 5930 5934 5931 5935 pyslurm = callPackage ../development/python-modules/pyslurm { slurm = pkgs.slurm; }; 5936 + 5937 + pysma = callPackage ../development/python-modules/pysma { }; 5932 5938 5933 5939 pysmb = callPackage ../development/python-modules/pysmb { }; 5934 5940