Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 9d21bcb0 b232662c

+200 -150
+2 -2
pkgs/applications/emulators/retroarch/default.nix
··· 47 47 in 48 48 stdenv.mkDerivation rec { 49 49 pname = "retroarch-bare"; 50 - version = "1.17.0"; 50 + version = "1.18.0"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "libretro"; 54 54 repo = "RetroArch"; 55 - hash = "sha256-8Y8ZYZFNK7zk0bQRiWwoQbu6q3r25bN3EvLOA3kIxdU="; 55 + hash = "sha256-uOnFkLrLQlBbUlIFA8wrOkQdVIvO7Np7fvi+sPJPtHE="; 56 56 rev = "v${version}"; 57 57 }; 58 58
+2 -2
pkgs/applications/emulators/retroarch/libretro-core-info.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "libretro-core-info"; 9 - version = "1.17.0"; 9 + version = "1.18.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "libretro"; 13 13 repo = "libretro-core-info"; 14 14 rev = "v${version}"; 15 - hash = "sha256-iJteyqD7hUtBxj+Y2nQZXDJVM4k+TDIKLaLP3IFDOGo="; 15 + hash = "sha256-tIuDDueYocvRDbA8CTR5ubGI7/Up02zUENw/HaDwC0U="; 16 16 }; 17 17 18 18 makeFlags = [
+3 -3
pkgs/applications/emulators/wine/sources.nix
··· 69 69 70 70 unstable = fetchurl rec { 71 71 # NOTE: Don't forget to change the hash for staging as well. 72 - version = "9.4"; 72 + version = "9.5"; 73 73 url = "https://dl.winehq.org/wine/source/9.x/wine-${version}.tar.xz"; 74 - hash = "sha256-xV/5lXYSVJuMfffN3HnXoA0ZFX0Fs3EUi/CNTd92jsY="; 74 + hash = "sha256-Es8vtwmBNOI1HEnqO6j02ipnTx+HIr69TDpKbKbS6XU="; 75 75 inherit (stable) patches; 76 76 77 77 ## see http://wiki.winehq.org/Gecko ··· 117 117 staging = fetchFromGitLab rec { 118 118 # https://gitlab.winehq.org/wine/wine-staging 119 119 inherit (unstable) version; 120 - hash = "sha256-wij0CeAL6V8dH4nRS+UVKZMBJlSNgzr9tG1860WSbrU="; 120 + hash = "sha256-Jxhtd/rG5x8wENO1dVUby/DjRLKPpPTYviowPQu2qK4="; 121 121 domain = "gitlab.winehq.org"; 122 122 owner = "wine"; 123 123 repo = "wine-staging";
+3 -3
pkgs/applications/networking/cluster/werf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "werf"; 13 - version = "1.2.297"; 13 + version = "1.2.300"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "werf"; 17 17 repo = "werf"; 18 18 rev = "v${version}"; 19 - hash = "sha256-AFuEpMSsfwjqoiLCiSyXecIe/UA72BEHs+kUaUtZU2U="; 19 + hash = "sha256-DWSjdgLjVJHlcXa6QV2KzASFQkCpUDSrtYpx/oa+Ff4="; 20 20 }; 21 21 22 - vendorHash = "sha256-mOHrNXaLnTt0WRVJI8GD48pxLvbSa6oWoxa4YFaIA6Y="; 22 + vendorHash = "sha256-o/s3JZe/lO6smCXVs0ZzOTqGt7ikgTsC4Wo2O9fALe8="; 23 23 24 24 proxyVendor = true; 25 25
+14
pkgs/applications/version-management/git-branchless/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , git 4 5 , libiconv 5 6 , ncurses ··· 22 23 rev = "v${version}"; 23 24 hash = "sha256-ev56NzrEF7xm3WmR2a0pHPs69Lvmb4He7+kIBYiJjKY="; 24 25 }; 26 + 27 + patches = [ 28 + # Fix tests with Git 2.44.0+ 29 + (fetchpatch { 30 + url = "https://github.com/arxanas/git-branchless/pull/1245.patch"; 31 + hash = "sha256-gBm0A478Uhg9IQVLQppvIeTa8s1yHUMddxiUbpHUvGw="; 32 + }) 33 + # Fix tests with Git 2.44.0+ 34 + (fetchpatch { 35 + url = "https://github.com/arxanas/git-branchless/pull/1161.patch"; 36 + hash = "sha256-KHobEIXhlDar8CvIVUi4I695jcJZXgGRhU86b99x86Y="; 37 + }) 38 + ]; 25 39 26 40 cargoHash = "sha256-Ppw5TN/6zMNxFAx90Q9hQ7RdGxV+TT8UlOm68ldK8oc="; 27 41
+3
pkgs/applications/video/mplayer/default.nix
··· 176 176 echo CONFIG_MPEGAUDIODSP=yes >> config.mak 177 177 ''; 178 178 179 + # Fixes compilation with newer versions of clang that make these warnings errors by default. 180 + NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-int-conversion -Wno-incompatible-function-pointer-types"; 181 + 179 182 NIX_LDFLAGS = with lib; toString ( 180 183 optional fontconfigSupport "-lfontconfig" 181 184 ++ optional fribidiSupport "-lfribidi"
+1 -3
pkgs/by-name/ch/ch341eeprom/package.nix
··· 17 17 18 18 buildInputs = [ libusb1 ]; 19 19 20 - dontConfigure = true; 21 - 22 20 makeFlags = [ 23 21 "CC=${stdenv.cc.targetPrefix}cc" 24 22 ]; ··· 32 30 meta = with lib; { 33 31 description = "A libusb based programming tool for 24Cxx serial EEPROMs using the WinChipHead CH341A IC"; 34 32 homepage = "https://github.com/command-tab/ch341eeprom"; 35 - license = licenses.gpl3; 33 + license = licenses.gpl3Plus; 36 34 platforms = platforms.darwin ++ platforms.linux; 37 35 mainProgram = "ch341eeprom"; 38 36 maintainers = with maintainers; [ xokdvium ];
+31 -31
pkgs/by-name/pe/pest/composer.lock
··· 4 4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 5 "This file is @generated automatically" 6 6 ], 7 - "content-hash": "3334c385a76e74a9e5a3cc6af8daed8e", 7 + "content-hash": "a5966cfeff59a5290fd936057af38991", 8 8 "packages": [ 9 9 { 10 10 "name": "brianium/paratest", ··· 1069 1069 }, 1070 1070 { 1071 1071 "name": "phpstan/phpdoc-parser", 1072 - "version": "1.26.0", 1072 + "version": "1.27.0", 1073 1073 "source": { 1074 1074 "type": "git", 1075 1075 "url": "https://github.com/phpstan/phpdoc-parser.git", 1076 - "reference": "231e3186624c03d7e7c890ec662b81e6b0405227" 1076 + "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757" 1077 1077 }, 1078 1078 "dist": { 1079 1079 "type": "zip", 1080 - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/231e3186624c03d7e7c890ec662b81e6b0405227", 1081 - "reference": "231e3186624c03d7e7c890ec662b81e6b0405227", 1080 + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/86e4d5a4b036f8f0be1464522f4c6b584c452757", 1081 + "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757", 1082 1082 "shasum": "" 1083 1083 }, 1084 1084 "require": { ··· 1110 1110 "description": "PHPDoc parser with support for nullable, intersection and generic types", 1111 1111 "support": { 1112 1112 "issues": "https://github.com/phpstan/phpdoc-parser/issues", 1113 - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.26.0" 1113 + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.27.0" 1114 1114 }, 1115 - "time": "2024-02-23T16:05:55+00:00" 1115 + "time": "2024-03-21T13:14:53+00:00" 1116 1116 }, 1117 1117 { 1118 1118 "name": "phpunit/php-code-coverage", ··· 1437 1437 }, 1438 1438 { 1439 1439 "name": "phpunit/phpunit", 1440 - "version": "10.5.13", 1440 + "version": "10.5.15", 1441 1441 "source": { 1442 1442 "type": "git", 1443 1443 "url": "https://github.com/sebastianbergmann/phpunit.git", 1444 - "reference": "20a63fc1c6db29b15da3bd02d4b6cf59900088a7" 1444 + "reference": "86376e05e8745ed81d88232ff92fee868247b07b" 1445 1445 }, 1446 1446 "dist": { 1447 1447 "type": "zip", 1448 - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/20a63fc1c6db29b15da3bd02d4b6cf59900088a7", 1449 - "reference": "20a63fc1c6db29b15da3bd02d4b6cf59900088a7", 1448 + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86376e05e8745ed81d88232ff92fee868247b07b", 1449 + "reference": "86376e05e8745ed81d88232ff92fee868247b07b", 1450 1450 "shasum": "" 1451 1451 }, 1452 1452 "require": { ··· 1518 1518 "support": { 1519 1519 "issues": "https://github.com/sebastianbergmann/phpunit/issues", 1520 1520 "security": "https://github.com/sebastianbergmann/phpunit/security/policy", 1521 - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.13" 1521 + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.15" 1522 1522 }, 1523 1523 "funding": [ 1524 1524 { ··· 1534 1534 "type": "tidelift" 1535 1535 } 1536 1536 ], 1537 - "time": "2024-03-12T15:37:41+00:00" 1537 + "time": "2024-03-22T04:17:47+00:00" 1538 1538 }, 1539 1539 { 1540 1540 "name": "psr/container", ··· 2011 2011 }, 2012 2012 { 2013 2013 "name": "sebastian/environment", 2014 - "version": "6.0.1", 2014 + "version": "6.1.0", 2015 2015 "source": { 2016 2016 "type": "git", 2017 2017 "url": "https://github.com/sebastianbergmann/environment.git", 2018 - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" 2018 + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" 2019 2019 }, 2020 2020 "dist": { 2021 2021 "type": "zip", 2022 - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", 2023 - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", 2022 + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", 2023 + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", 2024 2024 "shasum": "" 2025 2025 }, 2026 2026 "require": { ··· 2035 2035 "type": "library", 2036 2036 "extra": { 2037 2037 "branch-alias": { 2038 - "dev-main": "6.0-dev" 2038 + "dev-main": "6.1-dev" 2039 2039 } 2040 2040 }, 2041 2041 "autoload": { ··· 2063 2063 "support": { 2064 2064 "issues": "https://github.com/sebastianbergmann/environment/issues", 2065 2065 "security": "https://github.com/sebastianbergmann/environment/security/policy", 2066 - "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" 2066 + "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0" 2067 2067 }, 2068 2068 "funding": [ 2069 2069 { ··· 2071 2071 "type": "github" 2072 2072 } 2073 2073 ], 2074 - "time": "2023-04-11T05:39:26+00:00" 2074 + "time": "2024-03-23T08:47:14+00:00" 2075 2075 }, 2076 2076 { 2077 2077 "name": "sebastian/exporter", ··· 3787 3787 }, 3788 3788 { 3789 3789 "name": "phpstan/phpstan", 3790 - "version": "1.10.62", 3790 + "version": "1.10.65", 3791 3791 "source": { 3792 3792 "type": "git", 3793 3793 "url": "https://github.com/phpstan/phpstan.git", 3794 - "reference": "cd5c8a1660ed3540b211407c77abf4af193a6af9" 3794 + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6" 3795 3795 }, 3796 3796 "dist": { 3797 3797 "type": "zip", 3798 - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/cd5c8a1660ed3540b211407c77abf4af193a6af9", 3799 - "reference": "cd5c8a1660ed3540b211407c77abf4af193a6af9", 3798 + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3c657d057a0b7ecae19cb12db446bbc99d8839c6", 3799 + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6", 3800 3800 "shasum": "" 3801 3801 }, 3802 3802 "require": { ··· 3845 3845 "type": "tidelift" 3846 3846 } 3847 3847 ], 3848 - "time": "2024-03-13T12:27:20+00:00" 3848 + "time": "2024-03-23T10:30:26+00:00" 3849 3849 }, 3850 3850 { 3851 3851 "name": "phpstan/phpstan-strict-rules", ··· 4220 4220 }, 4221 4221 { 4222 4222 "name": "tomasvotruba/type-coverage", 4223 - "version": "0.2.4", 4223 + "version": "0.2.5", 4224 4224 "source": { 4225 4225 "type": "git", 4226 4226 "url": "https://github.com/TomasVotruba/type-coverage.git", 4227 - "reference": "47f75151c3b3c4e040e0c68d9bba47597bf5ad6f" 4227 + "reference": "3d463bc8a894d425eab837cb0f49d2c605068740" 4228 4228 }, 4229 4229 "dist": { 4230 4230 "type": "zip", 4231 - "url": "https://api.github.com/repos/TomasVotruba/type-coverage/zipball/47f75151c3b3c4e040e0c68d9bba47597bf5ad6f", 4232 - "reference": "47f75151c3b3c4e040e0c68d9bba47597bf5ad6f", 4231 + "url": "https://api.github.com/repos/TomasVotruba/type-coverage/zipball/3d463bc8a894d425eab837cb0f49d2c605068740", 4232 + "reference": "3d463bc8a894d425eab837cb0f49d2c605068740", 4233 4233 "shasum": "" 4234 4234 }, 4235 4235 "require": { ··· 4261 4261 ], 4262 4262 "support": { 4263 4263 "issues": "https://github.com/TomasVotruba/type-coverage/issues", 4264 - "source": "https://github.com/TomasVotruba/type-coverage/tree/0.2.4" 4264 + "source": "https://github.com/TomasVotruba/type-coverage/tree/0.2.5" 4265 4265 }, 4266 4266 "funding": [ 4267 4267 { ··· 4273 4273 "type": "github" 4274 4274 } 4275 4275 ], 4276 - "time": "2024-03-15T11:34:50+00:00" 4276 + "time": "2024-03-16T10:07:54+00:00" 4277 4277 } 4278 4278 ], 4279 4279 "aliases": [],
+3 -3
pkgs/by-name/pe/pest/package.nix
··· 2 2 3 3 php.buildComposerProject (finalAttrs: { 4 4 pname = "pest"; 5 - version = "2.34.4"; 5 + version = "2.34.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pestphp"; 9 9 repo = "pest"; 10 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-/Ygm/jb08t+0EG4KHM2utAavka28VzmjVU/uXODMFvI="; 11 + hash = "sha256-rRXRtcjQUCx8R5sGRBUwlKtog6jQ1WaOu225npM6Ct8="; 12 12 }; 13 13 14 14 composerLock = ./composer.lock; 15 15 16 - vendorHash = "sha256-RDTmNfXD8Lk50i7dY09JNUgg8hcEM0dtwJnh8UpHgQ4="; 16 + vendorHash = "sha256-skNf6bUyGUN/F9Ffpz325napOmPINYk1TyUyYqWmwRM="; 17 17 18 18 meta = { 19 19 changelog = "https://github.com/pestphp/pest/releases/tag/v${finalAttrs.version}";
+55 -59
pkgs/by-name/pr/prettypst/Cargo.lock
··· 24 24 25 25 [[package]] 26 26 name = "anstyle-parse" 27 - version = "0.2.2" 27 + version = "0.2.3" 28 28 source = "registry+https://github.com/rust-lang/crates.io-index" 29 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 29 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 30 30 dependencies = [ 31 31 "utf8parse", 32 32 ] 33 33 34 34 [[package]] 35 35 name = "anstyle-query" 36 - version = "1.0.0" 36 + version = "1.0.1" 37 37 source = "registry+https://github.com/rust-lang/crates.io-index" 38 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 38 + checksum = "a3a318f1f38d2418400f8209655bfd825785afd25aa30bb7ba6cc792e4596748" 39 39 dependencies = [ 40 40 "windows-sys", 41 41 ] 42 42 43 43 [[package]] 44 44 name = "anstyle-wincon" 45 - version = "3.0.1" 45 + version = "3.0.2" 46 46 source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 47 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 48 48 dependencies = [ 49 49 "anstyle", 50 50 "windows-sys", ··· 52 52 53 53 [[package]] 54 54 name = "clap" 55 - version = "4.4.8" 55 + version = "4.4.11" 56 56 source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 57 + checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" 58 58 dependencies = [ 59 59 "clap_builder", 60 60 "clap_derive", ··· 62 62 63 63 [[package]] 64 64 name = "clap_builder" 65 - version = "4.4.8" 65 + version = "4.4.11" 66 66 source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 67 + checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" 68 68 dependencies = [ 69 69 "anstream", 70 70 "anstyle", ··· 81 81 "heck", 82 82 "proc-macro2", 83 83 "quote", 84 - "syn 2.0.39", 84 + "syn", 85 85 ] 86 86 87 87 [[package]] ··· 98 98 99 99 [[package]] 100 100 name = "comemo" 101 - version = "0.3.0" 101 + version = "0.3.1" 102 102 source = "registry+https://github.com/rust-lang/crates.io-index" 103 - checksum = "28a097f142aeb5b03af73595536cd55f5d649fca4d656379aac86b3af133cf92" 103 + checksum = "bf5705468fa80602ee6a5f9318306e6c428bffd53e43209a78bc05e6e667c6f4" 104 104 dependencies = [ 105 105 "comemo-macros", 106 106 "siphasher", ··· 108 108 109 109 [[package]] 110 110 name = "comemo-macros" 111 - version = "0.3.0" 111 + version = "0.3.1" 112 112 source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "168cc09917f6a014a4cf6ed166d1b541a20a768c60f9cc348f25203ee8312940" 113 + checksum = "54af6ac68ada2d161fa9cc1ab52676228e340866d094d6542107e74b82acc095" 114 114 dependencies = [ 115 115 "proc-macro2", 116 116 "quote", 117 - "syn 1.0.109", 117 + "syn", 118 118 ] 119 119 120 120 [[package]] ··· 134 134 135 135 [[package]] 136 136 name = "hashbrown" 137 - version = "0.14.2" 137 + version = "0.14.3" 138 138 source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 139 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 140 140 141 141 [[package]] 142 142 name = "heck" ··· 174 174 175 175 [[package]] 176 176 name = "prettypst" 177 - version = "1.0.0" 177 + version = "1.1.0" 178 178 dependencies = [ 179 179 "clap", 180 180 "serde", ··· 185 185 186 186 [[package]] 187 187 name = "proc-macro2" 188 - version = "1.0.69" 188 + version = "1.0.70" 189 189 source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 190 + checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 191 191 dependencies = [ 192 192 "unicode-ident", 193 193 ] ··· 218 218 dependencies = [ 219 219 "proc-macro2", 220 220 "quote", 221 - "syn 2.0.39", 221 + "syn", 222 222 ] 223 223 224 224 [[package]] ··· 232 232 233 233 [[package]] 234 234 name = "siphasher" 235 - version = "0.3.11" 235 + version = "1.0.0" 236 236 source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 237 + checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" 238 238 239 239 [[package]] 240 240 name = "strsim" ··· 244 244 245 245 [[package]] 246 246 name = "syn" 247 - version = "1.0.109" 248 - source = "registry+https://github.com/rust-lang/crates.io-index" 249 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 250 - dependencies = [ 251 - "proc-macro2", 252 - "quote", 253 - "unicode-ident", 254 - ] 255 - 256 - [[package]] 257 - name = "syn" 258 247 version = "2.0.39" 259 248 source = "registry+https://github.com/rust-lang/crates.io-index" 260 249 checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" ··· 281 270 dependencies = [ 282 271 "proc-macro2", 283 272 "quote", 284 - "syn 2.0.39", 273 + "syn", 285 274 ] 286 275 287 276 [[package]] ··· 337 326 dependencies = [ 338 327 "proc-macro2", 339 328 "quote", 340 - "syn 2.0.39", 329 + "syn", 341 330 ] 342 331 343 332 [[package]] ··· 351 340 352 341 [[package]] 353 342 name = "typst-syntax" 354 - version = "0.9.0" 355 - source = "git+https://github.com/typst/typst.git?tag=v0.9.0#7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab" 343 + version = "0.10.0" 344 + source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 356 345 dependencies = [ 357 346 "comemo", 358 347 "ecow", ··· 361 350 "tracing", 362 351 "unicode-ident", 363 352 "unicode-math-class", 353 + "unicode-script", 364 354 "unicode-segmentation", 365 355 "unscanny", 366 356 ] ··· 378 368 checksum = "7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65" 379 369 380 370 [[package]] 371 + name = "unicode-script" 372 + version = "0.5.5" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc" 375 + 376 + [[package]] 381 377 name = "unicode-segmentation" 382 378 version = "1.10.1" 383 379 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 397 393 398 394 [[package]] 399 395 name = "windows-sys" 400 - version = "0.48.0" 396 + version = "0.52.0" 401 397 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 398 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 403 399 dependencies = [ 404 400 "windows-targets", 405 401 ] 406 402 407 403 [[package]] 408 404 name = "windows-targets" 409 - version = "0.48.5" 405 + version = "0.52.0" 410 406 source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 407 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 412 408 dependencies = [ 413 409 "windows_aarch64_gnullvm", 414 410 "windows_aarch64_msvc", ··· 421 417 422 418 [[package]] 423 419 name = "windows_aarch64_gnullvm" 424 - version = "0.48.5" 420 + version = "0.52.0" 425 421 source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 422 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 427 423 428 424 [[package]] 429 425 name = "windows_aarch64_msvc" 430 - version = "0.48.5" 426 + version = "0.52.0" 431 427 source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 428 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 433 429 434 430 [[package]] 435 431 name = "windows_i686_gnu" 436 - version = "0.48.5" 432 + version = "0.52.0" 437 433 source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 434 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 439 435 440 436 [[package]] 441 437 name = "windows_i686_msvc" 442 - version = "0.48.5" 438 + version = "0.52.0" 443 439 source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 440 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 445 441 446 442 [[package]] 447 443 name = "windows_x86_64_gnu" 448 - version = "0.48.5" 444 + version = "0.52.0" 449 445 source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 446 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 451 447 452 448 [[package]] 453 449 name = "windows_x86_64_gnullvm" 454 - version = "0.48.5" 450 + version = "0.52.0" 455 451 source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 452 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 457 453 458 454 [[package]] 459 455 name = "windows_x86_64_msvc" 460 - version = "0.48.5" 456 + version = "0.52.0" 461 457 source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 458 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 463 459 464 460 [[package]] 465 461 name = "winnow" 466 - version = "0.5.19" 462 + version = "0.5.25" 467 463 source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 464 + checksum = "b7e87b8dfbe3baffbe687eef2e164e32286eff31a5ee16463ce03d991643ec94" 469 465 dependencies = [ 470 466 "memchr", 471 467 ]
+6 -5
pkgs/by-name/pr/prettypst/package.nix
··· 3 3 , fetchFromGitHub 4 4 }: 5 5 6 - rustPlatform.buildRustPackage { 6 + rustPlatform.buildRustPackage rec { 7 7 pname = "prettypst"; 8 - version = "unstable-2023-11-27"; 8 + version = "unstable-2023-12-06"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "antonWetzel"; 12 12 repo = "prettypst"; 13 - rev = "0bf6aa013efa2b059d8c7dcae3441a6004b02fa1"; 14 - hash = "sha256-8rAF7tzs+0qGphmanTvx6MXhYOSG6igAMY4ZLkljRp8="; 13 + rev = "bf46317ecac4331f101b2752de5328de5981eeba"; 14 + hash = "sha256-wPayP/693BKIrHrRkx4uY0UuZRoCGPNW8LB3Z0oSBi4="; 15 15 }; 16 16 17 17 cargoLock = { 18 18 lockFile = ./Cargo.lock; 19 19 outputHashes = { 20 - "typst-syntax-0.9.0" = "sha256-LwRB/AQE8TZZyHEQ7kKB10itzEgYjg4R/k+YFqmutDc="; 20 + "typst-syntax-0.10.0" = "sha256-qiskc0G/ZdLRZjTicoKIOztRFem59TM4ki23Rl55y9s="; 21 21 }; 22 22 }; 23 23 24 24 meta = { 25 + changelog = "https://github.com/antonWetzel/prettypst/blob/${src.rev}/changelog.md"; 25 26 description = "Formatter for Typst"; 26 27 homepage = "https://github.com/antonWetzel/prettypst"; 27 28 license = lib.licenses.mit;
+2 -2
pkgs/by-name/sc/scion/package.nix
··· 1 1 { lib 2 - , buildGoModule 2 + , buildGo121Module 3 3 , fetchFromGitHub 4 4 }: 5 5 let ··· 18 18 ''; 19 19 in 20 20 21 - buildGoModule { 21 + buildGo121Module { 22 22 pname = "scion"; 23 23 24 24 inherit version;
+2 -2
pkgs/by-name/sy/symfony-cli/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "symfony-cli"; 13 - version = "5.8.13"; 13 + version = "5.8.14"; 14 14 vendorHash = "sha256-OBXurPjyB2/JCQBna+tk0p3+n8gPoNLXCppXkII3ZUc="; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "symfony-cli"; 18 18 repo = "symfony-cli"; 19 19 rev = "v${version}"; 20 - hash = "sha256-5fxvC+5XclHnPKZE0jt6fuWxa16uaxLH/PchlFQH7NI="; 20 + hash = "sha256-rwcULDbdYHZ1yFrGEGsJOZQG7Z29m0MOd79yalFIdkQ="; 21 21 }; 22 22 23 23 ldflags = [
+1
pkgs/desktops/pantheon/apps/appcenter/default.nix
··· 31 31 repo = pname; 32 32 # Add support for AppStream 1.0. 33 33 # https://github.com/elementary/appcenter/pull/2099 34 + # nixpkgs-update: no auto update 34 35 rev = "fce55d9373bfb82953191b32e276a2129ffcb8c1"; 35 36 hash = "sha256-7VYiE1RkaqN1Yg4pFUBs6k8QjoljYFDgQ9jCTLG3uyk="; 36 37 };
+3
pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix
··· 96 96 src = fetchFromGitHub { 97 97 owner = "elementary"; 98 98 repo = "session-settings"; 99 + # For systemd managed gnome-session support. 100 + # https://github.com/NixOS/nixpkgs/issues/228946 101 + # nixpkgs-update: no auto update 99 102 rev = "3476c89bbb66564a72c6495ac0c61f8f9ed7a3ec"; 100 103 sha256 = "sha256-Z1qW6m0XDkB92ZZVKx98JOMXiBDbGpQ0cAXgWdqK27c="; 101 104 };
+3 -3
pkgs/development/php-packages/phpstan/default.nix
··· 2 2 3 3 php.buildComposerProject (finalAttrs: { 4 4 pname = "phpstan"; 5 - version = "1.10.62"; 5 + version = "1.10.65"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "phpstan"; 9 9 repo = "phpstan-src"; 10 10 rev = finalAttrs.version; 11 - hash = "sha256-G/8h5xS2DyGuavVaqkO1Q+M/FoSH7qgTfVddoxIsyqU="; 11 + hash = "sha256-mKNix5TEnr0aUHxn9cYvFafU7yLhTe8AVkHZcu0/a1M="; 12 12 }; 13 13 14 - vendorHash = "sha256-QEsslE+5KcUNLmk2vlrd+j/dFgEHXqsoESGoQ34IAnM="; 14 + vendorHash = "sha256-NezEoraSomeeMbY7qz2pH2EwLr/VXO1tmWJ5/2fS/qU="; 15 15 composerStrictValidation = false; 16 16 17 17 meta = {
+22 -13
pkgs/development/python-modules/exchangelib/default.nix
··· 5 5 , defusedxml 6 6 , dnspython 7 7 , fetchFromGitHub 8 - , fetchpatch 9 8 , flake8 10 9 , isodate 11 10 , lxml ··· 18 17 , pyyaml 19 18 , requests 20 19 , requests-ntlm 20 + , requests-gssapi 21 21 , requests-oauthlib 22 22 , requests-kerberos 23 23 , requests-mock 24 + , setuptools 24 25 , tzdata 25 26 , tzlocal 26 27 }: 27 28 28 29 buildPythonPackage rec { 29 30 pname = "exchangelib"; 30 - version = "5.1.0"; 31 - format = "setuptools"; 31 + version = "5.2.0"; 32 + pyproject = true; 32 33 33 34 disabled = pythonOlder "3.7"; 34 35 35 36 src = fetchFromGitHub { 36 37 owner = "ecederstrand"; 37 - repo = pname; 38 + repo = "exchangelib"; 38 39 rev = "refs/tags/v${version}"; 39 - hash = "sha256-WKQgfmEbil55WO3tWVq4n9wiJNw0Op/jbI7xt5vtKpA="; 40 + hash = "sha256-q45aYVyp75PUiqYSMSvSFMy3vaclv93QVkjKWVrxWc4="; 40 41 }; 41 42 42 - patches = [ 43 - (fetchpatch { 44 - name = "tests-timezones-2.patch"; 45 - url = "https://github.com/ecederstrand/exchangelib/commit/419eafcd9261bfd0617823ee437204d5556a8271.diff"; 46 - excludes = [ "tests/test_ewsdatetime.py" ]; 47 - hash = "sha256-dSp6NkNT5dHOg8XgDi8sR3t3hq46sNtPjUXva2YfFSU="; 48 - }) 43 + build-system = [ 44 + setuptools 49 45 ]; 50 46 51 - propagatedBuildInputs = [ 47 + dependencies = [ 52 48 cached-property 53 49 defusedxml 54 50 dnspython ··· 65 61 ] ++ lib.optionals (pythonOlder "3.9") [ 66 62 backports-zoneinfo 67 63 ]; 64 + 65 + passthru.optional-dependencies = { 66 + complete = [ 67 + requests-gssapi 68 + # requests-negotiate-sspi 69 + ]; 70 + kerberos = [ 71 + requests-gssapi 72 + ]; 73 + # sspi = [ 74 + # requests-negotiate-sspi 75 + # ]; 76 + }; 68 77 69 78 nativeCheckInputs = [ 70 79 flake8
+2 -2
pkgs/development/python-modules/jc/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "jc"; 16 - version = "1.25.1"; 16 + version = "1.25.2"; 17 17 format = "setuptools"; 18 18 disabled = pythonOlder "3.6"; 19 19 ··· 21 21 owner = "kellyjonbrazil"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-A9bmnamoRwDG/HFDjdBvnfGB+XqpAdLVnHeHtSf07zg="; 24 + hash = "sha256-SDZ92m4TVH5/ldGkVZspzIrR0G1vHOv1OvAOSaWYkZ0="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ];
+2 -2
pkgs/development/python-modules/requests-gssapi/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "requests-gssapi"; 13 - version = "1.2.3"; 13 + version = "1.3.0"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-IHhFCJgUAfcVPJM+7QlTOJM6QIGNplolnb8tgNzLFQ4="; 20 + hash = "sha256-TVK/jCqiqCkTDvzKhcFJQ/3QqnVFWquYWyuHJhWcIMo="; 21 21 }; 22 22 23 23 build-system = [
+3 -3
pkgs/development/tools/yq-go/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "yq-go"; 5 - version = "4.42.1"; 5 + version = "4.43.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mikefarah"; 9 9 repo = "yq"; 10 10 rev = "v${version}"; 11 - hash = "sha256-IBEW+IiDymquBhc+nsaYHM59uhBR3o6nt62undeprdY="; 11 + hash = "sha256-AQOHVuDREp6OpwlPFwpCUOQACOsDRH0uM6WwKyEK4JI="; 12 12 }; 13 13 14 - vendorHash = "sha256-Sdml4C6fTp7dnEy4a+GqwoJoGyO1TLCiJlNf5Yoy5cg="; 14 + vendorHash = "sha256-9GCqZS0fguJo8GkVPMgbstEVzrjIS0kdbNQEaT1HSFI="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/games/path-of-building/default.nix
··· 2 2 let 3 3 data = stdenv.mkDerivation(finalAttrs: { 4 4 pname = "path-of-building-data"; 5 - version = "2.39.3"; 5 + version = "2.40.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "PathOfBuildingCommunity"; 9 9 repo = "PathOfBuilding"; 10 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-W4MmncDfeiuN7VeIeoPHEufTb9ncA3aA8F0JNhI9Z/o="; 11 + hash = "sha256-ZrnD3KX8pn14sKB3FzhNhxHChAKA5pHkWdn7576XjwE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ unzip ];
+13 -8
pkgs/os-specific/linux/kernel/common-config.nix
··· 55 55 DYNAMIC_DEBUG = yes; 56 56 DEBUG_STACK_USAGE = no; 57 57 RCU_TORTURE_TEST = no; 58 - SCHEDSTATS = no; 58 + SCHEDSTATS = yes; 59 59 DETECT_HUNG_TASK = yes; 60 60 CRASH_DUMP = option no; 61 61 # Easier debugging of NFS issues. ··· 392 392 FRAMEBUFFER_CONSOLE_ROTATION = yes; 393 393 FRAMEBUFFER_CONSOLE_DETECT_PRIMARY = yes; 394 394 FB_GEODE = mkIf (stdenv.hostPlatform.system == "i686-linux") yes; 395 - # On 5.14 this conflicts with FB_SIMPLE. 396 - DRM_SIMPLEDRM = whenAtLeast "5.14" no; 395 + # Use simplefb on older kernels where we don't have simpledrm (enabled below) 396 + FB_SIMPLE = whenOlder "5.15" yes; 397 397 DRM_FBDEV_EMULATION = yes; 398 398 }; 399 399 ··· 409 409 video = let 410 410 whenHasDevicePrivate = mkIf (!stdenv.isx86_32 && versionAtLeast version "5.1"); 411 411 in { 412 + # compile in DRM so simpledrm can load before initrd if necessary 413 + AGP = yes; 414 + DRM = yes; 415 + 412 416 DRM_LEGACY = whenOlder "6.8" no; 413 417 414 418 NOUVEAU_LEGACY_CTX_SUPPORT = whenBetween "5.2" "6.3" no; 419 + 420 + # Enable simpledrm and use it for generic framebuffer 421 + # Technically added in 5.14, but adding more complex configuration is not worth it 422 + DRM_SIMPLEDRM = whenAtLeast "5.15" yes; 423 + SYSFB_SIMPLEFB = whenAtLeast "5.15" yes; 415 424 416 425 # Allow specifying custom EDID on the kernel command line 417 426 DRM_LOAD_EDID_FIRMWARE = yes; ··· 450 459 DRM_NOUVEAU_SVM = whenHasDevicePrivate yes; 451 460 452 461 # Enable HDMI-CEC receiver support 462 + RC_CORE = yes; 453 463 MEDIA_CEC_RC = whenAtLeast "5.10" yes; 454 464 455 465 # Enable CEC over DisplayPort ··· 1176 1186 # Add debug interfaces for CMA 1177 1187 CMA_DEBUGFS = yes; 1178 1188 CMA_SYSFS = yes; 1179 - 1180 - # Many ARM SBCs hand off a pre-configured framebuffer. 1181 - # This always can can be replaced by the actual native driver. 1182 - # Keeping it a built-in ensures it will be used if possible. 1183 - FB_SIMPLE = yes; 1184 1189 1185 1190 # https://docs.kernel.org/arch/arm/mem_alignment.html 1186 1191 # tldr:
+2 -1
pkgs/tools/misc/ollama/default.nix
··· 165 165 # expose runtime libraries necessary to use the gpu 166 166 mv "$out/bin/ollama" "$out/bin/.ollama-unwrapped" 167 167 makeWrapper "$out/bin/.ollama-unwrapped" "$out/bin/ollama" \ 168 - --suffix LD_LIBRARY_PATH : '/run/opengl-driver/lib:${lib.makeLibraryPath runtimeLibs}' 168 + --suffix LD_LIBRARY_PATH : '/run/opengl-driver/lib:${lib.makeLibraryPath runtimeLibs}' '' + lib.optionalString enableRocm ''\ 169 + --set-default HIP_PATH ${pkgs.rocmPackages.meta.rocm-hip-libraries} 169 170 ''; 170 171 171 172 ldflags = [
+5
pkgs/tools/security/fprintd/default.nix
··· 92 92 93 93 doCheck = true; 94 94 95 + mesonCheckFlags = [ 96 + # PAM related checks are timing out 97 + "--no-suite" "fprintd:TestPamFprintd" 98 + ]; 99 + 95 100 postPatch = '' 96 101 patchShebangs \ 97 102 po/check-translations.sh \
+15 -1
pkgs/top-level/all-packages.nix
··· 32732 32732 32733 32733 libreoffice = hiPrio libreoffice-still; 32734 32734 32735 + libreoffice-qt = hiPrio libreoffice-qt-still; 32736 + 32737 + libreoffice-qt-unwrapped = libreoffice-qt.unwrapped; 32738 + 32735 32739 libreoffice-unwrapped = libreoffice.unwrapped; 32736 32740 32737 32741 libreoffice-args = { ··· 32753 32757 boost = boost179; 32754 32758 }; 32755 32759 32756 - libreoffice-qt = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 32760 + libreoffice-qt-fresh = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 32757 32761 unwrapped = libsForQt5.callPackage ../applications/office/libreoffice 32758 32762 (libreoffice-args // { 32759 32763 kdeIntegration = true; 32760 32764 variant = "fresh"; 32761 32765 }); 32762 32766 }); 32767 + libreoffice-qt-fresh-unwrapped = libreoffice-qt-fresh.unwrapped; 32768 + 32769 + libreoffice-qt-still = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 32770 + unwrapped = libsForQt5.callPackage ../applications/office/libreoffice 32771 + (libreoffice-args // { 32772 + kdeIntegration = true; 32773 + variant = "still"; 32774 + }); 32775 + }); 32776 + libreoffice-qt-still-unwrapped = libreoffice-qt-still.unwrapped; 32763 32777 32764 32778 libreoffice-fresh = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 32765 32779 unwrapped = callPackage ../applications/office/libreoffice