Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 97b2abc6 15642c06

+285 -247
+10 -15
maintainers/maintainer-list.nix
··· 2094 2094 githubId = 68566724; 2095 2095 name = "bootstrap-prime"; 2096 2096 }; 2097 - boppyt = { 2098 - email = "boppy@nwcpz.com"; 2099 - github = "boppyt"; 2100 - githubId = 71049646; 2101 - name = "Zack A"; 2102 - keys = [{ 2103 - fingerprint = "E8D7 5C19 9F65 269B 439D F77B 6310 C97D E31D 1545"; 2104 - }]; 2105 - }; 2106 2097 borisbabic = { 2107 2098 email = "boris.ivan.babic@gmail.com"; 2108 2099 github = "borisbabic"; ··· 13611 13602 githubId = 17243347; 13612 13603 name = "Sebastian Sellmeier"; 13613 13604 }; 13605 + sefidel = { 13606 + name = "sefidel"; 13607 + email = "contact@sefidel.net"; 13608 + matrix = "@sef:exotic.sh"; 13609 + github = "sefidel"; 13610 + githubId = 71049646; 13611 + keys = [{ 13612 + fingerprint = "8BDF DFB5 6842 2393 82A0 441B 9238 BC70 9E05 516A"; 13613 + }]; 13614 + }; 13614 13615 sei40kr = { 13615 13616 name = "Seong Yong-ju"; 13616 13617 email = "sei40kr@gmail.com"; ··· 16175 16176 email = "contact@weijia.wang"; 16176 16177 github = "wegank"; 16177 16178 githubId = 9713184; 16178 - }; 16179 - weihua = { 16180 - email = "luwh364@gmail.com"; 16181 - github = "weihua-lu"; 16182 - githubId = 9002575; 16183 - name = "Weihua Lu"; 16184 16179 }; 16185 16180 welteki = { 16186 16181 email = "welteki@pm.me";
+5 -2
maintainers/team-list.nix
··· 424 424 425 425 llvm = { 426 426 members = [ 427 + dtzWill 427 428 ericson2314 428 - sternenseemann 429 429 lovek323 430 - dtzWill 431 430 primeos 431 + qyliss 432 + raitobezarius 433 + rrbutani 434 + sternenseemann 432 435 ]; 433 436 scope = "Maintain LLVM package sets and related packages"; 434 437 shortName = "LLVM";
+33 -8
nixos/modules/hardware/opengl.nix
··· 69 69 package = mkOption { 70 70 type = types.package; 71 71 internal = true; 72 + default = cfg.mesaPackage; 72 73 description = lib.mdDoc '' 73 74 The package that provides the OpenGL implementation. 75 + 76 + The default is Mesa's drivers which should cover all OpenGL-capable 77 + hardware. If you want to use another Mesa version, adjust 78 + {option}`mesaPackage`. 74 79 ''; 75 80 }; 76 - 77 81 package32 = mkOption { 78 82 type = types.package; 79 83 internal = true; 84 + default = cfg.mesaPackage32; 80 85 description = lib.mdDoc '' 81 - The package that provides the 32-bit OpenGL implementation on 82 - 64-bit systems. Used when {option}`driSupport32Bit` is 83 - set. 86 + Same as {option}`package` but for the 32-bit OpenGL implementation on 87 + 64-bit systems. Used when {option}`driSupport32Bit` is set. 88 + ''; 89 + }; 90 + 91 + mesaPackage = mkOption { 92 + type = types.package; 93 + default = pkgs.mesa_23; 94 + defaultText = literalExpression "pkgs.mesa_23"; 95 + example = literalExpression "pkgs.mesa_22"; 96 + description = lib.mdDoc '' 97 + The Mesa driver package used for rendering support on the system. 98 + 99 + You should only need to adjust this if you require a newer Mesa 100 + version for your hardware or because you need to patch a bug. 84 101 ''; 102 + apply = mesa: mesa.drivers or throw "`mesa` package must have a `drivers` output."; 103 + }; 104 + mesaPackage32 = mkOption { 105 + type = types.package; 106 + default = pkgs.pkgsi686Linux.mesa_23; 107 + defaultText = literalExpression "pkgs.pkgsi686Linux.mesa_23"; 108 + example = literalExpression "pkgs.pkgsi686Linux.mesa_22"; 109 + description = lib.mdDoc '' 110 + Same as {option}`mesaPackage` but for the 32-bit Mesa on 64-bit 111 + systems. Used when {option}`driSupport32Bit` is set. 112 + ''; 113 + apply = mesa: mesa.drivers or throw "`mesa` package must have a `drivers` output."; 85 114 }; 86 115 87 116 extraPackages = mkOption { ··· 97 126 ::: 98 127 ''; 99 128 }; 100 - 101 129 extraPackages32 = mkOption { 102 130 type = types.listOf types.package; 103 131 default = []; ··· 152 180 153 181 environment.sessionVariables.LD_LIBRARY_PATH = mkIf cfg.setLdLibraryPath 154 182 ([ "/run/opengl-driver/lib" ] ++ optional cfg.driSupport32Bit "/run/opengl-driver-32/lib"); 155 - 156 - hardware.opengl.package = mkDefault pkgs.mesa.drivers; 157 - hardware.opengl.package32 = mkDefault pkgs.pkgsi686Linux.mesa.drivers; 158 183 159 184 boot.extraModulePackages = optional (elem "virtualbox" videoDrivers) kernelPackages.virtualboxGuestAdditions; 160 185 };
+3 -3
pkgs/applications/audio/ebumeter/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "ebumeter"; 7 - version = "0.4.2"; 7 + version = "0.5.1"; 8 8 9 9 src = fetchurl { 10 - url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2"; 11 - sha256 = "1wm9j1phmpicrp7jdsvdbc3mghdd92l61yl9qbps0brq2ljjyd5s"; 10 + url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.xz"; 11 + hash = "sha256-U2ZpNfvy+X1RdA9Q4gvFYzAxlgc6kYjJpQ/0sEX0A4I="; 12 12 }; 13 13 14 14 buildInputs = [
+2
pkgs/applications/audio/lingot/default.nix
··· 8 8 , alsa-lib 9 9 , libpulseaudio 10 10 , fftw 11 + , fftwFloat 11 12 , json_c 12 13 , libjack2 13 14 , jackSupport ? true ··· 33 34 alsa-lib 34 35 libpulseaudio 35 36 fftw 37 + fftwFloat 36 38 json_c 37 39 ] ++ lib.optional jackSupport libjack2; 38 40
+1 -1
pkgs/applications/editors/lite-xl/default.nix
··· 41 41 description = "A lightweight text editor written in Lua"; 42 42 homepage = "https://github.com/lite-xl/lite-xl"; 43 43 license = licenses.mit; 44 - maintainers = with maintainers; [ boppyt ]; 44 + maintainers = with maintainers; [ sefidel ]; 45 45 platforms = platforms.unix; 46 46 }; 47 47 }
+2 -12
pkgs/applications/emulators/snes9x/default.nix
··· 3 3 , alsa-lib 4 4 , cmake 5 5 , fetchFromGitHub 6 - , fetchpatch 7 6 , gtkmm3 8 7 , libepoxy 9 8 , libpng ··· 34 33 "snes9x-gtk" 35 34 else 36 35 "snes9x"; 37 - version = "1.62"; 36 + version = "1.62.1"; 38 37 39 38 src = fetchFromGitHub { 40 39 owner = "snes9xgit"; 41 40 repo = "snes9x"; 42 41 rev = version; 43 42 fetchSubmodules = true; 44 - hash = "sha256-RcxFNmUbJp0rUugWOqQa3Sy/Hh18ZPOeDTxC0JY5GJQ="; 43 + hash = "sha256-y/tNJmmgigMEqjBWLyqxM/GQ2jcu4YXZjP0AbIjoPLg="; 45 44 }; 46 - 47 - patches = [ 48 - # Fix cross-compilation, otherwise it fails to detect host compiler features 49 - # Doesn't affect non CC builds 50 - (fetchpatch { 51 - url = "https://github.com/snes9xgit/snes9x/commit/f39ab408f4151c16d44e45470cc0736ffb2803f8.patch"; 52 - hash = "sha256-GMlHBsADEF+rycmEVgpWy220hZwld5D2e8fsYA7HblM="; 53 - }) 54 - ]; 55 45 56 46 nativeBuildInputs = [ 57 47 pkg-config
+36 -59
pkgs/applications/finance/odoo/default.nix
··· 1 1 { stdenv 2 2 , lib 3 + , fetchFromGitHub 3 4 , fetchurl 4 - , python39 5 + , python310 5 6 , nodePackages 6 7 , wkhtmltopdf 7 8 , nixosTests 8 9 }: 9 10 10 11 let 11 - python = python39.override { 12 + python = python310.override { 12 13 packageOverrides = self: super: { 13 - click = super.click.overridePythonAttrs (old: rec { 14 - version = "7.1.2"; 15 - src = old.src.override { 16 - inherit version; 17 - sha256 = "d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"; 14 + pypdf2 = super.pypdf2.overridePythonAttrs (old: rec { 15 + version = "1.28.6"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "py-pdf"; 20 + repo = "pypdf"; 21 + rev = version; 22 + fetchSubmodules = true; 23 + hash = "sha256-WnRbsy/PJcotZqY9mJPLadrYqkXykOVifLIbDyNf4s4="; 18 24 }; 25 + 26 + nativeBuildInputs = []; 27 + 28 + nativeCheckInputs = with self; [ pytestCheckHook pillow ]; 19 29 }); 20 30 flask = super.flask.overridePythonAttrs (old: rec { 21 - version = "1.1.4"; 22 - src = old.src.override { 23 - inherit version; 24 - sha256 = "0fbeb6180d383a9186d0d6ed954e0042ad9f18e0e8de088b2b419d526927d196"; 25 - }; 26 - }); 27 - itsdangerous = super.itsdangerous.overridePythonAttrs (old: rec { 28 - version = "1.1.0"; 29 - src = old.src.override { 30 - inherit version; 31 - sha256 = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"; 32 - }; 33 - }); 34 - jinja2 = super.jinja2.overridePythonAttrs (old: rec { 35 - version = "2.11.3"; 31 + version = "2.1.3"; 36 32 src = old.src.override { 37 33 inherit version; 38 - sha256 = "a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6"; 39 - }; 40 - }); 41 - markupsafe = super.markupsafe.overridePythonAttrs (old: rec { 42 - version = "2.0.1"; 43 - src = old.src.override { 44 - inherit version; 45 - sha256 = "594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"; 34 + hash = "sha256-FZcuUBffBXXD1sCQuhaLbbkCWeYgrI1+qBOjlrrVtss="; 46 35 }; 47 36 }); 48 37 werkzeug = super.werkzeug.overridePythonAttrs (old: rec { 49 - version = "1.0.1"; 38 + version = "2.1.2"; 50 39 src = old.src.override { 51 40 inherit version; 52 - sha256 = "6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"; 41 + hash = "sha256-HOCOgJPtZ9Y41jh5/Rujc1gX96gN42dNKT9ZhPJftuY="; 53 42 }; 54 - nativeCheckInputs = old.nativeCheckInputs ++ (with self; [ 55 - requests 56 - ]); 57 - disabledTests = old.disabledTests ++ [ 58 - # ResourceWarning: unclosed file 59 - "test_basic" 60 - "test_date_to_unix" 61 - "test_easteregg" 62 - "test_file_rfc2231_filename_continuations" 63 - "test_find_terminator" 64 - "test_save_to_pathlib_dst" 65 - ]; 66 - disabledTestPaths = old.disabledTestPaths ++ [ 67 - # ResourceWarning: unclosed file 68 - "tests/test_http.py" 69 - ]; 70 43 }); 71 44 }; 72 45 }; 46 + 47 + odoo_version = "15.0"; 48 + odoo_release = "20230317"; 73 49 in python.pkgs.buildPythonApplication rec { 74 50 pname = "odoo"; 75 - 76 - odoo_version = "15.0"; 77 - odoo_release = "20220506"; 78 - 79 51 version = "${odoo_version}.${odoo_release}"; 80 52 81 53 format = "setuptools"; ··· 84 56 src = fetchurl { 85 57 url = "https://nightly.odoo.com/${odoo_version}/nightly/src/odoo_${version}.tar.gz"; 86 58 name = "${pname}-${version}"; 87 - sha256 = "0mwlmfz5nhvg483ldrmlrjhwaf284c0c0pxf0fb0sfx2dnjjj3ib"; # odoo 59 + hash = "sha256-nJEFPtZhq7DLLDCL9xt0RV75d/a45o6hBKsUlQAWh1U="; # odoo 88 60 }; 89 61 62 + unpackPhase = '' 63 + tar xfz $src 64 + cd odoo* 65 + ''; 66 + 90 67 # needs some investigation 91 68 doCheck = false; 92 69 93 - makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" ]; 70 + makeWrapperArgs = [ 71 + "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" 72 + ]; 94 73 95 74 propagatedBuildInputs = with python.pkgs; [ 96 75 babel ··· 101 80 freezegun 102 81 gevent 103 82 greenlet 104 - html2text 105 83 idna 106 84 jinja2 107 85 libsass ··· 127 105 qrcode 128 106 reportlab 129 107 requests 108 + setuptools 130 109 vobject 131 110 werkzeug 132 111 xlrd ··· 135 114 zeep 136 115 ]; 137 116 138 - unpackPhase = '' 139 - tar xfz $src 140 - cd odoo* 141 - ''; 117 + # takes 5+ minutes and there are not files to strip 118 + dontStrip = true; 142 119 143 120 passthru = { 144 121 updateScript = ./update.sh;
+1 -1
pkgs/applications/finance/odoo/update.sh
··· 22 22 23 23 cd "$(dirname "${BASH_SOURCE[0]}")" 24 24 25 - sed -ri "s| sha256.+ # odoo| sha256 = \"$(nix-prefetch-url --type sha256 "https://nightly.odoo.com/${VERSION}/nightly/src/odoo_${latestVersion}.tar.gz")\"; # odoo|g" default.nix 25 + sed -ri "s| hash.+ # odoo| hash = \"$(nix-prefetch-url --type sha256 "https://nightly.odoo.com/${VERSION}/nightly/src/odoo_${latestVersion}.tar.gz")\"; # odoo|g" default.nix 26 26 sed -ri "s| odoo_version.+| odoo_version = \"$VERSION\";|" default.nix 27 27 sed -ri "s| odoo_release.+| odoo_release = \"$RELEASE\";|" default.nix
+2 -2
pkgs/applications/misc/gallery-dl/default.nix
··· 2 2 3 3 buildPythonApplication rec { 4 4 pname = "gallery-dl"; 5 - version = "1.25.0"; 5 + version = "1.25.1"; 6 6 format = "setuptools"; 7 7 8 8 src = fetchPypi { 9 9 inherit version; 10 10 pname = "gallery_dl"; 11 - sha256 = "sha256-WxmH6uAMnbmXZWOkLh4B6rR6RV2xfSVBZ7v47AwlwRY="; 11 + sha256 = "sha256-us9lzchdsCD4sY4XQ1f4j3wKuFtEZnEuBrlSa3FpDP4="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+1 -1
pkgs/applications/misc/logseq/default.nix
··· 61 61 homepage = "https://github.com/logseq/logseq"; 62 62 changelog = "https://github.com/logseq/logseq/releases/tag/${version}"; 63 63 license = licenses.agpl3Plus; 64 - maintainers = with maintainers; [ weihua ]; 64 + maintainers = with maintainers; [ ]; 65 65 platforms = [ "x86_64-linux" ]; 66 66 }; 67 67 }
+3 -3
pkgs/applications/misc/terminal-stocks/default.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "terminal-stocks"; 5 - version = "1.0.14"; 5 + version = "1.0.15"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "shweshi"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-AzLMqp5t9u1ne+xCKp0dq/3V3DKJ1Ou9riAN+KqkStg="; 11 + hash = "sha256-8n+Wpkiy+XTaIBO7nuxO2m3EkkaHsmYNqtUqMin6leg="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-GOg6B8BWkWegxeYmlHSJjFNrb/frb6jdzjjNSGF38Zo="; 14 + npmDepsHash = "sha256-M9a33v1R/cAgUJJLHwPs8hpPtjzzKkMps/ACnWLqUZE="; 15 15 dontNpmBuild = true; 16 16 17 17 passthru.updateScript = nix-update-script {};
+3 -3
pkgs/applications/networking/cluster/pgo-client/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pgo-client"; 5 - version = "4.7.7"; 5 + version = "4.7.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CrunchyData"; 9 9 repo = "postgres-operator"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-rHWCj25NEKbwV1kmuH6k3oWSXKelknb2GRDgLaZSb3U="; 11 + sha256 = "sha256-ZwKfbmKPvhxLpCGH+IlfoQjnw8go4N6mfseY2LWCktA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-5/mLlgNdlX/ABrpofPqowCskxFwJAEKVpbsMOvMvTWc="; 14 + vendorHash = "sha256-qpS1TLShJwXgmtuhWIPOlcHMofUgOWZ8vbri36i+hpM="; 15 15 16 16 subPackages = [ "cmd/pgo" ]; 17 17
+6 -6
pkgs/applications/networking/instant-messengers/zoom-us/default.nix
··· 48 48 # and often with different versions. We write them on three lines 49 49 # like this (rather than using {}) so that the updater script can 50 50 # find where to edit them. 51 - versions.aarch64-darwin = "5.13.11.16405"; 52 - versions.x86_64-darwin = "5.13.11.16405"; 53 - versions.x86_64-linux = "5.13.11.1288"; 51 + versions.aarch64-darwin = "5.14.0.16775"; 52 + versions.x86_64-darwin = "5.14.0.16775"; 53 + versions.x86_64-linux = "5.14.0.1720"; 54 54 55 55 srcs = { 56 56 aarch64-darwin = fetchurl { 57 57 url = "https://zoom.us/client/${versions.aarch64-darwin}/zoomusInstallerFull.pkg?archType=arm64"; 58 58 name = "zoomusInstallerFull.pkg"; 59 - hash = "sha256-YjERJ6B06/uloHRQVyZDLyf/2Gae0P7xdk4Db9aqROs="; 59 + hash = "sha256-79Jb5cv9OWYM55fB8wtP+qYJc67+gNdiw9VrqnQPJ5U="; 60 60 }; 61 61 x86_64-darwin = fetchurl { 62 62 url = "https://zoom.us/client/${versions.x86_64-darwin}/zoomusInstallerFull.pkg"; 63 - hash = "sha256-g6n4SKdord7gRwBaYUle3+yi1eB0T36ilScTaCcU8us="; 63 + hash = "sha256-HetPvZ7Bv8bC4DdoNM+92bFFQnwDY26WiEniwrBNSfk="; 64 64 }; 65 65 x86_64-linux = fetchurl { 66 66 url = "https://zoom.us/client/${versions.x86_64-linux}/zoom_x86_64.pkg.tar.xz"; 67 - hash = "sha256-BdI3HEQVe9A3D6KJ45wHWsrfb+dhTZAp/xlcr9X92EU="; 67 + hash = "sha256-d8R2jfol5zAaI4qcpUIVdph899d7t/LRxQImXFzXXWo="; 68 68 }; 69 69 }; 70 70
+6
pkgs/applications/video/bombono/default.nix
··· 53 53 {name="fix_ffmpeg30.patch"; sha256="sha256-vKEbvbjYVRzEaVYC8XOJBPmk6FDXI/WA0X/dldRRO8c=";} 54 54 ]); 55 55 56 + postPatch = '' 57 + substituteInPlace src/mbase/SConscript \ 58 + --replace "lib_mbase_env['CPPDEFINES']" "list(lib_mbase_env['CPPDEFINES'])" 59 + ''; 60 + 56 61 nativeBuildInputs = [ wrapGAppsHook scons pkg-config gettext ]; 57 62 58 63 buildInputs = [ ··· 84 89 homepage = "https://www.bombono.org/"; 85 90 license = licenses.gpl2Only; 86 91 maintainers = with maintainers; [ symphorien ]; 92 + platforms = platforms.linux; 87 93 }; 88 94 }
+2 -2
pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, substituteAll, glib, gnome, gettext, jq }: 1 + { lib, stdenv, fetchFromGitHub, substituteAll, glib, gnome, gettext, jq, intltool }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gnome-shell-extension-EasyScreenCast"; ··· 19 19 ]; 20 20 21 21 nativeBuildInputs = [ 22 - glib gettext jq 22 + glib gettext jq intltool 23 23 ]; 24 24 25 25 makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ];
+4 -9
pkgs/development/libraries/drumstick/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 2 , cmake, docbook_xml_dtd_45, docbook_xsl, doxygen, graphviz-nox, pkg-config, qttools, wrapQtAppsHook 3 - , alsa-lib, fluidsynth, qtbase, qtsvg, libpulseaudio 3 + , alsa-lib, fluidsynth, libpulseaudio, qtbase, qtsvg, sonivox 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "drumstick"; 8 - version = "2.7.0"; 8 + version = "2.7.2"; 9 9 10 10 src = fetchurl { 11 11 url = "mirror://sourceforge/drumstick/${version}/${pname}-${version}.tar.bz2"; 12 - hash = "sha256-Yb5SrXJ5ZK0IJ8XbnxAGLlfqKGOrfv2VET9Ba8dKItU="; 12 + hash = "sha256-5XxG5ur584fgW4oCONgMiWzV48Q02HEdmpb9+YhBFe0="; 13 13 }; 14 14 15 15 patches = [ ··· 18 18 19 19 postPatch = '' 20 20 substituteInPlace library/rt/backendmanager.cpp --subst-var out 21 - 22 - # https://sourceforge.net/p/drumstick/bugs/39/ 23 - substituteInPlace drumstick-alsa.pc.in drumstick-file.pc.in drumstick-rt.pc.in drumstick-widgets.pc.in \ 24 - --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \ 25 - --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ 26 21 ''; 27 22 28 23 outputs = [ "out" "dev" "man" ]; ··· 32 27 ]; 33 28 34 29 buildInputs = [ 35 - alsa-lib fluidsynth libpulseaudio qtbase qtsvg 30 + alsa-lib fluidsynth libpulseaudio qtbase qtsvg sonivox 36 31 ]; 37 32 38 33 cmakeFlags = [
+5 -5
pkgs/development/libraries/libcef/default.nix
··· 66 66 projectArch = "x86_64"; 67 67 }; 68 68 }; 69 - platforms."aarch64-linux".sha256 = "1aacq9baw0hxf3h354fmws4v6008d3axxmri23vlvhzg7hza05n1"; 70 - platforms."x86_64-linux".sha256 = "17wpmvrbkdhnsk63f36yk6kq0mqhx63ih0mbhf8hl0qj6yndabgc"; 69 + platforms."aarch64-linux".sha256 = "1mrrsj213jc3s926wc1ccz63n7052mbmb70411lsi0192xfmrpjb"; 70 + platforms."x86_64-linux".sha256 = "1jf4yv83xjbj75j1mqzib9f3kb9pwsnqryhv1dwqm5qi6if6g5y3"; 71 71 72 72 platformInfo = builtins.getAttr stdenv.targetPlatform.system platforms; 73 73 in 74 74 stdenv.mkDerivation rec { 75 75 pname = "cef-binary"; 76 - version = "110.0.27"; 77 - gitRevision = "1296c82"; 78 - chromiumVersion = "110.0.5481.100"; 76 + version = "111.2.6"; 77 + gitRevision = "491d238"; 78 + chromiumVersion = "111.0.5563.65"; 79 79 80 80 src = fetchurl { 81 81 url = "https://cef-builds.spotifycdn.com/cef_binary_${version}+g${gitRevision}+chromium-${chromiumVersion}_${platformInfo.platformStr}_minimal.tar.bz2";
+4
pkgs/development/libraries/mesa/22.3.7.nix
··· 1 + import ./generic.nix { 2 + version = "22.3.7"; 3 + hash = "sha256-iUzi9KHC52F3zdIoRiAZLQ2jBmskPuwvux18838TBCw="; 4 + }
+4
pkgs/development/libraries/mesa/23.0.1.nix
··· 1 + import ./generic.nix { 2 + version = "23.0.1"; 3 + hash = "sha256-6OWGhWtViTq66b3NuYtBwIHZCbsfrzcubnJiMHvzSt8="; 4 + }
+6 -4
pkgs/development/libraries/mesa/default.nix pkgs/development/libraries/mesa/generic.nix
··· 1 + { version, hash }: 2 + 1 3 { stdenv, lib, fetchurl 2 4 , meson, pkg-config, ninja 3 5 , intltool, bison, flex, file, python3Packages, wayland-scanner 4 6 , expat, libdrm, xorg, wayland, wayland-protocols, openssl 5 - , llvmPackages, libffi, libomxil-bellagio, libva-minimal 7 + , llvmPackages_15, libffi, libomxil-bellagio, libva-minimal 6 8 , libelf, libvdpau 7 9 , libglvnd, libunwind 8 10 , vulkan-loader, glslang ··· 87 89 let 88 90 # Release calendar: https://www.mesa3d.org/release-calendar.html 89 91 # Release frequency: https://www.mesa3d.org/releasing.html#schedule 90 - version = "22.3.7"; 91 - branch = lib.versions.major version; 92 + branch = lib.versions.major version; 92 93 93 94 withLibdrm = lib.meta.availableOn stdenv.hostPlatform libdrm; 94 95 96 + llvmPackages = llvmPackages_15; 95 97 # Align all the Mesa versions used. Required to prevent explosions when 96 98 # two different LLVMs are loaded in the same process. 97 99 # FIXME: these should really go into some sort of versioned LLVM package set ··· 119 121 "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" 120 122 "ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz" 121 123 ]; 122 - hash = "sha256-iUzi9KHC52F3zdIoRiAZLQ2jBmskPuwvux18838TBCw="; 124 + inherit hash; 123 125 }; 124 126 125 127 # TODO:
+12
pkgs/development/perl-modules/CatalystAuthenticationStoreHtpasswd-test-replace-DES-hash-with-bcrypt.patch
··· 1 + Replaces the legacy DES crypt hash used in tests with a stronger 2 + bcrypt function, as crypt() in pkgs.perl no longer supports DES 3 + 4 + # htpasswd -nbB mufasa "Circle of Life" 5 + 6 + diff --git a/t/lib/TestApp/htpasswd b/t/lib/TestApp/htpasswd 7 + index 6cec784..91e5375 100644 8 + --- a/t/lib/TestApp/htpasswd 9 + +++ b/t/lib/TestApp/htpasswd 10 + @@ -1 +1 @@ 11 + -mufasa:Y7hn4ncIVPOuI 12 + +mufasa:$2y$05$.KPC4Gja9L5AxJATDQBzs.lCHkm49l/9dcoyPcJg0JhyIvsD6Gqza
+2 -2
pkgs/development/python-modules/asana/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "asana"; 13 - version = "3.1.1"; 13 + version = "3.2.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "asana"; 20 20 repo = "python-asana"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-7POA3r3PqJ/PcyG7GFugg5p8o0h3OIA8zEIfsTwPxFI="; 22 + hash = "sha256-qxoGi7UByHEuDKsELEjwzf01/JNEiUgUs88536TGFKo="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+8 -3
pkgs/development/python-modules/denonavr/default.nix
··· 12 12 , pytest-httpx 13 13 , pytest-timeout 14 14 , pythonOlder 15 + , setuptools 15 16 }: 16 17 17 18 buildPythonPackage rec { 18 19 pname = "denonavr"; 19 - version = "0.11.1"; 20 - format = "setuptools"; 20 + version = "0.11.2"; 21 + format = "pyproject"; 21 22 22 23 disabled = pythonOlder "3.7"; 23 24 ··· 25 26 owner = "ol-iver"; 26 27 repo = pname; 27 28 rev = "refs/tags/${version}"; 28 - hash = "sha256-iYekqqhrcN1rbclFVSbJSF5ky19WsBLKlTxAa2HULqY="; 29 + hash = "sha256-Sa5pfvSzshgwHh9LGWPBVIC7pXouZbTmSMYncT46phU="; 29 30 }; 31 + 32 + nativeBuildInputs = [ 33 + setuptools 34 + ]; 30 35 31 36 propagatedBuildInputs = [ 32 37 asyncstdlib
+3 -3
pkgs/development/python-modules/eternalegypt/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "eternalegypt"; 11 - version = "0.0.13"; 11 + version = "0.0.15"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 16 16 src = fetchFromGitHub { 17 17 owner = "amelchio"; 18 18 repo = pname; 19 - rev = "v${version}"; 20 - sha256 = "0wi2cqd81irqm873npkqg3mvdrb57idqdsp8qw8h0s7lk0kil1wi"; 19 + rev = "refs/tags/v${version}"; 20 + sha256 = "sha256-CKiv5gVHaEyO9P5x2FKgpSIm2pUiFptaEQVPZHALASk="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+5 -2
pkgs/development/python-modules/fake-useragent/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "fake-useragent"; 13 - version = "1.1.2"; 13 + version = "1.1.3"; 14 14 format = "pyproject"; 15 + 16 + disabled = pythonOlder "3.7"; 15 17 16 18 src = fetchFromGitHub { 17 19 owner = "fake-useragent"; 18 20 repo = "fake-useragent"; 19 21 rev = "refs/tags/${version}"; 20 - hash = "sha256-Rz+oEpgfvSRdly+H1bYxYjNCfo1STkLcogPgZs+b8DY="; 22 + hash = "sha256-8fVNko65nP/u9vLGBPfSseKW07b4JC6kCPFCPK2f6wU="; 21 23 }; 22 24 23 25 postPatch = '' ··· 42 44 meta = with lib; { 43 45 description = "Up to date simple useragent faker with real world database"; 44 46 homepage = "https://github.com/hellysmile/fake-useragent"; 47 + changelog = "https://github.com/fake-useragent/fake-useragent/releases/tag/${version}"; 45 48 license = licenses.asl20; 46 49 maintainers = with maintainers; [ evanjs ]; 47 50 };
+12 -4
pkgs/development/python-modules/jupyter-cache/default.nix
··· 10 10 , sqlalchemy 11 11 , tabulate 12 12 , pythonOlder 13 + , setuptools 14 + , pythonRelaxDepsHook 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "jupyter-cache"; 17 19 version = "0.5.0"; 20 + format = "pyproject"; 18 21 19 22 disabled = pythonOlder "3.7"; 20 23 ··· 23 26 sha256 = "87408030a4c8c14fe3f8fe62e6ceeb24c84e544c7ced20bfee45968053d07801"; 24 27 }; 25 28 26 - postPatch = '' 27 - substituteInPlace setup.cfg \ 28 - --replace "nbclient>=0.2,<0.6" "nbclient" 29 - ''; 29 + nativeBuildInputs = [ 30 + setuptools 31 + pythonRelaxDepsHook 32 + ]; 30 33 31 34 propagatedBuildInputs = [ 32 35 attrs ··· 37 40 pyyaml 38 41 sqlalchemy 39 42 tabulate 43 + ]; 44 + 45 + pythonRelaxDeps = [ 46 + "nbclient" 47 + "sqlalchemy" # See https://github.com/executablebooks/jupyter-cache/pull/93 40 48 ]; 41 49 42 50 pythonImportsCheck = [ "jupyter_cache" ];
+2 -2
pkgs/development/python-modules/onvif-zeep-async/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "onvif-zeep-async"; 11 - version = "1.2.1"; 11 + version = "1.2.2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-bRPqbuBrC4Q0gdQGb2KAy1pTHce42WvM7gjvAspH4WE="; 18 + hash = "sha256-Mq+mARZQD48M6+9XwzX7V541Jqn/vJMSeiEm5k8/YII="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-benedict/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "python-benedict"; 27 - version = "0.29.1"; 27 + version = "0.30.0"; 28 28 format = "setuptools"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 33 33 owner = "fabiocaccamo"; 34 34 repo = pname; 35 35 rev = "refs/tags/${version}"; 36 - hash = "sha256-tsTd9EJkwI98ynXu/vz5hX+X55vxOkhIfeawQNn2f6Q="; 36 + hash = "sha256-/LERLQw0Jb/Yuf2CfEKIZ658LtSkHjMvMxGcB00IgKs="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/readchar/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "readchar"; 12 - version = "4.0.3"; 12 + version = "4.0.5"; 13 13 format = "setuptools"; 14 14 15 15 # Don't use wheels on PyPI ··· 17 17 owner = "magmax"; 18 18 repo = "python-${pname}"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-QMaTZRS9iOSuax706Es9WhkwU3vdcNb14dbiSt48aN0="; 20 + hash = "sha256-Ru18lh+9tXtvttypnob0HNPKBiGF7E9HDL21l1AAGa8="; 21 21 }; 22 22 23 23 postPatch = ''
+2 -2
pkgs/development/python-modules/types-requests/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-requests"; 9 - version = "2.28.11.15"; 9 + version = "2.28.11.16"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-/I6qCcwBRpnGtjxgwuOt0MiwmkEMgYtaxuZfkqJt3gk="; 14 + hash = "sha256-nUACBW3368TsHyj9cB+6gsXCJUnER3EWyyZWqjCs5ts="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/goa/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "goa"; 8 - version = "3.11.2"; 8 + version = "3.11.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "goadesign"; 12 12 repo = "goa"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-zKiGPXkVAeWj9RXuFWvlSz1SYO+uGNBM65+ypIPZpmc="; 14 + sha256 = "sha256-Po5i6pb7Qu6kYLO7rdW9SJFDf42rPx8mvSfNxtW3Qcg="; 15 15 }; 16 16 vendorHash = "sha256-vND29xb5bG+MnBiOCP9PWC+VGqIwdUO0uVOcP5Wc4zA="; 17 17
+18 -38
pkgs/development/tools/gotools/default.nix
··· 1 - { lib, buildGoModule, fetchgit }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 buildGoModule rec { 4 4 pname = "gotools"; 5 - version = "0.1.10"; 5 + version = "0.7.0"; 6 6 7 - src = fetchgit { 7 + # using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse 8 + src = fetchFromGitHub { 9 + owner = "golang"; 10 + repo = "tools"; 8 11 rev = "v${version}"; 9 - url = "https://go.googlesource.com/tools"; 10 - sha256 = "sha256-r71+//VhayW18uvMl/ls/8KYNbZ7uDZw3SWoqPL3Xqk="; 12 + # The gopls folder contains a Go submodule which causes a build failure 13 + # and lives in its own package named gopls. 14 + postFetch = '' 15 + rm -r $out/gopls 16 + ''; 17 + sha256 = "sha256-6Sdo6oKJHYXWkvJmbte7Wc7tov5AHzn70Bi1QdQ5HR4="; 11 18 }; 12 19 13 - # The gopls folder contains a Go submodule which causes a build failure. 14 - # Given that, we can't have the gopls binary be part of the gotools 15 - # derivation. 16 - # 17 - # The attribute "gopls" provides the gopls binary. 18 - # 19 - # Related 20 - # 21 - # * https://github.com/NixOS/nixpkgs/pull/85868 22 - # * https://github.com/NixOS/nixpkgs/issues/88716 23 - postPatch = '' 24 - rm -rf gopls 25 - ''; 26 - 27 - vendorSha256 = "sha256-UJIXG8WKzazNTXoqEFlT/umC40F6z2Q5I8RfxnMbsPM="; 20 + vendorSha256 = "sha256-fp0pb3EcGRDWlSpgel4pYRdsPJGk8/d57EjWJ+fzq7g="; 28 21 29 22 doCheck = false; 30 23 31 - postConfigure = '' 32 - # Make the builtin tools available here 33 - mkdir -p $out/bin 34 - eval $(go env | grep GOTOOLDIR) 35 - find $GOTOOLDIR -type f | while read x; do 36 - ln -sv "$x" "$out/bin" 37 - done 38 - export GOTOOLDIR=$out/bin 39 - ''; 40 - 41 - excludedPackages = [ "vet" "cover" ]; 42 - 43 24 # Set GOTOOLDIR for derivations adding this to buildInputs 44 25 postInstall = '' 45 26 mkdir -p $out/nix-support 46 27 substitute ${./setup-hook.sh} $out/nix-support/setup-hook \ 47 28 --subst-var-by bin $out 48 29 ''; 49 - 50 - # Do not copy this without a good reason for enabling 51 - # In this case tools is heavily coupled with go itself and embeds paths. 52 - allowGoReference = true; 53 30 54 31 meta = with lib; { 55 32 description = "Additional tools for Go development"; 56 - homepage = "http://go.googlesource.com/tools"; 33 + longDescription = '' 34 + This package contains tools like: godoc, goimports, callgraph, digraph, stringer or toolstash. 35 + ''; 36 + homepage = "https://go.googlesource.com/tools"; 57 37 license = licenses.bsd3; 58 - maintainers = with maintainers; [ danderson ]; 38 + maintainers = with maintainers; [ danderson SuperSandro2000 ]; 59 39 }; 60 40 }
+2 -2
pkgs/development/tools/misc/opengrok/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "opengrok"; 5 - version = "1.8.4"; 5 + version = "1.9.2"; 6 6 7 7 # binary distribution 8 8 src = fetchurl { 9 9 url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz"; 10 - hash = "sha256-Xy8mTpdHorGGvUGHCDKOA2HaAJY3PBWjf6Pnll4Melk="; 10 + hash = "sha256-z5jqKRnxPOwj1sOFGt0m54m9t0l3xBfulvmQCYeJj40="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/tools/rust/cargo-vet/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-vet"; 5 - version = "0.5.1"; 5 + version = "0.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mozilla"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-nBhm6EDs99oKdUxT+N+IC7fY/U0yyeJyr6vbaZaiGSI="; 11 + sha256 = "sha256-+Qbq3EARedsaPtSTfR/UCC/1p0b/QmvriG2AIyx8coo="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-M6CdYL8CDfFH0RaYGel6dC3LxQZzq9YbU8ecH9CWEr8="; 14 + cargoSha256 = "sha256-Vij4vq+04fLpbcDpYVMBVl3QNVZprUYcVLB28mrjUOg="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin Security; 17 17
+3 -3
pkgs/development/tools/sentry-cli/default.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "sentry-cli"; 12 - version = "2.15.2"; 12 + version = "2.16.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "getsentry"; 16 16 repo = "sentry-cli"; 17 17 rev = version; 18 - sha256 = "sha256-niPQC9h/7D6nHgC+eKjY4gQwrhN0OxB5QlhKInI4LpA="; 18 + sha256 = "sha256-8Dd0gz0j8kdB7/18gfrOSinALx1KAlY79tpt0jqPmdQ="; 19 19 }; 20 20 doCheck = false; 21 21 ··· 25 25 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 26 26 nativeBuildInputs = [ pkg-config ]; 27 27 28 - cargoHash = "sha256-hsVYbIfhKYAxW9hqxWJ2GrutDZGLDLR3vGhanl1PND4="; 28 + cargoHash = "sha256-CIjtEgekid/ZIpVNO2R56gz7B7HLtlFHErnSNhVacWM="; 29 29 30 30 meta = with lib; { 31 31 homepage = "https://docs.sentry.io/cli/";
+5 -5
pkgs/development/web/bun/default.nix
··· 12 12 }: 13 13 14 14 stdenvNoCC.mkDerivation rec { 15 - version = "0.5.7"; 15 + version = "0.5.8"; 16 16 pname = "bun"; 17 17 18 18 src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); ··· 33 33 sources = { 34 34 "aarch64-darwin" = fetchurl { 35 35 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 36 - sha256 = "m0lFokGfJY3qXLYO4vnFFqKb3/IPRXWN3L6PV5DqtX0="; 36 + sha256 = "phTBV0vQT7Qgf1wY9Qqc7xXrs3Cms9jKpjp1KxlTbz8="; 37 37 }; 38 38 "aarch64-linux" = fetchurl { 39 39 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 40 - sha256 = "XSUbfRkjo7yiPrPa/Mp30WolFex+Evziphut1sKflDE="; 40 + sha256 = "weH+Aygh8Ud9cfMOVpZe8EjL7BWsXBlm9GDnkZa/x0c="; 41 41 }; 42 42 "x86_64-darwin" = fetchurl { 43 43 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip"; 44 - sha256 = "RuZ0T5Y7Vi9mtyFL8ul715MRO4XozDf0WS+qjayx1kg="; 44 + sha256 = "pYvBjlTPLuwOlarlZKXuvn7y6wTRdyHM/leb3hOJHrY="; 45 45 }; 46 46 "x86_64-linux" = fetchurl { 47 47 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 48 - sha256 = "uOVHQIjvZW0Gqv/GLlvbXl5bDcnwR80AP1lUJ2v2ZoM="; 48 + sha256 = "+NiZtMUQBGPtI4VbtfIb+oZX+RMjIJiTnEbvoeeCC84="; 49 49 }; 50 50 }; 51 51 updateScript = writeShellScript "update-bun" ''
+3 -3
pkgs/games/dxx-rebirth/default.nix
··· 22 22 in 23 23 stdenv.mkDerivation rec { 24 24 pname = "dxx-rebirth"; 25 - version = "unstable-2022-09-17"; 25 + version = "unstable-2023-03-23"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "dxx-rebirth"; 29 29 repo = "dxx-rebirth"; 30 - rev = "ad46235b67a24a38dec4734f94a59eba149ad94a"; 31 - hash = "sha256-vIAY1O4VnOsV617J5yjg09JIL/vK4Fb/lopnX17g+uY="; 30 + rev = "841ebcc11d249febe48911bc239606ade3bd78b3"; 31 + hash = "sha256-cr5QdkKO/HNvtc2w4ynJixuLauhPCwtsSC3UEV7+C1A="; 32 32 }; 33 33 34 34 nativeBuildInputs = [ pkg-config scons ];
+2 -2
pkgs/games/opentyrian/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "opentyrian"; 12 - version = "2.1.20220318"; 12 + version = "2.1.20221123"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "opentyrian"; 16 16 repo = "opentyrian"; 17 17 rev = "v${version}"; 18 - sha256 = "01z1zxpps4ils0bnwazl9lmqdbfhfd8fkacahnh6kqyczavg40xg"; 18 + sha256 = "sha256-fVcc8v1c9uU72X6afEo4VoMo6YuDECQSwDQ/TQjgwUY="; 19 19 }; 20 20 21 21 data = fetchzip {
+9 -1
pkgs/games/xonotic/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchzip, makeWrapper, runCommand, makeDesktopItem 2 2 , xonotic-data, copyDesktopItems 3 3 , # required for both 4 - unzip, libjpeg, zlib, libvorbis, curl 4 + unzip, libjpeg, zlib, libvorbis, curl, freetype, libpng, libtheora 5 5 , # glx 6 6 libX11, libGLU, libGL, libXpm, libXext, libXxf86vm, alsa-lib 7 7 , # sdl ··· 121 121 patchelf \ 122 122 --add-needed ${curl.out}/lib/libcurl.so \ 123 123 --add-needed ${libvorbis}/lib/libvorbisfile.so \ 124 + --add-needed ${libvorbis}/lib/libvorbisenc.so \ 124 125 --add-needed ${libvorbis}/lib/libvorbis.so \ 125 126 --add-needed ${libGL.out}/lib/libGL.so \ 127 + --add-needed ${freetype}/lib/libfreetype.so \ 128 + --add-needed ${libpng}/lib/libpng.so \ 129 + --add-needed ${libtheora}/lib/libtheora.so \ 126 130 $out/bin/xonotic-glx 127 131 '' + lib.optionalString withSDL '' 128 132 patchelf \ 129 133 --add-needed ${curl.out}/lib/libcurl.so \ 130 134 --add-needed ${libvorbis}/lib/libvorbisfile.so \ 135 + --add-needed ${libvorbis}/lib/libvorbisenc.so \ 131 136 --add-needed ${libvorbis}/lib/libvorbis.so \ 137 + --add-needed ${freetype}/lib/libfreetype.so \ 138 + --add-needed ${libpng}/lib/libpng.so \ 139 + --add-needed ${libtheora}/lib/libtheora.so \ 132 140 $out/bin/xonotic-sdl 133 141 ''; 134 142 };
+1
pkgs/os-specific/darwin/apple-source-releases/Csu/default.nix
··· 18 18 ''; 19 19 20 20 installFlags = [ "DSTROOT=$(out)" ]; 21 + enableParallelInstalling = false; # cp: cannot create regular file '$out/lib/crt1.10.6.o' 21 22 22 23 meta = with lib; { 23 24 description = "Apple's common startup stubs for darwin";
+3 -3
pkgs/servers/monitoring/karma/default.nix
··· 19 19 20 20 buildGoModule rec { 21 21 pname = "karma"; 22 - version = "0.113"; 22 + version = "0.114"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "prymitive"; 26 26 repo = "karma"; 27 27 rev = "v${version}"; 28 - hash = "sha256-q0RGdwZQv8ypBcjrf0UjBSp2PlaKzM0wX5q4GzUNX9o="; 28 + hash = "sha256-ZstBumK2ywwdr1ksMN7P8mHdYUiMOpfpYnvt0v0Io4w="; 29 29 }; 30 30 31 - vendorHash = "sha256-8YyTHPIr5Kk7M0LH662KQw4t2CuHZ/3jD0Rzhl8ps0M="; 31 + vendorHash = "sha256-ZsXPA4KyKbc/bwkidyHNDg62mE8KlE+yIssOBZLmHVg="; 32 32 33 33 nativeBuildInputs = [ 34 34 nodejs-18_x
+2 -2
pkgs/servers/monitoring/plugins/wmic-bin.nix
··· 1 - { stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt, libxcrypt }: 1 + { stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt, libxcrypt-legacy }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wmic-bin"; ··· 11 11 sha256 = "1w1mdbiwz37wzry1q38h8dyjaa6iggmsb9wcyhhlawwm1vj50w48"; 12 12 }; 13 13 14 - buildInputs = [ popt libxcrypt ]; 14 + buildInputs = [ popt libxcrypt-legacy ]; 15 15 16 16 nativeBuildInputs = [ autoPatchelfHook ]; 17 17
+2 -2
pkgs/servers/web-apps/moodle/default.nix
··· 1 1 { lib, stdenv, fetchurl, writeText, plugins ? [ ], nixosTests }: 2 2 3 3 let 4 - version = "4.1.1"; 4 + version = "4.1.2"; 5 5 6 6 versionParts = lib.take 2 (lib.splitVersion version); 7 7 # 4.2 -> 402, 3.11 -> 311 ··· 15 15 16 16 src = fetchurl { 17 17 url = "https://download.moodle.org/stable${stableVersion}/${pname}-${version}.tgz"; 18 - sha256 = "sha256-w6N/jFYieL+yJXlDr1/9AATChSqiatx+aJl0XSOSL0s="; 18 + sha256 = "sha256-ddXldOQLefV6Kjla+IeFwD50Vye4kholJD5R6X6A2Og="; 19 19 }; 20 20 21 21 phpConfig = writeText "config.php" ''
+3 -3
pkgs/tools/admin/scaleway-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "scaleway-cli"; 5 - version = "2.12.0"; 5 + version = "2.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "scaleway"; 9 9 repo = "scaleway-cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4BIw+vk0LJL6/AWtZDtOP88UqUg1EiDASMaEP3/7Bx0="; 11 + sha256 = "sha256-C8Yeq2Mwyc3oPQSby8NiNrSNHle7Mc7uexg+G17Cl3M="; 12 12 }; 13 13 14 - vendorHash = "sha256-Wdbh7rFKvWdDULMwYxvTrWim6iO6kQaYseSkq2PBfUM="; 14 + vendorHash = "sha256-1OwzvGngSv8N5IFlB+vOKyPAaPnY4h2i0vKQAcQHt5o="; 15 15 16 16 ldflags = [ 17 17 "-w"
+2 -2
pkgs/tools/misc/bdf2psf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bdf2psf"; 5 - version = "1.217"; 5 + version = "1.218"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; 9 - sha256 = "sha256-Rsud1DEsI946F8VzaF+S8nqTMih7ILWPhfx4zqa4Y9E="; 9 + sha256 = "sha256-pHL3Q/qOLq8AAmMuNoGRzz+c1xQxJk/6+t6u3EdWqMY="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ dpkg ];
+5 -4
pkgs/tools/misc/mapcidr/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "mapcidr"; 8 - version = "1.1.0"; 8 + version = "1.1.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = pname; 13 - rev = "v${version}"; 14 - sha256 = "sha256-cpNNStPgGnEtiiHgpiLUvEFu78NtyJIVgjrkh6N+dLU="; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-HmX4C1DXPS/14TGxKFnw/sxxp2suU6c4GC5W7ZtzjZ8="; 15 15 }; 16 16 17 - vendorHash = "sha256-t6bTbgOTWNz3nz/Tgwkd+TCBhN++0UaV0LqaEsO9YCI="; 17 + vendorHash = "sha256-7cB+fDYWy1Qe3apEPaUMA2+6KmMpC7ANjEgIde00Pas="; 18 18 19 19 modRoot = "."; 20 20 subPackages = [ ··· 28 28 operations, it can be used both as a library and as independent CLI tool. 29 29 ''; 30 30 homepage = "https://github.com/projectdiscovery/mapcidr"; 31 + changelog = "https://github.com/projectdiscovery/mapcidr/releases/tag/v${version}"; 31 32 license = licenses.mit; 32 33 maintainers = with maintainers; [ hanemile ]; 33 34 };
+3 -3
pkgs/tools/misc/trdl-client/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "trdl-client"; 10 - version = "0.6.3"; 10 + version = "0.6.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "werf"; 14 14 repo = "trdl"; 15 15 rev = "v${version}"; 16 - hash = "sha256-mmhbcBNHvx14Ihzq8UemPU8oYi/Gn3NK0FDZRVJvvfQ="; 16 + hash = "sha256-jJwRIfxmjlhfS/0+IN2IdQPlO9FkTb64PWUiLwkarfM="; 17 17 }; 18 18 19 19 sourceRoot = "source/client"; 20 20 21 - vendorHash = "sha256-3B4MYj1jlovjWGIVK233t+e/mP8eEdHHv2M3xXSHaaM="; 21 + vendorHash = "sha256-f7FPeR+us3WvwqzcSQLbkKv905CCIAAm+HNV2FFF8OY="; 22 22 23 23 subPackages = [ "cmd/trdl" ]; 24 24
+3
pkgs/tools/security/gopass/default.nix
··· 53 53 --prefix PATH : "${wrapperPath}" \ 54 54 --set GOPASS_NO_REMINDER true 55 55 ''; 56 + passthru = { 57 + inherit wrapperPath; 58 + }; 56 59 57 60 meta = with lib; { 58 61 description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
+1 -1
pkgs/tools/security/gopass/jsonapi.nix
··· 29 29 30 30 postFixup = '' 31 31 wrapProgram $out/bin/gopass-jsonapi \ 32 - --prefix PATH : "${lib.makeBinPath [ gopass ]}" 32 + --prefix PATH : "${gopass.wrapperPath}" 33 33 ''; 34 34 35 35 meta = with lib; {
+17 -10
pkgs/top-level/all-packages.nix
··· 22484 22484 # Default libGLU 22485 22485 libGLU = mesa_glu; 22486 22486 22487 - mesa = callPackage ../development/libraries/mesa { 22488 - llvmPackages = llvmPackages_15; 22489 - stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 22487 + # When a new patch is out, add a new mesa attribute with the exact patch version 22488 + # Remove old mesa attributes when they're unused. 22489 + # Try to keep the previous version around for a bit in case there are new bugs. 22490 + mesa_22_3_7 = darwin.apple_sdk_11_0.callPackage ../development/libraries/mesa/22.3.7.nix { 22490 22491 inherit (darwin.apple_sdk_11_0.frameworks) OpenGL; 22491 22492 inherit (darwin.apple_sdk_11_0.libs) Xplugin; 22492 22493 }; 22494 + mesa_23_0_1 = darwin.apple_sdk_11_0.callPackage ../development/libraries/mesa/23.0.1.nix { 22495 + inherit (darwin.apple_sdk_11_0.frameworks) OpenGL; 22496 + inherit (darwin.apple_sdk_11_0.libs) Xplugin; 22497 + }; 22498 + # Bump this immediately on patches; wait a bit for minor versions 22499 + mesa_22 = mesa_22_3_7; 22500 + mesa_23 = mesa_23_0_1; 22501 + # Bump on staging only, tonnes of packages depend on it. 22502 + # See https://github.com/NixOS/nixpkgs/issues/218232 22503 + # Major versions should be bumped when they have proven to be reasonably stable 22504 + mesa = mesa_22_3_7; 22493 22505 22494 22506 mesa_glu = callPackage ../development/libraries/mesa-glu { 22495 22507 inherit (darwin.apple_sdk.frameworks) ApplicationServices; ··· 23072 23084 protobuf3_20 = callPackage ../development/libraries/protobuf/3.20.nix { }; 23073 23085 protobuf3_19 = callPackage ../development/libraries/protobuf/3.19.nix { }; 23074 23086 protobuf3_17 = callPackage ../development/libraries/protobuf/3.17.nix { }; 23075 - protobuf3_8 = callPackage ../development/libraries/protobuf/3.8.nix { }; 23076 23087 23077 23088 protobufc = callPackage ../development/libraries/protobufc { }; 23078 23089 ··· 28904 28915 28905 28916 bombadillo = callPackage ../applications/networking/browsers/bombadillo { }; 28906 28917 28907 - bombono = callPackage ../applications/video/bombono { 28908 - scons = sconsPackages.scons_4_1_0; 28909 - }; 28918 + bombono = callPackage ../applications/video/bombono { }; 28910 28919 28911 28920 bonzomatic = callPackage ../applications/editors/bonzomatic { }; 28912 28921 ··· 35541 35550 35542 35551 dwarf-therapist = dwarf-fortress-packages.dwarf-therapist; 35543 35552 35544 - dxx-rebirth = callPackage ../games/dxx-rebirth { 35545 - scons = sconsPackages.scons_4_1_0; 35546 - }; 35553 + dxx-rebirth = callPackage ../games/dxx-rebirth { }; 35547 35554 35548 35555 inherit (callPackages ../games/dxx-rebirth/assets.nix { }) 35549 35556 descent1-assets
+7
pkgs/top-level/perl-packages.nix
··· 1180 1180 hash = "sha256-tfr0fj+UikUoEGzLiMxxBIz+WY5bAmpEQ2i8fjk0gGc="; 1181 1181 }; 1182 1182 propagatedBuildInputs = [ ClassAccessor CryptPasswdMD5 DigestSHA1 IOLockedFile ]; 1183 + # Remove test files that fail after DES support was removed from crypt() 1184 + postPatch = '' 1185 + rm t/04core.t t/05edit.t 1186 + ''; 1183 1187 meta = { 1184 1188 description = "Interface to read and modify Apache .htpasswd files"; 1185 1189 license = with lib.licenses; [ artistic1 gpl1Plus ]; ··· 2252 2256 }; 2253 2257 buildInputs = [ ModuleBuildTiny TestLongString TestSimple13 TestWWWMechanize TestWWWMechanizeCatalyst ]; 2254 2258 propagatedBuildInputs = [ AuthenHtpasswd CatalystPluginAuthentication ]; 2259 + patches = [ 2260 + ../development/perl-modules/CatalystAuthenticationStoreHtpasswd-test-replace-DES-hash-with-bcrypt.patch 2261 + ]; 2255 2262 meta = { 2256 2263 description = "Authen::Htpasswd based user storage/authentication"; 2257 2264 license = with lib.licenses; [ artistic1 gpl1Plus ];