lol

Merge branch 'staging-next' into staging

Conflicts:
pkgs/applications/networking/browsers/firefox/common.nix between f6c57619358d51e71a5298503c84e1c1ce4f9f12 and a373324120a271fdbff202b61895e06aecf98923.

+2988 -1614
+6
maintainers/maintainer-list.nix
··· 1544 1544 githubId = 410028; 1545 1545 name = "Tobias Bergkvist"; 1546 1546 }; 1547 + berryp = { 1548 + email = "berryphillips@gmail.com"; 1549 + github = "berryp"; 1550 + githubId = 19911; 1551 + name = "Berry Phillips"; 1552 + }; 1547 1553 betaboon = { 1548 1554 email = "betaboon@0x80.ninja"; 1549 1555 github = "betaboon";
-1
nixos/modules/hardware/all-firmware.nix
··· 83 83 broadcom-bt-firmware 84 84 b43Firmware_5_1_138 85 85 b43Firmware_6_30_163_46 86 - b43FirmwareCutter 87 86 xow_dongle-firmware 88 87 ] ++ optionals pkgs.stdenv.hostPlatform.isx86 [ 89 88 facetimehd-calibration
+6 -1
nixos/modules/services/hardware/udev.nix
··· 171 171 mv etc/udev/hwdb.bin $out 172 172 ''; 173 173 174 + compressFirmware = if config.boot.kernelPackages.kernelAtLeast "5.3" then 175 + pkgs.compressFirmwareXz 176 + else 177 + id; 178 + 174 179 # Udev has a 512-character limit for ENV{PATH}, so create a symlink 175 180 # tree to work around this. 176 181 udevPath = pkgs.buildEnv { ··· 267 272 ''; 268 273 apply = list: pkgs.buildEnv { 269 274 name = "firmware"; 270 - paths = list; 275 + paths = map compressFirmware list; 271 276 pathsToLink = [ "/lib/firmware" ]; 272 277 ignoreCollisions = true; 273 278 };
-3
nixos/modules/system/boot/kernel.nix
··· 273 273 274 274 boot.kernelModules = [ "loop" "atkbd" ]; 275 275 276 - # The Linux kernel >= 2.6.27 provides firmware. 277 - hardware.firmware = [ kernel ]; 278 - 279 276 # Create /etc/modules-load.d/nixos.conf, which is read by 280 277 # systemd-modules-load.service to load required kernel modules. 281 278 environment.etc =
+8 -6
nixos/tests/chromium.nix
··· 45 45 46 46 enableOCR = true; 47 47 48 - machine.imports = [ ./common/user-account.nix ./common/x11.nix ]; 49 - machine.virtualisation.memorySize = 2047; 50 - machine.test-support.displayManager.auto.user = user; 51 - machine.environment = { 52 - systemPackages = [ chromiumPkg ]; 53 - variables."XAUTHORITY" = "/home/alice/.Xauthority"; 48 + nodes.machine = { ... }: { 49 + imports = [ ./common/user-account.nix ./common/x11.nix ]; 50 + virtualisation.memorySize = 2047; 51 + test-support.displayManager.auto.user = user; 52 + environment = { 53 + systemPackages = [ chromiumPkg ]; 54 + variables."XAUTHORITY" = "/home/alice/.Xauthority"; 55 + }; 54 56 }; 55 57 56 58 testScript = let
+3 -3
pkgs/applications/accessibility/squeekboard/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "squeekboard"; 23 - version = "1.16.0"; 23 + version = "1.17.0"; 24 24 25 25 src = fetchFromGitLab { 26 26 domain = "gitlab.gnome.org"; ··· 28 28 owner = "Phosh"; 29 29 repo = pname; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-51Grkn6NSR6azTRuq1vdbDg7d3HuQQ+ZJCsM2mSrSHk="; 31 + sha256 = "sha256-U46OQ0bXkXv6za8vUZxtbxJKqiF/X/xxJsqQGpnRIpg="; 32 32 }; 33 33 34 34 cargoDeps = rustPlatform.fetchCargoTarball { ··· 37 37 cat Cargo.toml.in Cargo.deps > Cargo.toml 38 38 ''; 39 39 name = "${pname}-${version}"; 40 - sha256 = "sha256-vQaiEENxaQxBGYP1br03wSkU7OGOYkJvMBUAOeb3jGk="; 40 + sha256 = "sha256-4q8MW1n/xu538+R5ZlA+p/hd6pOQPKj7jOFwnuMc7sk="; 41 41 }; 42 42 43 43 nativeBuildInputs = [
-101
pkgs/applications/audio/axoloti/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, makeWrapper, unzip 2 - , gnumake, gcc-arm-embedded, binutils-arm-embedded 3 - , dfu-util-axoloti, jdk, ant, libfaketime }: 4 - 5 - stdenv.mkDerivation rec { 6 - version = "1.0.12-2"; 7 - pname = "axoloti"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "axoloti"; 11 - repo = "axoloti"; 12 - rev = version; 13 - sha256 = "1qffis277wshldr3i939b0r2x3a2mlr53samxqmr2nk1sfm2b4w9"; 14 - }; 15 - 16 - chibi_version = "2.6.9"; 17 - chibi_name = "ChibiOS_${chibi_version}"; 18 - 19 - chibios = fetchurl { 20 - url = "mirror://sourceforge/project/chibios/ChibiOS_RT%20stable/Version%20${chibi_version}/${chibi_name}.zip"; 21 - sha256 = "0lb5s8pkj80mqhsy47mmq0lqk34s2a2m3xagzihalvabwd0frhlj"; 22 - }; 23 - 24 - nativeBuildInputs = [ 25 - makeWrapper 26 - unzip 27 - gcc-arm-embedded 28 - binutils-arm-embedded 29 - dfu-util-axoloti 30 - ant 31 - ]; 32 - buildInputs = [jdk libfaketime ]; 33 - 34 - patchPhase = '' 35 - unzip ${chibios} 36 - mv ${chibi_name} chibios 37 - (cd chibios/ext; unzip -q -o fatfs-0.9-patched.zip) 38 - 39 - # Remove source of non-determinism in ChibiOS 40 - substituteInPlace "chibios/os/various/shell.c" \ 41 - --replace "#ifdef __DATE__" "#if 0" 42 - 43 - # Hardcode path to "make" 44 - for f in "firmware/compile_firmware_linux.sh" \ 45 - "firmware/compile_patch_linux.sh"; do 46 - substituteInPlace "$f" \ 47 - --replace "make" "${gnumake}/bin/make" 48 - done 49 - 50 - # Hardcode dfu-util path 51 - substituteInPlace "platform_linux/upload_fw_dfu.sh" \ 52 - --replace "/bin/dfu-util" "" 53 - substituteInPlace "platform_linux/upload_fw_dfu.sh" \ 54 - --replace "./dfu-util" "${dfu-util-axoloti}/bin/dfu-util" 55 - 56 - # Fix build version 57 - substituteInPlace "build.xml" \ 58 - --replace "(git missing)" "${version}" 59 - 60 - # Remove build time 61 - substituteInPlace "build.xml" \ 62 - --replace "<tstamp>" "" 63 - substituteInPlace "build.xml" \ 64 - --replace \ 65 - '<format property="build.time" pattern="dd/MM/yyyy HH:mm:ss z"/>' \ 66 - '<property name="build.time" value=""/>' 67 - substituteInPlace "build.xml" \ 68 - --replace "</tstamp>" "" 69 - substituteInPlace "build.xml" \ 70 - --replace \ 71 - '{line.separator}</echo>' \ 72 - '{line.separator}</echo> <touch file="src/main/java/axoloti/Version.java" millis="0" />' 73 - ''; 74 - 75 - buildPhase = '' 76 - find . -exec touch -d '1970-01-01 00:00' {} \; 77 - (cd platform_linux; sh compile_firmware.sh) 78 - faketime "1970-01-01 00:00:00" ant -Dbuild.runtime=true 79 - ''; 80 - 81 - installPhase = '' 82 - mkdir -p $out/bin $out/share/axoloti 83 - 84 - cp -r doc firmware chibios platform_linux CMSIS *.txt $out/share/axoloti/ 85 - install -vD dist/Axoloti.jar $out/share/axoloti/ 86 - 87 - makeWrapper ${jdk}/bin/java $out/bin/axoloti --add-flags "-Daxoloti_release=$out/share/axoloti -Daxoloti_runtime=$out/share/axoloti -jar $out/share/axoloti/Axoloti.jar" 88 - ''; 89 - 90 - meta = with lib; { 91 - homepage = "http://www.axoloti.com"; 92 - description = '' 93 - Sketching embedded digital audio algorithms. 94 - 95 - To fix permissions of the Axoloti USB device node, add a similar udev rule to <literal>services.udev.extraRules</literal>: 96 - <literal>SUBSYSTEM=="usb", ATTR{idVendor}=="16c0", ATTR{idProduct}=="0442", OWNER="someuser", GROUP="somegroup"</literal> 97 - ''; 98 - license = licenses.gpl3; 99 - maintainers = with maintainers; [ ]; 100 - }; 101 - }
-31
pkgs/applications/audio/axoloti/dfu-util.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libusb1-axoloti }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "dfu-util"; 5 - version = "0.8"; 6 - 7 - nativeBuildInputs = [ pkg-config ]; 8 - buildInputs = [ libusb1-axoloti ]; 9 - 10 - src = fetchurl { 11 - url = "http://dfu-util.sourceforge.net/releases/${pname}-${version}.tar.gz"; 12 - sha256 = "0n7h08avlzin04j93m6hkq9id6hxjiiix7ff9gc2n89aw6dxxjsm"; 13 - }; 14 - 15 - meta = with lib; { 16 - description = "Device firmware update (DFU) USB programmer"; 17 - longDescription = '' 18 - dfu-util is a program that implements the host (PC) side of the USB 19 - DFU 1.0 and 1.1 (Universal Serial Bus Device Firmware Upgrade) protocol. 20 - 21 - DFU is intended to download and upload firmware to devices connected over 22 - USB. It ranges from small devices like micro-controller boards up to mobile 23 - phones. With dfu-util you are able to download firmware to your device or 24 - upload firmware from it. 25 - ''; 26 - homepage = "http://dfu-util.sourceforge.net"; 27 - license = licenses.gpl2Plus; 28 - platforms = platforms.unix; 29 - maintainers = [ ]; 30 - }; 31 - }
-39
pkgs/applications/audio/axoloti/libusb1.nix
··· 1 - { stdenv, lib, fetchurl, pkg-config, systemd, libobjc, IOKit, fetchpatch }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libusb"; 5 - version = "1.0.19"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/libusb/libusb-${version}.tar.bz2"; 9 - sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c"; 10 - }; 11 - 12 - outputs = [ "out" "dev" ]; # get rid of propagating systemd closure 13 - 14 - buildInputs = [ pkg-config ]; 15 - propagatedBuildInputs = lib.optional stdenv.isLinux systemd 16 - ++ lib.optionals stdenv.isDarwin [ libobjc IOKit ]; 17 - 18 - patches = [ 19 - (fetchpatch { 20 - name = "libusb.stdfu.patch"; 21 - url = "https://raw.githubusercontent.com/axoloti/axoloti/1.0.12/platform_linux/src/libusb.stdfu.patch"; 22 - sha256 = "194j7j61i4q6x0ihm9ms8dxd4vliw20n2rj6cm9h17qzdl9xr33d"; 23 - }) 24 - ]; 25 - 26 - NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lgcc_s"; 27 - 28 - preFixup = lib.optionalString stdenv.isLinux '' 29 - sed 's,-ludev,-L${lib.getLib systemd}/lib -ludev,' -i $out/lib/libusb-1.0.la 30 - ''; 31 - 32 - meta = with lib; { 33 - homepage = "http://www.libusb.info"; 34 - description = "User-space USB library"; 35 - maintainers = with maintainers; [ ]; 36 - platforms = platforms.unix; 37 - license = licenses.lgpl21; 38 - }; 39 - }
+9 -5
pkgs/applications/audio/sptlrx/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, testers, sptlrx }: 1 + { lib, buildGoModule, fetchFromGitHub, nix-update-script, testers, sptlrx }: 2 2 3 3 buildGoModule rec { 4 4 pname = "sptlrx"; ··· 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17 18 - passthru.tests.version = testers.testVersion { 19 - package = sptlrx; 20 - # TODO Wrong version in `0.2.0`. Has been fixed upstream. 21 - version = "v0.1.0"; 18 + passthru = { 19 + updateScript = nix-update-script { attrPath = pname; }; 20 + tests.version = testers.testVersion { 21 + package = sptlrx; 22 + # TODO Wrong version in `0.2.0`. Has been fixed upstream. 23 + version = "v0.1.0"; 24 + }; 22 25 }; 23 26 24 27 meta = with lib; { 25 28 description = "Spotify lyrics in your terminal"; 26 29 homepage = "https://github.com/raitonoberu/sptlrx"; 30 + changelog = "https://github.com/raitonoberu/sptlrx/releases/tag/v${version}"; 27 31 license = licenses.mit; 28 32 maintainers = with maintainers; [ MoritzBoehme ]; 29 33 };
+5 -5
pkgs/applications/blockchains/btcdeb/default.nix
··· 7 7 8 8 with lib; 9 9 stdenv.mkDerivation rec { 10 - pname = "btcdeb-unstable"; 11 - version = "200806"; 10 + pname = "btcdeb"; 11 + version = "unstable-2022-04-03"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bitcoin-core"; 15 15 repo = "btcdeb"; 16 - rev = "f6708c397c64894c9f9e31bea2d22285d9462de7"; 17 - sha256 = "0qkmf89z2n7s95vhw3n9vh9dbi14zy4vqw3ffdh1w911jwm5ry3z"; 16 + rev = "3ba1ec7f4d37f7d2ff0544403465004c6e12036e"; 17 + hash = "sha256-l/PGXXX288mnoSFZ32t2Xd13dC6JCU5wDHoDxb+fcp0="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config autoreconfHook ]; ··· 22 22 23 23 meta = { 24 24 description = "Bitcoin Script Debugger"; 25 - homepage = "https://github.com/kallewoof/btcdeb"; 25 + homepage = "https://github.com/bitcoin-core/btcdeb"; 26 26 license = licenses.mit; 27 27 maintainers = with maintainers; [ akru ]; 28 28 platforms = platforms.unix;
+15 -15
pkgs/applications/blockchains/zcash/default.nix
··· 1 1 { rust, rustPlatform, stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook 2 - , makeWrapper, cargo, pkg-config, curl, coreutils, boost178, db62, hexdump 3 - , libsodium, libevent, utf8cpp, util-linux, withDaemon ? true, withMining ? true 4 - , withUtils ? true, withWallet ? true, withZmq ? true, zeromq 2 + , makeWrapper, cargo, pkg-config, curl, coreutils, boost179, db62, hexdump 3 + , libsodium, libevent, testers, utf8cpp, util-linux, withDaemon ? true 4 + , withMining ? true, withUtils ? true, withWallet ? true, withZmq ? true, zcash 5 + , zeromq 5 6 }: 6 7 7 8 rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec { 8 9 pname = "zcash"; 9 - version = "4.7.0"; 10 + version = "5.0.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "zcash"; 13 14 repo = "zcash"; 14 15 rev = "v${version}"; 15 - sha256 = "sha256-yF+/QepSiZwsdZydWjvxDIFeFyJbJyqZmCdMyQHmrzI="; 16 + sha256 = "sha256-5PlqFs2njqNeZgmNz0VKMWcRY5lPaF9oTsoh/uLEWi8="; 16 17 }; 17 18 18 19 prePatch = lib.optionalString stdenv.isAarch64 '' ··· 21 22 --replace "linker = \"aarch64-linux-gnu-gcc\"" "" 22 23 ''; 23 24 24 - cargoPatches = [ 25 - (fetchpatch { 26 - url = "https://github.com/zcash/zcash/commit/61cd19a52d41d60c1987ecf269f7aa8e4d527310.diff"; 27 - sha256 = "sha256-/7T2yCSVlRN7qfFjrZlfBNMlbVHb/KRjtUBY2xFr0mo="; 28 - }) 29 - ]; 30 - 31 - cargoSha256 = "sha256-+BLfO5OnCBqQTIqMXKJdoPCRgtENa+m0WOHKG9gkdMk="; 25 + cargoSha256 = "sha256-eRRRjUbOieRC88wf+f1jAYvqGFmogBEla67NnImicEc="; 32 26 33 27 nativeBuildInputs = [ autoreconfHook cargo hexdump makeWrapper pkg-config ]; 34 - buildInputs = [ boost178 libevent libsodium utf8cpp ] 28 + buildInputs = [ boost179 libevent libsodium utf8cpp ] 35 29 ++ lib.optional withWallet db62 36 30 ++ lib.optional withZmq zeromq; 37 31 ··· 50 44 51 45 configureFlags = [ 52 46 "--disable-tests" 53 - "--with-boost-libdir=${lib.getLib boost178}/lib" 47 + "--with-boost-libdir=${lib.getLib boost179}/lib" 54 48 "CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp" 55 49 "RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}" 56 50 ] ++ lib.optional (!withWallet) "--disable-wallet" ··· 62 56 63 57 # Requires hundreds of megabytes of zkSNARK parameters. 64 58 doCheck = false; 59 + 60 + passthru.tests.version = testers.testVersion { 61 + package = zcash; 62 + command = "zcashd --version"; 63 + version = "v${zcash.version}"; 64 + }; 65 65 66 66 postInstall = '' 67 67 wrapProgram $out/bin/zcash-fetch-params \
+3 -3
pkgs/applications/editors/emacs/elisp-packages/ement/default.nix
··· 13 13 14 14 trivialBuild { 15 15 pname = "ement"; 16 - version = "unstable-2022-05-05"; 16 + version = "unstable-2022-05-14"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "alphapapa"; 20 20 repo = "ement.el"; 21 - rev = "84739451afa8355360966dfa788d469d9dc4a8e3"; 22 - sha256 = "sha256-XdegBKZfoKbFaMM/l8249VD9KKC5/4gQIK6ggPcoOaE="; 21 + rev = "961d650377f9e7440e47c36c0386e899f5b2d86b"; 22 + sha256 = "sha256-4KTSPgso7UvzCRKNFI3YaPR1t4DUwggO4KtBYLm0W4Y="; 23 23 }; 24 24 25 25 packageRequires = [
+7 -7
pkgs/applications/editors/emacs/elisp-packages/ement/handle-nil-images.patch
··· 1 - diff --git a/ement.el b/ement.el 2 - index c9596a7..1b33045 100644 3 - --- a/ement.el 4 - +++ b/ement.el 5 - @@ -682,14 +682,15 @@ can cause undesirable underlining." 1 + diff --git a/ement-lib.el b/ement-lib.el 2 + index f0b2738..025a191 100644 3 + --- a/ement-lib.el 4 + +++ b/ement-lib.el 5 + @@ -644,14 +644,15 @@ can cause undesirable underlining." 6 6 "Return a copy of IMAGE set to MAX-WIDTH and MAX-HEIGHT. 7 7 IMAGE should be one as created by, e.g. `create-image'." 8 8 ;; It would be nice if the image library had some simple functions to do this sort of thing. ··· 24 24 + (image-property new-image :max-height) max-height) 25 25 + new-image))) 26 26 27 - ;;;;; Reading/writing sessions 28 - 27 + (defun ement--room-alias (room) 28 + "Return latest m.room.canonical_alias event in ROOM."
+3 -3
pkgs/applications/editors/lapce/default.nix
··· 28 28 29 29 rustPlatform.buildRustPackage rec { 30 30 pname = "lapce"; 31 - version = "0.0.12"; 31 + version = "0.1.0"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "lapce"; 35 35 repo = pname; 36 36 rev = "v${version}"; 37 - sha256 = "sha256-ZFQjQ5+G0b0Fgg3+du/drt+62rC/TCNR5MIdJXAkTrE="; 37 + sha256 = "sha256-KSumy7M7VNUib4CZ0ikBboEFMzDQt4xW+aUFHOi+0pA="; 38 38 }; 39 39 40 - cargoSha256 = "sha256-sMTootPsenaWzLLFImo6HWC1pcm2uFupPhVWsUJp1Ak="; 40 + cargoSha256 = "sha256-7SVTcH9/Ilq8HcpJJI0KFiQA076lR2CAIBwmTVgmnjE="; 41 41 42 42 nativeBuildInputs = [ 43 43 cmake
+6 -7
pkgs/applications/editors/vim/plugins/build-vim-plugin.nix
··· 3 3 , vim 4 4 , vimCommandCheckHook 5 5 , vimGenDocHook 6 + , neovimRequireCheckHook 6 7 }: 7 8 8 9 rec { 9 - addRtp = path: attrs: derivation: 10 - derivation // { rtp = "${derivation}"; } // { 11 - overrideAttrs = f: buildVimPlugin (attrs // f attrs); 12 - }; 13 - 14 10 buildVimPlugin = attrs@{ 15 11 name ? "${attrs.pname}-${attrs.version}", 16 12 namePrefix ? "vimplugin-", ··· 24 20 addonInfo ? null, 25 21 ... 26 22 }: 27 - addRtp "${rtpPath}/${path}" attrs (stdenv.mkDerivation (attrs // { 23 + let drv = stdenv.mkDerivation (attrs // { 28 24 name = namePrefix + name; 29 25 30 26 # dont move the doc folder since vim expects it ··· 44 40 45 41 runHook postInstall 46 42 ''; 47 - })); 43 + }); 44 + in drv.overrideAttrs(oa: { 45 + rtp = "${drv}"; 46 + }); 48 47 49 48 buildVimPluginFrom2Nix = attrs: buildVimPlugin ({ 50 49 # vim plugins may override this
+437 -425
pkgs/applications/editors/vim/plugins/generated.nix
··· 53 53 54 54 Coqtail = buildVimPluginFrom2Nix { 55 55 pname = "Coqtail"; 56 - version = "2022-04-21"; 56 + version = "2022-05-10"; 57 57 src = fetchFromGitHub { 58 58 owner = "whonore"; 59 59 repo = "Coqtail"; 60 - rev = "0b8f2408f96481a373f336b4405af03008e39a4e"; 61 - sha256 = "1v36ndpx8jaipav30ailxpadvzk5qxmgphd1p0hck50mdngpynki"; 60 + rev = "ba1659dc1e3e38cd59d5bef19a51bdcf704abce5"; 61 + sha256 = "1zqj4j3y970kpr29kp2lx6ggd49d03dv6hxffg58v8kc1v3ibf14"; 62 62 }; 63 63 meta.homepage = "https://github.com/whonore/Coqtail/"; 64 64 }; ··· 149 149 150 150 LeaderF = buildVimPluginFrom2Nix { 151 151 pname = "LeaderF"; 152 - version = "2022-04-26"; 152 + version = "2022-05-11"; 153 153 src = fetchFromGitHub { 154 154 owner = "Yggdroot"; 155 155 repo = "LeaderF"; 156 - rev = "2817a561495f19a37369c72a1685e3e1e4c3c09d"; 157 - sha256 = "1xxsm1b2v5wdy4psjcggm4ssgdq2j8q9ds98j1ky8l7carj0qfwn"; 156 + rev = "f1da1ca2a4a71e79f4a625f62d8973de5cd2fab9"; 157 + sha256 = "1jny8r8fs0z1gdcb75r3in7jp9gl9mwc4wvjslb8qp8yh1ja0ddv"; 158 158 }; 159 159 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 160 160 }; ··· 269 269 270 270 SchemaStore-nvim = buildVimPluginFrom2Nix { 271 271 pname = "SchemaStore.nvim"; 272 - version = "2022-05-02"; 272 + version = "2022-05-13"; 273 273 src = fetchFromGitHub { 274 274 owner = "b0o"; 275 275 repo = "SchemaStore.nvim"; 276 - rev = "24e03a0e7c100336efdef5035eb6e59ac3f7ed4a"; 277 - sha256 = "0hjysfszcaw2i2awkv0sbhnj0x5jcl7s6jmb279m7gcf7giwvghk"; 276 + rev = "dc964c3caecd8f8fc477fc308187d47147b33d81"; 277 + sha256 = "1z8g04d7hd4qxag2b9rqyzvxvg8xya98zsxyd2rll51n2hw22bk1"; 278 278 }; 279 279 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 280 280 }; ··· 329 329 330 330 SpaceVim = buildVimPluginFrom2Nix { 331 331 pname = "SpaceVim"; 332 - version = "2022-05-02"; 332 + version = "2022-05-11"; 333 333 src = fetchFromGitHub { 334 334 owner = "SpaceVim"; 335 335 repo = "SpaceVim"; 336 - rev = "97b010245f42bda351fd050a3c6ccf7806b9b007"; 337 - sha256 = "1plfcrigk1s2l8ig0y6vf7awidbdj3p985pzjl19nrv93g49d71f"; 336 + rev = "48c57041f9b7ceeff3e3d476f4ddf2cfc8a9f321"; 337 + sha256 = "0qfh948fykmbhvhlqs5zq1qglfl09wrnnrzssqfi8j8h64yqajnh"; 338 338 }; 339 339 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 340 340 }; ··· 486 486 487 487 aerial-nvim = buildVimPluginFrom2Nix { 488 488 pname = "aerial.nvim"; 489 - version = "2022-05-02"; 489 + version = "2022-05-13"; 490 490 src = fetchFromGitHub { 491 491 owner = "stevearc"; 492 492 repo = "aerial.nvim"; 493 - rev = "8d2ef96e44768250a652826c6586005f40eeac7f"; 494 - sha256 = "0lgn1p381bxr69j1bb2hfj1y51x941p9yjqfg8nd84ka1qy4hjyx"; 493 + rev = "19e739139283c8ac5e2c147f870d2a038496688e"; 494 + sha256 = "16h1kkyczqifw0d4lwfaq3smx5scsap1d2pv00kcmwvs56ws5sx9"; 495 495 }; 496 496 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 497 497 }; ··· 522 522 523 523 ale = buildVimPluginFrom2Nix { 524 524 pname = "ale"; 525 - version = "2022-05-02"; 525 + version = "2022-05-13"; 526 526 src = fetchFromGitHub { 527 527 owner = "dense-analysis"; 528 528 repo = "ale"; 529 - rev = "56399106fcf9d80d476307576bc307e67f0167e2"; 530 - sha256 = "0mc125zrbipikxdffvcn39cqphz0y2lavsbsh4x4604af74va0dv"; 529 + rev = "044a6c956bfb557ec6c6d37921db6ee11de879f9"; 530 + sha256 = "1sz58bn0h65bkh29047ps8wm9fni0k9q2gmf69w7q5njlynk4ah9"; 531 531 }; 532 532 meta.homepage = "https://github.com/dense-analysis/ale/"; 533 533 }; ··· 678 678 679 679 aurora = buildVimPluginFrom2Nix { 680 680 pname = "aurora"; 681 - version = "2022-02-02"; 681 + version = "2022-05-05"; 682 682 src = fetchFromGitHub { 683 683 owner = "ray-x"; 684 684 repo = "aurora"; 685 - rev = "d11266046077968bbc3d6ac37d81e069618cdedd"; 686 - sha256 = "1hdycb9rc7kpcppwv332hmrnzx5g2jy5r0ckaynahwwbwbjiyjqh"; 685 + rev = "315831585d8de6c7787eb05c5bea56f430c851e1"; 686 + sha256 = "19w3qmk6q1dj4jnwmvmd1af2bjwrfjmfnsrmjim9qmv6w0c2pbav"; 687 687 }; 688 688 meta.homepage = "https://github.com/ray-x/aurora/"; 689 689 }; ··· 714 714 715 715 auto-session = buildVimPluginFrom2Nix { 716 716 pname = "auto-session"; 717 - version = "2022-04-21"; 717 + version = "2022-05-06"; 718 718 src = fetchFromGitHub { 719 719 owner = "rmagatti"; 720 720 repo = "auto-session"; 721 - rev = "4b1c978c6fb73e1e59f988fe85cfa51347a86e8a"; 722 - sha256 = "154s0kfhvmyvcbdmy62v00jlmnfgnkmv4ilwf8hig4qxn1376arw"; 721 + rev = "7c9477614fb95b103c277a98bf3f588e337cd7ac"; 722 + sha256 = "1d502bfkr6qxrqr0jxwngj22cz4bh7v36kakpb9g4qbxdd3h1r30"; 723 723 }; 724 724 meta.homepage = "https://github.com/rmagatti/auto-session/"; 725 725 }; ··· 738 738 739 739 awesome-vim-colorschemes = buildVimPluginFrom2Nix { 740 740 pname = "awesome-vim-colorschemes"; 741 - version = "2022-01-17"; 741 + version = "2022-05-04"; 742 742 src = fetchFromGitHub { 743 743 owner = "rafi"; 744 744 repo = "awesome-vim-colorschemes"; 745 - rev = "9a28614941beec4539f82937d50df1a03bb70e0d"; 746 - sha256 = "0fvb3r8176r030wnf1rvpd4dba8cz5506a3plp5j5h5gxpsyd27y"; 745 + rev = "9f96bbdef5cb19daf58449f0fbb597af6fc4c2eb"; 746 + sha256 = "1yqc0j2aq3aqyn924dn8d2pqxapn1w5wylgr1pc5mf0f7nl6qc94"; 747 747 }; 748 748 meta.homepage = "https://github.com/rafi/awesome-vim-colorschemes/"; 749 749 }; ··· 762 762 763 763 barbar-nvim = buildVimPluginFrom2Nix { 764 764 pname = "barbar.nvim"; 765 - version = "2022-02-22"; 765 + version = "2022-05-10"; 766 766 src = fetchFromGitHub { 767 767 owner = "romgrk"; 768 768 repo = "barbar.nvim"; 769 - rev = "be65945626fb6bf6058cae61d5176d156f923c11"; 770 - sha256 = "165ffjrwhhjdyssj96z4qn3fjys0dxwckpvjyzrpca2b2fag0cx2"; 769 + rev = "9d024d646c3fa0281a5ddcf189e2a620010f43ff"; 770 + sha256 = "05fh6992q7npnar82ijf67nf1c3rj6sxg2wk3ckb22qks2hxq8nd"; 771 771 }; 772 772 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 773 773 }; ··· 870 870 871 871 bufdelete-nvim = buildVimPluginFrom2Nix { 872 872 pname = "bufdelete.nvim"; 873 - version = "2022-04-12"; 873 + version = "2022-05-07"; 874 874 src = fetchFromGitHub { 875 875 owner = "famiu"; 876 876 repo = "bufdelete.nvim"; 877 - rev = "96454aedf95f52393a28cfcfc76482895de014ee"; 878 - sha256 = "0rr87wbqil2k2cia759kisllwcsbq0s3yhcl9h849qgd4gr2926h"; 877 + rev = "93e71aabbc3d534d70bb5d1913778eb42afb96f9"; 878 + sha256 = "0qzf6mmws0f1nmlk8m4pwfsbkkpq5nr024n9l2jvmchax63w1bds"; 879 879 }; 880 880 meta.homepage = "https://github.com/famiu/bufdelete.nvim/"; 881 881 }; 882 882 883 883 bufexplorer = buildVimPluginFrom2Nix { 884 884 pname = "bufexplorer"; 885 - version = "2022-03-21"; 885 + version = "2022-05-03"; 886 886 src = fetchFromGitHub { 887 887 owner = "jlanzarotta"; 888 888 repo = "bufexplorer"; 889 - rev = "a81eb31192e3033eccedb61c842e274252038a04"; 890 - sha256 = "06b0mfmys2ah1hkyfipv0chv138mmdlixc2l0377zhq8409i3k3c"; 889 + rev = "1be66e253730fd186a5a789a67a337420f431a71"; 890 + sha256 = "1k3x04xvsmqbvmmcg7hlv3jnwpv9qgmdvwjz0620xmspfk43m09x"; 891 891 }; 892 892 meta.homepage = "https://github.com/jlanzarotta/bufexplorer/"; 893 893 }; 894 894 895 895 bufferline-nvim = buildVimPluginFrom2Nix { 896 896 pname = "bufferline.nvim"; 897 - version = "2022-05-02"; 897 + version = "2022-05-12"; 898 898 src = fetchFromGitHub { 899 899 owner = "akinsho"; 900 900 repo = "bufferline.nvim"; 901 - rev = "2d5266d14b7b5dbc54923469b4599f0349f7cedc"; 902 - sha256 = "0i8k8paa23v0l011lvydcv45c4jnr8wfiiwyw16hhndfamcwhgfh"; 901 + rev = "29d5789aa407e7105968c43dba566defd3ca96bd"; 902 + sha256 = "0skrqpxszp2z2zv21vh2prxdyizps43qjyyy56rxs25cl6hrzb1j"; 903 903 }; 904 904 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 905 905 }; ··· 1038 1038 1039 1039 cmp-buffer = buildVimPluginFrom2Nix { 1040 1040 pname = "cmp-buffer"; 1041 - version = "2022-02-21"; 1041 + version = "2022-05-09"; 1042 1042 src = fetchFromGitHub { 1043 1043 owner = "hrsh7th"; 1044 1044 repo = "cmp-buffer"; 1045 - rev = "d66c4c2d376e5be99db68d2362cd94d250987525"; 1046 - sha256 = "0n9mqrf4rzj784zhshxr2wqyhm99d9mzalxqnik7srkghjvc9l4a"; 1045 + rev = "12463cfcd9b14052f9effccbf1d84caa7a2d57f0"; 1046 + sha256 = "11fbxw8rrhypazd256qwjvf8gg0laqb9b4h9yqdgvwj810y6n6wg"; 1047 1047 }; 1048 1048 meta.homepage = "https://github.com/hrsh7th/cmp-buffer/"; 1049 1049 }; ··· 1206 1206 1207 1207 cmp-tabnine = buildVimPluginFrom2Nix { 1208 1208 pname = "cmp-tabnine"; 1209 - version = "2022-04-04"; 1209 + version = "2022-05-12"; 1210 1210 src = fetchFromGitHub { 1211 1211 owner = "tzachar"; 1212 1212 repo = "cmp-tabnine"; 1213 - rev = "1c6e5c55f3a879354891c59cf27da733890bfc88"; 1214 - sha256 = "1hmif83kl2h4zz4xqkxb0xc003wzlirr26znx0r1f8z54f1j1hik"; 1213 + rev = "30629b30791b42dcaadc7680cc5cb078a7a3075f"; 1214 + sha256 = "1zs6dmaxx0af62v32c5l7cpywq2sd8fiw8j102mc4pn3s0vdcbgm"; 1215 1215 }; 1216 1216 meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; 1217 1217 }; ··· 1374 1374 1375 1375 coc-nvim = buildVimPluginFrom2Nix { 1376 1376 pname = "coc.nvim"; 1377 - version = "2022-05-01"; 1377 + version = "2022-05-13"; 1378 1378 src = fetchFromGitHub { 1379 1379 owner = "neoclide"; 1380 1380 repo = "coc.nvim"; 1381 - rev = "83a5f083d7ed76899729f25063a5ab9c326e5f02"; 1382 - sha256 = "1pwi1l4h6hdr45z5lnw3mjbpr3jx6iipnaz5bla64cq7cgf98nw6"; 1381 + rev = "a1edaee28938ce266c2543e2552bc6ee1ad29ffa"; 1382 + sha256 = "132jvk2wf53qbn2qgnr0zjh7nw05lr91p2jhykam77gxkmgzazpq"; 1383 1383 }; 1384 1384 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1385 1385 }; ··· 1398 1398 1399 1399 codi-vim = buildVimPluginFrom2Nix { 1400 1400 pname = "codi.vim"; 1401 - version = "2022-04-30"; 1401 + version = "2022-05-11"; 1402 1402 src = fetchFromGitHub { 1403 1403 owner = "metakirby5"; 1404 1404 repo = "codi.vim"; 1405 - rev = "086593fbf5f0891c9fa93cf14453ad14a79d3ed0"; 1406 - sha256 = "0m8hgchb927kgcz65fkmk61w6ma5hvqfr221r7f9jbjzj49laaxd"; 1405 + rev = "4da94d813cfcd83434098a24a277d6be43f5bf50"; 1406 + sha256 = "0rr5i704bqw2w600jvgvxl35sx2gak2bbxz59wk7k7jyxrzbjam6"; 1407 1407 }; 1408 1408 meta.homepage = "https://github.com/metakirby5/codi.vim/"; 1409 1409 }; ··· 1447 1447 1448 1448 comment-nvim = buildVimPluginFrom2Nix { 1449 1449 pname = "comment.nvim"; 1450 - version = "2022-04-27"; 1450 + version = "2022-05-12"; 1451 1451 src = fetchFromGitHub { 1452 1452 owner = "numtostr"; 1453 1453 repo = "comment.nvim"; 1454 - rev = "cb0de89ba80b7cdb37b92e2a9e43b566f8834c7a"; 1455 - sha256 = "17pshx6jq82nfjn2w65i0d3zh53r5b07lc2bh2aqpm5x2c5bhn3h"; 1454 + rev = "40f5587789681b3453e4a27831b7d293e1c3da7b"; 1455 + sha256 = "1lbjqq3h6434gwzc0bmnz64xlkrkjc11nlya6kp4amb6ajj3bg9i"; 1456 1456 }; 1457 1457 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1458 1458 }; ··· 1615 1615 1616 1616 copilot-vim = buildVimPluginFrom2Nix { 1617 1617 pname = "copilot.vim"; 1618 - version = "2022-04-09"; 1618 + version = "2022-05-09"; 1619 1619 src = fetchFromGitHub { 1620 1620 owner = "github"; 1621 1621 repo = "copilot.vim"; 1622 - rev = "573da1aaadd7402c3ab22fb1ae6853db1dc82acb"; 1623 - sha256 = "1j2rva50rl8kn480b613z6a0xnfwkvyi4amg9n4r2l89dxdsni84"; 1622 + rev = "df203c1356b72032df32d7b0b5facb4895139b6e"; 1623 + sha256 = "18v21b314p4firiz0xhqnfl45g5wbcigiqq4ypnhf1lgwd6ngpqd"; 1624 1624 }; 1625 1625 meta.homepage = "https://github.com/github/copilot.vim/"; 1626 1626 }; ··· 1639 1639 1640 1640 coq_nvim = buildVimPluginFrom2Nix { 1641 1641 pname = "coq_nvim"; 1642 - version = "2022-05-02"; 1642 + version = "2022-05-13"; 1643 1643 src = fetchFromGitHub { 1644 1644 owner = "ms-jpq"; 1645 1645 repo = "coq_nvim"; 1646 - rev = "b443ff20dd28d90231dad463bcdbf342e53d13f3"; 1647 - sha256 = "14a3942nphlqfr9s4cwx8fa1n1yj1rqhk65bbp6z7zaw7x8g7jmf"; 1646 + rev = "ca1c0df28b235bdce65ac87c0bed31da8f9e8be4"; 1647 + sha256 = "17g7qd44jx5l8903m2hk8ja4hl4n2x43b0wmzvlpgjmpvgvhskzm"; 1648 1648 }; 1649 1649 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1650 1650 }; ··· 1759 1759 1760 1760 dart-vim-plugin = buildVimPluginFrom2Nix { 1761 1761 pname = "dart-vim-plugin"; 1762 - version = "2022-01-25"; 1762 + version = "2022-05-10"; 1763 1763 src = fetchFromGitHub { 1764 1764 owner = "dart-lang"; 1765 1765 repo = "dart-vim-plugin"; 1766 - rev = "42e6f57f2404b882cb7e491d50e525f8a8eb7f1f"; 1767 - sha256 = "1lla0ldgayryib0868zl10dz6yy9dxa0k86fxl5sr6y0csfpi23z"; 1766 + rev = "ceecea7895e469fc998d383818b2107d97cec06a"; 1767 + sha256 = "1h2glyi5zyskc9ld6gz8p3k84npfg2b1in5rjv3hhwg6d14d6xd8"; 1768 1768 }; 1769 1769 meta.homepage = "https://github.com/dart-lang/dart-vim-plugin/"; 1770 1770 }; 1771 1771 1772 1772 dashboard-nvim = buildVimPluginFrom2Nix { 1773 1773 pname = "dashboard-nvim"; 1774 - version = "2021-04-17"; 1774 + version = "2022-05-09"; 1775 1775 src = fetchFromGitHub { 1776 1776 owner = "glepnir"; 1777 1777 repo = "dashboard-nvim"; 1778 - rev = "ba98ab86487b8eda3b0934b5423759944b5f7ebd"; 1779 - sha256 = "1gyk0n8ks7xyjqab0gb7yx4ypl9k7csfjgmha84hy7mz4h08fkxq"; 1778 + rev = "3b31a80513969752a8c53ff8b16a8e060404cf50"; 1779 + sha256 = "0gcjyywjdsigq7a4jmcg8zgj6na5zagncdgp2a5qs81sa962k798"; 1780 1780 }; 1781 1781 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 1782 1782 }; ··· 1867 1867 1868 1868 deol-nvim = buildVimPluginFrom2Nix { 1869 1869 pname = "deol.nvim"; 1870 - version = "2022-04-29"; 1870 + version = "2022-05-04"; 1871 1871 src = fetchFromGitHub { 1872 1872 owner = "Shougo"; 1873 1873 repo = "deol.nvim"; 1874 - rev = "0bdb926d328765144dd788c062161c565dc38732"; 1875 - sha256 = "0c4dl37npass3n2dx6459dm1bk30fhy5yaphxjg897wz61xn622x"; 1874 + rev = "cb48ec3f1c119d68cf633757a236228e3d887bf1"; 1875 + sha256 = "0ckhcx6z1dqlvsaldy3961p3h4qvxgdqdp4i8xkqy4scjvaanvz0"; 1876 1876 }; 1877 1877 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 1878 1878 }; ··· 2145 2145 2146 2146 diffview-nvim = buildVimPluginFrom2Nix { 2147 2147 pname = "diffview.nvim"; 2148 - version = "2022-04-14"; 2148 + version = "2022-05-09"; 2149 2149 src = fetchFromGitHub { 2150 2150 owner = "sindrets"; 2151 2151 repo = "diffview.nvim"; 2152 - rev = "2d1f45282587d565cc4d84112490bc944c0b491d"; 2153 - sha256 = "0cwp07igj131fp650wk6nh80kygvlf7h0r8p915jsyxfh9y06p7i"; 2152 + rev = "91e99ae14e9e6e360540007e6785146458a138da"; 2153 + sha256 = "1sghkg75y62rcc0jy7ra6rsmx05gxz4nv944i4lywn952vc49nd7"; 2154 2154 }; 2155 2155 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2156 2156 }; ··· 2181 2181 2182 2182 dressing-nvim = buildVimPluginFrom2Nix { 2183 2183 pname = "dressing.nvim"; 2184 - version = "2022-05-01"; 2184 + version = "2022-05-11"; 2185 2185 src = fetchFromGitHub { 2186 2186 owner = "stevearc"; 2187 2187 repo = "dressing.nvim"; 2188 - rev = "a476efd3f372d6b5b0df431cac36911fb84c515e"; 2189 - sha256 = "1n15lzjma6mpaphx6ppmhsgvg51vbrp91qf3nssyvr5n2vpjhhfy"; 2188 + rev = "55e4ceae81d9169f46ea4452ce6e8c58cca00651"; 2189 + sha256 = "1i34pk9l76n8ianz9hww8kn7dnnzivv8sbyf0vf7w21r2bh1p1k4"; 2190 2190 }; 2191 2191 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2192 2192 }; ··· 2205 2205 2206 2206 edge = buildVimPluginFrom2Nix { 2207 2207 pname = "edge"; 2208 - version = "2022-04-27"; 2208 + version = "2022-05-04"; 2209 2209 src = fetchFromGitHub { 2210 2210 owner = "sainnhe"; 2211 2211 repo = "edge"; 2212 - rev = "fb5a763f2591bed8d10562edbd0e64c88cc5e674"; 2213 - sha256 = "0p79ck2n94argr7k8glwpmmzf6945mh4gb23p5hd5m8a02ys7ax4"; 2212 + rev = "93e92e161edfca2cef1534efb88e2aa2138834d9"; 2213 + sha256 = "0y24hdaqq9dsfy4di0pql1zj7a7jj48m44nm2a1g1dsra8k94jm2"; 2214 2214 }; 2215 2215 meta.homepage = "https://github.com/sainnhe/edge/"; 2216 2216 }; ··· 2291 2291 2292 2292 everforest = buildVimPluginFrom2Nix { 2293 2293 pname = "everforest"; 2294 - version = "2022-04-27"; 2294 + version = "2022-05-04"; 2295 2295 src = fetchFromGitHub { 2296 2296 owner = "sainnhe"; 2297 2297 repo = "everforest"; 2298 - rev = "1e594a20ce382bcc55c0e3fd488e90ca68dffb32"; 2299 - sha256 = "1415759zc6fp39h0xzpb2d99m4xsh5ma84j6yv236zb0bavm88ah"; 2298 + rev = "f748681a3fac2496aedf694f5bd09a30f80cd3c0"; 2299 + sha256 = "0w9gv52y806bn7az9yl2anx7yiv2ildslw4rvj82v5ni0b6mq4j5"; 2300 2300 }; 2301 2301 meta.homepage = "https://github.com/sainnhe/everforest/"; 2302 2302 }; ··· 2351 2351 2352 2352 feline-nvim = buildVimPluginFrom2Nix { 2353 2353 pname = "feline.nvim"; 2354 - version = "2022-04-12"; 2354 + version = "2022-05-06"; 2355 2355 src = fetchFromGitHub { 2356 2356 owner = "feline-nvim"; 2357 2357 repo = "feline.nvim"; 2358 - rev = "79f5e9e5a76842b72f1814dcd4fc239a95ead391"; 2359 - sha256 = "1svj1464hlash4igbai9mdman7cvlb8rfiyyylm7yn4wh8c2xb3k"; 2358 + rev = "f63f17bc9b845dd4cca4112f243b551aea141ced"; 2359 + sha256 = "1l088yjqkjs8vfgc738qgbd8w72a4rni1bzk5wc9q2z8m1rzf7kr"; 2360 2360 }; 2361 2361 meta.homepage = "https://github.com/feline-nvim/feline.nvim/"; 2362 2362 }; ··· 2399 2399 2400 2400 fidget-nvim = buildVimPluginFrom2Nix { 2401 2401 pname = "fidget.nvim"; 2402 - version = "2022-04-19"; 2402 + version = "2022-05-08"; 2403 2403 src = fetchFromGitHub { 2404 2404 owner = "j-hui"; 2405 2405 repo = "fidget.nvim"; 2406 - rev = "956683191df04c5a401e1f1fb2e53b957fbcecaa"; 2407 - sha256 = "1hwkm19x8zccwcnq72b8jk6dcmhngsxqcs3c02sarr2n0vqwvip0"; 2406 + rev = "99b306167d1d305ca084e3bb475d6eadf32a365b"; 2407 + sha256 = "0pxxsz0g2qklnl16pfbv0178fd34ff2vvx4qwndwkfgx4qmlkj8q"; 2408 2408 }; 2409 2409 meta.homepage = "https://github.com/j-hui/fidget.nvim/"; 2410 2410 }; ··· 2472 2472 2473 2473 formatter-nvim = buildVimPluginFrom2Nix { 2474 2474 pname = "formatter.nvim"; 2475 - version = "2022-04-26"; 2475 + version = "2022-05-12"; 2476 2476 src = fetchFromGitHub { 2477 2477 owner = "mhartington"; 2478 2478 repo = "formatter.nvim"; 2479 - rev = "100af7c04f12b99d29fbca7dc1aa3d17301c54e9"; 2480 - sha256 = "082cp251ynznjk3ims389ljdww9786nh8kglydqpqh3sdvc7s0mp"; 2479 + rev = "fb814e0e18a2ced247c40736d395d15a2517486e"; 2480 + sha256 = "19dav8ajydd4b9ziw6l4k9pn3dpc2z6zh1sb8a1hxcv02xfc71xg"; 2481 2481 }; 2482 2482 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 2483 2483 }; ··· 2496 2496 2497 2497 friendly-snippets = buildVimPluginFrom2Nix { 2498 2498 pname = "friendly-snippets"; 2499 - version = "2022-04-25"; 2499 + version = "2022-05-09"; 2500 2500 src = fetchFromGitHub { 2501 2501 owner = "rafamadriz"; 2502 2502 repo = "friendly-snippets"; 2503 - rev = "6e0881ad5dfae8bcb160bb6704e1f5fe31be9938"; 2504 - sha256 = "1cyrqsc0jf1v6qxrd944x74803cck3nxddp1ac8rhl9yj8kz176w"; 2503 + rev = "4ef45d099453a26d23084a04ae7dced19e6d5ae5"; 2504 + sha256 = "0l3hkg97w26k01f4arifnnaws4m50b2phig2pq8kqr80rz5i0gk7"; 2505 2505 }; 2506 2506 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 2507 2507 }; ··· 2568 2568 2569 2569 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2570 2570 pname = "fzf-lsp.nvim"; 2571 - version = "2022-02-06"; 2571 + version = "2022-05-04"; 2572 2572 src = fetchFromGitHub { 2573 2573 owner = "gfanto"; 2574 2574 repo = "fzf-lsp.nvim"; 2575 - rev = "b02056f3c4b9d64d876bbf0a58d20791345a9364"; 2576 - sha256 = "16n78ylicrd7lh41g5hvd9vnnhkwbvj28c190k5zvrblyyhipn93"; 2575 + rev = "13fec018f619a14f0fcc90d1ff32f235d3344315"; 2576 + sha256 = "1wmmahy62dk04dplf96qh9aqfamjr3nm1fn3ky5lbw6ij8kgk5y8"; 2577 2577 }; 2578 2578 meta.homepage = "https://github.com/gfanto/fzf-lsp.nvim/"; 2579 2579 }; 2580 2580 2581 2581 fzf-lua = buildVimPluginFrom2Nix { 2582 2582 pname = "fzf-lua"; 2583 - version = "2022-05-07"; 2583 + version = "2022-05-12"; 2584 2584 src = fetchFromGitHub { 2585 2585 owner = "ibhagwan"; 2586 2586 repo = "fzf-lua"; 2587 - rev = "b614a9d315512ec4ce9c1df41474e5ab8e12f7df"; 2588 - sha256 = "0gb7q4fbv3754ck44h6dd93dcy8j4czhhna1d2kgq21614xs303k"; 2587 + rev = "de7ac64e742c21afae5dae93e8207408fde5042c"; 2588 + sha256 = "14hqkwsg4sgah0nyxd08iqzl8aycy6hgxn7wnyk0xdpr0nkhlm24"; 2589 2589 }; 2590 2590 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 2591 2591 }; ··· 2676 2676 2677 2677 git-blame-nvim = buildVimPluginFrom2Nix { 2678 2678 pname = "git-blame.nvim"; 2679 - version = "2022-04-29"; 2679 + version = "2022-05-08"; 2680 2680 src = fetchFromGitHub { 2681 2681 owner = "f-person"; 2682 2682 repo = "git-blame.nvim"; 2683 - rev = "0a7d27028b69525f2c6b6a3460029ed6cb291541"; 2684 - sha256 = "0mbvaasx82wcn37mrn20gb98g7prhav4ps1wyk46mirla350ikjl"; 2683 + rev = "8ab29dd555de8f1791a4d34f47f21c8a2fdae8be"; 2684 + sha256 = "1bknqk0xc85n9qc1mhg9w95yniyk0j9jq7pxc2wwdn5zrfig1vjw"; 2685 2685 }; 2686 2686 meta.homepage = "https://github.com/f-person/git-blame.nvim/"; 2687 2687 }; ··· 2736 2736 2737 2737 gitsigns-nvim = buildNeovimPluginFrom2Nix { 2738 2738 pname = "gitsigns.nvim"; 2739 - version = "2022-05-02"; 2739 + version = "2022-05-12"; 2740 2740 src = fetchFromGitHub { 2741 2741 owner = "lewis6991"; 2742 2742 repo = "gitsigns.nvim"; 2743 - rev = "ef153188e849bd317c00448755bc4182a2bd495d"; 2744 - sha256 = "1pysiqgkp34kmpf4fkyjqih0rrq3mscrh9z27mzfhy2zhky8pikp"; 2743 + rev = "ffd06e36f6067935d8cb9793905dd2e84e291310"; 2744 + sha256 = "00lm0685mwrm4c4r4vprb0ksmylnrlz8silghaqdg80zlhbn729v"; 2745 2745 }; 2746 2746 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2747 2747 }; ··· 2772 2772 2773 2773 glow-nvim = buildVimPluginFrom2Nix { 2774 2774 pname = "glow.nvim"; 2775 - version = "2022-04-13"; 2775 + version = "2022-05-11"; 2776 2776 src = fetchFromGitHub { 2777 2777 owner = "ellisonleao"; 2778 2778 repo = "glow.nvim"; 2779 - rev = "0c76518e440f2ea4dbadd87beec8eea4ce030f17"; 2780 - sha256 = "093qa13dd32rn8r50pw3s65186ch2i9wawf1dwylqymjn1afnqbk"; 2779 + rev = "da265c328f5e4f102dbdbb1a0fd8627afdaf0320"; 2780 + sha256 = "1pmj8rjhf80jrgxp8iim9i36qqc6jwx8c73z6nqs6nkmnccychih"; 2781 2781 }; 2782 2782 meta.homepage = "https://github.com/ellisonleao/glow.nvim/"; 2783 2783 }; ··· 2868 2868 2869 2869 gruvbox-material = buildVimPluginFrom2Nix { 2870 2870 pname = "gruvbox-material"; 2871 - version = "2022-04-27"; 2871 + version = "2022-05-04"; 2872 2872 src = fetchFromGitHub { 2873 2873 owner = "sainnhe"; 2874 2874 repo = "gruvbox-material"; 2875 - rev = "3d664943daf65bf99390a52c5dbc557f87fac552"; 2876 - sha256 = "08zh5rc9p6svmds57gvvkk12nadd56ysx8xrhsjxbn3cdxag86gj"; 2875 + rev = "f943521890297076cdcd629182a0405f6b9a83f0"; 2876 + sha256 = "06x45ygxmqsgxrghvc4l6zdf1waxrwg3lk7m0lq4sh6nygdzhw1h"; 2877 2877 }; 2878 2878 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 2879 2879 }; 2880 2880 2881 2881 gruvbox-nvim = buildVimPluginFrom2Nix { 2882 2882 pname = "gruvbox.nvim"; 2883 - version = "2022-04-26"; 2883 + version = "2022-05-12"; 2884 2884 src = fetchFromGitHub { 2885 2885 owner = "ellisonleao"; 2886 2886 repo = "gruvbox.nvim"; 2887 - rev = "cf1b07f07673b5c2f9e3903b5fc4c2f7bc7d1123"; 2888 - sha256 = "1pr91d8qsii9z5ff4gw766nf4v9r06ym15hk5y3z293bsd6hfns8"; 2887 + rev = "72930977a442a2de2592ed39168c018bef90e086"; 2888 + sha256 = "1k6rbn4ksmgi36f3zqlz52c99x3ilpjmv6q3y93j5kp2lxp1yz6r"; 2889 2889 }; 2890 2890 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 2891 2891 }; ··· 2916 2916 2917 2917 harpoon = buildVimPluginFrom2Nix { 2918 2918 pname = "harpoon"; 2919 - version = "2022-04-05"; 2919 + version = "2022-05-08"; 2920 2920 src = fetchFromGitHub { 2921 2921 owner = "ThePrimeagen"; 2922 2922 repo = "harpoon"; 2923 - rev = "28762aa04d6395538e26e1efff5213b26720e68f"; 2924 - sha256 = "0c2fpwm8v2fzkg8rq7lhpv8lzm614y4x6n2xp612sj824jm7aj03"; 2923 + rev = "d3d3d22b6207f46f8ca64946f4d781e975aec0fc"; 2924 + sha256 = "0vc14gg4ll4ghmvyqvzij9pkvm30sml61nhs7pbpw3qq5mfizb7z"; 2925 2925 }; 2926 2926 meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; 2927 2927 }; ··· 3108 3108 3109 3109 incsearch-vim = buildVimPluginFrom2Nix { 3110 3110 pname = "incsearch.vim"; 3111 - version = "2017-11-24"; 3111 + version = "2022-05-13"; 3112 3112 src = fetchFromGitHub { 3113 3113 owner = "haya14busa"; 3114 3114 repo = "incsearch.vim"; 3115 - rev = "25e2547fb0566460f5999024f7a0de7b3775201f"; 3116 - sha256 = "05v0d9b5sm4d1bvhb01jk6s7brlli2xc16hvzr6gik1nm1ks6ai1"; 3115 + rev = "c83de6d1ac31d173d7c3ffee0ad61dc643ee4f08"; 3116 + sha256 = "0vlj9hdy4d1p06mnxjpdz4mjqvbsgy5rp4l8k87wbs2b5x8008yj"; 3117 3117 }; 3118 3118 meta.homepage = "https://github.com/haya14busa/incsearch.vim/"; 3119 3119 }; 3120 3120 3121 3121 indent-blankline-nvim = buildVimPluginFrom2Nix { 3122 3122 pname = "indent-blankline.nvim"; 3123 - version = "2022-04-15"; 3123 + version = "2022-05-10"; 3124 3124 src = fetchFromGitHub { 3125 3125 owner = "lukas-reineke"; 3126 3126 repo = "indent-blankline.nvim"; 3127 - rev = "045d9582094b27f5ae04d8b635c6da8e97e53f1d"; 3128 - sha256 = "0wxkvx1xy7p4872fh9ydsnnqlpwm9x3afwakgxv38l9vmk5mpid4"; 3127 + rev = "8567ac8ccd19ee41a6ec55bf044884799fa3f56b"; 3128 + sha256 = "0gbdgn8031i4wgl5w2halaxjir39710n5cs8997cf3fhjj8zk5ss"; 3129 3129 }; 3130 3130 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 3131 3131 }; ··· 3289 3289 3290 3290 julia-vim = buildVimPluginFrom2Nix { 3291 3291 pname = "julia-vim"; 3292 - version = "2022-03-23"; 3292 + version = "2022-05-06"; 3293 3293 src = fetchFromGitHub { 3294 3294 owner = "JuliaEditorSupport"; 3295 3295 repo = "julia-vim"; 3296 - rev = "a2c96eda9d5b0dde03d2e22d0888e40426cd38dd"; 3297 - sha256 = "1x9f3gd4bgj3f1c75bp58mvaxll4rw55vznqckc0w0p1bcwq9faw"; 3296 + rev = "d743b99ff8321f4a80d21692bf536442d841bd55"; 3297 + sha256 = "07x3zayahbp2dm7lc5kvrpd0c4i8qivs1brbdv9b1rv9b45qx5nf"; 3298 3298 }; 3299 3299 meta.homepage = "https://github.com/JuliaEditorSupport/julia-vim/"; 3300 3300 }; 3301 3301 3302 3302 kanagawa-nvim = buildVimPluginFrom2Nix { 3303 3303 pname = "kanagawa.nvim"; 3304 - version = "2022-04-21"; 3304 + version = "2022-05-04"; 3305 3305 src = fetchFromGitHub { 3306 3306 owner = "rebelot"; 3307 3307 repo = "kanagawa.nvim"; 3308 - rev = "0ad738e7cc43514d35388c1caca13990d688aa5c"; 3309 - sha256 = "06gcdkh92i5znpn5gw1xyc82nf4kr2j1mi8d8pnajqyvvxyb8mca"; 3308 + rev = "50e7b43552072696d26757aff5f6307e2ab5e3ea"; 3309 + sha256 = "051asspplaw9m1iqv78gfv8dzg3c96c1mhhv5swih4r3zcbylhhi"; 3310 3310 }; 3311 3311 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 3312 3312 }; ··· 3373 3373 3374 3374 lazygit-nvim = buildVimPluginFrom2Nix { 3375 3375 pname = "lazygit.nvim"; 3376 - version = "2022-04-15"; 3376 + version = "2022-05-10"; 3377 3377 src = fetchFromGitHub { 3378 3378 owner = "kdheepak"; 3379 3379 repo = "lazygit.nvim"; 3380 - rev = "68407ff60c1abe56cecedd4bec41380df5070a21"; 3381 - sha256 = "080h4w55l36rvi4bb8z3bx2g41wp9lk08ihmz0jfmp7dzfgjszsi"; 3380 + rev = "1f9f372b9fc137b8123d12a78c22a26c0fa78f0a"; 3381 + sha256 = "1s4bpi7i86246p28pjk99rv1qj1gp7l7zwfch0f23nwnggm8s6pm"; 3382 3382 }; 3383 3383 meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; 3384 3384 }; 3385 3385 3386 3386 lean-nvim = buildVimPluginFrom2Nix { 3387 3387 pname = "lean.nvim"; 3388 - version = "2022-05-02"; 3388 + version = "2022-05-09"; 3389 3389 src = fetchFromGitHub { 3390 3390 owner = "Julian"; 3391 3391 repo = "lean.nvim"; 3392 - rev = "902eb7f75d664bccd251c38d7921570b05b47cdc"; 3393 - sha256 = "1dw8r7vl260baclf8ymq9zr9vxq8d8s6hjbnjs4xqliaza0g7pj3"; 3392 + rev = "725ff1f12e908001d2d42e9b06725cd8117e16f8"; 3393 + sha256 = "0i93k3izl9b8lsax7s1bz53jwkjsjh9iv2wgwk7bf9a6c34g9mq5"; 3394 3394 }; 3395 3395 meta.homepage = "https://github.com/Julian/lean.nvim/"; 3396 3396 }; ··· 3529 3529 3530 3530 lightline-vim = buildVimPluginFrom2Nix { 3531 3531 pname = "lightline.vim"; 3532 - version = "2022-03-15"; 3532 + version = "2022-05-09"; 3533 3533 src = fetchFromGitHub { 3534 3534 owner = "itchyny"; 3535 3535 repo = "lightline.vim"; 3536 - rev = "11931e2de42cb1a14887a002a874f0b2daf12bc2"; 3537 - sha256 = "1iyns1bm3wjr6z2hmc0p9j61vhprhax4f9qdqaf3w7vvgkhx1xj6"; 3536 + rev = "b02ef0d9f253dfc1cbb3f340b74998d7a4db0bf6"; 3537 + sha256 = "1rr5n23vvybfi3gbqljalqn0pnkwzzb4zqcz74jlz1dfyddsngah"; 3538 3538 }; 3539 3539 meta.homepage = "https://github.com/itchyny/lightline.vim/"; 3540 3540 }; 3541 3541 3542 3542 lightspeed-nvim = buildVimPluginFrom2Nix { 3543 3543 pname = "lightspeed.nvim"; 3544 - version = "2022-04-04"; 3544 + version = "2022-05-13"; 3545 3545 src = fetchFromGitHub { 3546 3546 owner = "ggandor"; 3547 3547 repo = "lightspeed.nvim"; 3548 - rev = "cfde2b2fe0dafc5684780399961595357998f611"; 3549 - sha256 = "0zcippcfv87vcsbld0kka4mn2lixg0r6m2c82g9bssf304skfhfr"; 3548 + rev = "c5b93fc1d76a708cb698417326e04f4786a38d90"; 3549 + sha256 = "0lgk9i240mgzf7f3j3z93dkj00fi3rypn79zc60wqdyzhpg4r4lm"; 3550 3550 }; 3551 3551 meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; 3552 3552 }; ··· 3577 3577 3578 3578 lir-nvim = buildVimPluginFrom2Nix { 3579 3579 pname = "lir.nvim"; 3580 - version = "2022-04-20"; 3580 + version = "2022-05-07"; 3581 3581 src = fetchFromGitHub { 3582 3582 owner = "tamago324"; 3583 3583 repo = "lir.nvim"; 3584 - rev = "43b2fae50a49fbf435899201b0c687b72ab2cc8f"; 3585 - sha256 = "0ayq5nj6mmxc4pd6sf49wllkr1bkgvx6dsdy0hl2f3w20sn5bpba"; 3584 + rev = "4fc9dcaccb31301cb6ad938e1f40c211ab1115e2"; 3585 + sha256 = "08bn39smzdsh4whqk8icmf39fixnivw0bmvh9c90260mqj7329xr"; 3586 3586 }; 3587 3587 meta.homepage = "https://github.com/tamago324/lir.nvim/"; 3588 3588 }; ··· 3613 3613 3614 3614 litee-filetree-nvim = buildVimPluginFrom2Nix { 3615 3615 pname = "litee-filetree.nvim"; 3616 - version = "2022-04-06"; 3616 + version = "2022-05-11"; 3617 3617 src = fetchFromGitHub { 3618 3618 owner = "ldelossa"; 3619 3619 repo = "litee-filetree.nvim"; 3620 - rev = "2a59ba7c362d1e39b80baa47dc237a7eeca42ba0"; 3621 - sha256 = "1xw3p3jhyyggp82a8n99nqk9hnm8z6n84lclb2wjbma9a0xzk9kl"; 3620 + rev = "91d403620dafeb30410aa0ed0cc416c9b67d3233"; 3621 + sha256 = "1v70qlnwc59agxasvshr5691k00lvahks469pxh0kb0m072ainri"; 3622 3622 }; 3623 3623 meta.homepage = "https://github.com/ldelossa/litee-filetree.nvim/"; 3624 3624 }; ··· 3637 3637 3638 3638 litee-nvim = buildVimPluginFrom2Nix { 3639 3639 pname = "litee.nvim"; 3640 - version = "2022-04-25"; 3640 + version = "2022-05-09"; 3641 3641 src = fetchFromGitHub { 3642 3642 owner = "ldelossa"; 3643 3643 repo = "litee.nvim"; 3644 - rev = "2d257af35e90b1ee6017481b7fd82878d8f0e5ff"; 3645 - sha256 = "05cnx2py9jwkpv34fbqqwjq8gb2rx3rwp97a1klr8khk8sr59b5y"; 3644 + rev = "273bc3389434ff041e65f6c10edbf470763f6a8f"; 3645 + sha256 = "1gy6an081phxkzaz0r548lq1idlxwmpgcgxj41jc7cliplfm8h4m"; 3646 3646 }; 3647 3647 meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 3648 3648 }; ··· 3708 3708 3709 3709 lsp_signature-nvim = buildVimPluginFrom2Nix { 3710 3710 pname = "lsp_signature.nvim"; 3711 - version = "2022-05-01"; 3711 + version = "2022-05-09"; 3712 3712 src = fetchFromGitHub { 3713 3713 owner = "ray-x"; 3714 3714 repo = "lsp_signature.nvim"; 3715 - rev = "6d160406f948a810c40304224a1255c8bba5a415"; 3716 - sha256 = "0hkj9z1ap6a3a4xbdq47cahx2j21pzwiss3fsarpwr6rjmcl62x3"; 3715 + rev = "db324e2ada5bb795d0016ec0ef2b4ae7f11d8904"; 3716 + sha256 = "1swvj79h7bgdm0wmb3a2a730y4gic1aivj371q7k8acc1s824j7d"; 3717 3717 }; 3718 3718 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3719 3719 }; ··· 3732 3732 3733 3733 lspsaga-nvim = buildVimPluginFrom2Nix { 3734 3734 pname = "lspsaga.nvim"; 3735 - version = "2022-03-14"; 3735 + version = "2022-05-05"; 3736 3736 src = fetchFromGitHub { 3737 3737 owner = "tami5"; 3738 3738 repo = "lspsaga.nvim"; 3739 - rev = "5309d75bd90ce5b1708331df3af1e971fa83a2b9"; 3740 - sha256 = "0xvlpjv69wf18nw5hbmmgbhs8ws4gfq5ny2vrncqaxcikr3gdmms"; 3739 + rev = "8dde091a61ab07f639baaa82b456d3508d0aa7e8"; 3740 + sha256 = "15cimji9x53ki1rrxw2y7vj5g4lp4b91hxljcp9jn9qhkjb7kj47"; 3741 3741 }; 3742 3742 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3743 3743 }; 3744 3744 3745 3745 lua-dev-nvim = buildVimPluginFrom2Nix { 3746 3746 pname = "lua-dev.nvim"; 3747 - version = "2022-01-18"; 3747 + version = "2022-05-12"; 3748 3748 src = fetchFromGitHub { 3749 3749 owner = "folke"; 3750 3750 repo = "lua-dev.nvim"; 3751 - rev = "a0ee77789d9948adce64d98700cc90cecaef88d5"; 3752 - sha256 = "10hc5iyqicbwjchwfyk7dz2wph0hz7ikjanvga9ncjk62qm2154f"; 3751 + rev = "f5c31936fe06fcbeb59b98f69f74f9c2f91abaec"; 3752 + sha256 = "0vwpi3cg0gv17w3bm2vlzspsms1rn2yjrzkq2zvf2f4slqq3rfpw"; 3753 3753 }; 3754 3754 meta.homepage = "https://github.com/folke/lua-dev.nvim/"; 3755 3755 }; ··· 3768 3768 3769 3769 lualine-nvim = buildVimPluginFrom2Nix { 3770 3770 pname = "lualine.nvim"; 3771 - version = "2022-05-02"; 3771 + version = "2022-05-13"; 3772 3772 src = fetchFromGitHub { 3773 3773 owner = "nvim-lualine"; 3774 3774 repo = "lualine.nvim"; 3775 - rev = "45d07fc026400c211337a7ce1cb90e7b7a397e31"; 3776 - sha256 = "13np9iqh69w5mrzx8pi5db87cm5sjay5cfs9zb1lk0zxz3n4592d"; 3775 + rev = "a4e4517ac32441dd92ba869944741f0b5f468531"; 3776 + sha256 = "18q935aicddai7j99ln61wz1di6lhwzs11x8fxgq704kfap1l2fj"; 3777 3777 }; 3778 3778 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3779 3779 }; 3780 3780 3781 3781 luasnip = buildVimPluginFrom2Nix { 3782 3782 pname = "luasnip"; 3783 - version = "2022-05-01"; 3783 + version = "2022-05-05"; 3784 3784 src = fetchFromGitHub { 3785 3785 owner = "l3mon4d3"; 3786 3786 repo = "luasnip"; 3787 - rev = "1dbafec2379bd836bd09c4659d4c6e1a70eb380e"; 3788 - sha256 = "1y0jp1saggg59lpicyvjbklg3fb5qmbmh8q7gacx27zgp26hz66r"; 3787 + rev = "cc0086390c6cd2eaebae1834b115c891649ec95f"; 3788 + sha256 = "1kid880y097jl9ys2zs94fj66fq2dhbgjmd97blpdyhsa9m0mgnc"; 3789 3789 }; 3790 3790 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3791 3791 }; ··· 3804 3804 3805 3805 lush-nvim = buildVimPluginFrom2Nix { 3806 3806 pname = "lush.nvim"; 3807 - version = "2022-04-12"; 3807 + version = "2022-05-06"; 3808 3808 src = fetchFromGitHub { 3809 3809 owner = "rktjmp"; 3810 3810 repo = "lush.nvim"; 3811 - rev = "87e9039138051ae75f76235924a273ac1a78cc3e"; 3812 - sha256 = "1plsm3xsf7bm709l6q341cbvm7na78a11b32n3j86j204zybdvbs"; 3811 + rev = "0c4acf666eb23acb5ffbd7f29526d801560b696a"; 3812 + sha256 = "1khpmlf90yhlqaapk2vkqkwzdjwsrrl3hfb209k3wl25588m9fm8"; 3813 3813 }; 3814 3814 meta.homepage = "https://github.com/rktjmp/lush.nvim/"; 3815 3815 }; ··· 3840 3840 3841 3841 marks-nvim = buildVimPluginFrom2Nix { 3842 3842 pname = "marks.nvim"; 3843 - version = "2022-04-03"; 3843 + version = "2022-05-13"; 3844 3844 src = fetchFromGitHub { 3845 3845 owner = "chentau"; 3846 3846 repo = "marks.nvim"; 3847 - rev = "8e80a20a170434bc77decc97bc4364c3ba848925"; 3848 - sha256 = "0bah5xjrwq43ihw37gw8nxsj3qdh9fjqs9n7fkfhsg6hyp1qy4fc"; 3847 + rev = "56cfa45f9c20373ed90bc4271eae17ee0d452bae"; 3848 + sha256 = "0qc452ikyrrx28by0awm9jggv05zcph95kygjya1085g9win87l4"; 3849 3849 }; 3850 3850 meta.homepage = "https://github.com/chentau/marks.nvim/"; 3851 3851 }; ··· 3864 3864 3865 3865 material-nvim = buildVimPluginFrom2Nix { 3866 3866 pname = "material.nvim"; 3867 - version = "2022-04-18"; 3867 + version = "2022-05-10"; 3868 3868 src = fetchFromGitHub { 3869 3869 owner = "marko-cerovac"; 3870 3870 repo = "material.nvim"; 3871 - rev = "9679aaf52e709b892a2cac044e44b694ea027709"; 3872 - sha256 = "183afbjbblwx6r8ix1z3h7nq54fhbdf5w2nagwd850w90iq6kyic"; 3871 + rev = "255033d6db241cec11d81ee46d81b56122e2000a"; 3872 + sha256 = "1zn32xkbn37mqi41rh6d0186rxkq7ry5m1j7f8iliyhvd5gj1a1s"; 3873 3873 }; 3874 3874 meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; 3875 3875 }; ··· 3888 3888 3889 3889 mini-nvim = buildVimPluginFrom2Nix { 3890 3890 pname = "mini.nvim"; 3891 - version = "2022-05-01"; 3891 + version = "2022-05-12"; 3892 3892 src = fetchFromGitHub { 3893 3893 owner = "echasnovski"; 3894 3894 repo = "mini.nvim"; 3895 - rev = "2bc924df80eaa788abd9af9ab9df446b10aa9b88"; 3896 - sha256 = "159n5sxg28lsvapdy59dxfhnjr7nb2wqy05pbcsdk90g4d7v43f7"; 3895 + rev = "1764bcfb1450ddef4eb7118a3c16464caad44439"; 3896 + sha256 = "0bayg5y0i23pz6x798qyx90l1w6wmf83kgdz9akxn6s5m82v8z4y"; 3897 3897 }; 3898 3898 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 3899 3899 }; 3900 3900 3901 3901 minimap-vim = buildVimPluginFrom2Nix { 3902 3902 pname = "minimap.vim"; 3903 - version = "2022-04-15"; 3903 + version = "2022-05-09"; 3904 3904 src = fetchFromGitHub { 3905 3905 owner = "wfxr"; 3906 3906 repo = "minimap.vim"; 3907 - rev = "3395cbd51bf042ef6d2cd714eb493eb7ed5fbb76"; 3908 - sha256 = "1bia6l9dhx0hk3jk38zgid8ljs28azrmz5xfp4mv5wa1g1kby0bl"; 3907 + rev = "5d44fe7a3a5f7041c4220a71e8fe83d8c8498042"; 3908 + sha256 = "04rqv8c5g1fs8pymlf2fcbm09k64bvpiqmjilf59m843vkvgk1xf"; 3909 3909 }; 3910 3910 meta.homepage = "https://github.com/wfxr/minimap.vim/"; 3911 3911 }; ··· 4248 4248 4249 4249 neogit = buildVimPluginFrom2Nix { 4250 4250 pname = "neogit"; 4251 - version = "2022-04-13"; 4251 + version = "2022-05-09"; 4252 4252 src = fetchFromGitHub { 4253 4253 owner = "TimUntersberger"; 4254 4254 repo = "neogit"; 4255 - rev = "c8dd268091ffcbcb673de59c5b37ff26a2eb24ed"; 4256 - sha256 = "0a5y5vlpfmx113byas8y91s0ng6xnxmjpva0jiv9wk419kgnk0f1"; 4255 + rev = "84d1eefe9d5af41cc3e5de02f2c9a263d5302781"; 4256 + sha256 = "03zrwgk0z534qzbzrf2s3bdk3kcjyrxjhr3xp0qsx7nlpx5ackby"; 4257 4257 }; 4258 4258 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 4259 4259 }; ··· 4308 4308 4309 4309 neorg = buildVimPluginFrom2Nix { 4310 4310 pname = "neorg"; 4311 - version = "2022-05-01"; 4311 + version = "2022-05-13"; 4312 4312 src = fetchFromGitHub { 4313 4313 owner = "nvim-neorg"; 4314 4314 repo = "neorg"; 4315 - rev = "633dfc9f0c3a00a32ee89d4ab826da2eecfe9bd8"; 4316 - sha256 = "13r17drh0xy2dibx2qq4r90zlkjfyp3mzfa6p7w29yr623ixbbs1"; 4315 + rev = "509947a6587a83aa755914eb95be605864bb108d"; 4316 + sha256 = "0qhq61kl3y282dm06z7kyzda5qpj9nk3mpvz5asc46vfvw98ijyh"; 4317 4317 }; 4318 4318 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 4319 4319 }; ··· 4368 4368 4369 4369 neovim-ayu = buildVimPluginFrom2Nix { 4370 4370 pname = "neovim-ayu"; 4371 - version = "2022-05-01"; 4371 + version = "2022-05-11"; 4372 4372 src = fetchFromGitHub { 4373 4373 owner = "Shatur"; 4374 4374 repo = "neovim-ayu"; 4375 - rev = "cc64cadfd6e54967a7b01bac1a689239a20804ac"; 4376 - sha256 = "1rnlr14n3b6sxs0m64x5s42yq2bj8677bxyz4b479cdiq76gnyk2"; 4375 + rev = "bb0793b661acec468c472f20eb28dbe855428793"; 4376 + sha256 = "0nrky5mlh79xzgdbwibrs43yw317gaavhq0p7pfpxsxdxhfjw416"; 4377 4377 }; 4378 4378 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 4379 4379 }; ··· 4488 4488 4489 4489 nightfox-nvim = buildVimPluginFrom2Nix { 4490 4490 pname = "nightfox.nvim"; 4491 - version = "2022-05-02"; 4491 + version = "2022-05-10"; 4492 4492 src = fetchFromGitHub { 4493 4493 owner = "EdenEast"; 4494 4494 repo = "nightfox.nvim"; 4495 - rev = "25b3f3e46c87c51e4d8075d2e11f481628716363"; 4496 - sha256 = "1asz3wz9v47smwn6ahzmv8mdjbfazwbwzmcf9niy0jxva6b3qyrx"; 4495 + rev = "63a8eb64e8559e4c910e91025a2959c4b50b8c54"; 4496 + sha256 = "1kiryppcg1ng8n5m3b5qyzzw5vnisgpb1n6yw961yddxdzc8hcr4"; 4497 4497 }; 4498 4498 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 4499 4499 }; ··· 4548 4548 4549 4549 nord-nvim = buildVimPluginFrom2Nix { 4550 4550 pname = "nord.nvim"; 4551 - version = "2022-02-17"; 4551 + version = "2022-05-11"; 4552 4552 src = fetchFromGitHub { 4553 4553 owner = "shaunsingh"; 4554 4554 repo = "nord.nvim"; 4555 - rev = "1fdad275596f85bdc36c525b14697ff3a4f08bdf"; 4556 - sha256 = "1pq32gnpmkyqaxq0j5bqf6ik9vkrf2zkayvcvb6fv4vxaiv7w7hr"; 4555 + rev = "fb2c13625c711d3ab9303c0d9881437b5b280ba5"; 4556 + sha256 = "1pd8wsjp6jg2a8bvwn593sd9wf2czaxaq05xlgjzfwgc9k30mjig"; 4557 4557 }; 4558 4558 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 4559 4559 }; ··· 4572 4572 4573 4573 nterm-nvim = buildVimPluginFrom2Nix { 4574 4574 pname = "nterm.nvim"; 4575 - version = "2021-11-10"; 4575 + version = "2022-05-10"; 4576 4576 src = fetchFromGitHub { 4577 4577 owner = "jlesquembre"; 4578 4578 repo = "nterm.nvim"; 4579 - rev = "14d16c83aa1d165724f7780f470c4dcde5addcb6"; 4580 - sha256 = "0y883fpjfk7lki8nfscxhfw0wr7xm1d22zgf52zqmc9pjznjz9my"; 4579 + rev = "cd7b7035d09144ee4ea49244bf5cb8ed68e499f8"; 4580 + sha256 = "0cvg03d1z7jkamg062ng731pdmckrdm611q24brr9ha1qc5q26gm"; 4581 4581 }; 4582 4582 meta.homepage = "https://github.com/jlesquembre/nterm.nvim/"; 4583 4583 }; 4584 4584 4585 4585 nui-nvim = buildVimPluginFrom2Nix { 4586 4586 pname = "nui.nvim"; 4587 - version = "2022-04-08"; 4587 + version = "2022-05-06"; 4588 4588 src = fetchFromGitHub { 4589 4589 owner = "MunifTanjim"; 4590 4590 repo = "nui.nvim"; 4591 - rev = "42552b3797c3452c5c94e0c84a04fbda9591b9d1"; 4592 - sha256 = "0ggiq9yvrkv2fff41qzvz82lsxxc8swlxfvv1n9g5am8zym2ssk1"; 4591 + rev = "abdbfab89f307151db83b1a5147cd390ef27ff99"; 4592 + sha256 = "0z49sfnsr7hmfr4vrd82f1m6kvswfqq31n4fsdmjy9h4qmjb0w5f"; 4593 4593 }; 4594 4594 meta.homepage = "https://github.com/MunifTanjim/nui.nvim/"; 4595 4595 }; 4596 4596 4597 4597 null-ls-nvim = buildVimPluginFrom2Nix { 4598 4598 pname = "null-ls.nvim"; 4599 - version = "2022-05-01"; 4599 + version = "2022-05-09"; 4600 4600 src = fetchFromGitHub { 4601 4601 owner = "jose-elias-alvarez"; 4602 4602 repo = "null-ls.nvim"; 4603 - rev = "3dbded7cfaf0591157280bc97d11407eeaef3ea9"; 4604 - sha256 = "0k74064x0k2l4k07zlfv3kl3qm3f7spj49rr9ahcwn0pni38y71c"; 4603 + rev = "dcad76eb1abb80cf3a27208823becbf62547abf8"; 4604 + sha256 = "1xsgmz1gzrz313whjm2ivc7px7xkcdqqi9gn466d5yyshzqvx3jq"; 4605 4605 }; 4606 4606 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4607 4607 }; ··· 4644 4644 4645 4645 nvim-autopairs = buildVimPluginFrom2Nix { 4646 4646 pname = "nvim-autopairs"; 4647 - version = "2022-04-28"; 4647 + version = "2022-05-04"; 4648 4648 src = fetchFromGitHub { 4649 4649 owner = "windwp"; 4650 4650 repo = "nvim-autopairs"; 4651 - rev = "63779ea99ed43ab22660ac6ae5b506a40bf41aeb"; 4652 - sha256 = "0lc03xjsamy8fpfwy6ag9r8cx1cp0my461l0wvbgznzr1qkq325y"; 4651 + rev = "aea913109d30c87df329ec9b8fea9aed6ef9f52a"; 4652 + sha256 = "0jhw4m552vfxilmn5cp67a9xz1w8jd6ixijyl2bsvp1j56qklfi6"; 4653 4653 }; 4654 4654 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4655 4655 }; ··· 4704 4704 4705 4705 nvim-cmp = buildVimPluginFrom2Nix { 4706 4706 pname = "nvim-cmp"; 4707 - version = "2022-05-02"; 4707 + version = "2022-05-13"; 4708 4708 src = fetchFromGitHub { 4709 4709 owner = "hrsh7th"; 4710 4710 repo = "nvim-cmp"; 4711 - rev = "bba6fb67fdafc0af7c5454058dfbabc2182741f4"; 4712 - sha256 = "1qkhynhaasplvk7argik7jqkl0jymi347xqbg1i7b1h4qp51xjpq"; 4711 + rev = "9a0c639ac2324e6e9ecc54dc22b1d32bb6c42ab9"; 4712 + sha256 = "06pza2xc5fzmsdz945mascmjd43k48agfq15ds91km8scpvpsx77"; 4713 4713 }; 4714 4714 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 4715 4715 }; ··· 4788 4788 4789 4789 nvim-dap = buildVimPluginFrom2Nix { 4790 4790 pname = "nvim-dap"; 4791 - version = "2022-04-18"; 4791 + version = "2022-05-11"; 4792 4792 src = fetchFromGitHub { 4793 4793 owner = "mfussenegger"; 4794 4794 repo = "nvim-dap"; 4795 - rev = "d6d8317ce9e096029150bc5844916347a9af6f45"; 4796 - sha256 = "0p5317hf7a9ky78dg68j4daj6z0nmhxiq4v52nfld54kz1f5dkmx"; 4795 + rev = "2249fcfd09cdc27c08e9d2f3be5268ba81db3378"; 4796 + sha256 = "0v0gz77dqyd485f9d43q101zcxnsyc13n9bl572xcrshdn6czncs"; 4797 4797 }; 4798 4798 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 4799 4799 }; 4800 4800 4801 4801 nvim-dap-ui = buildVimPluginFrom2Nix { 4802 4802 pname = "nvim-dap-ui"; 4803 - version = "2022-04-29"; 4803 + version = "2022-05-11"; 4804 4804 src = fetchFromGitHub { 4805 4805 owner = "rcarriga"; 4806 4806 repo = "nvim-dap-ui"; 4807 - rev = "3eec5258c620e2b7b688676be8fb2e9a8ae436b2"; 4808 - sha256 = "1x7y49jzbj3s07pkdi842balj9wx0x1z4khgixxj7p03awcyngsm"; 4807 + rev = "e5c32746aa72e39267803fdf6934d79541d39f42"; 4808 + sha256 = "06igsddmjd27wj880vq9l9qq38x438ybrjvizn8dz98paypa6b1d"; 4809 4809 }; 4810 4810 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 4811 4811 }; ··· 4860 4860 4861 4861 nvim-gdb = buildVimPluginFrom2Nix { 4862 4862 pname = "nvim-gdb"; 4863 - version = "2022-05-02"; 4863 + version = "2022-05-12"; 4864 4864 src = fetchFromGitHub { 4865 4865 owner = "sakhnik"; 4866 4866 repo = "nvim-gdb"; 4867 - rev = "d064ee481b2aec86133ebcd514c835a28776f9c5"; 4868 - sha256 = "1xxm69jndx8sgkip1f8n7k9nb697d1n7r13iyp1bcgllwir5f1mi"; 4867 + rev = "9c630705829fbe8c21a9379ae2be948560189d80"; 4868 + sha256 = "1cdc2r12k1nma37vicshy4kbk79ap8qj040rscxzl41z96ff8v0b"; 4869 4869 }; 4870 4870 meta.homepage = "https://github.com/sakhnik/nvim-gdb/"; 4871 4871 }; ··· 4884 4884 4885 4885 nvim-highlite = buildVimPluginFrom2Nix { 4886 4886 pname = "nvim-highlite"; 4887 - version = "2022-04-29"; 4887 + version = "2022-05-12"; 4888 4888 src = fetchFromGitHub { 4889 4889 owner = "Iron-E"; 4890 4890 repo = "nvim-highlite"; 4891 - rev = "16f6fe2ece750b9cbfacca3675e8e71cd4c19665"; 4892 - sha256 = "1i5v8z6gmj09lwi6mb6m6srskavqdwwv4iazajjrjwjv0wfzcdb9"; 4891 + rev = "1838e0a8418dfc87bc35ecb4a2bc594f032fda06"; 4892 + sha256 = "10ipn3xw4vlfkms0vg28gvwycs3hxpssc1gmp6hfj9z9ips976x1"; 4893 4893 }; 4894 4894 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 4895 4895 }; ··· 4920 4920 4921 4921 nvim-jdtls = buildVimPluginFrom2Nix { 4922 4922 pname = "nvim-jdtls"; 4923 - version = "2022-04-29"; 4923 + version = "2022-05-06"; 4924 4924 src = fetchFromGitHub { 4925 4925 owner = "mfussenegger"; 4926 4926 repo = "nvim-jdtls"; 4927 - rev = "9010412f7de118168d2fe4ba97b578d0d76cc500"; 4928 - sha256 = "0jzz9av1k4msa9942p8g1f0cnlh0rdgb026s3xg4ksbdspc72d67"; 4927 + rev = "f582b5be2ae1fee2e5dc974cd9b979a1ab08cca6"; 4928 + sha256 = "0bfdp6xbq7qr7185m06ccfmln2gc24vc1215cxczm1bpyrh98ncq"; 4929 4929 }; 4930 4930 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 4931 4931 }; ··· 4968 4968 4969 4969 nvim-lint = buildVimPluginFrom2Nix { 4970 4970 pname = "nvim-lint"; 4971 - version = "2022-05-02"; 4971 + version = "2022-05-11"; 4972 4972 src = fetchFromGitHub { 4973 4973 owner = "mfussenegger"; 4974 4974 repo = "nvim-lint"; 4975 - rev = "2c8f41f62d09b1e1068c3949661eba5bc0cea7ba"; 4976 - sha256 = "08syhj3wwrz7ivv492zjs02xcf42b3f1zhh26am8jr430k0l491d"; 4975 + rev = "0407c340a77380e4122dc349efa10fc846c928b4"; 4976 + sha256 = "1cagndfqdk505q18iq4wgmwav3hh04vmgxj7h8924v9ffj8wr0wx"; 4977 4977 }; 4978 4978 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 4979 4979 }; 4980 4980 4981 4981 nvim-lsp-ts-utils = buildVimPluginFrom2Nix { 4982 4982 pname = "nvim-lsp-ts-utils"; 4983 - version = "2022-04-04"; 4983 + version = "2022-05-09"; 4984 4984 src = fetchFromGitHub { 4985 4985 owner = "jose-elias-alvarez"; 4986 4986 repo = "nvim-lsp-ts-utils"; 4987 - rev = "1826275ee0fc7fded65e8716b231db86a17080e3"; 4988 - sha256 = "129zjds8c69hahv307wnpdsjzfh29flsr99lkjma8dymsan96lb0"; 4987 + rev = "441385952278a1df5c91ba0d33e72c148d4654d3"; 4988 + sha256 = "199nf01hjxdalc76xhr306xyisvydjwqhhw40nx1krq9k3xy4z39"; 4989 4989 }; 4990 4990 meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; 4991 4991 }; 4992 4992 4993 4993 nvim-lspconfig = buildVimPluginFrom2Nix { 4994 4994 pname = "nvim-lspconfig"; 4995 - version = "2022-04-28"; 4995 + version = "2022-05-12"; 4996 4996 src = fetchFromGitHub { 4997 4997 owner = "neovim"; 4998 4998 repo = "nvim-lspconfig"; 4999 - rev = "21102d5e3b6ffc6929d60418581ac1a29ee9eddd"; 5000 - sha256 = "16hdgxzbb31253178kyy1j77qpskq80dlnfdfxj2bh761zc237rn"; 4999 + rev = "9ff2a06cebd4c8c3af5259d713959ab310125bec"; 5000 + sha256 = "1jsrbimif11jvkdbb7kz6c9iykbql5kzx4q4p0njfdqmvkn4ybdb"; 5001 5001 }; 5002 5002 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5003 5003 }; ··· 5016 5016 5017 5017 nvim-metals = buildVimPluginFrom2Nix { 5018 5018 pname = "nvim-metals"; 5019 - version = "2022-04-27"; 5019 + version = "2022-05-13"; 5020 5020 src = fetchFromGitHub { 5021 5021 owner = "scalameta"; 5022 5022 repo = "nvim-metals"; 5023 - rev = "6bc7681b489b04feff394f832984d14510e97e47"; 5024 - sha256 = "0syq7sp836glngfjv6ykbwa14bwyn1zr929ma2sxs5jvqj5sbzvx"; 5023 + rev = "7c74065823e073749652749a7a89c78c81749acf"; 5024 + sha256 = "1rbmksw2ia8rvfjncvyy77bcx1zwpragw1k9fv7n50xhpjsgahvc"; 5025 5025 }; 5026 5026 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 5027 5027 }; 5028 5028 5029 5029 nvim-neoclip-lua = buildVimPluginFrom2Nix { 5030 5030 pname = "nvim-neoclip.lua"; 5031 - version = "2022-04-29"; 5031 + version = "2022-05-11"; 5032 5032 src = fetchFromGitHub { 5033 5033 owner = "AckslD"; 5034 5034 repo = "nvim-neoclip.lua"; 5035 - rev = "f3ff1645de5d2fd46ac8ffe86e440b7f3ae1fd11"; 5036 - sha256 = "0ayi9sfdj1rcz9zlib65vbpaf9jyyfkiqsadiq6ldgwj9wx6vvi4"; 5035 + rev = "5520ad7b24b0c4bc0b5371eef2492e787aa59a3a"; 5036 + sha256 = "050p667xqi15fddvyr2p11xpsr9sl2mapfi5x6g9ca4x1738jgsv"; 5037 5037 }; 5038 5038 meta.homepage = "https://github.com/AckslD/nvim-neoclip.lua/"; 5039 5039 }; ··· 5052 5052 5053 5053 nvim-notify = buildVimPluginFrom2Nix { 5054 5054 pname = "nvim-notify"; 5055 - version = "2022-05-01"; 5055 + version = "2022-05-04"; 5056 5056 src = fetchFromGitHub { 5057 5057 owner = "rcarriga"; 5058 5058 repo = "nvim-notify"; 5059 - rev = "ebe78bea13b60640816658ae798a199bd5118eb1"; 5060 - sha256 = "0mzbqfc5kw4qa9hifjkzf3i1adz38g1lg9m6395y3bc6zry73dxp"; 5059 + rev = "d4a01eedeb2e6c3d453f3aa0f1b303dd8611dc71"; 5060 + sha256 = "0i0nikpin6fab7x72mzjsxsfgpyjnk4fhmw7il51i2igllxm5krs"; 5061 5061 }; 5062 5062 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 5063 5063 }; ··· 5076 5076 5077 5077 nvim-scrollview = buildVimPluginFrom2Nix { 5078 5078 pname = "nvim-scrollview"; 5079 - version = "2022-04-13"; 5079 + version = "2022-05-05"; 5080 5080 src = fetchFromGitHub { 5081 5081 owner = "dstein64"; 5082 5082 repo = "nvim-scrollview"; 5083 - rev = "ba6c48bf7919dd48a371e7b9c683b8858053e885"; 5084 - sha256 = "1pziragklk4zciy2q07llsa6ldqv090ynwclzrgwsv79l1rf9mzm"; 5083 + rev = "696b56fec29bad6daadafdc067955cd6010933bc"; 5084 + sha256 = "1j9i36ww0krq3k01l2rzd6qc29kc6w5cnl2lvb4m24n3k5rakjd4"; 5085 5085 }; 5086 5086 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 5087 5087 }; 5088 5088 5089 5089 nvim-solarized-lua = buildVimPluginFrom2Nix { 5090 5090 pname = "nvim-solarized-lua"; 5091 - version = "2022-01-22"; 5091 + version = "2022-05-13"; 5092 5092 src = fetchFromGitHub { 5093 5093 owner = "ishan9299"; 5094 5094 repo = "nvim-solarized-lua"; 5095 - rev = "995ae7e0baa4b5d42c094ffa7d6b3fe9459397c3"; 5096 - sha256 = "01dsbdlizckvw34hwzq7jkdhsv5008jzj9p140c177zv4qps2kll"; 5095 + rev = "a6af3a33cfe78c97f3adb2d86d3165bb25fb0ec3"; 5096 + sha256 = "1z7wi72dqrw0fgsnm0s7zmxb72cq564dqvvpl1cqgizf4ab2a42a"; 5097 5097 }; 5098 5098 meta.homepage = "https://github.com/ishan9299/nvim-solarized-lua/"; 5099 5099 }; ··· 5124 5124 5125 5125 nvim-tree-lua = buildVimPluginFrom2Nix { 5126 5126 pname = "nvim-tree.lua"; 5127 - version = "2022-05-01"; 5127 + version = "2022-05-10"; 5128 5128 src = fetchFromGitHub { 5129 5129 owner = "kyazdani42"; 5130 5130 repo = "nvim-tree.lua"; 5131 - rev = "483f1550d1c53f7dcf261d40af5f993ffcb8b9c3"; 5132 - sha256 = "1syhjcf9pawc70apbrhrddsxyabqqs60f0s7yc759v6qb64nqshr"; 5131 + rev = "82ec79aac5557c05728d88195fb0d008cacbf565"; 5132 + sha256 = "1xxxapb093mljrw8yr7qm2nij7j0639pfpyc3pv9zgz6ivd4d6xc"; 5133 5133 }; 5134 5134 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 5135 5135 }; 5136 5136 5137 5137 nvim-treesitter = buildVimPluginFrom2Nix { 5138 5138 pname = "nvim-treesitter"; 5139 - version = "2022-05-01"; 5139 + version = "2022-05-13"; 5140 5140 src = fetchFromGitHub { 5141 5141 owner = "nvim-treesitter"; 5142 5142 repo = "nvim-treesitter"; 5143 - rev = "4067351ffd6e5cfd5527873f6db9845e04527b8b"; 5144 - sha256 = "0232nmbp82wjpv3npb4302pmsdfcfs67cgl7775d552zqfr2va9r"; 5143 + rev = "f1373051e554cc4642cda719c8023e4e8508eb2d"; 5144 + sha256 = "1jfcjwyp57scwj164pxzh376mh2i4nx2sxx0gpihl3r4m067gb84"; 5145 5145 }; 5146 5146 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5147 5147 }; 5148 5148 5149 5149 nvim-treesitter-context = buildVimPluginFrom2Nix { 5150 5150 pname = "nvim-treesitter-context"; 5151 - version = "2022-01-12"; 5151 + version = "2022-05-12"; 5152 5152 src = fetchFromGitHub { 5153 - owner = "romgrk"; 5153 + owner = "nvim-treesitter"; 5154 5154 repo = "nvim-treesitter-context"; 5155 - rev = "b7d7aba81683c1cd76141e090ff335bb55332cba"; 5156 - sha256 = "113vvcisnypfbbnw9l9jq0avsh95p286gay3vb60ykfxjfbxsw1q"; 5155 + rev = "a7916523e8107a57021cabae51917b7dae844aa6"; 5156 + sha256 = "0pqc31yp8prq5gkblasyyhf4cxi4gkqglp0jmvqmsax46r82ffz1"; 5157 5157 }; 5158 - meta.homepage = "https://github.com/romgrk/nvim-treesitter-context/"; 5158 + meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 5159 5159 }; 5160 5160 5161 5161 nvim-treesitter-pyfold = buildVimPluginFrom2Nix { ··· 5220 5220 5221 5221 nvim-ts-rainbow = buildVimPluginFrom2Nix { 5222 5222 pname = "nvim-ts-rainbow"; 5223 - version = "2022-04-24"; 5223 + version = "2022-05-09"; 5224 5224 src = fetchFromGitHub { 5225 5225 owner = "p00f"; 5226 5226 repo = "nvim-ts-rainbow"; 5227 - rev = "a7767e2a1761078abb97f6516e45c56147e0952e"; 5228 - sha256 = "0ms95gxvydzf078y8mp2xqinm9bbk750nqc3ayyi26ipqba6f13x"; 5227 + rev = "190f8c83abb29504877b91c84ed3ceb6009ad3bd"; 5228 + sha256 = "1kq54zd1yx6q1ch886jcvhhydbxz9frky9wl60q00q62zgds8vmz"; 5229 5229 }; 5230 5230 meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; 5231 5231 }; ··· 5280 5280 5281 5281 nvimdev-nvim = buildVimPluginFrom2Nix { 5282 5282 pname = "nvimdev.nvim"; 5283 - version = "2022-04-24"; 5283 + version = "2022-05-04"; 5284 5284 src = fetchFromGitHub { 5285 5285 owner = "neovim"; 5286 5286 repo = "nvimdev.nvim"; 5287 - rev = "2bfb1156112267e1ab98c6779fb15cf858bf11b9"; 5288 - sha256 = "1bdx2lmyh9zvqlqah2knkhdnh5n1fcnav4iw0v9ls4845q2qh4i4"; 5287 + rev = "ef38441a7149087366bfc05654e7cc21a83df60e"; 5288 + sha256 = "0chdbsixjw3l6bvqdhf2na2hdwm94lzb66mssafbhgpq328y97wk"; 5289 5289 }; 5290 5290 meta.homepage = "https://github.com/neovim/nvimdev.nvim/"; 5291 5291 }; ··· 5316 5316 5317 5317 octo-nvim = buildVimPluginFrom2Nix { 5318 5318 pname = "octo.nvim"; 5319 - version = "2022-04-26"; 5319 + version = "2022-05-13"; 5320 5320 src = fetchFromGitHub { 5321 5321 owner = "pwntester"; 5322 5322 repo = "octo.nvim"; 5323 - rev = "622ab9feaa735dc0999e567183ce357f3dff080f"; 5324 - sha256 = "00prf7wb1p7daqly08h8l4ak5cmwbr76c5i40a8vfpn660wgj2zg"; 5323 + rev = "f5bd0c0336d6585a18b3ea95b4a40be068c74bbb"; 5324 + sha256 = "1cgkdrnk0yfrls5s4vjvkz0851c5877lmpnkh17nw1zn9rlds165"; 5325 5325 }; 5326 5326 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 5327 5327 }; ··· 5364 5364 5365 5365 onedarkpro-nvim = buildVimPluginFrom2Nix { 5366 5366 pname = "onedarkpro.nvim"; 5367 - version = "2022-04-26"; 5367 + version = "2022-05-13"; 5368 5368 src = fetchFromGitHub { 5369 5369 owner = "olimorris"; 5370 5370 repo = "onedarkpro.nvim"; 5371 - rev = "bca9cfd1dc2e4311659d9ab85e6e7f3c8309a4d7"; 5372 - sha256 = "10xl1hmrkzklsxlbgkazp62h97ff7pz3dczsgx7mk8bzs8cq5433"; 5371 + rev = "1f6e3bbb20f45648f5680606e5e5d5e881133f1f"; 5372 + sha256 = "05vhgrsn8fbmrzc5hn9k34qscvdvrq30rl61lgsw0wsn49685ck9"; 5373 5373 }; 5374 5374 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 5375 5375 }; ··· 5412 5412 5413 5413 orgmode = buildVimPluginFrom2Nix { 5414 5414 pname = "orgmode"; 5415 - version = "2022-05-02"; 5415 + version = "2022-05-13"; 5416 5416 src = fetchFromGitHub { 5417 5417 owner = "nvim-orgmode"; 5418 5418 repo = "orgmode"; 5419 - rev = "1a52ca239c726d62104fad012472c28a00cdcc22"; 5420 - sha256 = "17360m754y0fsxh95pl0zfl8jhhgw4hvk4991kxksrir0v3xsayz"; 5419 + rev = "675e58f6c7a889871911a5dc3e08491fe7b6b8a8"; 5420 + sha256 = "02czyx7gpd85ns2rndx52f5a07iq2qqm2zvhvfnmmmfpz11s26w6"; 5421 5421 }; 5422 5422 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 5423 5423 }; ··· 5556 5556 5557 5557 plenary-nvim = buildNeovimPluginFrom2Nix { 5558 5558 pname = "plenary.nvim"; 5559 - version = "2022-04-17"; 5559 + version = "2022-05-13"; 5560 5560 src = fetchFromGitHub { 5561 5561 owner = "nvim-lua"; 5562 5562 repo = "plenary.nvim"; 5563 - rev = "9069d14a120cadb4f6825f76821533f2babcab92"; 5564 - sha256 = "0pgzi0brqn4kcbv1k5d50xm0bcwaq50sk5jnj3q9ls2pvv7lb9a0"; 5563 + rev = "0a907364b5cd6e3438e230df7add8b9bb5ef6fd3"; 5564 + sha256 = "07k4vlpa1cxg4sxhwg0412ws13djspga16d67lqs545j5pfkgzr0"; 5565 5565 }; 5566 5566 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 5567 5567 }; ··· 5834 5834 5835 5835 refactoring-nvim = buildVimPluginFrom2Nix { 5836 5836 pname = "refactoring.nvim"; 5837 - version = "2022-04-27"; 5837 + version = "2022-05-11"; 5838 5838 src = fetchFromGitHub { 5839 5839 owner = "theprimeagen"; 5840 5840 repo = "refactoring.nvim"; 5841 - rev = "fef309f654906d931f2c714a77f5182fe70ada7d"; 5842 - sha256 = "15y5v702xa2ax35p4sdv5ylkpz06pnrfi0jfp2isbl6z79p6dqv3"; 5841 + rev = "33ac6f3bcfe97447037ded20291d40de34d8912c"; 5842 + sha256 = "1m0bd72pjay9mlmf0lhii7yi4mch77dlqwadlsiyv9qw07w1b1s4"; 5843 5843 }; 5844 5844 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 5845 5845 }; ··· 5870 5870 5871 5871 rest-nvim = buildVimPluginFrom2Nix { 5872 5872 pname = "rest.nvim"; 5873 - version = "2022-05-01"; 5873 + version = "2022-05-13"; 5874 5874 src = fetchFromGitHub { 5875 5875 owner = "NTBBloodbath"; 5876 5876 repo = "rest.nvim"; 5877 - rev = "e5f68db73276c4d4d255f75a77bbe6eff7a476ef"; 5878 - sha256 = "1gkml0101kai4cff2dlk8bv8rhsbiyr55hysvyv46gnxhisd8fy0"; 5877 + rev = "d902996de965d5d491f122e69ba9d03f9c673eb0"; 5878 + sha256 = "05vibdiig6lmiiixnnzc99adi6x4chkx02hqy51llahsdkg7369s"; 5879 5879 }; 5880 5880 meta.homepage = "https://github.com/NTBBloodbath/rest.nvim/"; 5881 5881 }; ··· 5894 5894 5895 5895 rnvimr = buildVimPluginFrom2Nix { 5896 5896 pname = "rnvimr"; 5897 - version = "2022-04-08"; 5897 + version = "2022-05-10"; 5898 5898 src = fetchFromGitHub { 5899 5899 owner = "kevinhwang91"; 5900 5900 repo = "rnvimr"; 5901 - rev = "65705df886624833105f6f146ac4cf8c4d426aad"; 5902 - sha256 = "1xc83qih6pw1g3qrkjzmn3bri0xn8cmqiqykxajd77ijxjaq9xsp"; 5901 + rev = "9c1e490e5ff882e2f930ec015946a0b5b300037e"; 5902 + sha256 = "1msynng52mn47iqfwwi0n6wl37psj67pvyyz9kdb4l9r89ahqxax"; 5903 5903 }; 5904 5904 meta.homepage = "https://github.com/kevinhwang91/rnvimr/"; 5905 5905 }; ··· 5954 5954 5955 5955 rust-tools-nvim = buildVimPluginFrom2Nix { 5956 5956 pname = "rust-tools.nvim"; 5957 - version = "2022-05-01"; 5957 + version = "2022-05-12"; 5958 5958 src = fetchFromGitHub { 5959 5959 owner = "simrat39"; 5960 5960 repo = "rust-tools.nvim"; 5961 - rev = "fe900a3d6028df4e7b7c89e8b0bf05b86af462ac"; 5962 - sha256 = "0mkbq5rk86jz5ckj1bg7z0s5x3j8kcldfc57gdk8r48bjkirds42"; 5961 + rev = "fbfcd9c4b7e40202ccf3db5035ac3c2b15a4413f"; 5962 + sha256 = "1plxhdr7j088nsq361zq35p4wmv9xd9xbgvi3mxr66mmmcm8k0pd"; 5963 5963 }; 5964 5964 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 5965 5965 }; ··· 6123 6123 6124 6124 slimv = buildVimPluginFrom2Nix { 6125 6125 pname = "slimv"; 6126 - version = "2022-04-03"; 6126 + version = "2022-05-09"; 6127 6127 src = fetchFromGitHub { 6128 6128 owner = "kovisoft"; 6129 6129 repo = "slimv"; 6130 - rev = "eb5856c616466b0f463e27a30965ea142003a552"; 6131 - sha256 = "1c4hprzqzxkf0yqkqc8261qr7xk817nm28cp38dw4z1rmjcg1l04"; 6130 + rev = "cba9910aaad90dd5f1cd508ad98adebe2271069c"; 6131 + sha256 = "16zxvwrgiv5fafwm0b75ici35c630466mxdk4dww978152bxahzn"; 6132 6132 }; 6133 6133 meta.homepage = "https://github.com/kovisoft/slimv/"; 6134 6134 }; ··· 6171 6171 6172 6172 sonokai = buildVimPluginFrom2Nix { 6173 6173 pname = "sonokai"; 6174 - version = "2022-04-27"; 6174 + version = "2022-05-10"; 6175 6175 src = fetchFromGitHub { 6176 6176 owner = "sainnhe"; 6177 6177 repo = "sonokai"; 6178 - rev = "9ad83caa675cb5160760bf85dcb951946c994572"; 6179 - sha256 = "02sp13fbz12xbw7jh5l1isim7q66l54xdl82y4x245xh7h6mkvnh"; 6178 + rev = "06b51526ad1db6359ec65ef5326a020bcae46ab9"; 6179 + sha256 = "0yhn3hgqgdp56qcdy18zzhbx8z54g6i39prrbckpxi7mfh0i2lmm"; 6180 6180 }; 6181 6181 meta.homepage = "https://github.com/sainnhe/sonokai/"; 6182 6182 }; ··· 6195 6195 6196 6196 space-vim = buildVimPluginFrom2Nix { 6197 6197 pname = "space-vim"; 6198 - version = "2022-02-15"; 6198 + version = "2022-05-13"; 6199 6199 src = fetchFromGitHub { 6200 6200 owner = "liuchengxu"; 6201 6201 repo = "space-vim"; 6202 - rev = "637390b17a8cd7d154a0d90a5c07612f1538a28e"; 6203 - sha256 = "0f43mspfnch1ifqa9rgvc64dmk0hz3cirz8iicpszmdr0fphq3xs"; 6202 + rev = "36f61f8e7157750f0e93d496d68b46d606d313b7"; 6203 + sha256 = "0pm630rq3ihjr4ikfzh08cpi2ps0qasp6dm8rdrm3zdf5b58i1bz"; 6204 6204 }; 6205 6205 meta.homepage = "https://github.com/liuchengxu/space-vim/"; 6206 6206 }; ··· 6267 6267 6268 6268 splitjoin-vim = buildVimPluginFrom2Nix { 6269 6269 pname = "splitjoin.vim"; 6270 - version = "2022-05-02"; 6270 + version = "2022-05-10"; 6271 6271 src = fetchFromGitHub { 6272 6272 owner = "AndrewRadev"; 6273 6273 repo = "splitjoin.vim"; 6274 - rev = "64f68a641084d18903769ec138b8fab45477bd92"; 6275 - sha256 = "0if7z8yf75d5wamvlk76hxqvax7lrjmiiwdj4bf00j2pla5jydi8"; 6274 + rev = "37f5e795767ff14d2c8bf9cfb4998b9a0317feed"; 6275 + sha256 = "0klfadkqhv8a76qk074h9yll68wbabgsxbbhd4ba58sbv19qz35n"; 6276 6276 fetchSubmodules = true; 6277 6277 }; 6278 6278 meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; ··· 6316 6316 6317 6317 stabilize-nvim = buildVimPluginFrom2Nix { 6318 6318 pname = "stabilize.nvim"; 6319 - version = "2022-03-11"; 6319 + version = "2022-05-09"; 6320 6320 src = fetchFromGitHub { 6321 6321 owner = "luukvbaal"; 6322 6322 repo = "stabilize.nvim"; 6323 - rev = "786c818d7258b783afc192ac287b4365c5596dcf"; 6324 - sha256 = "07fd72p0qch0gfg92vcw3mlh7f8f1dii681qzpngnlk73ghq4ffw"; 6323 + rev = "174dfcd0197ebc7397c854ae8607f9c9e691eef5"; 6324 + sha256 = "1vi1gjkflrkm5fr432r23rbq474h26j9jyagdrkw6mkq3wgh4fcr"; 6325 6325 }; 6326 6326 meta.homepage = "https://github.com/luukvbaal/stabilize.nvim/"; 6327 6327 }; ··· 6352 6352 6353 6353 stylish-nvim = buildVimPluginFrom2Nix { 6354 6354 pname = "stylish.nvim"; 6355 - version = "2022-02-11"; 6355 + version = "2022-02-01"; 6356 6356 src = fetchFromGitHub { 6357 6357 owner = "teto"; 6358 6358 repo = "stylish.nvim"; 6359 - rev = "ea745ebf446410ef3d75f9890b2e7fd59be42e19"; 6360 - sha256 = "1kl2g32ls4s7kpr6395rdmsa7gdzkpfiypphmnxg8n75n0b0mwb3"; 6359 + rev = "279c18b7c35d1f6c650790b88e873e8a8a714f5e"; 6360 + sha256 = "09byh62f4ymkfpspk4sn5y0p9nsn3dphny94qcggfay1vddc3v93"; 6361 6361 }; 6362 6362 meta.homepage = "https://github.com/teto/stylish.nvim/"; 6363 6363 }; ··· 6654 6654 6655 6655 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 6656 6656 pname = "telescope-file-browser.nvim"; 6657 - version = "2022-04-20"; 6657 + version = "2022-05-13"; 6658 6658 src = fetchFromGitHub { 6659 6659 owner = "nvim-telescope"; 6660 6660 repo = "telescope-file-browser.nvim"; 6661 - rev = "ee355b83e00475e11dec82e3ea166f846a392018"; 6662 - sha256 = "1s39si5fifv6bvjk8kzs2zy18ap5q22pfqg68wn5icnp588498hz"; 6661 + rev = "28e75f6cdb63b4903035c8db2845aaddb89f1610"; 6662 + sha256 = "1imyjajrx4irxn3m2plpz9g0crkfyiq5amivhn2mqvawk1l05zy5"; 6663 6663 }; 6664 6664 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 6665 6665 }; ··· 6823 6823 6824 6824 telescope-nvim = buildVimPluginFrom2Nix { 6825 6825 pname = "telescope.nvim"; 6826 - version = "2022-05-02"; 6826 + version = "2022-05-12"; 6827 6827 src = fetchFromGitHub { 6828 6828 owner = "nvim-telescope"; 6829 6829 repo = "telescope.nvim"; 6830 - rev = "23e28d066a55a8e33bff33196f7bd65ea3ecbdbe"; 6831 - sha256 = "1yhc81k57ar58i0pwcwr28jsbkpcn8qqqjv95qcfi4hh14z75wfn"; 6830 + rev = "39b12d84e86f5054e2ed98829b367598ae53ab41"; 6831 + sha256 = "12krg8l13j4rqxqn9jx5nkpfpa3ffh2avv9z687ag7k1axvcak9h"; 6832 6832 }; 6833 6833 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 6834 6834 }; ··· 7004 7004 7005 7005 toggleterm-nvim = buildVimPluginFrom2Nix { 7006 7006 pname = "toggleterm.nvim"; 7007 - version = "2022-04-25"; 7007 + version = "2022-05-11"; 7008 7008 src = fetchFromGitHub { 7009 7009 owner = "akinsho"; 7010 7010 repo = "toggleterm.nvim"; 7011 - rev = "6c7f5dbdd69bc5611a85194ddca83ac2c8ee84d6"; 7012 - sha256 = "1c9hhwb77h6f4g1agkqmp0zccpbbyany2sgack1k9373y4q4c131"; 7011 + rev = "ea21c3ef51868a564eeace357f4a3d429f93efb1"; 7012 + sha256 = "1y8nb5cdlghf37sl872gx1rd28r437vxz94w90ydijin8hswcdqi"; 7013 7013 }; 7014 7014 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 7015 7015 }; ··· 7064 7064 7065 7065 trouble-nvim = buildVimPluginFrom2Nix { 7066 7066 pname = "trouble.nvim"; 7067 - version = "2022-03-18"; 7067 + version = "2022-05-09"; 7068 7068 src = fetchFromGitHub { 7069 7069 owner = "folke"; 7070 7070 repo = "trouble.nvim"; 7071 - rev = "691d490cc4eadc430d226fa7d77aaa84e2e0a125"; 7072 - sha256 = "1d218xxz936q53aknazhnfxhy9ncjyq76dna6y5n87kxn9hzqix1"; 7071 + rev = "da61737d860ddc12f78e638152834487eabf0ee5"; 7072 + sha256 = "1aa45r9z8mghak8f5gymhm875rssi1afs92h0mpnn43y0j76xy31"; 7073 7073 }; 7074 7074 meta.homepage = "https://github.com/folke/trouble.nvim/"; 7075 7075 }; ··· 7148 7148 7149 7149 unicode-vim = buildVimPluginFrom2Nix { 7150 7150 pname = "unicode.vim"; 7151 - version = "2022-04-18"; 7151 + version = "2022-05-05"; 7152 7152 src = fetchFromGitHub { 7153 7153 owner = "chrisbra"; 7154 7154 repo = "unicode.vim"; 7155 - rev = "cc36bfa066d4a773e3152cc3c70051bc23ef2893"; 7156 - sha256 = "1npirr14khfmpvnvbmys98lxhy0yg5ah3270s85b9lp2xhxnkpps"; 7155 + rev = "176963d8e43dd54ff1582cb2374e731b51a7f5d5"; 7156 + sha256 = "030izymxcvs5hw8pqsmlqwxgzdbysh96q7qxk7mb2v15dh8qnv9d"; 7157 7157 }; 7158 7158 meta.homepage = "https://github.com/chrisbra/unicode.vim/"; 7159 7159 }; ··· 7172 7172 7173 7173 urlview-nvim = buildVimPluginFrom2Nix { 7174 7174 pname = "urlview.nvim"; 7175 - version = "2022-04-25"; 7175 + version = "2022-05-07"; 7176 7176 src = fetchFromGitHub { 7177 7177 owner = "axieax"; 7178 7178 repo = "urlview.nvim"; 7179 - rev = "3b637651d5f0de185a0ceac783582692e204b053"; 7180 - sha256 = "1hpm1mhj9n6fnrkr5vpl1x80xgx7f2ic5vy9ndybbsppk2l8jrp4"; 7179 + rev = "92a6ae6f33839222ce4ea58f5cdaf0a3f235caca"; 7180 + sha256 = "0y3l0py0cnvj876xi5kgc7mmbycj7s61mj29ipsmn9bnjvk008yb"; 7181 7181 }; 7182 7182 meta.homepage = "https://github.com/axieax/urlview.nvim/"; 7183 7183 }; ··· 7244 7244 7245 7245 vifm-vim = buildVimPluginFrom2Nix { 7246 7246 pname = "vifm.vim"; 7247 - version = "2022-03-28"; 7247 + version = "2022-05-03"; 7248 7248 src = fetchFromGitHub { 7249 7249 owner = "vifm"; 7250 7250 repo = "vifm.vim"; 7251 - rev = "069349e5dbba9fbb24b88ebedb89f728387fae79"; 7252 - sha256 = "1rrzhg8qpvgvcm9fkr05hmkw95gn37pys0h0d6rii6qhbx9z95vs"; 7251 + rev = "d6ae9ca80284bd7df38b102ba280f0d132129c0f"; 7252 + sha256 = "087ila6rskhd7vi1yqlqmq781gqajh69y4dk7n9f4sza75hb210x"; 7253 7253 }; 7254 7254 meta.homepage = "https://github.com/vifm/vifm.vim/"; 7255 7255 }; ··· 7580 7580 7581 7581 vim-airline = buildVimPluginFrom2Nix { 7582 7582 pname = "vim-airline"; 7583 - version = "2022-04-12"; 7583 + version = "2022-05-06"; 7584 7584 src = fetchFromGitHub { 7585 7585 owner = "vim-airline"; 7586 7586 repo = "vim-airline"; 7587 - rev = "be5bda1f1dbfa4e36b2adabaf3f423adfa66c336"; 7588 - sha256 = "1k0yv95i2kigggmh3dcg9rq6pkh7qcycsv9nm6jshgsfic8ly8n5"; 7587 + rev = "c4655701431a9c79704c827fd88a4783ec946879"; 7588 + sha256 = "1qsr3kkfx5vbhmnym0id2h9mph8bw6g75vwpqfi9vfmbg4fddh3l"; 7589 7589 }; 7590 7590 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 7591 7591 }; ··· 7724 7724 7725 7725 vim-autoformat = buildVimPluginFrom2Nix { 7726 7726 pname = "vim-autoformat"; 7727 - version = "2022-04-21"; 7727 + version = "2022-05-12"; 7728 7728 src = fetchFromGitHub { 7729 7729 owner = "vim-autoformat"; 7730 7730 repo = "vim-autoformat"; 7731 - rev = "544596a21c54ee0888a1f30f3bb31d472432d7d9"; 7732 - sha256 = "19ridsf6vgiknagplfdmbsg23wnl48j7n48z8qa3372x1v30c92p"; 7731 + rev = "c833f1dd0398901f5ad3f5f0ec2e07975e246294"; 7732 + sha256 = "1vafpp3m75dd8c453zq6w8qnapw7h5kpbzdx2s5fpjdn9qrg2g87"; 7733 7733 }; 7734 7734 meta.homepage = "https://github.com/vim-autoformat/vim-autoformat/"; 7735 7735 }; ··· 7952 7952 7953 7953 vim-clap = buildVimPluginFrom2Nix { 7954 7954 pname = "vim-clap"; 7955 - version = "2022-04-27"; 7955 + version = "2022-05-10"; 7956 7956 src = fetchFromGitHub { 7957 7957 owner = "liuchengxu"; 7958 7958 repo = "vim-clap"; 7959 - rev = "7d1fb3baf5b92b707146262713f6fe30d49a2f15"; 7960 - sha256 = "0m7cgiysr95c1lssfsi84z1hhqv8bz32wsazk7jmxxn9j83696s5"; 7959 + rev = "5d0662d8d7e640a1ffb64b1b4dbbc41995391218"; 7960 + sha256 = "0bz6nrjsz1m2ibhbg4zc2z9slqfwnx5q6mc6favf9nw7j821s95g"; 7961 7961 }; 7962 7962 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 7963 7963 }; ··· 8540 8540 8541 8541 vim-eunuch = buildVimPluginFrom2Nix { 8542 8542 pname = "vim-eunuch"; 8543 - version = "2022-05-01"; 8543 + version = "2022-05-06"; 8544 8544 src = fetchFromGitHub { 8545 8545 owner = "tpope"; 8546 8546 repo = "vim-eunuch"; 8547 - rev = "73b5e3fccfb5295e38546318c0d3139874c25efb"; 8548 - sha256 = "1xqx80a1g9r3lxfxb1ahrbfzmm4r6azm8iyc3430nwqx4jg72pp2"; 8547 + rev = "39e0232f490322c5a2d9e24275872f28da496a93"; 8548 + sha256 = "1wp5x5vximysab4c97d7x7y0hnnmycfm9h8mxxzz291ra5yrbbr2"; 8549 8549 }; 8550 8550 meta.homepage = "https://github.com/tpope/vim-eunuch/"; 8551 8551 }; ··· 8660 8660 8661 8661 vim-floaterm = buildVimPluginFrom2Nix { 8662 8662 pname = "vim-floaterm"; 8663 - version = "2022-02-15"; 8663 + version = "2022-05-05"; 8664 8664 src = fetchFromGitHub { 8665 8665 owner = "voldikss"; 8666 8666 repo = "vim-floaterm"; 8667 - rev = "6244d1739aad6682c6c1d5db18c846c342af6e3e"; 8668 - sha256 = "1w0d93wm0xwg8wyvyzdibjmnd1py343mvvzj911byvnm1b52zp7h"; 8667 + rev = "ab7876f86c05c1935eb23a193f4f276132902ac1"; 8668 + sha256 = "10i6akvr1ib2lwh6xwjchmpjzdabj2qs05h8h1ww9mdycj4q1pli"; 8669 8669 }; 8670 8670 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8671 8671 }; ··· 8732 8732 8733 8733 vim-fugitive = buildVimPluginFrom2Nix { 8734 8734 pname = "vim-fugitive"; 8735 - version = "2022-04-26"; 8735 + version = "2022-05-13"; 8736 8736 src = fetchFromGitHub { 8737 8737 owner = "tpope"; 8738 8738 repo = "vim-fugitive"; 8739 - rev = "b7287bd5421da62986d9abf9131509b2c9f918e4"; 8740 - sha256 = "1pk1qlr7lcifffsxm8fqy34p9nizv0n5mc0rl7xb7pr5c98a4vzz"; 8739 + rev = "a8139d37b242c5bc5ceeddc4fcd7dddf2b2c2650"; 8740 + sha256 = "1n22hjg374rs1412v4yvn3jc5nzd2jfsk3vzhaf8i3zv4b6w2vf1"; 8741 8741 }; 8742 8742 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 8743 8743 }; ··· 8828 8828 8829 8829 vim-gitgutter = buildVimPluginFrom2Nix { 8830 8830 pname = "vim-gitgutter"; 8831 - version = "2022-04-25"; 8831 + version = "2022-05-04"; 8832 8832 src = fetchFromGitHub { 8833 8833 owner = "airblade"; 8834 8834 repo = "vim-gitgutter"; 8835 - rev = "988a6dbad9a9777cd94aab18ba7821a41068685b"; 8836 - sha256 = "178jzjwqjd15b3gjdyiay5fw9sv6s7jbzj1sgqfwlg2gm3m7g2fi"; 8835 + rev = "719d4ec06a0fb0aa9f1dfaebcf4f9691e8dc3f73"; 8836 + sha256 = "1mdpds4xpjcwfsm6r9w65hxwjsxm7pcr3dnkfh6v8xx0kyflmijp"; 8837 8837 }; 8838 8838 meta.homepage = "https://github.com/airblade/vim-gitgutter/"; 8839 8839 }; ··· 8852 8852 8853 8853 vim-glsl = buildVimPluginFrom2Nix { 8854 8854 pname = "vim-glsl"; 8855 - version = "2022-02-06"; 8855 + version = "2022-05-10"; 8856 8856 src = fetchFromGitHub { 8857 8857 owner = "tikhomirov"; 8858 8858 repo = "vim-glsl"; 8859 - rev = "28a6dfbcd96095226bee90985b7f12c5679dbbb6"; 8860 - sha256 = "051f0q5bkgp77pz0izh5mvqsmxy0rzlvriwq4j7qzslqk7i850p2"; 8859 + rev = "bfd330a271933c3372fcfa8ce052970746c8e9dd"; 8860 + sha256 = "0nqpg95mh5z0wmiqvc8cfzq1gb99ximc1gbz9bv3x7239f66z5vn"; 8861 8861 }; 8862 8862 meta.homepage = "https://github.com/tikhomirov/vim-glsl/"; 8863 8863 }; ··· 8948 8948 8949 8949 vim-gutentags = buildVimPluginFrom2Nix { 8950 8950 pname = "vim-gutentags"; 8951 - version = "2020-05-22"; 8951 + version = "2022-05-12"; 8952 8952 src = fetchFromGitHub { 8953 8953 owner = "ludovicchabant"; 8954 8954 repo = "vim-gutentags"; 8955 - rev = "50705e8ebb7038b31314f416d1bddd9cb9154049"; 8956 - sha256 = "0vm3bp94kbc28azsmm8505hyd9v1a9isrn5dp47njmj8w17l7725"; 8955 + rev = "b77b8fabcb0b052c32fe17efcc0d44f020975244"; 8956 + sha256 = "0wiqy5m7wvrmr3d2vy5j5lz6wh3z2c2v7amy9ji7prq1gxv3n095"; 8957 8957 }; 8958 8958 meta.homepage = "https://github.com/ludovicchabant/vim-gutentags/"; 8959 8959 }; 8960 8960 8961 8961 vim-hardtime = buildVimPluginFrom2Nix { 8962 8962 pname = "vim-hardtime"; 8963 - version = "2022-03-13"; 8963 + version = "2022-05-06"; 8964 8964 src = fetchFromGitHub { 8965 8965 owner = "takac"; 8966 8966 repo = "vim-hardtime"; 8967 - rev = "5603072377d1f1f26a1561eda9e1884bb5f028ef"; 8968 - sha256 = "13279v9vd083xg6820gh15qxsyhbr7gjf7lzgy8w52xya852xsks"; 8967 + rev = "91177392e9372a1cf09a4b9b79532d2490bd405f"; 8968 + sha256 = "1f8vvm37yk125c0h28jbry9hshd3amrbfxcrg7j9qj9kdkad1zjq"; 8969 8969 }; 8970 8970 meta.homepage = "https://github.com/takac/vim-hardtime/"; 8971 8971 }; ··· 9069 9069 9070 9070 vim-highlightedyank = buildVimPluginFrom2Nix { 9071 9071 pname = "vim-highlightedyank"; 9072 - version = "2022-01-25"; 9072 + version = "2022-05-12"; 9073 9073 src = fetchFromGitHub { 9074 9074 owner = "machakann"; 9075 9075 repo = "vim-highlightedyank"; 9076 - rev = "ff16bf3bac23fb4e17c976f4e1ff7941cd686c8d"; 9077 - sha256 = "0slnykqkbqnncz0vjwhf9p9x8wi5p8xfv485wbip1njd6vqhd965"; 9076 + rev = "f9db473137ca96c6a989ec3e2b7edf8a3189c448"; 9077 + sha256 = "0lj2w9nzqrmw33gcf8k1hf50mpwymhdyyv09mp9phanywg06l1ay"; 9078 9078 }; 9079 9079 meta.homepage = "https://github.com/machakann/vim-highlightedyank/"; 9080 9080 }; ··· 9380 9380 meta.homepage = "https://github.com/google/vim-jsonnet/"; 9381 9381 }; 9382 9382 9383 + vim-jsonpath = buildVimPluginFrom2Nix { 9384 + pname = "vim-jsonpath"; 9385 + version = "2020-06-16"; 9386 + src = fetchFromGitHub { 9387 + owner = "mogelbrod"; 9388 + repo = "vim-jsonpath"; 9389 + rev = "af9c07b87765fc5aee176a894bc91fb04a5e3c47"; 9390 + sha256 = "0l59c6xl4rly7xbfgsqam1rwcyvqhr7lzi3g2jpwirarm823rla9"; 9391 + }; 9392 + meta.homepage = "https://github.com/mogelbrod/vim-jsonpath/"; 9393 + }; 9394 + 9383 9395 vim-jsx-pretty = buildVimPluginFrom2Nix { 9384 9396 pname = "vim-jsx-pretty"; 9385 9397 version = "2021-01-12"; ··· 9538 9550 9539 9551 vim-localvimrc = buildVimPluginFrom2Nix { 9540 9552 pname = "vim-localvimrc"; 9541 - version = "2022-04-06"; 9553 + version = "2022-05-11"; 9542 9554 src = fetchFromGitHub { 9543 9555 owner = "embear"; 9544 9556 repo = "vim-localvimrc"; 9545 - rev = "b0a81e42e6036f716bd9e6b025978dfb7dacaa53"; 9546 - sha256 = "1327i1pamz3bwhj1zyr2bjn142bhp45y1xlv8gs7dm7zyixfksd3"; 9557 + rev = "244a92ceae63b8c23a74022eaf205b431745fcb6"; 9558 + sha256 = "1y56xh4k7zqagsnw86lkm747l1x4i5l95r0jks4j35d1fcmpq81i"; 9547 9559 }; 9548 9560 meta.homepage = "https://github.com/embear/vim-localvimrc/"; 9549 9561 }; ··· 9658 9670 9659 9671 vim-markdown = buildVimPluginFrom2Nix { 9660 9672 pname = "vim-markdown"; 9661 - version = "2022-04-26"; 9673 + version = "2022-05-07"; 9662 9674 src = fetchFromGitHub { 9663 9675 owner = "preservim"; 9664 9676 repo = "vim-markdown"; 9665 - rev = "9068655bb74bb615b3876b4d4d6a1d1141e212f3"; 9666 - sha256 = "0s4ph2c8a1ha0cd95b2lf2i5irf4bwx34929i2c5p3ihk2701fsf"; 9677 + rev = "3a9643961233c2812816078af8bd1eaabc530dce"; 9678 + sha256 = "1yw8d1c5mjkjs93nby9xfx4jwxnb8zq36p1p7ciq808xzks42994"; 9667 9679 }; 9668 9680 meta.homepage = "https://github.com/preservim/vim-markdown/"; 9669 9681 }; 9670 9682 9671 9683 vim-markdown-composer = buildVimPluginFrom2Nix { 9672 9684 pname = "vim-markdown-composer"; 9673 - version = "2022-01-04"; 9685 + version = "2022-05-04"; 9674 9686 src = fetchFromGitHub { 9675 9687 owner = "euclio"; 9676 9688 repo = "vim-markdown-composer"; 9677 - rev = "010ae3667fb0cb4c63c99439d1a8f81ebdcc849e"; 9678 - sha256 = "1hz0xjq0srv3llb4i6n2sw0pi2s0k3qcwyk6az5icrvkfhbnc0kf"; 9689 + rev = "5b79f425ebd28216d9aa472be3ba07cda41d9b24"; 9690 + sha256 = "0i4m2x2cw604aczp1ijnrv0wvh1b9bxg9zh0zmf8kk7b00zc1k5c"; 9679 9691 fetchSubmodules = true; 9680 9692 }; 9681 9693 meta.homepage = "https://github.com/euclio/vim-markdown-composer/"; ··· 9695 9707 9696 9708 vim-matchup = buildVimPluginFrom2Nix { 9697 9709 pname = "vim-matchup"; 9698 - version = "2022-04-20"; 9710 + version = "2022-05-06"; 9699 9711 src = fetchFromGitHub { 9700 9712 owner = "andymass"; 9701 9713 repo = "vim-matchup"; 9702 - rev = "1cb069f2a526682b3ce69610cf7c05511295ad37"; 9703 - sha256 = "09xwkzipsqiyglmyxkz0n6jycwp918mfxazqycy54zwng1c207q1"; 9714 + rev = "485e71120fea7be22f0ba051a05a00675276ced0"; 9715 + sha256 = "0zzn5gspi5811w1drbk362a75q4d697l0ngxgps00bcgvj9l8r6d"; 9704 9716 }; 9705 9717 meta.homepage = "https://github.com/andymass/vim-matchup/"; 9706 9718 }; ··· 10247 10259 10248 10260 vim-plug = buildVimPluginFrom2Nix { 10249 10261 pname = "vim-plug"; 10250 - version = "2022-04-21"; 10262 + version = "2022-05-03"; 10251 10263 src = fetchFromGitHub { 10252 10264 owner = "junegunn"; 10253 10265 repo = "vim-plug"; 10254 - rev = "be55ec46b5ab031805487a9c3e895db57f53010b"; 10255 - sha256 = "03flkm75xp7g4kzwdmvz2dc2r1aqbkyknxbclvp38xk3qwwd5kvh"; 10266 + rev = "8fdabfba0b5a1b0616977a32d9e04b4b98a6016a"; 10267 + sha256 = "046j2cq4s14ys7n5b1lil5sgdis66mydd8bpsidcyq004k3zy2lc"; 10256 10268 }; 10257 10269 meta.homepage = "https://github.com/junegunn/vim-plug/"; 10258 10270 }; ··· 10343 10355 10344 10356 vim-projectionist = buildVimPluginFrom2Nix { 10345 10357 pname = "vim-projectionist"; 10346 - version = "2022-04-27"; 10358 + version = "2022-05-06"; 10347 10359 src = fetchFromGitHub { 10348 10360 owner = "tpope"; 10349 10361 repo = "vim-projectionist"; 10350 - rev = "df1e28dba36e69288173fdcdce122d98538ae782"; 10351 - sha256 = "1xqf3vrw5vy2pg87b840i87pxvi252rlw4q6fyldlzffxygk6zhq"; 10362 + rev = "d4aee3035699b82b3789cee0e88dad0e38c423ab"; 10363 + sha256 = "0gmpqp9wplq8pqrqfpardrj7g5mr16w4q9485wzy9nk86nsqavj9"; 10352 10364 }; 10353 10365 meta.homepage = "https://github.com/tpope/vim-projectionist/"; 10354 10366 }; ··· 10463 10475 10464 10476 vim-quickrun = buildVimPluginFrom2Nix { 10465 10477 pname = "vim-quickrun"; 10466 - version = "2022-04-16"; 10478 + version = "2022-05-08"; 10467 10479 src = fetchFromGitHub { 10468 10480 owner = "thinca"; 10469 10481 repo = "vim-quickrun"; 10470 - rev = "53917966d392d5517d38e63b2520bd2641763778"; 10471 - sha256 = "03cswzwfpjf0v3nnjr0141p03fswsv13kphhac4i3ajal30nh80h"; 10482 + rev = "276f39ab6507659ea8664c51b616a89ca9445875"; 10483 + sha256 = "1gxp1rqc0vxlpmqqwxbdz0mh2pkh3hdcvsxrh1f73ya3vzlgyqfy"; 10472 10484 }; 10473 10485 meta.homepage = "https://github.com/thinca/vim-quickrun/"; 10474 10486 }; ··· 10511 10523 10512 10524 vim-rails = buildVimPluginFrom2Nix { 10513 10525 pname = "vim-rails"; 10514 - version = "2022-04-27"; 10526 + version = "2022-05-06"; 10515 10527 src = fetchFromGitHub { 10516 10528 owner = "tpope"; 10517 10529 repo = "vim-rails"; 10518 - rev = "2f8adae670e3fe262b793885ae5d808d40c6f2ed"; 10519 - sha256 = "1mjjhnrpdcz85r1l3jriqa55ffdkr35c0vf85g3kzg9kqf8g9y0l"; 10530 + rev = "9c92dafe6894aed3fa81df7ac52cdd8e7a8ea9a6"; 10531 + sha256 = "050vkbj1y80f1kcmb0hfd2mha1bb4v3f2bvnazcymxn08z8frww7"; 10520 10532 }; 10521 10533 meta.homepage = "https://github.com/tpope/vim-rails/"; 10522 10534 }; ··· 10547 10559 10548 10560 vim-rhubarb = buildVimPluginFrom2Nix { 10549 10561 pname = "vim-rhubarb"; 10550 - version = "2021-09-13"; 10562 + version = "2022-05-11"; 10551 10563 src = fetchFromGitHub { 10552 10564 owner = "tpope"; 10553 10565 repo = "vim-rhubarb"; 10554 - rev = "977b3ccbad1f7e5370354ae409fb2ea4a7ce2058"; 10555 - sha256 = "1vvjj3ql2dm3dniscxjmr5h9kfx005bgdxc1ppz6yi2q9spmchqg"; 10566 + rev = "ab0d42bb31b3317aa66dd1c0b506837cc6ca2835"; 10567 + sha256 = "0qv2ppmxpy72gb8ivz5cx19b4y8si4v428d9mmlx9q7mv9q4wmhq"; 10556 10568 }; 10557 10569 meta.homepage = "https://github.com/tpope/vim-rhubarb/"; 10558 10570 }; ··· 10787 10799 10788 10800 vim-slime = buildVimPluginFrom2Nix { 10789 10801 pname = "vim-slime"; 10790 - version = "2022-01-13"; 10802 + version = "2022-05-11"; 10791 10803 src = fetchFromGitHub { 10792 10804 owner = "jpalardy"; 10793 10805 repo = "vim-slime"; 10794 - rev = "0ea9b35882155996171fd15a5227e673ce2d2c60"; 10795 - sha256 = "1palz3375v400fjlxwpc4drm36rnffz86mdkyqdqssvm41fv0wkx"; 10806 + rev = "6e4b81303968f37346925d6907b96ef07788cc82"; 10807 + sha256 = "1z0nmfmn7ijj3hih4dbi1iq3dc6gpprck3fmidhmkv6vms041nx4"; 10796 10808 }; 10797 10809 meta.homepage = "https://github.com/jpalardy/vim-slime/"; 10798 10810 }; ··· 10823 10835 10824 10836 vim-smoothie = buildVimPluginFrom2Nix { 10825 10837 pname = "vim-smoothie"; 10826 - version = "2021-02-07"; 10838 + version = "2022-05-04"; 10827 10839 src = fetchFromGitHub { 10828 10840 owner = "psliwka"; 10829 10841 repo = "vim-smoothie"; 10830 - rev = "10fd0aa57d176718bc2c570f121ab523c4429a25"; 10831 - sha256 = "18zn29mkgdiddn3il393xzg7hpa0x25yvais1l29jq2711sg4rdc"; 10842 + rev = "b440f139a55cb5161cde3478729f6603d9d20d81"; 10843 + sha256 = "1hvv440zb3bwx1v8nyy3bk9vnhlbjy2a1hdfcmc37rghbni1kp0k"; 10832 10844 }; 10833 10845 meta.homepage = "https://github.com/psliwka/vim-smoothie/"; 10834 10846 }; ··· 10871 10883 10872 10884 vim-snippets = buildVimPluginFrom2Nix { 10873 10885 pname = "vim-snippets"; 10874 - version = "2022-04-30"; 10886 + version = "2022-05-12"; 10875 10887 src = fetchFromGitHub { 10876 10888 owner = "honza"; 10877 10889 repo = "vim-snippets"; 10878 - rev = "45c8e00d0bae9056713097ea655d76d463b66f10"; 10879 - sha256 = "0zng2k82kwm0av1dyar6y44cq79v5khy07swwp6kmkz5vjj9y4dd"; 10890 + rev = "6f270bb2d26c38765ff2243e9337c65f8a96a28b"; 10891 + sha256 = "0jzafsk1ri2jfn26k962x2g6ygqrkrf3kwvd1ikx0hql0nhcvrrq"; 10880 10892 }; 10881 10893 meta.homepage = "https://github.com/honza/vim-snippets/"; 10882 10894 }; ··· 11292 11304 11293 11305 vim-tpipeline = buildVimPluginFrom2Nix { 11294 11306 pname = "vim-tpipeline"; 11295 - version = "2022-04-19"; 11307 + version = "2022-05-11"; 11296 11308 src = fetchFromGitHub { 11297 11309 owner = "vimpostor"; 11298 11310 repo = "vim-tpipeline"; 11299 - rev = "7a5d832ca3086aeddc607304a2dde481b66f1719"; 11300 - sha256 = "0dnlq3iv7dq798m1llpn72b4kwvxrw7q7bgkswhaqhgcsb1xjxwz"; 11311 + rev = "2c4417db1d549f96a6a944bf4d85d8c797ab4a31"; 11312 + sha256 = "1rzhzl4w9k11maa1iy0a8sss3319jvp1viqqh0l7kgg13595acnk"; 11301 11313 }; 11302 11314 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 11303 11315 }; ··· 11352 11364 11353 11365 vim-ultest = buildVimPluginFrom2Nix { 11354 11366 pname = "vim-ultest"; 11355 - version = "2022-04-09"; 11367 + version = "2022-05-05"; 11356 11368 src = fetchFromGitHub { 11357 11369 owner = "rcarriga"; 11358 11370 repo = "vim-ultest"; 11359 - rev = "a99eb0bdf7d901d538b5dd724e2ab3a958c1799c"; 11360 - sha256 = "0mlb2qvxw7ds0b6jrxw5224mz1bzlzb4vly2wnygzrl6mhsk2xyw"; 11371 + rev = "6978fd32e3ca2c1c5591884eea0d57a7ee43d212"; 11372 + sha256 = "19dphm7xgfc0xvxrlys21zkp7ixbx62p11x6ms6xmwm8cjjh64pc"; 11361 11373 }; 11362 11374 meta.homepage = "https://github.com/rcarriga/vim-ultest/"; 11363 11375 }; ··· 11424 11436 11425 11437 vim-visual-multi = buildVimPluginFrom2Nix { 11426 11438 pname = "vim-visual-multi"; 11427 - version = "2022-04-08"; 11439 + version = "2022-05-06"; 11428 11440 src = fetchFromGitHub { 11429 11441 owner = "mg979"; 11430 11442 repo = "vim-visual-multi"; 11431 - rev = "d5b820655e17c6ccd363885e5614652e4cffae95"; 11432 - sha256 = "0mp8g825l0zcj0gh3v5wa29dq5hhx0f96ijsd5bxhh694vppx8q5"; 11443 + rev = "046d0d5ac5fb2888447d1dd8b7e52fd0314f9766"; 11444 + sha256 = "17masfjxrhjcfqmlgf1jpmmz18j8vb4n88dl34rry6c3abiraprj"; 11433 11445 }; 11434 11446 meta.homepage = "https://github.com/mg979/vim-visual-multi/"; 11435 11447 }; ··· 11797 11809 11798 11810 vimtex = buildVimPluginFrom2Nix { 11799 11811 pname = "vimtex"; 11800 - version = "2022-05-02"; 11812 + version = "2022-05-12"; 11801 11813 src = fetchFromGitHub { 11802 11814 owner = "lervag"; 11803 11815 repo = "vimtex"; 11804 - rev = "9ffbe63a2055b59b09b18b1cd682e0b2703cc898"; 11805 - sha256 = "151ilpd7360rhpi3nyi5dfky814zx9zc4fa82wj6bnkcwy1b4k0c"; 11816 + rev = "dfaca59bbbf0079ab1b4f159337ae7f17d1b5289"; 11817 + sha256 = "1sbsirrl822dp9z1vynkhzbd2yhid9vcr9yzp540qrp6flcvf10q"; 11806 11818 }; 11807 11819 meta.homepage = "https://github.com/lervag/vimtex/"; 11808 11820 }; ··· 11893 11905 11894 11906 which-key-nvim = buildVimPluginFrom2Nix { 11895 11907 pname = "which-key.nvim"; 11896 - version = "2022-03-18"; 11908 + version = "2022-05-04"; 11897 11909 src = fetchFromGitHub { 11898 11910 owner = "folke"; 11899 11911 repo = "which-key.nvim"; 11900 - rev = "a3c19ec5754debb7bf38a8404e36a9287b282430"; 11901 - sha256 = "00kkl785ifx5sg49q65d4yzdgf08gyriqrils5n4zhz4pksd5z1a"; 11912 + rev = "bd4411a2ed4dd8bb69c125e339d837028a6eea71"; 11913 + sha256 = "0vf685xgdb967wmvffk1pfrvbhg1jkvzp1kb7r0vs90mg8gpv1aj"; 11902 11914 }; 11903 11915 meta.homepage = "https://github.com/folke/which-key.nvim/"; 11904 11916 }; ··· 11917 11929 11918 11930 wildfire-vim = buildVimPluginFrom2Nix { 11919 11931 pname = "wildfire.vim"; 11920 - version = "2021-05-10"; 11932 + version = "2022-05-05"; 11921 11933 src = fetchFromGitHub { 11922 11934 owner = "gcmt"; 11923 11935 repo = "wildfire.vim"; 11924 - rev = "fa91b732fd1c5acd23b7b32d5fbbc884eedafc8d"; 11925 - sha256 = "15gikqmpaf5c6687kgc5ib57pw7gyvxaihdv5549s7p2xkkbcl24"; 11936 + rev = "b371e2b1d938ae0e164146136051de164ecb9aa5"; 11937 + sha256 = "0lpv10330818aza0fv8adzswnq8jq47z043p6gqfn7b7h2visy5p"; 11926 11938 }; 11927 11939 meta.homepage = "https://github.com/gcmt/wildfire.vim/"; 11928 11940 }; ··· 12098 12110 12099 12111 zoxide-vim = buildVimPluginFrom2Nix { 12100 12112 pname = "zoxide.vim"; 12101 - version = "2021-12-10"; 12113 + version = "2022-05-07"; 12102 12114 src = fetchFromGitHub { 12103 12115 owner = "nanotee"; 12104 12116 repo = "zoxide.vim"; 12105 - rev = "c4e96f34b1b3160d6b6a6519588024412df27cd7"; 12106 - sha256 = "0zisr1r1z9ys0jkab1lvwy4klwkay07p0095f03r9qydnig8jgsm"; 12117 + rev = "5062d4c17ff873eeed88cabe317d7ee1a43c5731"; 12118 + sha256 = "1chq7fnygvb1wm7v0rg8cf0czn1q1i59kggg0jdvrnwf0f6m7nb4"; 12107 12119 }; 12108 12120 meta.homepage = "https://github.com/nanotee/zoxide.vim/"; 12109 12121 }; ··· 12122 12134 12123 12135 chad = buildVimPluginFrom2Nix { 12124 12136 pname = "chad"; 12125 - version = "2022-05-02"; 12137 + version = "2022-05-13"; 12126 12138 src = fetchFromGitHub { 12127 12139 owner = "ms-jpq"; 12128 12140 repo = "chadtree"; 12129 - rev = "820c1913a77a12d080e3436e60a491327664589b"; 12130 - sha256 = "0lc5ldg65h4jqb6qkz22avzv4x2jmciabcsy47a9wkzy2l9hlvza"; 12141 + rev = "b6ac01c187359e305a2df8caea540f4527b91ab2"; 12142 + sha256 = "14rp8h59bnwpi86nnkmhxsgyszhhd26fzra7wjni2agdhf2410zp"; 12131 12143 }; 12132 12144 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 12133 12145 }; ··· 12194 12206 12195 12207 rose-pine = buildVimPluginFrom2Nix { 12196 12208 pname = "rose-pine"; 12197 - version = "2022-04-25"; 12209 + version = "2022-05-06"; 12198 12210 src = fetchFromGitHub { 12199 12211 owner = "rose-pine"; 12200 12212 repo = "neovim"; 12201 - rev = "da67a549cf5d67e15618cc3001f1e07724a1597f"; 12202 - sha256 = "1dfccfjy67b7269zypkdi7x6fcsdgw2qmd44kyk66qr6f9q4yng2"; 12213 + rev = "aa69b6a3d77068542c613d96419c3241a9fcbf46"; 12214 + sha256 = "0x9pn109my5rw627qmf5xawy3n40l9n3l6hp6np77y2rqlpn8m3y"; 12203 12215 }; 12204 12216 meta.homepage = "https://github.com/rose-pine/neovim/"; 12205 12217 };
+21
pkgs/applications/editors/vim/plugins/neovim-require-check-hook.sh
··· 1 + # Setup hook for checking whether Python imports succeed 2 + echo "Sourcing neovim-require-check-hook.sh" 3 + 4 + neovimRequireCheckHook () { 5 + echo "Executing neovimRequireCheckHook" 6 + 7 + if [ -n "$nvimRequireCheck" ]; then 8 + echo "Check whether the following module can be imported: $nvimRequireCheck" 9 + 10 + # editorconfig-checker-disable 11 + export HOME="$TMPDIR" 12 + @nvimBinary@ -es --headless -n -u NONE -i NONE --clean -V1 \ 13 + --cmd "set rtp+=$out" \ 14 + --cmd "lua require('$nvimRequireCheck')" 15 + fi 16 + } 17 + 18 + echo "Using neovimRequireCheckHook" 19 + preDistPhases+=" neovimRequireCheckHook" 20 + 21 +
+5 -2
pkgs/applications/editors/vim/plugins/overrides.nix
··· 327 327 sed -Ei lua/plenary/curl.lua \ 328 328 -e 's@(command\s*=\s*")curl(")@\1${curl}/bin/curl\2@' 329 329 ''; 330 + 331 + doInstallCheck = true; 332 + nvimRequireCheck = "plenary"; 330 333 }); 331 334 332 335 gruvbox-nvim = super.gruvbox-nvim.overrideAttrs (old: { ··· 842 845 libiconv 843 846 ]; 844 847 845 - cargoSha256 = "035v8mm8v7aj8qwhvxsp6k0afn05gi2xb1achzsvm0m4a8a9xs65"; 848 + cargoSha256 = "0l1x7kprnxa95pbf8ml9ixmj0cmbnnv6nd0v6qry8j67rx8plpmp"; 846 849 }; 847 850 in 848 851 '' ··· 971 974 vim-markdown-composer-bin = rustPlatform.buildRustPackage rec { 972 975 pname = "vim-markdown-composer-bin"; 973 976 inherit (super.vim-markdown-composer) src version; 974 - cargoSha256 = "03d7kap6vha1jmyfrjqaja5439x6mhnvjjbz3rmxb3x4dpppbpj1"; 977 + cargoSha256 = "0q0i6kyihswrjrfdj4p3z54b779sdg2wz38z943ypj6dqphhcklx"; 975 978 }; 976 979 in 977 980 super.vim-markdown-composer.overrideAttrs (oldAttrs: rec {
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 533 533 https://github.com/luukvbaal/stabilize.nvim/,, 534 534 https://github.com/eigenfoo/stan-vim/,, 535 535 https://github.com/darfink/starsearch.vim/,, 536 + https://github.com/teto/stylish.nvim/,HEAD, 536 537 https://github.com/lambdalisue/suda.vim/,, 537 538 https://github.com/ervandew/supertab/,, 538 539 https://github.com/ur4ltz/surround.nvim/,, ··· 786 787 https://github.com/heavenshell/vim-jsdoc/,, 787 788 https://github.com/elzr/vim-json/,, 788 789 https://github.com/google/vim-jsonnet/,, 790 + https://github.com/mogelbrod/vim-jsonpath/,HEAD, 789 791 https://github.com/MaxMEllon/vim-jsx-pretty/,, 790 792 https://github.com/peitalin/vim-jsx-typescript/,, 791 793 https://github.com/knubie/vim-kitty-navigator/,,
+14 -2
pkgs/applications/editors/vim/plugins/vim-utils.nix
··· 531 531 }; 532 532 } ./vim-command-check-hook.sh) {}; 533 533 534 + neovimRequireCheckHook = callPackage ({ neovim-unwrapped }: 535 + makeSetupHook { 536 + name = "neovim-require-check-hook"; 537 + deps = [ neovim-unwrapped ]; 538 + substitutions = { 539 + nvimBinary = "${neovim-unwrapped}/bin/nvim"; 540 + inherit rtpPath; 541 + }; 542 + } ./neovim-require-check-hook.sh) {}; 543 + 534 544 inherit (import ./build-vim-plugin.nix { 535 - inherit lib stdenv rtpPath vim vimGenDocHook vimCommandCheckHook; 545 + inherit lib stdenv rtpPath vim vimGenDocHook vimCommandCheckHook neovimRequireCheckHook; 536 546 }) buildVimPlugin buildVimPluginFrom2Nix; 537 547 538 548 539 549 # TODO placeholder to ease working on automatic plugin detection 540 550 # this should be a luarocks "flat" install with appropriate vim hooks 541 - buildNeovimPluginFrom2Nix = buildVimPluginFrom2Nix; 551 + buildNeovimPluginFrom2Nix = attrs: let drv = (buildVimPluginFrom2Nix attrs); in drv.overrideAttrs(oa: { 552 + nativeBuildInputs = oa.nativeBuildInputs ++ [ neovimRequireCheckHook ]; 553 + }); 542 554 543 555 # used to figure out which python dependencies etc. neovim needs 544 556 requiredPlugins = {
+4 -5
pkgs/applications/emulators/ryujinx/default.nix
··· 58 58 pulseaudio 59 59 ]; 60 60 61 + makeWrapperArgs = [ 62 + "--suffix PATH : ${lib.getBin ffmpeg}" 63 + ]; 64 + 61 65 patches = [ 62 66 ./appdir.patch # Ryujinx attempts to write to the nix store. This patch redirects it to "~/.config/Ryujinx" on Linux. 63 67 ]; ··· 66 70 # workaround for https://github.com/Ryujinx/Ryujinx/issues/2349 67 71 mkdir -p $out/lib/sndio-6 68 72 ln -s ${sndio}/lib/libsndio.so $out/lib/sndio-6/libsndio.so.6 69 - 70 - # Ryujinx tries to use ffmpeg from PATH 71 - makeWrapperArgs+=( 72 - --suffix PATH : ${lib.makeBinPath [ ffmpeg ]} 73 - ) 74 73 ''; 75 74 76 75 preFixup = ''
+3 -1
pkgs/applications/emulators/wine/base.nix
··· 175 175 done 176 176 ''; 177 177 178 - enableParallelBuilding = true; 178 + # Until https://github.com/NixOS/nixpkgs/pull/172617 is applied, 179 + # parallel builds do not always work because of a bug in dlltool. 180 + enableParallelBuilding = false; 179 181 180 182 # https://bugs.winehq.org/show_bug.cgi?id=43530 181 183 # https://github.com/NixOS/nixpkgs/issues/31989
+7 -7
pkgs/applications/emulators/wine/sources.nix
··· 46 46 47 47 unstable = fetchurl rec { 48 48 # NOTE: Don't forget to change the SHA256 for staging as well. 49 - version = "7.4"; 49 + version = "7.8"; 50 50 url = "https://dl.winehq.org/wine/source/7.x/wine-${version}.tar.xz"; 51 - sha256 = "sha256-co6GbW5JzpKioMUUMz6f8Ivb9shvXvTmGAFDuNK31BY="; 51 + sha256 = "sha256-j3bpyWtQ8qyOJOXe7fo+DZWWpXBnCSJvZalMahYAGbg="; 52 52 inherit (stable) gecko32 gecko64 patches; 53 53 54 54 mono = fetchurl rec { 55 - version = "7.1.1"; 55 + version = "7.2.0"; 56 56 url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; 57 - sha256 = "sha256-ncjlYDt7xkNU65SuTqD2ghQkdno/9E/w0Z40akkMEeo="; 57 + sha256 = "sha256-Xwbq+646SezDHfzqd3B1vUTwzBJuT7Tijs76ButDYyM="; 58 58 }; 59 59 }; 60 60 61 61 staging = fetchFromGitHub rec { 62 62 # https://github.com/wine-staging/wine-staging/releases 63 63 inherit (unstable) version; 64 - sha256 = "0vlj3b8bnidyhlgkjrnlbah3878zjy3s557vbp16qka42zjaa51q"; 64 + sha256 = "sha256-payP+lx/aGZErGbkpogNMgsE393e7F2VGrllDKu/Lws="; 65 65 owner = "wine-staging"; 66 66 repo = "wine-staging"; 67 67 rev = "v${version}"; ··· 84 84 85 85 winetricks = fetchFromGitHub rec { 86 86 # https://github.com/Winetricks/winetricks/releases 87 - version = "20210825"; 88 - sha256 = "sha256-exMhj3dS8uXCEgOaWbftaq94mBOmtZIXsXb9xNX5ha8="; 87 + version = "20220411"; 88 + sha256 = "sha256-FjH10nZDYbqXI6/vKpZJKfv2maXSVkahNDf5UTU3eyU="; 89 89 owner = "Winetricks"; 90 90 repo = "winetricks"; 91 91 rev = version;
+3 -3
pkgs/applications/graphics/rnote/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "rnote"; 25 - version = "0.5.1-hotfix-1"; 25 + version = "0.5.3"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "flxzt"; 29 29 repo = "rnote"; 30 30 rev = "v${version}"; 31 31 fetchSubmodules = true; 32 - hash = "sha256-Oq/RKeKICyImSPr4GSNjPXZWtuRQ7+9nRfl9MmC+UYI="; 32 + hash = "sha256-v4cca4tSv//VFUvOfemkueELxlez2TdtynqbzjCTlB4="; 33 33 }; 34 34 35 35 cargoDeps = rustPlatform.fetchCargoTarball { 36 36 inherit src; 37 37 name = "${pname}-${version}"; 38 - hash = "sha256-gdVy+7xSQVkI84Ta6KLOLR9UUsDoD2Cd0cuNU+OXf2M="; 38 + hash = "sha256-sK8GOLxNG4mu45oQSaFi467DHYt00Pxu3vMM6Po/YqI="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+14 -32
pkgs/applications/misc/authenticator/default.nix
··· 3 3 , fetchFromGitLab 4 4 , fetchpatch 5 5 , appstream-glib 6 + , clang 6 7 , desktop-file-utils 7 8 , meson 8 9 , ninja 9 10 , pkg-config 10 - , python3 11 11 , rustPlatform 12 12 , wrapGAppsHook 13 13 , gdk-pixbuf ··· 15 15 , gst_all_1 16 16 , gtk4 17 17 , libadwaita 18 + , libclang 18 19 , openssl 20 + , pipewire 19 21 , sqlite 20 22 , wayland 21 23 , zbar ··· 23 25 24 26 stdenv.mkDerivation rec { 25 27 pname = "authenticator"; 26 - version = "4.0.3"; 28 + version = "4.1.1"; 27 29 28 30 src = fetchFromGitLab { 29 31 domain = "gitlab.gnome.org"; 30 32 owner = "World"; 31 33 repo = "Authenticator"; 32 34 rev = version; 33 - sha256 = "0fvs76f3fm5pxn7wg6sjbqpgip5w2j7xrh4siasdcl2bx6vsld8b"; 35 + hash = "sha256-wl7wyj0vVDkOB7XKQFOEFzCmffTsrUsaM83fWgZ6tG0="; 34 36 }; 35 37 36 38 cargoDeps = rustPlatform.fetchCargoTarball { 37 39 inherit src; 38 40 name = "${pname}-${version}"; 39 - sha256 = "1s97jyszxf24rs3ni11phiyvmp1wm8sicb0rh1jgwz4bn1cnakx4"; 41 + hash = "sha256-3SzemDjLsZUXPPtSlDMBQXQf5P3Sz8caJL73mHRv1js="; 40 42 }; 41 43 42 - postPatch = '' 43 - patchShebangs build-aux 44 - ''; 45 - 46 44 nativeBuildInputs = [ 47 45 appstream-glib 46 + clang 48 47 desktop-file-utils 49 48 meson 50 49 ninja 51 50 pkg-config 52 - python3 53 51 wrapGAppsHook 54 52 ] ++ (with rustPlatform; [ 55 53 cargoSetupHook ··· 62 60 glib 63 61 gst_all_1.gstreamer 64 62 gst_all_1.gst-plugins-base 65 - 66 - # gst-plugins-good needs gtk4 support: 67 - # https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/767 68 - # We copy the way it is built from the Flatpak: 69 - # https://gitlab.gnome.org/World/Authenticator/-/blob/master/build-aux/com.belmoussaoui.Authenticator.Devel.json 70 - (gst_all_1.gst-plugins-good.overrideAttrs (old: { 71 - patches = old.patches or [ ] ++ [ 72 - "${src}/build-aux/767.patch" 73 - ]; 74 - mesonFlags = old.mesonFlags ++ [ 75 - "-Dgtk3=disabled" 76 - "-Dgtk4=enabled" 77 - "-Dgtk4-experiments=true" 78 - ]; 79 - buildInputs = old.buildInputs ++ [ 80 - gtk4 81 - ]; 82 - })) 83 - 84 63 (gst_all_1.gst-plugins-bad.override { enableZbar = true; }) 85 64 gtk4 86 65 libadwaita 87 66 openssl 67 + pipewire 88 68 sqlite 89 69 wayland 90 70 zbar 91 71 ]; 92 72 93 - meta = with lib; { 94 - broken = true; # https://gitlab.gnome.org/World/Authenticator/-/issues/271 73 + LIBCLANG_PATH = "${lib.getLib libclang}/lib"; 74 + 75 + meta = { 95 76 description = "Two-factor authentication code generator for GNOME"; 96 77 homepage = "https://gitlab.gnome.org/World/Authenticator"; 97 - license = licenses.gpl3Plus; 98 - maintainers = with maintainers; [ dotlambda ]; 78 + license = lib.licenses.gpl3Plus; 79 + maintainers = with lib.maintainers; [ dotlambda ]; 80 + platforms = lib.platforms.linux; 99 81 }; 100 82 }
+33 -13
pkgs/applications/misc/bibletime/default.nix
··· 1 - { lib, mkDerivation, fetchurl, cmake, pkg-config, sword, boost, clucene_core 2 - , qtbase, qttools, qtsvg, perlPackages, docbook_xml_dtd_45 3 - , docbook_xsl_ns }: 1 + { lib, mkDerivation 2 + , fetchFromGitHub 3 + , cmake 4 + , docbook_xml_dtd_45 5 + , pkg-config 6 + , wrapQtAppsHook 7 + , boost 8 + , clucene_core_2 9 + , docbook_xsl_ns 10 + , perlPackages 11 + , qtbase 12 + , qtsvg 13 + , qttools 14 + , sword 15 + }: 4 16 5 17 mkDerivation rec { 6 18 pname = "bibletime"; 7 19 version = "3.0.2"; 8 20 9 - src = fetchurl { 10 - url = "https://github.com/bibletime/bibletime/releases/download/v${version}/${pname}-${version}.tar.xz"; 11 - sha256 = "sha256-/JNjnU/DGD4YRtrKzX7t6MgNCZYihdgTJc+Jbr9IYJ4="; 21 + src = fetchFromGitHub { 22 + owner = "bibletime"; 23 + repo = "bibletime"; 24 + rev = "v${version}"; 25 + hash = "sha256-8X5LkquALFnG0yRayZYjeymHDcOzINBv0MXeVBsOnfI="; 12 26 }; 13 27 14 - nativeBuildInputs = [ cmake pkg-config docbook_xml_dtd_45 ]; 28 + nativeBuildInputs = [ 29 + cmake 30 + docbook_xml_dtd_45 31 + pkg-config 32 + wrapQtAppsHook 33 + ]; 34 + 15 35 buildInputs = [ 16 - sword 17 36 boost 18 - clucene_core 37 + clucene_core_2 38 + perlPackages.Po4a 19 39 qtbase 40 + qtsvg 20 41 qttools 21 - qtsvg 22 - perlPackages.Po4a 42 + sword 23 43 ]; 24 44 25 45 preConfigure = '' 26 - export CLUCENE_HOME=${clucene_core}; 46 + export CLUCENE_HOME=${clucene_core_2}; 27 47 export SWORD_HOME=${sword}; 28 48 ''; 29 49 ··· 35 55 ]; 36 56 37 57 meta = with lib; { 38 - description = "A Qt4 Bible study tool"; 58 + description = "A powerful cross platform Bible study tool"; 39 59 homepage = "http://www.bibletime.info/"; 40 60 platforms = platforms.linux; 41 61 license = licenses.gpl2Plus;
+6
pkgs/applications/misc/cataract/build.nix
··· 26 26 sed -i 's|#include <exiv2/exif.hpp>|#include <exiv2/exiv2.hpp>|' src/jpeg-utils.cpp 27 27 ''; 28 28 29 + # Add workaround for -fno-common toolchains like upstream gcc-10 to 30 + # avoid build failures like: 31 + # ld: stats.o:/build/cataract-675e647/src/stats.h:24: multiple definition of 32 + # `stats_images'; cgg.o:/build/cataract-675e647/src/stats.h:24: first defined here 33 + NIX_CFLAGS_COMPILE = "-fcommon"; 34 + 29 35 installPhase = '' 30 36 mkdir $out/{bin,share} -p 31 37 cp src/cgg{,-dirgen} $out/bin/
+4
pkgs/applications/networking/browsers/chromium/common.nix
··· 160 160 ./patches/no-build-timestamps.patch 161 161 # For bundling Widevine (DRM), might be replaceable via bundle_widevine_cdm=true in gnFlags: 162 162 ./patches/widevine-79.patch 163 + ] ++ optionals (versionRange "102" "103") [ 164 + # https://dawn-review.googlesource.com/c/dawn/+/88582 165 + # Wrap get_gitHash in try-catch to prevent failures in tarball builds. 166 + ./patches/m102-fix-dawn_version_generator-failure.patch 163 167 ]; 164 168 165 169 postPatch = optionalString (chromiumVersionAtLeast "102") ''
+43
pkgs/applications/networking/browsers/chromium/patches/m102-fix-dawn_version_generator-failure.patch
··· 1 + From e9ffd084ec1ff9f7bfc86879732953dc58256958 Mon Sep 17 00:00:00 2001 2 + From: Loko Kung <lokokung@google.com> 3 + Date: Tue, 3 May 2022 00:28:53 +0000 4 + Subject: [PATCH] Wrap get_gitHash in try-catch to prevent failures in tarball 5 + builds. 6 + 7 + Bug: chromium:1321370 8 + Change-Id: If39d2236d1b4d965f7bd189f6bd1cdc70436c41d 9 + Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/88582 10 + Commit-Queue: Loko Kung <lokokung@google.com> 11 + Reviewed-by: Austin Eng <enga@chromium.org> 12 + Kokoro: Kokoro <noreply+kokoro@google.com> 13 + (cherry picked from commit 03ddfbb81fb4127ca37ea53e70fcb34fe851e24e) 14 + --- 15 + third_party/dawn/generator/dawn_version_generator.py | 13 ++++++++----- 16 + 1 file changed, 8 insertions(+), 5 deletions(-) 17 + 18 + diff --git a/third_party/dawn/generator/dawn_version_generator.py b/third_party/dawn/generator/dawn_version_generator.py 19 + index 1907e88da..3c1927bee 100644 20 + --- a/third_party/dawn/generator/dawn_version_generator.py 21 + +++ b/third_party/dawn/generator/dawn_version_generator.py 22 + @@ -23,11 +23,14 @@ def get_git(): 23 + 24 + 25 + def get_gitHash(dawnDir): 26 + - result = subprocess.run([get_git(), 'rev-parse', 'HEAD'], 27 + - stdout=subprocess.PIPE, 28 + - cwd=dawnDir) 29 + - if result.returncode == 0: 30 + - return result.stdout.decode('utf-8').strip() 31 + + try: 32 + + result = subprocess.run([get_git(), "rev-parse", "HEAD"], 33 + + stdout=subprocess.PIPE, 34 + + cwd=dawnDir) 35 + + if result.returncode == 0: 36 + + return result.stdout.decode("utf-8").strip() 37 + + except Exception: 38 + + return "" 39 + # No hash was available (possibly) because the directory was not a git checkout. Dawn should 40 + # explicitly handle its absenece and disable features relying on the hash, i.e. caching. 41 + return '' 42 + -- 43 + 2.36.0
+9 -9
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 19 19 } 20 20 }, 21 21 "beta": { 22 - "version": "102.0.5005.40", 23 - "sha256": "1max5ndvl59j2hlv9k88dmadr4q05q1clzlc6zba0gcbvqx5q9jb", 24 - "sha256bin64": "1byqx9w0hqwk3vizdas3dylbm69108bnq4xlm0mp1p1gh37h1642", 22 + "version": "102.0.5005.49", 23 + "sha256": "16r9mrsagy8lspr4pcrzfpw0vw0ym9m7n41a9yipjhm2arlhw5b2", 24 + "sha256bin64": "0lyk6rd9c1gyvxsmq1bl7asr7carzyaan306ddvwxsy5rfh53jxa", 25 25 "deps": { 26 26 "gn": { 27 27 "version": "2022-04-14", ··· 32 32 } 33 33 }, 34 34 "dev": { 35 - "version": "103.0.5042.0", 36 - "sha256": "0wm8m1mff8gb0x7whif16gvmhibgc8ndygnawkwq3g4fvninb65h", 37 - "sha256bin64": "0vzmpi36a86kgxhdxvbqbn7i1wf2annar1mi15gra1cjpz3lf9kh", 35 + "version": "103.0.5056.0", 36 + "sha256": "1mvi7yc38cxn39wqm8ybrn862gaw293rb6lwcszc6rmzwd9jmd29", 37 + "sha256bin64": "06371adaz8llzfjykc72vjvpy3xrgvqzz9kdrr82jdx1pjdbv29d", 38 38 "deps": { 39 39 "gn": { 40 - "version": "2022-05-02", 40 + "version": "2022-05-09", 41 41 "url": "https://gn.googlesource.com/gn", 42 - "rev": "53ef169800760fdc09f0773bf380fe99eaeab339", 43 - "sha256": "08i7qc4qvf8gb3vryajvww75wk653fybf1bb2k40r8i07znhy78r" 42 + "rev": "bf4e17dc67b2a2007475415e3f9e1d1cf32f6e35", 43 + "sha256": "0d2lb4alsx32zsdw3jxpxbzal350mim237p2y984h4r6fd1ddzyi" 44 44 } 45 45 } 46 46 },
+20 -3
pkgs/applications/networking/browsers/firefox/common.nix
··· 23 23 # build time 24 24 , autoconf 25 25 , cargo 26 + , dump_syms 26 27 , makeWrapper 27 28 , nodejs 28 29 , perl ··· 174 175 175 176 inherit src unpackPhase meta; 176 177 178 + outputs = [ 179 + "out" 180 + "symbols" 181 + ]; 182 + 177 183 # Add another configure-build-profiling run before the final configure phase if we build with pgo 178 184 preConfigurePhases = lib.optionals pgoSupport [ 179 185 "configurePhase" ··· 206 212 nativeBuildInputs = [ 207 213 autoconf 208 214 cargo 215 + dump_syms 209 216 gnum4 210 217 llvmPackagesBuildBuild.bintools 211 218 makeWrapper ··· 242 249 # Set consistent remoting name to ensure wmclass matches with desktop file 243 250 export MOZ_APP_REMOTINGNAME="${binaryName}" 244 251 245 - # Use our own python 246 - export MACH_USE_SYSTEM_PYTHON=1 247 - 248 252 # AS=as in the environment causes build failure 249 253 # https://bugzilla.mozilla.org/show_bug.cgi?id=1497286 250 254 unset AS 251 255 256 + '' + lib.optionalString (lib.versionAtLeast version "100.0") '' 257 + # Use our own python 258 + export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system 259 + '' + lib.optionalString (lib.versionOlder version "100.0") '' 260 + # Use our own python 261 + export MACH_USE_SYSTEM_PYTHON=1 262 + 252 263 '' + lib.optionalString (lib.versionAtLeast version "95.0") '' 253 264 # RBox WASM Sandboxing 254 265 export WASM_CC=${pkgsCross.wasi32.stdenv.cc}/bin/${pkgsCross.wasi32.stdenv.cc.targetPrefix}cc ··· 424 435 # tests were disabled in configureFlags 425 436 doCheck = false; 426 437 438 + # Generate build symbols once after the final build 439 + # https://firefox-source-docs.mozilla.org/crash-reporting/uploading_symbol.html 427 440 preInstall = '' 441 + ./mach buildsymbols 442 + mkdir -p $symbols/ 443 + cp mozobj/dist/*.crashreporter-symbols.zip $symbols/ 444 + 428 445 cd mozobj 429 446 ''; 430 447
+3 -3
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 1 { 2 - "packageVersion": "100.0-2", 2 + "packageVersion": "100.0-3", 3 3 "source": { 4 - "rev": "100.0-2", 5 - "sha256": "0pr7fb91zw5qlnfvaavzksd3c2xzgn1344mmfnz9yx2g42vcyi7d" 4 + "rev": "100.0-3", 5 + "sha256": "1n99amk6ngxa7wipc402gffqjv4qmgbaahpz3xydfarxw8gk37pl" 6 6 }, 7 7 "firefox": { 8 8 "version": "100.0",
+1 -1
pkgs/applications/networking/browsers/netsurf/libnsutils.nix
··· 21 21 ]; 22 22 23 23 meta = with lib; { 24 - homepage = "https://www.netsurf-browser.org/projects/${libname}/"; 24 + homepage = "https://www.netsurf-browser.org/"; 25 25 description = "Generalised utility library for netsurf browser"; 26 26 license = licenses.mit; 27 27 maintainers = [ maintainers.vrthra maintainers.AndersonTorres ];
+7 -3
pkgs/applications/networking/browsers/netsurf/libutf8proc.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 2 5 , buildsystem 3 6 }: 4 7 ··· 9 12 10 13 src = fetchurl { 11 14 url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; 12 - sha256 = "sha256-AasdaYnBx3VQkNskw/ZOSflcVgrknCa+xRQrrGgCxHI="; 15 + hash = "sha256-AasdaYnBx3VQkNskw/ZOSflcVgrknCa+xRQrrGgCxHI="; 13 16 }; 14 17 15 18 nativeBuildInputs = [ pkg-config ]; 19 + 16 20 buildInputs = [ buildsystem ]; 17 21 18 22 makeFlags = [ ··· 21 25 ]; 22 26 23 27 meta = with lib; { 24 - homepage = "https://www.netsurf-browser.org/projects/${libname}/"; 28 + homepage = "https://www.netsurf-browser.org/"; 25 29 description = "UTF8 Processing library for netsurf browser"; 26 30 license = licenses.mit; 27 31 maintainers = [ maintainers.vrthra maintainers.AndersonTorres ];
+5 -5
pkgs/applications/networking/cluster/talosctl/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 2 let 3 3 # look for GO_LDFLAGS getting set in the Makefile 4 - version = "1.0.4"; 5 - sha256 = "sha256-kO48MRQDQGDUvFfsxAt+CAHn2EGU44NMpSKDWnNwAdk="; 6 - vendorSha256 = "sha256-QcD5MKQO51ZZ/NvVIiAmDsN6wLI2N8YkhA387KB77W8="; 7 - pkgsVersion = "v1.0.0-10-gbf81bd2"; 8 - extrasVersion = "v1.0.0-2-gc5d3ab0"; 4 + version = "1.0.5"; 5 + sha256 = "sha256-xgzIbhgV1AAUa0tooYtzUMqK4Co3PvWQ0YbZuf0JgFE="; 6 + vendorSha256 = "sha256-Gp30qCGV+EaJ1lvfleZHRWVL6rdSj0mvpumWsqr9IT0="; 7 + pkgsVersion = "v1.0.0-17-g7567bf4"; 8 + extrasVersion = "v1.0.0-3-g6327c36"; 9 9 in 10 10 buildGoModule rec { 11 11 pname = "talosctl";
+2 -2
pkgs/applications/networking/instant-messengers/cinny/default.nix
··· 4 4 configOverrides = writeText "cinny-config-overrides.json" (builtins.toJSON conf); 5 5 in stdenv.mkDerivation rec { 6 6 pname = "cinny"; 7 - version = "2.0.0"; 7 + version = "2.0.2"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/ajbura/cinny/releases/download/v${version}/cinny-v${version}.tar.gz"; 11 - sha256 = "sha256-tM3YA0GW8Z24gt8t9dOyr10GCINodAB0b4/gD7jfgOM="; 11 + sha256 = "sha256-qVnNVJK/Y76cZTh8QNeSNHDxHA/Ekbt7X6mKYkYAPNU="; 12 12 }; 13 13 14 14 installPhase = ''
+7 -7
pkgs/applications/networking/instant-messengers/schildichat/pin.json
··· 1 1 { 2 - "version": "1.10.4-sc.1", 3 - "rev": "v1.10.4-sc.1", 4 - "srcHash": "0sxibzskbw9pa6wmbk1y3n7p74cfj9zvm2hsw76sp6wfac1wnbwl", 5 - "webYarnHash": "1z8xr35gh74y2iv9kfk6d6b6f3iclcrpkdds5q7rh2irpf14fwpw", 6 - "jsSdkYarnHash": "1cwvb0hwq19dh2937fmcbfvnkkfmalk9wrxf1yv81nsbyjnx86di", 7 - "reactSdkYarnHash": "0j4rxg11q35idfzvjrpmyrwkz9yqgzpwps3xqx1k4qcs844jjs9f", 8 - "desktopYarnHash": "0akmgib212gkygvs2snn9c43k3ika3ipg85d480j3hqyb6yxwqmn" 2 + "version": "1.10.12-sc.1", 3 + "rev": "v1.10.12-sc.1", 4 + "srcHash": "1rpfax6xx731w59a2i7v6jr17l3rnrn79d666f0cjchg36nkqqg9", 5 + "webYarnHash": "0m5dnz3m68iz94siwmavzj50wxd6w6wanjsm1zhq76lgymgcbqc2", 6 + "jsSdkYarnHash": "1k1jvavbqr7vcbdaxc6yqiq5254kxhywn1s2zndrfny7ap8z5c1c", 7 + "reactSdkYarnHash": "0cz7pgrbysljmhpf4m0wqwqjqijxahl3wz5qhczlkj46dvq6qyxb", 8 + "desktopYarnHash": "09ri87ynfgxrv22sykggiy6nlcf20qwj7zj9qq0rz3c2acr6g9mn" 9 9 }
-5
pkgs/applications/networking/instant-messengers/schildichat/schildichat-web.nix
··· 78 78 buildPhase = '' 79 79 runHook preBuild 80 80 81 - pushd matrix-react-sdk 82 - ../element-web/node_modules/.bin/reskindex -h ../element-web/src/header 83 - popd 84 - 85 81 pushd element-web 86 82 node scripts/copy-res.js 87 - node_modules/.bin/reskindex -h ../element-web/src/header 88 83 node_modules/.bin/webpack --progress --mode production 89 84 popd 90 85
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 24 24 25 25 in stdenv.mkDerivation rec { 26 26 pname = "signal-desktop"; 27 - version = "5.42.0"; # Please backport all updates to the stable channel. 27 + version = "5.43.0"; # Please backport all updates to the stable channel. 28 28 # All releases have a limited lifetime and "expire" 90 days after the release. 29 29 # When releases "expire" the application becomes unusable until an update is 30 30 # applied. The expiration date for the current release can be extracted with: ··· 34 34 35 35 src = fetchurl { 36 36 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 37 - sha256 = "sha256-xjSj7eKaDV8WB0SiPb4orxKK8mV2a2EWiMBK7BE8mgU="; 37 + sha256 = "sha256-DYJ3WZbaalKhQXhVQO3qhJiGj92Cc+pwRDx/YBIi6gg="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+4 -4
pkgs/applications/networking/netperf/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "netperf"; 5 - version = "20180613"; 5 + version = "20210121"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "HewlettPackard"; 9 9 repo = "netperf"; 10 - rev = "bcb868bde7f0203bbab69609f65d4088ba7398db"; 11 - sha256 = "1wbbgdvhadd3qs3afv6i777argdpcyxkwz4yv6aqp223n8ki6dm8"; 10 + rev = "3bc455b23f901dae377ca0a558e1e32aa56b31c4"; 11 + sha256 = "s4G1ZN+6LERdEMDkc+12ZQgTi6K+ppUYUCGn4faCS9c="; 12 12 }; 13 13 14 14 buildInputs = lib.optional (with stdenv.hostPlatform; isx86 && isLinux) libsmbios; ··· 22 22 meta = { 23 23 description = "Benchmark to measure the performance of many different types of networking"; 24 24 homepage = "http://www.netperf.org/netperf/"; 25 - license = "Hewlett-Packard BSD-like license"; 25 + license = lib.licenses.mit; 26 26 27 27 platforms = lib.platforms.unix; 28 28 maintainers = [ lib.maintainers.mmlb ];
+5
pkgs/applications/networking/twtxt/default.nix
··· 23 23 24 24 checkInputs = [ pytestCheckHook tox ]; 25 25 26 + disabledTests = [ 27 + # Disable test using relative date and time 28 + "test_tweet_relative_datetime" 29 + ]; 30 + 26 31 meta = with lib; { 27 32 description = "Decentralised, minimalist microblogging service for hackers"; 28 33 homepage = "https://github.com/buckket/twtxt";
+9
pkgs/applications/printing/pappl/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 + , fetchpatch 2 3 , avahi 3 4 , cups 4 5 , gnutls ··· 20 21 rev = "v${version}"; 21 22 sha256 = "sha256-FsmR0fFb9bU9G3oUyJU1eDLcoZ6OQ2//TINlPrW6lU0="; 22 23 }; 24 + 25 + patches = [ 26 + (fetchpatch { 27 + name = "file-offset-bits-64-linux.patch"; 28 + url = "https://github.com/michaelrsweet/pappl/commit/7ec4ce4331b6637c54a37943269e05d15ff6dd47.patch"; 29 + sha256 = "sha256-x5lriopWw6Mn2qjv19flsleEzPMHU4jYWRy0y6hTL5k="; 30 + }) 31 + ]; 23 32 24 33 outputs = [ "out" "dev" ]; 25 34
+8 -2
pkgs/applications/radio/rtl_433/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkg-config 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, fetchpatch 2 2 , libusb1, rtl-sdr, soapysdr-with-plugins 3 3 }: 4 4 ··· 13 13 sha256 = "sha256-KoDKyI7KDdGSe79ZTuL9ObKnOJsqTN4wrMq+/cvQ/Xk="; 14 14 }; 15 15 16 + patches = [( fetchpatch { 17 + name = "CVE-2022-27419"; 18 + url = "https://github.com/merbanan/rtl_433/commit/37455483889bd1c641bdaafc493d1cc236b74904.patch"; 19 + sha256 = "172jndh8x5nlcbx2jp5y8fgfxsawwfz95037pcjp170gf93ijy88"; 20 + })]; 21 + 16 22 nativeBuildInputs = [ pkg-config cmake ]; 17 23 18 24 buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ]; ··· 23 29 description = "Decode traffic from devices that broadcast on 433.9 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz"; 24 30 homepage = "https://github.com/merbanan/rtl_433"; 25 31 license = licenses.gpl2Plus; 26 - maintainers = with maintainers; [ earldouglas ]; 32 + maintainers = with maintainers; [ earldouglas markuskowa ]; 27 33 platforms = platforms.all; 28 34 }; 29 35
+6
pkgs/applications/science/chemistry/chemtool/default.nix
··· 24 24 fig2dev 25 25 ]; 26 26 27 + # Workaround build on -fno-common toolchains like upstream gcc-10. 28 + # Otherwise built fails as: 29 + # ld: inout.o:/build/chemtool-1.6.14/ct1.h:279: multiple definition of 30 + # `outtype'; draw.o:/build/chemtool-1.6.14/ct1.h:279: first defined here 31 + NIX_CFLAGS_COMPILE = "-fcommon"; 32 + 27 33 preFixup = '' 28 34 gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ fig2dev ]}") 29 35 '';
+3 -3
pkgs/applications/science/electronics/alliance/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "alliance"; 7 - version = "unstable-2021-09-15"; 7 + version = "unstable-2022-01-13"; 8 8 9 9 src = fetchFromGitLab { 10 10 domain = "gitlab.lip6.fr"; 11 11 owner = "vlsi-eda"; 12 12 repo = "alliance"; 13 - rev = "5e83c92d0307cce9d599f7099fb0023f81d26d65"; 14 - sha256 = "Vd3MTT4eKn4FMt0/F4fQUPcWq25kH0FpeGxQUOetKPY="; 13 + rev = "ebece102e15c110fc79f1da50524c68fd9523f0c"; 14 + hash = "sha256-NGtE3ZmN9LrgXG4NIKrp7dFRVzrKMoudlPUtYYKrZjY="; 15 15 }; 16 16 17 17 prePatch = "cd alliance/src";
+51
pkgs/applications/science/math/primecount/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , primesieve 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "primecount"; 10 + version = "7.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "kimwalisch"; 14 + repo = "primecount"; 15 + rev = "v${version}"; 16 + hash = "sha256-hxnn1uiGSB6XRC7yK+SXTwTsJfjhemWXsMNhhL7Ghek="; 17 + }; 18 + 19 + nativeBuildInputs = [ cmake ]; 20 + 21 + buildInputs = [ primesieve ]; 22 + 23 + cmakeFlags = [ 24 + "-DBUILD_LIBPRIMESIEVE=ON" 25 + "-DBUILD_PRIMECOUNT=ON" 26 + "-DBUILD_SHARED_LIBS=ON" 27 + "-DBUILD_STATIC_LIBS=OFF" 28 + "-DBUILD_TESTS=ON" 29 + ]; 30 + 31 + meta = with lib; { 32 + homepage = "https://github.com/kimwalisch/primecount"; 33 + description = "Fast prime counting function implementations"; 34 + longDescription = '' 35 + primecount is a command-line program and C/C++ library that counts the 36 + primes below an integer x ≤ 10^31 using highly optimized implementations 37 + of the combinatorial prime counting algorithms. 38 + 39 + primecount includes implementations of all important combinatorial prime 40 + counting algorithms known up to this date all of which have been 41 + parallelized using OpenMP. primecount contains the first ever open source 42 + implementations of the Deleglise-Rivat algorithm and Xavier Gourdon's 43 + algorithm (that works). primecount also features a novel load balancer 44 + that is shared amongst all implementations and that scales up to hundreds 45 + of CPU cores. primecount has already been used to compute several prime 46 + counting function world records. 47 + ''; 48 + license = licenses.bsd2; 49 + inherit (primesieve.meta) maintainers platforms; 50 + }; 51 + }
+36
pkgs/applications/science/math/primesieve/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "primesieve"; 9 + version = "7.9"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "kimwalisch"; 13 + repo = "primesieve"; 14 + rev = "v${version}"; 15 + hash = "sha256-lwT+adKFoNI125y5FuJMovtMh8sFi9oqMLYGLabzrCI="; 16 + }; 17 + 18 + nativeBuildInputs = [ cmake ]; 19 + 20 + meta = with lib; { 21 + homepage = "https://primesieve.org/"; 22 + description = "Fast C/C++ prime number generator"; 23 + longDescription = '' 24 + primesieve is a command-line program and C/C++ library for quickly 25 + generating prime numbers. It is very cache efficient, it detects your 26 + CPU's L1 & L2 cache sizes and allocates its main data structures 27 + accordingly. It is also multi-threaded by default, it uses all available 28 + CPU cores whenever possible i.e. if sequential ordering is not 29 + required. primesieve can generate primes and prime k-tuplets up to 264. 30 + ''; 31 + license = licenses.bsd2; 32 + maintainers = teams.sage.members ++ 33 + (with maintainers; [ abbradar AndersonTorres ]); 34 + platforms = platforms.unix; 35 + }; 36 + }
+1 -1
pkgs/applications/science/math/wolfram-engine/default.nix
··· 101 101 # Fix the installation script 102 102 patchShebangs MathInstaller 103 103 substituteInPlace MathInstaller \ 104 - --replace "`hostname`" "" \ 104 + --replace '`hostname`' "" \ 105 105 --replace "chgrp" "# chgrp" \ 106 106 --replace "chown" ": # chown" 107 107
+6 -3
pkgs/applications/search/recoll/default.nix
··· 35 35 36 36 mkDerivation rec { 37 37 pname = "recoll"; 38 - version = "1.31.0"; 38 + version = "1.32.0"; 39 39 40 40 src = fetchurl { 41 41 url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz"; 42 - sha256 = "sha256-TtkfohzeT0HO6ywCMNxrODW1DnJg5KMFkx9AbDfQt+c="; 42 + sha256 = "sha256-4kt6g5MVZTyYLSH7q2z72nzAsU6fatC0vTebEKhSA6E="; 43 43 }; 44 44 45 - configureFlags = [ "--enable-recollq" "--disable-webkit" ] 45 + configureFlags = [ "--enable-recollq" "--disable-webkit" "--without-systemd" ] 46 46 ++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ] 47 47 ++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]); 48 48 ··· 87 87 done 88 88 '' + lib.optionalString stdenv.isLinux '' 89 89 substituteInPlace $f --replace '"lyx"' '"${lib.getBin lyx}/bin/lyx"' 90 + '' + lib.optionalString (stdenv.isDarwin && withGui) '' 91 + mkdir $out/Applications 92 + mv $out/bin/recoll.app $out/Applications 90 93 ''; 91 94 92 95 enableParallelBuilding = true;
+3 -3
pkgs/applications/version-management/git-and-tools/delta/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "delta"; 14 - version = "0.12.1"; 14 + version = "0.13.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "dandavison"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-khW+Ri+MZytMZcd2tRXhc/D6kOOhk+LP6MsS+GijjQM="; 20 + sha256 = "sha256-5h4epV3RORZiynW1fkFLImqPunC3PZ/YzLiSrzescww="; 21 21 }; 22 22 23 - cargoSha256 = "sha256-SD1y+l86wqlJUUaG4ae4PXXSMS+4CPth3F4pLYbXMVc="; 23 + cargoSha256 = "sha256-4dPTcrT8Gx3WfT0sauqnCSmcGE9LrgIqgHrY5l503ZA="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26
+26 -11
pkgs/applications/version-management/git-and-tools/gfold/default.nix
··· 1 - { lib, fetchFromGitHub, gitMinimal, makeWrapper, rustPlatform }: 1 + { fetchFromGitHub 2 + , gitMinimal 3 + , gfold 4 + , lib 5 + , libiconv 6 + , makeWrapper 7 + , rustPlatform 8 + , Security 9 + , stdenv 10 + , testVersion 11 + }: 2 12 3 - rustPlatform.buildRustPackage rec { 13 + let 4 14 pname = "gfold"; 5 - version = "3.0.0"; 15 + version = "4.0.0"; 16 + in 17 + rustPlatform.buildRustPackage { 18 + inherit pname version; 6 19 7 20 src = fetchFromGitHub { 8 21 owner = "nickgerace"; 9 22 repo = pname; 10 23 rev = version; 11 - sha256 = "0ss6vfrc6h3jlh5qilh82psd3vdnfawf1wl4cf64mfm4hm9dda63"; 24 + sha256 = "1yh5173qhi9bd41zss9k21nm0xnr2sa918kvlyr5xvzhq47rrwz5"; 12 25 }; 13 26 14 - cargoSha256 = "09ywwgxm8l1p0jypp65zpqryjnb2g4gririf1dmqb9148dsj29x2"; 27 + cargoSha256 = "sha256-o2fMIlj+veTmhfqi7BVpxr3520SOwWLmVS2UU83EVjo="; 15 28 16 - nativeBuildInputs = [ makeWrapper ]; 29 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 17 30 18 - postInstall = '' 19 - wrapProgram "$out/bin/gfold" --prefix PATH : "${gitMinimal}/bin" 20 - ''; 31 + passthru.tests.version = testVersion { 32 + package = gfold; 33 + command = "gfold --version"; 34 + inherit version; 35 + }; 21 36 22 37 meta = with lib; { 23 - inherit (src.meta) homepage; 24 38 description = 25 - "A tool to help keep track of your Git repositories, written in Rust"; 39 + "CLI tool to help keep track of your Git repositories, written in Rust"; 40 + homepage = "https://github.com/nickgerace/gfold"; 26 41 license = licenses.asl20; 27 42 maintainers = [ maintainers.shanesveller ]; 28 43 platforms = platforms.unix;
+3 -22
pkgs/applications/video/epgstation/default.nix
··· 23 23 sha256 = "K1cAvmqWEfS6EY4MKAtjXb388XLYHtouxNM70PWgFig="; 24 24 }; 25 25 26 - workaround-opencollective-buildfailures = stdenv.mkDerivation { 27 - # FIXME: This should be removed when a complete fix is available 28 - # https://github.com/svanderburg/node2nix/issues/145 29 - name = "workaround-opencollective-buildfailures"; 30 - dontUnpack = true; 31 - installPhase = '' 32 - mkdir -p $out/bin 33 - touch $out/bin/opencollective-postinstall 34 - chmod +x $out/bin/opencollective-postinstall 35 - ''; 36 - }; 37 - 38 26 client = nodePackages.epgstation-client.override (drv: { 39 27 # FIXME: remove this option if possible 40 28 # ··· 49 37 server = nodePackages.epgstation.override (drv: { 50 38 inherit src; 51 39 52 - bypassCache = false; 53 - 54 40 # This is set to false to keep devDependencies at build time. Build time 55 41 # dependencies are pruned afterwards. 56 42 production = false; 57 43 58 - buildInputs = [ bash ]; 59 - nativeBuildInputs = [ 60 - nodejs 61 - workaround-opencollective-buildfailures 44 + buildInputs = (drv.buildInputs or [ ]) ++ [ bash ]; 45 + nativeBuildInputs = (drv.nativeBuildInputs or [ ]) ++ [ 62 46 makeWrapper 63 - ] ++ (with nodePackages; [ 64 - node-pre-gyp 65 - node-gyp-build 66 - ]); 47 + ]; 67 48 68 49 preRebuild = '' 69 50 # Fix for not being able to connect to mysql using domain sockets.
+41 -14
pkgs/applications/window-managers/oroborus/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config 2 - , freetype, fribidi 3 - , libSM, libICE, libXt, libXaw, libXmu 4 - , libXext, libXft, libXpm, libXrandr 5 - , libXrender, xorgproto, libXinerama }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , freetype 5 + , fribidi 6 + , libICE 7 + , libSM 8 + , libXaw 9 + , libXext 10 + , libXft 11 + , libXinerama 12 + , libXmu 13 + , libXpm 14 + , libXrandr 15 + , libXrender 16 + , libXt 17 + , pkg-config 18 + , xorgproto 19 + }: 6 20 7 - with lib; 8 21 stdenv.mkDerivation rec { 9 - 10 22 pname = "oroborus"; 11 23 version = "2.0.20"; 12 24 13 - nativeBuildInputs = [ pkg-config ]; 14 - buildInputs = [ freetype fribidi libSM libICE libXt libXaw libXmu libXext 15 - libXft libXpm libXrandr libXrender xorgproto libXinerama ]; 16 - 17 25 src = fetchurl { 18 26 url = "mirror://debian/pool/main/o/oroborus/oroborus_${version}.tar.gz"; 19 - sha256 = "12bvk8x8rfnymbfbwmdcrd9g8m1zxbcq7rgvfdkjr0gnpi0aa82j"; 27 + hash = "sha256-UiClQLz2gSxnc/vlg9nqP1T0UsusVb7cqt66jDqae4k=a"; 20 28 }; 21 29 22 - meta = { 30 + nativeBuildInputs = [ pkg-config ]; 31 + 32 + buildInputs = [ 33 + freetype 34 + fribidi 35 + libICE 36 + libSM 37 + libXaw 38 + libXext 39 + libXft 40 + libXinerama 41 + libXmu 42 + libXpm 43 + libXrandr 44 + libXrender 45 + libXt 46 + xorgproto 47 + ]; 48 + 49 + meta = with lib; { 50 + homepage = "https://web.archive.org/web/20191129172107/https://www.oroborus.org/"; 23 51 description = "A really minimalistic X window manager"; 24 - homepage = "https://www.oroborus.org/"; 25 52 license = licenses.gpl2Plus; 26 53 maintainers = [ maintainers.AndersonTorres ]; 27 54 platforms = platforms.linux;
+2 -2
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-build-hook.sh
··· 28 28 --configuration "@buildType@" \ 29 29 --no-restore \ 30 30 ${versionFlag-} \ 31 - "${dotnetBuildFlags[@]}" \ 32 - "${dotnetFlags[@]}" 31 + ${dotnetBuildFlags[@]} \ 32 + ${dotnetFlags[@]} 33 33 done 34 34 35 35 runHook postBuild
+2 -2
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-configure-hook.sh
··· 20 20 -p:Deterministic=true \ 21 21 --source "@nugetSource@/lib" \ 22 22 ${parallelFlag-} \ 23 - "${dotnetRestoreFlags[@]}" \ 24 - "${dotnetFlags[@]}" 23 + ${dotnetRestoreFlags[@]} \ 24 + ${dotnetFlags[@]} 25 25 done 26 26 27 27 runHook postConfigure
+4 -4
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
··· 15 15 --configuration "@buildType@" \ 16 16 --no-build \ 17 17 --no-self-contained \ 18 - "${dotnetInstallFlags[@]}" \ 19 - "${dotnetFlags[@]}" 18 + ${dotnetInstallFlags[@]} \ 19 + ${dotnetFlags[@]} 20 20 done 21 21 22 22 if [[ "${packNupkg-}" ]]; then ··· 28 28 --output "$out/share" \ 29 29 --configuration "@buildType@" \ 30 30 --no-build \ 31 - "${dotnetPackFlags[@]}" \ 32 - "${dotnetFlags[@]}" 31 + ${dotnetPackFlags[@]} \ 32 + ${dotnetFlags[@]} 33 33 done 34 34 fi 35 35
+16
pkgs/build-support/kernel/compress-firmware-xz.nix
··· 1 + { runCommand }: 2 + 3 + firmware: 4 + 5 + runCommand "${firmware.name}-xz" {} '' 6 + mkdir -p $out/lib 7 + (cd ${firmware} && find lib/firmware -type d -print0) | 8 + (cd $out && xargs -0 mkdir -v --) 9 + (cd ${firmware} && find lib/firmware -type f -print0) | 10 + (cd $out && xargs -0tP "$NIX_BUILD_CORES" -n1 \ 11 + sh -c 'xz -9c -T1 -C crc32 --lzma2=dict=2MiB "${firmware}/$1" > "$1.xz"' --) 12 + (cd ${firmware} && find lib/firmware -type l) | while read link; do 13 + target="$(readlink "${firmware}/$link")" 14 + ln -vs -- "''${target/^${firmware}/$out}.xz" "$out/$link.xz" 15 + done 16 + ''
+6 -2
pkgs/build-support/kernel/modules-closure.sh
··· 81 81 for i in $(modinfo -b $kernel --set-version "$version" -F firmware $module | grep -v '^name:'); do 82 82 mkdir -p "$out/lib/firmware/$(dirname "$i")" 83 83 echo "firmware for $module: $i" 84 - cp "$firmware/lib/firmware/$i" "$out/lib/firmware/$i" 2>/dev/null \ 85 - || echo "WARNING: missing firmware $i for module $module" 84 + for name in "$i" "$i.xz" ""; do 85 + [ -z "$name" ] && echo "WARNING: missing firmware $i for module $module" 86 + if cp "$firmware/lib/firmware/$name" "$out/lib/firmware/$name" 2>/dev/null; then 87 + break 88 + fi 89 + done 86 90 done 87 91 done 88 92
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "78324aa49909392e169c86bbfd204694523907e8", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/78324aa49909392e169c86bbfd204694523907e8.tar.gz", 4 - "sha256": "15k5ag36asswwv8yazq53lkj9blnz4hzlq23cznvvk5pkjpdm0ni", 5 - "msg": "Update from Hackage at 2022-05-05T15:07:55Z" 2 + "commit": "38aa99a1623af5371157721c2a4b033b828e9938", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/38aa99a1623af5371157721c2a4b033b828e9938.tar.gz", 4 + "sha256": "0phak7cjg3nrj5i3ih2k95hcwx25s6zijbp81ycqd0yb108gvw34", 5 + "msg": "Update from Hackage at 2022-05-10T13:45:20Z" 6 6 }
+1 -2
pkgs/development/compilers/dotnet/build-dotnet.nix
··· 1 1 { type 2 2 , version 3 3 , srcs 4 + , icu #passing icu as an argument, because dotnet 3.1 has troubles with icu71 4 5 }: 5 6 6 7 assert builtins.elem type [ "aspnetcore" "runtime" "sdk"]; ··· 11 12 , writeText 12 13 , libunwind 13 14 , openssl 14 - , icu 15 15 , libuuid 16 16 , zlib 17 17 , curl ··· 38 38 rpath = lib.makeLibraryPath ([ 39 39 stdenv.cc.cc 40 40 zlib 41 - 42 41 curl 43 42 icu 44 43 libunwind
+12 -1
pkgs/development/compilers/dotnet/default.nix
··· 5 5 Hashes and urls below are retrieved from: 6 6 https://dotnet.microsoft.com/download/dotnet 7 7 */ 8 - { callPackage }: 8 + { callPackage, icu70, icu }: 9 9 let 10 10 buildDotnet = attrs: callPackage (import ./build-dotnet.nix attrs) {}; 11 11 buildAspNetCore = attrs: buildDotnet (attrs // { type = "aspnetcore"; }); ··· 19 19 sdk_2_1 = throw "Dotnet SDK 2.1 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)"; 20 20 sdk_2_2 = throw "Dotnet SDK 2.2 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)"; 21 21 sdk_3_0 = throw "Dotnet SDK 3.0 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)"; 22 + 23 + ##### Following attributes with urls and hashes should be auto-generated by print-hashes.sh ##### 22 24 23 25 # v3.1 (lts) 24 26 aspnetcore_3_1 = buildAspNetCore { 27 + icu = icu70; 25 28 version = "3.1.21"; 26 29 srcs = { 27 30 x86_64-linux = { ··· 40 43 }; 41 44 42 45 runtime_3_1 = buildNetRuntime { 46 + icu = icu70; 43 47 version = "3.1.21"; 44 48 srcs = { 45 49 x86_64-linux = { ··· 58 62 }; 59 63 60 64 sdk_3_1 = buildNetSdk { 65 + icu = icu70; 61 66 version = "3.1.415"; 62 67 srcs = { 63 68 x86_64-linux = { ··· 77 82 78 83 # v5.0 (current) 79 84 aspnetcore_5_0 = buildAspNetCore { 85 + inherit icu; 80 86 version = "5.0.12"; 81 87 srcs = { 82 88 x86_64-linux = { ··· 95 101 }; 96 102 97 103 runtime_5_0 = buildNetRuntime { 104 + inherit icu; 98 105 version = "5.0.12"; 99 106 srcs = { 100 107 x86_64-linux = { ··· 113 120 }; 114 121 115 122 sdk_5_0 = buildNetSdk { 123 + inherit icu; 116 124 version = "5.0.403"; 117 125 srcs = { 118 126 x86_64-linux = { ··· 132 140 133 141 # v6.0 (lts) 134 142 aspnetcore_6_0 = buildAspNetCore { 143 + inherit icu; 135 144 version = "6.0.4"; 136 145 srcs = { 137 146 x86_64-linux = { ··· 154 163 }; 155 164 156 165 runtime_6_0 = buildNetRuntime { 166 + inherit icu; 157 167 version = "6.0.4"; 158 168 srcs = { 159 169 x86_64-linux = { ··· 176 186 }; 177 187 178 188 sdk_6_0 = buildNetSdk { 189 + inherit icu; 179 190 version = "6.0.202"; 180 191 srcs = { 181 192 x86_64-linux = {
+8
pkgs/development/compilers/dotnet/print-hashes.sh
··· 84 84 aspnetcore_files="$(release_files "$release_content" "aspnetcore-runtime")" 85 85 runtime_files="$(release_files "$release_content" "runtime")" 86 86 sdk_files="$(release_files "$release_content" "sdk")" 87 + if [ $major_minor = "3.1" ]; then 88 + icu_attr="icu = icu70;" 89 + else 90 + icu_attr="inherit icu;" 91 + fi 87 92 88 93 major_minor_underscore=${major_minor/./_} 89 94 channel_version=$(jq -r '."channel-version"' <<< "$content") ··· 91 96 echo " 92 97 # v$channel_version ($support_phase) 93 98 aspnetcore_$major_minor_underscore = buildAspNetCore { 99 + $icu_attr 94 100 version = \"${aspnetcore_version}\"; 95 101 $(platform_sources "$aspnetcore_files") 96 102 }; 97 103 98 104 runtime_$major_minor_underscore = buildNetRuntime { 105 + $icu_attr 99 106 version = \"${runtime_version}\"; 100 107 $(platform_sources "$runtime_files") 101 108 }; 102 109 103 110 sdk_$major_minor_underscore = buildNetSdk { 111 + $icu_attr 104 112 version = \"${sdk_version}\"; 105 113 $(platform_sources "$sdk_files") 106 114 }; "
+3 -11
pkgs/development/compilers/mruby/default.nix
··· 1 - { lib, stdenv, ruby, bison, rake, fetchFromGitHub, fetchpatch }: 1 + { lib, stdenv, ruby, bison, rake, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mruby"; 5 - version = "3.0.0"; 5 + version = "3.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mruby"; 9 9 repo = "mruby"; 10 10 rev = version; 11 - sha256 = "sha256-C3K7ZooaOMa+V2HjxwiKxrrMb7ffl4QAgPsftRtb60c="; 11 + sha256 = "0gnzip7qfadnl0r1k8bpc9a6796sy503h77ggds02wrz7mpq32nf"; 12 12 }; 13 - 14 - patches = [ 15 - (fetchpatch { 16 - name = "CVE-2022-1212.patch"; 17 - url = "https://github.com/mruby/mruby/commit/3cf291f72224715942beaf8553e42ba8891ab3c6.patch"; 18 - sha256 = "1bl8wm6v7v18zgxqvm4kbn8g97a75phzrdah279xqw1qvplbd2w7"; 19 - }) 20 - ]; 21 13 22 14 nativeBuildInputs = [ ruby bison rake ]; 23 15
+8 -4
pkgs/development/compilers/vyper/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 - , pythonAtLeast 6 5 , pythonRelaxDepsHook 7 6 , writeText 8 7 , asttokens ··· 13 12 , sphinx_rtd_theme 14 13 , pytest-runner 15 14 , setuptools-scm 15 + , git 16 16 }: 17 17 18 18 let ··· 27 27 in 28 28 buildPythonPackage rec { 29 29 pname = "vyper"; 30 - version = "0.3.1"; 30 + version = "0.3.3"; 31 31 format = "setuptools"; 32 32 33 - disabled = pythonOlder "3.7" || pythonAtLeast "3.10"; 33 + disabled = pythonOlder "3.7"; 34 34 35 35 src = fetchPypi { 36 36 inherit pname version; 37 - sha256 = "sha256-fXug5v3zstz19uexMWokHBVsfcl2ZCdIOIXKeLVyh/Q="; 37 + sha256 = "sha256-BAnNj27B1HAb9VVDA69bFGbQjeOpl0g5EB2juajqBAw="; 38 38 }; 39 39 40 40 nativeBuildInputs = [ 41 + # Git is used in setup.py to compute version information during building 42 + # ever since https://github.com/vyperlang/vyper/pull/2816 43 + git 44 + 41 45 pythonRelaxDepsHook 42 46 pytest-runner 43 47 setuptools-scm
+22 -20
pkgs/development/embedded/blackmagic/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchpatch 2 - , gcc-arm-embedded, libftdi1, libusb-compat-0_1, pkg-config 1 + { stdenv, lib 2 + , fetchFromGitHub 3 + , gcc-arm-embedded 4 + , pkg-config 3 5 , python3 6 + , hidapi 7 + , libftdi1 8 + , libusb1 4 9 }: 5 - 6 - with lib; 7 10 8 11 stdenv.mkDerivation rec { 9 12 pname = "blackmagic"; 10 - version = "unstable-2020-08-05"; 13 + version = "unstable-2022-04-16"; 11 14 # `git describe --always` 12 - firmwareVersion = "v1.6.1-539-gdd74ec8"; 15 + firmwareVersion = "v1.7.1-415-gc4869a5"; 13 16 14 17 src = fetchFromGitHub { 15 18 owner = "blacksphere"; 16 19 repo = "blackmagic"; 17 - rev = "dd74ec8e6f734302daa1ee361af88dfb5043f166"; 18 - sha256 = "18w8y64fs7wfdypa4vm3migk5w095z8nbd8qp795f322mf2bz281"; 20 + rev = "c4869a54733ae92099a7316954e34d1ab7b6097c"; 21 + hash = "sha256-0MC1v/5u/txSshxkOI5TErMRRrYCcHly3qbVTAk9Vc0="; 19 22 fetchSubmodules = true; 20 23 }; 21 24 22 - patches = [ 23 - # Fix deprecation warning with libftdi 1.5 24 - (fetchpatch { 25 - url = "https://github.com/blacksphere/blackmagic/commit/dea4be2539c5ea63836ec78dca08b52fa8b26ab5.patch"; 26 - sha256 = "0f81simij1wdhifsxaavalc6yxzagfbgwry969dbjmxqzvrsrds5"; 27 - }) 28 - ]; 29 - 30 25 nativeBuildInputs = [ 31 - gcc-arm-embedded pkg-config 26 + gcc-arm-embedded 27 + pkg-config 32 28 python3 33 29 ]; 34 30 35 31 buildInputs = [ 32 + hidapi 36 33 libftdi1 37 - libusb-compat-0_1 34 + libusb1 38 35 ]; 39 36 40 37 strictDeps = true; ··· 50 47 done 51 48 ''; 52 49 53 - buildPhase = "${stdenv.shell} ${./helper.sh}"; 50 + buildPhase = '' 51 + runHook preBuild 52 + ${stdenv.shell} ${./helper.sh} 53 + runHook postBuild 54 + ''; 55 + 54 56 dontInstall = true; 55 57 56 58 enableParallelBuilding = true; 57 59 58 - meta = { 60 + meta = with lib; { 59 61 description = "In-application debugger for ARM Cortex microcontrollers"; 60 62 longDescription = '' 61 63 The Black Magic Probe is a modern, in-application debugging tool
+1 -9
pkgs/development/haskell-modules/configuration-common.nix
··· 334 334 matplotlib = dontCheck super.matplotlib; 335 335 336 336 # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage 337 - matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: { 338 - brick = self.brick_0_64_2; 339 - # Doesn't support aeson 2.0 340 - # https://github.com/matterhorn-chat/matterhorn/issues/759 341 - aeson = self.aeson_1_5_6_0; 342 - })); 343 - mattermost-api = super.mattermost-api.override { 344 - aeson = self.aeson_1_5_6_0; 345 - }; 337 + matterhorn = doJailbreak super.matterhorn; 346 338 347 339 memcache = dontCheck super.memcache; 348 340 metrics = dontCheck super.metrics;
+1 -1
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 118 118 liquidhaskell = markBroken super.liquidhaskell; 119 119 120 120 # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore. 121 - exceptions = super.exceptions_0_10_4; 121 + exceptions = super.exceptions_0_10_5; 122 122 123 123 # ghc versions which don‘t match the ghc-lib-parser-ex version need the 124 124 # additional dependency to compile successfully.
+1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 3082 3082 - LTS 3083 3083 - lua-bc 3084 3084 - luautils 3085 + - lucid2 3085 3086 - lucid-htmx 3086 3087 - lucid-hyperscript 3087 3088 - luis-client
-1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 118 118 - ghc-lib-parser == 8.10.7.* # 2022-02-17: preserve for GHC 8.10.7 119 119 - ghc-lib-parser-ex == 8.10.* # 2022-02-17: preserve for GHC 8.10.7 120 120 - doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.* 121 - - brick == 0.64.* # 2021-12-03: matterhorn depends on brick < 0.65 122 121 - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2 123 122 - ormolu == 0.2.* # 2022-02-21: For ghc 8.8 and 8.10 124 123 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this
+885 -203
pkgs/development/haskell-modules/hackage-packages.nix
··· 770 770 }: 771 771 mkDerivation { 772 772 pname = "AesonBson"; 773 - version = "0.4.0"; 774 - sha256 = "08ffz1fr8x5z3ipvk99wc5n363ghxrq1z0cv1yh57wx18ialk1cx"; 773 + version = "0.4.1"; 774 + sha256 = "0nyl0a3814163dxpmiadmmjdhd9cycmihwmsz7f0316hbm30lg7z"; 775 775 enableSeparateDataOutput = true; 776 776 libraryHaskellDepends = [ 777 777 aeson attoparsec base bson scientific text unordered-containers ··· 1131 1131 }) {}; 1132 1132 1133 1133 "AspectAG" = callPackage 1134 - ({ mkDerivation, base, containers, mtl, poly-rec, requirements 1135 - , tagged, template-haskell 1134 + ({ mkDerivation, base, containers, ghc-prim, loch-th, mtl, poly-rec 1135 + , requirements, template-haskell 1136 1136 }: 1137 1137 mkDerivation { 1138 1138 pname = "AspectAG"; 1139 - version = "0.6.0.0"; 1140 - sha256 = "09lm1hs9l3h6ndv385adhh0kf9id10fjf0n1bczgzqgxmiykx2kn"; 1139 + version = "0.7.0.0"; 1140 + sha256 = "1w5zfx5vgvkys84vdrdd3rv39ly25wbn9izlir19irniqsbf6z6v"; 1141 1141 libraryHaskellDepends = [ 1142 - base containers mtl poly-rec requirements tagged template-haskell 1142 + base containers ghc-prim loch-th mtl poly-rec requirements 1143 + template-haskell 1143 1144 ]; 1144 1145 description = "Strongly typed Attribute Grammars implemented using type-level programming"; 1145 1146 license = lib.licenses.gpl3Only; ··· 14419 14420 pname = "Naperian"; 14420 14421 version = "0.1.1.0"; 14421 14422 sha256 = "1i9hc1pdp9mg9x1xd4wrv06cbhjxw0yhyk2xhsm8jz6rgksa22j7"; 14423 + revision = "1"; 14424 + editedCabalFile = "0njjyn54cda1j2rmxhmz9hnbg5rwd5f8qcdgfk2z9bq1aiv3h61q"; 14422 14425 libraryHaskellDepends = [ base containers ghc-prim vector ]; 14423 14426 description = "Naperian Functors for APL-like programming"; 14424 14427 license = "unknown"; ··· 24435 24438 license = lib.licenses.bsd3; 24436 24439 }) {}; 24437 24440 24441 + "adjunctions_4_4_1" = callPackage 24442 + ({ mkDerivation, array, base, comonad, containers, contravariant 24443 + , distributive, free, generic-deriving, hspec, hspec-discover, mtl 24444 + , profunctors, semigroupoids, semigroups, tagged, transformers 24445 + , transformers-compat, void 24446 + }: 24447 + mkDerivation { 24448 + pname = "adjunctions"; 24449 + version = "4.4.1"; 24450 + sha256 = "0hqm86v5in7xp31wv3wvr1h7gsim96fpl0si0xrpv8060qalzwww"; 24451 + libraryHaskellDepends = [ 24452 + array base comonad containers contravariant distributive free mtl 24453 + profunctors semigroupoids semigroups tagged transformers 24454 + transformers-compat void 24455 + ]; 24456 + testHaskellDepends = [ base distributive generic-deriving hspec ]; 24457 + testToolDepends = [ hspec-discover ]; 24458 + description = "Adjunctions and representable functors"; 24459 + license = lib.licenses.bsd3; 24460 + hydraPlatforms = lib.platforms.none; 24461 + }) {}; 24462 + 24438 24463 "adler32" = callPackage 24439 24464 ({ mkDerivation, base, bytestring, hspec, zlib }: 24440 24465 mkDerivation { ··· 24725 24750 pname = "aeson-better-errors"; 24726 24751 version = "0.9.1.1"; 24727 24752 sha256 = "05yibq9kqbjb8rh84n12sbax05amvd8jccpja0hyadz58pjy4jnk"; 24753 + revision = "1"; 24754 + editedCabalFile = "0wzvrmhn5q2x1mcv43cyxhlck815ldkhx7c7gz5ijjyva1iicgn2"; 24728 24755 libraryHaskellDepends = [ 24729 24756 aeson base bytestring dlist mtl scientific text transformers 24730 24757 transformers-compat unordered-containers vector void ··· 25122 25149 }) {}; 25123 25150 25124 25151 "aeson-iproute" = callPackage 25125 - ({ mkDerivation, aeson, base, doctest, iproute, text 25126 - , unordered-containers 25127 - }: 25152 + ({ mkDerivation, aeson, base, doctest, iproute, text }: 25128 25153 mkDerivation { 25129 25154 pname = "aeson-iproute"; 25130 - version = "0.2.1"; 25131 - sha256 = "1130mr5fqwi4d74xg6nkvpqycc0vvd6rsiahm1pdhbrx3wvra8p2"; 25132 - revision = "1"; 25133 - editedCabalFile = "1q9yr42mvvcqy20ww1xcsy2q6jji0mrqng2clq8yd5diyy7kqx1a"; 25134 - libraryHaskellDepends = [ 25135 - aeson base iproute text unordered-containers 25136 - ]; 25155 + version = "0.3.0"; 25156 + sha256 = "027mmmjlfld6mncn0k8v0i2lg4xkgymaakl5nqs7jw7apgy83x2z"; 25157 + libraryHaskellDepends = [ aeson base iproute text ]; 25137 25158 testHaskellDepends = [ base doctest ]; 25138 25159 description = "Aeson instances for iproute types"; 25139 25160 license = lib.licenses.bsd3; ··· 33293 33314 }: 33294 33315 mkDerivation { 33295 33316 pname = "arduino-copilot"; 33296 - version = "1.7.0"; 33297 - sha256 = "073l9fmg1i83whdfbplpshz2695ls7bb4kf4c40446q0cpccpnrc"; 33317 + version = "1.7.1"; 33318 + sha256 = "1w42y0avx032i7s208p1rkc24c7hy7lbjia5qjgixzv8qcc0693b"; 33298 33319 libraryHaskellDepends = [ 33299 33320 base containers copilot copilot-c99 copilot-language directory 33300 33321 filepath mtl optparse-applicative sketch-frp-copilot temporary ··· 40891 40912 license = lib.licenses.bsd3; 40892 40913 }) {}; 40893 40914 40915 + "benchpress_0_2_2_20" = callPackage 40916 + ({ mkDerivation, base, bytestring, mtl, time }: 40917 + mkDerivation { 40918 + pname = "benchpress"; 40919 + version = "0.2.2.20"; 40920 + sha256 = "0yh44hdk7gh6ygdlys2mrij2gphdv5da8hmc7rnyf6cr5509ynn8"; 40921 + isLibrary = true; 40922 + isExecutable = true; 40923 + libraryHaskellDepends = [ base mtl time ]; 40924 + executableHaskellDepends = [ base bytestring time ]; 40925 + description = "Micro-benchmarking with detailed statistics"; 40926 + license = lib.licenses.bsd3; 40927 + hydraPlatforms = lib.platforms.none; 40928 + }) {}; 40929 + 40894 40930 "bencode" = callPackage 40895 40931 ({ mkDerivation, base, binary, bytestring, containers, hspec 40896 40932 , parsec, QuickCheck, transformers, transformers-compat ··· 41420 41456 testToolDepends = [ hspec-discover ]; 41421 41457 description = "Bifunctors"; 41422 41458 license = lib.licenses.bsd3; 41459 + }) {}; 41460 + 41461 + "bifunctors_5_5_12" = callPackage 41462 + ({ mkDerivation, base, base-orphans, comonad, containers, hspec 41463 + , hspec-discover, QuickCheck, tagged, template-haskell 41464 + , th-abstraction, transformers, transformers-compat 41465 + }: 41466 + mkDerivation { 41467 + pname = "bifunctors"; 41468 + version = "5.5.12"; 41469 + sha256 = "0pbidsv1w3bvzs8w6sv8g1iqf0l9r1y0b1fmvd67cwlp01r7f1n6"; 41470 + libraryHaskellDepends = [ 41471 + base base-orphans comonad containers tagged template-haskell 41472 + th-abstraction transformers 41473 + ]; 41474 + testHaskellDepends = [ 41475 + base hspec QuickCheck template-haskell transformers 41476 + transformers-compat 41477 + ]; 41478 + testToolDepends = [ hspec-discover ]; 41479 + description = "Bifunctors"; 41480 + license = lib.licenses.bsd3; 41481 + hydraPlatforms = lib.platforms.none; 41423 41482 }) {}; 41424 41483 41425 41484 "bighugethesaurus" = callPackage ··· 44196 44255 pname = "bits"; 44197 44256 version = "0.6"; 44198 44257 sha256 = "18s2aa99cwcshcws2zl2ll7xgqn9dpznpkv1nplamc9h4vmqqs93"; 44258 + revision = "1"; 44259 + editedCabalFile = "1f118vwwskai74l6wn5sfy002k241qv1rhpsahphfr58llzgvv50"; 44199 44260 libraryHaskellDepends = [ base bytes mtl transformers ]; 44200 44261 description = "Various bit twiddling and bitwise serialization primitives"; 44201 44262 license = lib.licenses.bsd3; ··· 45082 45143 broken = true; 45083 45144 }) {}; 45084 45145 45146 + "blaze-htmx" = callPackage 45147 + ({ mkDerivation, base, blaze-html, blaze-markup }: 45148 + mkDerivation { 45149 + pname = "blaze-htmx"; 45150 + version = "0.1.0.0"; 45151 + sha256 = "18bl1bnf5z3p9pa12hjd2j53hi1qigya8bbpsj9jczgn4cbvx5q6"; 45152 + libraryHaskellDepends = [ base blaze-html blaze-markup ]; 45153 + testHaskellDepends = [ base blaze-html ]; 45154 + description = "Blaze integration of the htmx library"; 45155 + license = lib.licenses.bsd3; 45156 + }) {}; 45157 + 45085 45158 "blaze-json" = callPackage 45086 45159 ({ mkDerivation, aeson, base, bytestring, bytestring-builder 45087 45160 , containers, data-default-class, doctest, QuickCheck, scientific ··· 46758 46831 license = lib.licenses.bsd3; 46759 46832 }) {}; 46760 46833 46834 + "bound_2_0_5" = callPackage 46835 + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad 46836 + , deepseq, deriving-compat, hashable, mmorph, profunctors 46837 + , template-haskell, th-abstraction, transformers 46838 + , transformers-compat, vector, void 46839 + }: 46840 + mkDerivation { 46841 + pname = "bound"; 46842 + version = "2.0.5"; 46843 + sha256 = "1cnw0q97bys7jcpjds2fb6zkq9pyqxcb8v0b5dvkckqmlp8agn4v"; 46844 + libraryHaskellDepends = [ 46845 + base bifunctors binary bytes cereal comonad deepseq hashable mmorph 46846 + profunctors template-haskell th-abstraction transformers 46847 + transformers-compat 46848 + ]; 46849 + testHaskellDepends = [ 46850 + base deriving-compat transformers transformers-compat vector void 46851 + ]; 46852 + description = "Making de Bruijn Succ Less"; 46853 + license = lib.licenses.bsd3; 46854 + hydraPlatforms = lib.platforms.none; 46855 + }) {}; 46856 + 46761 46857 "bound-extras" = callPackage 46762 46858 ({ mkDerivation, adjunctions, base, bound, containers, deepseq 46763 46859 , filepath, hashable, pretty, tasty, tasty-golden, text-short ··· 47153 47249 broken = true; 47154 47250 }) {}; 47155 47251 47156 - "brick_0_64_2" = callPackage 47157 - ({ mkDerivation, base, bytestring, config-ini, containers 47158 - , contravariant, data-clist, deepseq, directory, dlist, exceptions 47159 - , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm 47160 - , template-haskell, text, text-zipper, transformers, unix, vector 47161 - , vty, word-wrap 47162 - }: 47163 - mkDerivation { 47164 - pname = "brick"; 47165 - version = "0.64.2"; 47166 - sha256 = "058kpghx5s559z5l9hav44s8vb5lizn8j7v7l4lmvpqx3a6cisn7"; 47167 - isLibrary = true; 47168 - isExecutable = true; 47169 - libraryHaskellDepends = [ 47170 - base bytestring config-ini containers contravariant data-clist 47171 - deepseq directory dlist exceptions filepath microlens microlens-mtl 47172 - microlens-th stm template-haskell text text-zipper transformers 47173 - unix vector vty word-wrap 47174 - ]; 47175 - testHaskellDepends = [ 47176 - base containers microlens QuickCheck vector 47177 - ]; 47178 - description = "A declarative terminal user interface library"; 47179 - license = lib.licenses.bsd3; 47180 - hydraPlatforms = lib.platforms.none; 47181 - }) {}; 47182 - 47183 47252 "brick" = callPackage 47184 47253 ({ mkDerivation, base, bytestring, config-ini, containers 47185 47254 , contravariant, data-clist, deepseq, directory, dlist, exceptions ··· 49055 49124 ]; 49056 49125 description = "Sharing code for serialization between binary and cereal"; 49057 49126 license = lib.licenses.bsd3; 49127 + }) {}; 49128 + 49129 + "bytes_0_17_2" = callPackage 49130 + ({ mkDerivation, base, binary, binary-orphans, bytestring, cereal 49131 + , containers, hashable, mtl, scientific, text, time, transformers 49132 + , transformers-compat, unordered-containers, void 49133 + }: 49134 + mkDerivation { 49135 + pname = "bytes"; 49136 + version = "0.17.2"; 49137 + sha256 = "06kqqk19qjhrwdqi6pyd1lwqfnj2sw3b3s49lc5vr2fmv8gg8mdw"; 49138 + libraryHaskellDepends = [ 49139 + base binary binary-orphans bytestring cereal containers hashable 49140 + mtl scientific text time transformers transformers-compat 49141 + unordered-containers void 49142 + ]; 49143 + description = "Sharing code for serialization between binary and cereal"; 49144 + license = lib.licenses.bsd3; 49145 + hydraPlatforms = lib.platforms.none; 49058 49146 }) {}; 49059 49147 49060 49148 "byteset" = callPackage ··· 52492 52580 52493 52581 "cantor-pairing" = callPackage 52494 52582 ({ mkDerivation, base, containers, hspec, hspec-discover 52495 - , integer-gmp, integer-logarithms, integer-roots, mtl 52583 + , integer-gmp, integer-logarithms, integer-roots 52496 52584 }: 52497 52585 mkDerivation { 52498 52586 pname = "cantor-pairing"; 52499 - version = "0.2.0.1"; 52500 - sha256 = "12wfm27gwhar7djd459yc86bv29818xdyc8glkhgn4q1kx7nda90"; 52587 + version = "0.2.0.2"; 52588 + sha256 = "1h95xbc1lhwd40qk64qw2cmr7prwygli1q2wy5hscny7jyah95c2"; 52501 52589 libraryHaskellDepends = [ 52502 52590 base containers integer-gmp integer-logarithms integer-roots 52503 52591 ]; 52504 - testHaskellDepends = [ base containers hspec mtl ]; 52592 + testHaskellDepends = [ base containers hspec ]; 52505 52593 testToolDepends = [ hspec-discover ]; 52506 52594 description = "Convert data to and from a natural number representation"; 52507 52595 license = lib.licenses.mit; ··· 66315 66403 }: 66316 66404 mkDerivation { 66317 66405 pname = "copilot"; 66318 - version = "3.8"; 66319 - sha256 = "0lqr2ns6jg7m36pynl6i442d8x4kdlwlxqf59a0gspn8zgidwaii"; 66406 + version = "3.9"; 66407 + sha256 = "0kryqpk4sn5gbpjpvzcdhd5yp5045cfr2c112df5vagd7gp4a4gd"; 66320 66408 isLibrary = true; 66321 66409 isExecutable = true; 66322 66410 libraryHaskellDepends = [ ··· 66335 66423 }: 66336 66424 mkDerivation { 66337 66425 pname = "copilot-c99"; 66338 - version = "3.8"; 66339 - sha256 = "0bpak9kd23j8bmc8x7ksb84gggmxplax4wj00c39mrvh5cb5wlwx"; 66426 + version = "3.9"; 66427 + sha256 = "1m915j72b6axbwnls4kcjcdpixxlrjxw4zpvdzq34jym5h2kpd78"; 66340 66428 libraryHaskellDepends = [ 66341 66429 base containers copilot-core directory filepath language-c99 66342 66430 language-c99-simple language-c99-util mtl pretty ··· 66369 66457 }: 66370 66458 mkDerivation { 66371 66459 pname = "copilot-core"; 66372 - version = "3.8"; 66373 - sha256 = "0vv3p9a0c3pa856yx8zmr4d5ag8mym9gbpz5bgi17a7cgfc682cz"; 66460 + version = "3.9"; 66461 + sha256 = "0haqyci12b44dn1hpfqp9hfyw949gl61yzxic8kznb0hl1h1sl5a"; 66374 66462 libraryHaskellDepends = [ base dlist mtl pretty ]; 66375 66463 testHaskellDepends = [ 66376 66464 base HUnit pretty QuickCheck test-framework test-framework-hunit ··· 66407 66495 }: 66408 66496 mkDerivation { 66409 66497 pname = "copilot-language"; 66410 - version = "3.8"; 66411 - sha256 = "1wnv7xkgalxd7p7bm2zrsbg2r2wip9an8m5m3fc63wxvk9wcabj6"; 66498 + version = "3.9"; 66499 + sha256 = "1041mm4c8zf7wlrcnfp97lsnr8qsmclr7y3qcawx9pmarwk8arg8"; 66412 66500 libraryHaskellDepends = [ 66413 66501 array base containers copilot-core copilot-theorem data-reify mtl 66414 66502 ]; ··· 66427 66515 }: 66428 66516 mkDerivation { 66429 66517 pname = "copilot-libraries"; 66430 - version = "3.8"; 66431 - sha256 = "1sx8bl10j7qwqi91dbl9dahy9l2n17qfbyni73az2fx9rq3q1jkz"; 66518 + version = "3.9"; 66519 + sha256 = "12h121zlq4xbkh947lkxdsjykf061rlmxkyhzyc2s2520fhkapx3"; 66432 66520 libraryHaskellDepends = [ 66433 66521 array base containers copilot-language data-reify mtl parsec 66434 66522 ]; ··· 66461 66549 }: 66462 66550 mkDerivation { 66463 66551 pname = "copilot-theorem"; 66464 - version = "3.8"; 66465 - sha256 = "18287hs36lhf1g6l740vkynccy1d87lrr9rcjpgzfn03s9y3d58n"; 66552 + version = "3.9"; 66553 + sha256 = "1gnr6rd88gxs5wxkh6j28hqm81bj8b585n6ywm6s5p2wxgx0wzbn"; 66466 66554 libraryHaskellDepends = [ 66467 66555 ansi-terminal base bimap bv-sized containers copilot-core 66468 66556 data-default directory filepath libBF mtl panic parameterized-utils ··· 76246 76334 license = lib.licenses.bsd3; 76247 76335 }) {}; 76248 76336 76337 + "deriving-compat_0_6_1" = callPackage 76338 + ({ mkDerivation, base, base-compat, base-orphans, containers 76339 + , ghc-boot-th, ghc-prim, hspec, hspec-discover, QuickCheck, tagged 76340 + , template-haskell, th-abstraction, transformers 76341 + , transformers-compat, void 76342 + }: 76343 + mkDerivation { 76344 + pname = "deriving-compat"; 76345 + version = "0.6.1"; 76346 + sha256 = "09lxms6220saycra4kpxihwa7zh253zmv1zpa41dbnhgffxs3zbb"; 76347 + libraryHaskellDepends = [ 76348 + base containers ghc-boot-th ghc-prim template-haskell 76349 + th-abstraction transformers transformers-compat 76350 + ]; 76351 + testHaskellDepends = [ 76352 + base base-compat base-orphans hspec QuickCheck tagged 76353 + template-haskell transformers transformers-compat void 76354 + ]; 76355 + testToolDepends = [ hspec-discover ]; 76356 + description = "Backports of GHC deriving extensions"; 76357 + license = lib.licenses.bsd3; 76358 + hydraPlatforms = lib.platforms.none; 76359 + }) {}; 76360 + 76249 76361 "deriving-show-simple" = callPackage 76250 76362 ({ mkDerivation, base, HUnit }: 76251 76363 mkDerivation { ··· 77678 77790 }: 77679 77791 mkDerivation { 77680 77792 pname = "diagnose"; 77681 - version = "1.9.0"; 77682 - sha256 = "0w3mzk50pzf5rr2k8lfkmmlsr8kmvgx1jcszla4khx0an5bsafnf"; 77793 + version = "2.0.0"; 77794 + sha256 = "1rb2fm0bx1rmb63xc56v19adi9f0iy72j0h8rvrvw0lvcwp398xk"; 77683 77795 libraryHaskellDepends = [ 77684 77796 base data-default hashable prettyprinter 77685 77797 prettyprinter-ansi-terminal unordered-containers wcwidth ··· 86016 86128 license = lib.licenses.bsd3; 86017 86129 }) {}; 86018 86130 86131 + "either_5_0_2" = callPackage 86132 + ({ mkDerivation, base, bifunctors, mtl, profunctors, QuickCheck 86133 + , semigroupoids, test-framework, test-framework-quickcheck2 86134 + }: 86135 + mkDerivation { 86136 + pname = "either"; 86137 + version = "5.0.2"; 86138 + sha256 = "1gl748ia68bldbqb2fl7vjv44g0y8ivn659fjmy1qyypgyb5p95z"; 86139 + libraryHaskellDepends = [ 86140 + base bifunctors mtl profunctors semigroupoids 86141 + ]; 86142 + testHaskellDepends = [ 86143 + base QuickCheck test-framework test-framework-quickcheck2 86144 + ]; 86145 + description = "Combinators for working with sums"; 86146 + license = lib.licenses.bsd3; 86147 + hydraPlatforms = lib.platforms.none; 86148 + }) {}; 86149 + 86019 86150 "either-both" = callPackage 86020 86151 ({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck }: 86021 86152 mkDerivation { ··· 90852 90983 broken = true; 90853 90984 }) {}; 90854 90985 90855 - "exceptions_0_10_4" = callPackage 90986 + "exceptions_0_10_5" = callPackage 90856 90987 ({ mkDerivation, base, mtl, QuickCheck, stm, template-haskell 90857 90988 , test-framework, test-framework-hunit, test-framework-quickcheck2 90858 90989 , transformers 90859 90990 }: 90860 90991 mkDerivation { 90861 90992 pname = "exceptions"; 90862 - version = "0.10.4"; 90863 - sha256 = "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd"; 90864 - revision = "3"; 90865 - editedCabalFile = "0b9bml5j46zz62ik2827ndsd5293dh8630086x1mngb80gnrml3y"; 90993 + version = "0.10.5"; 90994 + sha256 = "12xz2x16pv1a6csz64bpl22v40vykjwvdaiz39i8f8nkwasc1qv6"; 90866 90995 libraryHaskellDepends = [ 90867 90996 base mtl stm template-haskell transformers 90868 90997 ]; ··· 97950 98079 pname = "foldl"; 97951 98080 version = "1.4.12"; 97952 98081 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 97953 - revision = "2"; 97954 - editedCabalFile = "0ggl6djyqrc56j8iy56f61jki7v3ym35ykd944z045gpjzbaq3c6"; 98082 + revision = "3"; 98083 + editedCabalFile = "1xijnq8qkmrj2w7h6gr2vy8a0ajhiapzi2fain5pgcllli2fny2r"; 97955 98084 libraryHaskellDepends = [ 97956 98085 base bytestring comonad containers contravariant hashable primitive 97957 98086 profunctors random semigroupoids text transformers ··· 99455 99584 license = lib.licenses.bsd3; 99456 99585 }) {}; 99457 99586 99587 + "free_5_1_8" = callPackage 99588 + ({ mkDerivation, base, comonad, containers, distributive 99589 + , exceptions, indexed-traversable, mtl, profunctors, semigroupoids 99590 + , template-haskell, th-abstraction, transformers, transformers-base 99591 + }: 99592 + mkDerivation { 99593 + pname = "free"; 99594 + version = "5.1.8"; 99595 + sha256 = "0h43a7w6yjnvqp3rl8qvcjl9a0hg86l0h7zxkikd0mw8n65l8xvr"; 99596 + libraryHaskellDepends = [ 99597 + base comonad containers distributive exceptions indexed-traversable 99598 + mtl profunctors semigroupoids template-haskell th-abstraction 99599 + transformers transformers-base 99600 + ]; 99601 + description = "Monads for free"; 99602 + license = lib.licenses.bsd3; 99603 + hydraPlatforms = lib.platforms.none; 99604 + }) {}; 99605 + 99458 99606 "free-algebras" = callPackage 99459 99607 ({ mkDerivation, base, containers, data-fix, dlist, free, groups 99460 99608 , hedgehog, kan-extensions, mtl, transformers ··· 101678 101826 "futhark" = callPackage 101679 101827 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 101680 101828 , base16-bytestring, binary, blaze-html, bmp, bytestring 101681 - , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 101829 + , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5, Diff 101682 101830 , directory, directory-tree, dlist, file-embed, filepath, free 101683 101831 , futhark-data, futhark-manifest, futhark-server, githash, half 101684 101832 , happy, haskeline, hslogger, language-c-quote, lens, lsp ··· 101690 101838 }: 101691 101839 mkDerivation { 101692 101840 pname = "futhark"; 101693 - version = "0.21.10"; 101694 - sha256 = "0mm0awd1sf5sfb6i1yjbcm67j2nhqpfnn11q8p61z3b2py6lnzzf"; 101841 + version = "0.21.11"; 101842 + sha256 = "1n8id7h0qpgifbmkdh3ma72kpv6hn6siyfjd62day3zywrjfxd61"; 101695 101843 isLibrary = true; 101696 101844 isExecutable = true; 101697 101845 libraryHaskellDepends = [ 101698 101846 aeson ansi-terminal array base base16-bytestring binary blaze-html 101699 101847 bmp bytestring bytestring-to-vector cmark-gfm containers 101700 - cryptohash-md5 directory directory-tree dlist file-embed filepath 101701 - free futhark-data futhark-manifest futhark-server githash half 101702 - haskeline hslogger language-c-quote lens lsp mainland-pretty 101848 + cryptohash-md5 Diff directory directory-tree dlist file-embed 101849 + filepath free futhark-data futhark-manifest futhark-server githash 101850 + half haskeline hslogger language-c-quote lens lsp mainland-pretty 101703 101851 megaparsec mtl mwc-random neat-interpolation parallel process 101704 101852 process-extras random regex-tdfa srcloc statistics template-haskell 101705 101853 temporary terminal-size text time transformers vector versions 101706 101854 zip-archive zlib 101707 101855 ]; 101708 101856 libraryToolDepends = [ alex happy ]; 101709 - executableHaskellDepends = [ base text ]; 101857 + executableHaskellDepends = [ base ]; 101710 101858 testHaskellDepends = [ 101711 101859 base containers megaparsec mtl parser-combinators QuickCheck tasty 101712 101860 tasty-hunit tasty-quickcheck text ··· 103548 103696 pname = "generic-lens"; 103549 103697 version = "2.2.1.0"; 103550 103698 sha256 = "17an4669igzs6pwzqxnpkx9gmxwz64p32d1zcinhh5agd56y70pa"; 103699 + revision = "1"; 103700 + editedCabalFile = "1wzxvfi9kzhbglih1syqhx42kcsvlinnfc338fl731k6hc95hmlm"; 103551 103701 libraryHaskellDepends = [ 103552 103702 base generic-lens-core profunctors text 103553 103703 ]; ··· 103564 103714 pname = "generic-lens-core"; 103565 103715 version = "2.2.1.0"; 103566 103716 sha256 = "08i4c9yb6z84iknrnl9f3f343121j7ilp0a679v81nsjm9xz3rlf"; 103717 + revision = "1"; 103718 + editedCabalFile = "1dbjhd6k7ypqa9f4h9v2xndgb4mjhfli3n1vjm8r8ga0kfndbqfn"; 103567 103719 libraryHaskellDepends = [ base indexed-profunctors text ]; 103568 103720 description = "Generically derive traversals, lenses and prisms"; 103569 103721 license = lib.licenses.bsd3; ··· 103664 103816 pname = "generic-optics"; 103665 103817 version = "2.2.1.0"; 103666 103818 sha256 = "1bw7bbkrd1sfshzx7v1nbdnkxc82krw96x7vnl7myz9748m4472z"; 103819 + revision = "1"; 103820 + editedCabalFile = "13wkbs8x0clkqzi4xqin89qywpky8jkpz9cxgwsglbpcyw11jvgq"; 103667 103821 libraryHaskellDepends = [ 103668 103822 base generic-lens-core optics-core text 103669 103823 ]; ··· 105036 105190 105037 105191 "geomancy" = callPackage 105038 105192 ({ mkDerivation, base, containers, criterion, deepseq, hedgehog 105039 - , linear 105193 + , linear, mono-traversable, simple-affine-space 105040 105194 }: 105041 105195 mkDerivation { 105042 105196 pname = "geomancy"; 105043 - version = "0.2.3.0"; 105044 - sha256 = "1li0411y725c5k6zmkki0brz4w4yksxfdbk2ggq31yirmdihc5al"; 105045 - libraryHaskellDepends = [ base containers deepseq ]; 105046 - testHaskellDepends = [ base deepseq hedgehog linear ]; 105047 - benchmarkHaskellDepends = [ base criterion deepseq linear ]; 105197 + version = "0.2.4.0"; 105198 + sha256 = "1wc9fza03afha1ni7jh9gpm39k20d6n5kmjgkpd06aqpf6yaqfcl"; 105199 + libraryHaskellDepends = [ 105200 + base containers deepseq mono-traversable simple-affine-space 105201 + ]; 105202 + testHaskellDepends = [ 105203 + base deepseq hedgehog linear simple-affine-space 105204 + ]; 105205 + benchmarkHaskellDepends = [ 105206 + base criterion deepseq linear simple-affine-space 105207 + ]; 105048 105208 description = "Geometry and matrix manipulation"; 105049 105209 license = lib.licenses.bsd3; 105050 105210 }) {}; ··· 105503 105663 }) {}; 105504 105664 105505 105665 "ghc-debug-brick" = callPackage 105506 - ({ mkDerivation, base, brick, containers, cursor, directory 105666 + ({ mkDerivation, base, brick, containers, deepseq, directory 105507 105667 , exceptions, filepath, ghc-debug-client, ghc-debug-common 105508 105668 , ghc-debug-convention, microlens, microlens-platform, text, time 105509 105669 , unordered-containers, vty 105510 105670 }: 105511 105671 mkDerivation { 105512 105672 pname = "ghc-debug-brick"; 105513 - version = "0.2.0.0"; 105514 - sha256 = "1jv2n0bxy37whsxs4drajs0mx83qng82qr62igicfnlqsvd5sk36"; 105673 + version = "0.2.1.0"; 105674 + sha256 = "02zkfndppp386va6vp6mamsv195sdvvwa3dj0ff2kp3kb4gbny7n"; 105515 105675 isLibrary = false; 105516 105676 isExecutable = true; 105517 105677 executableHaskellDepends = [ 105518 - base brick containers cursor directory exceptions filepath 105678 + base brick containers deepseq directory exceptions filepath 105519 105679 ghc-debug-client ghc-debug-common ghc-debug-convention microlens 105520 105680 microlens-platform text time unordered-containers vty 105521 105681 ]; ··· 105555 105715 }: 105556 105716 mkDerivation { 105557 105717 pname = "ghc-debug-common"; 105558 - version = "0.2.0.0"; 105559 - sha256 = "1fw9whgh2zayvaagn1f7x1qkwvznpjhpn4zkfnfav24pkmpf5ijy"; 105560 - revision = "2"; 105561 - editedCabalFile = "1cq2bgq9n6295912p8bfwkrg9jqx36x4zxzj468pkr3dsfhjqr23"; 105718 + version = "0.2.1.0"; 105719 + sha256 = "1p895vq31ijkp8lgscxrvpiq2z97l9wx8rcji4nf8kc3bkprk8kl"; 105562 105720 libraryHaskellDepends = [ 105563 105721 array base binary bytestring containers cpu deepseq directory 105564 105722 dom-lt filepath ghc-debug-convention ghc-heap hashable transformers ··· 105588 105746 }: 105589 105747 mkDerivation { 105590 105748 pname = "ghc-debug-stub"; 105591 - version = "0.2.0.0"; 105592 - sha256 = "1zi388jwdad9qlj1v0ihrv67abknbhh7scr1fymc808xmkkwk701"; 105593 - revision = "1"; 105594 - editedCabalFile = "0irnhf32ghxch8r0p2vd7afj3282a1r9lval2an2mj99kcllhl6d"; 105749 + version = "0.2.1.0"; 105750 + sha256 = "1wjmlm9m6iwpn7bz3bjww7vlbp5jac5a8adzzfcxsgw4dz47n221"; 105595 105751 libraryHaskellDepends = [ 105596 105752 base directory filepath ghc-debug-convention ghc-prim 105597 105753 ]; ··· 115852 116008 license = lib.licenses.bsd3; 115853 116009 }) {}; 115854 116010 116011 + "graphs_0_7_2" = callPackage 116012 + ({ mkDerivation, array, base, containers, transformers 116013 + , transformers-compat, void 116014 + }: 116015 + mkDerivation { 116016 + pname = "graphs"; 116017 + version = "0.7.2"; 116018 + sha256 = "1isdy8qx3q00pb3jinvvmfvzhwblr3yhj4dzmlv0hdj0yi9j8bly"; 116019 + libraryHaskellDepends = [ 116020 + array base containers transformers transformers-compat void 116021 + ]; 116022 + description = "A simple monadic graph library"; 116023 + license = lib.licenses.bsd3; 116024 + hydraPlatforms = lib.platforms.none; 116025 + }) {}; 116026 + 115855 116027 "graphted" = callPackage 115856 116028 ({ mkDerivation, base, indexed }: 115857 116029 mkDerivation { ··· 119766 119938 ({ mkDerivation, base, containers, deepseq, fgl, hashable, HUnit 119767 119939 , monad-primitive, primitive, QuickCheck, ref-tf, test-framework 119768 119940 , test-framework-hunit, test-framework-quickcheck2, vector 119941 + , vector-th-unbox 119769 119942 }: 119770 119943 mkDerivation { 119771 119944 pname = "haggle"; 119772 - version = "0.1.0.1"; 119773 - sha256 = "1j598hcjw0p9iac4h91w47k4rh9k0h2r9gk3rrfkklvw84aznkrz"; 119945 + version = "0.2"; 119946 + sha256 = "1n7rg63bz283d938vr2w7ghza2qmljw04bg1wr4zhpylw6jjy2b7"; 119774 119947 libraryHaskellDepends = [ 119775 119948 base containers deepseq hashable monad-primitive primitive ref-tf 119776 - vector 119949 + vector vector-th-unbox 119777 119950 ]; 119778 119951 testHaskellDepends = [ 119779 119952 base containers fgl HUnit QuickCheck test-framework ··· 122089 122262 pname = "happy"; 122090 122263 version = "1.19.12"; 122091 122264 sha256 = "03xlmq6qmdx4zvzw8bp33kd9g7yvcq5cz4wg50xilw812kj276pv"; 122265 + revision = "1"; 122266 + editedCabalFile = "13wydw1mmdry4l9r63vxjk4h55ci9hgwzn1a842qqk1m2rb4xiln"; 122092 122267 isLibrary = false; 122093 122268 isExecutable = true; 122094 122269 enableSeparateDataOutput = true; ··· 122105 122280 pname = "happy"; 122106 122281 version = "1.20.0"; 122107 122282 sha256 = "1346r2x5ravs5fqma65bzjragqbb2g6v41wz9maknwm2jf7kl79v"; 122283 + revision = "1"; 122284 + editedCabalFile = "16dy1cv942rizxp8slnnbwi5l24ggsmy38madbin9scz38idqisx"; 122108 122285 isLibrary = false; 122109 122286 isExecutable = true; 122110 122287 enableSeparateDataOutput = true; ··· 133608 133785 }: 133609 133786 mkDerivation { 133610 133787 pname = "higgledy"; 133611 - version = "0.4.1.1"; 133612 - sha256 = "1aqln8y055ysnzw3sqfdi6rm63a4a8c3n3f4fgv1rqmx76vsvsaz"; 133788 + version = "0.4.2.0"; 133789 + sha256 = "01hl63wq6rb2wgml850wawq07sn9vl8d2hv1jc3m366dxdqqhy8j"; 133613 133790 setupHaskellDepends = [ base Cabal cabal-doctest ]; 133614 133791 libraryHaskellDepends = [ 133615 133792 barbies base generic-lens generic-lens-core named QuickCheck ··· 135843 136020 pname = "hlrdb"; 135844 136021 version = "0.3.2.0"; 135845 136022 sha256 = "1k4dsd4h3fv1ag753gwxvirfrj53ra4ik948pyacq31c16mz1l2p"; 135846 - revision = "2"; 135847 - editedCabalFile = "15z6f2qqis3qi1cfq43hhcqgcsinx58ha3bghh0pfybqysvbjmmd"; 136023 + revision = "3"; 136024 + editedCabalFile = "1r8dmsfbsm4lhak2hskid03bad2fvnb71v779grzf5hy6y46jc42"; 135848 136025 libraryHaskellDepends = [ 135849 136026 base base64-bytestring bytestring cryptonite hashable hedis 135850 136027 hlrdb-core memory random store time unordered-containers zstd ··· 135862 136039 pname = "hlrdb-core"; 135863 136040 version = "0.1.6.2"; 135864 136041 sha256 = "19pnwjlcg504kpvxq8r1hwb533adi2d919vgb1lr25c9bdyxc32n"; 136042 + revision = "1"; 136043 + editedCabalFile = "0d6bwxk390f00qsmhn71sssw47f53j2wgrwwarhs8vvz6kyvncmp"; 135865 136044 libraryHaskellDepends = [ 135866 136045 base bytestring hashable hedis lens mtl profunctors random time 135867 136046 unordered-containers ··· 147800 147979 license = lib.licenses.bsd3; 147801 147980 }) {}; 147802 147981 147982 + "http-reverse-proxy_0_6_0_1" = callPackage 147983 + ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive 147984 + , conduit, conduit-extra, containers, hspec, http-client 147985 + , http-conduit, http-types, network, resourcet, streaming-commons 147986 + , text, transformers, unliftio, wai, wai-logger, warp, word8 147987 + }: 147988 + mkDerivation { 147989 + pname = "http-reverse-proxy"; 147990 + version = "0.6.0.1"; 147991 + sha256 = "0a0fc9rqr1crbb1sbq3gzbkwjcfff662d4bgmy3vzspk7ky697ld"; 147992 + libraryHaskellDepends = [ 147993 + base blaze-builder bytestring case-insensitive conduit 147994 + conduit-extra containers http-client http-types network resourcet 147995 + streaming-commons text transformers unliftio wai wai-logger word8 147996 + ]; 147997 + testHaskellDepends = [ 147998 + base blaze-builder bytestring conduit conduit-extra hspec 147999 + http-conduit http-types network resourcet streaming-commons 148000 + transformers unliftio wai warp 148001 + ]; 148002 + description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; 148003 + license = lib.licenses.bsd3; 148004 + hydraPlatforms = lib.platforms.none; 148005 + }) {}; 148006 + 147803 148007 "http-rfc7807" = callPackage 147804 148008 ({ mkDerivation, aeson, base, call-stack, hspec-expectations-json 147805 148009 , http-media, http-types, HUnit, servant, servant-server, tasty ··· 155811 156015 "intricacy" = callPackage 155812 156016 ({ mkDerivation, array, base, binary, bytestring, containers 155813 156017 , cryptonite, directory, exceptions, filepath, hscurses, memory 155814 - , mtl, ncurses, network-fancy, random, safe, SDL, SDL-gfx 156018 + , mtl, ncurses, network-simple, random, safe, SDL, SDL-gfx 155815 156019 , SDL-mixer, SDL-ttf, stm, time, transformers, vector 155816 156020 }: 155817 156021 mkDerivation { 155818 156022 pname = "intricacy"; 155819 - version = "0.8.0.1"; 155820 - sha256 = "0kyhswgg8iyxvicgpf0f5rn3gk4k620crk02xd4bn797xws5bzzs"; 156023 + version = "0.8.1"; 156024 + sha256 = "0jpg3rvngsil7zii57inax3im92n1ahv6lcrb3swikahbli0d8wc"; 155821 156025 isLibrary = false; 155822 156026 isExecutable = true; 155823 156027 enableSeparateDataOutput = true; 155824 156028 executableHaskellDepends = [ 155825 156029 array base binary bytestring containers cryptonite directory 155826 - exceptions filepath hscurses memory mtl network-fancy random safe 156030 + exceptions filepath hscurses memory mtl network-simple random safe 155827 156031 SDL SDL-gfx SDL-mixer SDL-ttf stm time transformers vector 155828 156032 ]; 155829 156033 executablePkgconfigDepends = [ ncurses ]; ··· 155982 156186 testToolDepends = [ hspec-discover ]; 155983 156187 description = "Haskell98 invariant functors"; 155984 156188 license = lib.licenses.bsd2; 156189 + }) {}; 156190 + 156191 + "invariant_0_5_6" = callPackage 156192 + ({ mkDerivation, array, base, bifunctors, comonad, containers 156193 + , contravariant, ghc-prim, hspec, hspec-discover, profunctors 156194 + , QuickCheck, StateVar, stm, tagged, template-haskell 156195 + , th-abstraction, transformers, transformers-compat 156196 + , unordered-containers 156197 + }: 156198 + mkDerivation { 156199 + pname = "invariant"; 156200 + version = "0.5.6"; 156201 + sha256 = "1l73wlnmh09187w8y61qyjjycpljds9lydy16ifa08bmmbxgkzcw"; 156202 + libraryHaskellDepends = [ 156203 + array base bifunctors comonad containers contravariant ghc-prim 156204 + profunctors StateVar stm tagged template-haskell th-abstraction 156205 + transformers transformers-compat unordered-containers 156206 + ]; 156207 + testHaskellDepends = [ base hspec QuickCheck template-haskell ]; 156208 + testToolDepends = [ hspec-discover ]; 156209 + description = "Haskell98 invariant functors"; 156210 + license = lib.licenses.bsd2; 156211 + hydraPlatforms = lib.platforms.none; 155985 156212 }) {}; 155986 156213 155987 156214 "inventory" = callPackage ··· 158152 158379 }: 158153 158380 mkDerivation { 158154 158381 pname = "ixset-typed"; 158155 - version = "0.5"; 158156 - sha256 = "07n7qfi8slmrlgzvrkddr17b792phhb140q9gb5pm68kk1im4izs"; 158382 + version = "0.5.1.0"; 158383 + sha256 = "033rm2sik1qz4dmqlabjzwwqw38vj3hrwlkmhm554yvk1n3v9dq8"; 158157 158384 libraryHaskellDepends = [ 158158 158385 base containers deepseq safecopy syb template-haskell 158159 158386 ]; ··· 160914 161141 }: 160915 161142 mkDerivation { 160916 161143 pname = "jsonrpc-conduit"; 160917 - version = "0.3.8"; 160918 - sha256 = "196w8jmb8107shbrdhr17axl6x2sx088hdys2yfpqmrcsxc77z45"; 161144 + version = "0.3.9"; 161145 + sha256 = "0qj3rlh695nbs3kxix2r7h4np99q6pn7x8x86j4785d6d2gly1ik"; 160919 161146 libraryHaskellDepends = [ 160920 161147 aeson attoparsec base bytestring conduit conduit-extra mtl text 160921 161148 transformers unordered-containers ··· 161725 161952 license = lib.licenses.bsd3; 161726 161953 }) {}; 161727 161954 161955 + "kan-extensions_5_2_4" = callPackage 161956 + ({ mkDerivation, adjunctions, array, base, comonad, containers 161957 + , contravariant, distributive, free, invariant, mtl, profunctors 161958 + , semigroupoids, tagged, transformers, transformers-compat 161959 + }: 161960 + mkDerivation { 161961 + pname = "kan-extensions"; 161962 + version = "5.2.4"; 161963 + sha256 = "0qnds0vwhsqznirqalm8f4c0qsmp1awfhc4fn2rx5agl5az3zip8"; 161964 + libraryHaskellDepends = [ 161965 + adjunctions array base comonad containers contravariant 161966 + distributive free invariant mtl profunctors semigroupoids tagged 161967 + transformers transformers-compat 161968 + ]; 161969 + description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; 161970 + license = lib.licenses.bsd3; 161971 + hydraPlatforms = lib.platforms.none; 161972 + }) {}; 161973 + 161728 161974 "kangaroo" = callPackage 161729 161975 ({ mkDerivation, array, base }: 161730 161976 mkDerivation { ··· 163307 163553 pname = "keys"; 163308 163554 version = "3.12.3"; 163309 163555 sha256 = "0ik6wsff306dnbz0v3gpiajlj5b558hrk9176fzcb2fclf4447nm"; 163310 - revision = "1"; 163311 - editedCabalFile = "18fapd53nby46p5103y1m2hwpixn5p12mbyvb8va71pk4b77qlcy"; 163556 + revision = "2"; 163557 + editedCabalFile = "1sb7ii9mhx77rhviqbmdc5r6wlimkmadxi1pyk7k3imdqcdzgjlp"; 163312 163558 libraryHaskellDepends = [ 163313 163559 array base comonad containers free hashable semigroupoids 163314 163560 semigroups tagged transformers transformers-compat ··· 163933 164179 }: 163934 164180 mkDerivation { 163935 164181 pname = "koji-tool"; 163936 - version = "0.8.3"; 163937 - sha256 = "17xd1755yr2acf6brwbxn3yzbndv982s7jgxbj9dmd7my6v1d9i2"; 164182 + version = "0.8.5"; 164183 + sha256 = "1zkvw8fibav9n8x7dvw7mcns6zc00il5ajcwsvb1ycbb3pqj82ps"; 163938 164184 isLibrary = false; 163939 164185 isExecutable = true; 163940 164186 executableHaskellDepends = [ ··· 168722 168968 license = lib.licenses.mit; 168723 168969 }) {}; 168724 168970 168725 - "lens-aeson_1_2" = callPackage 168971 + "lens-aeson_1_2_1" = callPackage 168726 168972 ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 168727 168973 , scientific, text, text-short, unordered-containers, vector 168728 168974 }: 168729 168975 mkDerivation { 168730 168976 pname = "lens-aeson"; 168731 - version = "1.2"; 168732 - sha256 = "1hi0y3bn3xny7w2cjzxn9j5hmfg6l7kbsji5skbj32zfrqlhkkwi"; 168977 + version = "1.2.1"; 168978 + sha256 = "08x0vbkay8d6s24fzy2iria0hl9pmq891cnzm6zl0j9j53z9jw9l"; 168733 168979 libraryHaskellDepends = [ 168734 168980 aeson attoparsec base bytestring lens scientific text text-short 168735 168981 unordered-containers vector ··· 169174 169420 pname = "lentil"; 169175 169421 version = "1.5.4.0"; 169176 169422 sha256 = "0xfsf7g9r2w30qkp4829w77hsja562jvx4n9i880j9qngi2ms2h1"; 169423 + revision = "1"; 169424 + editedCabalFile = "15dr5jlb6b18j2brxji4k1g12zwvhpjq96nqb27pjkznm59c4x19"; 169177 169425 isLibrary = false; 169178 169426 isExecutable = true; 169179 169427 executableHaskellDepends = [ ··· 170820 171068 pname = "lift-generics"; 170821 171069 version = "0.2.1"; 170822 171070 sha256 = "1qkzq8hcb6j15cslv577bmhjcxmljzsrryysdgd7r99kr3q445b4"; 170823 - revision = "1"; 170824 - editedCabalFile = "0i0qxm2fi34bnpnwk5k61yjx72pc9j8jhbx44xk176pw7y2pinxd"; 171071 + revision = "2"; 171072 + editedCabalFile = "1q6lviqfvyis3ss9w6r6j5d35is50r2favj9lkdagcmczw9c4706"; 170825 171073 libraryHaskellDepends = [ 170826 171074 base generic-deriving ghc-prim template-haskell th-compat 170827 171075 ]; ··· 171825 172073 license = lib.licenses.publicDomain; 171826 172074 }) {}; 171827 172075 172076 + "linkcheck" = callPackage 172077 + ({ mkDerivation, aeson, base, bytestring, conduit, containers 172078 + , http-client, http-client-tls, http-types, lrucache, monad-logger 172079 + , mtl, network-uri, optparse-applicative, path, path-io, retry, stm 172080 + , tagsoup, text, unliftio 172081 + }: 172082 + mkDerivation { 172083 + pname = "linkcheck"; 172084 + version = "0.1.0.0"; 172085 + sha256 = "18wb2naxqhvnvyjjmgbsa0ky98ikgrdhrcra9bxy1vfizhrpwhfn"; 172086 + isLibrary = true; 172087 + isExecutable = true; 172088 + libraryHaskellDepends = [ 172089 + aeson base bytestring conduit containers http-client 172090 + http-client-tls http-types lrucache monad-logger mtl network-uri 172091 + optparse-applicative path path-io retry stm tagsoup text unliftio 172092 + ]; 172093 + executableHaskellDepends = [ base ]; 172094 + testHaskellDepends = [ base ]; 172095 + description = "Check for broken links in CI"; 172096 + license = lib.licenses.mit; 172097 + }) {}; 172098 + 171828 172099 "linkchk" = callPackage 171829 172100 ({ mkDerivation, base, gtk, haskell98, popenhs, regex-compat, unix 171830 172101 }: ··· 172780 173051 license = lib.licenses.mit; 172781 173052 }) {}; 172782 173053 173054 + "list-t_1_0_5_2" = callPackage 173055 + ({ mkDerivation, base, base-prelude, foldl, HTF, logict, mmorph 173056 + , monad-control, mtl, mtl-prelude, semigroups, transformers 173057 + , transformers-base 173058 + }: 173059 + mkDerivation { 173060 + pname = "list-t"; 173061 + version = "1.0.5.2"; 173062 + sha256 = "0478iigfrkinhkjyq9zc4xvrbzcfvq46s6k0bj4a2sy8j41jzgww"; 173063 + libraryHaskellDepends = [ 173064 + base foldl logict mmorph monad-control mtl semigroups transformers 173065 + transformers-base 173066 + ]; 173067 + testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; 173068 + description = "ListT done right"; 173069 + license = lib.licenses.mit; 173070 + hydraPlatforms = lib.platforms.none; 173071 + }) {}; 173072 + 172783 173073 "list-t-attoparsec" = callPackage 172784 173074 ({ mkDerivation, attoparsec, base-prelude, either, hspec, list-t 172785 173075 , list-t-text, text, transformers ··· 172887 173177 testHaskellDepends = [ base doctest ]; 172888 173178 description = "List monad transformer"; 172889 173179 license = lib.licenses.bsd3; 173180 + maintainers = with lib.maintainers; [ Gabriel439 ]; 173181 + }) {}; 173182 + 173183 + "list-transformer_1_0_8" = callPackage 173184 + ({ mkDerivation, base, doctest, mtl }: 173185 + mkDerivation { 173186 + pname = "list-transformer"; 173187 + version = "1.0.8"; 173188 + sha256 = "03rqs8hrddlbq4v3pzh42z7lh11z3klpgbmyp85i926shpm5qibh"; 173189 + libraryHaskellDepends = [ base mtl ]; 173190 + testHaskellDepends = [ base doctest ]; 173191 + description = "List monad transformer"; 173192 + license = lib.licenses.bsd3; 173193 + hydraPlatforms = lib.platforms.none; 172890 173194 maintainers = with lib.maintainers; [ Gabriel439 ]; 172891 173195 }) {}; 172892 173196 ··· 174816 175120 license = lib.licenses.bsd3; 174817 175121 }) {}; 174818 175122 175123 + "logict_0_8_0_0" = callPackage 175124 + ({ mkDerivation, async, base, mtl, tasty, tasty-hunit }: 175125 + mkDerivation { 175126 + pname = "logict"; 175127 + version = "0.8.0.0"; 175128 + sha256 = "0mpv50ifb3x9vfmgi1p9piwcgz8d19x0wdj789wxyhxwjpr6v4py"; 175129 + isLibrary = true; 175130 + isExecutable = true; 175131 + libraryHaskellDepends = [ base mtl ]; 175132 + testHaskellDepends = [ async base mtl tasty tasty-hunit ]; 175133 + description = "A backtracking logic-programming monad"; 175134 + license = lib.licenses.bsd3; 175135 + hydraPlatforms = lib.platforms.none; 175136 + }) {}; 175137 + 174819 175138 "logict-sequence" = callPackage 174820 175139 ({ mkDerivation, base, logict, mtl, sequence, type-aligned }: 174821 175140 mkDerivation { ··· 175312 175631 }) {}; 175313 175632 175314 175633 "looper" = callPackage 175315 - ({ mkDerivation, aeson, base, hspec, optparse-applicative, text 175634 + ({ mkDerivation, aeson, autodocodec, autodocodec-yaml, base 175635 + , envparse, optparse-applicative, sydtest, sydtest-discover, text 175316 175636 , time, unliftio 175317 175637 }: 175318 175638 mkDerivation { 175319 175639 pname = "looper"; 175320 - version = "0.0.0.2"; 175321 - sha256 = "0w4aancb0lbfgmk2drnbc1w6bxlbdkhg0zy1qj7xp3kvgc76vqli"; 175640 + version = "0.2.0.1"; 175641 + sha256 = "0nqkqbna1fivf0ziilqrlg38hxpkhll4yv42p8r5g87d7r33jmc2"; 175322 175642 libraryHaskellDepends = [ 175323 - aeson base optparse-applicative text time unliftio 175643 + aeson autodocodec base envparse optparse-applicative text time 175644 + unliftio 175324 175645 ]; 175325 175646 testHaskellDepends = [ 175326 - aeson base hspec optparse-applicative text time unliftio 175647 + autodocodec-yaml base optparse-applicative sydtest unliftio 175327 175648 ]; 175328 - license = lib.licenses.bsd3; 175649 + testToolDepends = [ sydtest-discover ]; 175650 + license = lib.licenses.mit; 175329 175651 hydraPlatforms = lib.platforms.none; 175330 175652 broken = true; 175331 175653 }) {}; ··· 176076 176398 pname = "lucid"; 176077 176399 version = "2.11.0"; 176078 176400 sha256 = "1m1f13vxn3pwc7wvhx0czzxlx2ws8lzdgxlxd1707cx79jyib5sl"; 176079 - revision = "1"; 176080 - editedCabalFile = "0ai0rxiyni9cxzad3ix50vkxqqmgxfd1vpqzfrmmll1swxpicd8q"; 176401 + revision = "2"; 176402 + editedCabalFile = "01vqjqpng0wkf8955vrdwd499y9h2mlh4jqbnmzp5598iswgq15c"; 176081 176403 libraryHaskellDepends = [ 176082 176404 base blaze-builder bytestring containers hashable mmorph mtl text 176083 176405 transformers unordered-containers ··· 176090 176412 ]; 176091 176413 description = "Clear to write, read and edit DSL for HTML"; 176092 176414 license = lib.licenses.bsd3; 176415 + }) {}; 176416 + 176417 + "lucid_2_11_1" = callPackage 176418 + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring 176419 + , containers, criterion, deepseq, hashable, hspec, HUnit, mmorph 176420 + , mtl, parsec, text, transformers 176421 + }: 176422 + mkDerivation { 176423 + pname = "lucid"; 176424 + version = "2.11.1"; 176425 + sha256 = "13krwrvv0w24rnl7pc7qhv18c6030fkxpx7sxkffdm8sr9173xfw"; 176426 + libraryHaskellDepends = [ 176427 + base blaze-builder bytestring containers hashable mmorph mtl text 176428 + transformers 176429 + ]; 176430 + testHaskellDepends = [ 176431 + base bifunctors hspec HUnit mtl parsec text 176432 + ]; 176433 + benchmarkHaskellDepends = [ 176434 + base blaze-builder bytestring criterion deepseq text transformers 176435 + ]; 176436 + description = "Clear to write, read and edit DSL for HTML"; 176437 + license = lib.licenses.bsd3; 176438 + hydraPlatforms = lib.platforms.none; 176093 176439 }) {}; 176094 176440 176095 176441 "lucid-alpine" = callPackage ··· 176216 176562 ]; 176217 176563 description = "DSL for SVG using lucid for HTML"; 176218 176564 license = lib.licenses.bsd3; 176565 + }) {}; 176566 + 176567 + "lucid2" = callPackage 176568 + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring 176569 + , containers, hspec, HUnit, mtl, parsec, text, transformers 176570 + }: 176571 + mkDerivation { 176572 + pname = "lucid2"; 176573 + version = "0.0.20220509"; 176574 + sha256 = "0d38gic3xjqj5in97sbfzjb696011bl47sshzh0377md5j02yc85"; 176575 + libraryHaskellDepends = [ 176576 + base blaze-builder bytestring containers mtl text transformers 176577 + ]; 176578 + testHaskellDepends = [ 176579 + base bifunctors hspec HUnit mtl parsec text 176580 + ]; 176581 + description = "Clear to write, read and edit DSL for HTML"; 176582 + license = lib.licenses.bsd3; 176583 + hydraPlatforms = lib.platforms.none; 176584 + broken = true; 176219 176585 }) {}; 176220 176586 176221 176587 "lucienne" = callPackage ··· 179778 180144 }: 179779 180145 mkDerivation { 179780 180146 pname = "matterhorn"; 179781 - version = "50200.15.0"; 179782 - sha256 = "0hn3d1fifzls714a0hsvhbf7wxhg0q60igpr2jcd76yqnzax1mda"; 180147 + version = "50200.16.0"; 180148 + sha256 = "1hjb408dznls8r6k89jv0zvliv259xj2gzl03f4ypwacihmr3qiw"; 179783 180149 isLibrary = true; 179784 180150 isExecutable = true; 179785 180151 enableSeparateDataOutput = true; ··· 179814 180180 }: 179815 180181 mkDerivation { 179816 180182 pname = "mattermost-api"; 179817 - version = "50200.11.0"; 179818 - sha256 = "0knrc00377wx8j4ly8d2nxqswybp3782j7qig6mrzlww6nbd68j7"; 180183 + version = "50200.12.0"; 180184 + sha256 = "12mmpyw1lcmyxh73rgzckww7dd6lxc6m81h2xa9rpd8mxwx0n17n"; 179819 180185 isLibrary = true; 179820 180186 isExecutable = true; 179821 180187 libraryHaskellDepends = [ ··· 179839 180205 }: 179840 180206 mkDerivation { 179841 180207 pname = "mattermost-api-qc"; 179842 - version = "50200.11.0"; 179843 - sha256 = "0crz0nc8qbsjyq3fllbj50d01axgwfas76bmr6xnz83sic2s1yw1"; 180208 + version = "50200.12.0"; 180209 + sha256 = "00fgr80xanrni835n7wgazq6900f040cwnhbsz99936azx125nx4"; 179844 180210 libraryHaskellDepends = [ 179845 180211 base containers mattermost-api QuickCheck text time 179846 180212 ]; ··· 180746 181112 pname = "megaparsec"; 180747 181113 version = "9.2.0"; 180748 181114 sha256 = "1whjn3n14h2q3ja1v7zllzmj28ai7lqwfbif22c08rl00wpwmwhd"; 180749 - revision = "1"; 180750 - editedCabalFile = "1jv3j59fvykvplj3c653c9rk5wiwg6x0jnljhi2vknzxxmxkjj02"; 181115 + revision = "2"; 181116 + editedCabalFile = "1f82q0v5iaqnl6f3pjgrwin2lg7w5zykgn6vpds08pjgwfg39va1"; 180751 181117 libraryHaskellDepends = [ 180752 181118 base bytestring case-insensitive containers deepseq mtl 180753 181119 parser-combinators scientific text transformers ··· 180759 181125 license = lib.licenses.bsd2; 180760 181126 }) {}; 180761 181127 181128 + "megaparsec_9_2_1" = callPackage 181129 + ({ mkDerivation, base, bytestring, case-insensitive, containers 181130 + , criterion, deepseq, mtl, parser-combinators, scientific, text 181131 + , transformers, weigh 181132 + }: 181133 + mkDerivation { 181134 + pname = "megaparsec"; 181135 + version = "9.2.1"; 181136 + sha256 = "1zz92mkwyhvvh8c8nc7cfz8cw2g9374na11k2gb6dbm4pabq69vb"; 181137 + libraryHaskellDepends = [ 181138 + base bytestring case-insensitive containers deepseq mtl 181139 + parser-combinators scientific text transformers 181140 + ]; 181141 + benchmarkHaskellDepends = [ 181142 + base bytestring containers criterion deepseq text weigh 181143 + ]; 181144 + description = "Monadic parser combinators"; 181145 + license = lib.licenses.bsd2; 181146 + hydraPlatforms = lib.platforms.none; 181147 + }) {}; 181148 + 180762 181149 "megaparsec-tests" = callPackage 180763 181150 ({ mkDerivation, base, bytestring, case-insensitive, containers 180764 181151 , hspec, hspec-discover, hspec-expectations, hspec-megaparsec ··· 180783 181170 license = lib.licenses.bsd2; 180784 181171 }) {}; 180785 181172 181173 + "megaparsec-tests_9_2_1" = callPackage 181174 + ({ mkDerivation, base, bytestring, case-insensitive, containers 181175 + , hspec, hspec-discover, hspec-expectations, hspec-megaparsec 181176 + , megaparsec, mtl, parser-combinators, QuickCheck, scientific, text 181177 + , transformers 181178 + }: 181179 + mkDerivation { 181180 + pname = "megaparsec-tests"; 181181 + version = "9.2.1"; 181182 + sha256 = "1w9maxfld3by01kl8z0a4v64y2vm5rmsdss6n57mr3j43ng2isr9"; 181183 + libraryHaskellDepends = [ 181184 + base bytestring containers hspec hspec-expectations 181185 + hspec-megaparsec megaparsec mtl QuickCheck text transformers 181186 + ]; 181187 + testHaskellDepends = [ 181188 + base bytestring case-insensitive containers hspec 181189 + hspec-expectations hspec-megaparsec megaparsec mtl 181190 + parser-combinators QuickCheck scientific text transformers 181191 + ]; 181192 + testToolDepends = [ hspec-discover ]; 181193 + description = "Test utilities and the test suite of Megaparsec"; 181194 + license = lib.licenses.bsd2; 181195 + hydraPlatforms = lib.platforms.none; 181196 + }) {}; 181197 + 180786 181198 "meldable-heap" = callPackage 180787 181199 ({ mkDerivation, base }: 180788 181200 mkDerivation { ··· 182021 182433 pname = "mfsolve"; 182022 182434 version = "0.3.2.1"; 182023 182435 sha256 = "190dszcnvy5j5bs3n0kya8a9nq0vdhrpgpndjpsxw7x70y3hc9d2"; 182436 + revision = "1"; 182437 + editedCabalFile = "0938ji6l1bx787lxcw6rzjwskm9vxm615cvx7hxpbwp0hbxrj5sa"; 182024 182438 libraryHaskellDepends = [ 182025 182439 base hashable mtl mtl-compat unordered-containers 182026 182440 ]; ··· 184192 184606 pname = "mmorph"; 184193 184607 version = "1.2.0"; 184194 184608 sha256 = "1022d8mm523dihkf85mqsqxpm9rnyicmv91c8rm4csv7xdc80cv1"; 184195 - revision = "1"; 184196 - editedCabalFile = "13j6znh33pnnk8yfxnndqiiwal1w6rs2jigs7fgpa26883ff2788"; 184609 + revision = "2"; 184610 + editedCabalFile = "00jrrmns4w77l06kcpr7798wcbc8abmhlivy12fxajs3x1ycb3hn"; 184197 184611 libraryHaskellDepends = [ 184198 184612 base mtl transformers transformers-compat 184199 184613 ]; ··· 185835 186249 pname = "monad-par"; 185836 186250 version = "0.3.5"; 185837 186251 sha256 = "1a8m99g9x1ivch4vhksk7fdzygbil3d33w8gdqngxbmwdikdafl2"; 185838 - revision = "1"; 185839 - editedCabalFile = "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"; 186252 + revision = "2"; 186253 + editedCabalFile = "1q4npp0vrsjpxk7n7rcf3lgqg1sf2qx628ciiw48al9y9xlznsaz"; 185840 186254 libraryHaskellDepends = [ 185841 186255 abstract-deque abstract-par array base containers deepseq 185842 186256 monad-par-extras mtl mwc-random parallel ··· 187037 187451 pname = "monoidal-containers"; 187038 187452 version = "0.6.2.0"; 187039 187453 sha256 = "0rnhlm77zrql42z3zsn3ag279q0vrz2idygc0x4p50q3780670p3"; 187454 + revision = "1"; 187455 + editedCabalFile = "07l42gkixdpamqqzdwqfcd62yga5cvhbxz5l0jpgs8kgf6prna4p"; 187040 187456 libraryHaskellDepends = [ 187041 187457 aeson base containers deepseq hashable lens newtype semialign these 187042 187458 unordered-containers witherable ··· 189078 189494 hydraPlatforms = lib.platforms.none; 189079 189495 }) {}; 189080 189496 189081 - "mtl_2_2_2" = callPackage 189497 + "mtl_2_3" = callPackage 189082 189498 ({ mkDerivation, base, transformers }: 189083 189499 mkDerivation { 189084 189500 pname = "mtl"; 189085 - version = "2.2.2"; 189086 - sha256 = "1xmy5741h8cyy0d91ahvqdz2hykkk20l8br7lg1rccnkis5g80w8"; 189501 + version = "2.3"; 189502 + sha256 = "0krx6bl7xd5n2v9775igv4p8723w6ilshmpljryzfsv4gp74dsy7"; 189087 189503 libraryHaskellDepends = [ base transformers ]; 189088 - description = "Monad classes, using functional dependencies"; 189504 + description = "Monad classes for transformers, using functional dependencies"; 189089 189505 license = lib.licenses.bsd3; 189090 189506 hydraPlatforms = lib.platforms.none; 189091 189507 }) {}; ··· 195784 196200 }: 195785 196201 mkDerivation { 195786 196202 pname = "niv"; 195787 - version = "0.2.20"; 195788 - sha256 = "1bspaz1a1vy50336d264b6wv7wrfb4a758ghcv6j437lhinjjbf9"; 196203 + version = "0.2.21"; 196204 + sha256 = "1i4n706nrrd0mk34wrjgg597gsd95xslg8aqrhp3ijh4j4h2b8n2"; 195789 196205 isLibrary = true; 195790 196206 isExecutable = true; 195791 196207 enableSeparateDataOutput = true; ··· 201282 201698 }: 201283 201699 mkDerivation { 201284 201700 pname = "opentracing"; 201285 - version = "0.2.1"; 201286 - sha256 = "0p2y996cl5hfw85kdr0majymxccv2d1ka15wbyc2qxgskz3dy9cq"; 201701 + version = "0.2.2"; 201702 + sha256 = "0d2zxq6y943kwpis9nbbj7cn8amy315bxy56mjj54bkg3jm43jn7"; 201287 201703 libraryHaskellDepends = [ 201288 201704 aeson async base base64-bytestring bytestring case-insensitive 201289 201705 clock containers http-types iproute lens mtl mwc-random network ··· 201298 201714 ({ mkDerivation, base, http-client, lens, mtl, opentracing, text }: 201299 201715 mkDerivation { 201300 201716 pname = "opentracing-http-client"; 201301 - version = "0.2.0"; 201302 - sha256 = "19mwl69ggyd7zf1dvx5yjzsq5mlw5l94h989hgwc4ryvp8zqwv4n"; 201717 + version = "0.2.2"; 201718 + sha256 = "03adv17m82imw7bq618zm6x79gq6avvhcz3i0jak4157f3lwdq6b"; 201303 201719 libraryHaskellDepends = [ 201304 201720 base http-client lens mtl opentracing text 201305 201721 ]; ··· 201315 201731 }: 201316 201732 mkDerivation { 201317 201733 pname = "opentracing-jaeger"; 201318 - version = "0.2.0"; 201319 - sha256 = "0ffcbmg8qzvyhm7vzk2zkk5czli4ndrp18cc328i7600gzv1gr81"; 201734 + version = "0.2.2"; 201735 + sha256 = "1wy8n4ci3hs2glwahhgzzl6g4dw370ay2dg8bf1af8a27sl3dhjn"; 201320 201736 libraryHaskellDepends = [ 201321 201737 base bytestring exceptions hashable http-client http-types lens mtl 201322 201738 network opentracing pinch QuickCheck safe-exceptions text ··· 201330 201746 ({ mkDerivation, base, lens, opentracing, text, wai }: 201331 201747 mkDerivation { 201332 201748 pname = "opentracing-wai"; 201333 - version = "0.2.0"; 201334 - sha256 = "178xxgg0rw94gld5jlvix6czsvg66q60h06nj2b1x7rnd0pjryc6"; 201749 + version = "0.2.2"; 201750 + sha256 = "1yfbh7pp2rp16xm5bqij9f6m0cm23zrd0jsndkngl1mxjkv6l24i"; 201335 201751 libraryHaskellDepends = [ base lens opentracing text wai ]; 201336 201752 description = "Middleware adding OpenTracing tracing for WAI applications"; 201337 201753 license = lib.licenses.asl20; ··· 201341 201757 ({ mkDerivation, aeson, base, opentracing, text }: 201342 201758 mkDerivation { 201343 201759 pname = "opentracing-zipkin-common"; 201344 - version = "0.2.0"; 201345 - sha256 = "0yngiz8135v844wcx28izwhx18iz06di3dl8bm5xqh47ir43wdw6"; 201760 + version = "0.2.2"; 201761 + sha256 = "1vridakdz07yfiyr92byd8kab2zc68izpv1j8dh4a0xnks8910wk"; 201346 201762 libraryHaskellDepends = [ aeson base opentracing text ]; 201347 201763 description = "Zipkin OpenTracing Backend Commons"; 201348 201764 license = lib.licenses.asl20; ··· 201356 201772 }: 201357 201773 mkDerivation { 201358 201774 pname = "opentracing-zipkin-v1"; 201359 - version = "0.2.0"; 201360 - sha256 = "15n9m7affy81fr80zw7l54lch7gr6bvhcqpga797x7rvdxqqjv9j"; 201775 + version = "0.2.2"; 201776 + sha256 = "0z263yksbcgyfzsb6fj6id3bdsbhb0b92bfjm0myclj8f703hxbj"; 201361 201777 libraryHaskellDepends = [ 201362 201778 base bytestring exceptions hashable http-client http-types iproute 201363 201779 lens opentracing opentracing-zipkin-common pinch QuickCheck text ··· 201374 201790 }: 201375 201791 mkDerivation { 201376 201792 pname = "opentracing-zipkin-v2"; 201377 - version = "0.2.0"; 201378 - sha256 = "1ykssjhknfyiw02abjpz38zmlw8l03zb8c3y3ic5njmsg23nxfzb"; 201793 + version = "0.2.2"; 201794 + sha256 = "1hqbr4ifabyg6sr40jw9hqi2xq00wqy8srw9q6hj5qxqnvl39110"; 201379 201795 libraryHaskellDepends = [ 201380 201796 aeson base base64-bytestring bytestring exceptions http-client 201381 201797 http-types lens opentracing opentracing-zipkin-common text ··· 205788 206204 broken = true; 205789 206205 }) {}; 205790 206206 205791 - "parsec_3_1_15_0" = callPackage 206207 + "parsec_3_1_15_1" = callPackage 205792 206208 ({ mkDerivation, base, bytestring, mtl, tasty, tasty-hunit, text }: 205793 206209 mkDerivation { 205794 206210 pname = "parsec"; 205795 - version = "3.1.15.0"; 205796 - sha256 = "1v8zs8zv1rk16lag2yqaxfwanjpgnh4gxw1vd70py0n04d20z0lq"; 206211 + version = "3.1.15.1"; 206212 + sha256 = "1pcqgxzhzlyaxrkgdixsl0jh7jfcg66kwqqf6va0am8q64ar1r5b"; 205797 206213 libraryHaskellDepends = [ base bytestring mtl text ]; 205798 206214 testHaskellDepends = [ base mtl tasty tasty-hunit ]; 205799 206215 description = "Monadic parser combinators"; ··· 206171 206587 license = lib.licenses.bsd3; 206172 206588 }) {}; 206173 206589 206590 + "parsers_0_12_11" = callPackage 206591 + ({ mkDerivation, attoparsec, base, base-orphans, binary, bytestring 206592 + , charset, containers, mtl, parsec, QuickCheck 206593 + , quickcheck-instances, scientific, text, transformers 206594 + , unordered-containers 206595 + }: 206596 + mkDerivation { 206597 + pname = "parsers"; 206598 + version = "0.12.11"; 206599 + sha256 = "068k7fm0s13z0jkkffc149cqcxnzpk1m066lp4ccdfcb41km1zwi"; 206600 + libraryHaskellDepends = [ 206601 + attoparsec base base-orphans binary charset containers mtl parsec 206602 + scientific text transformers unordered-containers 206603 + ]; 206604 + testHaskellDepends = [ 206605 + attoparsec base bytestring parsec QuickCheck quickcheck-instances 206606 + ]; 206607 + description = "Parsing combinators"; 206608 + license = lib.licenses.bsd3; 206609 + hydraPlatforms = lib.platforms.none; 206610 + }) {}; 206611 + 206174 206612 "parsers-megaparsec" = callPackage 206175 206613 ({ mkDerivation, base, fail, megaparsec, mtl, parsers, semigroups 206176 206614 , text, transformers ··· 207201 207639 pname = "pattern-arrows"; 207202 207640 version = "0.0.2"; 207203 207641 sha256 = "13q7bj19hd60rnjfc05wxlyck8llxy11z3mns8kxg197wxrdkhkg"; 207642 + revision = "1"; 207643 + editedCabalFile = "0vngc3mlyj52fl6cdrbwngpcyzp0gahq2h1sy1ysga62mv76wpc9"; 207204 207644 libraryHaskellDepends = [ base mtl ]; 207205 207645 description = "Arrows for Pretty Printing"; 207206 207646 license = lib.licenses.mit; ··· 211393 211833 }: 211394 211834 mkDerivation { 211395 211835 pname = "pinboard"; 211396 - version = "0.10.2.0"; 211397 - sha256 = "12hwfgqkn7sym9hig0b0afnzf0an6wcwdw9bc166y3539r3v13ck"; 211836 + version = "0.10.3.0"; 211837 + sha256 = "0j0isf2539b3fj393766wlrpgdpi39cqjqzw5jxihn7b67cvblyp"; 211398 211838 libraryHaskellDepends = [ 211399 211839 aeson base bytestring containers http-client http-client-tls 211400 211840 http-types monad-logger mtl network profunctors random text time ··· 214118 214558 license = lib.licenses.bsd3; 214119 214559 }) {}; 214120 214560 214561 + "pointed_5_0_4" = callPackage 214562 + ({ mkDerivation, base, comonad, containers, data-default-class 214563 + , hashable, kan-extensions, semigroupoids, semigroups, stm, tagged 214564 + , transformers, transformers-compat, unordered-containers 214565 + }: 214566 + mkDerivation { 214567 + pname = "pointed"; 214568 + version = "5.0.4"; 214569 + sha256 = "1mv06x2hscs220w4acm5jwg96vi4faky6ir9hnljfry3n2r2xix3"; 214570 + libraryHaskellDepends = [ 214571 + base comonad containers data-default-class hashable kan-extensions 214572 + semigroupoids semigroups stm tagged transformers 214573 + transformers-compat unordered-containers 214574 + ]; 214575 + description = "Pointed and copointed data"; 214576 + license = lib.licenses.bsd3; 214577 + hydraPlatforms = lib.platforms.none; 214578 + }) {}; 214579 + 214121 214580 "pointedalternative" = callPackage 214122 214581 ({ mkDerivation, base, mtl, semigroups, transformers }: 214123 214582 mkDerivation { ··· 214591 215050 ({ mkDerivation, base, requirements }: 214592 215051 mkDerivation { 214593 215052 pname = "poly-rec"; 214594 - version = "0.6.0.0"; 214595 - sha256 = "1csi81i0j3hk2gsc3c0rx939i67b0mj2pi064giw20yspqqjrp27"; 215053 + version = "0.7.0.0"; 215054 + sha256 = "0ayaz87l2rgpm4ddc7bidss042xhfcwa3sk7685ypssqvp02k5r0"; 214596 215055 libraryHaskellDepends = [ base requirements ]; 214597 215056 description = "Polykinded extensible records"; 214598 215057 license = lib.licenses.gpl3Only; ··· 215857 216316 }: 215858 216317 mkDerivation { 215859 216318 pname = "popkey"; 215860 - version = "0.1.0.1"; 215861 - sha256 = "1nlbd54q7npxm9hk4f289md6rch0sqnl236iimwsrwllpq6rbxbz"; 215862 - revision = "2"; 215863 - editedCabalFile = "1wpbwyya9fcdiyqs6lrbcxw7d64vn12kc7n63h2wjxrizjhfs6n6"; 216319 + version = "0.1.0.2"; 216320 + sha256 = "0ibk4qwcizsqvyvb8lgad5c0szgw7571bi2c54b5r3rrm7vzpx05"; 215864 216321 libraryHaskellDepends = [ 215865 216322 base bitvec bytestring containers hw-bits hw-prim hw-rankselect 215866 216323 hw-rankselect-base store text vector ··· 219092 219549 }: 219093 219550 mkDerivation { 219094 219551 pname = "prettyprinter-combinators"; 219095 - version = "0.1.0.1"; 219096 - sha256 = "0plnan8dvxl1y9h5vazszhdrf47862jqbhyx1ibldak19bibp367"; 219552 + version = "0.1.1"; 219553 + sha256 = "1m6338w6cd7fsib00zs8dk16b4mxfa1vswg5bmkzafas1db6qbcg"; 219097 219554 libraryHaskellDepends = [ 219098 219555 base bimap bytestring containers dlist pretty-show prettyprinter 219099 219556 syb template-haskell text unordered-containers vector ··· 225792 226249 ({ mkDerivation, base, mtl, template-haskell, th-compat }: 225793 226250 mkDerivation { 225794 226251 pname = "quotet"; 225795 - version = "0.0.1.0"; 225796 - sha256 = "1ajxvhh2zl99ddvmvicsjq775l0k3d8lh433v1z6z6i7zra5hg4g"; 226252 + version = "0.0.1.1"; 226253 + sha256 = "16fwbf9q2ivpi3j7y26lsbqvwwk7vidjn6q9iz4x6sq8adhy45rz"; 225797 226254 libraryHaskellDepends = [ base mtl template-haskell th-compat ]; 225798 226255 description = "Monad transformer for Quote from template-haskell"; 225799 226256 license = lib.licenses.cc0; ··· 226475 226932 license = lib.licenses.bsd3; 226476 226933 }) {}; 226477 226934 226935 + "random_1_2_1_1" = callPackage 226936 + ({ mkDerivation, base, bytestring, containers, deepseq, doctest 226937 + , mtl, primitive, rdtsc, smallcheck, split, splitmix, stm, tasty 226938 + , tasty-bench, tasty-hunit, tasty-inspection-testing 226939 + , tasty-smallcheck, time, transformers 226940 + }: 226941 + mkDerivation { 226942 + pname = "random"; 226943 + version = "1.2.1.1"; 226944 + sha256 = "0xlv1k4sj87akwvj54kq4nrfkzi6qcz1941bf78pnkbaxpvp44iy"; 226945 + libraryHaskellDepends = [ base bytestring deepseq mtl splitmix ]; 226946 + testHaskellDepends = [ 226947 + base bytestring containers doctest smallcheck stm tasty tasty-hunit 226948 + tasty-inspection-testing tasty-smallcheck transformers 226949 + ]; 226950 + benchmarkHaskellDepends = [ 226951 + base mtl primitive rdtsc split splitmix tasty-bench time 226952 + ]; 226953 + description = "Pseudo-random number generation"; 226954 + license = lib.licenses.bsd3; 226955 + hydraPlatforms = lib.platforms.none; 226956 + }) {}; 226957 + 226478 226958 "random-access-file" = callPackage 226479 226959 ({ mkDerivation, base, bytestring, concurrent-extra, containers 226480 226960 , criterion, directory, lrucaching, mwc-random, random, stm, unix ··· 227437 227917 broken = true; 227438 227918 }) {}; 227439 227919 227440 - "rattletrap_11_2_6" = callPackage 227920 + "rattletrap_11_2_7" = callPackage 227441 227921 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 227442 227922 , containers, filepath, http-client, http-client-tls, text 227443 227923 }: 227444 227924 mkDerivation { 227445 227925 pname = "rattletrap"; 227446 - version = "11.2.6"; 227447 - sha256 = "1y8g39vjnn3lywhg389ql0hqrzpgcj0j76wzhrzsh7ymj87vvirk"; 227926 + version = "11.2.7"; 227927 + sha256 = "19vgqkyxvv9y3yyb42p075nmdm7338f9ln6g0d7sgy9w9zd2vy0d"; 227448 227928 isLibrary = true; 227449 227929 isExecutable = true; 227450 227930 libraryHaskellDepends = [ ··· 233253 233733 ({ mkDerivation, base }: 233254 233734 mkDerivation { 233255 233735 pname = "requirements"; 233256 - version = "0.6.0.0"; 233257 - sha256 = "1s0s3p0dy07222ks83w3spfw9df33q5lggqv3dw4m9hd5x16a6zi"; 233736 + version = "0.7.0.0"; 233737 + sha256 = "030vwfasxjdgdadcf5i68i3dc436dj6gi3ql4k8qh09yf8q1mm63"; 233258 233738 libraryHaskellDepends = [ base ]; 233259 233739 description = "Abstraction to manage user defined Type Errors"; 233260 233740 license = lib.licenses.gpl3Only; ··· 233628 234108 license = lib.licenses.bsd3; 233629 234109 }) {}; 233630 234110 234111 + "resourcet_1_2_5" = callPackage 234112 + ({ mkDerivation, base, containers, exceptions, hspec, mtl 234113 + , primitive, transformers, unliftio-core 234114 + }: 234115 + mkDerivation { 234116 + pname = "resourcet"; 234117 + version = "1.2.5"; 234118 + sha256 = "0bj98srdlz2yx3nx030m0nzv6yyz1ry50v6bwdff5a6xi256jz7n"; 234119 + libraryHaskellDepends = [ 234120 + base containers exceptions mtl primitive transformers unliftio-core 234121 + ]; 234122 + testHaskellDepends = [ base exceptions hspec transformers ]; 234123 + description = "Deterministic allocation and freeing of scarce resources"; 234124 + license = lib.licenses.bsd3; 234125 + hydraPlatforms = lib.platforms.none; 234126 + }) {}; 234127 + 233631 234128 "resourcet-pool" = callPackage 233632 234129 ({ mkDerivation, base, resource-pool, resourcet }: 233633 234130 mkDerivation { ··· 236935 237432 testHaskellDepends = [ base filepath hspec ]; 236936 237433 description = "RPM package name-version-release data types"; 236937 237434 license = lib.licenses.gpl2Only; 237435 + }) {}; 237436 + 237437 + "rpm-nvr_0_1_2" = callPackage 237438 + ({ mkDerivation, base, extra, filepath, hspec }: 237439 + mkDerivation { 237440 + pname = "rpm-nvr"; 237441 + version = "0.1.2"; 237442 + sha256 = "0g4fpay6rry9mnvy6mk793my1fkvpdxx40b5hn6gjr0vr1mvg2yp"; 237443 + libraryHaskellDepends = [ base extra filepath ]; 237444 + testHaskellDepends = [ base filepath hspec ]; 237445 + description = "RPM package name-version-release data types"; 237446 + license = lib.licenses.gpl2Only; 237447 + hydraPlatforms = lib.platforms.none; 236938 237448 }) {}; 236939 237449 236940 237450 "rpmbuild-order" = callPackage ··· 242836 243346 license = lib.licenses.bsd3; 242837 243347 }) {}; 242838 243348 243349 + "seocheck" = callPackage 243350 + ({ mkDerivation, aeson, base, bytestring, case-insensitive, conduit 243351 + , containers, html-conduit, http-client, http-client-tls 243352 + , http-types, monad-logger, network-uri, optparse-applicative, path 243353 + , path-io, pretty-show, rainbow, stm, text, unliftio, validity 243354 + , xml-conduit 243355 + }: 243356 + mkDerivation { 243357 + pname = "seocheck"; 243358 + version = "0.1.0.0"; 243359 + sha256 = "065hs3y4mkl4l49qa6n7i441aax8y5zyxcpf0zpl9rz6w6llc3g7"; 243360 + isLibrary = true; 243361 + isExecutable = true; 243362 + libraryHaskellDepends = [ 243363 + aeson base bytestring case-insensitive conduit containers 243364 + html-conduit http-client http-client-tls http-types monad-logger 243365 + network-uri optparse-applicative path path-io pretty-show rainbow 243366 + stm text unliftio validity xml-conduit 243367 + ]; 243368 + executableHaskellDepends = [ base ]; 243369 + testHaskellDepends = [ base ]; 243370 + description = "Check for common SEO mistakes on CI"; 243371 + license = lib.licenses.mit; 243372 + }) {}; 243373 + 242839 243374 "seonbi" = callPackage 242840 243375 ({ mkDerivation, aeson, attoparsec, base, bytestring 242841 243376 , bytestring-trie, Cabal, case-insensitive, cases, cassava, cmark ··· 251316 251851 }: 251317 251852 mkDerivation { 251318 251853 pname = "sketch-frp-copilot"; 251319 - version = "1.0.1"; 251320 - sha256 = "0hm4bvlj7g9j6k2mc0s426s17nj4w1jpi0v052i2c7b0g7ahdxj8"; 251854 + version = "1.0.2"; 251855 + sha256 = "10r4j3plg70vawczk9fr388ljjqnjn08apv8s9am754g59fnwrd3"; 251321 251856 libraryHaskellDepends = [ 251322 251857 base containers copilot copilot-c99 copilot-language mtl 251323 251858 optparse-applicative 251324 251859 ]; 251325 - description = "FRP sketch programming with Copilot"; 251860 + description = "Sketch programming with Copilot"; 251326 251861 license = lib.licenses.bsd3; 251327 251862 hydraPlatforms = lib.platforms.none; 251328 251863 }) {}; ··· 256529 257064 license = lib.licenses.isc; 256530 257065 }) {}; 256531 257066 257067 + "splint_1_0_1_5" = callPackage 257068 + ({ mkDerivation, base, containers, ghc, hlint, stm }: 257069 + mkDerivation { 257070 + pname = "splint"; 257071 + version = "1.0.1.5"; 257072 + sha256 = "1mvkd5jcrivc57g6dw6iwss6682q7wyi6zb2k3nd3vywm1a0c8ql"; 257073 + libraryHaskellDepends = [ base containers ghc hlint stm ]; 257074 + description = "HLint as a GHC source plugin"; 257075 + license = lib.licenses.isc; 257076 + hydraPlatforms = lib.platforms.none; 257077 + }) {}; 257078 + 256532 257079 "split" = callPackage 256533 257080 ({ mkDerivation, base, QuickCheck }: 256534 257081 mkDerivation { ··· 261894 262441 license = lib.licenses.mit; 261895 262442 }) {}; 261896 262443 262444 + "strict-list_0_1_7" = callPackage 262445 + ({ mkDerivation, base, deepseq, hashable, QuickCheck 262446 + , quickcheck-instances, rerebase, semigroupoids, tasty, tasty-hunit 262447 + , tasty-quickcheck 262448 + }: 262449 + mkDerivation { 262450 + pname = "strict-list"; 262451 + version = "0.1.7"; 262452 + sha256 = "0dhfnb5zvwnnbsy0c9lyymfq223zw9jgwv3wn1rq5xp1np68mkbh"; 262453 + libraryHaskellDepends = [ base deepseq hashable semigroupoids ]; 262454 + testHaskellDepends = [ 262455 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 262456 + tasty-quickcheck 262457 + ]; 262458 + description = "Strict linked list"; 262459 + license = lib.licenses.mit; 262460 + hydraPlatforms = lib.platforms.none; 262461 + }) {}; 262462 + 261897 262463 "strict-optics" = callPackage 261898 262464 ({ mkDerivation, base, optics-core, strict }: 261899 262465 mkDerivation { ··· 264306 264872 }) {}; 264307 264873 264308 264874 "svgsym" = callPackage 264309 - ({ mkDerivation, base, bytestring, containers, directory, filepath 264310 - , filepattern, optparse-applicative, regex-tdfa, xml 264875 + ({ mkDerivation, array, base, bytestring, containers, directory 264876 + , filepath, filepattern, optparse-applicative, regex-base 264877 + , regex-tdfa, xml 264311 264878 }: 264312 264879 mkDerivation { 264313 264880 pname = "svgsym"; 264314 - version = "0.1.0.0"; 264315 - sha256 = "0wiy03v3sdw8mzn3kibgjzjp6m50nnc31nld9zvr86fcrsl7bdgl"; 264881 + version = "0.1.1.0"; 264882 + sha256 = "014vand8zag2b9ll2g6xn0s91bav7x2v2l4xdvidc0rs6m8s5fx5"; 264316 264883 isLibrary = false; 264317 264884 isExecutable = true; 264318 264885 executableHaskellDepends = [ 264319 - base bytestring containers directory filepath filepattern 264320 - optparse-applicative regex-tdfa xml 264886 + array base bytestring containers directory filepath filepattern 264887 + optparse-applicative regex-base regex-tdfa xml 264321 264888 ]; 264322 264889 description = "A tool to prune unused symbols from icon SVG files"; 264323 264890 license = lib.licenses.gpl3Plus; ··· 267178 267745 license = lib.licenses.bsd3; 267179 267746 }) {}; 267180 267747 267748 + "tagged-transformer_0_8_2" = callPackage 267749 + ({ mkDerivation, base, comonad, contravariant, distributive 267750 + , exceptions, mtl, reflection, semigroupoids, tagged 267751 + }: 267752 + mkDerivation { 267753 + pname = "tagged-transformer"; 267754 + version = "0.8.2"; 267755 + sha256 = "10wlwqxzm1xdyzxl6xyfsrb40zmvh7g0y3w0a69b1lw2rp6v4vyy"; 267756 + libraryHaskellDepends = [ 267757 + base comonad contravariant distributive exceptions mtl reflection 267758 + semigroupoids tagged 267759 + ]; 267760 + description = "Monad transformer carrying an extra phantom type tag"; 267761 + license = lib.licenses.bsd3; 267762 + hydraPlatforms = lib.platforms.none; 267763 + }) {}; 267764 + 267181 267765 "tagging" = callPackage 267182 267766 ({ mkDerivation, base, bytestring, pcre-light }: 267183 267767 mkDerivation { ··· 267900 268484 pname = "tardis"; 267901 268485 version = "0.4.3.0"; 267902 268486 sha256 = "1ffmpdvnmr1s3rh3kpqqscsbz2rq4s7k8nfc93zw9m4mchg37waw"; 268487 + revision = "1"; 268488 + editedCabalFile = "1krk42qgdg10s6pxp805zv7z4c7mlhbhk15l07v9i750im1k73v3"; 267903 268489 libraryHaskellDepends = [ base mmorph mtl ]; 267904 268490 testHaskellDepends = [ base ]; 267905 268491 description = "Bidirectional state monad transformer"; 267906 268492 license = lib.licenses.bsd3; 268493 + }) {}; 268494 + 268495 + "tardis_0_4_4_0" = callPackage 268496 + ({ mkDerivation, base, mmorph, mtl }: 268497 + mkDerivation { 268498 + pname = "tardis"; 268499 + version = "0.4.4.0"; 268500 + sha256 = "0frm9kffdsia22rwyr8295n9xwhca1d6w04yz4l4cfjav6bgczfs"; 268501 + libraryHaskellDepends = [ base mmorph mtl ]; 268502 + testHaskellDepends = [ base ]; 268503 + description = "Bidirectional state monad transformer"; 268504 + license = lib.licenses.bsd3; 268505 + hydraPlatforms = lib.platforms.none; 267907 268506 }) {}; 267908 268507 267909 268508 "target" = callPackage ··· 268102 268701 pname = "tasty"; 268103 268702 version = "1.4.2.1"; 268104 268703 sha256 = "0ki3gdzfsqvk9mwzzvgj18ck1sbkwac06gcc128wpwh9g8c4bzqr"; 268105 - revision = "1"; 268106 - editedCabalFile = "1fm1yx9dqikspw3a6ygnwj61vx1zwgjxm84zpkydbhcf6hgab5sg"; 268704 + revision = "2"; 268705 + editedCabalFile = "134sp1sjyx5hh1vwraxdfs98yx9gf19zp9kpfzqvvajfgy9i37jv"; 268107 268706 libraryHaskellDepends = [ 268108 268707 ansi-terminal base clock containers mtl optparse-applicative stm 268109 268708 tagged unbounded-delays unix wcwidth ··· 268112 268711 license = lib.licenses.mit; 268113 268712 }) {}; 268114 268713 268714 + "tasty_1_4_2_2" = callPackage 268715 + ({ mkDerivation, ansi-terminal, base, clock, containers, mtl 268716 + , optparse-applicative, stm, tagged, unbounded-delays, unix 268717 + , wcwidth 268718 + }: 268719 + mkDerivation { 268720 + pname = "tasty"; 268721 + version = "1.4.2.2"; 268722 + sha256 = "1qqzrvmfnh2s0b3356wil1flzvvyrh5bvx3v65k9807wp9r5pxrq"; 268723 + libraryHaskellDepends = [ 268724 + ansi-terminal base clock containers mtl optparse-applicative stm 268725 + tagged unbounded-delays unix wcwidth 268726 + ]; 268727 + description = "Modern and extensible testing framework"; 268728 + license = lib.licenses.mit; 268729 + hydraPlatforms = lib.platforms.none; 268730 + }) {}; 268731 + 268115 268732 "tasty-ant-xml" = callPackage 268116 268733 ({ mkDerivation, base, containers, directory, filepath 268117 268734 , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers ··· 268800 269417 pname = "tasty-silver"; 268801 269418 version = "3.3.1"; 268802 269419 sha256 = "1pd83mzx0iv3f396m09rxmgcpcfaya0a9818dl3h4vgw0hnqkmav"; 269420 + revision = "1"; 269421 + editedCabalFile = "1gsjspgy9li9lsk7sqikm44mr3cjsxkrhvql6rabk5x9nb5ajrnr"; 268803 269422 libraryHaskellDepends = [ 268804 269423 ansi-terminal async base bytestring containers deepseq directory 268805 269424 filepath mtl optparse-applicative process process-extras regex-tdfa ··· 268813 269432 license = lib.licenses.mit; 268814 269433 }) {}; 268815 269434 269435 + "tasty-silver_3_3_1_1" = callPackage 269436 + ({ mkDerivation, ansi-terminal, async, base, bytestring, containers 269437 + , deepseq, directory, filepath, mtl, optparse-applicative, process 269438 + , process-extras, regex-tdfa, silently, stm, tagged, tasty 269439 + , tasty-hunit, temporary, text, transformers 269440 + }: 269441 + mkDerivation { 269442 + pname = "tasty-silver"; 269443 + version = "3.3.1.1"; 269444 + sha256 = "13j0zs0ciijv9q2nncna1gbgsgw2g7xc228hzmqic1750n3ybz9m"; 269445 + libraryHaskellDepends = [ 269446 + ansi-terminal async base bytestring containers deepseq directory 269447 + filepath mtl optparse-applicative process process-extras regex-tdfa 269448 + silently stm tagged tasty temporary text transformers 269449 + ]; 269450 + testHaskellDepends = [ 269451 + base directory filepath process silently tasty tasty-hunit 269452 + temporary transformers 269453 + ]; 269454 + description = "A fancy test runner, including support for golden tests"; 269455 + license = lib.licenses.mit; 269456 + hydraPlatforms = lib.platforms.none; 269457 + }) {}; 269458 + 268816 269459 "tasty-smallcheck" = callPackage 268817 269460 ({ mkDerivation, base, optparse-applicative, smallcheck, tagged 268818 269461 , tasty ··· 269605 270248 license = lib.licenses.bsd3; 269606 270249 }) {}; 269607 270250 269608 - "telegram-bot-simple_0_5" = callPackage 270251 + "telegram-bot-simple_0_5_1" = callPackage 269609 270252 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron 269610 270253 , filepath, hashable, http-api-data, http-client, http-client-tls 269611 270254 , monad-control, mtl, pretty-show, profunctors, servant ··· 269615 270258 }: 269616 270259 mkDerivation { 269617 270260 pname = "telegram-bot-simple"; 269618 - version = "0.5"; 269619 - sha256 = "0mzzq7lfl56h1i9dr617h5vcv47j2nsf77pkq18s8wk5zrc67r2w"; 269620 - revision = "1"; 269621 - editedCabalFile = "0nz2g3jfb3l66ixrxlz257pmg2qbg7l6wsi0q38iv8fl4483md2s"; 270261 + version = "0.5.1"; 270262 + sha256 = "0vkvnxfa9lmp6j2wc2s3yxvq6ilwjbb1xnrwk5kysrlsklvc86bs"; 269622 270263 isLibrary = true; 269623 270264 isExecutable = true; 269624 270265 libraryHaskellDepends = [ ··· 273013 273654 pname = "th-compat"; 273014 273655 version = "0.1.3"; 273015 273656 sha256 = "1il1hs5yjfkb417c224pw1vrh4anyprasfwmjbd4fkviyv55jl3b"; 273657 + revision = "1"; 273658 + editedCabalFile = "1ax5yz41sfy9klif7j3ihahvdi08alb56l4y9nr45vbc9kvijn7n"; 273016 273659 libraryHaskellDepends = [ base template-haskell ]; 273017 273660 testHaskellDepends = [ 273018 273661 base base-compat hspec mtl template-haskell ··· 280402 281045 maintainers = with lib.maintainers; [ Gabriel439 ]; 280403 281046 }) {}; 280404 281047 281048 + "turtle_1_5_25" = callPackage 281049 + ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 281050 + , containers, directory, doctest, exceptions, foldl, hostname 281051 + , managed, optional-args, optparse-applicative, process, stm 281052 + , streaming-commons, system-fileio, system-filepath, tasty-bench 281053 + , temporary, text, time, transformers, unix, unix-compat 281054 + }: 281055 + mkDerivation { 281056 + pname = "turtle"; 281057 + version = "1.5.25"; 281058 + sha256 = "1hh2rbwk3m4iklk67f1l1a8shsng9qzs9132j6lpag7cgqkrmqdk"; 281059 + libraryHaskellDepends = [ 281060 + ansi-wl-pprint async base bytestring clock containers directory 281061 + exceptions foldl hostname managed optional-args 281062 + optparse-applicative process stm streaming-commons system-fileio 281063 + system-filepath temporary text time transformers unix unix-compat 281064 + ]; 281065 + testHaskellDepends = [ base doctest system-filepath temporary ]; 281066 + benchmarkHaskellDepends = [ base tasty-bench text ]; 281067 + description = "Shell programming, Haskell-style"; 281068 + license = lib.licenses.bsd3; 281069 + hydraPlatforms = lib.platforms.none; 281070 + maintainers = with lib.maintainers; [ Gabriel439 ]; 281071 + }) {}; 281072 + 280405 281073 "turtle-options" = callPackage 280406 281074 ({ mkDerivation, base, HUnit, optional-args, parsec, text, turtle 280407 281075 }: ··· 282055 282723 pname = "typed-process"; 282056 282724 version = "0.2.8.0"; 282057 282725 sha256 = "1af0g34sws7fppziv7firr9r2wrnly4y6sr9nyqa8bvbbmadly45"; 282726 + revision = "1"; 282727 + editedCabalFile = "1m017nqbaqishii32gwhxa1849h0qnn06w7k1rn8c9d8w71m4vqm"; 282058 282728 libraryHaskellDepends = [ 282059 282729 async base bytestring process stm transformers unliftio-core 282060 282730 ]; ··· 291020 291690 license = lib.licenses.mit; 291021 291691 }) {}; 291022 291692 291023 - "wai-extra_3_1_11" = callPackage 291693 + "wai-extra_3_1_12" = callPackage 291024 291694 ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring 291025 291695 , bytestring, call-stack, case-insensitive, containers, cookie 291026 291696 , data-default-class, directory, fast-logger, hspec, http-types ··· 291030 291700 }: 291031 291701 mkDerivation { 291032 291702 pname = "wai-extra"; 291033 - version = "3.1.11"; 291034 - sha256 = "0z9hl0a8vh6049m4pvnqjm7fibp60qc3jrcz0vpqbscncr59l7h5"; 291703 + version = "3.1.12"; 291704 + sha256 = "1i6gh02sprdbkwg92pzm6rwxcm3k8286vazziwjq05xln3vckd1n"; 291035 291705 isLibrary = true; 291036 291706 isExecutable = true; 291037 291707 libraryHaskellDepends = [ ··· 293324 293994 }: 293325 293995 mkDerivation { 293326 293996 pname = "web-inv-route"; 293327 - version = "0.1.3.1"; 293328 - sha256 = "1l10rgrhcqld8znw6akxjlsm1h8z76l9yxa4yik11lk2l0g9anb2"; 293997 + version = "0.1.3.2"; 293998 + sha256 = "0gmbj6c6c8gqz9xfxv0d4134d7c2wfla3zg3bgqvvzsqjjmrg81v"; 293329 293999 libraryHaskellDepends = [ 293330 294000 base bytestring case-insensitive containers happstack-server 293331 294001 hashable http-types invertible network-uri snap-core text ··· 295734 296404 ]; 295735 296405 description = "values that witness types"; 295736 296406 license = lib.licenses.bsd3; 296407 + }) {}; 296408 + 296409 + "witness_0_6" = callPackage 296410 + ({ mkDerivation, base, constraints, countable }: 296411 + mkDerivation { 296412 + pname = "witness"; 296413 + version = "0.6"; 296414 + sha256 = "1y8scf6a061s8gnx38sfwn88ramakjr0h54qwlwcjrjpf0y6024l"; 296415 + libraryHaskellDepends = [ base constraints countable ]; 296416 + description = "values that witness types"; 296417 + license = lib.licenses.bsd2; 296418 + hydraPlatforms = lib.platforms.none; 295737 296419 }) {}; 295738 296420 295739 296421 "witty" = callPackage ··· 304940 305622 }: 304941 305623 mkDerivation { 304942 305624 pname = "zephyr-copilot"; 304943 - version = "1.0.1"; 304944 - sha256 = "0d489krxzj30gl8j8idwfi10k82w0p4kr30f0h78qvl9ikzinhvk"; 305625 + version = "1.0.2"; 305626 + sha256 = "01dvqzh97bw423kwhmgdr8l913p4miq69frv3nkjs889ps16faz0"; 304945 305627 libraryHaskellDepends = [ 304946 305628 base containers copilot copilot-c99 copilot-language directory 304947 305629 filepath mtl optparse-applicative sketch-frp-copilot temporary
+7 -7
pkgs/development/interpreters/dart/default.nix
··· 2 2 , lib 3 3 , fetchurl 4 4 , unzip 5 - , version ? "2.15.1" 5 + , version ? "2.17.0" 6 6 , sources ? let 7 7 base = "https://storage.googleapis.com/dart-archive/channels"; 8 8 x86_64 = "x64"; ··· 10 10 aarch64 = "arm64"; 11 11 # Make sure that if the user overrides version parameter they're 12 12 # also need to override sources, to avoid mistakes 13 - version = "2.15.1"; 13 + version = "2.17.0"; 14 14 in 15 15 { 16 16 "${version}-aarch64-darwin" = fetchurl { 17 17 url = "${base}/stable/release/${version}/sdk/dartsdk-macos-${aarch64}-release.zip"; 18 - sha256 = "sha256-DDE4DpA2m8wKkUZuQDn4NpXVvtaJ6sIHeKNjk3RbpYE="; 18 + sha256 = "sha256-WXf0SdSEHMaJRfVFgKzb9SY4LBjf1xO5Oki/dzKMEMY="; 19 19 }; 20 20 "${version}-x86_64-darwin" = fetchurl { 21 21 url = "${base}/stable/release/${version}/sdk/dartsdk-macos-${x86_64}-release.zip"; 22 - sha256 = "sha256-s6bkwh2m5KdRr/WxWXwItO9YaDpp/HI3xjnS2UHmN+I="; 22 + sha256 = "sha256-PwaxUQHIUhRWCOy3IVdGtRyP9LtscqoUJPOZfevN7xs="; 23 23 }; 24 24 "${version}-x86_64-linux" = fetchurl { 25 25 url = "${base}/stable/release/${version}/sdk/dartsdk-linux-${x86_64}-release.zip"; 26 - sha256 = "sha256-D0XcqlO0CQtpsne4heqaTLOkFYnJEZET4bl4rVXOM18="; 26 + sha256 = "sha256-V7j9lk5HyB1GeuuVsJmmcKt+j1ShzXTUW80f3HeRPYY="; 27 27 }; 28 28 "${version}-i686-linux" = fetchurl { 29 29 url = "${base}/stable/release/${version}/sdk/dartsdk-linux-${i686}-release.zip"; 30 - sha256 = "sha256-SRq5TtxS+bwCqVxa0U2Zhn8J1Wtm4Onq+3uQS+951sw="; 30 + sha256 = "sha256-YWxFwbcGvssOSL4S5O4jqLzxdUHvbVd9i4cLNyFn/cs="; 31 31 }; 32 32 "${version}-aarch64-linux" = fetchurl { 33 33 url = "${base}/stable/release/${version}/sdk/dartsdk-linux-${aarch64}-release.zip"; 34 - sha256 = "sha256-iDbClCNDUsxT6K6koc4EQuu7dppTbOfzCVedpQIKI5U="; 34 + sha256 = "sha256-BaHbD9hFhYd9YYCFg0bXxTx++JQzZn2zuF8/Ll+nA2s="; 35 35 }; 36 36 } 37 37 }:
+5
pkgs/development/interpreters/octave/default.nix
··· 119 119 sha256 = "sha256-1KnYHz9ntKbgfLeoDcsQrV6RdvzDB2LHCoFYCmS4sLY="; 120 120 }; 121 121 122 + patches = [ 123 + # https://savannah.gnu.org/bugs/?func=detailitem&item_id=62436 124 + ./patches/bug62436.patch 125 + ]; 126 + 122 127 buildInputs = [ 123 128 readline 124 129 ncurses
+27
pkgs/development/interpreters/octave/patches/bug62436.patch
··· 1 + # HG changeset patch 2 + # User John Donoghue <john.donoghue@ieee.org> 3 + # Date 1652358904 14400 4 + # Thu May 12 08:35:04 2022 -0400 5 + # Branch stable 6 + # Node ID 8c940cfcce257369677c09154da2aab2c56eaa79 7 + # Parent 63710f3bd9811c2d206ac9e7b4f47cf06c47e153 8 + * scripts/pkg/private/build.m: check configure and Makefile exist before trying to unlink them (Bug #62436) 9 + 10 + diff -r 63710f3bd981 -r 8c940cfcce25 scripts/pkg/private/build.m 11 + --- a/scripts/pkg/private/build.m Wed May 11 09:44:55 2022 -0700 12 + +++ b/scripts/pkg/private/build.m Thu May 12 08:35:04 2022 -0400 13 + @@ -77,8 +77,12 @@ 14 + else 15 + arch_abi = getarch (); 16 + configure_make (desc, build_root, verbose); 17 + - unlink (fullfile (build_root, "src", "configure")); 18 + - unlink (fullfile (build_root, "src", "Makefile")); 19 + + if exist (fullfile (build_root, "src", "configure"), "file") 20 + + unlink (fullfile (build_root, "src", "configure")); 21 + + endif 22 + + if exist (fullfile (build_root, "src", "Makefile"), "file") 23 + + unlink (fullfile (build_root, "src", "Makefile")); 24 + + endif 25 + endif 26 + tar_name = [desc.name "-" desc.version "-" arch_abi ".tar"]; 27 + tar_path = fullfile (builddir, tar_name);
+3 -3
pkgs/development/libraries/boolstuff/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "boolstuff"; 4 - version = "0.1.16"; 4 + version = "0.1.17"; 5 5 6 6 src = fetchurl { 7 - url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz"; 8 - sha256 = "10qynbyw723gz2vrvn4xk2var172kvhlz3l3l80qbdsfb3d12wn0"; 7 + url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz"; 8 + hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I="; 9 9 }; 10 10 11 11 nativeBuildInputs = [ pkg-config ];
+6 -2
pkgs/development/libraries/cln/default.nix
··· 1 - { lib, stdenv, fetchurl, gmp }: 1 + { lib, stdenv, fetchurl, fetchgit, gmp }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cln"; 5 5 version = "1.3.6"; 6 6 7 - src = fetchurl { 7 + src = if stdenv.isDarwin then fetchgit { 8 + url = "git://www.ginac.de/cln.git"; 9 + rev = "cln_${builtins.replaceStrings [ "." ] [ "-" ] version}"; 10 + sha256 = "sha256-P32F4TIDhE2Dwzydq8iFK6ch3kICJcXeeXHs5PBQG88="; 11 + } else fetchurl { 8 12 url = "${meta.homepage}${pname}-${version}.tar.bz2"; 9 13 sha256 = "0jlq9l4hphk7qqlgqj9ihjp4m3rwjbhk6q4v00lsbgbri07574pl"; 10 14 };
-41
pkgs/development/libraries/ctl/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, ilmbase, libtiff, openexr }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "ctl"; 5 - version = "1.5.2"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "ampas"; 9 - repo = pname; 10 - rev = "${pname}-${version}"; 11 - sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx"; 12 - }; 13 - 14 - patches = [ 15 - (fetchpatch { 16 - name = "ctl-1.5.2-ilm_230.patch"; 17 - url = "https://src.fedoraproject.org/rpms/CTL/raw/9d7c15a91bccdc0a9485d463bf2789be72e6b17d/f/ctl-1.5.2-ilm_230.patch"; 18 - sha256 = "0mdx7llwrm0q8ai53zhyxi40i9h5s339dbkqpqv30yzi2xpnfj3d"; 19 - }) 20 - ]; 21 - 22 - postPatch = '' 23 - # Fix include guard name 24 - substituteInPlace lib/dpx/dpx_raw.hh \ 25 - --replace CRL_DPX_RAW_INTERNAL_INCLUDE CTL_DPX_RAW_INTERNAL_INCLUDE 26 - 27 - # Fix undefined symbols (link with Imath) 28 - substituteInPlace lib/IlmCtlMath/CMakeLists.txt \ 29 - --replace "( IlmCtlMath IlmCtl )" "( IlmCtlMath IlmCtl Imath)" 30 - ''; 31 - 32 - nativeBuildInputs = [ cmake pkg-config ]; 33 - buildInputs = [ libtiff ilmbase openexr ]; 34 - 35 - meta = with lib; { 36 - description = "Color Transformation Language"; 37 - homepage = "https://github.com/ampas/CTL"; 38 - license = "A.M.P.A.S"; # BSD-derivative, free but GPL incompatible 39 - platforms = platforms.all; 40 - }; 41 - }
+2 -1
pkgs/development/libraries/glpng/default.nix
··· 22 22 cmake 23 23 pkg-config 24 24 ]; 25 + 25 26 buildInputs = [ 26 27 libGL 27 28 libpng ··· 30 31 31 32 meta = with lib; { 32 33 homepage = "https://repo.or.cz/glpng.git/blob_plain/HEAD:/glpng.htm"; 33 - description = "PNG loader for OpenGL"; 34 + description = "PNG loader library for OpenGL"; 34 35 license = licenses.mit; 35 36 maintainers = with maintainers; [ AndersonTorres ]; 36 37 platforms = platforms.unix;
+1
pkgs/development/libraries/http-parser/default.nix
··· 14 14 NIX_CFLAGS_COMPILE = "-Wno-error"; 15 15 patches = [ 16 16 ./build-shared.patch 17 + ] ++ lib.optionals stdenv.isAarch32 [ 17 18 # https://github.com/nodejs/http-parser/pull/510 18 19 (fetchpatch { 19 20 url = "https://github.com/nodejs/http-parser/commit/4f15b7d510dc7c6361a26a7c6d2f7c3a17f8d878.patch";
-33
pkgs/development/libraries/science/math/primecount/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, primesieve }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "primecount"; 5 - version = "7.2"; 6 - 7 - nativeBuildInputs = [ cmake ]; 8 - 9 - buildInputs = [ primesieve ]; 10 - 11 - src = fetchFromGitHub { 12 - owner = "kimwalisch"; 13 - repo = "primecount"; 14 - rev = "v${version}"; 15 - sha256 = "sha256-/Cb/HkD4UQ9gXsRpvRiEuQBoRd0THxNHsBaAAa+CqQo="; 16 - }; 17 - 18 - cmakeFlags = [ 19 - "-DBUILD_STATIC_LIBS=OFF" 20 - "-DBUILD_SHARED_LIBS=ON" 21 - "-DBUILD_TESTS=ON" 22 - "-DBUILD_PRIMECOUNT=ON" 23 - "-DBUILD_LIBPRIMESIEVE=ON" 24 - ]; 25 - 26 - meta = with lib; { 27 - description = "Fast prime counting function implementations"; 28 - homepage = "https://github.com/kimwalisch/primecount"; 29 - license = licenses.bsd2; 30 - platforms = platforms.unix; 31 - maintainers = teams.sage.members; 32 - }; 33 - }
-23
pkgs/development/libraries/science/math/primesieve/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "primesieve"; 5 - version = "7.8"; 6 - 7 - nativeBuildInputs = [ cmake ]; 8 - 9 - src = fetchFromGitHub { 10 - owner = "kimwalisch"; 11 - repo = "primesieve"; 12 - rev = "v${version}"; 13 - sha256 = "sha256-M35CP/xEyC7mEh84kaGsgfsDI9fnanHraNPgTvpqimI="; 14 - }; 15 - 16 - meta = with lib; { 17 - description = "Fast C/C++ prime number generator"; 18 - homepage = "https://primesieve.org/"; 19 - license = licenses.bsd2; 20 - platforms = platforms.unix; 21 - maintainers = with maintainers; [ abbradar ]; 22 - }; 23 - }
+13 -3
pkgs/development/libraries/spdk/default.nix
··· 10 10 , libuuid 11 11 , numactl 12 12 , openssl 13 + , fetchurl 13 14 }: 14 15 15 - stdenv.mkDerivation rec { 16 + let 17 + # The old version has some CVEs howver they should not affect SPDK's usage of the framework: https://github.com/NixOS/nixpkgs/pull/171648#issuecomment-1121964568 18 + dpdk' = dpdk.overrideAttrs (old: rec { 19 + name = "dpdk-21.11"; 20 + src = fetchurl { 21 + url = "https://fast.dpdk.org/rel/${name}.tar.xz"; 22 + sha256 = "sha256-Mkbj7WjuKzaaXYviwGzxCKZp4Vf01Bxby7sha/Wr06E="; 23 + }; 24 + }); 25 + in stdenv.mkDerivation rec { 16 26 pname = "spdk"; 17 27 version = "21.10"; 18 28 ··· 40 50 ]; 41 51 42 52 buildInputs = [ 43 - cunit dpdk libaio libbsd libuuid numactl openssl ncurses 53 + cunit dpdk' libaio libbsd libuuid numactl openssl ncurses 44 54 ]; 45 55 46 56 postPatch = '' ··· 49 59 50 60 enableParallelBuilding = true; 51 61 52 - configureFlags = [ "--with-dpdk=${dpdk}" ]; 62 + configureFlags = [ "--with-dpdk=${dpdk'}" ]; 53 63 54 64 NIX_CFLAGS_COMPILE = "-mssse3"; # Necessary to compile. 55 65 # otherwise does not find strncpy when compiling
+2
pkgs/development/libraries/v8/default.nix
··· 165 165 maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ]; 166 166 platforms = platforms.unix; 167 167 license = licenses.bsd3; 168 + # Fails to build on Darwin, see https://github.com/NixOS/nixpkgs/issues/158076 169 + broken = stdenv.isDarwin; 168 170 }; 169 171 }
+1 -1
pkgs/development/misc/rpiboot/default.nix
··· 29 29 description = "Utility to boot a Raspberry Pi CM/CM3/CM4/Zero over USB"; 30 30 license = licenses.asl20; 31 31 maintainers = with maintainers; [ cartr ]; 32 - platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" "x86_64-linux" ]; 32 + platforms = [ "aarch64-linux" "aarch64-darwin" "armv7l-linux" "armv6l-linux" "x86_64-linux" "x86_64-darwin" ]; 33 33 }; 34 34 }
+7
pkgs/development/node-packages/default.nix
··· 119 119 # NOTE: this is a stub package to fetch npm dependencies for 120 120 # ../../applications/video/epgstation 121 121 epgstation = super."epgstation-../../applications/video/epgstation".override (drv: { 122 + buildInputs = [ self.node-pre-gyp self.node-gyp-build ]; 122 123 meta = drv.meta // { 123 124 platforms = pkgs.lib.platforms.none; 124 125 }; ··· 339 340 --set PRISMA_INTROSPECTION_ENGINE_BINARY ${prisma-engines}/bin/introspection-engine \ 340 341 --set PRISMA_FMT_BINARY ${prisma-engines}/bin/prisma-fmt 341 342 ''; 343 + 344 + passthru.tests = { 345 + simple-execution = pkgs.callPackage ./package-tests/prisma.nix { 346 + inherit (self) prisma; 347 + }; 348 + }; 342 349 }; 343 350 344 351 pulp = super.pulp.override {
+56
pkgs/development/node-packages/package-tests/prisma.nix
··· 1 + { lib, pkgs, runCommand, prisma }: 2 + 3 + let 4 + inherit (prisma) packageName; 5 + prismaMajorVersion = lib.versions.majorMinor prisma.version; 6 + enginesMajorVersion = lib.versions.majorMinor pkgs.prisma-engines.version; 7 + in 8 + 9 + runCommand "${packageName}-tests" { 10 + nativeBuildInputs = with pkgs; [ prisma sqlite-interactive ]; 11 + meta.timeout = 60; 12 + } 13 + '' 14 + mkdir $out 15 + cd $out 16 + 17 + if [ "${prismaMajorVersion}" != "${enginesMajorVersion}" ]; then 18 + echo "nodePackages.prisma in version ${prismaMajorVersion} and prisma-engines in ${enginesMajorVersion}. Major versions must match." 19 + exit 1 20 + fi 21 + 22 + # Ensure CLI runs 23 + prisma --help > /dev/null 24 + 25 + # Init a new project 26 + prisma init > /dev/null 27 + 28 + # Create a simple data model 29 + cat << EOF > prisma/schema.prisma 30 + datasource db { 31 + provider = "sqlite" 32 + url = "file:test.db" 33 + } 34 + 35 + generator js { 36 + provider = "prisma-client-js" 37 + } 38 + 39 + model A { 40 + id Int @id @default(autoincrement()) 41 + b String @default("foo") 42 + } 43 + EOF 44 + 45 + # Format 46 + prisma format > /dev/null 47 + 48 + # Create the database 49 + prisma db push --skip-generate > /dev/null 50 + 51 + # The database file should exist and be a SQLite database 52 + sqlite3 prisma/test.db "SELECT id, b FROM A" > /dev/null 53 + 54 + # Introspect the database 55 + prisma db pull > /dev/null 56 + ''
+2 -1
pkgs/development/ocaml-modules/atd/default.nix
··· 17 17 }; 18 18 19 19 meta = with lib; { 20 - homepage = "https://github.com/mjambon/atd"; 21 20 description = "Syntax for cross-language type definitions"; 21 + homepage = "https://github.com/mjambon/atd"; 22 22 license = licenses.mit; 23 23 maintainers = with maintainers; [ aij jwilberding ]; 24 + mainProgram = "atdcat"; 24 25 }; 25 26 }
+2 -1
pkgs/development/ocaml-modules/awa/default.nix
··· 32 32 33 33 meta = with lib; { 34 34 description = "SSH implementation in OCaml"; 35 - license = licenses.isc; 36 35 homepage = "https://github.com/mirage/awa-ssh"; 37 36 changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md"; 37 + license = licenses.isc; 38 38 maintainers = [ maintainers.sternenseemann ]; 39 + mainProgram = "awa_lwt_server"; 39 40 }; 40 41 }
+2 -1
pkgs/development/ocaml-modules/bisect_ppx/default.nix
··· 21 21 22 22 meta = with lib; { 23 23 description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested."; 24 - license = licenses.mit; 25 24 homepage = "https://github.com/aantron/bisect_ppx"; 25 + license = licenses.mit; 26 26 maintainers = with maintainers; [ ]; 27 + mainProgram = "bisect-ppx-report"; 27 28 }; 28 29 }
+3 -2
pkgs/development/ocaml-modules/ca-certs-nss/default.nix
··· 43 43 checkInputs = [ alcotest ]; 44 44 45 45 meta = with lib; { 46 + description = "X.509 trust anchors extracted from Mozilla's NSS"; 47 + homepage = "https://github.com/mirage/ca-certs-nss"; 46 48 license = licenses.isc; 47 - description = "X.509 trust anchors extracted from Mozilla's NSS"; 48 49 maintainers = [ maintainers.sternenseemann ]; 49 - homepage = "https://github.com/mirage/ca-certs-nss"; 50 + mainProgram = "extract-from-certdata"; 50 51 }; 51 52 }
+2 -1
pkgs/development/ocaml-modules/checkseum/default.nix
··· 39 39 doCheck = true; 40 40 41 41 meta = { 42 - homepage = "https://github.com/mirage/checkseum"; 43 42 description = "ADLER-32 and CRC32C Cyclic Redundancy Check"; 43 + homepage = "https://github.com/mirage/checkseum"; 44 44 license = lib.licenses.mit; 45 45 maintainers = [ lib.maintainers.vbgl ]; 46 + mainProgram = "checkseum.checkseum"; 46 47 }; 47 48 }
+2 -1
pkgs/development/ocaml-modules/coin/default.nix
··· 30 30 31 31 meta = { 32 32 description = "A library to normalize an KOI8-{U,R} input to Unicode"; 33 - license = lib.licenses.mit; 34 33 homepage = "https://github.com/mirage/coin"; 34 + license = lib.licenses.mit; 35 35 maintainers = with lib.maintainers; [ ]; 36 + mainProgram = "coin.generate"; 36 37 }; 37 38 }
+3 -2
pkgs/development/ocaml-modules/cpdf/default.nix
··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + description = "PDF Command Line Tools"; 34 35 homepage = "https://www.coherentpdf.com/"; 35 - inherit (ocaml.meta) platforms; 36 - description = "PDF Command Line Tools"; 37 36 license = licenses.unfree; 38 37 maintainers = [ maintainers.vbgl ]; 38 + mainProgram = "cpdf"; 39 + inherit (ocaml.meta) platforms; 39 40 }; 40 41 }
+2 -1
pkgs/development/ocaml-modules/decompress/default.nix
··· 23 23 24 24 meta = { 25 25 description = "Pure OCaml implementation of Zlib"; 26 + homepage = "https://github.com/mirage/decompress"; 26 27 license = lib.licenses.mit; 27 28 maintainers = [ lib.maintainers.vbgl ]; 28 - homepage = "https://github.com/mirage/decompress"; 29 + mainProgram = "decompress.pipe"; 29 30 }; 30 31 }
+1
pkgs/development/ocaml-modules/dns/client.nix
··· 16 16 17 17 meta = dns.meta // { 18 18 description = "Pure DNS resolver API"; 19 + mainProgram = "dns-client.unix"; 19 20 }; 20 21 }
+2 -1
pkgs/development/ocaml-modules/hidapi/default.nix
··· 24 24 doCheck = true; 25 25 26 26 meta = with lib; { 27 - homepage = "https://github.com/vbmithr/ocaml-hidapi"; 28 27 description = "Bindings to Signal11's hidapi library"; 28 + homepage = "https://github.com/vbmithr/ocaml-hidapi"; 29 29 license = licenses.isc; 30 30 maintainers = [ maintainers.alexfmpe ]; 31 + mainProgram = "ocaml-hid-enumerate"; 31 32 }; 32 33 }
+1
pkgs/development/ocaml-modules/irmin/pack.nix
··· 20 20 21 21 meta = irmin.meta // { 22 22 description = "Irmin backend which stores values in a pack file"; 23 + mainProgram = "irmin_fsck"; 23 24 }; 24 25 25 26 }
+1
pkgs/development/ocaml-modules/irmin/unix.nix
··· 26 26 27 27 meta = irmin.meta // { 28 28 description = "Unix backends for Irmin"; 29 + mainProgram = "irmin"; 29 30 }; 30 31 31 32 }
+8 -2
pkgs/development/ocaml-modules/janestreet/0.14.nix
··· 405 405 pname = "ppx_base"; 406 406 hash = "1wv3q0qyghm0c5izq03y97lv3czqk116059mg62wx6valn22a000"; 407 407 minimumOCamlVersion = "4.04.2"; 408 - meta.description = "Base set of ppx rewriters"; 408 + meta = { 409 + description = "Base set of ppx rewriters"; 410 + mainProgram = "ppx-base"; 411 + }; 409 412 propagatedBuildInputs = [ ppx_cold ppx_enumerate ppx_hash ppx_js_style ]; 410 413 }; 411 414 ··· 519 522 pname = "ppx_jane"; 520 523 hash = "1kk238fvrcylymwm7xwc7llbyspmx1y662ypq00vy70g112rir7j"; 521 524 minimumOCamlVersion = "4.04.2"; 522 - meta.description = "Standard Jane Street ppx rewriters"; 525 + meta = { 526 + description = "Standard Jane Street ppx rewriters"; 527 + mainProgram = "ppx-jane"; 528 + }; 523 529 propagatedBuildInputs = [ base_quickcheck ppx_bin_prot ppx_expect ppx_fixed_literal ppx_module_timer ppx_optcomp ppx_optional ppx_pipebang ppx_stable ppx_string ppx_typerep_conv ppx_variants_conv ]; 524 530 }; 525 531
+2 -1
pkgs/development/ocaml-modules/lablgl/default.nix
··· 39 39 ''; 40 40 41 41 meta = with lib; { 42 - homepage = "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html"; 43 42 description = "OpenGL bindings for ocaml"; 43 + homepage = "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html"; 44 44 license = licenses.gpl2; 45 45 maintainers = with maintainers; [ pSub vbgl ]; 46 + mainProgram = "lablglut"; 46 47 broken = stdenv.isDarwin; 47 48 }; 48 49 }
+4 -4
pkgs/development/ocaml-modules/lambda-term/default.nix
··· 25 25 26 26 propagatedBuildInputs = [ zed lwt_log lwt_react mew_vi ]; 27 27 28 - meta = { description = "Terminal manipulation library for OCaml"; 28 + meta = { 29 + description = "Terminal manipulation library for OCaml"; 29 30 longDescription = '' 30 31 Lambda-term is a cross-platform library for 31 32 manipulating the terminal. It provides an abstraction for keys, ··· 43 44 44 45 inherit (src.meta) homepage; 45 46 license = lib.licenses.bsd3; 46 - maintainers = [ 47 - lib.maintainers.gal_bolle 48 - ]; 47 + maintainers = [ lib.maintainers.gal_bolle ]; 48 + mainProgram = "lambda-term-actions"; 49 49 }; 50 50 }
+1
pkgs/development/ocaml-modules/letsencrypt/app.nix
··· 43 43 44 44 meta = letsencrypt.meta // { 45 45 description = "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml"; 46 + mainProgram = "oacmel"; 46 47 }; 47 48 }
+2 -1
pkgs/development/ocaml-modules/lustre-v6/default.nix
··· 20 20 ]; 21 21 22 22 meta = with lib; { 23 - homepage = "https://www-verimag.imag.fr/lustre-v6.html"; 24 23 description = "Lustre V6 compiler"; 24 + homepage = "https://www-verimag.imag.fr/lustre-v6.html"; 25 25 license = lib.licenses.cecill21; 26 26 maintainers = [ lib.maintainers.delta ]; 27 + mainProgram = "lv6"; 27 28 }; 28 29 }
+1
pkgs/development/ocaml-modules/lutils/default.nix
··· 21 21 homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/lutils/"; 22 22 description = "Tools and libs shared by Verimag/synchronous tools (lustre, lutin, rdbg)"; 23 23 license = lib.licenses.cecill21; 24 + mainProgram = "gnuplot-rif"; 24 25 }; 25 26 }
+3 -2
pkgs/development/ocaml-modules/mrmime/default.nix
··· 67 67 68 68 meta = { 69 69 description = "Parser and generator of mail in OCaml"; 70 + homepage = "https://github.com/mirage/mrmime"; 70 71 license = lib.licenses.mit; 71 - homepage = "https://github.com/mirage/mrmime"; 72 - maintainers = with lib.maintainers; [ ]; 72 + maintainers = [ ]; 73 + mainProgram = "mrmime.generate"; 73 74 }; 74 75 }
+1
pkgs/development/ocaml-modules/ocaml-lsp/default.nix
··· 17 17 18 18 meta = lsp.meta // { 19 19 description = "OCaml Language Server Protocol implementation"; 20 + mainProgram = "ocamllsp"; 20 21 }; 21 22 }
+2 -1
pkgs/development/ocaml-modules/otfm/default.nix
··· 34 34 of them. 35 35 ''; 36 36 homepage = webpage; 37 - inherit (ocaml.meta) platforms; 38 37 license = licenses.bsd3; 39 38 maintainers = [ maintainers.jirkamarsik ]; 39 + mainProgram = "otftrip"; 40 + inherit (ocaml.meta) platforms; 40 41 }; 41 42 }
+5 -3
pkgs/development/ocaml-modules/otoml/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage 1 + { lib 2 + , fetchFromGitHub 3 + , buildDunePackage 2 4 , menhir 3 5 , menhirLib 4 6 , uutf ··· 6 8 7 9 buildDunePackage rec { 8 10 pname = "otoml"; 9 - version = "0.9.0"; 11 + version = "1.0.1"; 10 12 11 13 useDune2 = true; 12 14 ··· 16 18 owner = "dmbaturin"; 17 19 repo = pname; 18 20 rev = version; 19 - sha256 = "0l0c60rzgk11y8xq05kr8q9hkzb3c8vi995mq84x98ys73wb42j3"; 21 + sha256 = "sha256-2WGuq4ZLbLvfG6WZ3iimiSMqMYHCuruZc1EttZ/5rBE="; 20 22 }; 21 23 22 24 strictDeps = true;
+3 -2
pkgs/development/ocaml-modules/phylogenetics/default.nix
··· 46 46 doCheck = true; 47 47 48 48 meta = with lib; { 49 + description = "Algorithms and datastructures for phylogenetics"; 49 50 homepage = "https://github.com/biocaml/phylogenetics"; 50 - description = "Algorithms and datastructures for phylogenetics"; 51 + license = licenses.cecill-b; 51 52 maintainers = [ maintainers.bcdarwin ]; 52 - license = licenses.cecill-b; 53 + mainProgram = "phylosim"; 53 54 }; 54 55 }
+2 -1
pkgs/development/ocaml-modules/tuntap/default.nix
··· 23 23 24 24 meta = { 25 25 description = "Bindings to the UNIX tuntap facility"; 26 + homepage = "https://github.com/mirage/ocaml-tuntap"; 26 27 license = lib.licenses.isc; 27 - homepage = "https://github.com/mirage/ocaml-tuntap"; 28 + mainProgram = "otunctl"; 28 29 }; 29 30 }
+3 -2
pkgs/development/ocaml-modules/uuuu/default.nix
··· 32 32 33 33 meta = { 34 34 description = "A library to normalize an ISO-8859 input to Unicode code-point"; 35 + homepage = "https://github.com/mirage/uuuu"; 35 36 license = lib.licenses.mit; 36 - homepage = "https://github.com/mirage/uuuu"; 37 - maintainers = with lib.maintainers; [ ]; 37 + maintainers = [ ]; 38 + mainProgram = "uuuu.generate"; 38 39 }; 39 40 }
+2 -1
pkgs/development/ocaml-modules/vg/default.nix
··· 57 57 module. An API allows to implement new renderers. 58 58 ''; 59 59 homepage = webpage; 60 - inherit (ocaml.meta) platforms; 61 60 license = licenses.isc; 62 61 maintainers = [ maintainers.jirkamarsik ]; 62 + mainProgram = "vecho"; 63 + inherit (ocaml.meta) platforms; 63 64 }; 64 65 }
+2 -1
pkgs/development/ocaml-modules/wayland/default.nix
··· 42 42 43 43 meta = { 44 44 description = "Pure OCaml Wayland protocol library"; 45 + homepage = "https://github.com/talex5/ocaml-wayland"; 45 46 license = lib.licenses.asl20; 46 47 maintainers = [ lib.maintainers.sternenseemann ]; 47 - homepage = "https://github.com/talex5/ocaml-wayland"; 48 + mainProgram = "wayland-scanner-ocaml"; 48 49 }; 49 50 }
+1
pkgs/development/ocaml-modules/webbrowser/default.nix
··· 23 23 homepage = "https://erratique.ch/software/webbrowser"; 24 24 license = lib.licenses.isc; 25 25 maintainers = [ lib.maintainers.vbgl ]; 26 + mainProgram = "browse"; 26 27 inherit (ocaml.meta) platforms; 27 28 }; 28 29 }
+4 -1
pkgs/development/ocaml-modules/wodan/unix.nix
··· 22 22 moveToOutput bin "''${!outputBin}" 23 23 ''; 24 24 25 - meta = wodan.meta // { description = "Wodan clients with Unix integration"; }; 25 + meta = wodan.meta // { 26 + description = "Wodan clients with Unix integration"; 27 + mainProgram = "wodanc"; 28 + }; 26 29 27 30 }
+2 -2
pkgs/development/python-modules/apispec/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "apispec"; 15 - version = "5.2.1"; 15 + version = "5.2.2"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-z3VMQ5pW3xLwFJ/FaQpCJ3TprDOV+2eYiCwX+8OinS0="; 22 + hash = "sha256-bqZULh6//p/ZW6Ae8/UTUerGwgCpdFYsdHMFm5zSCqc="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-containerservice"; 14 - version = "19.0.0"; 14 + version = "19.1.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 19 19 src = fetchPypi { 20 20 inherit pname version; 21 21 extension = "zip"; 22 - sha256 = "sha256-UHkSUoNzXWomr4vczGRRXVJplVRfqDjwFczkOP2Jwsc="; 22 + sha256 = "sha256-t06Cesxvjk31aDxkX2Yj0VzFubWbiAc26LzNTIgVEqs="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-datafactory/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-datafactory"; 13 - version = "2.4.0"; 13 + version = "2.5.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.6"; ··· 18 18 src = fetchPypi { 19 19 inherit pname version; 20 20 extension = "zip"; 21 - hash = "sha256-oCDh7tWsBA6z/auQm3AtkRzT9IUrq8HJ+R//HDJ+1nw="; 21 + hash = "sha256-vV+VAK+lesBylrIsGB+MZCT4kW84beFSIYJZfOzPoTY="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/blocksat-cli/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "blocksat-cli"; 16 - version = "0.4.2"; 16 + version = "0.4.3"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-hz5BGE+gqOrPiXvmeOTOecm2RUrTvM/xxvV3cnO2QSc="; 20 + sha256 = "sha256-HHalq64pgjobnPwjXMi57OumHxOuf7wjuw0d6arMoAI="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/casbin/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "casbin"; 12 - version = "1.16.3"; 12 + version = "1.16.4"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 18 18 owner = pname; 19 19 repo = "pycasbin"; 20 20 rev = "refs/tags/v${version}"; 21 - sha256 = "sha256-7URIk76iQ1u59RM1VeqO5qqTg+0kCPtsP+2Y5CxCZ3I="; 21 + sha256 = "sha256-/zIx1GlzAnQf0t2d8ME+bi2CZGj6Qr9f5Z4afrQD8FY="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/chiavdf/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "chiavdf"; 17 - version = "1.0.6"; 17 + version = "1.0.7"; 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-Ri7j/T0nnZFml4kC0qIQkyYRJBPZMhTYxolW/A25030="; 22 + hash = "sha256-956517eGqRSLg+Y4ybmASiZoypgpYn/D9lbPA4Rcfts="; 23 23 }; 24 24 25 25 patches = [
+6 -21
pkgs/development/python-modules/cirq-core/default.nix
··· 30 30 31 31 buildPythonPackage rec { 32 32 pname = "cirq-core"; 33 - version = "0.13.1"; 33 + version = "0.14.1"; 34 34 35 35 disabled = pythonOlder "3.6"; 36 36 ··· 38 38 owner = "quantumlib"; 39 39 repo = "cirq"; 40 40 rev = "v${version}"; 41 - sha256 = "sha256-MVfJ8iEeW8gFvCNTqrWfYpNNYuDAufHgcjd7Nh3qp8U="; 41 + sha256 = "sha256-cIDwV3IBXrTJ4jC1/HYmduY3tLe/f6wj8CWZ4cnThG8="; 42 42 }; 43 43 44 44 sourceRoot = "source/${pname}"; 45 45 46 - patches = [ 47 - # present in upstream master - remove after 0.13.1 48 - (fetchpatch { 49 - name = "fix-test-tolerances.part-1.patch"; 50 - url = "https://github.com/quantumlib/Cirq/commit/eb1d9031e55d3c8801ea44abbb6a4132b2fc5126.patch"; 51 - sha256 = "0ka24v6dfxnap9p07ni32z9zccbmw0lbrp5mcknmpsl12hza98xm"; 52 - stripLen = 1; 53 - }) 54 - (fetchpatch { 55 - name = "fix-test-tolerances.part-2.patch"; 56 - url = "https://github.com/quantumlib/Cirq/commit/a28d601b2bcfc393336375c53e5915fd16455395.patch"; 57 - sha256 = "0k2dqsm4ydn6556d40kc8j04jgjn59z4wqqg1jn1r916a7yxw493"; 58 - stripLen = 1; 59 - }) 60 - ]; 61 - 62 46 postPatch = '' 63 47 substituteInPlace requirements.txt \ 64 48 --replace "matplotlib~=3.0" "matplotlib" \ 65 49 --replace "networkx~=2.4" "networkx" \ 66 - --replace "numpy~=1.16" "numpy" 50 + --replace "numpy~=1.16" "numpy" \ 51 + --replace "sympy<1.10" "sympy" 67 52 ''; 68 53 69 54 propagatedBuildInputs = [ ··· 93 78 freezegun 94 79 ]; 95 80 96 - pytestFlagsArray = lib.optionals (!withContribRequires) [ 81 + disabledTestPaths = lib.optionals (!withContribRequires) [ 97 82 # requires external (unpackaged) libraries, so untested. 98 - "--ignore=cirq/contrib/" 83 + "cirq/contrib/" 99 84 ]; 100 85 disabledTests = [ 101 86 "test_metadata_search_path" # tries to import flynt, which isn't in Nixpkgs
+9
pkgs/development/python-modules/cirq/default.nix
··· 1 1 { buildPythonPackage 2 + , fetchpatch 2 3 , cirq-aqt 3 4 , cirq-core 4 5 , cirq-google ··· 13 14 buildPythonPackage rec { 14 15 pname = "cirq"; 15 16 inherit (cirq-core) version src meta; 17 + 18 + patches = [ 19 + (fetchpatch { 20 + url = "https://github.com/quantumlib/Cirq/commit/b832db606e5f1850b1eda168a6d4a8e77d8ec711.patch"; 21 + name = "pr-5330-prevent-implicit-packages.patch"; 22 + sha256 = "sha256-HTEH3fFxPiBedaz5GxZjXayvoiazwHysKZIOzqwZmbg="; 23 + }) 24 + ]; 16 25 17 26 propagatedBuildInputs = [ 18 27 cirq-aqt
+2 -1
pkgs/development/python-modules/datatable/default.nix
··· 6 6 , llvm 7 7 , pytestCheckHook 8 8 , typesentry 9 + , isPy310 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 63 64 maintainers = with maintainers; [ abbradar ]; 64 65 # uses custom build system and adds -Wunused-variable -Werror 65 66 # warning: ‘dt::expr::doc_first’ defined but not used [-Wunused-variable] 66 - broken = true; 67 + broken = isPy310; 67 68 }; 68 69 }
+2 -2
pkgs/development/python-modules/django-auth-ldap/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "django-auth-ldap"; 20 - version = "4.0.0"; 20 + version = "4.1.0"; 21 21 format = "pyproject"; 22 22 23 23 disabled = isPy27; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239"; 27 + sha256 = "sha256-d/dJ07F4B86OtWqcnI5XRv8xZWf4HVumE0ldnHSVqUk="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-jinja2/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "django-jinja"; 7 - version = "2.10.0"; 7 + version = "2.10.2"; 8 8 9 9 meta = { 10 10 description = "Simple and nonobstructive jinja2 integration with Django"; ··· 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "ae6a3fdf1ffa7a9ef6fd2f0a59c1a68c96b29f7f00f5166375658ef392f1ed32"; 17 + sha256 = "sha256-v9+7VcH1pnnWmtV11VDEcH04ZjQAkVLv4BQInzxNFBI="; 18 18 }; 19 19 20 20 buildInputs = [ django pytz tox ];
+3
pkgs/development/python-modules/fastjsonschema/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 31 32 # these tests require network access 32 33 "remote ref" 33 34 "definitions" 35 + ] ++ lib.optionals stdenv.isDarwin [ 36 + "test_compile_to_code_custom_format" # cannot import temporary module created during test 34 37 ]; 35 38 36 39 pythonImportsCheck = [
+26
pkgs/development/python-modules/gpt-2-simple/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, regex, requests, tqdm, numpy 2 + , toposort, tensorflow }: 3 + 4 + buildPythonPackage rec { 5 + pname = "gpt-2-simple"; 6 + version = "0.8.1"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "minimaxir"; 10 + repo = "gpt-2-simple"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-WwD4sDcc28zXEOISJsq8e+rgaNrrgIy79Wa4J3E7Ovc="; 13 + }; 14 + 15 + propagatedBuildInputs = [ regex requests tqdm numpy toposort tensorflow ]; 16 + 17 + dontCheck = true; # no tests in upstream 18 + 19 + meta = with lib; { 20 + description = 21 + "Easily retrain OpenAI's GPT-2 text-generating model on new texts"; 22 + homepage = "https://github.com/minimaxir/gpt-2-simple"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ ckie ]; 25 + }; 26 + }
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "hahomematic"; 17 - version = "1.3.0"; 17 + version = "1.3.1"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "danielperna84"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - sha256 = "sha256-033iPQfFF26Ly8OVdjExDZDoQ35DXuVF7dXqokA7k/s="; 26 + sha256 = "sha256-RgjsaGtji5vSQcv+npOYcXJNYUhx9Snz56BXnfoc2QY="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hatasmota/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "hatasmota"; 11 - version = "0.4.1"; 11 + version = "0.5.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; ··· 17 17 owner = "emontnemery"; 18 18 repo = pname; 19 19 rev = "refs/tags/${version}"; 20 - sha256 = "sha256-So3wnz6HBGlgBgBJiU4m+fFx7f8Y+6c15OCD8GFGQaE="; 20 + sha256 = "sha256-pIMao1zZXJJVEG9J9ypWlo/JF0nmci49ANcqHJSY2AY="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/hg-commitsigs/default.nix
··· 1 1 { lib 2 2 , fetchhg 3 3 , stdenv 4 - , python3 4 + , python 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { ··· 20 20 dontBuild = true; 21 21 22 22 installPhase = '' 23 - mkdir -p $out/lib/${python3.libPrefix}/site-packages/hgext3rd/ 23 + mkdir -p $out/lib/${python.libPrefix}/site-packages/hgext3rd/ 24 24 install -D $src/commitsigs.py \ 25 - $out/lib/${python3.libPrefix}/site-packages/hgext3rd/ 25 + $out/lib/${python.libPrefix}/site-packages/hgext3rd/ 26 26 ''; 27 27 28 28 meta = with lib; {
+4 -4
pkgs/development/python-modules/huggingface-hub/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "huggingface-hub"; 17 - version = "0.4.0"; 17 + version = "0.6.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "huggingface"; 21 21 repo = "huggingface_hub"; 22 - rev = "v${version}"; 23 - sha256 = "sha256-rrkubNy60e/1VcGacYQang4yWxUzIBGySxZyq6G1arw="; 22 + rev = "refs/tags/v${version}"; 23 + sha256 = "sha256-jR4aqMAAQJ5a7pOe3RpCtLgdm5JVVSPsBQtube6FeqM="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ packaging ]; ··· 41 41 meta = with lib; { 42 42 homepage = "https://github.com/huggingface/huggingface_hub"; 43 43 description = "Download and publish models and other files on the huggingface.co hub"; 44 - changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/${version}"; 44 + changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}"; 45 45 license = licenses.asl20; 46 46 maintainers = with maintainers; [ ]; 47 47 };
+2 -2
pkgs/development/python-modules/humblewx/default.nix
··· 2 2 , fetchFromGitHub 3 3 , buildPythonPackage 4 4 , wxPython_4_0 5 - , python3 5 + , python 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 22 22 checkPhase = '' 23 23 runHook preCheck 24 24 for i in examples/*; do 25 - ${python3.interpreter} $i 25 + ${python.interpreter} $i 26 26 done 27 27 runHook postCheck 28 28 '';
+2 -2
pkgs/development/python-modules/jc/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "jc"; 13 - version = "1.18.8"; 13 + version = "1.19.0"; 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "kellyjonbrazil"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-tZrvWMt0qdOFTNeL99mZGFl8bVDGCqj25zVl7QvXQLw="; 20 + sha256 = "sha256-0UOU4arSCh+5l258mwZQLNf/JUbPcTgcHtusiTyYPwg="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ];
+2 -2
pkgs/development/python-modules/motionblinds/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "motionblinds"; 10 - version = "0.6.5"; 10 + version = "0.6.7"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "starkillerOG"; 17 17 repo = "motion-blinds"; 18 18 rev = "refs/tags/${version}"; 19 - sha256 = "sha256-RAGsVHi/f+0gIzVomhC8h3JvoD4EEe6dK9PBi5daTgU="; 19 + sha256 = "sha256-c6+kctEB4gwLGTgTA+sUA3v9ST4dn4RFPbyaXSgGvoQ="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/mypy-boto3-s3/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "mypy-boto3-s3"; 11 - version = "1.22.8"; 11 + version = "1.23.0.post1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-Br7HlymKuQUbI+iw90HWi1lSnEFwQbziBLokAHTzGEk="; 18 + hash = "sha256-eF0ChMOqisXsMWLlKCAWGMrTUe4sGfZxWo5uc/ZKAQk="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pip-tools/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pip-tools"; 16 - version = "6.6.0"; 16 + version = "6.6.1"; 17 17 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "sha256-mKokAERAocBInXGlZ6Tor98jx3gr/0g9EhmIHnMC3oM="; 22 + sha256 = "sha256-Y04+jUcHJXwAQxPRap1sFMHOlNPA+h+Tw40mRAHy5PI="; 23 23 }; 24 24 25 25 checkInputs = [
+2 -2
pkgs/development/python-modules/plugwise/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "plugwise"; 23 - version = "0.18.2"; 23 + version = "0.18.3"; 24 24 format = "setuptools"; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = pname; 30 30 repo = "python-plugwise"; 31 31 rev = "refs/tags/v${version}"; 32 - sha256 = "sha256-l97GF5dZlwps2mhw84A+8IBmTmvnaJ/5MeWYdeAu4Zw="; 32 + sha256 = "sha256-aNlPOgUChLFkPPZtb3o4A49uoSBjxKaq3WtuupHlmi8="; 33 33 }; 34 34 35 35 propagatedBuildInputs = [
+39
pkgs/development/python-modules/py-deprecate/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , scikit-learn 6 + , pytorch 7 + }: 8 + 9 + let 10 + pname = "py-deprecate"; 11 + version = "0.3.2"; 12 + in 13 + buildPythonPackage { 14 + inherit pname version; 15 + 16 + src = fetchFromGitHub { 17 + owner = "Borda"; 18 + repo = "pyDeprecate"; 19 + rev = "v${version}"; 20 + hash = "sha256-84RmQvLxwtLPQk3hX7Q6eeJeejhrO3t+mc95W1E85Fg="; 21 + }; 22 + 23 + checkInputs = [ 24 + pytestCheckHook 25 + scikit-learn 26 + ]; 27 + 28 + pythonImportsCheck = [ "deprecate" ]; 29 + 30 + meta = with lib; { 31 + description = "A module for marking deprecated functions or classes and re-routing to the new successors' instance. Used by torchmetrics"; 32 + homepage = "https://borda.github.io/pyDeprecate/"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ 35 + SomeoneSerge 36 + ]; 37 + }; 38 + } 39 +
+2 -2
pkgs/development/python-modules/pyTelegramBotAPI/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyTelegramBotAPI"; 11 - version = "4.5.0"; 11 + version = "4.5.1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-Jonbb26MbK/LKztFkB7IlaHQm98DPYn4lYK4ikDPpaE="; 18 + hash = "sha256-ClzdkvH1uz1qh/q3prfn8n0eosY3y3mUscbb4EKbmJQ="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyglet/default.nix
··· 18 18 }: 19 19 20 20 buildPythonPackage rec { 21 - version = "1.5.23"; 21 + version = "1.5.24"; 22 22 pname = "pyglet"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "sha256-3ukgIDzzBhWcUDurti84eHJocIl39clF0oM3WUt5fEY="; 27 + sha256 = "sha256-W0pNXlrVSUbjFJLqxn9ykuUaZXckRkGidxgPkKAZKo4="; 28 28 extension = "zip"; 29 29 }; 30 30
+2 -2
pkgs/development/python-modules/pynest2d/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python3, cmake 1 + { lib, buildPythonPackage, fetchFromGitHub, python, cmake 2 2 , libnest2d, sip_4, clipper }: 3 3 4 4 buildPythonPackage rec { ··· 19 19 CLIPPER_PATH = "${clipper.out}"; 20 20 21 21 postPatch = '' 22 - sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python3.sitePackages}#' cmake/SIPMacros.cmake 22 + sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake 23 23 ''; 24 24 25 25 meta = with lib; {
+3 -3
pkgs/development/python-modules/pyomo/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyomo"; 12 - version = "6.4.0"; 12 + version = "6.4.1"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchFromGitHub { 18 18 repo = "pyomo"; 19 19 owner = "pyomo"; 20 - rev = version; 21 - hash = "sha256-FdUhne5Dn5hTIXMce1G6Zu6nx+AuP/JdK0a5fCE3hg8="; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-LwlUib/CeVCCmgpTHtYHcFyxk9Esx1zhZ3yGHeGpugY="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+8 -2
pkgs/development/python-modules/pytorch-lightning/default.nix
··· 3 3 , fetchFromGitHub 4 4 , isPy27 5 5 , future 6 + , fsspec 7 + , packaging 6 8 , pytestCheckHook 7 9 , pytorch 8 10 , pyyaml 9 11 , tensorboard 12 + , torchmetrics 10 13 , tqdm }: 11 14 12 15 buildPythonPackage rec { 13 16 pname = "pytorch-lightning"; 14 - version = "1.5.10"; 17 + version = "1.6.3"; 15 18 16 19 disabled = isPy27; 17 20 ··· 19 22 owner = "PyTorchLightning"; 20 23 repo = pname; 21 24 rev = version; 22 - sha256 = "sha256-GP6/VZuRv8dS5wKQW7RbtOSa2vV9Af2Jp+ioEW3bIgc="; 25 + hash = "sha256-MEUFrj84y5lQfwbC9s9fJNOKo+Djeh+E/eDc8KeX7V4="; 23 26 }; 24 27 25 28 propagatedBuildInputs = [ 29 + packaging 26 30 future 31 + fsspec 27 32 pytorch 28 33 pyyaml 29 34 tensorboard 35 + torchmetrics 30 36 tqdm 31 37 ]; 32 38
+19 -4
pkgs/development/python-modules/pyvips/default.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, pytestCheckHook, glib, vips, cffi 2 - , pkgconfig, lib }: 1 + { stdenv 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , glib 6 + , vips 7 + , cffi 8 + , pkgconfig 9 + , lib }: 3 10 4 11 buildPythonPackage rec { 5 12 pname = "pyvips"; 6 - version = "2.1.16"; 13 + version = "2.2.0"; 7 14 8 15 src = fetchFromGitHub { 9 16 owner = "libvips"; 10 17 repo = "pyvips"; 11 18 rev = "v${version}"; 12 - sha256 = "sha256-8CeQbx3f2i0lEU0wxPeUwHlUGtzOztzTOdFNjIDy8s0="; 19 + sha256 = "sha256-qMVoVzqXALhPWVKLzu+VqihHPN7J+pMhKnXdb+ow0zw="; 13 20 }; 14 21 15 22 nativeBuildInputs = [ pkgconfig ]; ··· 19 26 propagatedBuildInputs = [ cffi ]; 20 27 21 28 checkInputs = [ pytestCheckHook ]; 29 + 30 + postPatch = '' 31 + substituteInPlace pyvips/__init__.py \ 32 + --replace 'libvips.so.42' '${lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}' \ 33 + --replace 'libvips.42.dylib' '${lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}' \ 34 + --replace 'libgobject-2.0.so.0' '${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}' \ 35 + --replace 'libgobject-2.0.dylib' '${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}' \ 36 + ''; 22 37 23 38 pythonImportsCheck = [ "pyvips" ]; 24 39
+2 -2
pkgs/development/python-modules/qcs-api-client/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "qcs-api-client"; 23 - version = "0.20.10"; 23 + version = "0.20.12"; 24 24 format = "pyproject"; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "rigetti"; 30 30 repo = "qcs-api-client-python"; 31 31 rev = "v${version}"; 32 - hash = "sha256-pBC8pFrk6iNYPS3/LKaVo+ds2okN56bxzvffEfs6SrU="; 32 + hash = "sha256-4462T2WIBdWjtd51YfslYZOcJg9f0nrSOKTi2ed6WvI="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "stripe"; 10 - version = "2.76.0"; 10 + version = "3.0.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-/T/Gk1w7YYmWcZFge2846+SQAFpZC00NQ/vjq6Rd7Kg="; 17 + hash = "sha256-/rQA1woPv6VN9+Y3bI+bh2Ud7Zd81qAu4yxmGmB+JZo="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/tensorflow-metadata/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "tensorflow-metadata"; 11 - version = "1.7.0"; 11 + version = "1.8.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "tensorflow"; 15 15 repo = "metadata"; 16 - rev = "v${version}"; 17 - sha256 = "sha256-CQlLEVNcD9u2pojz8r1eLzYzc9i2hjdZfzfYSQ/8Q4k="; 16 + rev = "refs/tags/v${version}"; 17 + sha256 = "sha256-IaLr6XYEy1EcyWi5GWzDFa7TeVZ59v8Wj5qkNdVbOqw="; 18 18 }; 19 19 20 20 patches = [
+78
pkgs/development/python-modules/torchmetrics/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , cloudpickle 5 + , scikit-learn 6 + , scikitimage 7 + , packaging 8 + , psutil 9 + , py-deprecate 10 + , pytorch 11 + , pytestCheckHook 12 + , torchmetrics 13 + , pytorch-lightning 14 + }: 15 + 16 + let 17 + pname = "torchmetrics"; 18 + version = "0.8.1"; 19 + in 20 + buildPythonPackage { 21 + inherit pname version; 22 + 23 + src = fetchFromGitHub { 24 + owner = "PyTorchLightning"; 25 + repo = "metrics"; 26 + rev = "v${version}"; 27 + hash = "sha256-AryEhYAeC97dO2pgHoz0Y9F//DVdX6RfCa80gI56iz4="; 28 + }; 29 + 30 + propagatedBuildInputs = [ 31 + packaging 32 + py-deprecate 33 + ]; 34 + 35 + # Let the user bring their own instance 36 + buildInputs = [ 37 + pytorch 38 + ]; 39 + 40 + checkInputs = [ 41 + pytorch-lightning 42 + scikit-learn 43 + scikitimage 44 + cloudpickle 45 + psutil 46 + pytestCheckHook 47 + ]; 48 + 49 + # A cyclic dependency in: integrations/test_lightning.py 50 + doCheck = false; 51 + passthru.tests.check = torchmetrics.overridePythonAttrs (_: { 52 + doCheck = true; 53 + }); 54 + 55 + disabledTestPaths = [ 56 + # These require too many "leftpad-level" dependencies 57 + "tests/text" 58 + "tests/audio" 59 + "tests/image" 60 + 61 + # A few non-deterministic things like test_check_compute_groups_is_faster 62 + "tests/bases/test_collections.py" 63 + ]; 64 + 65 + pythonImportsCheck = [ 66 + "torchmetrics" 67 + ]; 68 + 69 + meta = with lib; { 70 + description = "Machine learning metrics for distributed, scalable PyTorch applications (used in pytorch-lightning)"; 71 + homepage = "https://torchmetrics.readthedocs.io"; 72 + license = licenses.asl20; 73 + maintainers = with maintainers; [ 74 + SomeoneSerge 75 + ]; 76 + }; 77 + } 78 +
+2 -2
pkgs/development/python-modules/xdot/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k, python3, xvfb-run 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, python, xvfb-run 2 2 , wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3, numpy }: 3 3 4 4 buildPythonPackage rec { ··· 20 20 ''; 21 21 22 22 checkPhase = '' 23 - xvfb-run -s '-screen 0 800x600x24' ${python3.interpreter} nix_run_setup test 23 + xvfb-run -s '-screen 0 800x600x24' ${python.interpreter} nix_run_setup test 24 24 ''; 25 25 26 26 # https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866
+3 -3
pkgs/development/tools/analysis/rr/unstable.nix
··· 11 11 in 12 12 13 13 rr.overrideAttrs (old: { 14 - version = "unstable-2021-07-06"; 14 + version = "unstable-2022-05-12"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "mozilla"; 18 18 repo = "rr"; 19 - rev = "0fc21a8d654dabc7fb1991d76343824cb7951ea0"; 20 - sha256 = "0s851rflxmvxcfw97zmplcwzhv86xmd3my78pi4c7gkj18d621i5"; 19 + rev = "c96cb688106634ad09af6214aa91252c3a4f74b1"; 20 + sha256 = "sha256-K4cEQnvBXr/j9qXCgIHLqMrRzm96ushTO5STivRj+Mk="; 21 21 }; 22 22 })
+3 -5
pkgs/development/tools/cocogitto/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cocogitto"; 5 - version = "4.1.0"; 5 + version = "5.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "oknozor"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-g7NBtqr7Mx7ALzij4hfoVXN3izbu4ShXYhHPYw9qnWk="; 11 + sha256 = "sha256-q2WJKAXpIO+VsOFrjdyEx06yis8f2SkCuB0blUgqq0M="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-kXspbXySY5ridLUvAjv49Rm0RGt1fNsfNw9a3vd4hyI="; 14 + cargoSha256 = "sha256-UArYBcUkXPYlNRLQBMwNhsd3bNgLeEwtJdzepMTt2no="; 15 15 16 16 # Test depend on git configuration that would likly exist in a normal user enviroment 17 17 # and might be failing to create the test repository it works in. ··· 28 28 --zsh <($out/bin/cog generate-completions zsh) 29 29 30 30 wrapProgram $out/bin/cog \ 31 - --prefix PATH : "${lib.makeBinPath [ git ]}" 32 - wrapProgram $out/bin/coco \ 33 31 --prefix PATH : "${lib.makeBinPath [ git ]}" 34 32 ''; 35 33
-46
pkgs/development/tools/continuous-integration/buildkite-agent/generic.nix
··· 1 - { lib, buildGoPackage, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep 2 - , src, version, hasBootstrapScript, postPatch ? "" 3 - , ... }: 4 - let 5 - goPackagePath = "github.com/buildkite/agent"; 6 - in 7 - buildGoPackage { 8 - pname = "buildkite-agent"; 9 - inherit version; 10 - 11 - inherit goPackagePath src postPatch; 12 - 13 - nativeBuildInputs = [ makeWrapper ]; 14 - 15 - postInstall = '' 16 - ${lib.optionalString hasBootstrapScript '' 17 - # Install bootstrap.sh 18 - mkdir -p $out/libexec/buildkite-agent 19 - cp $NIX_BUILD_TOP/go/src/${goPackagePath}/templates/bootstrap.sh $out/libexec/buildkite-agent 20 - sed -e "s|#!/bin/bash|#!${bash}/bin/bash|g" -i $out/libexec/buildkite-agent/bootstrap.sh 21 - ''} 22 - 23 - # Fix binary name 24 - mv $out/bin/{agent,buildkite-agent} 25 - 26 - # These are runtime dependencies 27 - wrapProgram $out/bin/buildkite-agent \ 28 - ${lib.optionalString hasBootstrapScript "--set BUILDKITE_BOOTSTRAP_SCRIPT_PATH $out/libexec/buildkite-agent/bootstrap.sh"} \ 29 - --prefix PATH : '${lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}' 30 - ''; 31 - 32 - meta = with lib; { 33 - description = "Build runner for buildkite.com"; 34 - longDescription = '' 35 - The buildkite-agent is a small, reliable, and cross-platform build runner 36 - that makes it easy to run automated builds on your own infrastructure. 37 - It’s main responsibilities are polling buildkite.com for work, running 38 - build jobs, reporting back the status code and output log of the job, 39 - and uploading the job's artifacts. 40 - ''; 41 - homepage = "https://buildkite.com/docs/agent"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ pawelpacana zimbatm rvl ]; 44 - platforms = platforms.unix; 45 - }; 46 - }
+46
pkgs/development/tools/dump_syms/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , openssl 6 + }: 7 + 8 + let 9 + pname = "dump_syms"; 10 + version = "unstable-2022-05-05"; 11 + in 12 + rustPlatform.buildRustPackage { 13 + inherit pname version; 14 + 15 + src = fetchFromGitHub { 16 + owner = "mozilla"; 17 + repo = pname; 18 + rev = "c2743d59b5aa321ade698f84b90f86b3d35a1b06"; 19 + hash = "sha256-hWK9KrYqbfrF8b7i33InlTa/XkoZs+h49kUsKeSaAok="; 20 + }; 21 + 22 + cargoSha256 = "sha256:0vsr867nl156wpxpw01bv9fxsp6rhj9vvpz2i2yhx4kjgr1qk1kw"; 23 + 24 + nativeBuildInputs = [ 25 + pkg-config 26 + ]; 27 + 28 + buildInputs = [ 29 + openssl 30 + ]; 31 + 32 + checkFlags = [ 33 + # Disable tests that require network access 34 + # ConnectError("dns error", Custom { kind: Uncategorized, error: "failed to lookup address information: Temporary failure in name resolution" })) }', src/windows/pdb.rs:725:56 35 + "--skip windows::pdb::tests::test_ntdll" 36 + "--skip windows::pdb::tests::test_oleaut32" 37 + ]; 38 + 39 + meta = with lib; { 40 + changelog = "https://github.com/mozilla/dump_syms/releases/tag/v${version}"; 41 + description = "Command-line utility for parsing the debugging information the compiler provides in ELF or stand-alone PDB files"; 42 + license = licenses.asl20; 43 + homepage = "https://github.com/mozilla/dump_syms/"; 44 + maintainers = with maintainers; [ hexa ]; 45 + }; 46 + }
+6 -51
pkgs/development/tools/misc/gdbgui/default.nix
··· 2 2 , buildPythonApplication 3 3 , fetchPypi 4 4 , gdb 5 - , flask 6 - , six 7 - , bidict 8 - , python-engineio 9 - , python-socketio 10 5 , flask-socketio 11 6 , flask-compress 12 7 , pygdbmi 13 8 , pygments 14 - , gevent 15 - , gevent-websocket 16 - , eventlet 17 9 , }: 18 10 19 - let 20 - # gdbgui only works with the latest previous major version of flask-socketio, 21 - # which depends itself on the latest previous major versions of dependencies. 22 - python-engineio' = python-engineio.overridePythonAttrs (old: rec { 23 - version = "3.14.2"; 24 - src = fetchPypi { 25 - inherit (old) pname; 26 - inherit version; 27 - sha256 = "119halljynqsgswlhlh750qv56js1p7j52sc0nbwxh8450zmbd7a"; 28 - }; 29 - propagatedBuildInputs = [ six ]; 30 - doCheck = false; 31 - }); 32 - python-socketio' = python-socketio.overridePythonAttrs (old: rec { 33 - version = "4.6.1"; 34 - src = fetchPypi { 35 - inherit (old) pname; 36 - inherit version; 37 - sha256 = "047syhrrxh327p0fnab0d1zy25zijnj3gs1qg3kjpsy1jaj5l7yd"; 38 - }; 39 - propagatedBuildInputs = [ bidict python-engineio' ]; 40 - doCheck = false; 41 - }); 42 - flask-socketio' = flask-socketio.overridePythonAttrs (old: rec { 43 - version = "4.3.2"; 44 - src = fetchPypi { 45 - inherit (old) pname; 46 - inherit version; 47 - sha256 = "0s2xs9kv9cbwy8bcxszhdwlcb9ldv0fj33lwilf5vypj0wsin01p"; 48 - }; 49 - propagatedBuildInputs = [ flask python-socketio' ]; 50 - doCheck = false; 51 - }); 52 - in 53 11 buildPythonApplication rec { 54 12 pname = "gdbgui"; 55 - version = "0.14.0.2"; 13 + 14 + version = "0.15.0.1"; 15 + 56 16 57 17 buildInputs = [ gdb ]; 58 18 propagatedBuildInputs = [ 59 - flask 60 - flask-socketio' 19 + flask-socketio 61 20 flask-compress 62 21 pygdbmi 63 22 pygments 64 - gevent 65 - gevent-websocket 66 - eventlet 67 23 ]; 68 24 69 25 src = fetchPypi { 70 26 inherit pname version; 71 - sha256 = "1v6wwsncgnhlg5c7gsmzcp52hfblfnz5kf5pk4d0zybflsxak02d"; 27 + sha256 = "sha256-bwrleLn3GBx4Mie2kujtaUo+XCALM+hRLySIZERlBg0="; 72 28 }; 73 29 74 30 postPatch = '' 75 31 echo ${version} > gdbgui/VERSION.txt 76 32 # remove upper version bound 77 - sed -ie 's!, <.*"!"!' setup.py 78 - sed -i 's/greenlet==/greenlet>=/' setup.py 33 + sed -ie 's!,.*<.*!!' requirements.in 79 34 ''; 80 35 81 36 postInstall = ''
+2 -1
pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix
··· 27 27 ]; 28 28 29 29 meta = with lib; { 30 - homepage = "https://github.com/serokell/ocaml-recovery-parser"; 31 30 description = "A simple fork of OCaml parser with support for error recovery"; 31 + homepage = "https://github.com/serokell/ocaml-recovery-parser"; 32 32 license = with licenses; [ lgpl2Only mit mpl20 ]; 33 33 maintainers = with maintainers; [ romildo ]; 34 + mainProgram = "menhir-recover"; 34 35 }; 35 36 }
+1
pkgs/development/tools/ocaml/ocamlscript/default.nix
··· 29 29 inherit (ocaml.meta) platforms; 30 30 description = "Natively-compiled OCaml scripts"; 31 31 maintainers = [ maintainers.vbgl ]; 32 + mainProgram = "ocamlscript"; 32 33 }; 33 34 }
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/default.nix
··· 5 5 }: 6 6 let 7 7 # Poetry2nix version 8 - version = "1.29.0"; 8 + version = "1.29.1"; 9 9 10 10 inherit (poetryLib) isCompatible readTOML moduleName; 11 11
+3
pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
··· 801 801 "notebook-shim": [ 802 802 "jupyter-packaging" 803 803 ], 804 + "notify-py": [ 805 + "poetry-core" 806 + ], 804 807 "notus-scanner": [ 805 808 "poetry-core" 806 809 ],
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix
··· 1891 1891 1892 1892 # Fix library paths 1893 1893 postPatch = old.postPatch or "" + '' 1894 - ${self.python.pythonForBuild.interpreter} ${./shapely-rewrite.py} shapely/geos.py 1894 + ${pkgs.python3.interpreter} ${./shapely-rewrite.py} shapely/geos.py 1895 1895 ''; 1896 1896 } 1897 1897 );
+3 -3
pkgs/development/tools/rust/cargo-expand/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cargo-expand"; 10 - version = "1.0.19"; 10 + version = "1.0.21"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "dtolnay"; 14 14 repo = pname; 15 15 rev = version; 16 - sha256 = "sha256-+LKZ0pbSlqY8rbz96HZ59XYKsSJDMOrJMxblXNj74Yw="; 16 + sha256 = "sha256-hxG7e5JBDv79eA7IQEdU8kpvE0B69Gqc+aPdCoc6Uf4="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-ZEHc67jgLSZV6JH5/owAGTxxnbnYnx2fIUf0mQ14qvg="; 19 + cargoSha256 = "sha256-7CMNJb/HGHPP4CIBEYK+2HC/JAce25qGI86NkSvyxos="; 20 20 21 21 buildInputs = lib.optional stdenv.isDarwin libiconv; 22 22
+2
pkgs/games/blightmud/default.nix
··· 75 75 license = licenses.gpl3Plus; 76 76 maintainers = with maintainers; [ cpu ]; 77 77 platforms = platforms.linux; 78 + # See https://github.com/NixOS/nixpkgs/pull/160120 79 + broken = withTTS; 78 80 }; 79 81 }
+4 -1
pkgs/games/cdogs-sdl/default.nix
··· 26 26 patchShebangs src/proto/nanopb/generator/* 27 27 ''; 28 28 29 - cmakeFlags = [ "-DCDOGS_DATA_DIR=${placeholder "out"}/" ]; 29 + cmakeFlags = [ 30 + "-DCDOGS_DATA_DIR=${placeholder "out"}/" 31 + "-DCMAKE_C_FLAGS=-Wno-error=array-bounds" 32 + ]; 30 33 31 34 nativeBuildInputs = [ 32 35 pkg-config
+3 -5
pkgs/games/osu-lazer/default.nix
··· 31 31 32 32 nativeBuildInputs = [ copyDesktopItems ]; 33 33 34 - preConfigure = '' 35 - dotnetFlags+=( 36 - --runtime linux-x64 37 - ) 38 - ''; 34 + dotnetFlags = [ 35 + "--runtime linux-x64" 36 + ]; 39 37 40 38 runtimeDeps = [ 41 39 ffmpeg
+73
pkgs/games/xivlauncher/default.nix
··· 1 + { lib, buildDotnetModule, fetchFromGitHub, dotnetCorePackages, SDL2, libsecret, glib, gnutls, aria2, steam-run 2 + , copyDesktopItems, makeDesktopItem 3 + , useSteamRun ? true }: 4 + 5 + let 6 + rev = "e6412d9b837bfd71bb413b4c6e5fa52c9ce60a57"; 7 + in 8 + buildDotnetModule rec { 9 + pname = "XIVLauncher"; 10 + version = "1.0.0.4"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "goatcorp"; 14 + repo = "FFXIVQuickLauncher"; 15 + inherit rev; 16 + sha256 = "sha256-seHO/NNJdWhxWRnyjBN7+m1X0JP/qWAMfF86XMhYN/4="; 17 + }; 18 + 19 + nativeBuildInputs = [ copyDesktopItems ]; 20 + 21 + projectFile = "src/XIVLauncher.Core/XIVLauncher.Core.csproj"; 22 + nugetDeps = ./deps.nix; # File generated with `nuget-to-nix path/to/src > deps.nix` 23 + 24 + dotnet-sdk = dotnetCorePackages.sdk_6_0; 25 + dotnet-runtime = dotnetCorePackages.runtime_6_0; 26 + 27 + dotnetFlags = [ 28 + "--runtime linux-x64" 29 + "-p:BuildHash=${rev}" 30 + ]; 31 + 32 + dotnetBuildFlags = [ 33 + "--no-self-contained" 34 + ]; 35 + 36 + postPatch = '' 37 + substituteInPlace src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaHttpPatchAcquisition.cs \ 38 + --replace 'ariaPath = "aria2c"' 'ariaPath = "${aria2}/bin/aria2c"' 39 + ''; 40 + 41 + postInstall = '' 42 + mkdir -p $out/share/pixmaps 43 + cp src/XIVLauncher.Core/Resources/logo.png $out/share/pixmaps/xivlauncher.png 44 + ''; 45 + 46 + postFixup = lib.optionalString useSteamRun '' 47 + substituteInPlace $out/bin/XIVLauncher.Core \ 48 + --replace 'exec' 'exec ${steam-run}/bin/steam-run' 49 + ''; 50 + 51 + executables = [ "XIVLauncher.Core" ]; 52 + 53 + runtimeDeps = [ SDL2 libsecret glib gnutls ]; 54 + 55 + desktopItems = [ 56 + (makeDesktopItem { 57 + name = "xivlauncher"; 58 + exec = "XIVLauncher.Core"; 59 + icon = "xivlauncher"; 60 + desktopName = "XIVLauncher"; 61 + comment = meta.description; 62 + categories = [ "Game" ]; 63 + }) 64 + ]; 65 + 66 + meta = with lib; { 67 + description = "Custom launcher for FFXIV"; 68 + homepage = "https://github.com/goatcorp/FFXIVQuickLauncher"; 69 + license = licenses.gpl3; 70 + maintainers = with maintainers; [ ashkitten ]; 71 + platforms = [ "x86_64-linux" ]; 72 + }; 73 + }
+197
pkgs/games/xivlauncher/deps.nix
··· 1 + { fetchNuGet }: [ 2 + (fetchNuGet { pname = "Castle.Core"; version = "4.4.1"; sha256 = "13dja1jxl5zwhi0ghkgvgmqdrixn57f9hk52jy5vpaaakzr550r7"; }) 3 + (fetchNuGet { pname = "CheapLoc"; version = "1.1.6"; sha256 = "1m6cgx9yh7h3vrq2d4f99xyvsxc9jvz8zjq1q14qgylfmyq4hx4l"; }) 4 + (fetchNuGet { pname = "Config.Net"; version = "4.19.0"; sha256 = "17iv0vy0693s6d8626lbz3w1ppn5abn77aaki7h4qi4izysizgim"; }) 5 + (fetchNuGet { pname = "Downloader"; version = "2.2.8"; sha256 = "0farwh3pc6m8hsgqywigdpcb4gr2m9myyxm2idzjmhhkzfqghj28"; }) 6 + (fetchNuGet { pname = "Facepunch.Steamworks"; version = "2.3.3"; sha256 = "1r3m7cyzfy8ms9xxfa13xcwha02yk22givkaamw166im89m8wqyc"; }) 7 + (fetchNuGet { pname = "goaaats.NativeLibraryLoader"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "1bjjgsw4ry9cz8dzsgwx428hn06wms194pqz8nclwrqcwfx7gmxk"; }) 8 + (fetchNuGet { pname = "goaaats.Veldrid"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "0b35bn4190hxbvrwsygpbpg00gnrj6crxyk8b0d7ian611v4jj0m"; }) 9 + (fetchNuGet { pname = "goaaats.Veldrid.ImageSharp"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "1zihi2n9qz18kfkz4qnj3412bfsqvx49809hqkknixdrgn8323i2"; }) 10 + (fetchNuGet { pname = "goaaats.Veldrid.MetalBindings"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "13cs5jr8bpkrkzziz8b71l3npr14shxryrpsiw0zm7jcx69vg2qf"; }) 11 + (fetchNuGet { pname = "goaaats.Veldrid.OpenGLBindings"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "1p7gv2234r3f1pskcr1ah7p3ak6zn1rrmvxy5xqc9d5y4zdrnzlb"; }) 12 + (fetchNuGet { pname = "goaaats.Veldrid.SDL2"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "14xj3z0yc25vq17bvv2193cbqxj7k9iimxbaqk2rpvlpmrbg20xi"; }) 13 + (fetchNuGet { pname = "goaaats.Veldrid.StartupUtilities"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "03r3x9h0fyb07d6d28ny6r5s688m50xc0lgc6zf2cy684kfnvmp5"; }) 14 + (fetchNuGet { pname = "ImGui.NET"; version = "1.87.2"; sha256 = "0rv0n18fvz1gbh45crhzn1f8xw8zkc8qyiyj91vajjcry8mq1x7q"; }) 15 + (fetchNuGet { pname = "KeySharp"; version = "1.0.4"; sha256 = "1xkgrsm0h4ycbc7qnj0dzknx0rqlx3168vrdrdgsi30xki02z323"; }) 16 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.4"; sha256 = "1fvv5ri32pbl43628zqnim6fbv6hjxf66p0v793xdh57dzkdyh0j"; }) 17 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.3"; sha256 = "09m4cpry8ivm9ga1abrxmvw16sslxhy2k5sl14zckhqb1j164im6"; }) 18 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.3"; sha256 = "1z6x0d8lpcfjr3sxy25493i17vvcg5bsay6c03qan6mnj5aqzw2k"; }) 19 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.0.1"; sha256 = "0axjv1nhk1z9d4c51d9yxdp09l8yqqnqaifhqcwnxnv0r4y5cka9"; }) 20 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.0.1"; sha256 = "1h6jfifg7pw2vacpdds4v4jqnaydg9b108irf315wzx6rh8yv9cb"; }) 21 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.NetAnalyzers"; version = "6.0.0"; sha256 = "06zy947m5lrbwb684g42ijb07r5jsqycvfnphc6cqfdrfnzqv6k9"; }) 22 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.4"; sha256 = "1gibwhplbanv6bz3l71w8vhzlgqsh21bms30dbf1n60v7p02fl3h"; }) 23 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 24 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 25 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; }) 26 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 27 + (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 28 + (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "6.0.0-preview.5.21301.5"; sha256 = "02712s86n2i8s5j6vxdayqwcc7r538yw3frhf1gfrc6ah6hvqnzc"; }) 29 + (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "6.0.0"; sha256 = "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p"; }) 30 + (fetchNuGet { pname = "Mono.Cecil"; version = "0.9.6.1"; sha256 = "1fr7969h5q611l5227xw6nvv5rzap76vbpk0wg9hxbcxk3hn7szf"; }) 31 + (fetchNuGet { pname = "Mono.Nat"; version = "3.0.1"; sha256 = "1xy3c9wsiz8k3rx8v60y6gnps337rsb5jpyj0r6g384prg6z4vh0"; }) 32 + (fetchNuGet { pname = "MonoTorrent"; version = "2.0.0"; sha256 = "016cbjsy1gp60g6w0mdya11ky3lfr3scg20k1p7lglbnzv7ixycq"; }) 33 + (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; }) 34 + (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.3"; sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y"; }) 35 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "12.0.2"; sha256 = "0w2fbji1smd2y7x25qqibf1qrznmv4s6s0jvrbvr6alb7mfyqvh5"; }) 36 + (fetchNuGet { pname = "ReusableTasks"; version = "2.0.0"; sha256 = "0qag69n8kx164minz3h50g6f7cdq15r89vikcd1llbkdwq4qldaa"; }) 37 + (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 38 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; }) 39 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) 40 + (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; }) 41 + (fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; }) 42 + (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; }) 43 + (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; }) 44 + (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; }) 45 + (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; }) 46 + (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; }) 47 + (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; }) 48 + (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; }) 49 + (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; }) 50 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; }) 51 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; }) 52 + (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; }) 53 + (fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; }) 54 + (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; }) 55 + (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; }) 56 + (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; }) 57 + (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; }) 58 + (fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; sha256 = "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d"; }) 59 + (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; }) 60 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q"; }) 61 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; }) 62 + (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3"; }) 63 + (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf"; }) 64 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi"; }) 65 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3"; }) 66 + (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn"; }) 67 + (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3"; }) 68 + (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; }) 69 + (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; }) 70 + (fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id"; }) 71 + (fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; sha256 = "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80"; }) 72 + (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; }) 73 + (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; }) 74 + (fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; sha256 = "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4"; }) 75 + (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; }) 76 + (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 77 + (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 78 + (fetchNuGet { pname = "Serilog"; version = "2.10.0"; sha256 = "08bih205i632ywryn3zxkhb15dwgyaxbhmm1z3b5nmby9fb25k7v"; }) 79 + (fetchNuGet { pname = "Serilog"; version = "2.9.0"; sha256 = "0z0ib82w9b229a728bbyhzc2hnlbl0ki7nnvmgnv3l741f2vr4i6"; }) 80 + (fetchNuGet { pname = "Serilog.Enrichers.Thread"; version = "3.1.0"; sha256 = "1y75aiv2k1sxnh012ixkx92fq1yl8srqggy8l439igg4p223hcqi"; }) 81 + (fetchNuGet { pname = "Serilog.Sinks.Async"; version = "1.4.0"; sha256 = "00kqrn3xmfzg469y155vihsiby8dbbs382fi6qg8p2zg3i5dih1d"; }) 82 + (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "3.1.1"; sha256 = "0j99as641y1k6havwwkhyr0n08vibiblmfjj6nz051mz8g3864fn"; }) 83 + (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "4.0.1"; sha256 = "080vh9kcyn9lx4j7p34146kp9byvhqlaz5jn9wzx70ql9cwd0hlz"; }) 84 + (fetchNuGet { pname = "Serilog.Sinks.Debug"; version = "1.0.1"; sha256 = "0969mb254kr59bgkq01ybyzca89z3f4n9ng5mdj8m53d5653zf22"; }) 85 + (fetchNuGet { pname = "Serilog.Sinks.File"; version = "4.1.0"; sha256 = "1ry7p9hf1zlnai1j5zjhjp4dqm2agsbpq6cvxgpf5l8m26x6mgca"; }) 86 + (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0"; sha256 = "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q"; }) 87 + (fetchNuGet { pname = "SharedMemory"; version = "2.3.2"; sha256 = "078qaab0j8p2fjcc9n7r4sr5pr7567a9bspfiikkc85bsx7vfm8w"; }) 88 + (fetchNuGet { pname = "SharpGen.Runtime"; version = "2.0.0-beta.10"; sha256 = "0yxq0b4m96z71afc7sywfrlwz2pgr5nilacmssjk803v70f0ydr1"; }) 89 + (fetchNuGet { pname = "SharpGen.Runtime.COM"; version = "2.0.0-beta.10"; sha256 = "1qvpphja72x9r3yi96bnmwwy30b1n155v2yy2gzlxjil6qg3xjmb"; }) 90 + (fetchNuGet { pname = "SixLabors.ImageSharp"; version = "1.0.4"; sha256 = "0fmgn414my76gjgp89qlc210a0lqvnvkvk2fcwnpwxdhqpfvyilr"; }) 91 + (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; }) 92 + (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 93 + (fetchNuGet { pname = "System.Buffers"; version = "4.4.0"; sha256 = "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19"; }) 94 + (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; sha256 = "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3"; }) 95 + (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 96 + (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; }) 97 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; sha256 = "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r"; }) 98 + (fetchNuGet { pname = "System.Collections.NonGeneric"; version = "4.3.0"; sha256 = "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k"; }) 99 + (fetchNuGet { pname = "System.Collections.Specialized"; version = "4.3.0"; sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20"; }) 100 + (fetchNuGet { pname = "System.ComponentModel"; version = "4.3.0"; sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb"; }) 101 + (fetchNuGet { pname = "System.ComponentModel.Primitives"; version = "4.3.0"; sha256 = "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0"; }) 102 + (fetchNuGet { pname = "System.ComponentModel.TypeConverter"; version = "4.3.0"; sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x"; }) 103 + (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "6.0.0"; sha256 = "0sqapr697jbb4ljkq46msg0xx1qpmc31ivva6llyz2wzq3mpmxbw"; }) 104 + (fetchNuGet { pname = "System.Console"; version = "4.3.0"; sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; }) 105 + (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; }) 106 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; }) 107 + (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; }) 108 + (fetchNuGet { pname = "System.Diagnostics.TraceSource"; version = "4.3.0"; sha256 = "1kyw4d7dpjczhw6634nrmg7yyyzq72k75x38y0l0nwhigdlp1766"; }) 109 + (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; }) 110 + (fetchNuGet { pname = "System.Drawing.Common"; version = "6.0.0"; sha256 = "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz"; }) 111 + (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; }) 112 + (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 113 + (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; }) 114 + (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; }) 115 + (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 116 + (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 117 + (fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; }) 118 + (fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; sha256 = "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar"; }) 119 + (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; }) 120 + (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; }) 121 + (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.0.1"; sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; }) 122 + (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; }) 123 + (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 124 + (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; }) 125 + (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; }) 126 + (fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; }) 127 + (fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; }) 128 + (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; }) 129 + (fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; }) 130 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.4.0"; sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba"; }) 131 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; sha256 = "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59"; }) 132 + (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; }) 133 + (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; }) 134 + (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; }) 135 + (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; }) 136 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; }) 137 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.7.0"; sha256 = "0l8jpxhpgjlf1nkz5lvp61r4kfdbhr29qi8aapcxn3izd9wd0j8r"; }) 138 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; }) 139 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.7.0"; sha256 = "0mbjfajmafkca47zr8v36brvknzks5a7pgb49kfq2d188pyv6iap"; }) 140 + (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; }) 141 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "5.0.0"; sha256 = "17qsl5nanlqk9iz0l5wijdn6ka632fs1m1fvx18dfgswm258r3ss"; }) 142 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 143 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; }) 144 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; }) 145 + (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; }) 146 + (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 147 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.4.0"; sha256 = "0a6ahgi5b148sl5qyfpyw383p3cb4yrkm802k29fsi4mxkiwir29"; }) 148 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.0"; sha256 = "17labczwqk3jng3kkky73m0jhi8wc21vbl7cz5c0hj2p1dswin43"; }) 149 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.3"; sha256 = "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln"; }) 150 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; sha256 = "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x"; }) 151 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 152 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 153 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) 154 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; }) 155 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; }) 156 + (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii"; }) 157 + (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; }) 158 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0"; sha256 = "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58"; }) 159 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0-preview.5.21301.5"; sha256 = "131f3z3ikv3n8442chr11nj4x46amq00mb53pb2ds42dabldkdgy"; }) 160 + (fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; }) 161 + (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; }) 162 + (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; }) 163 + (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; sha256 = "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1"; }) 164 + (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; }) 165 + (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; }) 166 + (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; }) 167 + (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "6.0.0"; sha256 = "05kd3a8w7658hjxq9vvszxip30a479fjmfq4bq1r95nrsvs4hbss"; }) 168 + (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; }) 169 + (fetchNuGet { pname = "System.Security.Permissions"; version = "6.0.0"; sha256 = "0jsl4xdrkqi11iwmisi1r2f2qn5pbvl79mzq877gndw6ans2zhzw"; }) 170 + (fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; }) 171 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; }) 172 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "6.0.0-preview.5.21301.5"; sha256 = "1q3iikvjcfrm5p89p1j7qlw1szvryq680qypk023wgy9phmlwi57"; }) 173 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 174 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 175 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 176 + (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 177 + (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 178 + (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; }) 179 + (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; }) 180 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; }) 181 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; }) 182 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; }) 183 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; sha256 = "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153"; }) 184 + (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; }) 185 + (fetchNuGet { pname = "System.Threading.Timer"; version = "4.0.1"; sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; }) 186 + (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; }) 187 + (fetchNuGet { pname = "System.Windows.Extensions"; version = "6.0.0"; sha256 = "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip"; }) 188 + (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; }) 189 + (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; }) 190 + (fetchNuGet { pname = "System.Xml.XmlDocument"; version = "4.3.0"; sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; }) 191 + (fetchNuGet { pname = "Vk"; version = "1.0.25"; sha256 = "18kx3g088215803yznnmf6621wgwvgakj8hlmrb726b7zwb3x53l"; }) 192 + (fetchNuGet { pname = "Vortice.D3DCompiler"; version = "2.1.0"; sha256 = "1ikw4k40m1vhl6q3v4lacbvmz09prqkk8zz0dms49hxjrpi0gfdh"; }) 193 + (fetchNuGet { pname = "Vortice.Direct3D11"; version = "2.1.0"; sha256 = "05hzmkk32agbk2617yhv3wm1zjkv25w57395an4vkp14rvsz82vf"; }) 194 + (fetchNuGet { pname = "Vortice.DirectX"; version = "2.1.0"; sha256 = "0mv3p7rs2p9rh4vylz24gmiqj0q63rmfa7mjvsqk1j1zlrkyyhlk"; }) 195 + (fetchNuGet { pname = "Vortice.DXGI"; version = "2.1.0"; sha256 = "1d7rmqf7q287w3l7clfvp66kd0giy4n6087n9r8jj0w5r65416ls"; }) 196 + (fetchNuGet { pname = "Vortice.Mathematics"; version = "1.3.24"; sha256 = "1fqni3lhaxddpdz060zbjjhkn5fgg7458ajxfrj3df3wjbld3bc3"; }) 197 + ]
+6
pkgs/misc/drivers/foomatic-filters/default.nix
··· 25 25 substituteInPlace foomaticrip.c --replace /bin/bash ${stdenv.shell} 26 26 ''; 27 27 28 + # Workaround build failure on -fno-common toolchains like upstream 29 + # gcc-10. Otherwise build fails as: 30 + # ld: foomatic_rip-options.o:/build/foomatic-filters-4.0.17/options.c:49: multiple definition of 31 + # `cupsfilter'; foomatic_rip-foomaticrip.o:/build/foomatic-filters-4.0.17/foomaticrip.c:158: first defined here 32 + NIX_CFLAGS_COMPILE = "-fcommon"; 33 + 28 34 installTargets = [ "install-cups" ]; 29 35 30 36 installFlags = [
+2 -2
pkgs/os-specific/darwin/goku/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "goku"; 9 - version = "0.5.1"; 9 + version = "0.5.2"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku.zip"; 13 - sha256 = "7c9304a5b4265575ca154bc0ebc04fcf812d14981775966092946cf82f65c782"; 13 + sha256 = "506eccdabedc68c112778b13ded65099327267c2e3fd488916e3a340bc312954"; 14 14 }; 15 15 16 16 nativeBuildInputs = [
+2 -2
pkgs/os-specific/linux/dpdk/default.nix
··· 9 9 10 10 let 11 11 mod = kernel != null; 12 - dpdkVersion = "21.11"; 12 + dpdkVersion = "22.03"; 13 13 in stdenv.mkDerivation rec { 14 14 pname = "dpdk"; 15 15 version = "${dpdkVersion}" + lib.optionalString mod "-${kernel.version}"; 16 16 17 17 src = fetchurl { 18 18 url = "https://fast.dpdk.org/rel/dpdk-${dpdkVersion}.tar.xz"; 19 - sha256 = "sha256-Mkbj7WjuKzaaXYviwGzxCKZp4Vf01Bxby7sha/Wr06E="; 19 + sha256 = "sha256-st5fCLzVcz+Q1NfmwDJRWQja2PyNJnrGolNELZuDp8U="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix
··· 14 14 sourceRoot = "."; 15 15 16 16 installPhase = '' 17 - mkdir $out 18 - b43-fwcutter -w $out *.wl_apsta.o 17 + mkdir -p $out/lib/firmware 18 + b43-fwcutter -w $out/lib/firmware *.wl_apsta.o 19 19 ''; 20 20 21 21 meta = with lib; {
+2
pkgs/os-specific/linux/kernel/common-config.nix
··· 883 883 # Disable the firmware helper fallback, udev doesn't implement it any more 884 884 FW_LOADER_USER_HELPER_FALLBACK = option no; 885 885 886 + FW_LOADER_COMPRESS = option yes; 887 + 886 888 HOTPLUG_PCI_ACPI = yes; # PCI hotplug using ACPI 887 889 HOTPLUG_PCI_PCIE = yes; # PCI-Expresscard hotplug support 888 890
+33 -6
pkgs/os-specific/linux/sysdig/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, kernel, installShellFiles, pkg-config 2 2 , luajit, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, elfutils, tbb, protobuf, grpc 3 + , libyamlcpp, nlohmann_json 3 4 }: 4 5 5 6 with lib; 6 7 let 7 8 # Compare with https://github.com/draios/sysdig/blob/dev/cmake/modules/falcosecurity-libs.cmake 8 - libsRev = "2160111cd088aea9ae2235d3385ecb0b1ab6623c"; 9 - libsSha256 = "sha256-TOuxXtrxujyAjzAtlX3/eCfM16mwxnmZ6Wg44SG0dTs="; 9 + libsRev = "e5c53d648f3c4694385bbe488e7d47eaa36c229a"; 10 + libsSha256 = "sha256-pG10y5PpDqaF/cq8oAvax5B/ls2UTRQd7tCfBjWVf0U="; 11 + 12 + # Compare with https://github.com/falcosecurity/libs/blob/master/cmake/modules/valijson.cmake#L17 13 + valijson = fetchFromGitHub { 14 + owner = "tristanpenman"; 15 + repo = "valijson"; 16 + rev = "v0.6"; 17 + sha256 = "sha256-ZD19Q2MxMQd3yEKbY90GFCrerie5/jzgO8do4JQDoKM="; 18 + }; 19 + 10 20 in 11 21 stdenv.mkDerivation rec { 12 22 pname = "sysdig"; 13 - version = "0.28.0"; 23 + version = "0.29.3"; 14 24 15 25 src = fetchFromGitHub { 16 26 owner = "draios"; 17 27 repo = "sysdig"; 18 28 rev = version; 19 - sha256 = "sha256-oE3vCmOw+gcmvGqj7Xk5injpNC/YThckJMNg5XRFhME="; 29 + sha256 = "sha256-dMLeroOd9CgvmgQdPfX8oBxQSyksZi/hP4vO03JhlF0="; 20 30 }; 21 31 22 32 nativeBuildInputs = [ cmake perl installShellFiles pkg-config ]; 23 33 buildInputs = [ 24 - luajit ncurses jsoncpp libb64 openssl curl jq gcc elfutils tbb protobuf grpc 34 + luajit 35 + ncurses 36 + libb64 37 + openssl 38 + curl 39 + jq 40 + gcc 41 + elfutils 42 + tbb 43 + protobuf 44 + grpc 45 + libyamlcpp 46 + jsoncpp 47 + nlohmann_json 25 48 ] ++ optionals (kernel != null) kernel.moduleBuildDependencies; 26 49 27 50 hardeningDisable = [ "pic" ]; ··· 34 57 sha256 = libsSha256; 35 58 }} libs 36 59 chmod -R +w libs 37 - cmakeFlagsArray+=("-DFALCOSECURITY_LIBS_SOURCE_DIR=$(pwd)/libs") 60 + cmakeFlagsArray+=("-DFALCOSECURITY_LIBS_SOURCE_DIR=$(pwd)/libs" "-DVALIJSON_INCLUDE=${valijson}/include") 38 61 ''; 39 62 40 63 cmakeFlags = [ ··· 47 70 NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg -DluaL_getn(L,i)=((int)lua_objlen(L,i))"; 48 71 49 72 preConfigure = '' 73 + if ! grep -q "${libsRev}" cmake/modules/falcosecurity-libs.cmake; then 74 + echo "falcosecurity-libs checksum needs to be updated!" 75 + exit 1 76 + fi 50 77 cmakeFlagsArray+=(-DCMAKE_EXE_LINKER_FLAGS="-ltbb -lcurl -labsl_synchronization") 51 78 '' + optionalString (kernel != null) '' 52 79 export INSTALL_MOD_PATH="$out"
+5 -8
pkgs/servers/http/trafficserver/default.nix
··· 50 50 51 51 stdenv.mkDerivation rec { 52 52 pname = "trafficserver"; 53 - version = "9.1.1"; 53 + version = "9.1.2"; 54 54 55 55 src = fetchzip { 56 56 url = "mirror://apache/trafficserver/trafficserver-${version}.tar.bz2"; 57 - sha256 = "sha256-oicRqKFE6hOpcNG9o3BmrMujtEzi4hrPhBWaljOW+VI="; 57 + sha256 = "sha256-eRpyTdwwO5EzrVpt9fF6VEYGZjHb905nQJd065wY5RU="; 58 58 }; 59 59 60 60 patches = [ ··· 65 65 sha256 = "0z1ikgpp00rzrrcqh97931586yn9wbksgai9xlkcjd5cg8gq0150"; 66 66 }) 67 67 68 - # Fix build against ncurses-6.3: 69 - # https://github.com/apache/trafficserver/pull/8437 70 - (fetchpatch { 71 - url = "https://github.com/apache/trafficserver/commit/66c86c6b082903a92b9db33c60e3ed947e77d540.patch"; 72 - sha256 = "1hgpp80xnnjr4k5i6gcllrb7dw4q4xcdrkwxpc1xk2np5cbyxd16"; 73 - }) 68 + ./fix-catch2-version-incompatibility.patch 74 69 ]; 75 70 76 71 # NOTE: The upstream README indicates that flex is needed for some features, ··· 115 110 116 111 substituteInPlace configure --replace '/usr/bin/file' '${file}/bin/file' 117 112 113 + # TODO: remove after the following change has been released 114 + # https://github.com/apache/trafficserver/pull/8683 118 115 cp ${catch2}/include/catch2/catch.hpp tests/include/catch.hpp 119 116 '' + lib.optionalString stdenv.isLinux '' 120 117 substituteInPlace configure \
+43
pkgs/servers/http/trafficserver/fix-catch2-version-incompatibility.patch
··· 1 + diff --git a/src/tscore/unit_tests/test_History.cc b/src/tscore/unit_tests/test_History.cc 2 + index 3e699139da0..7505f10aa4c 100644 3 + --- a/src/tscore/unit_tests/test_History.cc 4 + +++ b/src/tscore/unit_tests/test_History.cc 5 + @@ -59,10 +59,10 @@ TEST_CASE("History", "[libts][History]") 6 + REQUIRE(history[2].reentrancy == static_cast<short>(NO_REENTRANT)); 7 + 8 + history[0].location.str(buf, sizeof(buf)); 9 + - REQUIRE(string_view{buf} == "test_History.cc:48 (____C_A_T_C_H____T_E_S_T____0)"); 10 + + REQUIRE(string_view{buf} == "test_History.cc:48 (C_A_T_C_H_T_E_S_T_0)"); 11 + 12 + history[1].location.str(buf, sizeof(buf)); 13 + - REQUIRE(string_view{buf} == "test_History.cc:49 (____C_A_T_C_H____T_E_S_T____0)"); 14 + + REQUIRE(string_view{buf} == "test_History.cc:49 (C_A_T_C_H_T_E_S_T_0)"); 15 + 16 + ts::LocalBufferWriter<128> w; 17 + SM<HISTORY_DEFAULT_SIZE> *sm = new SM<HISTORY_DEFAULT_SIZE>; 18 + @@ -71,10 +71,10 @@ TEST_CASE("History", "[libts][History]") 19 + SM_REMEMBER(sm, 3, NO_REENTRANT); 20 + 21 + w.print("{}", sm->history[0].location); 22 + - REQUIRE(w.view() == "test_History.cc:69 (____C_A_T_C_H____T_E_S_T____0)"); 23 + + REQUIRE(w.view() == "test_History.cc:69 (C_A_T_C_H_T_E_S_T_0)"); 24 + 25 + w.reset().print("{}", sm->history[1].location); 26 + - REQUIRE(w.view() == "test_History.cc:70 (____C_A_T_C_H____T_E_S_T____0)"); 27 + + REQUIRE(w.view() == "test_History.cc:70 (C_A_T_C_H_T_E_S_T_0)"); 28 + 29 + REQUIRE(sm->history[0].event == 1); 30 + REQUIRE(sm->history[0].reentrancy == 1); 31 + @@ -106,10 +106,10 @@ TEST_CASE("History", "[libts][History]") 32 + REQUIRE(sm2->history.overflowed() == true); 33 + 34 + w.reset().print("{}", sm2->history[0].location); 35 + - REQUIRE(w.view() == "test_History.cc:103 (____C_A_T_C_H____T_E_S_T____0)"); 36 + + REQUIRE(w.view() == "test_History.cc:103 (C_A_T_C_H_T_E_S_T_0)"); 37 + 38 + w.reset().print("{}", sm2->history[1].location); 39 + - REQUIRE(w.view() == "test_History.cc:98 (____C_A_T_C_H____T_E_S_T____0)"); 40 + + REQUIRE(w.view() == "test_History.cc:98 (C_A_T_C_H_T_E_S_T_0)"); 41 + 42 + sm2->history.clear(); 43 + REQUIRE(sm2->history.size() == 0);
+3 -3
pkgs/servers/minio/default.nix
··· 15 15 in 16 16 buildGoModule rec { 17 17 pname = "minio"; 18 - version = "2022-03-22T02-05-10Z"; 18 + version = "2022-05-08T23-50-31Z"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "minio"; 22 22 repo = "minio"; 23 23 rev = "RELEASE.${version}"; 24 - sha256 = "sha256-N0ua+XHkLr33PElSdOzVQF3POPU+lx4/M6LJzxtkisI="; 24 + sha256 = "sha256-Ssuqk/ax6MWdXtbJqWeTTtsIiTK4FmYSR5rOqxh+IaU="; 25 25 }; 26 26 27 - vendorSha256 = "sha256-Ql3J2r489Hzhy6E9uZwQXJIw/njb5oafCYjOyWGzbXs="; 27 + vendorSha256 = "sha256-JoI3B3rDzlY0lDHF3rjrzv8/Rq+XCFRs35bWVZqfAKA="; 28 28 29 29 doCheck = false; 30 30
+8 -4
pkgs/servers/misc/virtiofsd/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }: 1 + { lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "virtiofsd"; 5 - version = "1.1.0"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitLab { 8 8 owner = "virtio-fs"; 9 9 repo = "virtiofsd"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-WB0zu2M/5enBOoOUUSXnNAkbsA+JzDgtoLncE1YcDLs="; 11 + sha256 = "161z88nx2x2j4q8fbxryv7v63f9aw7wpvl6vg6x4xzllnrw6p607"; 12 12 }; 13 13 14 - cargoSha256 = "sha256-uRPmZE/xc0yeurBZ4rnrZua5d4lbPwStMUacFgbquuk="; 14 + cargoSha256 = "0ma3kaaa4bl11015gxijwzyxhixz947k8byaypmmw0dj9m1vhv77"; 15 + 16 + LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib"; 17 + LIBCAPNG_LINK_TYPE = 18 + if stdenv.hostPlatform.isStatic then "static" else "dylib"; 15 19 16 20 buildInputs = [ libcap_ng libseccomp ]; 17 21
+12 -4
pkgs/servers/monitoring/grafana/default.nix
··· 1 - { lib, buildGoModule, fetchurl, fetchFromGitHub, nixosTests, tzdata, wire }: 1 + { lib, buildGoModule, fetchurl, fetchFromGitHub, nixosTests, tzdata, wire, fetchpatch }: 2 2 3 3 buildGoModule rec { 4 4 pname = "grafana"; 5 - version = "8.5.1"; 5 + version = "8.5.2"; 6 6 7 7 excludedPackages = [ "alert_webhook_listener" "clean-swagger" "release_publisher" "slow_proxy" "slow_proxy_mac" "macaron" ]; 8 8 ··· 10 10 rev = "v${version}"; 11 11 owner = "grafana"; 12 12 repo = "grafana"; 13 - sha256 = "sha256-GwvJA+lcbUuVbzniDW6gYbxQO5uXSP6rjzgmcJ5YYxk="; 13 + sha256 = "sha256-9m6fu+wwmKpw/ehAIfgLe5YzOqTP3BC6/9mUgLL9XS0="; 14 14 }; 15 15 16 16 srcStatic = fetchurl { 17 17 url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz"; 18 - sha256 = "030zl5k8b4hcay06a2lvlmq8swbix88ii4gz9yd4kywcjy5vhnyf"; 18 + sha256 = "1gq0wyqpgc7crbz8cd4dnwixhx7chnmbl2di4zcqs26g8y30q7rj"; 19 19 }; 20 + 21 + patches = [ 22 + # skip a flaky test, remove on the next update 23 + (fetchpatch { 24 + url = "https://github.com/grafana/grafana/commit/9e3a01a1bea3f4d5d99e53d55128d79160610349.patch"; 25 + sha256 = "sha256-rzZxNLn074JBb4DW3QC1zWNGe1uLGIlXvnjh60e8B3Q="; 26 + }) 27 + ]; 20 28 21 29 vendorSha256 = "sha256-ZL+A6Sz0uHg7ZzYHmA4EU5ZxfRXBLyKglk135iQT600="; 22 30
+7 -1
pkgs/servers/redpanda/default.nix
··· 4 4 version = "21.11.15"; 5 5 platform = if stdenv.isLinux then "linux" else "darwin"; 6 6 arch = if stdenv.isAarch64 then "arm" else "amd"; 7 + sha256s = { 8 + darwin.amd = "sha256-Yf4O7lVcf+nmb0wFTx7jLjUSmdAItoUfPlkhHveI9UY="; 9 + darwin.arm = "sha256-vKfFBheDZtvcbg0zbj3rqUEQczZvySuGuM3RopnDJG8="; 10 + linux.amd = "sha256:0vpxn7kcpqylk0nc74m6yxgwwf8ns8pyb6kxnmnmv2x58f8x4c8n"; 11 + linux.arm = "sha256-1AQSB2V5zGivU0UinTST2kOydQf/bmLbpjdW0Yo4ptE="; 12 + }; 7 13 in stdenv.mkDerivation rec { 8 14 pname = "redpanda"; 9 15 inherit version; 10 16 11 17 src = fetchzip { 12 18 url = "https://github.com/redpanda-data/redpanda/releases/download/v${version}/rpk-${platform}-${arch}64.zip"; 13 - sha256 = "sha256-Yf4O7lVcf+nmb0wFTx7jLjUSmdAItoUfPlkhHveI9UY="; 19 + sha256 = sha256s.${platform}.${arch}; 14 20 }; 15 21 16 22 installPhase = ''
+3 -3
pkgs/servers/sonarr/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sonarr"; 5 - version = "3.0.7.1477"; 5 + version = "3.0.8.1507"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.sonarr.tv/v3/main/${version}/Sonarr.main.${version}.linux.tar.gz"; 9 - sha256 = "sha256-xB7kWWxx+ymBxyxBzwY7gZfw9kMHi2MSsrUp8GIOiws="; 9 + sha256 = "sha256-O2UvU1juO54gb9LVnEuIXhT0Ux2rEIq2WdmsoWVDh1w="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; ··· 25 25 ''; 26 26 27 27 passthru = { 28 - updateScript = "./update.sh"; 28 + updateScript = ./update.sh; 29 29 tests.smoke-test = nixosTests.sonarr; 30 30 }; 31 31
+2 -2
pkgs/servers/sql/postgresql/ext/plpgsql_check.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "plpgsql_check"; 5 - version = "2.1.3"; 5 + version = "2.1.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okbob"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hVbx1eUrVQ35UzcokoqYCi6RFI5Dn7t9XH8q9VbyDbQ="; 11 + sha256 = "sha256-DYdZuHraecQZ33xHX6ugiUJVfFVAayD2spIQt2Qqa5U="; 12 12 }; 13 13 14 14 buildInputs = [ postgresql ];
+18
pkgs/servers/x11/xorg/overrides.nix
··· 15 15 malloc0ReturnsNullCrossFlag = lib.optional 16 16 (stdenv.hostPlatform != stdenv.buildPlatform) 17 17 "--enable-malloc0returnsnull"; 18 + 19 + brokenOnDarwin = pkg: pkg.overrideAttrs (attrs: { 20 + meta = attrs.meta // { broken = isDarwin; }; 21 + }); 18 22 in 19 23 self: super: 20 24 { ··· 388 392 configureFlags = [ 389 393 "--with-sdkdir=${placeholder "out"}/include/xorg" 390 394 ]; 395 + meta = attrs.meta // { 396 + broken = isDarwin; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86inputmouse.x86_64-darwin 397 + }; 391 398 }); 392 399 393 400 xf86inputjoystick = super.xf86inputjoystick.overrideAttrs (attrs: { 394 401 configureFlags = [ 395 402 "--with-sdkdir=${placeholder "out"}/include/xorg" 396 403 ]; 404 + meta = attrs.meta // { 405 + broken = isDarwin; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86inputjoystick.x86_64-darwin 406 + }; 397 407 }); 408 + 409 + xf86inputkeyboard = brokenOnDarwin super.xf86inputkeyboard; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86inputkeyboard.x86_64-darwin 398 410 399 411 xf86inputlibinput = super.xf86inputlibinput.overrideAttrs (attrs: { 400 412 outputs = [ "out" "dev" ]; ··· 422 434 platforms = ["i686-linux" "x86_64-linux"]; 423 435 }; 424 436 }); 437 + 438 + xf86inputvoid = brokenOnDarwin super.xf86inputvoid; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86inputvoid.x86_64-darwin 439 + xf86videodummy = brokenOnDarwin super.xf86videodummy; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86videodummy.x86_64-darwin 440 + xf86videosuncg6 = brokenOnDarwin super.xf86videosuncg6; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86videosuncg6.x86_64-darwin 441 + xf86videosunffb = brokenOnDarwin super.xf86videosunffb; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86videosunffb.x86_64-darwin 442 + xf86videosunleo = brokenOnDarwin super.xf86videosunleo; # never worked: https://hydra.nixos.org/job/nixpkgs/trunk/xorg.xf86videosunleo.x86_64-darwin 425 443 426 444 # Obsolete drivers that don't compile anymore. 427 445 xf86videoark = super.xf86videoark.overrideAttrs (attrs: { meta = attrs.meta // { broken = true; }; });
+2 -2
pkgs/shells/mksh/default.nix
··· 10 10 11 11 src = fetchurl { 12 12 urls = [ 13 - "https://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz" 13 + "http://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz" 14 14 "http://pub.allbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz" 15 15 ]; 16 16 hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY="; ··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 + homepage = "http://www.mirbsd.org/mksh.htm"; 41 42 description = "MirBSD Korn Shell"; 42 43 longDescription = '' 43 44 The MirBSD Korn Shell is a DFSG-free and OSD-compliant (and OSI ··· 46 47 also to be readily available under other UNIX(R)-like operating 47 48 systems. 48 49 ''; 49 - homepage = "https://www.mirbsd.org/mksh.htm"; 50 50 license = with licenses; [ miros isc unicode-dfs-2016 ]; 51 51 maintainers = with maintainers; [ AndersonTorres joachifm ]; 52 52 platforms = platforms.unix;
+3 -3
pkgs/tools/admin/eksctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "eksctl"; 5 - version = "0.96.0"; 5 + version = "0.97.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-AmwkWFhoGRBWrEhRlTRLGRu79ayWceszZi2hgx388Eg="; 11 + sha256 = "sha256-WqYal+SDJNBCYc4vxUvYUXnKtmlV/ttfeQKAeOsy5lE="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-akFclhx6c18u3z2oa6EvLd2NwkVCgJrYWv8Vbp1hZ9g="; 14 + vendorSha256 = "sha256-0uur+L4bSVn6S8yBbdjIdMIgTY4pbQzVPGEVDgYISuw="; 15 15 16 16 doCheck = false; 17 17
+3 -6
pkgs/tools/archivers/arc_unpacker/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "arc_unpacker"; 6 - version = "unstable-2021-05-17"; 6 + version = "unstable-2021-08-06"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "vn-tools"; 10 10 repo = "arc_unpacker"; 11 - # Since the latest release (0.11) doesn't build, we've opened an upstream 12 - # issue in https://github.com/vn-tools/arc_unpacker/issues/187 to ask if a 13 - # a new release is upcoming 14 - rev = "9c2781fcf3ead7641e873b65899f6abeeabb2fc8"; 15 - sha256 = "1xxrc9nww0rla3yh10z6glv05ax4rynwwbd0cdvkp7gyqzrv97xp"; 11 + rev = "456834ecf2e5686813802c37efd829310485c57d"; 12 + hash = "sha256-STbdWH7Mr3gpOrZvujblYrIIKEWBHzy1/BaNuh4teI8="; 16 13 }; 17 14 18 15 nativeBuildInputs = [ cmake makeWrapper catch2 ];
+3 -4
pkgs/tools/backup/restic/rest-server.nix
··· 3 3 buildGoModule rec { 4 4 pname = "restic-rest-server"; 5 5 version = "0.11.0"; 6 - owner = "restic"; 7 - repo = "rest-server"; 8 6 9 7 src = fetchFromGitHub { 10 - inherit owner repo; 8 + owner = "restic"; 9 + repo = "rest-server"; 11 10 rev = "v${version}"; 12 11 hash = "sha256-ninPODztNzvB2js9cuNAuExQLK/OGOu80ZNW0BPrdds="; 13 12 }; ··· 17 16 patches = [ 18 17 (fetchpatch { 19 18 name = "backport_rest-server_tests_os.TempDir.patch"; 20 - url = "https://github.com/${owner}/${repo}/commit/a87a50ad114bdaddc895413396438df6ea0affbb.patch"; 19 + url = "https://github.com/restic/rest-server/commit/a87a50ad114bdaddc895413396438df6ea0affbb.patch"; 21 20 sha256 = "sha256-O6ENxTK2fCVTZZKTFHrvZ+3dT8TbgbIE0o3sYE/RUqc="; 22 21 }) 23 22
+6
pkgs/tools/graphics/cuneiform/default.nix
··· 20 20 }) 21 21 ]; 22 22 23 + # Workaround build failure on -fno-common toolchains like upstream 24 + # gcc-10. Otherwise build fails as: 25 + # ld: CMakeFiles/rbal.dir/src/statsearchbl.cpp.o:(.bss+0x0): 26 + # multiple definition of `minrow'; CMakeFiles/rbal.dir/src/linban.c.o:(.bss+0xa3a): first defined here 27 + NIX_CFLAGS_COMPILE = "-fcommon"; 28 + 23 29 postPatch = '' 24 30 rm cuneiform_src/Kern/hhh/tigerh/h/strings.h 25 31 '';
+2 -2
pkgs/tools/misc/clickclack/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "clickclack"; 9 - version = "0.2.2"; 9 + version = "0.2.3"; 10 10 11 11 src = fetchFromSourcehut { 12 12 owner = "~proycon"; 13 13 repo = "clickclack"; 14 14 rev = version; 15 - hash = "sha256-ABVfJRSzbQ6jIpON2g2wS52QsyNQVfW6+AhTvjkkf6s="; 15 + hash = "sha256-YmlbGEmZgT/30c+mWQzdz4rKc69d75zhoNUA5FdxdMc="; 16 16 }; 17 17 18 18 buildInputs = [
+2 -2
pkgs/tools/misc/diffoscope/default.nix
··· 11 11 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 12 12 python3Packages.buildPythonApplication rec { 13 13 pname = "diffoscope"; 14 - version = "210"; 14 + version = "211"; 15 15 16 16 src = fetchurl { 17 17 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 18 - sha256 = "sha256-KaECH995scVdBbxQ4YhZUFmm04ptgi4yx14oDFX+zSw="; 18 + sha256 = "sha256-B2Ll1N9JJkBM32eGHBtTscq6MR4T+yB98LTpjz094zo="; 19 19 }; 20 20 21 21 outputs = [ "out" "man" ];
+12 -6
pkgs/tools/misc/lazydocker/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "lazydocker"; 5 - version = "0.13"; 5 + version = "0.18.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jesseduffield"; 9 9 repo = "lazydocker"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-thUm33AdP9Huc2vcTRatC1ULHZd0edEQggEGTqOV3a0="; 11 + sha256 = "sha256-qtGPsfZVu5ZuCusO5nYgxR/qHiwyhzMmBMLMDpKzKDA="; 12 12 }; 13 13 14 - goPackagePath = "github.com/jesseduffield/lazydocker"; 14 + vendorSha256 = null; 15 + 16 + postPatch = '' 17 + rm -f pkg/config/app_config_test.go 18 + ''; 15 19 16 - subPackages = [ "." ]; 20 + excludedPackages = [ "scripts" "test/printrandom" ]; 21 + 22 + ldflags = [ "-s" "-w" "-X main.version=${version}" ]; 17 23 18 24 meta = with lib; { 19 25 description = "A simple terminal UI for both docker and docker-compose";
+6 -4
pkgs/tools/networking/minio-client/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, nixosTests }: 2 2 3 3 buildGoModule rec { 4 4 pname = "minio-client"; 5 - version = "2022-03-17T20-25-06Z"; 5 + version = "2022-05-09T04-08-26Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "mc"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-+MfRosEyIaQ5RndpAeK5AXm8EHX2ND7VJcr1NVFs5TI="; 11 + sha256 = "sha256-a7zpvumsMijMmJthg4EZgOUymDC4GrbDjAwN4sXxE6g="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-Wdw9mZ3UupoJ4yDwS4f3mOmCn+7TvHmx4aRu+96pHM4="; 14 + vendorSha256 = "sha256-OkcQxTDKhuFCjNs5TNBBMde+M6vCfPSR5IuVbCaqWJg="; 15 15 16 16 subPackages = [ "." ]; 17 17 ··· 25 25 installCheckPhase = '' 26 26 $out/bin/mc --version | grep ${version} > /dev/null 27 27 ''; 28 + 29 + passthru.tests.minio = nixosTests.minio; 28 30 29 31 meta = with lib; { 30 32 homepage = "https://github.com/minio/mc";
-18
pkgs/tools/security/dirmngr/default.nix
··· 1 - { lib, stdenv, fetchurl, libgpg-error, libgcrypt, libassuan, libksba, pth, openldap 2 - , libiconv}: 3 - 4 - stdenv.mkDerivation rec { 5 - pname = "dirmngr"; 6 - version = "1.1.1"; 7 - src = fetchurl { 8 - url = "mirror://gnupg/dirmngr/dirmngr-${version}.tar.bz2"; 9 - sha256 = "1zz6m87ca55nq5f59hzm6qs48d37h93il881y7d0rf2d6660na6j"; 10 - }; 11 - buildInputs = [ libgpg-error libgcrypt libassuan libksba 12 - pth openldap libiconv ]; 13 - 14 - meta = { 15 - platforms = lib.platforms.unix; 16 - license = lib.licenses.gpl2Plus; 17 - }; 18 - }
+5 -3
pkgs/tools/security/sops/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "sops"; 5 - version = "3.7.2"; 5 + version = "3.7.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "mozilla"; 10 10 repo = pname; 11 - sha256 = "sha256-NMuYMvaBSxKHvpqFkMfnMDvcXxTstqzracuSTT1VB1A="; 11 + sha256 = "sha256-wN1ksLwD4G+fUhvCe+jahh1PojPk6L6tnx1rsc7dz+M="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-00/7O9EcGojUExJPtYWndb16VqrNby/5GsVs8Ak/Isc="; 14 + vendorSha256 = "sha256-8IaE+vhVZkc9QDR6+/3eOSsuf3SYF2upNcCifbqtx14="; 15 + 16 + ldflags = [ "-s" "-w" ]; 15 17 16 18 doCheck = false; 17 19
+18 -16
pkgs/tools/system/gohai/default.nix
··· 1 - { lib, buildGoPackage, fetchgit }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "gohai"; 5 - version = "2018-05-23"; 6 - rev = "60e13eaed98afa238ad6dfc98224c04fbb7b19b1"; 5 + version = "unstable-2022-04-12"; 7 6 8 - goPackagePath = "github.com/DataDog/gohai"; 9 - 10 - src = fetchgit { 11 - inherit rev; 12 - url = "https://github.com/DataDog/gohai"; 13 - sha256 = "15hdw195f6ayrmj1nbyfpfswdai1r1z3qjw927mbma7rwql24dkr"; 7 + src = fetchFromGitHub { 8 + owner = "DataDog"; 9 + repo = "gohai"; 10 + rev = "c614f513e87f04d3d19b2d4ae853cc5703f3a9bc"; 11 + sha256 = "sha256-vdzGGTg9SHYS0OQUn3VvrQGpKxzqxBRXDKOm0c7FvYY="; 14 12 }; 15 13 16 - goDeps = ./deps.nix; 14 + vendorSha256 = "sha256-aN1fwGbBm45e6qdRu+4wnv2ZI7SOsIPONB4vF9o2vlI="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 + 18 + doCheck = false; 17 19 18 20 meta = with lib; { 19 - description = "System information collector"; 20 - homepage = "https://github.com/DataDog/gohai"; 21 - license = licenses.mit; 22 - maintainers = [ maintainers.tazjin ]; 23 - platforms = platforms.unix; 21 + description = "System information collector"; 22 + homepage = "https://github.com/DataDog/gohai"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ tazjin ]; 25 + platforms = platforms.unix; 24 26 25 27 longDescription = '' 26 28 Gohai is a tool which collects an inventory of system
-30
pkgs/tools/system/gohai/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/cihub/seelog"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/cihub/seelog"; 8 - rev = "f561c5e57575bb1e0a2167028b7339b3a8d16fb4"; 9 - sha256 = "0r3228hvgljgpaggj6b9mvxfsizfw25q2c1761wsvcif8gz49cvl"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/shirou/gopsutil"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/shirou/gopsutil"; 17 - rev = "eeb1d38d69593f121e060d24d17f7b1f0936b203"; 18 - sha256 = "01qsznk599225gf4pld7p2m30p61y77mvzhrs6raxpk6wf7icp4w"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "golang.org/x/sys"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://go.googlesource.com/sys"; 26 - rev = "77b0e4315053a57ed2962443614bdb28db152054"; 27 - sha256 = "1024gcv1b40i2rgvpgyw2hgy1k5g7473pn29yavwysj37m1rrplp"; 28 - }; 29 - } 30 - ]
+18 -4
pkgs/tools/text/rs/default.nix
··· 1 - { lib, stdenv, fetchurl, libbsd }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , installShellFiles 5 + , libbsd 6 + }: 2 7 3 8 stdenv.mkDerivation rec { 4 9 pname = "rs"; ··· 9 14 sha256 = "0gxwlfk7bzivpp2260w2r6gkyl7vdi05cggn1fijfnp8kzf1b4li"; 10 15 }; 11 16 17 + nativeBuildInputs = [ installShellFiles ]; 18 + 12 19 buildInputs = [ libbsd ]; 13 20 14 21 buildPhase = '' 22 + runHook preBuild 23 + 15 24 ${stdenv.cc}/bin/cc utf8.c rs.c -o rs -lbsd 25 + 26 + runHook postBuild 16 27 ''; 17 28 18 29 installPhase = '' 30 + runHook preInstall 31 + 19 32 install -Dm 755 rs -t $out/bin 20 - install -Dm 644 rs.1 -t $out/share/man/man1 33 + installManPage rs.1 34 + 35 + runHook postInstall 21 36 ''; 22 37 23 38 meta = with lib; { 39 + homepage = "http://www.mirbsd.org/htman/i386/man1/rs.htm"; 24 40 description = "Reshape a data array from standard input"; 25 41 longDescription = '' 26 42 rs reads the standard input, interpreting each line as a row of blank- ··· 43 59 to control presentation of the output columns, including transposition of 44 60 the rows and columns. 45 61 ''; 46 - 47 - homepage = "https://www.mirbsd.org/htman/i386/man1/rs.htm"; 48 62 license = licenses.bsd3; 49 63 maintainers = with maintainers; [ AndersonTorres ]; 50 64 platforms = platforms.unix;
+4 -1
pkgs/tools/typesetting/sile/default.nix
··· 18 18 luaEnv = lua.withPackages(ps: with ps; [ 19 19 cassowary 20 20 cosmo 21 - compat53 22 21 linenoise 23 22 lpeg 24 23 lua-zlib ··· 33 32 penlight 34 33 stdlib 35 34 vstruct 35 + ] ++ lib.optionals (lib.versionOlder lua.luaversion "5.2") [ 36 + bit32 37 + ] ++ lib.optionals (lib.versionOlder lua.luaversion "5.3") [ 38 + compat53 36 39 ]); 37 40 in 38 41
+15 -9
pkgs/tools/typesetting/soupault/default.nix
··· 1 - { fetchFromGitHub, ocamlPackages, lib }: 1 + { lib 2 + , fetchFromGitea 3 + , ocamlPackages 4 + }: 2 5 3 6 ocamlPackages.buildDunePackage rec { 4 7 pname = "soupault"; 5 - version = "3.2.0"; 8 + version = "4.0.0"; 6 9 7 10 useDune2 = true; 8 11 9 - src = fetchFromGitHub { 10 - owner = "dmbaturin"; 12 + minimalOCamlVersion = "4.08"; 13 + 14 + src = fetchFromGitea { 15 + domain = "codeberg.org"; 16 + owner = "PataphysicalSociety"; 11 17 repo = pname; 12 18 rev = version; 13 - sha256 = "sha256-T1K/ntCK19LfPmMtaAa9c1JjSL+5dax2SNhM4yUFln4="; 19 + sha256 = "sha256-txNKAZMd3LReFoAtf6iaoDF+Ku3IUNDzBWUqGC2ePKw="; 14 20 }; 15 21 16 22 buildInputs = with ocamlPackages; [ 17 23 base64 24 + camomile 18 25 containers 19 26 ezjsonm 20 27 fileutils ··· 32 39 yaml 33 40 ]; 34 41 35 - meta = with lib; { 42 + meta = { 36 43 description = "A tool that helps you create and manage static websites"; 37 44 homepage = "https://soupault.app/"; 38 - license = licenses.mit; 39 - maintainers = [ maintainers.toastal ]; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ toastal ]; 40 47 }; 41 48 } 42 -
+12 -6
pkgs/tools/virtualization/govc/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoPackage }: 1 + { lib, fetchFromGitHub, buildGoModule }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "govc"; 5 - version = "0.25.0"; 6 - 7 - goPackagePath = "github.com/vmware/govmomi"; 5 + version = "0.28.0"; 8 6 9 7 subPackages = [ "govc" ]; 10 8 ··· 12 10 rev = "v${version}"; 13 11 owner = "vmware"; 14 12 repo = "govmomi"; 15 - sha256 = "sha256-Ri8snbmgcAZmdumKzBl3P6gf/eZgwdgg7V+ijyeZjks="; 13 + sha256 = "sha256-uK1JsBJC9O8dEJbAnyeMoolKZ2WhEPsDo/is/I+gfHg="; 16 14 }; 15 + 16 + vendorSha256 = "sha256-jbGqQITAhyBLoDa3cKU5gK+4WGgoGSCyFtzeoXx8e7k="; 17 + 18 + ldflags = [ 19 + "-s" 20 + "-w" 21 + "-X github.com/vmware/govmomi/govc/flags.BuildVersion=${version}" 22 + ]; 17 23 18 24 meta = { 19 25 description = "A vSphere CLI built on top of govmomi";
+5
pkgs/top-level/aliases.nix
··· 94 94 avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18 95 95 awesome-4-0 = awesome; # Added 2022-05-05 96 96 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; 97 + axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 97 98 azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 98 99 99 100 ### B ### ··· 205 206 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 206 207 crafty = throw "crafty has been removed: deleted by upstream"; # Added 2022-01-07 207 208 cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 209 + ctl = throw "ctl has been removed: abandoned by upstream"; # Added 2022-05-13 208 210 209 211 # CUDA Toolkit 210 212 cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 ··· 315 317 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 316 318 desktop_file_utils = throw "'desktop_file_utils' has been renamed to/replaced by 'desktop-file-utils'"; # Converted to throw 2022-02-22 317 319 devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22 320 + dfu-util-axoloti = throw "dfu-util-axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 318 321 dhall-text = throw "'dhall-text' has been deprecated in favor of the 'dhall text' command from 'dhall'"; # Added 2022-03-26 319 322 digikam5 = throw "'digikam5' has been renamed to/replaced by 'digikam'"; # Converted to throw 2022-02-22 323 + dirmngr = throw "dirmngr has been removed: merged into gnupg"; # Added 2022-05-13 320 324 disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18 321 325 displaycal = throw "displaycal has been removed from nixpkgs, as it hasn't migrated to python3"; # Added 2022-01-12 322 326 dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22 ··· 695 699 libudev = throw "'libudev' has been renamed to/replaced by 'udev'"; # Converted to throw 2022-02-22 696 700 libungif = giflib; # Added 2020-02-12 697 701 libusb = libusb1; # Added 2020-04-28 702 + libusb1-axoloti = throw "libusb1-axoloti has been removed: axoloti has been removed"; # Added 2022-05-13 698 703 libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22 699 704 libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22 700 705 libwnck3 = libwnck;
+23 -23
pkgs/top-level/all-packages.nix
··· 750 750 751 751 installShellFiles = callPackage ../build-support/install-shell-files {}; 752 752 753 - lazydocker = callPackage ../tools/misc/lazydocker { }; 753 + lazydocker = callPackage ../tools/misc/lazydocker { 754 + buildGoModule = buildGo118Module; 755 + }; 754 756 755 757 ld-is-cc-hook = makeSetupHook { name = "ld-is-cc-hook"; } 756 758 ../build-support/setup-hooks/ld-is-cc-hook.sh; ··· 786 788 ../build-support/setup-hooks/make-wrapper.sh; 787 789 788 790 makeBinaryWrapper = callPackage ../build-support/setup-hooks/make-binary-wrapper { }; 791 + 792 + compressFirmwareXz = callPackage ../build-support/kernel/compress-firmware-xz.nix { }; 789 793 790 794 makeModulesClosure = { kernel, firmware, rootModules, allowMissing ? false }: 791 795 callPackage ../build-support/kernel/modules-closure.nix { ··· 976 980 977 981 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { 978 982 boost = boost16x; # checkPhase fails with Boost 1.77 983 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 979 984 }; 980 985 981 986 adminer = callPackage ../servers/adminer { }; ··· 1977 1982 1978 1983 bonnmotion = callPackage ../development/tools/misc/bonnmotion { }; 1979 1984 1980 - bonnie = callPackage ../tools/filesystems/bonnie { }; 1985 + bonnie = callPackage ../tools/filesystems/bonnie { 1986 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 1987 + }; 1981 1988 1982 1989 botamusique = callPackage ../tools/audio/botamusique { }; 1983 1990 ··· 2539 2546 2540 2547 axel = callPackage ../tools/networking/axel { 2541 2548 libssl = openssl; 2542 - }; 2543 - 2544 - axoloti = callPackage ../applications/audio/axoloti { 2545 - gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc; 2546 - binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils; 2547 - jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 2548 - }; 2549 - dfu-util-axoloti = callPackage ../applications/audio/axoloti/dfu-util.nix { }; 2550 - libusb1-axoloti = callPackage ../applications/audio/axoloti/libusb1.nix { 2551 - inherit (darwin) libobjc; 2552 - inherit (darwin.apple_sdk.frameworks) IOKit; 2553 2549 }; 2554 2550 2555 2551 b3sum = callPackage ../tools/security/b3sum {}; ··· 5191 5187 5192 5188 wgetpaste = callPackage ../tools/text/wgetpaste { }; 5193 5189 5194 - dirmngr = callPackage ../tools/security/dirmngr { }; 5195 - 5196 5190 dismap = callPackage ../tools/security/dismap { }; 5197 5191 5198 5192 dirvish = callPackage ../tools/backup/dirvish { }; ··· 5291 5285 duff = callPackage ../tools/filesystems/duff { 5292 5286 autoreconfHook = buildPackages.autoreconfHook269; 5293 5287 }; 5288 + 5289 + dump_syms = callPackage ../development/tools/dump_syms { }; 5294 5290 5295 5291 dumptorrent = callPackage ../tools/misc/dumptorrent { }; 5296 5292 ··· 5416 5412 5417 5413 schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix { 5418 5414 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 5419 - electron = electron_15; 5415 + electron = electron_17; 5420 5416 }; 5421 5417 schildichat-desktop-wayland = writeScriptBin "schildichat-desktop" '' 5422 5418 #!/bin/sh ··· 6138 6134 6139 6135 gfbgraph = callPackage ../development/libraries/gfbgraph { }; 6140 6136 6141 - gfold = callPackage ../applications/version-management/git-and-tools/gfold { }; 6137 + gfold = callPackage ../applications/version-management/git-and-tools/gfold { 6138 + inherit (darwin.apple_sdk.frameworks) Security; 6139 + }; 6142 6140 6143 6141 ggobi = callPackage ../tools/graphics/ggobi { }; 6144 6142 ··· 10264 10262 silc_server = callPackage ../servers/silc-server { }; 10265 10263 10266 10264 sile = callPackage ../tools/typesetting/sile { 10267 - lua = lua5_4; 10265 + lua = lua5_3; 10268 10266 }; 10269 10267 10270 10268 silver-searcher = callPackage ../tools/text/silver-searcher { }; ··· 16809 16807 16810 16808 classads = callPackage ../development/libraries/classads { }; 16811 16809 16812 - clfft = callPackage ../development/libraries/clfft { }; 16810 + clfft = callPackage ../development/libraries/clfft { 16811 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 16812 + }; 16813 16813 16814 16814 clipp = callPackage ../development/libraries/clipp { }; 16815 16815 ··· 16861 16861 cosmopolitan = callPackage ../development/libraries/cosmopolitan { }; 16862 16862 16863 16863 python-cosmopolitan = callPackage ../development/interpreters/python-cosmopolitan { }; 16864 - 16865 - ctl = callPackage ../development/libraries/ctl { }; 16866 16864 16867 16865 ctpp2 = callPackage ../development/libraries/ctpp2 { }; 16868 16866 ··· 20102 20100 20103 20101 prime-server = callPackage ../development/libraries/prime-server { }; 20104 20102 20105 - primecount = callPackage ../development/libraries/science/math/primecount { }; 20103 + primecount = callPackage ../applications/science/math/primecount { }; 20106 20104 20107 - primesieve = callPackage ../development/libraries/science/math/primesieve { }; 20105 + primesieve = callPackage ../applications/science/math/primesieve { }; 20108 20106 20109 20107 prison = callPackage ../development/libraries/prison { }; 20110 20108 ··· 34893 34891 x2x = callPackage ../tools/X11/x2x { }; 34894 34892 34895 34893 xboxdrv = callPackage ../misc/drivers/xboxdrv { }; 34894 + 34895 + xivlauncher = callPackage ../games/xivlauncher { }; 34896 34896 34897 34897 xortool = python3Packages.callPackage ../tools/security/xortool { }; 34898 34898
+6
pkgs/top-level/python-packages.nix
··· 3628 3628 3629 3629 gpy = callPackage ../development/python-modules/gpy { }; 3630 3630 3631 + gpt-2-simple = callPackage ../development/python-modules/gpt-2-simple { }; 3632 + 3631 3633 gpyopt = callPackage ../development/python-modules/gpyopt { }; 3632 3634 3633 3635 gql = callPackage ../development/python-modules/gql { }; ··· 5842 5844 nvchecker = callPackage ../development/python-modules/nvchecker { }; 5843 5845 5844 5846 python-nvd3 = callPackage ../development/python-modules/python-nvd3 { }; 5847 + 5848 + py-deprecate = callPackage ../development/python-modules/py-deprecate { }; 5845 5849 5846 5850 nwdiag = callPackage ../development/python-modules/nwdiag { }; 5847 5851 ··· 10363 10367 torchaudio-bin = callPackage ../development/python-modules/torchaudio/bin.nix { }; 10364 10368 10365 10369 torchgpipe = callPackage ../development/python-modules/torchgpipe { }; 10370 + 10371 + torchmetrics = callPackage ../development/python-modules/torchmetrics { }; 10366 10372 10367 10373 torchinfo = callPackage ../development/python-modules/torchinfo { }; 10368 10374