lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
a4e03b89 bb4cba17

+1220 -446
+1 -1
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 614 614 <listitem> 615 615 <para> 616 616 The <literal>staticjinja</literal> package has been upgraded 617 - from 1.0.4 to 4.1.0 617 + from 1.0.4 to 4.1.1 618 618 </para> 619 619 </listitem> 620 620 <listitem>
+1 -1
nixos/doc/manual/release-notes/rl-2111.section.md
··· 202 202 Superuser created successfully. 203 203 ``` 204 204 205 - - The `staticjinja` package has been upgraded from 1.0.4 to 4.1.0 205 + - The `staticjinja` package has been upgraded from 1.0.4 to 4.1.1 206 206 207 207 - Firefox v91 does not support addons with invalid signature anymore. Firefox ESR needs to be used for nix addon support. 208 208
+5
nixos/maintainers/scripts/ec2/amazon-image.nix
··· 4 4 5 5 let 6 6 cfg = config.amazonImage; 7 + amiBootMode = if config.ec2.efi then "uefi" else "legacy-bios"; 7 8 8 9 in { 9 10 ··· 106 107 --arg system ${lib.escapeShellArg pkgs.stdenv.hostPlatform.system} \ 107 108 --arg root_logical_bytes "$(${pkgs.qemu}/bin/qemu-img info --output json "$rootDisk" | ${pkgs.jq}/bin/jq '."virtual-size"')" \ 108 109 --arg boot_logical_bytes "$(${pkgs.qemu}/bin/qemu-img info --output json "$bootDisk" | ${pkgs.jq}/bin/jq '."virtual-size"')" \ 110 + --arg boot_mode "${amiBootMode}" \ 109 111 --arg root "$rootDisk" \ 110 112 --arg boot "$bootDisk" \ 111 113 '{} 112 114 | .label = $system_label 115 + | .boot_mode = $boot_mode 113 116 | .system = $system 114 117 | .disks.boot.logical_bytes = $boot_logical_bytes 115 118 | .disks.boot.file = $boot ··· 145 148 --arg system_label ${lib.escapeShellArg config.system.nixos.label} \ 146 149 --arg system ${lib.escapeShellArg pkgs.stdenv.hostPlatform.system} \ 147 150 --arg logical_bytes "$(${pkgs.qemu}/bin/qemu-img info --output json "$diskImage" | ${pkgs.jq}/bin/jq '."virtual-size"')" \ 151 + --arg boot_mode "${amiBootMode}" \ 148 152 --arg file "$diskImage" \ 149 153 '{} 150 154 | .label = $system_label 155 + | .boot_mode = $boot_mode 151 156 | .system = $system 152 157 | .logical_bytes = $logical_bytes 153 158 | .file = $file
+4
nixos/maintainers/scripts/ec2/create-amis.sh
··· 1 1 #!/usr/bin/env nix-shell 2 2 #!nix-shell -p awscli -p jq -p qemu -i bash 3 3 # shellcheck shell=bash 4 + # 5 + # Future Deprecation? 6 + # This entire thing should probably be replaced with a generic terraform config 4 7 5 8 # Uploads and registers NixOS images built from the 6 9 # <nixos/release.nix> amazonImage attribute. Images are uploaded and ··· 275 278 --region "$region" \ 276 279 --architecture $amazon_arch \ 277 280 --block-device-mappings "${block_device_mappings[@]}" \ 281 + --boot-mode $(read_image_info .boot_mode) \ 278 282 "${extra_flags[@]}" \ 279 283 | jq -r '.ImageId' 280 284 )
+17 -1
nixos/modules/services/web-apps/plausible.nix
··· 9 9 options.services.plausible = { 10 10 enable = mkEnableOption "plausible"; 11 11 12 + releaseCookiePath = mkOption { 13 + default = null; 14 + type = with types; nullOr (either str path); 15 + description = '' 16 + The path to the file with release cookie. (used for remote connection to the running node). 17 + ''; 18 + }; 19 + 12 20 adminUser = { 13 21 name = mkOption { 14 22 default = "admin"; ··· 173 181 174 182 services.epmd.enable = true; 175 183 184 + environment.systemPackages = [ pkgs.plausible ]; 185 + 176 186 systemd.services = mkMerge [ 177 187 { 178 188 plausible = { ··· 197 207 DISABLE_REGISTRATION = boolToString cfg.server.disableRegistration; 198 208 199 209 RELEASE_TMP = "/var/lib/plausible/tmp"; 210 + # Home is needed to connect to the node with iex 211 + HOME = "/var/lib/plausible"; 200 212 201 213 ADMIN_USER_NAME = cfg.adminUser.name; 202 214 ADMIN_USER_EMAIL = cfg.adminUser.email; ··· 231 243 psql -d plausible <<< "UPDATE users SET email_verified=true;" 232 244 fi 233 245 ''} 246 + ${optionalString (cfg.releaseCookiePath != null) '' 247 + export RELEASE_COOKIE="$(< $CREDENTIALS_DIRECTORY/RELEASE_COOKIE )" 248 + ''} 234 249 plausible start 235 250 ''; 236 251 ··· 242 257 LoadCredential = [ 243 258 "ADMIN_USER_PWD:${cfg.adminUser.passwordFile}" 244 259 "SECRET_KEY_BASE:${cfg.server.secretKeybaseFile}" 245 - ] ++ lib.optionals (cfg.mail.smtp.passwordFile != null) [ "SMTP_USER_PWD:${cfg.mail.smtp.passwordFile}"]; 260 + ] ++ lib.optionals (cfg.mail.smtp.passwordFile != null) [ "SMTP_USER_PWD:${cfg.mail.smtp.passwordFile}"] 261 + ++ lib.optionals (cfg.releaseCookiePath != null) [ "RELEASE_COOKIE:${cfg.releaseCookiePath}"]; 246 262 }; 247 263 }; 248 264 }
+2 -1
nixos/modules/services/web-apps/zabbix.nix
··· 21 21 $DB['PORT'] = '${toString cfg.database.port}'; 22 22 $DB['DATABASE'] = '${cfg.database.name}'; 23 23 $DB['USER'] = '${cfg.database.user}'; 24 - $DB['PASSWORD'] = ${if cfg.database.passwordFile != null then "file_get_contents('${cfg.database.passwordFile}')" else "''"}; 24 + # NOTE: file_get_contents adds newline at the end of returned string 25 + $DB['PASSWORD'] = ${if cfg.database.passwordFile != null then "trim(file_get_contents('${cfg.database.passwordFile}'), \"\\r\\n\")" else "''"}; 25 26 // Schema name. Used for IBM DB2 and PostgreSQL. 26 27 $DB['SCHEMA'] = '''; 27 28 $ZBX_SERVER = '${cfg.server.address}';
+33
pkgs/applications/audio/aether-lv2/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, lv2, libX11, libGL, libGLU, mesa, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "aether-lv2"; 5 + version = "1.2.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Dougal-s"; 9 + repo = "aether"; 10 + rev = "v${version}"; 11 + sha256 = "0xhih4smjxn87s0f4gaab51d8594qlp0lyypzxl5lm37j1i9zigs"; 12 + fetchSubmodules = true; 13 + }; 14 + 15 + nativeBuildInputs = [ cmake ]; 16 + 17 + buildInputs = [ 18 + lv2 libX11 libGL libGLU mesa 19 + ]; 20 + 21 + installPhase = '' 22 + mkdir -p $out/lib/lv2 23 + cp -r aether.lv2 $out/lib/lv2 24 + ''; 25 + 26 + meta = with lib; { 27 + homepage = "https://dougal-s.github.io/Aether/"; 28 + description = "An algorithmic reverb LV2 based on Cloudseed"; 29 + maintainers = [ maintainers.magnetophon ]; 30 + platforms = platforms.linux; 31 + license = licenses.mit; 32 + }; 33 + }
+2 -2
pkgs/applications/audio/faustPhysicalModeling/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, faust2jaqt, faust2lv2 }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "faustPhysicalModeling"; 4 - version = "2.33.1"; 4 + version = "2.37.3"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "grame-cncm"; 8 8 repo = "faust"; 9 9 rev = version; 10 - sha256 = "sha256-gzkfLfNhJHg/jEhf/RQDhHnXxn3UI15eDZfutKt3yGk="; 10 + sha256 = "sha256-h6L+qRkN2chnI4821WrjD3uRFw3J0sUYVLL8w57vR1U="; 11 11 }; 12 12 13 13 buildInputs = [ faust2jaqt faust2lv2 ];
+3 -3
pkgs/applications/audio/sublime-music/default.nix
··· 15 15 16 16 python3Packages.buildPythonApplication rec { 17 17 pname = "sublime-music"; 18 - version = "0.11.14"; 18 + version = "0.11.16"; 19 19 format = "pyproject"; 20 20 21 21 src = fetchFromGitLab { 22 22 owner = "sublime-music"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-NzbQtRcsRVppyuG1UuS3IidSnniUOavf5YoAf/kcZqw="; 25 + sha256 = "sha256-n77mTgElwwFaX3WQL8tZzbkPwnsyQ08OW9imSOjpBlg="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 71 71 ]; 72 72 73 73 checkPhase = '' 74 - ${xvfb-run}/bin/xvfb-run pytest -k "not test_json_load_unload" 74 + ${xvfb-run}/bin/xvfb-run pytest 75 75 ''; 76 76 77 77 pythonImportsCheck = [
+33
pkgs/applications/audio/surge-XT/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, pkg-config, cairo, libxkbcommon, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor, alsa-lib, libjack2 2 + }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "surge-XT"; 6 + version = "unstable-2021-11-07"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "surge-synthesizer"; 10 + repo = "surge"; 11 + rev = "ed93833eb44b177c977e3a7b878ffdd9bf9f24e5"; 12 + sha256 = "0b164659ksl6h5nn7jja5zccx2mwzibqs6b7hg8l98gpcy9fi5r2"; 13 + fetchSubmodules = true; 14 + }; 15 + 16 + nativeBuildInputs = [ cmake pkg-config ]; 17 + buildInputs = [ cairo libxkbcommon xcbutilcursor xcbutilkeysyms xcbutil libXrandr libXinerama libXcursor alsa-lib libjack2 ]; 18 + 19 + installPhase = '' 20 + cd .. 21 + cmake --build build --config Release --target install 22 + ''; 23 + 24 + doInstallCheck = false; 25 + 26 + meta = with lib; { 27 + description = "LV2 & VST3 synthesizer plug-in (previously released as Vember Audio Surge)"; 28 + homepage = "https://surge-synthesizer.github.io"; 29 + license = licenses.gpl3; 30 + platforms = [ "x86_64-linux" ]; 31 + maintainers = with maintainers; [ magnetophon orivej ]; 32 + }; 33 + }
+10 -9
pkgs/applications/graphics/smartdeblur/default.nix
··· 1 - { fetchurl, lib, stdenv, cmake, qt4, fftw }: 1 + { lib, stdenv, fetchFromGitHub, cmake, qt4, fftw }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "smartdeblur"; 5 5 version = "unstable-2013-01-09"; 6 6 7 - src = fetchurl { 8 - url = "https://github.com/Y-Vladimir/SmartDeblur/tarball/9895036d26"; 9 - name = "smartdeblur-${version}.tar.gz"; 10 - sha256 = "126x9x1zhqdarjz9in0p1qhmqg3jwz7frizadjvx723g2ppi33s4"; 7 + src = fetchFromGitHub { 8 + owner = "Y-Vladimir"; 9 + repo = "SmartDeblur"; 10 + rev = "9895036d26cbb823a9ade28cdcb26fd0ac37258e"; 11 + sha256 = "sha256-+EbqEpOG1fj2OKmlz8NRF/CGfT2OYGwY5/lwJHCHaMw="; 11 12 }; 12 13 13 14 preConfigure = '' ··· 19 20 20 21 cmakeFlags = [ "-DUSE_SYSTEM_FFTW=ON" ]; 21 22 22 - meta = { 23 + meta = with lib; { 23 24 homepage = "https://github.com/Y-Vladimir/SmartDeblur"; 24 25 description = "Tool for restoring blurry and defocused images"; 25 - license = lib.licenses.gpl3; 26 - maintainers = with lib.maintainers; [ ]; 27 - platforms = with lib.platforms; linux; 26 + license = licenses.gpl3; 27 + maintainers = with maintainers; [ ]; 28 + platforms = platforms.linux; 28 29 }; 29 30 }
+3 -6
pkgs/applications/misc/binance/default.nix
··· 1 - { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron_12, 2 - alsa-lib, gtk3, libxshmfence, mesa, nss, popt }: 1 + { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron 2 + , alsa-lib, gtk3, libxshmfence, mesa, nss, popt }: 3 3 4 - let 5 - electron = electron_12; 6 - 7 - in stdenv.mkDerivation rec { 4 + stdenv.mkDerivation rec { 8 5 pname = "binance"; 9 6 version = "1.26.0"; 10 7
-1
pkgs/applications/networking/cluster/helm-docs/default.nix
··· 23 23 meta = with lib; { 24 24 homepage = "https://github.com/norwoodj/helm-docs"; 25 25 description = "A tool for automatically generating markdown documentation for Helm charts"; 26 - platforms = platforms.unix; 27 26 license = licenses.gpl3Only; 28 27 maintainers = with maintainers; [ sagikazarmark ]; 29 28 };
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 195 195 }; 196 196 197 197 terraform_1_0 = mkTerraform { 198 - version = "1.0.10"; 199 - sha256 = "1jcgp9q99785m85754ipza7b3dd3g58adpnyh5w2imqj01cas6mb"; 200 - vendorSha256 = "00cl42w1mzsi9qd09wydfvp5f2h7lxaay6s2dv0mf47k6h7prf42"; 198 + version = "1.0.11"; 199 + sha256 = "0k05s4zm16vksq21f1q00y2lzfgi5fhs1ygydm8jk0srs9x8ask7"; 200 + vendorSha256 = "1brgghl7fb26va4adix443rl1dkjaqrr4jkknxjkcaps0knqp172"; 201 201 patches = [ ./provider-path-0_15.patch ]; 202 202 passthru = { inherit plugins; }; 203 203 };
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "flexget"; 5 - version = "3.1.149"; 5 + version = "3.1.150"; 6 6 7 7 # Fetch from GitHub in order to use `requirements.in` 8 8 src = fetchFromGitHub { 9 9 owner = "flexget"; 10 10 repo = "flexget"; 11 11 rev = "v${version}"; 12 - sha256 = "1yrb8cfrc6y7gpfgzn0q6ldx9vk06qp229wjs4q8rccp72p6d6gg"; 12 + sha256 = "sha256-tSA1pDGzIX2uIEWM0xV53jj1vBcJFMNCRakczs7Hue4="; 13 13 }; 14 14 15 15 postPatch = ''
+3 -3
pkgs/applications/networking/instant-messengers/kdeltachat/default.nix
··· 14 14 15 15 mkDerivation rec { 16 16 pname = "kdeltachat"; 17 - version = "unstable-2021-09-10"; 17 + version = "unstable-2021-10-27"; 18 18 19 19 src = fetchFromSourcehut { 20 20 owner = "~link2xt"; 21 21 repo = "kdeltachat"; 22 - rev = "40092aa096bac7e279eb5a4cc97758bac484236c"; 23 - sha256 = "0vmsbxx4hxh35v1lbj82vq2w8z8inj83xpf24wzlbdr9inlbmym4"; 22 + rev = "e1201cdcce4311061643d90cc0132745023a82d2"; 23 + sha256 = "04xqvyj4rzgl9r7sfjjw1kc3vql30c80rwppff2zr5aijr15fgjj"; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+1
pkgs/applications/networking/instant-messengers/matrix-commander/default.nix
··· 20 20 pillow 21 21 urllib3 22 22 aiofiles 23 + notify2 23 24 ]))]; 24 25 25 26 installPhase = ''
+7 -4
pkgs/applications/science/logic/logisim-evolution/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "logisim-evolution"; 5 - version = "3.5.0"; 5 + version = "3.7.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/logisim-evolution/logisim-evolution/releases/download/v${version}/logisim-evolution-${version}-all.jar"; 9 - sha256 = "1r6im4gmjbnckx8jig6bxi5lxv06lwdnpxkyfalsfmw4nybd5arw"; 9 + sha256 = "04q9bzhnzpi8cgv3ly4ii88qvmlw9n09c4p1qmg8dhxqkskdqj6h"; 10 10 }; 11 11 12 12 dontUnpack = true; ··· 30 30 mkdir -p $out/bin 31 31 makeWrapper ${jre}/bin/java $out/bin/logisim-evolution --add-flags "-jar $src" 32 32 33 - unzip $src resources/logisim/img/logisim-icon.svg 34 - install -D resources/logisim/img/logisim-icon.svg $out/share/pixmaps/logisim-evolution.svg 33 + # Create icons 34 + unzip $src "resources/logisim/img/*" 35 + for size in 16 32 48 128 256; do 36 + install -D "./resources/logisim/img/logisim-icon-$size.png" "$out/share/icons/hicolor/''${size}x''${size}/apps/logisim-evolution.png" 37 + done 35 38 36 39 runHook postInstall 37 40 '';
+1 -1
pkgs/applications/terminal-emulators/tilix/default.nix
··· 26 26 src = fetchFromGitHub { 27 27 owner = "gnunn1"; 28 28 repo = "tilix"; 29 - rev = "${version}"; 29 + rev = version; 30 30 sha256 = "sha256:020gr4q7kmqq8vnsh8rw97gf1p2n1yq4d7ncyjjh9l13zkaxqqv9"; 31 31 }; 32 32
-4
pkgs/applications/virtualization/qemu/default.nix
··· 112 112 }) 113 113 ] ++ lib.optional nixosTestRunner ./force-uid0-on-9p.patch 114 114 ++ lib.optionals stdenv.hostPlatform.isMusl [ 115 - (fetchpatch { 116 - url = "https://raw.githubusercontent.com/alpinelinux/aports/2bb133986e8fa90e2e76d53369f03861a87a74ef/main/qemu/musl-F_SHLCK-and-F_EXLCK.patch"; 117 - sha256 = "1gm67v41gw6apzgz7jr3zv9z80wvkv0jaxd2w4d16hmipa8bhs0k"; 118 - }) 119 115 ./sigrtminmax.patch 120 116 (fetchpatch { 121 117 url = "https://raw.githubusercontent.com/alpinelinux/aports/2bb133986e8fa90e2e76d53369f03861a87a74ef/main/qemu/fix-sigevent-and-sigval_t.patch";
+2 -1
pkgs/data/fonts/vista-fonts/default.nix
··· 14 14 unpackPhase = '' 15 15 cabextract --lowercase --filter ppviewer.cab $src 16 16 cabextract --lowercase --filter '*.TTF' ppviewer.cab 17 + cabextract --lowercase --filter '*.TTC' ppviewer.cab 17 18 ''; 18 19 19 20 installPhase = '' 20 21 mkdir -p $out/share/fonts/truetype 21 - cp *.ttf $out/share/fonts/truetype 22 + cp *.ttf *.ttc $out/share/fonts/truetype 22 23 23 24 # Set up no-op font configs to override any aliases set up by 24 25 # other packages.
+37
pkgs/desktops/plasma-5/3rdparty/addons/bismuth/0001-Avoid-usage-of-npx.patch
··· 1 + From c9aaff2461daba31a25ed20c0789ffd7c3561887 Mon Sep 17 00:00:00 2001 2 + From: Pasquale <p3dimaria@hotmail.it> 3 + Date: Tue, 9 Nov 2021 23:12:50 +0100 4 + Subject: [PATCH] Avoid usage of npx 5 + 6 + tsc is only used for checking type annotation 7 + that are stripped by esbuild 8 + 9 + --- 10 + src/kwinscript/CMakeLists.txt | 4 ++-- 11 + 1 file changed, 2 insertions(+), 2 deletions(-) 12 + 13 + diff --git a/src/kwinscript/CMakeLists.txt b/src/kwinscript/CMakeLists.txt 14 + index 6d85d5d..6f966a4 100644 15 + --- a/src/kwinscript/CMakeLists.txt 16 + +++ b/src/kwinscript/CMakeLists.txt 17 + @@ -29,7 +29,7 @@ add_custom_target( 18 + 19 + add_custom_command( 20 + OUTPUT "bismuth/contents/code/index.mjs" 21 + - COMMAND "npx" "esbuild" 22 + + COMMAND "esbuild" 23 + "--bundle" "${CMAKE_CURRENT_SOURCE_DIR}/index.ts" 24 + "--outfile=${CMAKE_CURRENT_BINARY_DIR}/bismuth/contents/code/index.mjs" 25 + "--format=esm" 26 + @@ -40,7 +40,7 @@ add_custom_command( 27 + 28 + add_custom_target( 29 + LintViaTSC 30 + - COMMAND "npx" "tsc" "--noEmit" "--incremental" 31 + + COMMAND "true" 32 + COMMENT "👮 Checking sources using TS Compiler..." 33 + ) 34 + 35 + -- 36 + 2.33.1 37 +
+48
pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , kcoreaddons 5 + , kwindowsystem 6 + , plasma-framework 7 + , systemsettings 8 + , cmake 9 + , extra-cmake-modules 10 + , esbuild 11 + }: 12 + 13 + mkDerivation rec { 14 + pname = "bismuth"; 15 + version = "2.1.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Bismuth-Forge"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "sha256-ICpGgFvVi7tiYbMCo3JWQmbA36rdWF4NFYTWIejhxr4="; 22 + }; 23 + 24 + patches = [ 25 + ./0001-Avoid-usage-of-npx.patch 26 + ]; 27 + 28 + nativeBuildInputs = [ 29 + cmake 30 + extra-cmake-modules 31 + esbuild 32 + ]; 33 + 34 + buildInputs = [ 35 + kcoreaddons 36 + kwindowsystem 37 + plasma-framework 38 + systemsettings 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "A dynamic tiling extension for KWin"; 43 + license = licenses.mit; 44 + maintainers = with maintainers; [ pasqui23 ]; 45 + homepage = "https://bismuth-forge.github.io/bismuth/"; 46 + inherit (kwindowsystem.meta) platforms; 47 + }; 48 + }
+1
pkgs/desktops/plasma-5/default.nix
··· 155 155 thirdParty = let inherit (libsForQt5) callPackage; in { 156 156 plasma-applet-caffeine-plus = callPackage ./3rdparty/addons/caffeine-plus.nix { }; 157 157 plasma-applet-virtual-desktop-bar = callPackage ./3rdparty/addons/virtual-desktop-bar.nix { }; 158 + bismuth = callPackage ./3rdparty/addons/bismuth { }; 158 159 kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { }; 159 160 kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { }; 160 161 krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
+3 -3
pkgs/development/compilers/ldc/binary.nix
··· 3 3 4 4 let 5 5 inherit (stdenv) hostPlatform; 6 - OS = if stdenv.hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name; 7 - ARCH = toString hostPlatform.parsed.cpu.name; 6 + OS = if hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name; 7 + ARCH = if hostPlatform.isDarwin && hostPlatform.isAarch64 then "arm64" else hostPlatform.parsed.cpu.name; 8 8 in stdenv.mkDerivation { 9 9 pname = "ldc-bootstrap"; 10 10 inherit version; ··· 37 37 # from https://github.com/ldc-developers/ldc/blob/master/LICENSE 38 38 license = with licenses; [ bsd3 boost mit ncsa gpl2Plus ]; 39 39 maintainers = with maintainers; [ ThomasMader lionello ]; 40 - platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; 40 + platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 41 41 }; 42 42 }
+5 -4
pkgs/development/compilers/ldc/bootstrap.nix
··· 1 1 { callPackage }: 2 2 callPackage ./binary.nix { 3 - version = "1.19.0"; 3 + version = "1.25.0"; 4 4 hashes = { 5 5 # Get these from `nix-prefetch-url https://github.com/ldc-developers/ldc/releases/download/v1.19.0/ldc2-1.19.0-osx-x86_64.tar.xz` etc.. 6 - osx-x86_64 = "1bp3xkh9zp64dzq8isanib1gacb3nfbl70qv15qygwk1zan6zgy7"; 7 - linux-x86_64 = "146grr2lwarfk13wgkpyb77xb6b3as1is2rf4s2hipqjmc8biy1h"; 8 - linux-aarch64 = "1fv6jshfvi15m7masgxq1hgp216qjd5amizrqdf26vhrq3a08li3"; 6 + osx-x86_64 = "1xaqxf1lz8kdb0n5iycfpxpvabf1zy0akg14kg554sm85xnsf8pa"; 7 + linux-x86_64 = "1shzdq564jg3ga1hwrvpx30lpszc6pqndqndr5mqmc352znkiy5i"; 8 + linux-aarch64 = "04i4xxwhq02d98r3qrrnv5dbd4xr4d7ph3zv94z2m58z3vgphdjh"; 9 + osx-arm64 = "0b0cpgzn23clggx0cvdaja29q7w7ihkmjbnf1md03h9h5nzp9z1v"; 9 10 }; 10 11 }
+1 -1
pkgs/development/compilers/ldc/generic.nix
··· 132 132 # from https://github.com/ldc-developers/ldc/blob/master/LICENSE 133 133 license = with licenses; [ bsd3 boost mit ncsa gpl2Plus ]; 134 134 maintainers = with maintainers; [ ThomasMader lionello ]; 135 - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 135 + platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ]; 136 136 }; 137 137 }
+35
pkgs/development/libraries/collada-dom/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, boost, libxml2, minizip, readline }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "collada-dom"; 5 + version = "unstable-2020-01-03"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "rdiankov"; 9 + repo = "collada-dom"; 10 + rev = "c1e20b7d6ff806237030fe82f126cb86d661f063"; 11 + sha256 = "sha256-A1ne/D6S0shwCzb9spd1MoSt/238HWA8dvgd+DC9cXc="; 12 + }; 13 + 14 + postInstall = '' 15 + chmod +w -R $out 16 + ln -s $out/include/*/* $out/include 17 + ''; 18 + 19 + nativeBuildInputs = [ cmake ]; 20 + 21 + buildInputs = [ 22 + boost 23 + libxml2 24 + minizip 25 + readline 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "Lightweight version of collada-dom, with only the parser."; 30 + homepage = "https://github.com/rdiankov/collada-dom"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ marius851000 ]; 33 + platforms = platforms.all; 34 + }; 35 + }
+10 -1
pkgs/development/libraries/giflib/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412, docbook_xsl, libxml2, fixDarwinDylibNames }: 1 + { lib, stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412, docbook_xsl, libxml2, fixDarwinDylibNames, pkgsStatic }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "giflib-5.2.1"; ··· 19 19 postPatch = '' 20 20 substituteInPlace Makefile \ 21 21 --replace 'PREFIX = /usr/local' 'PREFIX = ${builtins.placeholder "out"}' 22 + '' 23 + # Upstream build system does not support NOT building shared libraries. 24 + + lib.optionalString stdenv.hostPlatform.isStatic '' 25 + sed -i '/all:/ s/libgif.so//' Makefile 26 + sed -i '/all:/ s/libutil.so//' Makefile 27 + sed -i '/-m 755 libgif.so/ d' Makefile 28 + sed -i '/ln -sf libgif.so/ d' Makefile 22 29 ''; 23 30 24 31 nativeBuildInputs = lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ]; 25 32 26 33 buildInputs = [ xmlto docbook_xml_dtd_412 docbook_xsl libxml2 ]; 34 + 35 + passthru.tests.static = pkgsStatic.giflib; 27 36 28 37 meta = { 29 38 description = "A library for reading and writing gif images";
+1 -1
pkgs/development/libraries/glog/default.nix
··· 42 42 license = licenses.bsd3; 43 43 description = "Library for application-level logging"; 44 44 platforms = platforms.unix; 45 - maintainers = with lib.maintainers; [ nh2 r-burns ]; 45 + maintainers = with maintainers; [ nh2 r-burns ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/libraries/libbsd/default.nix
··· 14 14 # darwin changes configure.ac which means we need to regenerate 15 15 # the configure scripts 16 16 nativeBuildInputs = [ autoreconfHook ]; 17 - buildInputs = [ libmd ]; 17 + propagatedBuildInputs = [ libmd ]; 18 18 19 19 patches = [ ./darwin.patch ]; 20 20
+53
pkgs/development/libraries/libdeltachat/darwin-dylib.patch
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 5ed8020c..44ca43e7 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -2,12 +2,20 @@ cmake_minimum_required(VERSION 3.16) 6 + project(deltachat LANGUAGES C) 7 + include(GNUInstallDirs) 8 + 9 + +if(APPLE) 10 + + set(DYNAMIC_EXT "dylib") 11 + +elseif(UNIX) 12 + + set(DYNAMIC_EXT "so") 13 + +else() 14 + + set(DYNAMIC_EXT "dll") 15 + +endif() 16 + + 17 + find_program(CARGO cargo) 18 + 19 + add_custom_command( 20 + OUTPUT 21 + "target/release/libdeltachat.a" 22 + - "target/release/libdeltachat.so" 23 + + "target/release/libdeltachat.${DYNAMIC_EXT}" 24 + "target/release/pkgconfig/deltachat.pc" 25 + COMMAND 26 + PREFIX=${CMAKE_INSTALL_PREFIX} 27 + @@ -32,11 +40,11 @@ add_custom_target( 28 + ALL 29 + DEPENDS 30 + "target/release/libdeltachat.a" 31 + - "target/release/libdeltachat.so" 32 + + "target/release/libdeltachat.${DYNAMIC_EXT}" 33 + "target/release/pkgconfig/deltachat.pc" 34 + ) 35 + 36 + install(FILES "deltachat-ffi/deltachat.h" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) 37 + install(FILES "target/release/libdeltachat.a" DESTINATION ${CMAKE_INSTALL_LIBDIR}) 38 + -install(FILES "target/release/libdeltachat.so" DESTINATION ${CMAKE_INSTALL_LIBDIR}) 39 + +install(FILES "target/release/libdeltachat.${DYNAMIC_EXT}" DESTINATION ${CMAKE_INSTALL_LIBDIR}) 40 + install(FILES "target/release/pkgconfig/deltachat.pc" DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) 41 + diff --git a/python/install_python_bindings.py b/python/install_python_bindings.py 42 + index c8ed43e2..714c7e30 100755 43 + --- a/python/install_python_bindings.py 44 + +++ b/python/install_python_bindings.py 45 + @@ -24,7 +24,7 @@ 46 + 47 + print("running:", " ".join(cmd)) 48 + subprocess.check_call(cmd) 49 + - subprocess.check_call("rm -rf build/ src/deltachat/*.so" , shell=True) 50 + + subprocess.check_call("rm -rf build/ src/deltachat/*.so src/deltachat/*.dylib" , shell=True) 51 + 52 + if len(sys.argv) <= 1 or sys.argv[1] != "onlybuild": 53 + subprocess.check_call([
+4 -13
pkgs/development/libraries/libdeltachat/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , cmake 6 5 , openssl 7 6 , perl ··· 16 15 17 16 stdenv.mkDerivation rec { 18 17 pname = "libdeltachat"; 19 - version = "1.60.0"; 18 + version = "1.63.0"; 20 19 21 20 src = fetchFromGitHub { 22 21 owner = "deltachat"; 23 22 repo = "deltachat-core-rust"; 24 23 rev = version; 25 - sha256 = "1agm5xyaib4ynmw4mhgmkhh4lnxs91wv0q9i1zfihv2vkckfm2s2"; 24 + sha256 = "1511jh38h7nmn4dpyi1vfxvhybcacc6gavwfifxvb5npirphziga"; 26 25 }; 27 26 28 27 patches = [ 29 28 # https://github.com/deltachat/deltachat-core-rust/pull/2589 30 - (fetchpatch { 31 - url = "https://github.com/deltachat/deltachat-core-rust/commit/408467e85d04fbbfd6bed5908d84d9e995943487.patch"; 32 - sha256 = "1j2ywaazglgl6370js34acrg0wrh0b7krqg05dfjf65n527lzn59"; 33 - }) 29 + ./darwin-dylib.patch 34 30 ./no-static-lib.patch 35 - # https://github.com/deltachat/deltachat-core-rust/pull/2660 36 - (fetchpatch { 37 - url = "https://github.com/deltachat/deltachat-core-rust/commit/8fb5e038a97d8ae68564c885d61b93127a68366d.patch"; 38 - sha256 = "088pzfrrkgfi4646dc72404s3kykcpni7hgkppalwlzg0p4is41x"; 39 - }) 40 31 ]; 41 32 42 33 cargoDeps = rustPlatform.fetchCargoTarball { 43 34 inherit src; 44 35 name = "${pname}-${version}"; 45 - sha256 = "09d3mw2hb1gmqg7smaqwnfm7izw40znl0h1dz7s2imms2cnkjws1"; 36 + sha256 = "0hfp2k84mvq11h7q96hkcj3k6f3sxw8wx89acg4hy6lbh8xpy6ai"; 46 37 }; 47 38 48 39 nativeBuildInputs = [
+4 -5
pkgs/development/libraries/libdeltachat/no-static-lib.patch
··· 1 1 diff --git a/CMakeLists.txt b/CMakeLists.txt 2 - index fe7abe08..acdbe0d6 100644 2 + index 44ca43e7..8b6960dd 100644 3 3 --- a/CMakeLists.txt 4 4 +++ b/CMakeLists.txt 5 - @@ -13,7 +13,6 @@ find_program(CARGO cargo) 5 + @@ -14,7 +14,6 @@ find_program(CARGO cargo) 6 6 7 7 add_custom_command( 8 8 OUTPUT ··· 10 10 "target/release/libdeltachat.${DYNAMIC_EXT}" 11 11 "target/release/pkgconfig/deltachat.pc" 12 12 COMMAND 13 - @@ -38,13 +37,11 @@ add_custom_target( 13 + @@ -39,12 +38,10 @@ add_custom_target( 14 14 lib_deltachat 15 15 ALL 16 16 DEPENDS ··· 19 19 "target/release/pkgconfig/deltachat.pc" 20 20 ) 21 21 22 - include(GNUInstallDirs) 23 22 install(FILES "deltachat-ffi/deltachat.h" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) 24 23 -install(FILES "target/release/libdeltachat.a" DESTINATION ${CMAKE_INSTALL_LIBDIR}) 25 24 install(FILES "target/release/libdeltachat.${DYNAMIC_EXT}" DESTINATION ${CMAKE_INSTALL_LIBDIR}) 26 25 install(FILES "target/release/pkgconfig/deltachat.pc" DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) 27 26 diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml 28 - index a34a27ba..cf354abb 100644 27 + index de0fbafe..120efec9 100644 29 28 --- a/deltachat-ffi/Cargo.toml 30 29 +++ b/deltachat-ffi/Cargo.toml 31 30 @@ -12,7 +12,7 @@ categories = ["cryptography", "std", "email"]
+6 -4
pkgs/development/libraries/openscenegraph/default.nix
··· 2 2 libX11, libXinerama, libXrandr, libGLU, libGL, 3 3 glib, ilmbase, libxml2, pcre, zlib, 4 4 AGL, Carbon, Cocoa, Foundation, 5 + boost, 5 6 jpegSupport ? true, libjpeg, 6 7 exrSupport ? false, openexr, 7 8 gifSupport ? true, giflib, ··· 9 10 tiffSupport ? true, libtiff, 10 11 gdalSupport ? false, gdal, 11 12 curlSupport ? true, curl, 12 - colladaSupport ? false, opencollada, 13 + colladaSupport ? false, collada-dom, 13 14 opencascadeSupport ? false, opencascade, 14 15 ffmpegSupport ? false, ffmpeg, 15 16 nvttSupport ? false, nvidia-texture-tools, ··· 20 21 lasSupport ? false, libLAS, 21 22 luaSupport ? false, lua, 22 23 sdlSupport ? false, SDL2, 23 - restSupport ? false, asio, boost, 24 + restSupport ? false, asio, 24 25 withApps ? false, 25 26 withExamples ? false, fltk, wxGTK, 26 27 }: ··· 48 49 ++ lib.optional tiffSupport libtiff 49 50 ++ lib.optional gdalSupport gdal 50 51 ++ lib.optional curlSupport curl 51 - ++ lib.optional colladaSupport opencollada 52 + ++ lib.optional colladaSupport collada-dom 52 53 ++ lib.optional opencascadeSupport opencascade 53 54 ++ lib.optional ffmpegSupport ffmpeg 54 55 ++ lib.optional nvttSupport nvidia-texture-tools ··· 59 60 ++ lib.optional lasSupport libLAS 60 61 ++ lib.optional luaSupport lua 61 62 ++ lib.optional sdlSupport SDL2 62 - ++ lib.optionals restSupport [ asio boost ] 63 + ++ lib.optional restSupport asio 63 64 ++ lib.optionals withExamples [ fltk wxGTK ] 64 65 ++ lib.optionals stdenv.isDarwin [ AGL Carbon Cocoa Foundation ] 66 + ++ lib.optional (restSupport || colladaSupport) boost 65 67 ; 66 68 67 69 cmakeFlags = lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON";
+27
pkgs/development/libraries/recastnavigation/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, libGL, SDL2, libGLU }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "recastai"; 5 + # use latest revision for the CMake build process and OpenMW 6 + # OpenMW use e75adf86f91eb3082220085e42dda62679f9a3ea 7 + version = "unstable-2021-03-05"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "recastnavigation"; 11 + repo = "recastnavigation"; 12 + rev = "c5cbd53024c8a9d8d097a4371215e3342d2fdc87"; 13 + sha256 = "sha256-QP3lMMFR6fiKQTksAkRL6X9yaoVz2xt4QSIP9g6piww="; 14 + }; 15 + 16 + nativeBuildInputs = [ cmake ]; 17 + 18 + buildInputs = [ libGL SDL2 libGLU ]; 19 + 20 + meta = with lib; { 21 + homepage = "https://github.com/recastnavigation/recastnavigation"; 22 + description = "Navigation-mesh Toolset for Games"; 23 + license = licenses.zlib; 24 + maintainers = with maintainers; [ marius851000 ]; 25 + platforms = platforms.all; 26 + }; 27 + }
+2 -2
pkgs/development/python-modules/authheaders/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "authheaders"; 7 - version = "0.13.0"; 7 + version = "0.14.1"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "935726b784cc636cbcfed2c977f1a6887dc60056806da4eff60db932c5896692"; 11 + sha256 = "4e601b5b54080019a2f548fadf80ddf9c5538615607c7fb602936404aafe67e2"; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ]
+2 -2
pkgs/development/python-modules/azure-mgmt-authorization/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-authorization"; 14 - version = "1.0.0"; 14 + version = "2.0.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "9a9fc16866b46387853381ab4fa0f84c1765e0afea5b0124709ea9fae10ee752"; 19 + sha256 = "0776edc4980be940a8602eefc0372b4d1a1fa26caa46e3c0234e0c7a0feda4ec"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-containerinstance"; 14 - version = "9.0.0"; 14 + version = "9.1.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "041431c5a768ac652aac318a17f2a53b90db968494c79abbafec441d0be387ff"; 19 + sha256 = "22164b0c59138b37bc48ba6d476bf635152bc428dcb420b521a14b8c25c797ad"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-network/default.nix
··· 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 - version = "19.1.0"; 13 + version = "19.2.0"; 14 14 pname = "azure-mgmt-network"; 15 15 disabled = !isPy3k; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 19 extension = "zip"; 20 - sha256 = "62ef7fe8ba98e56412b434c9c35dc755b3c5e469f2c01bbed2ce0d12973a044b"; 20 + sha256 = "c8da1cf9523b89d4b268546ea087153372633962e31a4e6befae20d0ae308bac"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-recoveryservicesbackup"; 13 - version = "2.0.0"; 13 + version = "3.0.0"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "d3e60daefbc20a7fa381c7ad1498f4bf4bb5a1414c1c64188cc9d5c98c4e12ac"; 18 + sha256 = "1992486b28ddd6d4f597fd3004217cd2caf4f4dc8a0ce71226b5ae767ace3a18"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+1
pkgs/development/python-modules/cirq-rigetti/default.nix
··· 34 34 postPatch = '' 35 35 substituteInPlace requirements.txt \ 36 36 --replace "attrs~=20.3.0" "attrs" \ 37 + --replace "certifi~=2021.5.30" "certifi" \ 37 38 --replace "h11~=0.9.0" "h11" \ 38 39 --replace "httpcore~=0.11.1" "httpcore" \ 39 40 --replace "httpx~=0.15.5" "httpx" \
+13 -2
pkgs/development/python-modules/dask/default.nix
··· 5 5 , cloudpickle 6 6 , distributed 7 7 , fetchFromGitHub 8 + , fetchpatch 8 9 , fsspec 9 10 , jinja2 10 11 , numpy ··· 22 23 23 24 buildPythonPackage rec { 24 25 pname = "dask"; 25 - version = "2021.09.1"; 26 + version = "2021.10.0"; 26 27 format = "setuptools"; 27 28 28 29 disabled = pythonOlder "3.7"; ··· 31 32 owner = "dask"; 32 33 repo = pname; 33 34 rev = version; 34 - sha256 = "sha256-+UkbXbWV5R/QtVb5rWm/5SA+IoWsIfBciL3vg138jkc="; 35 + sha256 = "07ysrs46x5w8rc2df0j06rsw58ahcysd6lwjk5riqpjlpwdfmg7p"; 35 36 }; 37 + 38 + patches = [ 39 + # remove with next bump 40 + (fetchpatch { 41 + name = "fix-tests-against-distributed-2021.10.0.patch"; 42 + url = "https://github.com/dask/dask/commit/cd65507841448ad49001cf27564102e2fb964d0a.patch"; 43 + includes = [ "dask/tests/test_distributed.py" ]; 44 + sha256 = "1i4i4k1lzxcydq9l80jyifq21ny0j3i47rviq07ai488pvx1r2al"; 45 + }) 46 + ]; 36 47 37 48 propagatedBuildInputs = [ 38 49 cloudpickle
+2 -2
pkgs/development/python-modules/distributed/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "distributed"; 22 - version = "2021.9.1"; 22 + version = "2021.10.0"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 # get full repository need conftest.py to run tests 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - sha256 = "sha256-9N65ap2+9bBK0DCrkF3+1xuJPXmjaL1Xh7ISaLTtX/g="; 28 + sha256 = "0kfq7lwv2n2wiws4v2rj36wx56jvkp2fl6zxg04p2lc3vcgha9za"; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/django_environ/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "django-environ"; 10 - version = "0.7.0"; 10 + version = "0.8.1"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "b99bd3704221f8b717c8517d8146e53fdee509d9e99056be560060003b92213e"; 14 + sha256 = "6f0bc902b43891656b20486938cba0861dc62892784a44919170719572a534cb"; 15 15 }; 16 16 17 17 # The testsuite fails to modify the base environment
+2 -2
pkgs/development/python-modules/easy-thumbnails/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "easy-thumbnails"; 7 - version = "2.7.1"; 7 + version = "2.7.2"; 8 8 9 9 meta = { 10 10 description = "Easy thumbnails for Django"; ··· 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "f862949208d9066cd3d84ffcf9c2dbe9c7344ea6152b741e440f861eca46855c"; 17 + sha256 = "a7dd9cf97efaf70ba5d76484a962f08ba65b31f1681bc417257743650e9e8a8a"; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ django pillow ];
+2 -2
pkgs/development/python-modules/exchangelib/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "exchangelib"; 30 - version = "4.5.2"; 30 + version = "4.6.0"; 31 31 disabled = pythonOlder "3.6"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "ecederstrand"; 35 35 repo = pname; 36 36 rev = "v${version}"; 37 - sha256 = "1zz4p13ww9y5x0ifvcj652hgfbjqbnmr3snwrs0p315sc3y47ggm"; 37 + sha256 = "1lx5q3m3vhbx9xnm3v25xrrxvli1nh0lsza51ln4y3fk79ln91hv"; 38 38 }; 39 39 40 40 propagatedBuildInputs = [
+5 -5
pkgs/development/python-modules/huawei-lte-api/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 - , dicttoxml 5 + , pycryptodomex 6 + , pytestCheckHook 6 7 , requests 7 8 , xmltodict 8 - , pytestCheckHook 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "huawei-lte-api"; 13 - version = "1.4.18"; 13 + version = "1.5.2"; 14 14 15 15 disabled = pythonOlder "3.4"; 16 16 ··· 18 18 owner = "Salamek"; 19 19 repo = "huawei-lte-api"; 20 20 rev = version; 21 - sha256 = "1qaqxmh03j10wa9wqbwgc5r3ays8wfr7bldvsm45fycr3qfyn5fg"; 21 + sha256 = "sha256-xG0QTvjYW0/C/7NNhl/d024TSAe0TzgMknOXvNxrPOY="; 22 22 }; 23 23 24 24 postPatch = '' ··· 27 27 ''; 28 28 29 29 propagatedBuildInputs = [ 30 - dicttoxml 30 + pycryptodomex 31 31 requests 32 32 xmltodict 33 33 ];
+2 -2
pkgs/development/python-modules/icalendar/default.nix
··· 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 - version = "4.0.8"; 10 + version = "4.0.9"; 11 11 pname = "icalendar"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "7508a92b4e36049777640b0ae393e7219a16488d852841a0e57b44fe51d9f848"; 15 + sha256 = "cc73fa9c848744843046228cb66ea86cd8c18d73a51b140f7c003f760b84a997"; 16 16 }; 17 17 18 18 buildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/jaeger-client/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "jaeger-client"; 12 - version = "4.6.1"; 12 + version = "4.8.0"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "3bc27ad77e035efd0899f377a15f180467fec44b2afbf5be0660cc888a2a4ac3"; 16 + sha256 = "3157836edab8e2c209bd2d6ae61113db36f7ee399e66b1dcbb715d87ab49bfe0"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/jellyfish/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "jellyfish"; 11 - version = "0.8.8"; 11 + version = "0.8.9"; 12 12 13 13 disabled = !isPy3k; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "0506089cacf9b5897442134417b04b3c6610c19f280ae535eace390dc6325a5c"; 17 + sha256 = "90d25e8f5971ebbcf56f216ff5bb65d6466572b78908c88c47ab588d4ea436c2"; 18 18 }; 19 19 20 20 checkInputs = [ pytest unicodecsv ];
+37
pkgs/development/python-modules/manimpango/default.nix
··· 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, python, pkg-config, pango, cython, AppKit, pytestCheckHook }: 2 + 3 + buildPythonPackage rec { 4 + pname = "manimpango"; 5 + version = "0.3.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ManimCommunity"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "ldZfvv5kloQ0uj0agxOP8cRh+Ix8f9Z0PT+pnhWYjiQ="; 12 + }; 13 + 14 + postPatch = '' 15 + substituteInPlace setup.cfg --replace "--cov --no-cov-on-fail" "" 16 + ''; 17 + 18 + nativeBuildInputs = [ pkg-config ]; 19 + buildInputs = [ pango ] ++ lib.optionals stdenv.isDarwin [ AppKit ]; 20 + propagatedBuildInputs = [ 21 + cython 22 + ]; 23 + 24 + preBuild = '' 25 + ${python.interpreter} setup.py build_ext --inplace 26 + ''; 27 + 28 + checkInputs = [ pytestCheckHook ]; 29 + pythonImportsCheck = [ "manimpango" ]; 30 + 31 + meta = with lib; { 32 + homepage = "https://github.com/ManimCommunity/ManimPango"; 33 + license = licenses.gpl3Plus; 34 + description = "Binding for Pango"; 35 + maintainers = [ maintainers.angustrau ]; 36 + }; 37 + }
+26 -4
pkgs/development/python-modules/mdp/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytest, future, numpy }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , future 5 + , numpy 6 + , pytest 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "MDP"; ··· 9 15 sha256 = "ac52a652ccbaed1857ff1209862f03bf9b06d093b12606fb410787da3aa65a0e"; 10 16 }; 11 17 18 + propagatedBuildInputs = [ future numpy ]; 19 + 12 20 checkInputs = [ pytest ]; 13 - propagatedBuildInputs = [ future numpy ]; 21 + 22 + doCheck = true; 14 23 15 - # Tests disabled because of missing dependencies not in nix 16 - doCheck = false; 24 + pythonImportsCheck = [ "mdp" "bimdp" ]; 25 + 26 + postPatch = '' 27 + # https://github.com/mdp-toolkit/mdp-toolkit/issues/92 28 + substituteInPlace mdp/utils/routines.py --replace numx.typeDict numx.sctypeDict 29 + ''; 30 + 31 + checkPhase = '' 32 + runHook preCheck 33 + 34 + pytest --seed 7710873 mdp 35 + pytest --seed 7710873 bimdp 36 + 37 + runHook postCheck 38 + ''; 17 39 18 40 meta = with lib; { 19 41 description = "Library for building complex data processing software by combining widely used machine learning algorithms";
+2 -2
pkgs/development/python-modules/nbdime/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "nbdime"; 28 - version = "3.1.0"; 28 + version = "3.1.1"; 29 29 disabled = !isPy3k; 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - sha256 = "12dc4390b355b26d07ac8d11d50efbcb54bae0ad5842b817131babd2f4567963"; 33 + sha256 = "67767320e971374f701a175aa59abd3a554723039d39fae908e72d16330d648b"; 34 34 }; 35 35 36 36 checkInputs = [
+34
pkgs/development/python-modules/panacotta/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "panacotta"; 9 + version = "0.1"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.8"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "u1f35c"; 16 + repo = "python-panacotta"; 17 + rev = "panacotta-${version}"; 18 + sha256 = "0v2fa18n50iy18n22klkgjral728iplj6yk3b6hjkzas5dk9wd9c"; 19 + }; 20 + 21 + # Project has no tests 22 + doCheck = false; 23 + 24 + pythonImportsCheck = [ 25 + "panacotta" 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "Python API for controlling Panasonic Blu-Ray players"; 30 + homepage = "https://github.com/u1f35c/python-panacotta"; 31 + license = licenses.gpl3Plus; 32 + maintainers = with maintainers; [ fab ]; 33 + }; 34 + }
+24 -8
pkgs/development/python-modules/pyaftership/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , isPy3k 4 + , pythonOlder 5 5 , aiohttp 6 - , async-timeout 7 6 , aresponses 8 7 , pytest-asyncio 9 8 , pytestCheckHook ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "pyaftership"; 14 - version = "21.1.0"; 13 + version = "21.11.0"; 14 + format = "setuptools"; 15 15 16 - disabled = !isPy3k; 16 + disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "ludeeus"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "0jyzgwaijkp80whi58a0hgjzmnlczmd9vwn11z2m0j01kbdwznn5"; 22 + sha256 = "sha256-SN7fvI/+VHYn2eYQe5wp6lEZ73YeZbsiPjDiq/Ibk3Q="; 23 23 }; 24 24 25 - propagatedBuildInputs = [ aiohttp async-timeout ]; 25 + propagatedBuildInputs = [ 26 + aiohttp 27 + ]; 26 28 27 - checkInputs = [ pytestCheckHook aresponses pytest-asyncio ]; 28 - pythonImportsCheck = [ "pyaftership" ]; 29 + checkInputs = [ 30 + aresponses 31 + pytest-asyncio 32 + pytestCheckHook 33 + ]; 34 + 35 + postPatch = '' 36 + # Upstream is releasing with the help of a CI to PyPI, GitHub releases 37 + # are not in their focus 38 + substituteInPlace setup.py \ 39 + --replace 'version="main",' 'version="${version}",' 40 + ''; 41 + 42 + pythonImportsCheck = [ 43 + "pyaftership" 44 + ]; 29 45 30 46 meta = with lib; { 31 47 description = "Python wrapper package for the AfterShip API";
+2 -2
pkgs/development/python-modules/pyopencl/default.nix
··· 21 21 if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ]; 22 22 in buildPythonPackage rec { 23 23 pname = "pyopencl"; 24 - version = "2021.2.8"; 24 + version = "2021.2.9"; 25 25 26 26 checkInputs = [ pytest ]; 27 27 buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs; ··· 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - sha256 = "15809b5d2b9a86ad01e31d176c00415436805ac884c4d197d9263bfe98280d76"; 33 + sha256 = "51425e65ec49c738eefe21b1eeb1f39245b01cc0ddfd495fbe1f8df33dbc6c9e"; 34 34 }; 35 35 36 36 # py.test is not needed during runtime, so remove it from `install_requires`
+2 -2
pkgs/development/python-modules/pytest-flakes/default.nix
··· 7 7 # upstream has abandoned project in favor of pytest-flake8 8 8 # retaining package to not break other packages 9 9 pname = "pytest-flakes"; 10 - version = "4.0.3"; 10 + version = "4.0.4"; 11 11 disabled = pythonOlder "3.5"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "bf070c5485dad82d5b5f5d0eb08d269737e378492d9a68f5223b0a90924c7754"; 15 + sha256 = "551467a129331bed83596f3145d9eaf6541c26a03dc1b36419efef8ae231341b"; 16 16 }; 17 17 18 18 buildInputs = [ pytest ];
+51
pkgs/development/python-modules/pytraccar/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , aresponses 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , pytestCheckHook 7 + , pytest-asyncio 8 + , pythonOlder 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "pytraccar"; 13 + version = "0.10.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "ludeeus"; 20 + repo = pname; 21 + rev = version; 22 + sha256 = "08f7rwvbc1h17lvgv9823ssd3p0vw7yzsg40lbkacgqqiv1hxfzs"; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + aiohttp 27 + ]; 28 + 29 + checkInputs = [ 30 + aresponses 31 + pytestCheckHook 32 + pytest-asyncio 33 + ]; 34 + 35 + postPatch = '' 36 + # Upstream doesn't set version in the repo 37 + substituteInPlace setup.py \ 38 + --replace 'version="master",' 'version="${version}",' 39 + ''; 40 + 41 + pythonImportsCheck = [ 42 + "pytraccar" 43 + ]; 44 + 45 + meta = with lib; { 46 + description = "Python library to handle device information from Traccar"; 47 + homepage = "https://github.com/ludeeus/pytraccar"; 48 + license = licenses.mit; 49 + maintainers = with maintainers; [ fab ]; 50 + }; 51 + }
+51
pkgs/development/python-modules/pyuptimerobot/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , aresponses 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , pytestCheckHook 7 + , pytest-asyncio 8 + , pythonOlder 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "pyuptimerobot"; 13 + version = "21.11.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "ludeeus"; 20 + repo = pname; 21 + rev = version; 22 + sha256 = "1nmmwp9m38b75lz51ypcj0qxnxm9wq4id5cggl0pn2rx6gwnbw9n"; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + aiohttp 27 + ]; 28 + 29 + checkInputs = [ 30 + aresponses 31 + pytestCheckHook 32 + pytest-asyncio 33 + ]; 34 + 35 + postPatch = '' 36 + # Upstream doesn't set version in the repo 37 + substituteInPlace setup.py \ 38 + --replace 'version="main",' 'version="${version}",' 39 + ''; 40 + 41 + pythonImportsCheck = [ 42 + "pyuptimerobot" 43 + ]; 44 + 45 + meta = with lib; { 46 + description = "Python API wrapper for Uptime Robot"; 47 + homepage = "https://github.com/ludeeus/pyuptimerobot"; 48 + license = licenses.mit; 49 + maintainers = with maintainers; [ fab ]; 50 + }; 51 + }
+2 -2
pkgs/development/python-modules/sagemaker/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "sagemaker"; 19 - version = "2.63.0"; 19 + version = "2.63.1"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - sha256 = "b4d793217181f4ff1d269aa22e44f82e21a060ec9723301e1ae5e7d9082c76c8"; 23 + sha256 = "924847e9793b76d188049718aabbcad975296bb267812ad18e0279e7af0cb748"; 24 24 }; 25 25 26 26 pythonImportsCheck = [
pkgs/development/python-modules/simple_di/default.nix pkgs/development/python-modules/simple-di/default.nix
+2 -2
pkgs/development/python-modules/staticjinja/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "staticjinja"; 19 - version = "4.1.0"; 19 + version = "4.1.1"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.6"; ··· 26 26 owner = "staticjinja"; 27 27 repo = pname; 28 28 rev = version; 29 - sha256 = "sha256-4IL+7ncJPd1e7k5oFRjQ6yvDjozcBAAZPf88biNTiLU="; 29 + sha256 = "sha256-Bpgff3VaTylnYpkWoaWEiRWu4sYSP6dLbHDOjAhj7BM="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+20 -8
pkgs/development/python-modules/streamz/default.nix
··· 14 14 , toolz 15 15 , tornado 16 16 , zict 17 + , fetchpatch 17 18 }: 18 19 19 20 buildPythonPackage rec { ··· 28 29 sha256 = "sha256-0wZ1ldLFRAIL9R+gLfwsFbL+gvdORAkYWNjnDmeafm8="; 29 30 }; 30 31 32 + patches = [ 33 + # remove with next bump 34 + (fetchpatch { 35 + name = "fix-tests-against-distributed-2021.10.0.patch"; 36 + url = "https://github.com/python-streamz/streamz/commit/5bd3bc4d305ff40c740bc2550c8491be9162778a.patch"; 37 + sha256 = "1xzxcbf7yninkyizrwm3ahqk6ij2fmh0454iqjx2n7mmzx3sazx7"; 38 + includes = ["streamz/tests/test_dask.py"]; 39 + }) 40 + ]; 41 + 31 42 propagatedBuildInputs = [ 32 43 networkx 33 44 six ··· 46 57 requests 47 58 ]; 48 59 60 + pythonImportsCheck = [ 61 + "streamz" 62 + ]; 63 + 49 64 disabledTests = [ 50 - # Disable test_tcp_async because fails on sandbox build 51 - "test_partition_timeout" 65 + # test_tcp_async fails on sandbox build 52 66 "test_tcp_async" 53 67 "test_tcp" 68 + "test_partition_timeout" 69 + # flaky 70 + "test_from_iterable_backpressure" 54 71 ]; 55 - 56 72 disabledTestPaths = [ 57 - # Disable kafka tests 73 + # disable kafka tests 58 74 "streamz/tests/test_kafka.py" 59 - ]; 60 - 61 - pythonImportsCheck = [ 62 - "streamz" 63 75 ]; 64 76 65 77 meta = with lib; {
+1 -1
pkgs/development/python-modules/swspotify/default.nix
··· 17 17 requests flask flask-cors dbus-python 18 18 ]; 19 19 20 - preConfigure = '' 20 + postPatch = '' 21 21 substituteInPlace setup.py \ 22 22 --replace 'flask==2.0.1' 'flask' 23 23 '';
+2 -2
pkgs/development/python-modules/tweepy/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "tweepy"; 5 - version = "3.10.0"; 5 + version = "4.0.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "76e6954b806ca470dda877f57db8792fff06a0beba0ed43efc3805771e39f06a"; 9 + sha256 = "3bbb14a0ddef1ca8c9e8686ab2f647163afa02a6bab83507335ce647e9653a90"; 10 10 }; 11 11 12 12 doCheck = false;
+2 -2
pkgs/development/python-modules/vispy/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "vispy"; 19 - version = "0.9.1"; 19 + version = "0.9.3"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - sha256 = "75e2923792b937fbb0eb817716430613b6a2b37331cffb13bf623913a76b1da1"; 23 + sha256 = "bc3aec042637947d4e999121bab224077a6f7ede4af745102f41737f7c81c05a"; 24 24 }; 25 25 26 26 patches = [
+2 -2
pkgs/development/python-modules/xarray/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "xarray"; 14 - version = "0.19.0"; 14 + version = "0.20.1"; 15 15 disabled = !isPy3k; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "3a365ce09127fc841ba88baa63f37ca61376ffe389a6c5e66d52f2c88c23a62b"; 19 + sha256 = "9c0bffd8b55fdef277f8f6c817153eb51fa4e58653a7ad92eaed9984164b7bdb"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/zarr/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "zarr"; 15 - version = "2.10.1"; 15 + version = "2.10.2"; 16 16 disabled = isPy27; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "29e90114f037d433752b3cf951e4a3cb6c6f67b6501a273439b4be4a824e4caf"; 20 + sha256 = "5c6ae914ab9215631bb95c09e76b9b9b4fffa70fec0c7bca26b68387d858ebe2"; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+21
pkgs/development/tools/fortran-language-server/default.nix
··· 1 + { lib, fetchPypi, buildPythonApplication }: 2 + 3 + buildPythonApplication rec { 4 + pname = "fortran-language-server"; 5 + version = "1.12.0"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "7Dkh7yPX4rULkzfJFxg47YxrCaxuHk+k3TOINHS9T5A="; 10 + }; 11 + 12 + checkPhase = "$out/bin/fortls --help 1>/dev/null"; 13 + pythonImportsCheck = [ "fortls" ]; 14 + 15 + meta = with lib; { 16 + description = "FORTRAN Language Server for the Language Server Protocol"; 17 + homepage = "https://pypi.org/project/fortran-language-server/"; 18 + license = [ licenses.mit ]; 19 + maintainers = [ maintainers.sheepforce ]; 20 + }; 21 + }
+32 -13
pkgs/games/openmw/default.nix
··· 13 13 , unshield 14 14 , openal 15 15 , libXt 16 + , lz4 17 + , recastnavigation 16 18 }: 17 19 18 20 let 19 - openscenegraph_ = openscenegraph.overrideDerivation (self: { 21 + openscenegraph_openmw = (openscenegraph.override { colladaSupport = true; }) 22 + .overrideDerivation (self: { 23 + src = fetchFromGitHub { 24 + owner = "OpenMW"; 25 + repo = "osg"; 26 + rev = "bbe61c3bc510a4f5bb4aea21cce506519c2d24e6"; 27 + sha256 = "sha256-t3smLqstp7wWfi9HXJoBCek+3acqt/ySBYF8RJOG6Mo="; 28 + }; 29 + }); 30 + 31 + bullet_openmw = bullet.overrideDerivation (old: rec { 32 + version = "3.17"; 20 33 src = fetchFromGitHub { 21 - owner = "OpenMW"; 22 - repo = "osg"; 23 - # commit does not exist on any branch on the target repository 24 - rev = "1556cd7966ebc1c80b6626988d2b25fb43a744cf"; 25 - sha256 = "0d74hijzmj82nx3jkv5qmr3pkgvplra0b8fbjx1y3vmzxamb0axd"; 34 + owner = "bulletphysics"; 35 + repo = "bullet3"; 36 + rev = version; 37 + sha256 = "sha256-uQ4X8F8nmagbcFh0KexrmnhHIXFSB3A1CCnjPVeHL3Q="; 26 38 }; 39 + patches = []; 40 + cmakeFlags = (old.cmakeFlags or []) ++ [ 41 + "-DUSE_DOUBLE_PRECISION=ON" 42 + "-DBULLET2_MULTITHREADING=ON" 43 + ]; 27 44 }); 28 45 29 46 in 30 47 mkDerivation rec { 31 - version = "0.46.0"; 32 48 pname = "openmw"; 49 + version = "0.47.0"; 33 50 34 51 src = fetchFromGitHub { 35 52 owner = "OpenMW"; 36 53 repo = "openmw"; 37 54 rev = "${pname}-${version}"; 38 - sha256 = "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x"; 55 + sha256 = "sha256-Xq9hDUTCQr79Zzjk0CsiXclVTHK6nrSowukIQqVdrKY="; 39 56 }; 40 57 41 58 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; ··· 43 60 buildInputs = [ 44 61 SDL2 45 62 boost 46 - bullet 63 + bullet_openmw 47 64 ffmpeg 48 65 libXt 49 66 mygui 50 67 openal 51 - openscenegraph_ 68 + openscenegraph_openmw 52 69 unshield 70 + lz4 71 + recastnavigation 53 72 ]; 54 73 55 74 cmakeFlags = [ 56 - "-DDESIRED_QT_VERSION:INT=5" 57 75 # as of 0.46, openmw is broken with GLVND 58 76 "-DOpenGL_GL_PREFERENCE=LEGACY" 77 + "-DOPENMW_USE_SYSTEM_RECASTNAVIGATION=1" 59 78 ]; 60 79 61 80 meta = with lib; { 62 81 description = "An unofficial open source engine reimplementation of the game Morrowind"; 63 - homepage = "http://openmw.org"; 82 + homepage = "https://openmw.org"; 64 83 license = licenses.gpl3Plus; 65 - maintainers = with maintainers; [ abbradar ]; 84 + maintainers = with maintainers; [ abbradar marius851000 ]; 66 85 platforms = platforms.linux; 67 86 }; 68 87 }
+8 -1
pkgs/games/openmw/tes3mp.nix
··· 9 9 , symlinkJoin 10 10 , mygui 11 11 , crudini 12 + , bullet 12 13 }: 13 14 14 15 # revisions are taken from https://github.com/GrimKriegor/TES3MP-deploy ··· 70 71 71 72 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ makeWrapper ]; 72 73 73 - buildInputs = oldAttrs.buildInputs ++ [ luajit ]; 74 + buildInputs = (builtins.map (x: if x.pname or "" == "bullet" then bullet else x) oldAttrs.buildInputs) 75 + ++ [ luajit ]; 74 76 75 77 cmakeFlags = oldAttrs.cmakeFlags ++ [ 76 78 "-DBUILD_OPENCS=OFF" ··· 78 80 "-DRakNet_LIBRARY_RELEASE=${raknet}/lib/libRakNetLibStatic.a" 79 81 "-DRakNet_LIBRARY_DEBUG=${raknet}/lib/libRakNetLibStatic.a" 80 82 ]; 83 + 84 + prePatch = '' 85 + substituteInPlace components/process/processinvoker.cpp \ 86 + --replace "\"./\"" "\"$out/bin/\"" 87 + ''; 81 88 82 89 # https://github.com/TES3MP/openmw-tes3mp/issues/552 83 90 patches = [ ./tes3mp.patch ];
+7 -15
pkgs/games/portmod/default.nix
··· 1 - { lib, callPackage, python3Packages, fetchFromGitLab, cacert, 2 - rustPlatform, bubblewrap, git, perlPackages, imagemagick, fetchurl, fetchzip, 3 - jre, makeWrapper, tr-patcher, tes3cmd, fetchpatch }: 1 + { lib, callPackage, python3Packages, fetchFromGitLab, cacert 2 + , rustPlatform, bubblewrap, git, perlPackages, imagemagick, fetchurl, fetchzip 3 + , jre, makeWrapper, tr-patcher, tes3cmd, openmw }: 4 4 5 5 let 6 - version = "2.0.3"; 6 + version = "2.1.0"; 7 7 8 8 src = fetchFromGitLab { 9 9 owner = "portmod"; 10 10 repo = "Portmod"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-vMdyaI1Ps7bFoRvwdVNVG9vPFEiGb7CPvKEWfxiM128="; 12 + sha256 = "sha256-b/ENApFovMPNUMbJhwY+TZCnSzpr1e/IKJ/5XAGTQjE="; 13 13 }; 14 14 15 15 portmod-rust = rustPlatform.buildRustPackage rec { 16 16 inherit src version; 17 17 pname = "portmod-rust"; 18 18 19 - cargoHash = "sha256-tAghZmlg34jHr8gtNgL3MQ8EI7K6/TfDcTbBjxdWLr0="; 19 + cargoHash = "sha256-3EfMMpSWSYsB3nXaoGGDuKQ9duyCKzbrT6oeATnzqLE="; 20 20 21 21 nativeBuildInputs = [ python3Packages.python ]; 22 22 ··· 30 30 tr-patcher 31 31 tes3cmd 32 32 imagemagick 33 + openmw 33 34 ]; 34 35 35 36 in ··· 46 47 --replace "from setuptools_rust import Binding, RustExtension" "" \ 47 48 --replace "RustExtension(\"portmodlib.portmod\", binding=Binding.PyO3, strip=True)" "" 48 49 ''; 49 - 50 - patches = [ 51 - (fetchpatch { 52 - # fix error when symlinks are present in the path (https://gitlab.com/portmod/portmod/-/merge_requests/393) 53 - # happen with ~/.nix-profile 54 - url = "https://gitlab.com/portmod/portmod/-/merge_requests/393.patch"; 55 - sha256 = "sha256-XHifwD/Nh7UiMZdvSNudVF7qpBOpjGTKSr4VVdJqUdA="; 56 - }) 57 - ]; 58 50 59 51 propagatedBuildInputs = with python3Packages; [ 60 52 setuptools-scm
+7 -2
pkgs/games/quake2/yquake2/default.nix
··· 15 15 16 16 yquake2 = stdenv.mkDerivation rec { 17 17 pname = "yquake2"; 18 - version = "7.43"; 18 + version = "8.00"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "yquake2"; 22 22 repo = "yquake2"; 23 23 rev = "QUAKE2_${builtins.replaceStrings ["."] ["_"] version}"; 24 - sha256 = "1dszbvxlh1npq4nv9s4wv4lcyfgb01k92ncxrrczsxy1dddg86pp"; 24 + sha256 = "0xnpmh0pl1095dykhc76rp242x587yh9zh6wayqzaam6cn3xlz3w"; 25 25 }; 26 + 27 + postPatch = '' 28 + substituteInPlace src/common/filesystem.c \ 29 + --replace /usr/share/games/quake2 $out/share/games/quake2 30 + ''; 26 31 27 32 nativeBuildInputs = [ cmake ]; 28 33
+261 -213
pkgs/misc/vim-plugins/generated.nix
··· 77 77 78 78 ale = buildVimPluginFrom2Nix { 79 79 pname = "ale"; 80 - version = "2021-11-04"; 80 + version = "2021-11-09"; 81 81 src = fetchFromGitHub { 82 82 owner = "dense-analysis"; 83 83 repo = "ale"; 84 - rev = "f37cd1fd4fc17173a98649d8a0b2f37ce7ba61cf"; 85 - sha256 = "17p8bbqqsjw17b50p8pxrv30mf8n6495gwzvlfpj51yz2vvk66wv"; 84 + rev = "8b3b16d71c4c683da6f3ca39662d207a3e894901"; 85 + sha256 = "1mdxgiin61630fimxm2l0zcr30br4q2ipp84l3iqxjbs0fqg11s5"; 86 86 }; 87 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 88 }; ··· 113 113 114 114 ansible-vim = buildVimPluginFrom2Nix { 115 115 pname = "ansible-vim"; 116 - version = "2021-10-07"; 116 + version = "2021-11-08"; 117 117 src = fetchFromGitHub { 118 118 owner = "pearofducks"; 119 119 repo = "ansible-vim"; 120 - rev = "c84f8bb203c49d9da28e4ea7a32d951ccde1d40f"; 121 - sha256 = "1ii58rvc8mvv33kbfnn7b66mpf08hn3vm2swjgaaw4dwvzffzi71"; 120 + rev = "469e55b101d85ff82687d975349b356b362194a6"; 121 + sha256 = "0z2iqb974drs0nc3cxk32z5xlbdl8bgbsc8564sz13ayqbdms4nk"; 122 122 }; 123 123 meta.homepage = "https://github.com/pearofducks/ansible-vim/"; 124 124 }; ··· 461 461 462 462 chadtree = buildVimPluginFrom2Nix { 463 463 pname = "chadtree"; 464 - version = "2021-11-07"; 464 + version = "2021-11-11"; 465 465 src = fetchFromGitHub { 466 466 owner = "ms-jpq"; 467 467 repo = "chadtree"; 468 - rev = "4b8ec3650ae41bb70128baacd68684ad212520de"; 469 - sha256 = "1cjw98nfzz8a9za7cs2jy3i164qaj2fyrsfpg28f7f1b087n24p3"; 468 + rev = "8bf4553d1000b2c9189f1893ac5c737b61572791"; 469 + sha256 = "1jk795a6r8yzbjbyx121qn65njs4j3l947x3n937kygqpb7paflm"; 470 470 }; 471 471 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 472 472 }; ··· 569 569 570 570 cmp-buffer = buildVimPluginFrom2Nix { 571 571 pname = "cmp-buffer"; 572 - version = "2021-11-02"; 572 + version = "2021-11-10"; 573 573 src = fetchFromGitHub { 574 574 owner = "hrsh7th"; 575 575 repo = "cmp-buffer"; 576 - rev = "d1ca295ce584ec80763a6dc043080874b57ccffc"; 577 - sha256 = "1s8b4wc7as9v8iqk03aagjpxkkghn0wzf15nj4ljpi3k3w5hxiw0"; 576 + rev = "2d85e76c725a389b72067f86fc3c65f3868b9a59"; 577 + sha256 = "0lvx58nchrl08jjp2gvyfrxkqdqnyi97zj86nnx184vnx8a5qcqh"; 578 578 }; 579 579 meta.homepage = "https://github.com/hrsh7th/cmp-buffer/"; 580 580 }; ··· 589 589 sha256 = "0b88fn4zb2sp4c9fnn9m8qb41djv17mmydhx6bryqnrc8mqycajy"; 590 590 }; 591 591 meta.homepage = "https://github.com/hrsh7th/cmp-calc/"; 592 + }; 593 + 594 + cmp-cmdline = buildVimPluginFrom2Nix { 595 + pname = "cmp-cmdline"; 596 + version = "2021-11-08"; 597 + src = fetchFromGitHub { 598 + owner = "hrsh7th"; 599 + repo = "cmp-cmdline"; 600 + rev = "0ca73c3a50b72c2ca168d8904b39aba34d0c4227"; 601 + sha256 = "1777rv9mh3bar8lp5i4af7kip5j3s4ib8a83b67clga8pcdjla4d"; 602 + }; 603 + meta.homepage = "https://github.com/hrsh7th/cmp-cmdline/"; 592 604 }; 593 605 594 606 cmp-conjure = buildVimPluginFrom2Nix { ··· 629 641 630 642 cmp-nvim-lsp = buildVimPluginFrom2Nix { 631 643 pname = "cmp-nvim-lsp"; 632 - version = "2021-10-17"; 644 + version = "2021-11-10"; 633 645 src = fetchFromGitHub { 634 646 owner = "hrsh7th"; 635 647 repo = "cmp-nvim-lsp"; 636 - rev = "accbe6d97548d8d3471c04d512d36fa61d0e4be8"; 637 - sha256 = "1dqx6yrd60x9ncjnpja87wv5zgnij7qmzbyh5xfyslk67c0i6mwm"; 648 + rev = "134117299ff9e34adde30a735cd8ca9cf8f3db81"; 649 + sha256 = "1jnspl08ilz9ggkdddk0saxp3wzf05lll5msdfb4770q3bixddwc"; 638 650 }; 639 651 meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/"; 652 + }; 653 + 654 + cmp-nvim-lsp-document-symbol = buildVimPluginFrom2Nix { 655 + pname = "cmp-nvim-lsp-document-symbol"; 656 + version = "2021-10-28"; 657 + src = fetchFromGitHub { 658 + owner = "hrsh7th"; 659 + repo = "cmp-nvim-lsp-document-symbol"; 660 + rev = "29d12e55cf49ee07b829114ad39b161cad2544ab"; 661 + sha256 = "0w4m34467j3cg4dj69r12115p5k1i2lbjzmwx5hmd5x6xzb5qycb"; 662 + }; 663 + meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp-document-symbol/"; 640 664 }; 641 665 642 666 cmp-nvim-lua = buildVimPluginFrom2Nix { ··· 677 701 678 702 cmp-path = buildVimPluginFrom2Nix { 679 703 pname = "cmp-path"; 680 - version = "2021-10-27"; 704 + version = "2021-11-10"; 681 705 src = fetchFromGitHub { 682 706 owner = "hrsh7th"; 683 707 repo = "cmp-path"; 684 - rev = "97661b00232a2fe145fe48e295875bc3299ed1f7"; 685 - sha256 = "160jidd951qz1byjhbmd7ijp6hd37bdxbpg5wmzhprihwwpm628j"; 708 + rev = "98ded32b9c4d95aa95af70b9979b767f39073f0e"; 709 + sha256 = "1axx401sikh9ylji3d6cmgn4xsrzzfmlc1akfv1q709chv0a6r2h"; 686 710 }; 687 711 meta.homepage = "https://github.com/hrsh7th/cmp-path/"; 688 712 }; ··· 725 749 726 750 cmp-under-comparator = buildVimPluginFrom2Nix { 727 751 pname = "cmp-under-comparator"; 728 - version = "2021-10-22"; 752 + version = "2021-11-11"; 729 753 src = fetchFromGitHub { 730 754 owner = "lukas-reineke"; 731 755 repo = "cmp-under-comparator"; 732 - rev = "69e88636a3f7a1630a6e1199b4039a5f110caf81"; 733 - sha256 = "1af4l8vf66sz4vhyzlnkrg0hpwx2f7096g9rszralxq0nad1i12d"; 756 + rev = "6857f10272c3cfe930cece2afa2406e1385bfef8"; 757 + sha256 = "18kcxl9rg6qrg5wv6bb0hv0sjafspjhy57irf8gyaa66svwmgxmh"; 734 758 }; 735 759 meta.homepage = "https://github.com/lukas-reineke/cmp-under-comparator/"; 736 760 }; 737 761 738 762 cmp-vsnip = buildVimPluginFrom2Nix { 739 763 pname = "cmp-vsnip"; 740 - version = "2021-08-25"; 764 + version = "2021-11-10"; 741 765 src = fetchFromGitHub { 742 766 owner = "hrsh7th"; 743 767 repo = "cmp-vsnip"; 744 - rev = "1588c35bf8f637e8f5287477f31895781858f970"; 745 - sha256 = "0q3z0f7d53cbqidx8qd3z48b46a83l5ay54iw525w22j1kki3aaw"; 768 + rev = "0abfa1860f5e095a07c477da940cfcb0d273b700"; 769 + sha256 = "1vhw2qx8284bskivc2jyijl93g1b1z9hzzbq2l9b4aw6r23frbgc"; 746 770 }; 747 771 meta.homepage = "https://github.com/hrsh7th/cmp-vsnip/"; 748 772 }; ··· 797 821 798 822 coc-lua = buildVimPluginFrom2Nix { 799 823 pname = "coc-lua"; 800 - version = "2021-11-03"; 824 + version = "2021-11-09"; 801 825 src = fetchFromGitHub { 802 826 owner = "josa42"; 803 827 repo = "coc-lua"; 804 - rev = "504f93819b47fd278e954608cace5c6530fdf397"; 805 - sha256 = "1vfbciy34bvyfyl0vpyw7m2nj586cpvm2pin5c6iy5qmr92pgw60"; 828 + rev = "9672c9cde3cce32720fafbdb65618d817b7022d8"; 829 + sha256 = "1y35xqzd17c8cvlrqfa10lninql2xkkkgy40wl1bwfzl5awk9rm7"; 806 830 }; 807 831 meta.homepage = "https://github.com/josa42/coc-lua/"; 808 832 }; ··· 1134 1158 1135 1159 crates-nvim = buildVimPluginFrom2Nix { 1136 1160 pname = "crates.nvim"; 1137 - version = "2021-11-02"; 1161 + version = "2021-11-10"; 1138 1162 src = fetchFromGitHub { 1139 1163 owner = "saecki"; 1140 1164 repo = "crates.nvim"; 1141 - rev = "b3636f8199df988bedeb029f55a91cd17633523e"; 1142 - sha256 = "0jqbanfgh3l89i0frrnjyh47kyvhv3nfk3jgrswwzgn6b0w4cj6n"; 1165 + rev = "0b17e2bb069cb388ba22d156bbe1b3b3b3585312"; 1166 + sha256 = "1d7gssvw2sl1girj8svbdzlrhxsjgp9rkfkjrr2jd7p5ilhry27a"; 1143 1167 }; 1144 1168 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1145 1169 }; ··· 1676 1700 1677 1701 edge = buildVimPluginFrom2Nix { 1678 1702 pname = "edge"; 1679 - version = "2021-11-05"; 1703 + version = "2021-11-11"; 1680 1704 src = fetchFromGitHub { 1681 1705 owner = "sainnhe"; 1682 1706 repo = "edge"; 1683 - rev = "dac55912be3642a954ef0891b63a3f4cb1db5ce4"; 1684 - sha256 = "1w7a72jfwqf81rkwsnq70ar0hsnjjlkyxqxb3vg9yfcd5fki4920"; 1707 + rev = "f2c8e3d2a72f3763e3ea9c620a118e73e2146fb1"; 1708 + sha256 = "08v10j0hirqcj2r2fcw8b04v8bpwj1kp887pq8vs5f57ncqzl8x7"; 1685 1709 }; 1686 1710 meta.homepage = "https://github.com/sainnhe/edge/"; 1687 1711 }; ··· 1858 1882 1859 1883 fern-vim = buildVimPluginFrom2Nix { 1860 1884 pname = "fern.vim"; 1861 - version = "2021-10-24"; 1885 + version = "2021-11-11"; 1862 1886 src = fetchFromGitHub { 1863 1887 owner = "lambdalisue"; 1864 1888 repo = "fern.vim"; 1865 - rev = "338c7190a535cc5cf82e9d7443964b2e4f8bf97f"; 1866 - sha256 = "1d74k0mgf8axsnksq5dh3zlangabwdx7vwfi05wx0q7vkxm545d4"; 1889 + rev = "dd365ec17e9ff1d87a5ce4ade8abf123ecfd007a"; 1890 + sha256 = "0s5gygvbz9ffnaxaikqj8mi16ip1gqxa19ijvjsjc8rv6jpkylsd"; 1867 1891 }; 1868 1892 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 1869 1893 }; ··· 1979 2003 1980 2004 friendly-snippets = buildVimPluginFrom2Nix { 1981 2005 pname = "friendly-snippets"; 1982 - version = "2021-11-07"; 2006 + version = "2021-11-10"; 1983 2007 src = fetchFromGitHub { 1984 2008 owner = "rafamadriz"; 1985 2009 repo = "friendly-snippets"; 1986 - rev = "242c4a021d5655a5e86508f1cb3c08977d0acbe4"; 1987 - sha256 = "1rlq22ypl44ajjb5597braks6hn6qmf6ss0kh5vrvv6p9p1fy1dy"; 2010 + rev = "7d4a4c4e57b7aabb9e7d1f591c29e6d5e7e382e4"; 2011 + sha256 = "19z6yjdd7q9hydzx3bw2w8c573y0xjn9s7n780w65n34iirjbh7i"; 1988 2012 }; 1989 2013 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 1990 2014 }; ··· 2051 2075 2052 2076 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2053 2077 pname = "fzf-lsp.nvim"; 2054 - version = "2021-10-21"; 2078 + version = "2021-11-07"; 2055 2079 src = fetchFromGitHub { 2056 2080 owner = "gfanto"; 2057 2081 repo = "fzf-lsp.nvim"; 2058 - rev = "34bddd8a31441435f1d29eef0452576d12144da7"; 2059 - sha256 = "1ijqnqmdlm2f3jkjh68baif05lf27rww43vvndix2icypnd16vcp"; 2082 + rev = "19a6f405e4a6eb74788393390d945bd156d559b3"; 2083 + sha256 = "0nq9nfviyly136xhjzdvmhvj7flz44pl5as0npa4d13ng3gs451p"; 2060 2084 }; 2061 2085 meta.homepage = "https://github.com/gfanto/fzf-lsp.nvim/"; 2062 2086 }; ··· 2171 2195 2172 2196 git-worktree-nvim = buildVimPluginFrom2Nix { 2173 2197 pname = "git-worktree.nvim"; 2174 - version = "2021-08-24"; 2198 + version = "2021-11-09"; 2175 2199 src = fetchFromGitHub { 2176 2200 owner = "ThePrimeagen"; 2177 2201 repo = "git-worktree.nvim"; 2178 - rev = "e562d8a3baa6c96d148944592a2d7c88f48927f2"; 2179 - sha256 = "1c78pjycvnkq28ar7bp0xiadyd3jml596hsw0fsxvbdwba4a7ikk"; 2202 + rev = "14d4be5f9db5c5cce7b4c1ee10c70d663c367373"; 2203 + sha256 = "11gzz2dc75b0sqkkxsiw9yramfwhcrv4vq39mxlzmxxzbzk11dv2"; 2180 2204 }; 2181 2205 meta.homepage = "https://github.com/ThePrimeagen/git-worktree.nvim/"; 2182 2206 }; ··· 2207 2231 2208 2232 gitsigns-nvim = buildVimPluginFrom2Nix { 2209 2233 pname = "gitsigns.nvim"; 2210 - version = "2021-11-04"; 2234 + version = "2021-11-11"; 2211 2235 src = fetchFromGitHub { 2212 2236 owner = "lewis6991"; 2213 2237 repo = "gitsigns.nvim"; 2214 - rev = "61a81b0c003de3e12555a5626d66fb6a060d8aca"; 2215 - sha256 = "0ya0vgwlmy2mpkgqhz0lyxh19iwilm5vwvk4c9ygsxwq3561vfcw"; 2238 + rev = "e6775fa32e4904cc8bbd098ba9807db9606e816e"; 2239 + sha256 = "1w7vq9jbw3lhd8i9wbf71q344235iwcigff7jrrh3fbcq6kk7m12"; 2216 2240 }; 2217 2241 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2218 2242 }; ··· 2279 2303 2280 2304 goto-preview = buildVimPluginFrom2Nix { 2281 2305 pname = "goto-preview"; 2282 - version = "2021-10-31"; 2306 + version = "2021-11-09"; 2283 2307 src = fetchFromGitHub { 2284 2308 owner = "rmagatti"; 2285 2309 repo = "goto-preview"; 2286 - rev = "bde83cdac0c99a82c010c29f9e00ad488f9e035f"; 2287 - sha256 = "0vql6whiijfaglrkn0byrgkqm78rprhbbxajwh51iw80kqkm5ic0"; 2310 + rev = "b930629c018c6b30d42e8d271a32a37e0360c628"; 2311 + sha256 = "0mly30sqbs43xmkda04jzk4knxcv7f42sddm87ky6j8ii67147ys"; 2288 2312 }; 2289 2313 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 2290 2314 }; ··· 2339 2363 2340 2364 gruvbox-material = buildVimPluginFrom2Nix { 2341 2365 pname = "gruvbox-material"; 2342 - version = "2021-11-05"; 2366 + version = "2021-11-11"; 2343 2367 src = fetchFromGitHub { 2344 2368 owner = "sainnhe"; 2345 2369 repo = "gruvbox-material"; 2346 - rev = "0eaf2c5f1e4c2e274b6983c5178d66522e312468"; 2347 - sha256 = "0yfal45w1lf02wpws8ha3rka7n9c694z7wjya9ilpnm6xg20d0y4"; 2370 + rev = "a25c5294013d58e4fde6b72d94a5f77e3330f0cc"; 2371 + sha256 = "0k4baphl8x6fy8hqidr7g8mw6w1cjhwsgjmsd9v72a9ikl4z22vq"; 2348 2372 }; 2349 2373 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 2350 2374 }; ··· 2579 2603 2580 2604 indent-blankline-nvim = buildVimPluginFrom2Nix { 2581 2605 pname = "indent-blankline.nvim"; 2582 - version = "2021-11-07"; 2606 + version = "2021-11-08"; 2583 2607 src = fetchFromGitHub { 2584 2608 owner = "lukas-reineke"; 2585 2609 repo = "indent-blankline.nvim"; 2586 - rev = "9dab64554c6249eb31a0bf3e689e0d36d6998fb8"; 2587 - sha256 = "0jva20qh2mc9vd12wfbw3ngvx2745vvmn0qkz9lnrk2xkwy31dby"; 2610 + rev = "bc8372815506066f3ca7885baca717cb986957be"; 2611 + sha256 = "0svhinr5qmhcskvakl71yykzxhm6m0ydymx7dp5w0jwsdcv9nnrx"; 2588 2612 }; 2589 2613 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 2590 2614 }; ··· 2784 2808 2785 2809 kotlin-vim = buildVimPluginFrom2Nix { 2786 2810 pname = "kotlin-vim"; 2787 - version = "2021-11-07"; 2811 + version = "2021-11-08"; 2788 2812 src = fetchFromGitHub { 2789 2813 owner = "udalov"; 2790 2814 repo = "kotlin-vim"; 2791 - rev = "e2fd6fbe98a85be28e75fe9c7cc341cfbba3ac23"; 2792 - sha256 = "1iv45znmija86jly2hm08s5bsi53kphdziwgknsz5l2va93vx34z"; 2815 + rev = "6fec676fe552cb30165dc8977dab9353c4c3ab26"; 2816 + sha256 = "08sz0fmlk4bzzkg5j0zbjd1dki1ykigar4rzyc05xfynvkcxh4fg"; 2793 2817 }; 2794 2818 meta.homepage = "https://github.com/udalov/kotlin-vim/"; 2795 2819 }; ··· 2880 2904 2881 2905 lean-nvim = buildVimPluginFrom2Nix { 2882 2906 pname = "lean.nvim"; 2883 - version = "2021-11-07"; 2907 + version = "2021-11-11"; 2884 2908 src = fetchFromGitHub { 2885 2909 owner = "Julian"; 2886 2910 repo = "lean.nvim"; 2887 - rev = "f0fca2a67d06949ee7550d1525aca50107c6a3b7"; 2888 - sha256 = "0yw9k6mdbjhzgcdr9z2gyazcz200v8c66vfxmk9z0lhr7jrvby1a"; 2911 + rev = "27a9bba67bc9114ba9a6f48686ac983f301dd4be"; 2912 + sha256 = "1vcd1i2w9vnkmlhan62s0raa8gigxpdyyzqvn2qqv1rifxzigpfw"; 2889 2913 }; 2890 2914 meta.homepage = "https://github.com/Julian/lean.nvim/"; 2891 2915 }; ··· 2928 2952 2929 2953 lexima-vim = buildVimPluginFrom2Nix { 2930 2954 pname = "lexima.vim"; 2931 - version = "2021-08-12"; 2955 + version = "2021-11-11"; 2932 2956 src = fetchFromGitHub { 2933 2957 owner = "cohama"; 2934 2958 repo = "lexima.vim"; 2935 - rev = "6b716e2118d842a26620387f0845e57cfd69ffaf"; 2936 - sha256 = "1az40rjfyvwg9zkk822abrf0v0ccm29rp5290capirnfna5w71d6"; 2959 + rev = "99ece6758ec49b04de983873e4117a390121fbb8"; 2960 + sha256 = "00sjngkscry6ln9d94w9b2466d1y2prxivaxn8hqxpng1wyhhlay"; 2937 2961 }; 2938 2962 meta.homepage = "https://github.com/cohama/lexima.vim/"; 2939 - }; 2940 - 2941 - lingua-franca-vim = buildVimPluginFrom2Nix { 2942 - pname = "lingua-franca"; 2943 - version = "2021-9-5"; 2944 - src = fetchFromGitHub { 2945 - owner = "lf-lang"; 2946 - repo = "lingua-franca.vim"; 2947 - rev = "439b92a13744ee21cb3cd9c399e179efbcaa2967"; 2948 - sha256 = "sha256-Bf2MabUe3fy0meL6zIYgal/yFxtLKsg3b/BUI/AVlrM="; 2949 - }; 2950 - meta.homepage = "https://github.com/lf-lang/lingua-franca.vim"; 2951 2963 }; 2952 2964 2953 2965 lf-vim = buildVimPluginFrom2Nix { ··· 3036 3048 3037 3049 lightspeed-nvim = buildVimPluginFrom2Nix { 3038 3050 pname = "lightspeed.nvim"; 3039 - version = "2021-11-05"; 3051 + version = "2021-11-11"; 3040 3052 src = fetchFromGitHub { 3041 3053 owner = "ggandor"; 3042 3054 repo = "lightspeed.nvim"; 3043 - rev = "3f833700b1d39c6cdfd32b9be27078e8bc37fc2f"; 3044 - sha256 = "0w1zb8pz3bgn19lfvz3ig35vmn5d4m65cmrhhgcnyjgi7z83p05f"; 3055 + rev = "6429028c58a2a64916cb9132743e5301af460c1c"; 3056 + sha256 = "0qhx7axm5vg1xh5j2mg0x3l7154f4n55k28pajrak4yw7ws82232"; 3045 3057 }; 3046 3058 meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; 3047 3059 }; ··· 3058 3070 meta.homepage = "https://github.com/junegunn/limelight.vim/"; 3059 3071 }; 3060 3072 3073 + lingua-franca-vim = buildVimPluginFrom2Nix { 3074 + pname = "lingua-franca.vim"; 3075 + version = "2021-09-05"; 3076 + src = fetchFromGitHub { 3077 + owner = "lf-lang"; 3078 + repo = "lingua-franca.vim"; 3079 + rev = "439b92a13744ee21cb3cd9c399e179efbcaa2967"; 3080 + sha256 = "1cwn2pq26m7hdwvwhajb3cbz4pva423cryp2k6sgrp8ynmlqrz85"; 3081 + }; 3082 + meta.homepage = "https://github.com/lf-lang/lingua-franca.vim/"; 3083 + }; 3084 + 3061 3085 lir-nvim = buildVimPluginFrom2Nix { 3062 3086 pname = "lir.nvim"; 3063 3087 version = "2021-11-03"; ··· 3180 3204 3181 3205 lualine-nvim = buildVimPluginFrom2Nix { 3182 3206 pname = "lualine.nvim"; 3183 - version = "2021-11-05"; 3207 + version = "2021-11-11"; 3184 3208 src = fetchFromGitHub { 3185 3209 owner = "nvim-lualine"; 3186 3210 repo = "lualine.nvim"; 3187 - rev = "3f5cdc51a08c437c7705e283eebd4cf9fbb18f80"; 3188 - sha256 = "15vvz7a89lj101gcpykws45kgsai5dqbcqnkflvx87ivcxs0iz97"; 3211 + rev = "df46c1e70a0aeb234aa9d2048d14f626a1cca317"; 3212 + sha256 = "0khkkicwcnrwpd9scdsggia916ws6hvpyx0gnszg43zq74q5h27q"; 3189 3213 }; 3190 3214 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3191 3215 }; 3192 3216 3193 3217 luasnip = buildVimPluginFrom2Nix { 3194 3218 pname = "luasnip"; 3195 - version = "2021-11-06"; 3219 + version = "2021-11-09"; 3196 3220 src = fetchFromGitHub { 3197 3221 owner = "l3mon4d3"; 3198 3222 repo = "luasnip"; 3199 - rev = "bab7cc2c32fba00776d2f2fc4704bed4eee2d082"; 3200 - sha256 = "1z1a35rpil7f5yk0al7r7k1kxpvf4x9kzpsb4s0v0c6mh8zmc5aw"; 3223 + rev = "366fd76ea226bed11966cd8b1a229cba08fa4394"; 3224 + sha256 = "17jla5yvi0vzgi0himl8fyfmc8sl8xg1k5bzl58iq0d2ycmr08as"; 3201 3225 }; 3202 3226 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3203 3227 }; ··· 3240 3264 3241 3265 marks-nvim = buildVimPluginFrom2Nix { 3242 3266 pname = "marks.nvim"; 3243 - version = "2021-10-31"; 3267 + version = "2021-11-07"; 3244 3268 src = fetchFromGitHub { 3245 3269 owner = "chentau"; 3246 3270 repo = "marks.nvim"; 3247 - rev = "17e7f468d7128c4c2f6ccf334d136be5f712464d"; 3248 - sha256 = "1a4jm8wm0lqx16ic991xzvwqyys9cspj15bqnphw05gc2w14qz02"; 3271 + rev = "f43e349601b439b4b07bec1d996cfd70d48d09fb"; 3272 + sha256 = "0xnrklam85yva82ncfbpymhs8wa0g9vcks4dzdpvnj8f21la1f3d"; 3249 3273 }; 3250 3274 meta.homepage = "https://github.com/chentau/marks.nvim/"; 3251 3275 }; ··· 3624 3648 3625 3649 neoformat = buildVimPluginFrom2Nix { 3626 3650 pname = "neoformat"; 3627 - version = "2021-10-30"; 3651 + version = "2021-11-09"; 3628 3652 src = fetchFromGitHub { 3629 3653 owner = "sbdchd"; 3630 3654 repo = "neoformat"; 3631 - rev = "6b28df63eed20a57af131ba320646395c77a676c"; 3632 - sha256 = "1bcnlw2za6ig6hj0zcqbas6pphs2i6zgqyvf2cakk37pjdxc2gv1"; 3655 + rev = "f1b6cd506b72be0a2aaf529105320ec929683920"; 3656 + sha256 = "0idj1l5962vfzqhksifxi4qa8d2w8mnhdqa2z5wwpphjiparfqrg"; 3633 3657 }; 3634 3658 meta.homepage = "https://github.com/sbdchd/neoformat/"; 3635 3659 }; 3636 3660 3637 3661 neogit = buildVimPluginFrom2Nix { 3638 3662 pname = "neogit"; 3639 - version = "2021-11-02"; 3663 + version = "2021-11-09"; 3640 3664 src = fetchFromGitHub { 3641 3665 owner = "TimUntersberger"; 3642 3666 repo = "neogit"; 3643 - rev = "85f2bdc31afb132c9603879bf3a7169a917eb949"; 3644 - sha256 = "1whcav7n49nrqvll1hdwr3bb25ls0ih7j49jwrjx1x4hpix2zrpl"; 3667 + rev = "807e4a795dc6c2383b281fc27bd1bc6c197d98cd"; 3668 + sha256 = "126kdn9dfvk0ggzh00439zwrq1jldnxvk0nsf7g371qkbbnc4qal"; 3645 3669 }; 3646 3670 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 3647 3671 }; ··· 3852 3876 3853 3877 neuron-nvim = buildVimPluginFrom2Nix { 3854 3878 pname = "neuron.nvim"; 3855 - version = "2021-10-18"; 3879 + version = "2021-11-08"; 3856 3880 src = fetchFromGitHub { 3857 3881 owner = "oberblastmeister"; 3858 3882 repo = "neuron.nvim"; 3859 - rev = "10b189437c3e080502ca14ed0e7bc041274e0610"; 3860 - sha256 = "11p6n33c642z6q89j2a71czffp3d3mzhp9mdygw2gadar9g4fvl8"; 3883 + rev = "a7280d4923f51c8af8cecc53aa06ed49cbbd412d"; 3884 + sha256 = "0qanc7r9z5ry3xxbvpv9xbmxnx0f8yj10fi887yhrcms7kj73al9"; 3861 3885 }; 3862 3886 meta.homepage = "https://github.com/oberblastmeister/neuron.nvim/"; 3863 3887 }; ··· 3900 3924 3901 3925 nim-vim = buildVimPluginFrom2Nix { 3902 3926 pname = "nim.vim"; 3903 - version = "2020-10-16"; 3927 + version = "2021-11-11"; 3904 3928 src = fetchFromGitHub { 3905 3929 owner = "zah"; 3906 3930 repo = "nim.vim"; 3907 - rev = "7a8737a4532239c06116ebde0329d8156f3d3b55"; 3908 - sha256 = "05xhac416c8zsgqlchc80f7gbjxbyngi6cxziqagdhr6kccc73gi"; 3931 + rev = "a15714fea392b0f06ff2b282921a68c7033e39a2"; 3932 + sha256 = "1vf3af8b85rjsccvclkb6aw9zgkwfpxd43jgnkbx6wrsv9bfz034"; 3909 3933 }; 3910 3934 meta.homepage = "https://github.com/zah/nim.vim/"; 3911 3935 }; ··· 3972 3996 3973 3997 nterm-nvim = buildVimPluginFrom2Nix { 3974 3998 pname = "nterm.nvim"; 3975 - version = "2021-11-05"; 3999 + version = "2021-11-10"; 3976 4000 src = fetchFromGitHub { 3977 4001 owner = "jlesquembre"; 3978 4002 repo = "nterm.nvim"; 3979 - rev = "992cb567250cbf59d1465eb7371f9c6c75a13fb0"; 3980 - sha256 = "0d7fww3bv8fcl4wy29laa2drlhr6a7b29xlcfm5mxxdyyaxa1f3c"; 4003 + rev = "14d16c83aa1d165724f7780f470c4dcde5addcb6"; 4004 + sha256 = "0y883fpjfk7lki8nfscxhfw0wr7xm1d22zgf52zqmc9pjznjz9my"; 3981 4005 }; 3982 4006 meta.homepage = "https://github.com/jlesquembre/nterm.nvim/"; 3983 4007 }; 3984 4008 3985 4009 nui-nvim = buildVimPluginFrom2Nix { 3986 4010 pname = "nui.nvim"; 3987 - version = "2021-10-30"; 4011 + version = "2021-11-11"; 3988 4012 src = fetchFromGitHub { 3989 4013 owner = "MunifTanjim"; 3990 4014 repo = "nui.nvim"; 3991 - rev = "362585d6515805d4be4eb665cf8707759a92a254"; 3992 - sha256 = "0gzanzyn7fa0qmngrqzlflzzyjzqkn21nhwbgw48hd0x143p0fab"; 4015 + rev = "a07b754552008012f2d7d3602b7a233a29d92c66"; 4016 + sha256 = "19ffxpmq82f9qxbnb2lw2hvc9gqc1vfyvf553wpc439rpi98mxja"; 3993 4017 }; 3994 4018 meta.homepage = "https://github.com/MunifTanjim/nui.nvim/"; 3995 4019 }; 3996 4020 3997 4021 null-ls-nvim = buildVimPluginFrom2Nix { 3998 4022 pname = "null-ls.nvim"; 3999 - version = "2021-11-04"; 4023 + version = "2021-11-11"; 4000 4024 src = fetchFromGitHub { 4001 4025 owner = "jose-elias-alvarez"; 4002 4026 repo = "null-ls.nvim"; 4003 - rev = "64b269b51c7490660dcb2008f59ae260f2cdbbe4"; 4004 - sha256 = "1vp5y8cd3ljhshg2hrisbgxxb1zz5xqqxldngv3ll98pd98f9yjy"; 4027 + rev = "2bf885dda0ecb669ef66d1c757287c98f6c16500"; 4028 + sha256 = "1303gpdr5yzxznx0djn5q09p1vibh15d0nmj1j6n2zqbjdx6bhfw"; 4005 4029 }; 4006 4030 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4007 4031 }; ··· 4044 4068 4045 4069 nvim-autopairs = buildVimPluginFrom2Nix { 4046 4070 pname = "nvim-autopairs"; 4047 - version = "2021-11-07"; 4071 + version = "2021-11-09"; 4048 4072 src = fetchFromGitHub { 4049 4073 owner = "windwp"; 4050 4074 repo = "nvim-autopairs"; 4051 - rev = "01f3a9f72fe36d4ca036d0e9c5cd6c506f4394ce"; 4052 - sha256 = "092f6kj5b3jd4y65kmh3z4vq844mvv21msjgmlr453b5gqnkqdwr"; 4075 + rev = "f4f1c9f27d8514885cd851b3ae0a648e1eb15a17"; 4076 + sha256 = "0ipb2pvkc28zp5pdb5ih5rcnzj4wkwg5i59lb3ll4cv0yj398kr9"; 4053 4077 }; 4054 4078 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4055 4079 }; ··· 4104 4128 4105 4129 nvim-cmp = buildVimPluginFrom2Nix { 4106 4130 pname = "nvim-cmp"; 4107 - version = "2021-11-05"; 4131 + version = "2021-11-11"; 4108 4132 src = fetchFromGitHub { 4109 4133 owner = "hrsh7th"; 4110 4134 repo = "nvim-cmp"; 4111 - rev = "1774ff0f842146521c63707245d3de5db2bb3732"; 4112 - sha256 = "1gj21q15s61l6afxrvh49cvm7wn4b7chhsrs4355j7ldmsr88dk7"; 4135 + rev = "af06bd4b440c4da6b363ec2c3feb49bc0cda5510"; 4136 + sha256 = "0ckvm3kggnfqv4ngaxpl4zikbs2pwbqgy5x9fqzrdj2vydfm85wp"; 4113 4137 }; 4114 4138 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 4115 4139 }; ··· 4236 4260 4237 4261 nvim-gps = buildVimPluginFrom2Nix { 4238 4262 pname = "nvim-gps"; 4239 - version = "2021-11-05"; 4263 + version = "2021-11-10"; 4240 4264 src = fetchFromGitHub { 4241 4265 owner = "smiteshp"; 4242 4266 repo = "nvim-gps"; 4243 - rev = "74648310ffe95eba2054ce7a312d77d0b0cc1a32"; 4244 - sha256 = "1qa3fn2ianq1fiq6jvlvbvija36qf4i48gccvafwc23ap4fgsg0g"; 4267 + rev = "14653c92c93b2e00a8cc742ee109f510350afc2a"; 4268 + sha256 = "13i1pyd5ibmczyw3r2wrhrislkych994487iv5202zv0jn6jaglm"; 4245 4269 }; 4246 4270 meta.homepage = "https://github.com/smiteshp/nvim-gps/"; 4247 4271 }; ··· 4308 4332 4309 4333 nvim-lsp-ts-utils = buildVimPluginFrom2Nix { 4310 4334 pname = "nvim-lsp-ts-utils"; 4311 - version = "2021-11-06"; 4335 + version = "2021-11-11"; 4312 4336 src = fetchFromGitHub { 4313 4337 owner = "jose-elias-alvarez"; 4314 4338 repo = "nvim-lsp-ts-utils"; 4315 - rev = "19d41dd70b3ee4e6fdd48c2a81c20a4b0c62a7b6"; 4316 - sha256 = "0ka575gcbgr78jgaa7zavfbm8jww1lpgypw8k7rjpzvbznnklxri"; 4339 + rev = "1af2922c3ab7f80654c09932c55bd5d70f13f1e3"; 4340 + sha256 = "1qcska723k2ajimmib7i57clhdbrbqlcp4b18capsrrnxsl92pq0"; 4317 4341 }; 4318 4342 meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; 4319 4343 }; 4320 4344 4321 4345 nvim-lspconfig = buildVimPluginFrom2Nix { 4322 4346 pname = "nvim-lspconfig"; 4323 - version = "2021-11-06"; 4347 + version = "2021-11-11"; 4324 4348 src = fetchFromGitHub { 4325 4349 owner = "neovim"; 4326 4350 repo = "nvim-lspconfig"; 4327 - rev = "3a5d94df2d61992496d1fc986d2433b944584a8d"; 4328 - sha256 = "17sx8yzlx2ciqhwdhwq28zjpmbzfdzm5rsyjr31q10gqlj6l9kq6"; 4351 + rev = "edca6c107027111ed02abe17a231d1cf0d353adf"; 4352 + sha256 = "13abx9r8p9admskallw3y1dqia288xm6l3l6idshih6wbmkx2jk2"; 4329 4353 }; 4330 4354 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 4331 4355 }; ··· 4392 4416 4393 4417 nvim-solarized-lua = buildVimPluginFrom2Nix { 4394 4418 pname = "nvim-solarized-lua"; 4395 - version = "2021-10-23"; 4419 + version = "2021-11-10"; 4396 4420 src = fetchFromGitHub { 4397 4421 owner = "ishan9299"; 4398 4422 repo = "nvim-solarized-lua"; 4399 - rev = "39ed6d841a71de0fcc51d6665638e864e42116cb"; 4400 - sha256 = "11v8vxz3daj2sl13hgvd8cadh7h5kij5kg43km917an5k1cw293j"; 4423 + rev = "05433b58825e13465b82430f2cc7b0414df2ba6c"; 4424 + sha256 = "1w2n8zj17dj87xfbacz9kgkcws2cihnfa3640s6393gli20782kq"; 4401 4425 }; 4402 4426 meta.homepage = "https://github.com/ishan9299/nvim-solarized-lua/"; 4403 4427 }; 4404 4428 4405 4429 nvim-spectre = buildVimPluginFrom2Nix { 4406 4430 pname = "nvim-spectre"; 4407 - version = "2021-11-01"; 4431 + version = "2021-11-10"; 4408 4432 src = fetchFromGitHub { 4409 4433 owner = "windwp"; 4410 4434 repo = "nvim-spectre"; 4411 - rev = "8d5d29ac0d4ad1b21ed986cbbdb160193aba3d5f"; 4412 - sha256 = "0yiv3j153pg2x1cdwrl8fq2wbvapxbixxqz8z14x5bdy5rn7i4jf"; 4435 + rev = "9502f162a43d18d03f6d11e2152aee39b1ed5adb"; 4436 + sha256 = "1czj2jbls3ci35mbvvzb7x2zzh3aw2rz42bvfx45ibpw6iabdgky"; 4413 4437 }; 4414 4438 meta.homepage = "https://github.com/windwp/nvim-spectre/"; 4415 4439 }; ··· 4500 4524 4501 4525 nvim-ts-context-commentstring = buildVimPluginFrom2Nix { 4502 4526 pname = "nvim-ts-context-commentstring"; 4503 - version = "2021-11-03"; 4527 + version = "2021-11-09"; 4504 4528 src = fetchFromGitHub { 4505 4529 owner = "joosepalviste"; 4506 4530 repo = "nvim-ts-context-commentstring"; 4507 - rev = "159c5b9a2cdb8a8fe342078b7ac8139de76bad62"; 4508 - sha256 = "0h2dlln226jhvv8anybz4b70z698bfc0sdb5k2zhzya7k0lmlfcz"; 4531 + rev = "ce74852c36008b11dda451bfe6c2ed71c535152b"; 4532 + sha256 = "04hd5wg3f39sn4qc958fw9inmkaj18mkgvmwkxni4qnb2y8qs9pi"; 4509 4533 }; 4510 4534 meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/"; 4511 4535 }; 4512 4536 4513 4537 nvim-ts-rainbow = buildVimPluginFrom2Nix { 4514 4538 pname = "nvim-ts-rainbow"; 4515 - version = "2021-10-26"; 4539 + version = "2021-11-10"; 4516 4540 src = fetchFromGitHub { 4517 4541 owner = "p00f"; 4518 4542 repo = "nvim-ts-rainbow"; 4519 - rev = "2943a62d787e8b0ffa4dfc685036b262335889d3"; 4520 - sha256 = "113h15h0n454qfq0jlfpgp4f0msvsqmjc0mnsxw726yabd5qqjvg"; 4543 + rev = "5cef624eb407449a313b63cdda66720e9860821f"; 4544 + sha256 = "0r39ahrk54smb9ngb4s11kxjncrsarclrdjvaazdi82260saxgb9"; 4521 4545 }; 4522 4546 meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; 4523 4547 }; ··· 4560 4584 4561 4585 nvim_context_vt = buildVimPluginFrom2Nix { 4562 4586 pname = "nvim_context_vt"; 4563 - version = "2021-08-31"; 4587 + version = "2021-11-09"; 4564 4588 src = fetchFromGitHub { 4565 4589 owner = "haringsrob"; 4566 4590 repo = "nvim_context_vt"; 4567 - rev = "df026a7186e33e20c4b8f98f8f94a5caecc345af"; 4568 - sha256 = "0lxkmld4rg3vzxbx23v3r3hxkgj572kngddvy4l83068gwmdr08m"; 4591 + rev = "8db258aeff84adee646afab970980c745286a1e6"; 4592 + sha256 = "0jbkms1alssp9399nhbzilqap0yji6sxpy207v3vmk1haf27cqz4"; 4569 4593 }; 4570 4594 meta.homepage = "https://github.com/haringsrob/nvim_context_vt/"; 4571 4595 }; ··· 4632 4656 4633 4657 onedarkpro-nvim = buildVimPluginFrom2Nix { 4634 4658 pname = "onedarkpro.nvim"; 4635 - version = "2021-11-02"; 4659 + version = "2021-11-08"; 4636 4660 src = fetchFromGitHub { 4637 4661 owner = "olimorris"; 4638 4662 repo = "onedarkpro.nvim"; 4639 - rev = "2789a1a025b3511224bb35bd3b0bb014a674166c"; 4640 - sha256 = "0wgdsh8rni68llif9f0i9ckl1n75ig0gb4lczg4gdk4g5qxi4rwj"; 4663 + rev = "9015d8a1313b16cf3792830eb8d77553765adb80"; 4664 + sha256 = "19mhfr8ih2hp9jadgphwq0g576qsbnggiknv6ipkl60d8jrhxflk"; 4641 4665 }; 4642 4666 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 4643 4667 }; ··· 4680 4704 4681 4705 orgmode-nvim = buildVimPluginFrom2Nix { 4682 4706 pname = "orgmode.nvim"; 4683 - version = "2021-10-29"; 4707 + version = "2021-11-10"; 4684 4708 src = fetchFromGitHub { 4685 4709 owner = "kristijanhusak"; 4686 4710 repo = "orgmode.nvim"; 4687 - rev = "50d1a97b25d77f33d312b4775fbd68217d22c946"; 4688 - sha256 = "10rahp4yb6sjq8afrig0c0fi9fjvhcxqp3y9qclzz5bxp4skwv78"; 4711 + rev = "93779c1eed34da14ab8082933fb1e3d47869d07f"; 4712 + sha256 = "145460q9a9f4jp8l8pfqi5rf12vvz05g4jfd70h65i7i55l2v37j"; 4689 4713 }; 4690 4714 meta.homepage = "https://github.com/kristijanhusak/orgmode.nvim/"; 4691 4715 }; 4692 4716 4693 4717 package-info-nvim = buildVimPluginFrom2Nix { 4694 4718 pname = "package-info.nvim"; 4695 - version = "2021-10-30"; 4719 + version = "2021-11-09"; 4696 4720 src = fetchFromGitHub { 4697 4721 owner = "vuki656"; 4698 4722 repo = "package-info.nvim"; 4699 - rev = "0572250a6b69f01416399f2f581aa87c17e03810"; 4700 - sha256 = "0z26i2h42vjsc5fkikfi6w7d7fnf6m3j5m7a73hi9rdbw389b2ay"; 4723 + rev = "037bedfa881d60f0ece93c31f31d04cf3ca29a87"; 4724 + sha256 = "0gflgccj0ymgv89paq9dp54f56g0wwz7m56sdfdycjii491q5hm4"; 4701 4725 }; 4702 4726 meta.homepage = "https://github.com/vuki656/package-info.nvim/"; 4703 4727 }; ··· 4812 4836 4813 4837 plenary-nvim = buildVimPluginFrom2Nix { 4814 4838 pname = "plenary.nvim"; 4815 - version = "2021-10-29"; 4839 + version = "2021-11-08"; 4816 4840 src = fetchFromGitHub { 4817 4841 owner = "nvim-lua"; 4818 4842 repo = "plenary.nvim"; 4819 - rev = "96e821e8001c21bc904d3c15aa96a70c11462c5f"; 4820 - sha256 = "0y05pwc4kbjqgj1zjjhvmrll3d53wz55zgqavxd4bvj2gwhvnd2k"; 4843 + rev = "b42e0cfe22ad3a0cac35cf14315e9dc22cea2ec9"; 4844 + sha256 = "09is80vcmnp0w42nahsqwliiyiyv64s9x459rl2dk4mnr7hgi7fm"; 4821 4845 }; 4822 4846 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 4823 4847 }; ··· 5005 5029 5006 5030 rainbow = buildVimPluginFrom2Nix { 5007 5031 pname = "rainbow"; 5008 - version = "2021-10-25"; 5032 + version = "2021-11-08"; 5009 5033 src = fetchFromGitHub { 5010 5034 owner = "luochen1990"; 5011 5035 repo = "rainbow"; 5012 - rev = "54c79a24725af3a15d3aad20f70a56c7abbd46c3"; 5013 - sha256 = "1bd8nqlcyhxxf02p4a16gayqkdh1010b7mnlfvzy69iaf2xclyx5"; 5036 + rev = "f1cb0d3d4a4785428f7ccec9f0e69ad314d748d9"; 5037 + sha256 = "15227jrbhagbyvd56cq1byc32hwgbsh293r9fb96419pa3rm9j1l"; 5014 5038 }; 5015 5039 meta.homepage = "https://github.com/luochen1990/rainbow/"; 5016 5040 }; ··· 5089 5113 5090 5114 refactoring-nvim = buildVimPluginFrom2Nix { 5091 5115 pname = "refactoring.nvim"; 5092 - version = "2021-11-01"; 5116 + version = "2021-11-11"; 5093 5117 src = fetchFromGitHub { 5094 5118 owner = "theprimeagen"; 5095 5119 repo = "refactoring.nvim"; 5096 - rev = "0a6af73a7353233842d3c3004f66cb99eb7a45d0"; 5097 - sha256 = "0dm09183c68vsvpf3y3grfif7bqiba0jyprf3cgjypy1y8qzinvn"; 5120 + rev = "c3fea5e8b377b07cd744579f8ca65e3f805ddaad"; 5121 + sha256 = "0rbn1mnyn9dhxv48qngs71n8pw25fmyaaffqgrk3qxfc1rxihf4a"; 5098 5122 }; 5099 5123 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 5100 5124 }; ··· 5171 5195 meta.homepage = "https://github.com/mfukar/robotframework-vim/"; 5172 5196 }; 5173 5197 5198 + ron-vim = buildVimPluginFrom2Nix { 5199 + pname = "ron.vim"; 5200 + version = "2020-08-22"; 5201 + src = fetchFromGitHub { 5202 + owner = "ron-rs"; 5203 + repo = "ron.vim"; 5204 + rev = "04004b3395d219f95a533c4badd5ba831b7b7c07"; 5205 + sha256 = "1xlr8slwcr6b9p33awf8xzdp04myv6dcsxwi50val4vzvzcgyrcl"; 5206 + }; 5207 + meta.homepage = "https://github.com/ron-rs/ron.vim/"; 5208 + }; 5209 + 5174 5210 rspec-vim = buildVimPluginFrom2Nix { 5175 5211 pname = "rspec.vim"; 5176 5212 version = "2020-08-20"; ··· 5245 5281 5246 5282 SchemaStore-nvim = buildVimPluginFrom2Nix { 5247 5283 pname = "SchemaStore.nvim"; 5248 - version = "2021-11-08"; 5284 + version = "2021-11-09"; 5249 5285 src = fetchFromGitHub { 5250 5286 owner = "b0o"; 5251 5287 repo = "SchemaStore.nvim"; 5252 - rev = "29116d254c8fa4138cdbeac2beb9dedac6b52dcd"; 5253 - sha256 = "0jdzkbj6p8d84w6hfpwcdc0qzdrwzp7gqdqxgwl6nwkwm10ahwgm"; 5288 + rev = "6b3ec7db13a9935d5d948fb0985707181e07979d"; 5289 + sha256 = "18inch8c1n9b835igw8brvmxh4c8pl9cq8qiv3v64fry2pv59mqd"; 5254 5290 }; 5255 5291 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 5256 5292 }; ··· 5317 5353 5318 5354 seoul256-vim = buildVimPluginFrom2Nix { 5319 5355 pname = "seoul256.vim"; 5320 - version = "2020-06-21"; 5356 + version = "2021-11-08"; 5321 5357 src = fetchFromGitHub { 5322 5358 owner = "junegunn"; 5323 5359 repo = "seoul256.vim"; 5324 - rev = "24ed467ca6ef9ce7ede56c9ffb1c6b30cd0ee906"; 5325 - sha256 = "0ihs5nxdyx3jr1n96l2yx4b5gc48x7qbyxv6dc53ihw2vpn783fx"; 5360 + rev = "538742074ec5cac2e84c383f02b85b368d35df9c"; 5361 + sha256 = "0pcgx5ng3snfvcspfi62qbsg5pd10y79r3j21cn1g5rr5ck7zl7a"; 5326 5362 }; 5327 5363 meta.homepage = "https://github.com/junegunn/seoul256.vim/"; 5328 5364 }; ··· 5462 5498 5463 5499 sonokai = buildVimPluginFrom2Nix { 5464 5500 pname = "sonokai"; 5465 - version = "2021-11-05"; 5501 + version = "2021-11-11"; 5466 5502 src = fetchFromGitHub { 5467 5503 owner = "sainnhe"; 5468 5504 repo = "sonokai"; 5469 - rev = "c60000ce708e8cbcf833a4e82306169969174c7a"; 5470 - sha256 = "1iiamab2ym59l6mpm9v4jli9gdi9lmj73w5j7ag5f0n3bwdxpkyb"; 5505 + rev = "30dd4ae6f844ab0f53ba93eea61068f87886eb03"; 5506 + sha256 = "0hwcar6c6n3fvli9pmx1ycvk4128f47hl07c7y7hxzy2rks7s3j8"; 5471 5507 }; 5472 5508 meta.homepage = "https://github.com/sainnhe/sonokai/"; 5473 5509 }; ··· 5619 5655 5620 5656 stabilize-nvim = buildVimPluginFrom2Nix { 5621 5657 pname = "stabilize.nvim"; 5622 - version = "2021-11-07"; 5658 + version = "2021-11-10"; 5623 5659 src = fetchFromGitHub { 5624 5660 owner = "luukvbaal"; 5625 5661 repo = "stabilize.nvim"; 5626 - rev = "14c809b63c2a6fb87493dcab22ceba64ed5a1428"; 5627 - sha256 = "1xr2vy264fv0dk0rbs3q0cma4whrsdwxw8iqvfr2xa1mc1w5agpy"; 5662 + rev = "fd74d2a9d2a384a530eba3a9771a5396b4ddad26"; 5663 + sha256 = "190mf9w344db5civ122l7zdr63l811qcqf7shh89zx4qfrsllf43"; 5628 5664 }; 5629 5665 meta.homepage = "https://github.com/luukvbaal/stabilize.nvim/"; 5630 5666 }; ··· 5727 5763 5728 5764 syntastic = buildVimPluginFrom2Nix { 5729 5765 pname = "syntastic"; 5730 - version = "2021-10-18"; 5766 + version = "2021-11-11"; 5731 5767 src = fetchFromGitHub { 5732 5768 owner = "vim-syntastic"; 5733 5769 repo = "syntastic"; 5734 - rev = "d086f49d389e1c2d58211b1f92cf20c9f63dc325"; 5735 - sha256 = "0cnd2m1dnx69657dpckiiy1slx2fpnpggm3qs0nzm5rm3qpzx185"; 5770 + rev = "2c4b33f6e6679fb5f3824d9cd38d4813c71a19a3"; 5771 + sha256 = "18lb4rs9zrgn35b2x6b7pycd3h64virkadlidcy3xhzhsynlvwgr"; 5736 5772 }; 5737 5773 meta.homepage = "https://github.com/vim-syntastic/syntastic/"; 5738 5774 }; ··· 5993 6029 5994 6030 telescope-nvim = buildVimPluginFrom2Nix { 5995 6031 pname = "telescope.nvim"; 5996 - version = "2021-11-07"; 6032 + version = "2021-11-10"; 5997 6033 src = fetchFromGitHub { 5998 6034 owner = "nvim-telescope"; 5999 6035 repo = "telescope.nvim"; 6000 - rev = "458382836683140c1b4d8d74b80379fe4636bc40"; 6001 - sha256 = "0n9gpsd65fr0fn3cwfr73byjl3d0dr1yvwg0yhvh1iwhn6bg3nrv"; 6036 + rev = "f3ef5920725d719ed23195a457a86015826d3e1d"; 6037 + sha256 = "1dhczp84lhsz1ikqprg552wqi0hncigvhfb726iz01cr9y25b8mg"; 6002 6038 }; 6003 6039 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 6004 6040 }; ··· 6630 6666 6631 6667 vim-airline = buildVimPluginFrom2Nix { 6632 6668 pname = "vim-airline"; 6633 - version = "2021-11-03"; 6669 + version = "2021-11-11"; 6634 6670 src = fetchFromGitHub { 6635 6671 owner = "vim-airline"; 6636 6672 repo = "vim-airline"; 6637 - rev = "17f7dff748c188eb511ff831c4ea1803418f2b42"; 6638 - sha256 = "1n2j81aw5iwv080apw8d463h4yqm0yhqsrhvizfb7zz8j30nbhq0"; 6673 + rev = "47bf6b1716d599fa19756ce094309a3d551fac73"; 6674 + sha256 = "1c2sqkyd0zha9pchh1lbyww7v281rr488ff5b1c2rkc6inya9lcd"; 6639 6675 }; 6640 6676 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 6641 6677 }; ··· 6762 6798 6763 6799 vim-autoformat = buildVimPluginFrom2Nix { 6764 6800 pname = "vim-autoformat"; 6765 - version = "2021-10-07"; 6801 + version = "2021-11-07"; 6766 6802 src = fetchFromGitHub { 6767 6803 owner = "vim-autoformat"; 6768 6804 repo = "vim-autoformat"; 6769 - rev = "d8a6962524ed4afbf7c92e7678bacf91d66f097d"; 6770 - sha256 = "0sscvgj6fwa9yy2p999rr7chp1xgg8japzwpfwwnzw77x3ikv3cp"; 6805 + rev = "bb11f30377985e45e2eecef570856d42dbabb8b0"; 6806 + sha256 = "1lx5lrb0hjijvwngvgsgchww70c1bgqf5qxj8lhvk11dvxn3k087"; 6771 6807 }; 6772 6808 meta.homepage = "https://github.com/vim-autoformat/vim-autoformat/"; 6773 6809 }; ··· 6954 6990 6955 6991 vim-clang-format = buildVimPluginFrom2Nix { 6956 6992 pname = "vim-clang-format"; 6957 - version = "2019-05-15"; 6993 + version = "2021-11-11"; 6958 6994 src = fetchFromGitHub { 6959 6995 owner = "rhysd"; 6960 6996 repo = "vim-clang-format"; 6961 - rev = "95593b67723f23979cd7344ecfd049f2f917830f"; 6962 - sha256 = "0n0k13k63l8n0ixs4zrhlz923apvdp2mldadxqlhmvsvncmlqmpn"; 6997 + rev = "261d02c305f3ed361c39e3b9ca5d66b5b45df4c7"; 6998 + sha256 = "1lbfxb91s3951j3zhpmc7jj8xnsd2qcrd6d5xm35xarcsxwl5rvh"; 6963 6999 }; 6964 7000 meta.homepage = "https://github.com/rhysd/vim-clang-format/"; 6965 7001 }; ··· 7770 7806 7771 7807 vim-fugitive = buildVimPluginFrom2Nix { 7772 7808 pname = "vim-fugitive"; 7773 - version = "2021-11-02"; 7809 + version = "2021-11-11"; 7774 7810 src = fetchFromGitHub { 7775 7811 owner = "tpope"; 7776 7812 repo = "vim-fugitive"; 7777 - rev = "a6b823b8d0a8959e81876fd4857ba822495c028a"; 7778 - sha256 = "1aiz0lmjmjvcw67aanc06ba131fvszck0y7zg4kl625wlf6ahdkx"; 7813 + rev = "2e4ee0b5d6e61c6b3bc48e844343f89615dfc6e0"; 7814 + sha256 = "0ibks13hicpv5syk6lgrzjfbacwxfp02cmp23ry8wjm2dkzmv81s"; 7779 7815 }; 7780 7816 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 7781 7817 }; 7782 7818 7819 + vim-fzf-coauthorship = buildVimPluginFrom2Nix { 7820 + pname = "vim-fzf-coauthorship"; 7821 + version = "2021-07-14"; 7822 + src = fetchFromGitHub { 7823 + owner = "maxjacobson"; 7824 + repo = "vim-fzf-coauthorship"; 7825 + rev = "c5df55743a274a2c2d6370008f199176dabae0bd"; 7826 + sha256 = "0v52w9jiyg0q6fmsh0dq8gd6m48vhhj2fy95v7lvqyr7pnr1wqaa"; 7827 + }; 7828 + meta.homepage = "https://github.com/maxjacobson/vim-fzf-coauthorship/"; 7829 + }; 7830 + 7783 7831 vim-gh-line = buildVimPluginFrom2Nix { 7784 7832 pname = "vim-gh-line"; 7785 7833 version = "2021-03-25"; ··· 7902 7950 7903 7951 vim-go = buildVimPluginFrom2Nix { 7904 7952 pname = "vim-go"; 7905 - version = "2021-11-07"; 7953 + version = "2021-11-08"; 7906 7954 src = fetchFromGitHub { 7907 7955 owner = "fatih"; 7908 7956 repo = "vim-go"; 7909 - rev = "d2824f99487118912b3e6ad5baec09bae8d337e6"; 7910 - sha256 = "04kjl2x46ckazixwg43xf6n2m3f5rbgqbaskmwb5jsi6741vhkgi"; 7957 + rev = "96b74acc8747d667247fd8d30eb15f6b44778f6f"; 7958 + sha256 = "1cd5kzjsylg5if1fqs7ll5s47jmmbhpw3dxn1k7cyf9wkkmy0di8"; 7911 7959 }; 7912 7960 meta.homepage = "https://github.com/fatih/vim-go/"; 7913 7961 }; ··· 8311 8359 8312 8360 vim-javacomplete2 = buildVimPluginFrom2Nix { 8313 8361 pname = "vim-javacomplete2"; 8314 - version = "2021-08-21"; 8362 + version = "2021-11-09"; 8315 8363 src = fetchFromGitHub { 8316 8364 owner = "artur-shaik"; 8317 8365 repo = "vim-javacomplete2"; 8318 - rev = "54a4b02edef78509621d180794df0c6924e48b3b"; 8319 - sha256 = "08hi6r1cspkklir9qa6x4h4a3zs404hvcwsspylysv7asnv8jncf"; 8366 + rev = "19aec7d63eda429d056586d9bcc98f61f860c668"; 8367 + sha256 = "055f58342ai117gq0021zwhv8ck5sca8bxrqqixbv5cjywck0r17"; 8320 8368 }; 8321 8369 meta.homepage = "https://github.com/artur-shaik/vim-javacomplete2/"; 8322 8370 }; ··· 8480 8528 8481 8529 vim-lawrencium = buildVimPluginFrom2Nix { 8482 8530 pname = "vim-lawrencium"; 8483 - version = "2020-10-10"; 8531 + version = "2021-11-08"; 8484 8532 src = fetchFromGitHub { 8485 8533 owner = "ludovicchabant"; 8486 8534 repo = "vim-lawrencium"; 8487 - rev = "4592f24a50386e02870fa8d508cc7ba8454dc102"; 8488 - sha256 = "158hslq4chlqr9mhdpcrbxnygjk4j1pc2caqc3zrwqh9qdk8mvha"; 8535 + rev = "eee52c9da9a58c1f079adb4a3134a0620bc6e945"; 8536 + sha256 = "12431h344dhjswg0pm8nvfszy8hp8b61nm0r8gsry9a6w1j1a86b"; 8489 8537 }; 8490 8538 meta.homepage = "https://github.com/ludovicchabant/vim-lawrencium/"; 8491 8539 }; ··· 8853 8901 8854 8902 vim-mundo = buildVimPluginFrom2Nix { 8855 8903 pname = "vim-mundo"; 8856 - version = "2021-07-13"; 8904 + version = "2021-11-09"; 8857 8905 src = fetchFromGitHub { 8858 8906 owner = "simnalamburt"; 8859 8907 repo = "vim-mundo"; 8860 - rev = "8b4bccebf7a16938c77073983d643ba22aa04079"; 8861 - sha256 = "11livwi2pvnrxj7mildh46a6rli6hibpbffc9a5q6vxkvn9s6v29"; 8908 + rev = "e193f185bad3aa58446e771f8f2739abf11d3262"; 8909 + sha256 = "1q2j88rcg0slvm2bfdri4fy42h5a2md9bbqsspb3kzx5yrhgawhp"; 8862 8910 }; 8863 8911 meta.homepage = "https://github.com/simnalamburt/vim-mundo/"; 8864 8912 }; ··· 10138 10186 10139 10187 vim-test = buildVimPluginFrom2Nix { 10140 10188 pname = "vim-test"; 10141 - version = "2021-10-17"; 10189 + version = "2021-11-10"; 10142 10190 src = fetchFromGitHub { 10143 10191 owner = "vim-test"; 10144 10192 repo = "vim-test"; 10145 - rev = "2052bd926c37b5c828dd07c47ac676102ca34a0e"; 10146 - sha256 = "1lyx57jryxx5r9s60hg3v6y0kx5p2qc408nl8zhffqhzzmxvkgp9"; 10193 + rev = "8d942aa3b0eea1d53cccd1ee87a241b651f485ee"; 10194 + sha256 = "03s5m19j19xjnwnfknfff4nj3wpzb11fbkf95bif1rrms9v8kw2i"; 10147 10195 }; 10148 10196 meta.homepage = "https://github.com/vim-test/vim-test/"; 10149 10197 }; ··· 10654 10702 10655 10703 vim_current_word = buildVimPluginFrom2Nix { 10656 10704 pname = "vim_current_word"; 10657 - version = "2021-09-26"; 10705 + version = "2021-11-09"; 10658 10706 src = fetchFromGitHub { 10659 10707 owner = "dominikduda"; 10660 10708 repo = "vim_current_word"; 10661 - rev = "5cfee50ec35d011478c4ec9805a0e5d9a92f09ea"; 10662 - sha256 = "0l543hg5wyrbqykbm8vvhcb8wq9gwkc8y4nq9f7qy5a2qssvvd31"; 10709 + rev = "961d54dd53a1da7a9402dc92098a8a8c75d79ac6"; 10710 + sha256 = "1qa8pnr8fjxy0d3kf4vhjzwqlj1yszj2r21phmw4f3yl1hl72hc0"; 10663 10711 }; 10664 10712 meta.homepage = "https://github.com/dominikduda/vim_current_word/"; 10665 10713 }; ··· 10678 10726 10679 10727 vimade = buildVimPluginFrom2Nix { 10680 10728 pname = "vimade"; 10681 - version = "2021-10-29"; 10729 + version = "2021-11-09"; 10682 10730 src = fetchFromGitHub { 10683 10731 owner = "TaDaa"; 10684 10732 repo = "vimade"; 10685 - rev = "934d5c92e5b3439fb2eb2a8d8e6e50c4bf02d740"; 10686 - sha256 = "0pmmhap4npfg191dkzia1lajvp2l583bf2x2f2n33qlwbq2nh4nk"; 10733 + rev = "25ac9e6e3b8f127ab81dc996c69bb7a2c8f26329"; 10734 + sha256 = "1nkqmxvamziyavpfqlpn24wqzmrjwzb0s53avkw06h437mpzxzgy"; 10687 10735 }; 10688 10736 meta.homepage = "https://github.com/TaDaa/vimade/"; 10689 10737 }; ··· 10811 10859 10812 10860 vimtex = buildVimPluginFrom2Nix { 10813 10861 pname = "vimtex"; 10814 - version = "2021-11-06"; 10862 + version = "2021-11-11"; 10815 10863 src = fetchFromGitHub { 10816 10864 owner = "lervag"; 10817 10865 repo = "vimtex"; 10818 - rev = "8bfcb533b90447b8f70c4c0de712bd966059e416"; 10819 - sha256 = "1fls9g2bw5pr7y401c63ixi99d7cvm7nxawvpysayz36iyqajrwr"; 10866 + rev = "c63adb6958458b62a7b9c0e4156d11a5da5f1a9f"; 10867 + sha256 = "07q4wmckz2a1x2l11pa1m5dqbk8wz0slk28p7wcapwfn5lxf48jq"; 10820 10868 }; 10821 10869 meta.homepage = "https://github.com/lervag/vimtex/"; 10822 10870 };
+4
pkgs/misc/vim-plugins/overrides.nix
··· 776 776 ]; 777 777 }); 778 778 779 + vim-fzf-coauthorship = super.vim-fzf-coauthorship.overrideAttrs (old: { 780 + dependencies = with self; [ fzf-vim ]; 781 + }); 782 + 779 783 # change the go_bin_path to point to a path in the nix store. See the code in 780 784 # fatih/vim-go here 781 785 # https://github.com/fatih/vim-go/blob/155836d47052ea9c9bac81ba3e937f6f22c8e384/autoload/go/path.vim#L154-L159
+1 -1
pkgs/misc/vim-plugins/update-shell.nix
··· 7 7 packages = [ 8 8 bash 9 9 pyEnv 10 - nix 10 + nix_2_3 11 11 nix-prefetch-scripts 12 12 ]; 13 13 }
+6 -2
pkgs/misc/vim-plugins/vim-plugin-names
··· 228 228 hotwatermorning/auto-git-diff 229 229 hrsh7th/cmp-buffer@main 230 230 hrsh7th/cmp-calc@main 231 + hrsh7th/cmp-cmdline@main 231 232 hrsh7th/cmp-emoji@main 233 + hrsh7th/cmp-nvim-lsp-document-symbol@main 232 234 hrsh7th/cmp-nvim-lsp@main 233 235 hrsh7th/cmp-nvim-lua@main 234 236 hrsh7th/cmp-omni@main ··· 381 383 lepture/vim-jinja 382 384 lervag/vimtex 383 385 lewis6991/gitsigns.nvim@main 384 - lf-lang/lingua-franca.vim 386 + lf-lang/lingua-franca.vim@main 385 387 lfe-support/vim-lfe 386 388 lfilho/cosco.vim 387 389 lifepillar/vim-gruvbox8 ··· 439 441 matze/vim-move 440 442 max397574/better-escape.nvim 441 443 maximbaz/lightline-ale 444 + maxjacobson/vim-fzf-coauthorship 442 445 MaxMEllon/vim-jsx-pretty 443 446 mbbill/undotree 444 447 mboughaba/i3config.vim ··· 648 651 roman/golden-ratio 649 652 romgrk/barbar.nvim 650 653 romgrk/nvim-treesitter-context 654 + ron-rs/ron.vim 651 655 ron89/thesaurus_query.vim 652 656 roxma/nvim-cm-racer 653 657 roxma/nvim-completion-manager ··· 884 888 vmchale/dhall-vim 885 889 vn-ki/coc-clap 886 890 voldikss/vim-floaterm 887 - VundleVim/Vundle.vim 888 891 vuki656/package-info.nvim 892 + VundleVim/Vundle.vim 889 893 w0ng/vim-hybrid 890 894 wakatime/vim-wakatime 891 895 wannesm/wmgraphviz.vim
+2 -2
pkgs/os-specific/linux/kernel/linux-lqx.nix
··· 1 1 { lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args: 2 2 3 3 let 4 - version = "5.14.14"; 4 + version = "5.14.16"; 5 5 suffix = "lqx1"; 6 6 in 7 7 ··· 14 14 owner = "zen-kernel"; 15 15 repo = "zen-kernel"; 16 16 rev = "v${version}-${suffix}"; 17 - sha256 = "sha256-gwWZNGHmbKQajMP4mu3XT2Xf93MkcNpAXW8h94O4pNM="; 17 + sha256 = "sha256-nWeHvKnVo/ln8sTLdFTK1pG09HMTdZ75a+3Ehxjd5pc="; 18 18 }; 19 19 20 20 extraMeta = {
+3 -3
pkgs/servers/home-assistant/component-packages.nix
··· 631 631 "owntracks" = ps: with ps; [ pynacl pyturbojpeg aiohttp-cors hass-nabucasa paho-mqtt ]; 632 632 "ozw" = ps: with ps; [ aiohttp-cors paho-mqtt python-openzwave-mqtt ]; 633 633 "p1_monitor" = ps: with ps; [ p1monitor ]; 634 - "panasonic_bluray" = ps: with ps; [ ]; # missing inputs: panacotta 634 + "panasonic_bluray" = ps: with ps; [ panacotta ]; 635 635 "panasonic_viera" = ps: with ps; [ ]; # missing inputs: panasonic_viera 636 636 "pandora" = ps: with ps; [ pexpect ]; 637 637 "panel_custom" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow sqlalchemy ]; ··· 890 890 "touchline" = ps: with ps; [ ]; # missing inputs: pytouchline 891 891 "tplink" = ps: with ps; [ aiohttp-cors ifaddr python-kasa ]; 892 892 "tplink_lte" = ps: with ps; [ ]; # missing inputs: tp-connected 893 - "traccar" = ps: with ps; [ aiohttp-cors stringcase ]; # missing inputs: pytraccar 893 + "traccar" = ps: with ps; [ aiohttp-cors pytraccar stringcase ]; 894 894 "trace" = ps: with ps; [ ]; 895 895 "tractive" = ps: with ps; [ aiotractive ]; 896 896 "tradfri" = ps: with ps; [ pytradfri ]; ··· 922 922 "updater" = ps: with ps; [ ]; 923 923 "upnp" = ps: with ps; [ aiohttp-cors async-upnp-client ifaddr zeroconf ]; 924 924 "uptime" = ps: with ps; [ ]; 925 - "uptimerobot" = ps: with ps; [ ]; # missing inputs: pyuptimerobot 925 + "uptimerobot" = ps: with ps; [ pyuptimerobot ]; 926 926 "usb" = ps: with ps; [ aiohttp-cors pyserial pyudev ]; 927 927 "uscis" = ps: with ps; [ ]; # missing inputs: uscisstatus 928 928 "usgs_earthquakes_feed" = ps: with ps; [ geojson-client ];
+2
pkgs/servers/home-assistant/default.nix
··· 662 662 "toon" 663 663 "totalconnect" 664 664 "tplink" 665 + "traccar" 665 666 "trace" 666 667 "tradfri" 667 668 "transmission" ··· 683 684 # disabled, because it tries to join a multicast group and fails to find a usable network interface 684 685 # "upnp" 685 686 "uptime" 687 + "uptimerobot" 686 688 "usgs_earthquakes_feed" 687 689 "utility_meter" 688 690 "uvc"
+19 -2
pkgs/servers/openafs/1.8/module.nix
··· 1 1 { lib, stdenv, fetchurl, which, autoconf, automake, flex, bison 2 - , kernel, glibc, perl, libtool_2, libkrb5 }: 2 + , kernel, glibc, perl, libtool_2, libkrb5, fetchpatch }: 3 3 4 4 with (import ./srcs.nix { 5 5 inherit fetchurl; ··· 17 17 ++ kernel.moduleBuildDependencies; 18 18 19 19 buildInputs = [ libkrb5 ]; 20 + 21 + patches = [ 22 + # LINUX 5.14: explicitly set set_page_dirty to default 23 + ((fetchpatch { 24 + url = "https://gerrit.openafs.org/changes/14830/revisions/20b8a37950b3718b85a4a3d21b23469a5176eb6a/patch"; 25 + sha256 = "1mkfwq0pbwvfjspsy2lxhi0f09hljgc6xyn3y97sai0dyivn05jp"; 26 + }).overrideAttrs (o: { 27 + postFetch = "mv $out p; base64 -d p > $out; " + o.postFetch; 28 + })) 29 + # Linux 5.15: Convert osi_Msg macro to a function 30 + ((fetchpatch { 31 + url = "https://gerrit.openafs.org/changes/14831/revisions/6cfa9046229d90c0625687e3fddb7877f21fbcff/patch"; 32 + sha256 = "18rip9a1krxf47fizf3f12ddq55apzb2w3wjj5qs7n3sh2nwks7g"; 33 + }).overrideAttrs (o: { 34 + postFetch = "mv $out p; base64 -d p > $out; " + o.postFetch; 35 + })) 36 + ]; 20 37 21 38 hardeningDisable = [ "pic" ]; 22 39 ··· 56 73 license = licenses.ipl10; 57 74 platforms = platforms.linux; 58 75 maintainers = with maintainers; [ maggesi spacefrogg ]; 59 - broken = versionOlder kernel.version "3.18" || kernel.kernelAtLeast "5.15" || kernel.isHardened; 76 + broken = versionOlder kernel.version "3.18" || kernel.isHardened; 60 77 }; 61 78 }
+4 -4
pkgs/tools/admin/realvnc-vnc-viewer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "realvnc-vnc-viewer"; 5 - version = "6.21.406"; 5 + version = "6.21.920"; 6 6 7 7 src = { 8 8 "x86_64-linux" = fetchurl { 9 9 url = "https://www.realvnc.com/download/file/viewer.files/VNC-Viewer-${version}-Linux-x64.rpm"; 10 - sha256 = "0rnizzanaykqg1vfy56p8abc4fmgpbibj54j4c1v81zsj3kmahka"; 10 + sha256 = "1qghc5380h4b2pczksmky3kcffz5wn9shw033w4f969wl96p31fz"; 11 11 }; 12 12 "i686-linux" = fetchurl { 13 13 url = "https://www.realvnc.com/download/file/viewer.files/VNC-Viewer-${version}-Linux-x86.rpm"; 14 - sha256 = "1rlxfiqymi1licn2spyiqa00kiwzhdr0pkh7vv3ai6gb9f6phk31"; 14 + sha256 = "034iwqxpqhnm6i292fakva7vkwrrzamwcvbm7xyccpd54adj0grn"; 15 15 }; 16 - }.${stdenv.system}; 16 + }.${stdenv.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 17 17 18 18 nativeBuildInputs = [ autoPatchelfHook rpmextract ]; 19 19 buildInputs = [ libX11 libXext ];
+18 -2
pkgs/tools/compression/ouch/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, help2man, installShellFiles }: 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , help2man 5 + , installShellFiles 6 + , pkg-config 7 + , bzip2 8 + , xz 9 + , zlib 10 + , zstd 11 + }: 2 12 3 13 rustPlatform.buildRustPackage rec { 4 14 pname = "ouch"; ··· 13 23 14 24 cargoSha256 = "sha256-jEprWtIl5LihD9fOMYHGGlk0+h4woUlwUWNfSkd2t10="; 15 25 16 - nativeBuildInputs = [ help2man installShellFiles ]; 26 + nativeBuildInputs = [ help2man installShellFiles pkg-config ]; 27 + 28 + buildInputs = [ bzip2 xz zlib zstd ]; 29 + 30 + cargoBuildFlags = [ "--features" "zstd/pkg-config" ]; 31 + 32 + cargoTestFlags = cargoBuildFlags; 17 33 18 34 postInstall = '' 19 35 help2man $out/bin/ouch > ouch.1
+8 -4
pkgs/tools/inputmethods/emote/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "emote"; 5 - version = "2.0.0"; 5 + version = "3.0.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tom-james-watson"; 9 9 repo = "Emote"; 10 10 rev = "v${version}"; 11 - sha256 = "kYXFD6VBnuEZ0ZMsF6ZmN4V0JN83puxRILpNlllVsKQ="; 11 + sha256 = "mqCSl+EGbnL9AfzZT3aa/Y5Rsx433ZmI31BmK3wkaJk="; 12 12 }; 13 13 14 14 postPatch = '' 15 - substituteInPlace setup.py --replace "pygobject==3.36.0" "pygobject" 15 + substituteInPlace setup.py \ 16 + --replace "pygobject==3.36.0" "pygobject" \ 17 + --replace "manimpango==0.3.0" "manimpango" 16 18 substituteInPlace emote/config.py --replace 'os.environ.get("SNAP")' "'$out/share/emote'" 19 + substituteInPlace emote/picker.py --replace 'os.environ.get("SNAP_VERSION", "dev build")' "'$version'" 17 20 substituteInPlace snap/gui/emote.desktop --replace "Icon=\''${SNAP}/usr/share/icons/emote.svg" "Icon=emote.svg" 18 21 ''; 19 22 ··· 27 30 ]; 28 31 29 32 propagatedBuildInputs = [ 33 + python3Packages.manimpango 30 34 python3Packages.pygobject3 31 35 gtk3 32 36 xdotool ··· 36 40 postInstall = '' 37 41 install -D snap/gui/emote.desktop $out/share/applications/emote.desktop 38 42 install -D snap/gui/emote.svg $out/share/pixmaps/emote.svg 39 - install -D -t $out/share/emote/static static/{emojis.json,logo.svg,style.css} 43 + install -D -t $out/share/emote/static static/{NotoColorEmoji.ttf,emojis.csv,logo.svg,style.css} 40 44 ''; 41 45 42 46 dontWrapGApps = true;
+7
pkgs/tools/misc/most/default.nix
··· 9 9 sha256 = "008537ns659pw2aag15imwjrxj73j26aqq90h285is6kz8gmv06v"; 10 10 }; 11 11 12 + patches = [ 13 + # Upstream patch to fix parallel build failure 14 + ./parallel-make.patch 15 + ]; 16 + 12 17 outputs = [ "out" "doc" ]; 13 18 14 19 makeFlags = [ ··· 25 30 configureFlags = [ "--with-slang=${slang.dev}" ]; 26 31 27 32 buildInputs = [ slang ncurses ]; 33 + 34 + enableParallelBuilding = true; 28 35 29 36 meta = with lib; { 30 37 description = "A terminal pager similar to 'more' and 'less'";
+18
pkgs/tools/misc/most/parallel-make.patch
··· 1 + Upstream commit c9cfad50a ("src/Makefile.in: Avoid a race condition 2 + when performing a parallel build") 3 + 4 + --- a/src/Makefile.in 5 + +++ b/src/Makefile.in 6 + @@ -54,6 +54,12 @@ COMPILE_CMD = $(CC) -c $(ALL_CFLAGS) -DMOST_SYSTEM_INITFILE='"$(SYS_INITFILE)"' 7 + all: $(EXEC) 8 + $(EXEC): $(OBJDIR) $(CONFIG_H) slangversion $(OBJDIR)/$(EXEC) 9 + @echo $(EXEC) created in $(OBJDIR) 10 + + 11 + +# C source files include autogenrated "config.h". Make sure 12 + +# it's available before the compilation. Pessimistically assume 13 + +# any source file can depend on "config.h". 14 + +$(OBJS) $(OBJDIR)/chkslang.o: $(CONFIG_H) 15 + + 16 + $(OBJDIR)/$(EXEC): $(OBJS) 17 + cd $(OBJDIR); $(CC) $(OFILES) -o $(EXEC) $(LDFLAGS) $(EXECLIBS) 18 + #
+15 -1
pkgs/tools/misc/youtube-dl/default.nix
··· 1 - { lib, fetchurl, buildPythonPackage 1 + { lib, fetchurl, fetchpatch, buildPythonPackage 2 2 , zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc 3 3 # Pandoc is required to build the package's man page. Release tarballs contain a 4 4 # formatted man page already, though, it will still be installed. We keep the ··· 24 24 url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; 25 25 sha256 = "1hqan9h55x9gfdakw554vic68w9gpvhblchwxlw265zxp56hxjrw"; 26 26 }; 27 + 28 + patches = [ 29 + # Fixes throttling on youtube.com. Without the patch downloads are capped at 30 + # about 80KiB/s. See, e.g., 31 + # 32 + # https://github.com/ytdl-org/youtube-dl/issues/29326 33 + # 34 + # The patch comes from PR https://github.com/ytdl-org/youtube-dl/pull/30188 35 + (fetchpatch { 36 + name = "fix-youtube-dl-speed.patch"; 37 + url = "https://github.com/ytdl-org/youtube-dl/pull/30188.patch"; 38 + sha256 = "15liban37ina2y4bnykfdywdy4rbkfff2r6vd0kqn2k7rfkcczyz"; 39 + }) 40 + ]; 27 41 28 42 nativeBuildInputs = [ installShellFiles makeWrapper ]; 29 43 buildInputs = [ zip ] ++ lib.optional generateManPage pandoc;
+7 -8
pkgs/tools/networking/nss-mdns/default.nix
··· 21 21 "--localstatedir=/var" 22 22 ]; 23 23 24 - patches = lib.optional stdenv.hostPlatform.isMusl 25 - ( 26 - fetchpatch 27 - { 28 - url = "https://raw.githubusercontent.com/openembedded/openembedded-core/94f780e889f194b67a48587ac68b3200288bee10/meta/recipes-connectivity/libnss-mdns/libnss-mdns/0001-check-for-nss.h.patch"; 29 - sha256 = "1l1kjbdw8z31br4vib3l5b85jy7kxin760a2f24lww8v6lqdpgds"; 30 - } 31 - ); 24 + patches = [ 25 + # Provide compat definition for libc lacking <nss.h> (e.g. musl) 26 + (fetchpatch { 27 + url = "https://raw.githubusercontent.com/openembedded/openembedded-core/94f780e889f194b67a48587ac68b3200288bee10/meta/recipes-connectivity/libnss-mdns/libnss-mdns/0001-check-for-nss.h.patch"; 28 + sha256 = "1l1kjbdw8z31br4vib3l5b85jy7kxin760a2f24lww8v6lqdpgds"; 29 + }) 30 + ]; 32 31 33 32 34 33 meta = {
+28
pkgs/tools/networking/tinyssh/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "tinyssh"; 5 + version = "20210601"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "janmojzis"; 9 + repo = "tinyssh"; 10 + rev = version; 11 + sha256 = "sha256-+THoPiD6dW5ZuiQmmLckOJGyjhzdF3qF0DgC51zjGY8="; 12 + }; 13 + 14 + preConfigure = '' 15 + echo /bin > conf-bin 16 + echo /share/man > conf-man 17 + ''; 18 + 19 + DESTDIR = placeholder "out"; 20 + 21 + meta = with lib; { 22 + description = "minimalistic SSH server"; 23 + homepage = "https://tinyssh.org"; 24 + license = licenses.publicDomain; 25 + platforms = platforms.unix; 26 + maintainers = [ maintainers.kaction ]; 27 + }; 28 + }
+39 -21
pkgs/tools/security/hash-slinger/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python2Packages, unbound, libreswan }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , python3 5 + , unbound 6 + , libreswan 7 + }: 2 8 3 - let 4 - pythonPackages = python2Packages; 5 - in stdenv.mkDerivation rec { 6 - pname = "hash-slinger"; 7 - version = "2.7"; 9 + stdenv.mkDerivation rec { 10 + pname = "hash-slinger"; 11 + version = "3.1"; 8 12 9 13 src = fetchFromGitHub { 10 14 owner = "letoams"; 11 15 repo = pname; 12 16 rev = version; 13 - sha256 = "05wn744ydclpnpyah6yfjqlfjlasrrhzj48lqmm5a91nyps5yqyn"; 17 + sha256 = "sha256-mhMUdZt846QjwRIh2m/4EE+93fUcCKc2FFeoFpzKYvk="; 14 18 }; 15 19 16 - pythonPath = with pythonPackages; [ dnspython m2crypto ipaddr python-gnupg 17 - pyunbound ]; 20 + pythonPath = with python3.pkgs; [ 21 + dnspython 22 + m2crypto 23 + python-gnupg 24 + pyunbound 25 + ]; 18 26 19 - buildInputs = [ pythonPackages.wrapPython ]; 20 - propagatedBuildInputs = [ unbound libreswan ] ++ pythonPath; 21 - propagatedUserEnvPkgs = [ unbound libreswan ]; 27 + buildInputs = [ 28 + python3.pkgs.wrapPython 29 + ]; 22 30 23 - patchPhase = '' 31 + propagatedBuildInputs = [ 32 + unbound 33 + libreswan 34 + ] ++ pythonPath; 35 + 36 + propagatedUserEnvPkgs = [ 37 + unbound 38 + libreswan 39 + ]; 40 + 41 + postPatch = '' 24 42 substituteInPlace Makefile \ 25 43 --replace "$(DESTDIR)/usr" "$out" 26 44 substituteInPlace ipseckey \ 27 45 --replace "/usr/sbin/ipsec" "${libreswan}/sbin/ipsec" 28 46 substituteInPlace tlsa \ 29 - --replace "/var/lib/unbound/root" "${pythonPackages.pyunbound}/etc/pyunbound/root" 47 + --replace "/var/lib/unbound/root" "${python3.pkgs.pyunbound}/etc/pyunbound/root" 30 48 patchShebangs * 31 - ''; 49 + ''; 32 50 33 51 installPhase = '' 34 - mkdir -p $out/bin $out/man $out/${pythonPackages.python.sitePackages}/ 52 + mkdir -p $out/bin $out/man $out/lib/${python3.libPrefix}/site-packages 35 53 make install 36 54 wrapPythonPrograms 37 - ''; 55 + ''; 38 56 39 - meta = { 57 + meta = with lib; { 40 58 description = "Various tools to generate special DNS records"; 41 - homepage = "https://github.com/letoams/hash-slinger"; 42 - license = lib.licenses.gpl2Plus; 43 - maintainers = [ lib.maintainers.leenaars ]; 59 + homepage = "https://github.com/letoams/hash-slinger"; 60 + license = licenses.gpl2Plus; 61 + maintainers = with maintainers; [ leenaars ]; 44 62 }; 45 63 }
+1 -2
pkgs/tools/security/mkpasswd/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "mkpasswd"; 5 - inherit (whois) version; 6 - inherit (whois) src; 5 + inherit (whois) version src; 7 6 8 7 nativeBuildInputs = [ perl pkg-config ]; 9 8 buildInputs = [ libxcrypt ];
-1
pkgs/tools/security/rbw/default.nix
··· 74 74 $out/bin/rbw gen-completions $shell > rbw.$shell 75 75 installShellCompletion rbw.$shell 76 76 done 77 - '' + '' 78 77 cp bin/git-credential-rbw $out/bin 79 78 '' + lib.optionalString withFzf '' 80 79 cp bin/rbw-fzf $out/bin
+15 -1
pkgs/top-level/all-packages.nix
··· 862 862 863 863 aescrypt = callPackage ../tools/misc/aescrypt { }; 864 864 865 + aether-lv2 = callPackage ../applications/audio/aether-lv2 { }; 866 + 865 867 acme-client = callPackage ../tools/networking/acme-client { stdenv = gccStdenv; }; 866 868 867 869 adriconf = callPackage ../tools/graphics/adriconf { }; ··· 1459 1461 1460 1462 bic = callPackage ../development/interpreters/bic { }; 1461 1463 1462 - binance = callPackage ../applications/misc/binance { }; 1464 + binance = callPackage ../applications/misc/binance { 1465 + electron = electron_12; 1466 + }; 1463 1467 1464 1468 bit = callPackage ../applications/version-management/git-and-tools/bit { }; 1465 1469 ··· 8176 8180 }; 8177 8181 8178 8182 opensm = callPackage ../tools/networking/opensm { }; 8183 + 8184 + tinyssh = callPackage ../tools/networking/tinyssh { }; 8179 8185 8180 8186 opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {}); 8181 8187 ··· 14448 14454 14449 14455 fprettify = callPackage ../development/tools/fprettify { }; 14450 14456 14457 + fortran-language-server = python3.pkgs.callPackage ../development/tools/fortran-language-server { }; 14458 + 14451 14459 framac = callPackage ../development/tools/analysis/frama-c { }; 14452 14460 14453 14461 frame = callPackage ../development/libraries/frame { }; ··· 15823 15831 CoinMP = callPackage ../development/libraries/CoinMP { }; 15824 15832 15825 15833 cointop = callPackage ../applications/misc/cointop { }; 15834 + 15835 + collada-dom = callPackage ../development/libraries/collada-dom { }; 15826 15836 15827 15837 cog = callPackage ../development/web/cog { }; 15828 15838 ··· 19220 19230 readline81 = callPackage ../development/libraries/readline/8.1.nix { }; 19221 19231 19222 19232 readosm = callPackage ../development/libraries/readosm { }; 19233 + 19234 + recastnavigation = callPackage ../development/libraries/recastnavigation { }; 19223 19235 19224 19236 rinutils = callPackage ../development/libraries/rinutils { }; 19225 19237 ··· 28164 28176 inherit (gnome) zenity; 28165 28177 git = gitMinimal; 28166 28178 }; 28179 + 28180 + surge-XT = callPackage ../applications/audio/surge-XT { }; 28167 28181 28168 28182 survex = callPackage ../applications/misc/survex { 28169 28183 inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
+2 -1
pkgs/top-level/metrics.nix
··· 8 8 #requiredSystemFeatures = [ "benchmark" ]; # dedicated machine, by @vcunat last time 9 9 } 10 10 '' 11 - export NIX_STATE_DIR=$TMPDIR 11 + export NIX_STORE_DIR=$TMPDIR/store 12 + export NIX_STATE_DIR=$TMPDIR/state 12 13 export NIX_PAGER= 13 14 nix-store --init 14 15
+11 -1
pkgs/top-level/python-packages.nix
··· 4581 4581 4582 4582 manhole = callPackage ../development/python-modules/manhole { }; 4583 4583 4584 + manimpango = callPackage ../development/python-modules/manimpango { 4585 + inherit (pkgs.darwin.apple_sdk.frameworks) AppKit; 4586 + }; 4587 + 4584 4588 manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix { }; 4585 4589 4586 4590 manuel = callPackage ../development/python-modules/manuel { }; ··· 5421 5425 pamela = callPackage ../development/python-modules/pamela { }; 5422 5426 5423 5427 pamqp = callPackage ../development/python-modules/pamqp { }; 5428 + 5429 + panacotta = callPackage ../development/python-modules/panacotta { }; 5424 5430 5425 5431 pandas = callPackage ../development/python-modules/pandas { }; 5426 5432 ··· 7720 7726 cudaSupport = false; 7721 7727 }; 7722 7728 7729 + pytraccar = callPackage ../development/python-modules/pytraccar { }; 7730 + 7723 7731 pytradfri = callPackage ../development/python-modules/pytradfri { }; 7724 7732 7725 7733 pytrafikverket = callPackage ../development/python-modules/pytrafikverket { }; ··· 7768 7776 pyupdate = callPackage ../development/python-modules/pyupdate { }; 7769 7777 7770 7778 pyupgrade = callPackage ../development/python-modules/pyupgrade { }; 7779 + 7780 + pyuptimerobot = callPackage ../development/python-modules/pyuptimerobot { }; 7771 7781 7772 7782 pyusb = callPackage ../development/python-modules/pyusb { 7773 7783 inherit (pkgs) libusb1; ··· 8531 8541 8532 8542 simplekml = callPackage ../development/python-modules/simplekml { }; 8533 8543 8534 - simple-di = callPackage ../development/python-modules/simple_di { }; 8544 + simple-di = callPackage ../development/python-modules/simple-di { }; 8535 8545 8536 8546 simple-rest-client = callPackage ../development/python-modules/simple-rest-client { }; 8537 8547