lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
fd9f6da8 858a718b

+329 -177
+10
maintainers/maintainer-list.nix
··· 6355 6355 }]; 6356 6356 name = "Ioannis Koutras"; 6357 6357 }; 6358 + jonaenz = { 6359 + name = "Jona Enzinger"; 6360 + email = "5xt3zyy5l@mozmail.com"; 6361 + matrix = "@jona:matrix.jonaenz.de"; 6362 + github = "jonaenz"; 6363 + githubId = 57130301; 6364 + keys = [{ 6365 + fingerprint = "1CC5 B67C EB9A 13A5 EDF6 F10E 0B4A 3662 FC58 9202"; 6366 + }]; 6367 + }; 6358 6368 jonafato = { 6359 6369 email = "jon@jonafato.com"; 6360 6370 github = "jonafato";
+4 -4
nixos/modules/services/hardware/kanata.nix
··· 180 180 package = mkOption { 181 181 type = types.package; 182 182 default = pkgs.kanata; 183 - defaultText = lib.literalExpression "pkgs.kanata"; 184 - example = lib.literalExpression "pkgs.kanata-with-cmd"; 183 + defaultText = literalExpression "pkgs.kanata"; 184 + example = literalExpression "pkgs.kanata-with-cmd"; 185 185 description = mdDoc '' 186 186 The kanata package to use. 187 187 ··· 198 198 }; 199 199 }; 200 200 201 - config = lib.mkIf cfg.enable { 201 + config = mkIf cfg.enable { 202 202 hardware.uinput.enable = true; 203 203 204 204 systemd = { ··· 211 211 }; 212 212 }; 213 213 214 - meta.maintainers = with lib.maintainers; [ linj ]; 214 + meta.maintainers = with maintainers; [ linj ]; 215 215 }
+9 -1
nixos/modules/services/web-apps/nextcloud.nix
··· 254 254 ''; 255 255 }; 256 256 257 + fastcgiTimeout = mkOption { 258 + type = types.int; 259 + default = 120; 260 + description = lib.mdDoc '' 261 + FastCGI timeout for database connection in seconds. 262 + ''; 263 + }; 264 + 257 265 database = { 258 266 259 267 createLocally = mkOption { ··· 1032 1040 fastcgi_pass unix:${fpm.socket}; 1033 1041 fastcgi_intercept_errors on; 1034 1042 fastcgi_request_buffering off; 1035 - fastcgi_read_timeout 120s; 1043 + fastcgi_read_timeout ${builtins.toString cfg.fastcgiTimeout}s; 1036 1044 ''; 1037 1045 }; 1038 1046 "~ \\.(?:css|js|woff2?|svg|gif|map)$".extraConfig = ''
+1 -1
nixos/modules/system/activation/switch-to-configuration.pl
··· 167 167 # Takes the name of the unit as an argument and returns a bool whether the unit is active or not. 168 168 sub unit_is_active { 169 169 my ($unit_name) = @_; 170 - my $units = busctl_call_systemd1_mgr("ListUnitsByNames", "as", 1, $unit_name)->{data}->[0]; 170 + my $units = busctl_call_systemd1_mgr("ListUnitsByNames", "as", 1, , "--", $unit_name)->{data}->[0]; 171 171 if (scalar(@{$units}) == 0) { 172 172 return 0; 173 173 }
+38 -1
nixos/tests/switch-test.nix
··· 214 214 systemd.services."escaped\\x2ddash".serviceConfig.X-Test = "test"; 215 215 }; 216 216 217 + unitStartingWithDash.configuration = { 218 + systemd.services."-" = { 219 + wantedBy = [ "multi-user.target" ]; 220 + serviceConfig = { 221 + Type = "oneshot"; 222 + RemainAfterExit = true; 223 + ExecStart = "${pkgs.coreutils}/bin/true"; 224 + }; 225 + }; 226 + }; 227 + 228 + unitStartingWithDashModified.configuration = { 229 + imports = [ unitStartingWithDash.configuration ]; 230 + systemd.services."-" = { 231 + reloadIfChanged = true; 232 + serviceConfig.ExecReload = "${pkgs.coreutils}/bin/true"; 233 + }; 234 + }; 235 + 217 236 unitWithRequirement.configuration = { 218 237 systemd.services.required-service = { 219 238 wantedBy = [ "multi-user.target" ]; ··· 637 656 assert_contains(out, "\nstarting the following units: escaped\\x2ddash.service\n") 638 657 assert_lacks(out, "the following new units were started:") 639 658 659 + # Ensure units can start with a dash 660 + out = switch_to_specialisation("${machine}", "unitStartingWithDash") 661 + assert_contains(out, "stopping the following units: escaped\\x2ddash.service\n") 662 + assert_lacks(out, "NOT restarting the following changed units:") 663 + assert_lacks(out, "reloading the following units:") 664 + assert_lacks(out, "\nrestarting the following units:") 665 + assert_lacks(out, "\nstarting the following units:") 666 + assert_contains(out, "the following new units were started: -.service\n") 667 + 668 + # The regression only occurs when reloading units 669 + out = switch_to_specialisation("${machine}", "unitStartingWithDashModified") 670 + assert_lacks(out, "stopping the following units:") 671 + assert_lacks(out, "NOT restarting the following changed units:") 672 + assert_contains(out, "reloading the following units: -.service") 673 + assert_lacks(out, "\nrestarting the following units:") 674 + assert_lacks(out, "\nstarting the following units:") 675 + assert_lacks(out, "the following new units were started:") 676 + 640 677 # Ensure units that require changed units are properly reloaded 641 678 out = switch_to_specialisation("${machine}", "unitWithRequirement") 642 - assert_contains(out, "stopping the following units: escaped\\x2ddash.service\n") 679 + assert_contains(out, "stopping the following units: -.service\n") 643 680 assert_lacks(out, "NOT restarting the following changed units:") 644 681 assert_lacks(out, "reloading the following units:") 645 682 assert_lacks(out, "\nrestarting the following units:")
+2 -2
pkgs/applications/accessibility/wvkbd/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "wvkbd"; 16 - version = "0.7"; 16 + version = "0.9"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "jjsullivan5196"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-5UV2PMrLXtF3AxjfPxxwFRkgVef+Ap8nG1v795o0bWE="; 22 + sha256 = "sha256-Dcb1mnqvf2MvwljWuqMV/8AyF/aGMcDiz4cRQ9NAFtM="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ pkg-config ];
+107
pkgs/applications/audio/dexed/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , libX11 7 + , libXrandr 8 + , libXinerama 9 + , libXext 10 + , libXcursor 11 + , freetype 12 + , alsa-lib 13 + , libjack2 14 + , Cocoa 15 + , WebKit 16 + , MetalKit 17 + , simd 18 + , DiscRecording 19 + , CoreAudioKit 20 + }: 21 + 22 + stdenv.mkDerivation rec { 23 + pname = "dexed"; 24 + version = "unstable-2022-07-09"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "asb2m10"; 28 + repo = "dexed"; 29 + rev = "2c036316bcd512818aa9cc8129767ad9e0ec7132"; 30 + fetchSubmodules = true; 31 + sha256 = "sha256-6buvA72YRlGjHWLPEZMr45lYYG6ZY+IWmylcHruX27g="; 32 + }; 33 + 34 + postPatch = '' 35 + # needs special setup on Linux, dunno if it can work on Darwin 36 + # https://github.com/NixOS/nixpkgs/issues/19098 37 + sed -i -e '/juce::juce_recommended_lto_flags/d' Source/CMakeLists.txt 38 + ''; 39 + 40 + nativeBuildInputs = [ 41 + cmake 42 + pkg-config 43 + ]; 44 + 45 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 46 + libX11 47 + libXext 48 + libXcursor 49 + libXinerama 50 + libXrandr 51 + freetype 52 + alsa-lib 53 + libjack2 54 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 55 + Cocoa 56 + WebKit 57 + MetalKit 58 + simd 59 + DiscRecording 60 + CoreAudioKit 61 + ]; 62 + 63 + # JUCE insists on only dlopen'ing these 64 + NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isLinux (toString [ 65 + "-lX11" 66 + "-lXext" 67 + "-lXcursor" 68 + "-lXinerama" 69 + "-lXrandr" 70 + "-ljack" 71 + ]); 72 + 73 + installPhase = let 74 + vst3Dir = if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/VST3" else "$out/lib/vst3"; 75 + # this one's a guess, don't know where ppl have agreed to put them yet 76 + clapDir = if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/CLAP" else "$out/lib/clap"; 77 + auDir = "$out/Library/Audio/Plug-Ins/Components"; 78 + in '' 79 + runHook preInstall 80 + 81 + '' + (if stdenv.hostPlatform.isDarwin then '' 82 + mkdir -p $out/{Applications,bin} 83 + mv Source/Dexed_artefacts/Release/Standalone/Dexed.app $out/Applications/ 84 + ln -s $out/{Applications/Dexed.app/Contents/MacOS,bin}/Dexed 85 + '' else '' 86 + install -Dm755 {Source/Dexed_artefacts/Release/Standalone,$out/bin}/Dexed 87 + '') + '' 88 + mkdir -p ${vst3Dir} ${clapDir} 89 + mv Source/Dexed_artefacts/Release/VST3/* ${vst3Dir} 90 + mv Source/Dexed_artefacts/Release/CLAP/* ${clapDir} 91 + '' + lib.optionalString stdenv.hostPlatform.isDarwin '' 92 + mkdir -p ${auDir} 93 + mv Source/Dexed_artefacts/Release/AU/* ${auDir} 94 + '' + '' 95 + 96 + runHook postInstall 97 + ''; 98 + 99 + meta = with lib; { 100 + description = "DX7 FM multi platform/multi format plugin"; 101 + mainProgram = "Dexed"; 102 + homepage = "https://asb2m10.github.io/dexed"; 103 + license = licenses.gpl3Only; 104 + platforms = platforms.all; 105 + maintainers = with maintainers; [ OPNA2608 ]; 106 + }; 107 + }
+2 -2
pkgs/applications/audio/spotify-qt/default.nix
··· 9 9 10 10 mkDerivation rec { 11 11 pname = "spotify-qt"; 12 - version = "3.8"; 12 + version = "3.9"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kraxarn"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-Rgtw+nrM8YUBHPIIe9zVhLij/ep07piPf/2MSmTVQKk="; 18 + sha256 = "sha256-8rLpasgXiaL2KpGnYMQdNN2ayjcSkmz5hDkNBnKNWHk="; 19 19 }; 20 20 21 21 buildInputs = [ libxcb qtbase qtsvg ];
+3 -3
pkgs/applications/emulators/wine/sources.nix
··· 46 46 47 47 unstable = fetchurl rec { 48 48 # NOTE: Don't forget to change the SHA256 for staging as well. 49 - version = "7.13"; 49 + version = "7.15"; 50 50 url = "https://dl.winehq.org/wine/source/7.x/wine-${version}.tar.xz"; 51 - sha256 = "sha256-a/6+kz2qUJVprnmwv2ofG08H4b+K/Balm+4TdIuSymQ="; 51 + sha256 = "sha256-0auKGarm/mwIM8PYgqMkSKv6SihZDxRulUUOufWPuRw="; 52 52 inherit (stable) gecko32 gecko64 patches; 53 53 54 54 mono = fetchurl rec { ··· 61 61 staging = fetchFromGitHub rec { 62 62 # https://github.com/wine-staging/wine-staging/releases 63 63 inherit (unstable) version; 64 - sha256 = "sha256-U1awbhJRT3aAJstyEjv2Dp20FqyQ4ntnFFRYJb12C/U="; 64 + sha256 = "sha256-JMig0EUgxdRwpeaxZcNQi+6xWHUg43bXB7jkm5skKC8="; 65 65 owner = "wine-staging"; 66 66 repo = "wine-staging"; 67 67 rev = "v${version}";
+2 -2
pkgs/applications/misc/copyq/default.nix
··· 17 17 18 18 mkDerivation rec { 19 19 pname = "CopyQ"; 20 - version = "6.1.0"; 20 + version = "6.2.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "hluk"; 24 24 repo = "CopyQ"; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-2BWyLVxH50G+S/Hp8E5hWG64DcIamtZPGm0nSMwEhY4="; 26 + hash = "sha256-0XCqSF1oc2B3FD5OmOxqgt9sqCIrzK0KjkntVFXlRWI="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -3
pkgs/applications/misc/surface-control/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "surface-control"; 5 - version = "0.4.1-2"; 5 + version = "0.4.2-1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "linux-surface"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ZgtEmjk1HwoKkyuOiMWalK5RPb3ML8HM/wwz8OM9HoI="; 11 + sha256 = "sha256-tFGYIIlcJ4qF1t4Ej6WanjHtm8dSWtH38856uSTc7rU="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-CsPyY/NA2+Lecemuor2nHd6yzf2PvMK7NZyvY3vewpI="; 14 + cargoSha256 = "sha256-WwTM1DMTi5DKnkMERkW8H8T2OXlg+Tk6BupmwnOAK5I="; 15 15 16 16 nativeBuildInputs = [ pkg-config installShellFiles ]; 17 17 buildInputs = [ udev ];
+2 -2
pkgs/applications/misc/tdrop/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "tdrop"; 7 - version = "0.4.0"; 7 + version = "0.5.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "noctuid"; 11 11 repo = "tdrop"; 12 12 rev = version; 13 - sha256 = "sha256-1umHwzpv4J8rZ0c0q+2dPsEk4vhFB4UerwI8ctIJUZg="; 13 + sha256 = "sha256-fHvGXaZL7MMvTnkap341B79PDDo2lOVPPcOH4AX/zXo="; 14 14 }; 15 15 16 16 dontBuild = true;
+2 -2
pkgs/applications/networking/ids/suricata/default.nix
··· 34 34 in 35 35 stdenv.mkDerivation rec { 36 36 pname = "suricata"; 37 - version = "6.0.4"; 37 + version = "6.0.6"; 38 38 39 39 src = fetchurl { 40 40 url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz"; 41 - sha256 = "sha256-qPGX4z0WeGieu/e8Gr6Ek0xGXSLFBMR8LH6bdKoELQ0="; 41 + sha256 = "sha256-ABc2NPp2ruY244qQscAmFskD5CFzEH1HtBFJYLX76Dk="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+2 -2
pkgs/applications/office/skrooge/default.nix
··· 7 7 8 8 mkDerivation rec { 9 9 pname = "skrooge"; 10 - version = "2.27.0"; 10 + version = "2.28.0"; 11 11 12 12 src = fetchurl { 13 13 url = "https://download.kde.org/stable/skrooge/${pname}-${version}.tar.xz"; 14 - sha256 = "sha256-xkl0UyJEDOeYOqqXf3woCDMb8ZyC2c5ChQdDFFERZxE="; 14 + sha256 = "sha256-s2SkGMBx7HVpr1NBUJpqji3PTPnw4RqnkakdQVC5ric="; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+2 -2
pkgs/applications/science/astronomy/siril/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "siril"; 9 - version = "1.0.0"; 9 + version = "1.0.3"; 10 10 11 11 src = fetchFromGitLab { 12 12 owner = "free-astro"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-yqWFEa1fnSwl0ecN9hMI13QCfj0f69CFqTJlEAhTpJI="; 15 + sha256 = "sha256-Y5ED2LuNapaq+FkKg3m8t4sgoh2TGXO1VX0p5gwlJjQ="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/applications/science/math/fricas/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fricas"; 5 - version = "1.3.7"; 5 + version = "1.3.8"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/fricas/fricas/${version}/fricas-${version}-full.tar.bz2"; 9 - sha256 = "sha256-cOqMvSe3ef/ZeVy5cj/VU/aTRtxgfxZfRbE4lWE5TU4="; 9 + sha256 = "sha256-amAGPLQo70nKATyZM7h3yX5mMUxCwOFwb/fTIWB5hUQ="; 10 10 }; 11 11 12 12 buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
+2 -2
pkgs/applications/video/media-downloader/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "media-downloader"; 14 - version = "2.4.0"; 14 + version = "2.5.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "mhogomchungu"; 18 18 repo = pname; 19 19 rev = "${version}"; 20 - sha256 = "sha256-EyfhomwBtdAt6HGRwnpiijm2D1LfaCAoG5qk3orDG98="; 20 + sha256 = "sha256-xoRbNbzFa1CEB4x9JLkVMrkEqaCgweFzvI0Qr9Fl4zs="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ cmake qt5.wrapQtAppsHook ];
+4
pkgs/applications/window-managers/berry/default.nix
··· 39 39 freetype 40 40 ]; 41 41 42 + postPatch = '' 43 + sed -i --regexp-extended 's/(pkg_verstr=").*(")/\1${version}\2/' configure 44 + ''; 45 + 42 46 preConfigure = '' 43 47 patchShebangs configure 44 48 '';
+3 -3
pkgs/applications/window-managers/leftwm/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "leftwm"; 9 - version = "0.2.11"; 9 + version = "0.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "leftwm"; 13 13 repo = "leftwm"; 14 14 rev = version; 15 - sha256 = "sha256-GLHmX628UUdIM+xYJhPtqFg4whQqaF8hFxg0Z5grPac="; 15 + sha256 = "sha256-AfE36u5xSfivkg+hmJ6ASh6zXmTnLOv5RFigkGzySng="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-4Pu3TDLmi0c2nyUj1lTRincgRqL40A/g0PkyJOen0is="; 18 + cargoSha256 = "sha256-MmxF1jt5VUZGbkEe858HBjAuHhgDY23MJJxpYQ4ckhs="; 19 19 20 20 buildInputs = rpathLibs; 21 21
+2 -2
pkgs/development/beam-modules/erlfmt/default.nix
··· 2 2 3 3 rebar3Relx rec { 4 4 pname = "erlfmt"; 5 - version = "1.0.0"; 5 + version = "1.1.0"; 6 6 releaseType = "escript"; 7 7 src = fetchFromGitHub { 8 8 owner = "WhatsApp"; 9 9 repo = "erlfmt"; 10 - sha256 = "19apbs9xr4j8qjb3sv9ilknqjw4a7bvp8jvwrjiwvwnxzzm2kjm6"; 10 + sha256 = "sha256-diZCyw4eR+h/Pc73HDfnFaXnNXwqu3XabTbeiWVPNPI="; 11 11 rev = "v${version}"; 12 12 }; 13 13 meta = with lib; {
+8 -2
pkgs/development/compilers/llvm/git/libcxxabi/default.nix
··· 1 1 { lib, stdenv, llvm_meta, cmake, python3 2 - , monorepoSrc, runCommand 2 + , monorepoSrc, runCommand, fetchpatch 3 3 , cxx-headers, libunwind, version 4 4 , enableShared ? !stdenv.hostPlatform.isStatic 5 5 }: ··· 39 39 40 40 patches = [ 41 41 ./gnu-install-dirs.patch 42 - ./skip-other-project-tests.patch 42 + 43 + # https://reviews.llvm.org/D132298, Allow building libcxxabi alone 44 + (fetchpatch { 45 + url = "https://github.com/llvm/llvm-project/commit/e6a0800532bb409f6d1c62f3698bdd6994a877dc.patch"; 46 + sha256 = "1xyjd56m4pfwq8p3xh6i8lhkk9kq15jaml7qbhxdf87z4jjkk63a"; 47 + stripLen = 1; 48 + }) 43 49 ]; 44 50 45 51 postPatch = ''
-45
pkgs/development/compilers/llvm/git/libcxxabi/skip-other-project-tests.patch
··· 1 - --- a/CMakeLists.txt 2 - +++ b/CMakeLists.txt 3 - @@ -131,10 +131,21 @@ if (NOT LIBCXXABI_ENABLE_SHARED AND NOT LIBCXXABI_ENABLE_STATIC) 4 - message(FATAL_ERROR "libc++abi must be built as either a shared or static library.") 5 - endif() 6 - 7 - -# TODO: Remove this, which shouldn't be necessary since we know we're being built 8 - -# side-by-side with libc++. 9 - set(LIBCXXABI_LIBCXX_INCLUDES "" CACHE PATH 10 - "Specify path to libc++ includes.") 11 - +if (NOT libcxx IN_LIST LLVM_ENABLE_RUNTIMES) 12 - + if (NOT IS_DIRECTORY ${LIBCXXABI_LIBCXX_INCLUDES}) 13 - + message(FATAL_ERROR 14 - + "LIBCXXABI_LIBCXX_INCLUDES=${LIBCXXABI_LIBCXX_INCLUDES} is not a valid directory. " 15 - + "Please provide the path to where the libc++ headers have been installed.") 16 - + endif() 17 - + add_library(cxx-headers INTERFACE) 18 - + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" OR "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC") 19 - + target_compile_options(cxx-headers INTERFACE /I "${LIBCXXABI_LIBCXX_INCLUDES}") 20 - + else() 21 - + target_compile_options(cxx-headers INTERFACE -I "${LIBCXXABI_LIBCXX_INCLUDES}") 22 - + endif() 23 - +endif() 24 - 25 - set(LIBCXXABI_HERMETIC_STATIC_LIBRARY_DEFAULT OFF) 26 - if (WIN32) 27 - --- a/test/CMakeLists.txt 28 - +++ b/test/CMakeLists.txt 29 - @@ -61,9 +61,13 @@ if (LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY) 30 - list(APPEND LIBCXXABI_TEST_DEPS cxx_external_threads) 31 - endif() 32 - 33 - -list(APPEND LIBCXXABI_TEST_DEPS cxx) 34 - -if (LIBCXXABI_USE_LLVM_UNWINDER AND TARGET unwind) 35 - - list(APPEND LIBCXXABI_TEST_DEPS unwind) 36 - +if(libcxx IN_LIST LLVM_ENABLE_RUNTIMES) 37 - + list(APPEND LIBCXXABI_TEST_DEPS cxx) 38 - +endif() 39 - +if(libunwind IN_LIST LLVM_ENABLE_RUNTIMES) 40 - + if (LIBCXXABI_USE_LLVM_UNWINDER AND TARGET unwind) 41 - + list(APPEND LIBCXXABI_TEST_DEPS unwind) 42 - + endif() 43 - endif() 44 - 45 - set(AUTO_GEN_COMMENT "## Autogenerated by libcxxabi configuration.\n# Do not edit!")
+2 -2
pkgs/development/compilers/tvm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tvm"; 5 - version = "0.8.0"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "apache"; 9 9 repo = "incubator-tvm"; 10 10 rev = "v${version}"; 11 11 fetchSubmodules = true; 12 - sha256 = "sha256-fv2hhPGbr/AbwuN8rAF9PI/QTTqxNgwjYl9arg5GjKY="; 12 + sha256 = "sha256-lzLrd4vNK1c7BwWS0H5x1uDdZ3moUl+zWHb8G6gs8hw="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/development/embedded/svdtools/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "svdtools"; 8 - version = "0.2.5"; 8 + version = "0.2.6"; 9 9 10 10 src = fetchCrate { 11 11 inherit version pname; 12 - sha256 = "sha256-tN1GC4tQXyaA8bgq7wB/NZEdO14p/0f8BXtgTk6aOzg="; 12 + sha256 = "sha256-y0RCUSk7YEE5bF/dVEuH/sTtHcVIT4+P0DVkPiNf54I="; 13 13 }; 14 14 15 - cargoSha256 = "sha256-puaveP9a11rlGgsguCfueYXfYSd7Xew8ZRGeDP8WrSI="; 15 + cargoSha256 = "sha256-PPoHTh8cjQMkD69BYk/HW/PwDV5j/OrHHpjFZdBqZxM="; 16 16 17 17 meta = with lib; { 18 18 description = "Tools to handle vendor-supplied, often buggy SVD files";
+2 -2
pkgs/development/interpreters/rakudo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rakudo"; 5 - version = "2022.03"; 5 + version = "2022.07"; 6 6 7 7 src = fetchurl { 8 8 url = "https://rakudo.org/dl/rakudo/rakudo-${version}.tar.gz"; 9 - sha256 = "sha256-A+IVsAGoeXR2GNb8GOt/icC4EvXlQ6Q+1mwTQ56ooic="; 9 + hash = "sha256-ejvJ1lTh0nkqBVtPrxFu820UH2tq3eeqcDF3BfJgkK0="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ removeReferencesTo ];
+2 -2
pkgs/development/interpreters/rakudo/moarvm.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "moarvm"; 12 - version = "2022.03"; 12 + version = "2022.07"; 13 13 14 14 src = fetchurl { 15 15 url = "https://moarvm.org/releases/MoarVM-${version}.tar.gz"; 16 - sha256 = "sha256-+3HNE5EkZEgrmbM/DAbp/XxRoVHG5jKpIgz5PFhV/a8="; 16 + hash = "sha256-M37wTRb4JvmUZcZTuSAGAo/iIL5o09z9BylhL09rW0Y="; 17 17 }; 18 18 19 19 patches = [
+2 -2
pkgs/development/interpreters/rakudo/nqp.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nqp"; 5 - version = "2022.03"; 5 + version = "2022.07"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/raku/nqp/releases/download/${version}/nqp-${version}.tar.gz"; 9 - sha256 = "sha256-qV53iXDE0JwJHSqimcBQNiCM5LSw06evNzGYwSJYswY="; 9 + hash = "sha256-WAgcEG1nKlQGAY/WmRLI1IX9Er8iWVEyXFDJKagjImg="; 10 10 }; 11 11 12 12 buildInputs = [ perl ];
+2 -2
pkgs/development/interpreters/rakudo/zef.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zef"; 5 - version = "0.13.7"; 5 + version = "0.13.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ugexe"; 9 9 repo = "zef"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FEQwe9MkP+tFZgXiR3hrNS+Jyavj85oYql3uOLP3nwc="; 11 + sha256 = "sha256-lWlom1LZuYzsV6BzOl232usvJJFlTz1DQOWkuNUTvX4="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/libraries/gmm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gmm"; 5 - version = "5.4"; 5 + version = "5.4.2"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://savannah/getfem/stable/${pname}-${version}.tar.gz"; 9 - sha256 = "0mhygfpsdyr0d4h3sn6g7nxn149yrlqv7r2h34yqkrpv1q4daqvi"; 9 + sha256 = "sha256-UgbnMmQ/aTQQkCiy8XNmDywu3LDuJpIo1pSsym4iyIo="; 10 10 }; 11 11 12 12 meta = with lib; {
+2 -2
pkgs/development/libraries/libbde/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "libbde"; 11 - version = "20210605"; 11 + version = "20220121"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/libyal/libbde/releases/download/${version}/${pname}-alpha-${version}.tar.gz"; 15 - sha256 = "0dk5h7gvp2fgg21n7k600mnayg4g4pc0lm7317k43j1q0p4hkfng"; 15 + sha256 = "sha256-dnSMuTm/nMiZ6t2rbhDqGpp/e9xt5Msz2In8eiuTjC8="; 16 16 }; 17 17 18 18 buildInputs = [ fuse ncurses python3 ];
+2 -2
pkgs/development/libraries/libinklevel/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libinklevel"; 5 - version = "0.9.3"; 5 + version = "0.9.4"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 9 - sha256 = "1zwkicjznkzw81ax745inv4n29y20vq82w8249vizaal76739n19"; 9 + sha256 = "sha256-J0cEaC5v4naO4GGUzdfV55kB7KzA+q+v64i5y5Xbp9Q="; 10 10 }; 11 11 12 12 buildInputs = [
+2 -2
pkgs/development/libraries/minixml/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mxml"; 5 - version = "3.3"; 5 + version = "3.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "michaelrsweet"; 9 9 repo = "mxml"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-YN8g8KDk7xnDVK1io0zSLO7erxEp4VQ9heA7Lu/cUUg="; 11 + sha256 = "sha256-l7GUA+vlSECi/72eU3Y9COpGtLTRh3vYcHUi+uRkCn8="; 12 12 }; 13 13 14 14 enableParallelBuilding = true;
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "ipopt"; 15 - version = "3.14.5"; 15 + version = "3.14.9"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "coin-or"; 19 19 repo = "Ipopt"; 20 20 rev = "releases/${version}"; 21 - sha256 = "sha256-eqOacZGuuGAjWMs2H6RntQ+WJmGTi+EqydHUQXEpY54="; 21 + sha256 = "sha256-mlRr1BjkWiJZSgpxQIc0k1tXGewJkHwxf6xe0edUHaY="; 22 22 }; 23 23 24 24 CXXDEFS = [ "-DHAVE_RAND" "-DHAVE_CSTRING" "-DHAVE_CSTDIO" ];
+2 -2
pkgs/development/libraries/sofia-sip/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sofia-sip"; 5 - version = "1.13.7"; 5 + version = "1.13.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "freeswitch"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gBejwt5YAkCKQh0vzN00J4y1ifcdc4TglA+SqEevaGQ="; 11 + sha256 = "sha256-RtYeZFQu0YvD709KNmwPPlOLMl01Ox58cpNYygvDn78="; 12 12 }; 13 13 14 14 buildInputs = [ glib openssl ] ++ lib.optional stdenv.isDarwin SystemConfiguration;
+2 -2
pkgs/development/python-modules/awesomeversion/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "awesomeversion"; 11 - version = "22.6.0"; 11 + version = "22.8.0"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "ludeeus"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-osAJzJr9PtGH8wcHam1BolIBTD8QDBWg3mI/z4JW0JE="; 20 + sha256 = "sha256-peSGe9ycxVD2ve8tFpmznQZr3Hrc1KimeVlThmd0NFo="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+10 -3
pkgs/development/python-modules/pep440/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , flit-core 4 5 , pytestCheckHook 5 6 , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "pep440"; 10 - version = "0.1.0"; 11 - format = "setuptools"; 11 + version = "0.1.1"; 12 + format = "flit"; 13 + 14 + disabled = pythonOlder "3.8"; 12 15 13 16 src = fetchPypi { 14 17 inherit pname version; 15 - sha256 = "m1H/yqqDiFrj6tmD9jo8nDakCBZxkBPq/HtSOXMH4ZQ="; 18 + hash = "sha256-E9F4mHaavQKK8PYnRcnOdfW7mXcBKn1dTInCknLeNO4="; 16 19 }; 20 + 21 + nativeBuildInputs = [ 22 + flit-core 23 + ]; 17 24 18 25 checkInputs = [ 19 26 pytestCheckHook
+2 -2
pkgs/development/python-modules/pyunifiprotect/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "pyunifiprotect"; 29 - version = "4.1.2"; 29 + version = "4.1.3"; 30 30 format = "pyproject"; 31 31 32 32 disabled = pythonOlder "3.9"; ··· 35 35 owner = "briis"; 36 36 repo = pname; 37 37 rev = "refs/tags/v${version}"; 38 - hash = "sha256-KGPPnyjFbKmNdFosn+4WvQH1rxDsiOEH9qmb3Zq8Xb8="; 38 + hash = "sha256-tZo8+McpnJ1gekghtgH6m5w7nmVWB8CTxz5RGHv3xtE="; 39 39 }; 40 40 41 41 propagatedBuildInputs = [
+2 -2
pkgs/development/scheme-modules/scheme-bytestructures/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "scheme-bytestructures"; 11 - version = "1.0.10"; 11 + version = "2.0.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "TaylanUB"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "04oDvwvzTRzAVyywbcCm3Ug3p3xNbxjI7nOKYakEZZI="; 17 + sha256 = "sha256-Wvs288K8BVjUuWvvzpDGBwOxL7mAXjVtgIwJAsQd0L4="; 18 18 }; 19 19 20 20 postConfigure = ''
+2 -2
pkgs/development/tools/flyway/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre_headless, makeWrapper }: 2 2 stdenv.mkDerivation rec{ 3 3 pname = "flyway"; 4 - version = "9.1.4"; 4 + version = "9.1.6"; 5 5 src = fetchurl { 6 6 url = "mirror://maven/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 7 - sha256 = "sha256-Hs9DZmgkaX00cI7YXTfgdvC0x3st8UfU0pQ7BDGHpDY="; 7 + sha256 = "sha256-ZqvphqQsuLbc23TaMEIZvoghdZ2hA3GkJu40G6ykJXQ="; 8 8 }; 9 9 nativeBuildInputs = [ makeWrapper ]; 10 10 dontBuild = true;
+2 -2
pkgs/development/tools/gosec/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "gosec"; 8 - version = "2.13.0"; 8 + version = "2.13.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "securego"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-U4nP812du71wcU/OPSDpZePHO9/vSdTL5s58VdA4UvY="; 14 + sha256 = "sha256-a7SZe6n3MQIjkOtFPavFYmBadHwsShjWdzMzOGZIb9s="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-D4wWofYz63c0yXIg4xnolXzWudG17dRqdjUHYhMrtt4=";
+3 -3
pkgs/development/tools/misc/gf/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "gf"; 15 - version = "unstable-2022-06-22"; 15 + version = "unstable-2022-08-01"; 16 16 17 17 src = fetchFromGitHub { 18 18 repo = "gf"; 19 19 owner = "nakst"; 20 - rev = "e0d6d2f59344f853a4a204d5313db6b6a5e5de7d"; 21 - sha256 = "01fln4wnn1caqr4wa1nhcp0rqdx5m5nqyn2amvclp5hhi3h3qaiq"; 20 + rev = "c0a018a9b965eb97551ee87d5236a9f57011cea2"; 21 + hash = "sha256-i0aLSy+4/fbYZpUKExFDUZ/2nXJmEhRsAX0JQZ8EhNk="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ makeWrapper pkg-config ];
+2 -2
pkgs/development/tools/misc/pkgconf/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "pkgconf"; 9 - version = "1.9.2"; 9 + version = "1.9.3"; 10 10 11 11 src = fetchurl { 12 12 url = "https://distfiles.dereferenced.org/${pname}/${pname}-${version}.tar.xz"; 13 - hash = "sha256-22v1Qm4On8EHBCzIX8YrHzkfHXr0bEo8Obf1tSMd+gk="; 13 + hash = "sha256-X7NVtIfVT7bTQeTxjU4vfoE6ZiLPA6noev+mpAVlaZ0="; 14 14 }; 15 15 16 16 outputs = [ "out" "lib" "dev" "man" "doc" ];
+2 -2
pkgs/development/tools/profiling/heaptrack/default.nix
··· 6 6 7 7 mkDerivation rec { 8 8 pname = "heaptrack"; 9 - version = "1.3.0"; 9 + version = "1.4.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "KDE"; 13 13 repo = "heaptrack"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-GXwlauLspbY+h/Y75zlHPoP27pr3xVl05LuDW+WVYxU="; 15 + sha256 = "sha256-AzHQnPYhmCHGco7JoKal57PC6NKUoMTeflHtFsBxQpA="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake extra-cmake-modules ];
+3 -3
pkgs/development/tools/snazy/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "snazy"; 5 - version = "0.10.0"; 5 + version = "0.10.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "chmouel"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-0LxpwvQxHxNQ09kCsM8fJfcOxPMKqzQlW1Kl2y0I3Zg="; 11 + sha256 = "sha256-kUoML6UUgZLOBCbakj1CJeRSt268rv2ymAdvPkcn8R4="; 12 12 }; 13 - cargoSha256 = "sha256-onYVVBB91Zn+WcELpBhybT3hV1gZMXHXbmScA6a1mys="; 13 + cargoSha256 = "sha256-MPfzC5iEE8GficLUaGaBy5usZzYoreYsdadoiiRoVQI="; 14 14 15 15 doInstallCheck = true; 16 16 installCheckPhase = ''
+3 -3
pkgs/development/tools/the-way/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "the-way"; 5 - version = "0.13.0"; 5 + version = "0.17.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "out-of-cheese-error"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-OqJceRO1RFOLgNi3SbTKLw62tSfJSO7T2/u0RTX89AM="; 11 + sha256 = "sha256-Imo1CUk2H4/K9w/FnIBEkKFXd7OIAuApejcNY+rs7JU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles ]; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit Security ]; 17 17 18 - cargoSha256 = "sha256-sULjd+weixTQYFIQlluPwY4MFlZ1+vMMoMn4GP79oQs="; 18 + cargoSha256 = "sha256-3ZiNRXrb3gpXXOxztf0eimJE16PpQTD/OWFmeTDIr2w="; 19 19 checkFlagsArray = lib.optionals stdenv.isDarwin [ "--skip=copy" ]; 20 20 dontUseCargoParallelTests = true; 21 21
+2 -2
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.374"; 5 + version = "0.0.377"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-rudTGh4l0wroag0yp2YU8h5NTq+noC3bjbisyP47ktI="; 11 + sha256 = "sha256-L8wOhs7jL+nby2NTPQGweGTKBYnXFKnfi7boFBOeSTs="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-E6QeWu88MXMMfZAM7vMIGXpJQuduX6GTj3tXvlE9hFo=";
+25
pkgs/servers/monitoring/prometheus/speedtest-exporter.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + let 3 + pname = "speedtest_exporter"; 4 + version = "0.3.2"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "nlamirault"; 8 + repo = "speedtest_exporter"; 9 + rev = "7364db62b98ab2736405c7cde960698ab5b688bf"; 10 + sha256 = "WIMDv63sHyZVw3Ct5LFXCIufj7sU2H81n+hT/NiPMeQ="; 11 + }; 12 + 13 + in buildGoModule rec { 14 + inherit pname version src; 15 + 16 + vendorSha256 = "Lm73pZzdNZv7J+vKrtQXxm4HiAuB9lugKT/oanmD0HM="; 17 + 18 + meta = with lib; { 19 + license = licenses.asl20; 20 + homepage = "https://github.com/nlamirault/speedtest_exporter"; 21 + description = "Prometheus exporter for Speedtest metrics"; 22 + maintainers = with maintainers; [ jonaenz ]; 23 + platforms = platforms.unix; 24 + }; 25 + }
+2 -2
pkgs/servers/nosql/influxdb2/cli.nix
··· 5 5 }: 6 6 7 7 let 8 - version = "2.2.1"; 8 + version = "2.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "influxdata"; 12 12 repo = "influx-cli"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-9FUchI93xLpQwtpbr5S3GfVrApHaemwbnRPIfAWmG6Y="; 14 + sha256 = "sha256-i3PN0mvSzPX/hu6fF2oizfioHZ2qU2V+mRwuxT1AYWo="; 15 15 }; 16 16 17 17 in buildGoModule {
+3 -3
pkgs/servers/sql/pgpool/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgpool-II"; 5 - version = "4.3.2"; 5 + version = "4.3.3"; 6 6 7 7 src = fetchurl { 8 8 name = "${pname}-${version}.tar.gz"; 9 9 url = "http://www.pgpool.net/download.php?f=${pname}-${version}.tar.gz"; 10 - sha256 = "02jg0c6k259i0r927dng9h0y58q965swshg2c9mzqhazcdiga5ap"; 10 + sha256 = "sha256-bHNDS67lgThqlVX+WWKL9GeCD31b2+M0F2g5mgOCyXk="; 11 11 }; 12 12 13 13 buildInputs = [ postgresql openssl pam libmemcached ]; ··· 29 29 homepage = "http://pgpool.net/mediawiki/index.php"; 30 30 description = "A middleware that works between postgresql servers and postgresql clients"; 31 31 license = licenses.free; 32 - platforms = platforms.linux; 32 + platforms = platforms.unix; 33 33 }; 34 34 }
+3 -3
pkgs/servers/web-apps/shiori/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "shiori"; 5 - version = "1.5.2"; 5 + version = "1.5.3"; 6 6 7 - vendorSha256 = "sha256-6XF4wBwoRnINAskhGHTw4eAJ9zAaoZcEYo9/xZk4ems="; 7 + vendorSha256 = "sha256-vyBb8jNpXgpiktbn2lphL2wAeKmvjJLxV8ZrHoUSNYY="; 8 8 9 9 doCheck = false; 10 10 ··· 12 12 owner = "go-shiori"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-Py6Lq29F7RkvSui+Z2VyogU9+azHQ2KEvEq924pQmQo="; 15 + sha256 = "sha256-razBb/flqwyFG4SPWhSapDO1sB5DYzyjYGx8ABFg/I8="; 16 16 }; 17 17 18 18 passthru.tests = {
+3 -3
pkgs/tools/networking/termshark/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "termshark"; 5 - version = "2.3.0"; 5 + version = "2.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gcla"; 9 9 repo = "termshark"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ekIxKBnqGTIXncvSTItBL43WN5mdX5dxROWHXUtH3o8="; 11 + sha256 = "sha256-qq7BDGprRkWKRMJiVnqPeTwtHd3tea9dPE8RIPL2YVI="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 15 buildInputs = [ wireshark-cli ]; 16 16 17 - vendorSha256 = "sha256-16JPVgo3heJMjOHNOP13kyhRveQjF9h9kRznhSZM+ik="; 17 + vendorSha256 = "sha256-C9XOiNjo+TZ+erdnypRhhfpbuBhB3yEqNpbtwjEv14g="; 18 18 19 19 doCheck = false; 20 20
+2 -2
pkgs/tools/networking/tinyproxy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tinyproxy"; 5 - version = "1.11.0"; 5 + version = "1.11.1"; 6 6 7 7 src = fetchFromGitHub { 8 - sha256 = "13fhkmmrwzl657dq04x2wagkpjwdrzhkl141qvzr7y7sli8j0w1n"; 8 + sha256 = "sha256-tipFXh9VG5auWTI2/IC5rwMQFls7aZr6dkzhYTZZkXM="; 9 9 rev = version; 10 10 repo = "tinyproxy"; 11 11 owner = "tinyproxy";
+2 -2
pkgs/tools/security/mitmproxy2swagger/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "mitmproxy2swagger"; 8 - version = "0.6.1"; 8 + version = "0.7.0"; 9 9 format = "pyproject"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "alufers"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-7c+SIU5re1GaqKmzjY+wBXwm8CoQ4uaNLNHzUfG0GDA="; 15 + hash = "sha256-tLLz3nGIzsE6bkHbMC+Cfevv7E/NNHxtYqCUwo/5yF4="; 16 16 }; 17 17 18 18 nativeBuildInputs = with python3.pkgs; [
+3 -3
pkgs/tools/security/saml2aws/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "saml2aws"; 5 - version = "2.34.0"; 5 + version = "2.36.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Versent"; 9 9 repo = "saml2aws"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-JRJjuVF0MkV7KVmbAZhiWPWVwDORByCsZqPwdTuVRoA="; 11 + sha256 = "sha256-Mux0n8uBnh9R+llA/XAVsfcDWIDxoaQkkSuhoSpIhl4="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-/N/RYqt+lhhECK+uq99vkm3Mg7PWpdE0GYLXkIYthNw="; 14 + vendorSha256 = "sha256-cxfanKv25U8U6FQ1YfOXghAR8GYQB9PN0TkfLzG4UbI="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; 17 17
+4 -19
pkgs/tools/system/kanata/default.nix
··· 1 1 { fetchFromGitHub 2 - , fetchpatch 3 2 , lib 4 - , libevdev 5 - , pkg-config 6 3 , rustPlatform 7 4 , withCmd ? false 8 5 }: 9 6 10 7 rustPlatform.buildRustPackage rec { 11 8 pname = "kanata"; 12 - version = "1.0.6"; 9 + version = "1.0.7"; 13 10 14 11 src = fetchFromGitHub { 15 12 owner = "jtroo"; 16 13 repo = pname; 17 14 rev = "v${version}"; 18 - sha256 = "sha256-0S27dOwtHxQi5ERno040RWZNo5+ao0ULFwHKJz27wWw="; 15 + sha256 = "sha256-2gGFAz0zXea+27T4ayDj6KdoI0ThwXV7U0CspHduTiQ="; 19 16 }; 20 17 21 - cargoHash = "sha256-Ge9CiYIl6R8cjfUAY4B9ggjNZv5vpjmQKMPv93wGJwc="; 22 - 23 - cargoPatches = [ 24 - (fetchpatch { 25 - name = "update-cargo.lock-for-1.0.6.patch"; 26 - url = "https://github.com/jtroo/kanata/commit/29a7669ac230571c30c9113e5c82e8440c8b89af.patch"; 27 - sha256 = "sha256-s4R7vUFlrL1XTNpgXRyIpIq4rDuM5A85ECzbMUX4MAw="; 28 - }) 29 - ]; 18 + cargoHash = "sha256-0NvZATdPABIboL5xvmBmDbqPPWvO4mM6wVB3FrOVHIQ="; 30 19 31 20 buildFeatures = lib.optional withCmd "cmd"; 32 21 33 - nativeBuildInputs = [ pkg-config ]; 34 - 35 - buildInputs = [ libevdev ]; 36 - 37 22 meta = with lib; { 38 - description = "A cross-platform advanced keyboard customization tool"; 23 + description = "A tool to improve keyboard comfort and usability with advanced customization"; 39 24 homepage = "https://github.com/jtroo/kanata"; 40 25 license = licenses.lgpl3Only; 41 26 maintainers = with maintainers; [ linj ];
+2 -2
pkgs/tools/system/thermald/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "thermald"; 21 - version = "2.4.9"; 21 + version = "2.5"; 22 22 23 23 outputs = [ "out" "devdoc" ]; 24 24 ··· 26 26 owner = "intel"; 27 27 repo = "thermal_daemon"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-82O4vrUo3lMNzGOI5WyV1eponF0za0WM6mtd54xqUh8="; 29 + sha256 = "sha256-j66uBbTZhHFXhDSDI0IseoyF/rCEl/B87YjorfZIHX8="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/tools/wayland/sov/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "sov"; 8 - version = "0.71"; 8 + version = "0.72"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "milgra"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-6FdZ3UToeIAARxrOqSWBX+ALrlr4s2J0bj9c3l9ZTyQ="; 14 + sha256 = "sha256-av+st0tux+ho8bfJwx6Nk1pma1Pjvv/dpW5BWnUDNvQ="; 15 15 }; 16 16 17 17 postPatch = ''
+8
pkgs/top-level/all-packages.nix
··· 15169 15169 inherit (darwin) libobjc; 15170 15170 }; 15171 15171 defaultGemConfig = callPackage ../development/ruby-modules/gem-config { 15172 + # recent v8 doesn't build on nixpkgs Darwin yet. https://github.com/NixOS/nixpkgs/issues/158076 15173 + v8 = if stdenv.isDarwin then v8_8_x else v8; 15172 15174 inherit (darwin) DarwinTools cctools; 15173 15175 inherit (darwin.apple_sdk.frameworks) CoreServices; 15174 15176 }; ··· 23244 23246 prometheus-smartctl-exporter = callPackage ../servers/monitoring/prometheus/smartctl-exporter { }; 23245 23247 prometheus-smokeping-prober = callPackage ../servers/monitoring/prometheus/smokeping-prober.nix { }; 23246 23248 prometheus-snmp-exporter = callPackage ../servers/monitoring/prometheus/snmp-exporter.nix { }; 23249 + prometheus-speedtest-exporter = callPackage ../servers/monitoring/prometheus/speedtest-exporter.nix { }; 23247 23250 prometheus-statsd-exporter = callPackage ../servers/monitoring/prometheus/statsd-exporter.nix { }; 23248 23251 prometheus-surfboard-exporter = callPackage ../servers/monitoring/prometheus/surfboard-exporter.nix { }; 23249 23252 prometheus-sql-exporter = callPackage ../servers/monitoring/prometheus/sql-exporter.nix { }; ··· 26832 26835 devede = callPackage ../applications/video/devede { }; 26833 26836 26834 26837 denemo = callPackage ../applications/audio/denemo { }; 26838 + 26839 + dexed = darwin.apple_sdk_11_0.callPackage ../applications/audio/dexed { 26840 + inherit (darwin.apple_sdk_11_0.frameworks) Cocoa WebKit MetalKit DiscRecording CoreAudioKit; 26841 + inherit (darwin.apple_sdk_11_0.libs) simd; 26842 + }; 26835 26843 26836 26844 dvdauthor = callPackage ../applications/video/dvdauthor { }; 26837 26845