lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
19bc8187 fbd21c50

+154 -101
+7 -7
doc/languages-frameworks/rust.section.md
··· 254 where they are known to differ. But there are ways to customize the argument: 255 256 - To choose a different target by name, define 257 - `stdenv.hostPlatform.rustc.config` as that name (a string), and that 258 name will be used instead. 259 260 For example: ··· 262 ```nix 263 import <nixpkgs> { 264 crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // { 265 - rustc.config = "thumbv7em-none-eabi"; 266 }; 267 } 268 ``` ··· 274 ``` 275 276 - To pass a completely custom target, define 277 - `stdenv.hostPlatform.rustc.config` with its name, and 278 - `stdenv.hostPlatform.rustc.platform` with the value. The value will be 279 serialized to JSON in a file called 280 - `${stdenv.hostPlatform.rustc.config}.json`, and the path of that file 281 will be used instead. 282 283 For example: ··· 285 ```nix 286 import <nixpkgs> { 287 crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // { 288 - rustc.config = "thumb-crazy"; 289 - rustc.platform = { foo = ""; bar = ""; }; 290 }; 291 } 292 ```
··· 254 where they are known to differ. But there are ways to customize the argument: 255 256 - To choose a different target by name, define 257 + `stdenv.hostPlatform.rust.rustcTarget` as that name (a string), and that 258 name will be used instead. 259 260 For example: ··· 262 ```nix 263 import <nixpkgs> { 264 crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // { 265 + rust.rustcTarget = "thumbv7em-none-eabi"; 266 }; 267 } 268 ``` ··· 274 ``` 275 276 - To pass a completely custom target, define 277 + `stdenv.hostPlatform.rust.rustcTarget` with its name, and 278 + `stdenv.hostPlatform.rust.platform` with the value. The value will be 279 serialized to JSON in a file called 280 + `${stdenv.hostPlatform.rust.rustcTarget}.json`, and the path of that file 281 will be used instead. 282 283 For example: ··· 285 ```nix 286 import <nixpkgs> { 287 crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // { 288 + rust.rustcTarget = "thumb-crazy"; 289 + rust.platform = { foo = ""; bar = ""; }; 290 }; 291 } 292 ```
+3 -3
lib/systems/examples.nix
··· 59 60 armv7a-android-prebuilt = { 61 config = "armv7a-unknown-linux-androideabi"; 62 - rustc.config = "armv7-linux-androideabi"; 63 sdkVer = "28"; 64 ndkVer = "24"; 65 useAndroidPrebuilt = true; ··· 67 68 aarch64-android-prebuilt = { 69 config = "aarch64-unknown-linux-android"; 70 - rustc.config = "aarch64-linux-android"; 71 sdkVer = "28"; 72 ndkVer = "24"; 73 useAndroidPrebuilt = true; ··· 207 aarch64-embedded = { 208 config = "aarch64-none-elf"; 209 libc = "newlib"; 210 - rustc.config = "aarch64-unknown-none"; 211 }; 212 213 aarch64be-embedded = {
··· 59 60 armv7a-android-prebuilt = { 61 config = "armv7a-unknown-linux-androideabi"; 62 + rust.rustcTarget = "armv7-linux-androideabi"; 63 sdkVer = "28"; 64 ndkVer = "24"; 65 useAndroidPrebuilt = true; ··· 67 68 aarch64-android-prebuilt = { 69 config = "aarch64-unknown-linux-android"; 70 + rust.rustcTarget = "aarch64-linux-android"; 71 sdkVer = "28"; 72 ndkVer = "24"; 73 useAndroidPrebuilt = true; ··· 207 aarch64-embedded = { 208 config = "aarch64-none-elf"; 209 libc = "newlib"; 210 + rust.rustcTarget = "aarch64-unknown-none"; 211 }; 212 213 aarch64be-embedded = {
+4 -7
nixos/modules/services/web-apps/freshrss.nix
··· 255 { 256 description = "Set up the state directory for FreshRSS before use"; 257 wantedBy = [ "multi-user.target" ]; 258 - serviceConfig = defaultServiceConfig //{ 259 - Type = "oneshot"; 260 - User = "freshrss"; 261 - Group = "freshrss"; 262 - StateDirectory = "freshrss"; 263 - WorkingDirectory = cfg.package; 264 }; 265 environment = { 266 DATA_PATH = cfg.dataDir; 267 }; ··· 299 environment = { 300 DATA_PATH = cfg.dataDir; 301 }; 302 - serviceConfig = defaultServiceConfig //{ 303 ExecStart = "${cfg.package}/app/actualize_script.php"; 304 }; 305 };
··· 255 { 256 description = "Set up the state directory for FreshRSS before use"; 257 wantedBy = [ "multi-user.target" ]; 258 + serviceConfig = defaultServiceConfig // { 259 + RemainAfterExit = true; 260 }; 261 + restartIfChanged = true; 262 environment = { 263 DATA_PATH = cfg.dataDir; 264 }; ··· 296 environment = { 297 DATA_PATH = cfg.dataDir; 298 }; 299 + serviceConfig = defaultServiceConfig // { 300 ExecStart = "${cfg.package}/app/actualize_script.php"; 301 }; 302 };
+13
pkgs/applications/editors/vim/plugins/generated.nix
··· 17456 }; 17457 17458 17459 }
··· 17456 }; 17457 17458 17459 + nvim-genghis = buildVimPlugin { 17460 + pname = "nvim-genghis"; 17461 + version = "2024-05-21"; 17462 + src = fetchFromGitHub { 17463 + owner = "chrisgrieser"; 17464 + repo = "nvim-genghis"; 17465 + rev = "7ed82d0d0513946bbc678f326e5750c79a942351"; 17466 + sha256 = "sha256-R3YHrcpRJ8bbVctKTWQbouyCYcbKpQ2Sz6NWDOkqLYI="; 17467 + }; 17468 + meta.homepage = "https://github.com/chrisgrieser/nvim-genghis"; 17469 + }; 17470 + 17471 + 17472 }
+7
pkgs/applications/editors/vim/plugins/overrides.nix
··· 1048 nvimRequireCheck = "dapui"; 1049 }; 1050 1051 nvim-lsputils = super.nvim-lsputils.overrideAttrs { 1052 dependencies = with self; [ popfix ]; 1053 };
··· 1048 nvimRequireCheck = "dapui"; 1049 }; 1050 1051 + nvim-genghis = super.nvim-genghis.overrideAttrs { 1052 + dependencies = [ self.dressing-nvim ]; 1053 + 1054 + doInstallCheck = true; 1055 + nvimRequireCheck = "genghis"; 1056 + }; 1057 + 1058 nvim-lsputils = super.nvim-lsputils.overrideAttrs { 1059 dependencies = with self; [ popfix ]; 1060 };
+5
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 1 repo,branch,alias 2 https://github.com/euclidianAce/BetterLua.vim/,, 3 https://github.com/vim-scripts/BufOnly.vim/,, 4 https://github.com/jackMort/ChatGPT.nvim/,HEAD, ··· 131 https://github.com/asheq/close-buffers.vim/,HEAD, 132 https://github.com/Civitasv/cmake-tools.nvim/,, 133 https://github.com/winston0410/cmd-parser.nvim/,, 134 https://github.com/tzachar/cmp-ai/,HEAD, 135 https://codeberg.org/FelipeLema/cmp-async-path/,, 136 https://github.com/crispgm/cmp-beancount/,HEAD, 137 https://github.com/hrsh7th/cmp-buffer/,, 138 https://github.com/hrsh7th/cmp-calc/,, ··· 657 https://github.com/vijaymarupudi/nvim-fzf/,, 658 https://github.com/vijaymarupudi/nvim-fzf-commands/,, 659 https://github.com/sakhnik/nvim-gdb/,, 660 https://github.com/smiteshp/nvim-gps/,, 661 https://github.com/brenoprata10/nvim-highlight-colors/,HEAD, 662 https://github.com/Iron-E/nvim-highlite/,,
··· 1 repo,branch,alias 2 + https://codeberg.org/FelipeLema/cmp-async-path/,, 3 https://github.com/euclidianAce/BetterLua.vim/,, 4 https://github.com/vim-scripts/BufOnly.vim/,, 5 https://github.com/jackMort/ChatGPT.nvim/,HEAD, ··· 132 https://github.com/asheq/close-buffers.vim/,HEAD, 133 https://github.com/Civitasv/cmake-tools.nvim/,, 134 https://github.com/winston0410/cmd-parser.nvim/,, 135 + <<<<<<< HEAD 136 https://github.com/tzachar/cmp-ai/,HEAD, 137 https://codeberg.org/FelipeLema/cmp-async-path/,, 138 + ======= 139 + >>>>>>> 8c49439301ad (vimPlugins.nvim-genghis: init at 2024-05-21) 140 https://github.com/crispgm/cmp-beancount/,HEAD, 141 https://github.com/hrsh7th/cmp-buffer/,, 142 https://github.com/hrsh7th/cmp-calc/,, ··· 661 https://github.com/vijaymarupudi/nvim-fzf/,, 662 https://github.com/vijaymarupudi/nvim-fzf-commands/,, 663 https://github.com/sakhnik/nvim-gdb/,, 664 + https://github.com/chrisgrieser/nvim-genghis/,HEAD, 665 https://github.com/smiteshp/nvim-gps/,, 666 https://github.com/brenoprata10/nvim-highlight-colors/,HEAD, 667 https://github.com/Iron-E/nvim-highlite/,,
+17 -7
pkgs/applications/networking/p2p/magnetico/default.nix
··· 1 { lib 2 , fetchFromGitHub 3 , nixosTests 4 , buildGoModule 5 }: 6 7 - buildGoModule rec { 8 pname = "magnetico"; 9 version = "unstable-2022-08-10"; 10 ··· 12 owner = "ireun"; 13 repo = "magnetico"; 14 rev = "828e230d3b3c0759d3274e27f5a7b70400f4d6ea"; 15 - sha256 = "sha256-V1pBzillWTk9iuHAhFztxYaq4uLL3U3HYvedGk6ffbk="; 16 }; 17 18 - vendorHash = "sha256-ngYkTtBEZSyYYnfBHi0VrotwKGvMOiowbrwigJnjsuU="; 19 20 buildPhase = '' 21 runHook preBuild ··· 26 ''; 27 28 checkPhase = '' 29 - runHook preBuild 30 31 make test 32 33 - runHook postBuild 34 ''; 35 36 passthru.tests = { inherit (nixosTests) magnetico; }; 37 38 meta = with lib; { 39 - # Build fails with Go >=1.21, couldn't be fixed by updating module dependencies. 40 - broken = true; 41 description = "Autonomous (self-hosted) BitTorrent DHT search engine suite"; 42 homepage = "https://github.com/ireun/magnetico"; 43 license = licenses.agpl3Only;
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 , nixosTests 5 , buildGoModule 6 + , sqlite 7 }: 8 9 + buildGoModule { 10 pname = "magnetico"; 11 version = "unstable-2022-08-10"; 12 ··· 14 owner = "ireun"; 15 repo = "magnetico"; 16 rev = "828e230d3b3c0759d3274e27f5a7b70400f4d6ea"; 17 + hash = "sha256-V1pBzillWTk9iuHAhFztxYaq4uLL3U3HYvedGk6ffbk="; 18 }; 19 20 + patches = [ 21 + # https://github.com/ireun/magnetico/pull/15 22 + (fetchpatch { 23 + url = "https://github.com/ireun/magnetico/commit/90db34991aa44af9b79ab4710c638607c6211c1c.patch"; 24 + hash = "sha256-wC9lVQqfngQ5AaRgb4TtoWSgbQ2iSHeQ2UBDUyWjMK8="; 25 + }) 26 + ]; 27 + 28 + vendorHash = "sha256-JDrBXjnQAcWp8gKvnm+q1F5oV+FozKUvhHK/Me/Cyj8="; 29 + 30 + buildInputs = [ sqlite ]; 31 32 buildPhase = '' 33 runHook preBuild ··· 38 ''; 39 40 checkPhase = '' 41 + runHook preCheck 42 43 make test 44 45 + runHook postCheck 46 ''; 47 48 passthru.tests = { inherit (nixosTests) magnetico; }; 49 50 meta = with lib; { 51 description = "Autonomous (self-hosted) BitTorrent DHT search engine suite"; 52 homepage = "https://github.com/ireun/magnetico"; 53 license = licenses.agpl3Only;
+2 -2
pkgs/applications/radio/sdrangel/default.nix
··· 52 53 stdenv.mkDerivation (finalAttrs: { 54 pname = "sdrangel"; 55 - version = "7.21.1"; 56 57 src = fetchFromGitHub { 58 owner = "f4exb"; 59 repo = "sdrangel"; 60 rev = "v${finalAttrs.version}"; 61 - hash = "sha256-l80CgR8Io4HlSuUU3HWM1sInKSRH+F0N55CIWdu/tao="; 62 }; 63 64 nativeBuildInputs = [
··· 52 53 stdenv.mkDerivation (finalAttrs: { 54 pname = "sdrangel"; 55 + version = "7.21.2"; 56 57 src = fetchFromGitHub { 58 owner = "f4exb"; 59 repo = "sdrangel"; 60 rev = "v${finalAttrs.version}"; 61 + hash = "sha256-cFSD3zroKJPJk1mhXLnSDoSS6p9AU6YN2LJpb+E6HDI="; 62 }; 63 64 nativeBuildInputs = [
+2 -2
pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix
··· 17 cross = import ../../../.. { 18 system = hostPlatform.system; 19 crossSystem = lib.systems.examples."${arch}-embedded" // { 20 - rustc.config = "${arch}-unknown-none"; 21 - rustc.platform = lib.importJSON target; 22 }; 23 }; 24
··· 17 cross = import ../../../.. { 18 system = hostPlatform.system; 19 crossSystem = lib.systems.examples."${arch}-embedded" // { 20 + rust.rustcTarget = "${arch}-unknown-none"; 21 + rust.platform = lib.importJSON target; 22 }; 23 }; 24
+3 -3
pkgs/by-name/fo/forgejo/package.nix
··· 39 in 40 buildGoModule rec { 41 pname = "forgejo"; 42 - version = "7.0.3"; 43 44 src = fetchFromGitea { 45 domain = "codeberg.org"; 46 owner = "forgejo"; 47 repo = "forgejo"; 48 rev = "v${version}"; 49 - hash = "sha256-P+HVZmfNA1ao+fQ253tK8A2DNGNPxvdyzCvByQJ0FGA="; 50 }; 51 52 - vendorHash = "sha256-8qMpnGL5GXJuxOpxh9a1Bcxd7tVweUKwbun8UBxCfQA="; 53 54 subPackages = [ "." "contrib/environment-to-ini" ]; 55
··· 39 in 40 buildGoModule rec { 41 pname = "forgejo"; 42 + version = "7.0.4"; 43 44 src = fetchFromGitea { 45 domain = "codeberg.org"; 46 owner = "forgejo"; 47 repo = "forgejo"; 48 rev = "v${version}"; 49 + hash = "sha256-WtJJdqPbx5k9U+u3ZpI3q/dm3eidxdkFgc8IskaJg88="; 50 }; 51 52 + vendorHash = "sha256-TYVWou9fIVL4od2o1uOb/MRBpf2lIg/9Tem9w+ihYzU="; 53 54 subPackages = [ "." "contrib/environment-to-ini" ]; 55
+50 -32
pkgs/by-name/qu/quickemu/package.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , stdenv 4 - , makeWrapper 5 - , cdrtools 6 - , curl 7 - , gawk 8 - , gnugrep 9 - , gnused 10 - , jq 11 - , ncurses 12 - , pciutils 13 - , procps 14 - , python3 15 - , qemu 16 - , socat 17 - , spice-gtk 18 - , swtpm 19 - , usbutils 20 - , util-linux 21 - , unzip 22 - , xdg-user-dirs 23 - , xrandr 24 - , zsync 25 - , OVMF 26 - , OVMFFull 27 - , quickemu 28 - , testers 29 - , installShellFiles 30 }: 31 let 32 runtimePaths = [ ··· 52 ]; 53 in 54 55 - stdenv.mkDerivation (finalAttrs : { 56 pname = "quickemu"; 57 version = "4.9.4"; 58 ··· 72 quickemu 73 ''; 74 75 - nativeBuildInputs = [ makeWrapper installShellFiles ]; 76 77 installPhase = '' 78 runHook preInstall ··· 98 homepage = "https://github.com/quickemu-project/quickemu"; 99 mainProgram = "quickemu"; 100 license = lib.licenses.mit; 101 - maintainers = with lib.maintainers; [ fedx-sudo flexiondotorg ]; 102 }; 103 })
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + stdenv, 5 + makeWrapper, 6 + cdrtools, 7 + curl, 8 + gawk, 9 + gnugrep, 10 + gnused, 11 + jq, 12 + ncurses, 13 + pciutils, 14 + procps, 15 + python3, 16 + qemu, 17 + socat, 18 + spice-gtk, 19 + swtpm, 20 + usbutils, 21 + util-linux, 22 + unzip, 23 + xdg-user-dirs, 24 + xrandr, 25 + zsync, 26 + OVMF, 27 + OVMFFull, 28 + quickemu, 29 + testers, 30 + installShellFiles, 31 + fetchpatch2, 32 }: 33 let 34 runtimePaths = [ ··· 54 ]; 55 in 56 57 + stdenv.mkDerivation (finalAttrs: { 58 pname = "quickemu"; 59 version = "4.9.4"; 60 ··· 74 quickemu 75 ''; 76 77 + patches = [ 78 + # reduces windows vm ram requirements to 4G, to match microsoft recommendations 79 + # TODO: remove on next release 80 + (fetchpatch2 { 81 + name = "decrease-windows-ram-requirements.patch"; 82 + url = "https://github.com/quickemu-project/quickemu/commit/f51697593a4650c5486661292e2febe1d16f8c71.patch"; 83 + hash = "sha256-J5hIvQGtkufOcjk2FZN65iox/W2zkLlg+Veg9TF11Fs="; 84 + }) 85 + ]; 86 + 87 + nativeBuildInputs = [ 88 + makeWrapper 89 + installShellFiles 90 + ]; 91 92 installPhase = '' 93 runHook preInstall ··· 113 homepage = "https://github.com/quickemu-project/quickemu"; 114 mainProgram = "quickemu"; 115 license = lib.licenses.mit; 116 + maintainers = with lib.maintainers; [ 117 + fedx-sudo 118 + flexiondotorg 119 + ]; 120 }; 121 })
+11 -8
pkgs/by-name/ve/vencord/package-lock.json
··· 1 { 2 "name": "vencord", 3 - "version": "1.8.8", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "vencord", 9 - "version": "1.8.8", 10 "license": "GPL-3.0-or-later", 11 "dependencies": { 12 "@sapphi-red/web-noise-suppressor": "0.3.3", ··· 662 "version": "0.11.14", 663 "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 664 "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 665 "dev": true, 666 "dependencies": { 667 "@humanwhocodes/object-schema": "^2.0.2", ··· 689 "version": "2.0.3", 690 "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 691 "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 692 "dev": true 693 }, 694 "node_modules/@jridgewell/gen-mapping": { ··· 880 "dev": true 881 }, 882 "node_modules/@types/lodash": { 883 - "version": "4.17.4", 884 - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.4.tgz", 885 - "integrity": "sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==", 886 "dev": true 887 }, 888 "node_modules/@types/minimist": { ··· 4352 "version": "1.5.1", 4353 "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", 4354 "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", 4355 "dev": true, 4356 "engines": { 4357 "node": ">=0.6.0", ··· 5277 } 5278 }, 5279 "node_modules/terser": { 5280 - "version": "5.31.0", 5281 - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", 5282 - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", 5283 "dev": true, 5284 "dependencies": { 5285 "@jridgewell/source-map": "^0.3.3",
··· 1 { 2 "name": "vencord", 3 + "version": "1.8.9", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "vencord", 9 + "version": "1.8.9", 10 "license": "GPL-3.0-or-later", 11 "dependencies": { 12 "@sapphi-red/web-noise-suppressor": "0.3.3", ··· 662 "version": "0.11.14", 663 "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 664 "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 665 + "deprecated": "Use @eslint/config-array instead", 666 "dev": true, 667 "dependencies": { 668 "@humanwhocodes/object-schema": "^2.0.2", ··· 690 "version": "2.0.3", 691 "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 692 "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 693 + "deprecated": "Use @eslint/object-schema instead", 694 "dev": true 695 }, 696 "node_modules/@jridgewell/gen-mapping": { ··· 882 "dev": true 883 }, 884 "node_modules/@types/lodash": { 885 + "version": "4.17.5", 886 + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.5.tgz", 887 + "integrity": "sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==", 888 "dev": true 889 }, 890 "node_modules/@types/minimist": { ··· 4354 "version": "1.5.1", 4355 "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", 4356 "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", 4357 + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", 4358 "dev": true, 4359 "engines": { 4360 "node": ">=0.6.0", ··· 5280 } 5281 }, 5282 "node_modules/terser": { 5283 + "version": "5.31.1", 5284 + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", 5285 + "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==", 5286 "dev": true, 5287 "dependencies": { 5288 "@jridgewell/source-map": "^0.3.3",
+4 -4
pkgs/by-name/ve/vencord/package.nix
··· 5 , buildWebExtension ? false 6 }: 7 let 8 - version = "1.8.8"; 9 - gitHash = "a66138f"; 10 in 11 buildNpmPackage rec { 12 pname = "vencord"; ··· 16 owner = "Vendicated"; 17 repo = "Vencord"; 18 rev = "v${version}"; 19 - hash = "sha256-1T5WvD7z/WhU0X2LiuUNtlncKrGyDO5j1oB6VCD7V6w="; 20 }; 21 22 ESBUILD_BINARY_PATH = lib.getExe (esbuild.overrideAttrs (final: _: { ··· 34 npmRebuildFlags = [ "|| true" ]; 35 36 makeCacheWritable = true; 37 - npmDepsHash = "sha256-QYsiRsWP5LljD4e4FUmlIRutnzr5dIOZ6dqUMEECPcw="; 38 npmFlags = [ "--legacy-peer-deps" ]; 39 npmBuildScript = if buildWebExtension then "buildWeb" else "build"; 40 npmBuildFlags = [ "--" "--standalone" "--disable-updater" ];
··· 5 , buildWebExtension ? false 6 }: 7 let 8 + version = "1.8.9"; 9 + gitHash = "008227c"; 10 in 11 buildNpmPackage rec { 12 pname = "vencord"; ··· 16 owner = "Vendicated"; 17 repo = "Vencord"; 18 rev = "v${version}"; 19 + hash = "sha256-ASIb7iNtbdx9zAe9o/73M1hF9uBvXid63Vlx7wLpV5U="; 20 }; 21 22 ESBUILD_BINARY_PATH = lib.getExe (esbuild.overrideAttrs (final: _: { ··· 34 npmRebuildFlags = [ "|| true" ]; 35 36 makeCacheWritable = true; 37 + npmDepsHash = "sha256-4yC//tdUiEDoAV1lGYdFLW/bO69IMvG4SQV7bDotfyk="; 38 npmFlags = [ "--legacy-peer-deps" ]; 39 npmBuildScript = if buildWebExtension then "buildWeb" else "build"; 40 npmBuildFlags = [ "--" "--standalone" "--disable-updater" ];
+3 -3
pkgs/data/themes/dracula-theme/default.nix
··· 2 3 let 4 themeName = "Dracula"; 5 - version = "4.0.0-unstable-2024-06-03"; 6 in 7 stdenvNoCC.mkDerivation { 8 pname = "dracula-theme"; ··· 11 src = fetchFromGitHub { 12 owner = "dracula"; 13 repo = "gtk"; 14 - rev = "48bdcc5e37c90d74e7e2139412a89209cc05a672"; 15 - hash = "sha256-KkKmiLENEiZSe56TRP8zMiGt6i9uaFCLJ+ajap0asZc="; 16 }; 17 18 propagatedUserEnvPkgs = [
··· 2 3 let 4 themeName = "Dracula"; 5 + version = "4.0.0-unstable-2024-06-11"; 6 in 7 stdenvNoCC.mkDerivation { 8 pname = "dracula-theme"; ··· 11 src = fetchFromGitHub { 12 owner = "dracula"; 13 repo = "gtk"; 14 + rev = "4a5fe924a2b17f82a617f79ef661f1783cacc988"; 15 + hash = "sha256-azwkng3JTTBlSaisbJUdh9NlMZfDbD3OvTQP++J0oO8="; 16 }; 17 18 propagatedUserEnvPkgs = [
+2 -2
pkgs/development/python-modules/nibe/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "nibe"; 23 - version = "2.10.0"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 29 owner = "yozik04"; 30 repo = "nibe"; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-g43lXQzsQ1Serq6oIMcnAYwUppdEVcBkYGEoy3NIwqo="; 33 }; 34 35 build-system = [ setuptools ];
··· 20 21 buildPythonPackage rec { 22 pname = "nibe"; 23 + version = "2.10.1"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 29 owner = "yozik04"; 30 repo = "nibe"; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-rm0SV48vo68aiiFcvuSSGwCvQEsagIMh2EQXXmUU5dc="; 33 }; 34 35 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/openai/default.nix
··· 25 26 buildPythonPackage rec { 27 pname = "openai"; 28 - version = "1.33.0"; 29 pyproject = true; 30 31 disabled = pythonOlder "3.7.1"; ··· 34 owner = "openai"; 35 repo = "openai-python"; 36 rev = "refs/tags/v${version}"; 37 - hash = "sha256-vnIkShEi5ilcrf4DhP33mKijFgb3bfIxoO6vt5VL1MM="; 38 }; 39 40 build-system = [
··· 25 26 buildPythonPackage rec { 27 pname = "openai"; 28 + version = "1.34.0"; 29 pyproject = true; 30 31 disabled = pythonOlder "3.7.1"; ··· 34 owner = "openai"; 35 repo = "openai-python"; 36 rev = "refs/tags/v${version}"; 37 + hash = "sha256-ES0lA/eMll35MhL1evegyp5VOIdHPTRF1Jckl+n250E="; 38 }; 39 40 build-system = [
+2 -2
pkgs/development/python-modules/unstructured/default.nix
··· 57 grpcio, 58 }: 59 let 60 - version = "0.14.4"; 61 optional-dependencies = { 62 huggingflace = [ 63 langdetect ··· 100 owner = "Unstructured-IO"; 101 repo = "unstructured"; 102 rev = "refs/tags/${version}"; 103 - hash = "sha256-1pkBa9SO0PJM0U0EWBtwUjdEnGQB1tSQvdjwb6FIIB8="; 104 }; 105 106 propagatedBuildInputs = [
··· 57 grpcio, 58 }: 59 let 60 + version = "0.14.5"; 61 optional-dependencies = { 62 huggingflace = [ 63 langdetect ··· 100 owner = "Unstructured-IO"; 101 repo = "unstructured"; 102 rev = "refs/tags/${version}"; 103 + hash = "sha256-LkzSFIQX9WaffUkQ7JWhK6cZfc7DngLYYOxe1Jl5+gA="; 104 }; 105 106 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/fnm/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "fnm"; 13 - version = "1.37.0"; 14 15 src = fetchFromGitHub { 16 owner = "Schniz"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "sha256-ruEv46jzO79l2Nvs3UjWHal2lBmhjdIKC99va/2cGio="; 20 }; 21 22 nativeBuildInputs = [ installShellFiles ]; 23 24 buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ]; 25 26 - cargoHash = "sha256-ez6rzmVa/eRcd4bdCM4JEaNILpavub34kaonX4BRjW8="; 27 28 doCheck = false; 29
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "fnm"; 13 + version = "1.37.1"; 14 15 src = fetchFromGitHub { 16 owner = "Schniz"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "sha256-x6w2g7U/FbJBycMAF4PUyaoIazp/w6imIpy+N7Cf0qk="; 20 }; 21 22 nativeBuildInputs = [ installShellFiles ]; 23 24 buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ]; 25 26 + cargoHash = "sha256-b15m5DjTDNWJBHOaKSEMwkO/o+0mV+JMBDBurml7xOs="; 27 28 doCheck = false; 29
+3 -3
pkgs/development/tools/konstraint/default.nix
··· 2 3 buildGoModule rec { 4 pname = "konstraint"; 5 - version = "0.36.0"; 6 7 src = fetchFromGitHub { 8 owner = "plexsystems"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-GQ79xsvlRDwrthtYgykwAJLP9rkk5iNHGelWAQzOZoA="; 12 }; 13 - vendorHash = "sha256-EBlJCcF8UcstaD1ztaAFL4MSfBOYvpeUygzXnQbW8N8="; 14 15 # Exclude go within .github folder 16 excludedPackages = ".github";
··· 2 3 buildGoModule rec { 4 pname = "konstraint"; 5 + version = "0.37.0"; 6 7 src = fetchFromGitHub { 8 owner = "plexsystems"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-poIXY4++nv2bCkcHdZHb0dRa5NVxsw9Vmg7nMVh1ocI="; 12 }; 13 + vendorHash = "sha256-0V8B/w4K3r23tINDfjLAKe5wMpJ+8uiF4nCMr062pb0="; 14 15 # Exclude go within .github folder 16 excludedPackages = ".github";
+3 -3
pkgs/development/tools/rbspy/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "rbspy"; 12 - version = "0.21.0"; 13 14 src = fetchFromGitHub { 15 owner = "rbspy"; 16 repo = "rbspy"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-FnnpMin0hDNjQ/CpTBme4RUrp7+A5FH1DkQ8FcqwK7Q="; 19 }; 20 21 - cargoHash = "sha256-HzXbNoColjxrbswAPY/cr3p6qWXb/0os8VYi/nQyEgo="; 22 23 # error: linker `aarch64-linux-gnu-gcc` not found 24 postPatch = ''
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "rbspy"; 12 + version = "0.22.0"; 13 14 src = fetchFromGitHub { 15 owner = "rbspy"; 16 repo = "rbspy"; 17 rev = "refs/tags/v${version}"; 18 + hash = "sha256-MZ6SN/zrcIKnpm2o5w6d5Vx0YmeuS+zMfsPdZmRKewY="; 19 }; 20 21 + cargoHash = "sha256-+Jb+btXU+fsVXWCmafY5ZaGLvFIA/wFzVNkO0O8QaVw="; 22 23 # error: linker `aarch64-linux-gnu-gcc` not found 24 postPatch = ''
+4 -4
pkgs/servers/home-automation/evcc/default.nix
··· 21 22 buildGoModule rec { 23 pname = "evcc"; 24 - version = "0.126.5"; 25 26 src = fetchFromGitHub { 27 owner = "evcc-io"; 28 repo = "evcc"; 29 rev = version; 30 - hash = "sha256-hw8DImLXFwTEAyPEFUVnyNPXrQTfEk7OOk+w/izJz9s="; 31 }; 32 33 - vendorHash = "sha256-gfKJiZ7wSFWEEB/UCAbH18jdZdgG/58q3Yj0FQqMH8E="; 34 35 npmDeps = fetchNpmDeps { 36 inherit src; 37 - hash = "sha256-ghDLmsmcG+qDItiqaZy8MTYw/AU58bZfUzYY32XKNyk="; 38 }; 39 40 nativeBuildInputs = [
··· 21 22 buildGoModule rec { 23 pname = "evcc"; 24 + version = "0.127.0"; 25 26 src = fetchFromGitHub { 27 owner = "evcc-io"; 28 repo = "evcc"; 29 rev = version; 30 + hash = "sha256-Kvpi9HE7dr3StLEihJDF5z1fQELsOv0/5jLLmEEtOJ8="; 31 }; 32 33 + vendorHash = "sha256-MdfLJpPEi6Cr34W6eJSraKJwBPtR66HM2tJIbPE9mZs="; 34 35 npmDeps = fetchNpmDeps { 36 inherit src; 37 + hash = "sha256-6Dxf32myqRbKIlYFcQhkuqZVz+lVvmeJ5lqiWPCQAzA="; 38 }; 39 40 nativeBuildInputs = [
+2 -2
pkgs/servers/swego/default.nix
··· 7 8 buildGoModule rec { 9 pname = "swego"; 10 - version = "1.1"; 11 12 src = fetchFromGitHub { 13 owner = "nodauf"; 14 repo = "Swego"; 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-O/wczHyaMev0CpAXoDxiN7TtHDsthG+jaH31SPMEB34="; 17 }; 18 19 vendorHash = "sha256-mJWJdwbZq042//hM3WWp2rnLC1GebckUnsIopbF858Q=";
··· 7 8 buildGoModule rec { 9 pname = "swego"; 10 + version = "1.12"; 11 12 src = fetchFromGitHub { 13 owner = "nodauf"; 14 repo = "Swego"; 15 rev = "refs/tags/v${version}"; 16 + hash = "sha256-roaAzh6Mncu4qtaxEoXk41Mrmz/l7X1+n+Yh5skA65A="; 17 }; 18 19 vendorHash = "sha256-mJWJdwbZq042//hM3WWp2rnLC1GebckUnsIopbF858Q=";
+2 -2
pkgs/tools/graphics/directx-shader-compiler/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "directx-shader-compiler"; 5 - version = "1.7.2308"; 6 7 # Put headers in dev, there are lot of them which aren't necessary for 8 # using the compiler binary. ··· 12 owner = "microsoft"; 13 repo = "DirectXShaderCompiler"; 14 rev = "v${version}"; 15 - hash = "sha256-pfdAD+kRpmqW29Y8jn6+X5Ujy/9cIvisYr0tH1PuxsY="; 16 fetchSubmodules = true; 17 }; 18
··· 2 3 stdenv.mkDerivation rec { 4 pname = "directx-shader-compiler"; 5 + version = "1.8.2405"; 6 7 # Put headers in dev, there are lot of them which aren't necessary for 8 # using the compiler binary. ··· 12 owner = "microsoft"; 13 repo = "DirectXShaderCompiler"; 14 rev = "v${version}"; 15 + hash = "sha256-p1sQcKWSQo0VU1JwB7J0eqT85CzNWxAMqC4HZ95NySg="; 16 fetchSubmodules = true; 17 }; 18