Merge master into staging-next

authored by github-actions[bot] and committed by GitHub c1fb3b22 4147e7d4

+64 -70
+1 -1
doc/languages-frameworks/beam.section.md
··· 241 git 242 # replace with beam.packages.erlang.elixir_1_11 if you need 243 beam.packages.erlang.elixir 244 - nodejs-15_x 245 postgresql_13 246 # only used for frontend dependencies 247 # you are free to use yarn2nix as well
··· 241 git 242 # replace with beam.packages.erlang.elixir_1_11 if you need 243 beam.packages.erlang.elixir 244 + nodejs 245 postgresql_13 246 # only used for frontend dependencies 247 # you are free to use yarn2nix as well
+1 -1
nixos/tests/zsh-history.nix
··· 23 # Login 24 default.wait_until_tty_matches(1, "login: ") 25 default.send_chars("root\n") 26 - default.wait_until_tty_matches(1, "root@default>") 27 28 # Generate some history 29 default.send_chars("echo foobar\n")
··· 23 # Login 24 default.wait_until_tty_matches(1, "login: ") 25 default.send_chars("root\n") 26 + default.wait_until_tty_matches(1, r"\nroot@default\b") 27 28 # Generate some history 29 default.send_chars("echo foobar\n")
+5 -2
pkgs/applications/editors/neovim/default.nix
··· 2 , libuv, lua, ncurses, pkg-config 3 , unibilium, xsel, gperf 4 , libvterm-neovim 5 , glibcLocales ? null, procps ? null 6 7 # now defaults to false because some tests can be flaky (clipboard etc) ··· 31 in 32 stdenv.mkDerivation rec { 33 pname = "neovim-unwrapped"; 34 - version = "0.4.4"; 35 36 src = fetchFromGitHub { 37 owner = "neovim"; 38 repo = "neovim"; 39 rev = "v${version}"; 40 - sha256 = "11zyj6jvkwas3n6w1ckj3pk6jf81z1g7ngg4smmwm7c27y2a6f2m"; 41 }; 42 43 patches = [ ··· 58 msgpack 59 ncurses 60 neovimLuaEnv 61 unibilium 62 ] ++ optional stdenv.isDarwin libiconv 63 ++ optionals doCheck [ glibcLocales procps ] ··· 96 "-DGPERF_PRG=${gperf}/bin/gperf" 97 "-DLUA_PRG=${neovimLuaEnv.interpreter}" 98 "-DLIBLUV_LIBRARY=${luvpath}" 99 ] 100 ++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted" 101 ++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
··· 2 , libuv, lua, ncurses, pkg-config 3 , unibilium, xsel, gperf 4 , libvterm-neovim 5 + , tree-sitter 6 , glibcLocales ? null, procps ? null 7 8 # now defaults to false because some tests can be flaky (clipboard etc) ··· 32 in 33 stdenv.mkDerivation rec { 34 pname = "neovim-unwrapped"; 35 + version = "0.5.0"; 36 37 src = fetchFromGitHub { 38 owner = "neovim"; 39 repo = "neovim"; 40 rev = "v${version}"; 41 + sha256 = "0lgbf90sbachdag1zm9pmnlbn35964l3khs27qy4462qzpqyi9fi"; 42 }; 43 44 patches = [ ··· 59 msgpack 60 ncurses 61 neovimLuaEnv 62 + tree-sitter 63 unibilium 64 ] ++ optional stdenv.isDarwin libiconv 65 ++ optionals doCheck [ glibcLocales procps ] ··· 98 "-DGPERF_PRG=${gperf}/bin/gperf" 99 "-DLUA_PRG=${neovimLuaEnv.interpreter}" 100 "-DLIBLUV_LIBRARY=${luvpath}" 101 + "-DUSE_BUNDLED=OFF" 102 ] 103 ++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted" 104 ++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
+1 -1
pkgs/applications/networking/mumble/default.nix
··· 63 description = "Low-latency, high quality voice chat software"; 64 homepage = "https://mumble.info"; 65 license = licenses.bsd3; 66 - maintainers = with maintainers; [ petabyteboy infinisil ]; 67 platforms = platforms.linux; 68 }; 69 });
··· 63 description = "Low-latency, high quality voice chat software"; 64 homepage = "https://mumble.info"; 65 license = licenses.bsd3; 66 + maintainers = with maintainers; [ petabyteboy infinisil felixsinger ]; 67 platforms = platforms.linux; 68 }; 69 });
+2 -2
pkgs/development/python-modules/aiomusiccast/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "aiomusiccast"; 11 - version = "0.8.0"; 12 13 format = "pyproject"; 14 ··· 18 owner = "vigonotion"; 19 repo = "aiomusiccast"; 20 rev = version; 21 - sha256 = "1x55w2vhb5mgvlg19cs887xd7fg0cwnp6hb34vajp80q4yff9xk5"; 22 }; 23 24 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "aiomusiccast"; 11 + version = "0.8.1"; 12 13 format = "pyproject"; 14 ··· 18 owner = "vigonotion"; 19 repo = "aiomusiccast"; 20 rev = version; 21 + sha256 = "sha256-1k0ELXA8TgAyRYdzSFXp/BsPesC1WCiC4PqHfcPk0u8="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/daphne/default.nix
··· 4 }: 5 buildPythonPackage rec { 6 pname = "daphne"; 7 - version = "3.0.1"; 8 9 disabled = !isPy3k; 10 ··· 12 owner = "django"; 13 repo = pname; 14 rev = version; 15 - sha256 = "1bkxhzvaqwz760c11nhaiwvsq1d1csmk5dz2a1j1ynypjprhvhsk"; 16 }; 17 18 nativeBuildInputs = [ pytestrunner ];
··· 4 }: 5 buildPythonPackage rec { 6 pname = "daphne"; 7 + version = "3.0.2"; 8 9 disabled = !isPy3k; 10 ··· 12 owner = "django"; 13 repo = pname; 14 rev = version; 15 + sha256 = "sha256-KWkMV4L7bA2Eo/u4GGif6lmDNrZAzvYyDiyzyWt9LeI="; 16 }; 17 18 nativeBuildInputs = [ pytestrunner ];
+4
pkgs/development/python-modules/flask-compress/default.nix
··· 11 sha256 = "28352387efbbe772cfb307570019f81957a13ff718d994a9125fa705efb73680"; 12 }; 13 14 propagatedBuildInputs = [ flask brotli ]; 15 16 meta = with lib; {
··· 11 sha256 = "28352387efbbe772cfb307570019f81957a13ff718d994a9125fa705efb73680"; 12 }; 13 14 + postPatch = '' 15 + sed -i -e 's/use_scm_version=.*/version="${version}",/' setup.py 16 + ''; 17 + 18 propagatedBuildInputs = [ flask brotli ]; 19 20 meta = with lib; {
+2 -2
pkgs/development/python-modules/python-telegram-bot/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "python-telegram-bot"; 16 - version = "13.6"; 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "37cfe8faba16fb68a8b5ab41a10e787c385f6296200c84256cc54d7c16334643"; 22 }; 23 24 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "python-telegram-bot"; 16 + version = "13.7"; 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-JN91RZ4zW5a6/6aZFnn4RL1CaXivWmnKQZoKxDpAYCw="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/twitterapi/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "twitterapi"; 10 - version = "2.7.3"; 11 12 src = fetchFromGitHub { 13 owner = "geduldig"; 14 repo = "TwitterAPI"; 15 rev = "v${version}"; 16 - sha256 = "sha256-82TOVrC7wX7E9lKsx3iGxaEEjHSzf5uZwePBvAw3hDk="; 17 }; 18 19 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "twitterapi"; 10 + version = "2.7.4"; 11 12 src = fetchFromGitHub { 13 owner = "geduldig"; 14 repo = "TwitterAPI"; 15 rev = "v${version}"; 16 + sha256 = "sha256-HDPRpM1LDTtUbldzfCrsdh/GpbzNCVVUVGwohyMe/YE="; 17 }; 18 19 propagatedBuildInputs = [
+2 -2
pkgs/development/web/nodejs/v12.nix
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 - version = "12.22.1"; 12 - sha256 = "12drpkffn79xx84pffg9y2cn9fiwycgaa2rjj3ix6visfzvhsrfx"; 13 patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff; 14 }
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 + version = "12.22.2"; 12 + sha256 = "1p281hdw3y32pnbfr7cdc9igv2yrzqg16pn4yj3g01pi3mbhbn3z"; 13 patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff; 14 }
+2 -2
pkgs/development/web/nodejs/v14.nix
··· 7 in 8 buildNodejs { 9 inherit enableNpm; 10 - version = "14.17.1"; 11 - sha256 = "0zr4b9gja8f9611rnmc9yacmh90bd76xv9ayikcyqdfzdpax5wfx"; 12 patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff; 13 }
··· 7 in 8 buildNodejs { 9 inherit enableNpm; 10 + version = "14.17.2"; 11 + sha256 = "0gjq61l1lm15bv47w0phil44nbh0fsq3mmqf40xxlm92gswb4psg"; 12 patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff; 13 }
-13
pkgs/development/web/nodejs/v15.nix
··· 1 - { callPackage, icu68, python3, enableNpm ? true }: 2 - 3 - let 4 - buildNodejs = callPackage ./nodejs.nix { 5 - icu = icu68; 6 - python = python3; 7 - }; 8 - in 9 - buildNodejs { 10 - inherit enableNpm; 11 - version = "15.14.0"; 12 - sha256 = "0vm6jdazqjd1plqsgngzvjrafv2d3mdahk6il4ray02gx97dq8l1"; 13 - }
···
+2 -2
pkgs/development/web/nodejs/v16.nix
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 - version = "16.4.0"; 12 - sha256 = "07f8g3hs0v7nsdvzlsr1p4pzgb04qn54pnhmbdsgmmb41cp227pr"; 13 }
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 + version = "16.4.1"; 12 + sha256 = "1a1aygksmbafxvrs8g2jv0y1jj3cwyclk0qbqxkn5qfq5r1i943n"; 13 }
+3 -1
pkgs/tools/cd-dvd/isomd5sum/default.nix
··· 14 sha256 = "1wjnh2hlp1hjjm4a8wzdhdrm73jq41lmpmy3ls0rh715p3j7z4q9"; 15 }; 16 17 - buildInputs = [ python3 popt ] ; 18 19 postPatch = '' 20 substituteInPlace Makefile --replace "#/usr/" "#"
··· 14 sha256 = "1wjnh2hlp1hjjm4a8wzdhdrm73jq41lmpmy3ls0rh715p3j7z4q9"; 15 }; 16 17 + strictDeps = true; 18 + nativeBuildInputs = [ python3 ]; 19 + buildInputs = [ popt ] ; 20 21 postPatch = '' 22 substituteInPlace Makefile --replace "#/usr/" "#"
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 - version = "2021-06-29"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-RF7+fo6I7rz7PTSHRDikeRpM0f4Bugn+Tt5Z7mjIKIM="; 12 }; 13 14 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 + version = "2021-07-02"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-p6D0FM52SF4fnWXa/zpewr+lNWC4hZWc0yAQYnioUdQ="; 12 }; 13 14 installPhase = ''
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.0.49"
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.0.51"
+12 -11
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 2e07122e80d8ae23e6aa53ae0fcb9dfca6639c59 4 - ref: refs/tags/6.0.49 5 specs: 6 - metasploit-framework (6.0.49) 7 actionpack (~> 5.2.2) 8 activerecord (~> 5.2.2) 9 activesupport (~> 5.2.2) ··· 55 rb-readline 56 recog 57 redcarpet 58 rex-arch 59 rex-bin_tools 60 rex-core ··· 125 arel-helpers (2.12.0) 126 activerecord (>= 3.1.0, < 7) 127 aws-eventstream (1.1.1) 128 - aws-partitions (1.469.0) 129 - aws-sdk-core (3.114.3) 130 aws-eventstream (~> 1, >= 1.0.2) 131 aws-partitions (~> 1, >= 1.239.0) 132 aws-sigv4 (~> 1.1) 133 jmespath (~> 1.0) 134 - aws-sdk-ec2 (1.244.0) 135 aws-sdk-core (~> 3, >= 3.112.0) 136 aws-sigv4 (~> 1.1) 137 aws-sdk-iam (1.55.0) ··· 155 cookiejar (0.3.3) 156 crass (1.0.6) 157 daemons (1.4.0) 158 - dnsruby (1.61.5) 159 simpleidn (~> 0.1) 160 domain_name (0.5.20190701) 161 unf (>= 0.0.5, < 1.0.0) ··· 172 eventmachine (1.2.7) 173 faker (2.18.0) 174 i18n (>= 1.6, < 2) 175 - faraday (1.4.2) 176 faraday-em_http (~> 1.0) 177 faraday-em_synchrony (~> 1.0) 178 faraday-excon (~> 1.1) ··· 198 i18n (1.8.10) 199 concurrent-ruby (~> 1.0) 200 io-console (0.5.9) 201 - irb (1.3.5) 202 - reline (>= 0.1.5) 203 jmespath (1.4.0) 204 jsobfu (0.4.2) 205 rkelly-remix ··· 344 rex-socket 345 rex-text 346 rex-struct2 (0.1.3) 347 - rex-text (0.2.34) 348 rex-zip (0.1.4) 349 rex-text 350 rexml (3.2.5)
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 + revision: d9aeac3fea255c475f553be4c55f3ae7cefc8542 4 + ref: refs/tags/6.0.51 5 specs: 6 + metasploit-framework (6.0.51) 7 actionpack (~> 5.2.2) 8 activerecord (~> 5.2.2) 9 activesupport (~> 5.2.2) ··· 55 rb-readline 56 recog 57 redcarpet 58 + reline (= 0.2.5) 59 rex-arch 60 rex-bin_tools 61 rex-core ··· 126 arel-helpers (2.12.0) 127 activerecord (>= 3.1.0, < 7) 128 aws-eventstream (1.1.1) 129 + aws-partitions (1.473.0) 130 + aws-sdk-core (3.115.0) 131 aws-eventstream (~> 1, >= 1.0.2) 132 aws-partitions (~> 1, >= 1.239.0) 133 aws-sigv4 (~> 1.1) 134 jmespath (~> 1.0) 135 + aws-sdk-ec2 (1.246.0) 136 aws-sdk-core (~> 3, >= 3.112.0) 137 aws-sigv4 (~> 1.1) 138 aws-sdk-iam (1.55.0) ··· 156 cookiejar (0.3.3) 157 crass (1.0.6) 158 daemons (1.4.0) 159 + dnsruby (1.61.7) 160 simpleidn (~> 0.1) 161 domain_name (0.5.20190701) 162 unf (>= 0.0.5, < 1.0.0) ··· 173 eventmachine (1.2.7) 174 faker (2.18.0) 175 i18n (>= 1.6, < 2) 176 + faraday (1.4.3) 177 faraday-em_http (~> 1.0) 178 faraday-em_synchrony (~> 1.0) 179 faraday-excon (~> 1.1) ··· 199 i18n (1.8.10) 200 concurrent-ruby (~> 1.0) 201 io-console (0.5.9) 202 + irb (1.3.6) 203 + reline (>= 0.2.5) 204 jmespath (1.4.0) 205 jsobfu (0.4.2) 206 rkelly-remix ··· 345 rex-socket 346 rex-text 347 rex-struct2 (0.1.3) 348 + rex-text (0.2.35) 349 rex-zip (0.1.4) 350 rex-text 351 rexml (3.2.5)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 8 }; 9 in stdenv.mkDerivation rec { 10 pname = "metasploit-framework"; 11 - version = "6.0.50"; 12 13 src = fetchFromGitHub { 14 owner = "rapid7"; 15 repo = "metasploit-framework"; 16 rev = version; 17 - sha256 = "sha256-ZtIpkUt3jIhe4st8JlxE0rvLe6P+QBGdjyTL13Avwj0="; 18 }; 19 20 nativeBuildInputs = [ makeWrapper ];
··· 8 }; 9 in stdenv.mkDerivation rec { 10 pname = "metasploit-framework"; 11 + version = "6.0.51"; 12 13 src = fetchFromGitHub { 14 owner = "rapid7"; 15 repo = "metasploit-framework"; 16 rev = version; 17 + sha256 = "sha256-ICVF4GVOyCq7dUAvzUUzhG+NuEiHSFvVWbQ8tAqUFFg="; 18 }; 19 20 nativeBuildInputs = [ makeWrapper ];
+17 -17
pkgs/tools/security/metasploit/gemset.nix
··· 114 platforms = []; 115 source = { 116 remotes = ["https://rubygems.org"]; 117 - sha256 = "0xh65jmz3s12kfi7ij0j89d638nzdvq4z6dq9amzgmiw09ycvdbr"; 118 type = "gem"; 119 }; 120 - version = "1.469.0"; 121 }; 122 aws-sdk-core = { 123 groups = ["default"]; 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "10wk5y4flc04cc42cmcfgr9sj67mz4582d45xmll56mpz4cw5cfc"; 128 type = "gem"; 129 }; 130 - version = "3.114.3"; 131 }; 132 aws-sdk-ec2 = { 133 groups = ["default"]; 134 platforms = []; 135 source = { 136 remotes = ["https://rubygems.org"]; 137 - sha256 = "0xnpxgcmacmqs98swlv3qkg7svpwydb1kqsngqciyg3jddzxrzp6"; 138 type = "gem"; 139 }; 140 - version = "1.244.0"; 141 }; 142 aws-sdk-iam = { 143 groups = ["default"]; ··· 274 platforms = []; 275 source = { 276 remotes = ["https://rubygems.org"]; 277 - sha256 = "0q7k7wn8flcdr0kzgknq40cjddd0zn3g3n4gwwwdz0kq30pinzxx"; 278 type = "gem"; 279 }; 280 - version = "1.61.5"; 281 }; 282 domain_name = { 283 groups = ["default"]; ··· 354 platforms = []; 355 source = { 356 remotes = ["https://rubygems.org"]; 357 - sha256 = "07mhk70gv453pg38md346470hknyhipdqppnplq706ll3k3lzb7v"; 358 type = "gem"; 359 }; 360 - version = "1.4.2"; 361 }; 362 faraday-em_http = { 363 groups = ["default"]; ··· 494 platforms = []; 495 source = { 496 remotes = ["https://rubygems.org"]; 497 - sha256 = "06i0izb1jm4ijydwk9w2jqyvz72aznaa1b386769yfi8284cnwj6"; 498 type = "gem"; 499 }; 500 - version = "1.3.5"; 501 }; 502 jmespath = { 503 groups = ["default"]; ··· 574 platforms = []; 575 source = { 576 fetchSubmodules = false; 577 - rev = "2e07122e80d8ae23e6aa53ae0fcb9dfca6639c59"; 578 - sha256 = "0zxyr1r88qslw6ypjqxx188vhmikl94fmkcdg3phm8r71qa375da"; 579 type = "git"; 580 url = "https://github.com/rapid7/metasploit-framework"; 581 }; 582 - version = "6.0.49"; 583 }; 584 metasploit-model = { 585 groups = ["default"]; ··· 1156 platforms = []; 1157 source = { 1158 remotes = ["https://rubygems.org"]; 1159 - sha256 = "01g6jr73c3hbqhmzlc80jlqz2cwn9bq1j3cc19fpkq3hdg89drjp"; 1160 type = "gem"; 1161 }; 1162 - version = "0.2.34"; 1163 }; 1164 rex-zip = { 1165 groups = ["default"];
··· 114 platforms = []; 115 source = { 116 remotes = ["https://rubygems.org"]; 117 + sha256 = "1dw05k0l63lm631lwg5b1bx1nhkirds4rbc1v98bliwfjk5wf71a"; 118 type = "gem"; 119 }; 120 + version = "1.473.0"; 121 }; 122 aws-sdk-core = { 123 groups = ["default"]; 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 + sha256 = "06cs5wj4njb2ivhv06v5d7rgy1i2g67a93c0kxly8h7fkkxh315q"; 128 type = "gem"; 129 }; 130 + version = "3.115.0"; 131 }; 132 aws-sdk-ec2 = { 133 groups = ["default"]; 134 platforms = []; 135 source = { 136 remotes = ["https://rubygems.org"]; 137 + sha256 = "0n3m2a8jnk64ai4wb1wh1a77i8c561ncjklvp650w8723avbj5bq"; 138 type = "gem"; 139 }; 140 + version = "1.246.0"; 141 }; 142 aws-sdk-iam = { 143 groups = ["default"]; ··· 274 platforms = []; 275 source = { 276 remotes = ["https://rubygems.org"]; 277 + sha256 = "1pbhj4xmj4262in6c1nwl5ssw0qypg8ysjrrkwn2akkzbxzy9rfq"; 278 type = "gem"; 279 }; 280 + version = "1.61.7"; 281 }; 282 domain_name = { 283 groups = ["default"]; ··· 354 platforms = []; 355 source = { 356 remotes = ["https://rubygems.org"]; 357 + sha256 = "0zmdsl6n05khwwq8gjssmfca0ifz6q82wwghf1qyzbxxjdna5mly"; 358 type = "gem"; 359 }; 360 + version = "1.4.3"; 361 }; 362 faraday-em_http = { 363 groups = ["default"]; ··· 494 platforms = []; 495 source = { 496 remotes = ["https://rubygems.org"]; 497 + sha256 = "0s4yjh5p1n05cm3pglh3g4ssrgy67x2bn3bsl0sydbm8mlf3xivr"; 498 type = "gem"; 499 }; 500 + version = "1.3.6"; 501 }; 502 jmespath = { 503 groups = ["default"]; ··· 574 platforms = []; 575 source = { 576 fetchSubmodules = false; 577 + rev = "d9aeac3fea255c475f553be4c55f3ae7cefc8542"; 578 + sha256 = "0n0ljh5b8g5lb7amnj4792w8svw46d2wsbs0fnxjmj2fcph4a990"; 579 type = "git"; 580 url = "https://github.com/rapid7/metasploit-framework"; 581 }; 582 + version = "6.0.51"; 583 }; 584 metasploit-model = { 585 groups = ["default"]; ··· 1156 platforms = []; 1157 source = { 1158 remotes = ["https://rubygems.org"]; 1159 + sha256 = "0idgw5z813h5dp82n07g5ldpyfnk7mhvnzl87d9fpy6invixnnbq"; 1160 type = "gem"; 1161 }; 1162 + version = "0.2.35"; 1163 }; 1164 rex-zip = { 1165 groups = ["default"];
+1 -4
pkgs/top-level/all-packages.nix
··· 27444 wrapNeovimUnstable = callPackage ../applications/editors/neovim/wrapper.nix { }; 27445 wrapNeovim = neovim-unwrapped: lib.makeOverridable (neovimUtils.legacyWrapper neovim-unwrapped); 27446 neovim-unwrapped = callPackage ../applications/editors/neovim { 27447 - lua = 27448 - # neovim doesn't work with luajit on aarch64: https://github.com/neovim/neovim/issues/7879 27449 - if stdenv.isAarch64 then lua5_1 else 27450 - luajit; 27451 }; 27452 27453 neovimUtils = callPackage ../applications/editors/neovim/utils.nix { };
··· 27444 wrapNeovimUnstable = callPackage ../applications/editors/neovim/wrapper.nix { }; 27445 wrapNeovim = neovim-unwrapped: lib.makeOverridable (neovimUtils.legacyWrapper neovim-unwrapped); 27446 neovim-unwrapped = callPackage ../applications/editors/neovim { 27447 + lua = luajit; 27448 }; 27449 27450 neovimUtils = callPackage ../applications/editors/neovim/utils.nix { };