Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 5934fd9e 85be5352

+516 -511
+3 -2
nixos/modules/tasks/network-interfaces-scripted.nix
··· 219 cidr = "${route.address}/${toString route.prefixLength}"; 220 via = optionalString (route.via != null) ''via "${route.via}"''; 221 options = concatStrings (mapAttrsToList (name: val: "${name} ${val} ") route.options); 222 in 223 '' 224 echo "${cidr}" >> $state 225 echo -n "adding route ${cidr}... " 226 - if out=$(ip route add "${cidr}" ${options} ${via} dev "${i.name}" proto static 2>&1); then 227 echo "done" 228 elif ! echo "$out" | grep "File exists" >/dev/null 2>&1; then 229 - echo "'ip route add "${cidr}" ${options} ${via} dev "${i.name}"' failed: $out" 230 exit 1 231 fi 232 ''
··· 219 cidr = "${route.address}/${toString route.prefixLength}"; 220 via = optionalString (route.via != null) ''via "${route.via}"''; 221 options = concatStrings (mapAttrsToList (name: val: "${name} ${val} ") route.options); 222 + type = toString route.type; 223 in 224 '' 225 echo "${cidr}" >> $state 226 echo -n "adding route ${cidr}... " 227 + if out=$(ip route add ${type} "${cidr}" ${options} ${via} dev "${i.name}" proto static 2>&1); then 228 echo "done" 229 elif ! echo "$out" | grep "File exists" >/dev/null 2>&1; then 230 + echo "'ip route add ${type} "${cidr}" ${options} ${via} dev "${i.name}"' failed: $out" 231 exit 1 232 fi 233 ''
+3
nixos/modules/tasks/network-interfaces-systemd.nix
··· 142 optionalAttrs (route.via != null) { 143 Gateway = route.via; 144 } // 145 optionalAttrs (route.options ? onlink) { 146 GatewayOnLink = true; 147 } //
··· 142 optionalAttrs (route.via != null) { 143 Gateway = route.via; 144 } // 145 + optionalAttrs (route.type != null) { 146 + Type = route.type; 147 + } // 148 optionalAttrs (route.options ? onlink) { 149 GatewayOnLink = true; 150 } //
+16
nixos/modules/tasks/network-interfaces.nix
··· 90 ''; 91 }; 92 93 via = mkOption { 94 type = types.nullOr types.str; 95 default = null;
··· 90 ''; 91 }; 92 93 + type = mkOption { 94 + type = types.nullOr (types.enum [ 95 + "unicast" "local" "broadcast" "multicast" 96 + ]); 97 + default = null; 98 + description = '' 99 + Type of the route. See the <literal>Route types</literal> section 100 + in the <literal>ip-route(8)</literal> manual page for the details. 101 + 102 + Note that <literal>prohibit</literal>, <literal>blackhole</literal>, 103 + <literal>unreachable</literal>, and <literal>throw</literal> cannot 104 + be configured per device, so they are not available here. Similarly, 105 + <literal>nat</literal> hasn't been supported since kernel 2.6. 106 + ''; 107 + }; 108 + 109 via = mkOption { 110 type = types.nullOr types.str; 111 default = null;
+1 -8
nixos/tests/ihatemoney/default.nix
··· 32 }; 33 }; 34 # ihatemoney needs a local smtp server otherwise project creation just crashes 35 - services.opensmtpd = { 36 - enable = true; 37 - serverConfiguration = '' 38 - listen on lo 39 - action foo relay 40 - match from any for any action foo 41 - ''; 42 - }; 43 }; 44 testScript = '' 45 machine.wait_for_open_port(8000)
··· 32 }; 33 }; 34 # ihatemoney needs a local smtp server otherwise project creation just crashes 35 + services.postfix.enable = true; 36 }; 37 testScript = '' 38 machine.wait_for_open_port(8000)
+25 -4
nixos/tests/networking.nix
··· 77 testCases = { 78 loopback = { 79 name = "Loopback"; 80 - machine.networking.useDHCP = false; 81 - machine.networking.useNetworkd = networkd; 82 testScript = '' 83 start_all() 84 - machine.wait_for_unit("network.target") 85 - loopback_addresses = machine.succeed("ip addr show lo") 86 assert "inet 127.0.0.1/8" in loopback_addresses 87 assert "inet6 ::1/128" in loopback_addresses 88 ''; ··· 138 router.wait_until_succeeds("ping -c 1 192.168.3.1") 139 client.wait_until_succeeds("ping -c 1 192.168.3.1") 140 ''; 141 }; 142 dhcpDefault = { 143 name = "useDHCP-by-default";
··· 77 testCases = { 78 loopback = { 79 name = "Loopback"; 80 + nodes.client = { pkgs, ... }: with pkgs.lib; { 81 + networking.useDHCP = false; 82 + networking.useNetworkd = networkd; 83 + }; 84 testScript = '' 85 start_all() 86 + client.wait_for_unit("network.target") 87 + loopback_addresses = client.succeed("ip addr show lo") 88 assert "inet 127.0.0.1/8" in loopback_addresses 89 assert "inet6 ::1/128" in loopback_addresses 90 ''; ··· 140 router.wait_until_succeeds("ping -c 1 192.168.3.1") 141 client.wait_until_succeeds("ping -c 1 192.168.3.1") 142 ''; 143 + }; 144 + routeType = { 145 + name = "RouteType"; 146 + nodes.client = { pkgs, ... }: with pkgs.lib; { 147 + networking = { 148 + useDHCP = false; 149 + useNetworkd = networkd; 150 + interfaces.eth1.ipv4.routes = [{ 151 + address = "192.168.1.127"; 152 + prefixLength = 32; 153 + type = "local"; 154 + }]; 155 + }; 156 + }; 157 + testScript = '' 158 + start_all() 159 + client.wait_for_unit("network.target") 160 + client.succeed("ip -4 route list table local | grep 'local 192.168.1.127'") 161 + ''; 162 }; 163 dhcpDefault = { 164 name = "useDHCP-by-default";
+2 -2
pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, deadbeef, gtk3, perl 2 - , libdbusmenu-glib }: 3 4 stdenv.mkDerivation rec { 5 pname = "deadbeef-statusnotifier-plugin"; ··· 13 }; 14 15 nativeBuildInputs = [ pkg-config ]; 16 - buildInputs = [ deadbeef gtk3 libdbusmenu-glib ]; 17 18 buildFlags = [ "gtk3" ]; 19
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, deadbeef, gtk3, perl 2 + , libdbusmenu }: 3 4 stdenv.mkDerivation rec { 5 pname = "deadbeef-statusnotifier-plugin"; ··· 13 }; 14 15 nativeBuildInputs = [ pkg-config ]; 16 + buildInputs = [ deadbeef gtk3 libdbusmenu ]; 17 18 buildFlags = [ "gtk3" ]; 19
+12 -1
pkgs/applications/audio/mimic/default.nix
··· 1 - { config, lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, makeWrapper 2 , alsa-lib, alsa-plugins, libtool, icu, pcre2 3 , pulseaudioSupport ? config.pulseaudio or false, libpulseaudio }: 4 ··· 12 rev = version; 13 sha256 = "1agwgby9ql8r3x5rd1rgx3xp9y4cdg4pi3kqlz3vanv9na8nf3id"; 14 }; 15 16 nativeBuildInputs = [ 17 autoreconfHook
··· 1 + { config, lib, stdenv, autoreconfHook, fetchFromGitHub, fetchpatch 2 + , pkg-config, makeWrapper 3 , alsa-lib, alsa-plugins, libtool, icu, pcre2 4 , pulseaudioSupport ? config.pulseaudio or false, libpulseaudio }: 5 ··· 13 rev = version; 14 sha256 = "1agwgby9ql8r3x5rd1rgx3xp9y4cdg4pi3kqlz3vanv9na8nf3id"; 15 }; 16 + 17 + patches = [ 18 + # Pull upstream fix for -fno-common toolchains: 19 + # https://github.com/MycroftAI/mimic1/pull/216 20 + (fetchpatch { 21 + name = "fno-common"; 22 + url = "https://github.com/MycroftAI/mimic1/commit/77b36eaeb2c38eba571b8db7e9bb0fd507774e6d.patch"; 23 + sha256 = "0n3hqrfpbdp44y0c8bq55ay9m4c96r09k18hjxka4x54j5c7lw1m"; 24 + }) 25 + ]; 26 27 nativeBuildInputs = [ 28 autoreconfHook
+337 -217
pkgs/applications/editors/vim/plugins/generated.nix
··· 111 meta.homepage = "https://github.com/vim-scripts/Improved-AnsiEsc/"; 112 }; 113 114 Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix { 115 pname = "Jenkinsfile-vim-syntax"; 116 version = "2021-01-26"; ··· 269 270 SchemaStore-nvim = buildVimPluginFrom2Nix { 271 pname = "SchemaStore.nvim"; 272 - version = "2022-05-29"; 273 src = fetchFromGitHub { 274 owner = "b0o"; 275 repo = "SchemaStore.nvim"; 276 - rev = "18ffd42754ae82b2fb8bc86c035f315c43a57dca"; 277 - sha256 = "1gd4v8n1q5pldkypz7sy48jksdi1w384kbi4fw3pqjp3knkdfqmd"; 278 }; 279 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 280 }; ··· 329 330 SpaceVim = buildVimPluginFrom2Nix { 331 pname = "SpaceVim"; 332 - version = "2022-05-29"; 333 src = fetchFromGitHub { 334 owner = "SpaceVim"; 335 repo = "SpaceVim"; 336 - rev = "a8922726165031cc99d78018eafb0be8dca68b2d"; 337 - sha256 = "1s68j8mzz54njfxhbcr2gkc8hjzla18si0a2cnmxzqpf0z92757k"; 338 }; 339 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 340 }; ··· 486 487 aerial-nvim = buildVimPluginFrom2Nix { 488 pname = "aerial.nvim"; 489 - version = "2022-05-30"; 490 src = fetchFromGitHub { 491 owner = "stevearc"; 492 repo = "aerial.nvim"; 493 - rev = "e633f0d836827b225ff3275da458e6e8a47a084f"; 494 - sha256 = "0aj9klbx2g744gwvgcnx0b8nqnmp5mlf95h85hy7ay2h1jaw9lyi"; 495 }; 496 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 497 }; ··· 522 523 ale = buildVimPluginFrom2Nix { 524 pname = "ale"; 525 - version = "2022-05-29"; 526 src = fetchFromGitHub { 527 owner = "dense-analysis"; 528 repo = "ale"; 529 - rev = "876140832cd33e0566c5a30a755939e088925e66"; 530 - sha256 = "15zii6c7ari89limfrw09vpj42rmsc38x0pq43vsz6j96xhz57ic"; 531 }; 532 meta.homepage = "https://github.com/dense-analysis/ale/"; 533 }; ··· 762 763 barbar-nvim = buildVimPluginFrom2Nix { 764 pname = "barbar.nvim"; 765 - version = "2022-05-27"; 766 src = fetchFromGitHub { 767 owner = "romgrk"; 768 repo = "barbar.nvim"; 769 - rev = "3ff68b8ce6c777cc12a452d8ee265a0b0788d475"; 770 - sha256 = "0zkqgyj5prs1anzbggrnijyfygkmw2xrpd6nbnyqp8rr7yvdqz7i"; 771 }; 772 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 773 }; ··· 894 895 bufferline-nvim = buildVimPluginFrom2Nix { 896 pname = "bufferline.nvim"; 897 - version = "2022-05-29"; 898 src = fetchFromGitHub { 899 owner = "akinsho"; 900 repo = "bufferline.nvim"; 901 - rev = "e2b1e99deb077bf49f8e167d1320292e66b22477"; 902 - sha256 = "1m7jxmf9gfnqz3im167dbviw820clagl1yanp2x556zh94jxp4hf"; 903 }; 904 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 905 }; 906 907 bullets-vim = buildVimPluginFrom2Nix { 908 pname = "bullets.vim"; 909 - version = "2022-06-01"; 910 src = fetchFromGitHub { 911 owner = "dkarter"; 912 repo = "bullets.vim"; ··· 990 991 circles-nvim = buildVimPluginFrom2Nix { 992 pname = "circles.nvim"; 993 - version = "2022-05-29"; 994 src = fetchFromGitHub { 995 owner = "projekt0n"; 996 repo = "circles.nvim"; 997 - rev = "a1d72d2e775b187028ee992c422ff1db92ceea4e"; 998 - sha256 = "0nrv56f43mfkwaw53yyyhxmhgjcfvz9q7c6yqrchnj9gh62x22b5"; 999 }; 1000 meta.homepage = "https://github.com/projekt0n/circles.nvim/"; 1001 }; ··· 1010 sha256 = "1whipcrr4pcg1bkivq3l753v3f3glbhkdd6wp6f9czspr7hx2h2d"; 1011 }; 1012 meta.homepage = "https://github.com/xavierd/clang_complete/"; 1013 }; 1014 1015 clever-f-vim = buildVimPluginFrom2Nix { ··· 1386 1387 coc-nvim = buildVimPluginFrom2Nix { 1388 pname = "coc.nvim"; 1389 - version = "2022-05-28"; 1390 src = fetchFromGitHub { 1391 owner = "neoclide"; 1392 repo = "coc.nvim"; 1393 - rev = "d6287a8c6c40fb2aafb7c763b9a262d48de48760"; 1394 - sha256 = "0ra8pia1l18y23pby4nmd665lylbxh72s5nsc7x9gv7phj3l7q6g"; 1395 }; 1396 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1397 }; ··· 1442 sha256 = "1y7j3l1wcpr721cc1vha1f3vs7raand819zdy4izpdjmzph7vgch"; 1443 }; 1444 meta.homepage = "https://github.com/lilydjwg/colorizer/"; 1445 }; 1446 1447 command-t = buildVimPluginFrom2Nix { ··· 1627 1628 copilot-vim = buildVimPluginFrom2Nix { 1629 pname = "copilot.vim"; 1630 - version = "2022-05-20"; 1631 src = fetchFromGitHub { 1632 owner = "github"; 1633 repo = "copilot.vim"; 1634 - rev = "ad102c7a58356414f18680f60c2298246e41ccea"; 1635 - sha256 = "0pnb7mb889nf963flgmp9kzc7bxkgih8pgx7zrmv56qmzlch1mii"; 1636 }; 1637 meta.homepage = "https://github.com/github/copilot.vim/"; 1638 }; 1639 1640 coq-vim = buildVimPluginFrom2Nix { 1641 pname = "coq.vim"; 1642 version = "2013-01-16"; ··· 1651 1652 coq_nvim = buildVimPluginFrom2Nix { 1653 pname = "coq_nvim"; 1654 - version = "2022-05-30"; 1655 src = fetchFromGitHub { 1656 owner = "ms-jpq"; 1657 repo = "coq_nvim"; 1658 - rev = "fa9607249fc2e073ce8fa3805a49f86569d819e3"; 1659 - sha256 = "1bjr3s5xy2b7a50b4cqzyc6bvkm4sn90530ss0jlgxfyxc8bv046"; 1660 }; 1661 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1662 }; ··· 1687 1688 crates-nvim = buildVimPluginFrom2Nix { 1689 pname = "crates.nvim"; 1690 - version = "2022-05-02"; 1691 src = fetchFromGitHub { 1692 owner = "saecki"; 1693 repo = "crates.nvim"; 1694 - rev = "ce6da0ec93d8160e2bf1f0850bc3d0eec1a2e383"; 1695 - sha256 = "1yl0b3fx71axpn1n6dwpdijdq8zjdb028a1gfzzwa6b62ry1qc0q"; 1696 }; 1697 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1698 }; ··· 1709 meta.homepage = "https://github.com/godlygeek/csapprox/"; 1710 }; 1711 1712 csv-vim = buildVimPluginFrom2Nix { 1713 pname = "csv.vim"; 1714 version = "2022-01-12"; ··· 1783 1784 dashboard-nvim = buildVimPluginFrom2Nix { 1785 pname = "dashboard-nvim"; 1786 - version = "2022-05-09"; 1787 src = fetchFromGitHub { 1788 owner = "glepnir"; 1789 repo = "dashboard-nvim"; 1790 - rev = "3b31a80513969752a8c53ff8b16a8e060404cf50"; 1791 - sha256 = "0gcjyywjdsigq7a4jmcg8zgj6na5zagncdgp2a5qs81sa962k798"; 1792 }; 1793 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 1794 }; ··· 2157 2158 diffview-nvim = buildNeovimPluginFrom2Nix { 2159 pname = "diffview.nvim"; 2160 - version = "2022-05-28"; 2161 src = fetchFromGitHub { 2162 owner = "sindrets"; 2163 repo = "diffview.nvim"; 2164 - rev = "08e4340f690d0b611a393eafb633b2fb62f78601"; 2165 - sha256 = "0v7fabqw5ld4s9s3r8wblj7cjf3nbvhgnzawiip0jl4xi77d454d"; 2166 }; 2167 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2168 }; ··· 2193 2194 dressing-nvim = buildVimPluginFrom2Nix { 2195 pname = "dressing.nvim"; 2196 - version = "2022-05-30"; 2197 src = fetchFromGitHub { 2198 owner = "stevearc"; 2199 repo = "dressing.nvim"; 2200 - rev = "b2406a0ea7b88177219ed475a14bc490a4653323"; 2201 - sha256 = "009867kvvzn6kf07la4wbisfbkyxlmj5sgzs83mh75r8j9al7j8n"; 2202 }; 2203 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2204 }; 2205 2206 echodoc-vim = buildVimPluginFrom2Nix { 2207 pname = "echodoc.vim"; 2208 - version = "2021-11-26"; 2209 src = fetchFromGitHub { 2210 owner = "Shougo"; 2211 repo = "echodoc.vim"; 2212 - rev = "42b7fb45c6a45e90410203d9c248b79bc46ea933"; 2213 - sha256 = "14as4q6dnc540in68039c1bbdn4ag86872pbra6h06s5rbhbgzky"; 2214 }; 2215 meta.homepage = "https://github.com/Shougo/echodoc.vim/"; 2216 }; 2217 2218 edge = buildVimPluginFrom2Nix { 2219 pname = "edge"; 2220 - version = "2022-05-26"; 2221 src = fetchFromGitHub { 2222 owner = "sainnhe"; 2223 repo = "edge"; 2224 - rev = "2f2683f918fa1a90f41650682bb53819fc0c1849"; 2225 - sha256 = "0vl3ffrdaz38qax9k2lfvw2wlj94688w6gd1831is17dm9wv50ys"; 2226 }; 2227 meta.homepage = "https://github.com/sainnhe/edge/"; 2228 }; ··· 2303 2304 everforest = buildVimPluginFrom2Nix { 2305 pname = "everforest"; 2306 - version = "2022-05-26"; 2307 src = fetchFromGitHub { 2308 owner = "sainnhe"; 2309 repo = "everforest"; 2310 - rev = "ee24cd4bde3fea5c536a6a319900683825b16adc"; 2311 - sha256 = "1s5d85rjwyqpamidkjwsn52l2pdgz96rspmq6nx5lnis5gdn5idr"; 2312 }; 2313 meta.homepage = "https://github.com/sainnhe/everforest/"; 2314 }; ··· 2363 2364 feline-nvim = buildVimPluginFrom2Nix { 2365 pname = "feline.nvim"; 2366 - version = "2022-05-27"; 2367 src = fetchFromGitHub { 2368 owner = "feline-nvim"; 2369 repo = "feline.nvim"; 2370 - rev = "fba1aaa74ceb0df222a556c6ca0db8f303fa893e"; 2371 - sha256 = "1nlryj4jivlmgbr2j0dvhv9z0nk93gzl8kix76wn37z9prd8zci4"; 2372 }; 2373 meta.homepage = "https://github.com/feline-nvim/feline.nvim/"; 2374 }; ··· 2480 sha256 = "1zsr1536qf7zqdskpshf366m333w66hfjrfdw3ws5yz2l7kq5bcm"; 2481 }; 2482 meta.homepage = "https://github.com/floobits/floobits-neovim/"; 2483 }; 2484 2485 formatter-nvim = buildVimPluginFrom2Nix { ··· 2820 2821 goto-preview = buildVimPluginFrom2Nix { 2822 pname = "goto-preview"; 2823 - version = "2021-12-25"; 2824 src = fetchFromGitHub { 2825 owner = "rmagatti"; 2826 repo = "goto-preview"; 2827 - rev = "7f842e981f81cce14f28c49befad9146c18c3931"; 2828 - sha256 = "018lf4z50j25j5y3lhcw1al2jp6dm9xy39mi9732zx4wa8my8gix"; 2829 }; 2830 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 2831 }; ··· 2842 meta.homepage = "https://github.com/junegunn/goyo.vim/"; 2843 }; 2844 2845 graphviz-vim = buildVimPluginFrom2Nix { 2846 pname = "graphviz.vim"; 2847 version = "2021-04-09"; ··· 2880 2881 gruvbox-material = buildVimPluginFrom2Nix { 2882 pname = "gruvbox-material"; 2883 - version = "2022-05-26"; 2884 src = fetchFromGitHub { 2885 owner = "sainnhe"; 2886 repo = "gruvbox-material"; 2887 - rev = "b47a19b27273f6e02e5342a448a5f82c9bd377f9"; 2888 - sha256 = "0iz3a9s4m8bmaghdd84yjr2hlib3gnm3khjavq97cknsid3cakgh"; 2889 }; 2890 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 2891 }; ··· 3024 3025 hotpot-nvim = buildVimPluginFrom2Nix { 3026 pname = "hotpot.nvim"; 3027 - version = "2022-04-24"; 3028 src = fetchFromGitHub { 3029 owner = "rktjmp"; 3030 repo = "hotpot.nvim"; 3031 - rev = "f481b30f1d93df6016092623199ddc8bfe1624d0"; 3032 - sha256 = "0zqz1m46bpj74l5vckvhaynbdq7vvi8vx1r1lrsjapb0blmfh0fj"; 3033 }; 3034 meta.homepage = "https://github.com/rktjmp/hotpot.nvim/"; 3035 }; ··· 3397 3398 lean-nvim = buildVimPluginFrom2Nix { 3399 pname = "lean.nvim"; 3400 - version = "2022-05-21"; 3401 src = fetchFromGitHub { 3402 owner = "Julian"; 3403 repo = "lean.nvim"; 3404 - rev = "2cc1642188f61778c8c7212b98d01f1a36e89a07"; 3405 - sha256 = "0wbd4agk21zn1icnn79s1dpx8nz6g6j0sfi7jif06w4yysj7cj98"; 3406 }; 3407 meta.homepage = "https://github.com/Julian/lean.nvim/"; 3408 }; ··· 3649 3650 litee-nvim = buildVimPluginFrom2Nix { 3651 pname = "litee.nvim"; 3652 - version = "2022-05-19"; 3653 src = fetchFromGitHub { 3654 owner = "ldelossa"; 3655 repo = "litee.nvim"; 3656 - rev = "f181c7674e8a826ef66d1f67f23e92631477bb7c"; 3657 - sha256 = "0zq4l46c6q8x27lkyzjji1d4i8q5b5s2x198a427d87ps1dswv85"; 3658 }; 3659 meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 3660 }; ··· 3744 3745 lspsaga-nvim = buildVimPluginFrom2Nix { 3746 pname = "lspsaga.nvim"; 3747 - version = "2022-05-18"; 3748 src = fetchFromGitHub { 3749 owner = "tami5"; 3750 repo = "lspsaga.nvim"; 3751 - rev = "39b6faccb57fd640a06c7d73a30507b13263fcbf"; 3752 - sha256 = "09xym8gbrabr0y8bwkb4aq3iwdrd6yb9104gzy7l180pvrjq58qn"; 3753 }; 3754 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3755 }; ··· 3780 3781 lualine-nvim = buildVimPluginFrom2Nix { 3782 pname = "lualine.nvim"; 3783 - version = "2022-05-22"; 3784 src = fetchFromGitHub { 3785 owner = "nvim-lualine"; 3786 repo = "lualine.nvim"; 3787 - rev = "c12b1673107c181e32ce54f2dc4c76a2a884d7ba"; 3788 - sha256 = "13msrlhwm8vsnk50gfx8lzswk50qgzx7namdh6gm1aw4ckmwfsyc"; 3789 }; 3790 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3791 }; ··· 3900 3901 mini-nvim = buildVimPluginFrom2Nix { 3902 pname = "mini.nvim"; 3903 - version = "2022-05-26"; 3904 src = fetchFromGitHub { 3905 owner = "echasnovski"; 3906 repo = "mini.nvim"; 3907 - rev = "75477368c63e3dee65b2a39e6050391ef521f0b8"; 3908 - sha256 = "1i9x44m9f6nakv1vb2pxij7b71pyblm2w55nlbbklja19diggw3n"; 3909 }; 3910 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 3911 }; ··· 4248 4249 neoformat = buildVimPluginFrom2Nix { 4250 pname = "neoformat"; 4251 - version = "2022-05-27"; 4252 src = fetchFromGitHub { 4253 owner = "sbdchd"; 4254 repo = "neoformat"; 4255 - rev = "c010862fa151f1d6a009d94a0acbe49514781cdc"; 4256 - sha256 = "08y0srr1i5n7d15w3shp8cdj4gqhdxpb6311k879amb28am5n8zk"; 4257 }; 4258 meta.homepage = "https://github.com/sbdchd/neoformat/"; 4259 }; 4260 4261 neogit = buildVimPluginFrom2Nix { 4262 pname = "neogit"; 4263 - version = "2022-05-16"; 4264 src = fetchFromGitHub { 4265 owner = "TimUntersberger"; 4266 repo = "neogit"; 4267 - rev = "1453acd27c38fb4374093bc5c2c85dd1fc03d689"; 4268 - sha256 = "1hrk8p0ma43p30ka8zv3k0czv66qxy88kmv34m5lc813qsrzhivn"; 4269 }; 4270 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 4271 }; ··· 4320 4321 neorg = buildVimPluginFrom2Nix { 4322 pname = "neorg"; 4323 - version = "2022-05-26"; 4324 src = fetchFromGitHub { 4325 owner = "nvim-neorg"; 4326 repo = "neorg"; 4327 - rev = "d63ad5129b935b84f975df12c9669a466d7c6c23"; 4328 - sha256 = "1w6mwy6pan0cpm997lwx2fm45lfd4mm2lw8adpivlkw3jknaallk"; 4329 }; 4330 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 4331 }; ··· 4368 4369 neoterm = buildVimPluginFrom2Nix { 4370 pname = "neoterm"; 4371 - version = "2022-05-27"; 4372 src = fetchFromGitHub { 4373 owner = "kassio"; 4374 repo = "neoterm"; 4375 - rev = "5343120620544c00c98e0f52cb15a76944b74fee"; 4376 - sha256 = "0v6jwrfmlr3hnczgiygxx99289w9g8jf3nzr0qg2qsc19239glqq"; 4377 }; 4378 meta.homepage = "https://github.com/kassio/neoterm/"; 4379 }; ··· 4476 4477 neuron-vim = buildVimPluginFrom2Nix { 4478 pname = "neuron.vim"; 4479 - version = "2020-12-06"; 4480 src = fetchFromGitHub { 4481 owner = "fiatjaf"; 4482 repo = "neuron.vim"; 4483 - rev = "0b820b2191bf239c38e62ffa63501333590d6810"; 4484 - sha256 = "0x00y0a46jwqq9gx741m3j7p78ps7nycp5hl3bjxqmwj289gc12y"; 4485 }; 4486 meta.homepage = "https://github.com/fiatjaf/neuron.vim/"; 4487 }; ··· 4500 4501 nightfox-nvim = buildVimPluginFrom2Nix { 4502 pname = "nightfox.nvim"; 4503 - version = "2022-05-25"; 4504 src = fetchFromGitHub { 4505 owner = "EdenEast"; 4506 repo = "nightfox.nvim"; 4507 - rev = "b37efa583fe7edbf347a25ff5ce07514c9316c88"; 4508 - sha256 = "19gx3vr0jz8b26vlfmg13nx70r411i6xdn6k5nsalf6lfapp01ky"; 4509 }; 4510 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 4511 }; ··· 4548 4549 nord-vim = buildVimPluginFrom2Nix { 4550 pname = "nord-vim"; 4551 - version = "2022-05-14"; 4552 src = fetchFromGitHub { 4553 owner = "arcticicestudio"; 4554 repo = "nord-vim"; 4555 - rev = "d32b4dd6aa494c7e18aed11222fb8fed2034c515"; 4556 - sha256 = "0k1bhr2nyqrr350bp6jcp1l4x67yjdqfnq922ywyaaji1adbr1i1"; 4557 }; 4558 meta.homepage = "https://github.com/arcticicestudio/nord-vim/"; 4559 }; ··· 4608 4609 null-ls-nvim = buildVimPluginFrom2Nix { 4610 pname = "null-ls.nvim"; 4611 - version = "2022-05-30"; 4612 src = fetchFromGitHub { 4613 owner = "jose-elias-alvarez"; 4614 repo = "null-ls.nvim"; 4615 - rev = "5ef0680d66d4fbebdcc8bed8cabe056470c802ff"; 4616 - sha256 = "1xlflkd2zivc0dd6w84b27i9wcx99dp5jw2j8gq8a7n54043jwq4"; 4617 }; 4618 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4619 }; ··· 4680 4681 nvim-biscuits = buildNeovimPluginFrom2Nix { 4682 pname = "nvim-biscuits"; 4683 - version = "2021-11-12"; 4684 src = fetchFromGitHub { 4685 owner = "code-biscuits"; 4686 repo = "nvim-biscuits"; 4687 - rev = "15a0cb1273bd36d5a734210cdc3406fb4bcfb733"; 4688 - sha256 = "15incx76ps8k4bra3s6ml66ckjhzjgbc7q2njs61yzfg46vdbhsd"; 4689 }; 4690 meta.homepage = "https://github.com/code-biscuits/nvim-biscuits/"; 4691 }; 4692 4693 nvim-bqf = buildVimPluginFrom2Nix { 4694 pname = "nvim-bqf"; 4695 - version = "2022-05-24"; 4696 src = fetchFromGitHub { 4697 owner = "kevinhwang91"; 4698 repo = "nvim-bqf"; 4699 - rev = "f1551f355ce418dfa435bf972c53c4f385d6287d"; 4700 - sha256 = "0vfd9hfwgcca7nypppisz9xi5d43420gb0rvfrggppjwfrsw3cj9"; 4701 }; 4702 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 4703 }; ··· 4824 4825 nvim-dap = buildVimPluginFrom2Nix { 4826 pname = "nvim-dap"; 4827 - version = "2022-05-26"; 4828 src = fetchFromGitHub { 4829 owner = "mfussenegger"; 4830 repo = "nvim-dap"; 4831 - rev = "0062c19424ac751f47227b440c3d6c7e584687ff"; 4832 - sha256 = "1a3isml45wp6sdwhyc7ch4z1vpfv23lrcnnljykk2dp5iznfa3da"; 4833 }; 4834 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 4835 }; ··· 4896 4897 nvim-gdb = buildVimPluginFrom2Nix { 4898 pname = "nvim-gdb"; 4899 - version = "2022-05-12"; 4900 src = fetchFromGitHub { 4901 owner = "sakhnik"; 4902 repo = "nvim-gdb"; 4903 - rev = "9c630705829fbe8c21a9379ae2be948560189d80"; 4904 - sha256 = "1cdc2r12k1nma37vicshy4kbk79ap8qj040rscxzl41z96ff8v0b"; 4905 }; 4906 meta.homepage = "https://github.com/sakhnik/nvim-gdb/"; 4907 }; ··· 4956 4957 nvim-jdtls = buildVimPluginFrom2Nix { 4958 pname = "nvim-jdtls"; 4959 - version = "2022-05-06"; 4960 src = fetchFromGitHub { 4961 owner = "mfussenegger"; 4962 repo = "nvim-jdtls"; 4963 - rev = "f582b5be2ae1fee2e5dc974cd9b979a1ab08cca6"; 4964 - sha256 = "0bfdp6xbq7qr7185m06ccfmln2gc24vc1215cxczm1bpyrh98ncq"; 4965 }; 4966 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 4967 }; ··· 4992 4993 nvim-lightline-lsp = buildVimPluginFrom2Nix { 4994 pname = "nvim-lightline-lsp"; 4995 - version = "2022-01-06"; 4996 src = fetchFromGitHub { 4997 owner = "josa42"; 4998 repo = "nvim-lightline-lsp"; 4999 - rev = "d9e61801f54c8824b59e93068865e3bc4f1ca0b8"; 5000 - sha256 = "0sd38c4cp7i6prgr86b5nq9fhpi2h1yrn3ggs3d7my65ayz759m6"; 5001 }; 5002 meta.homepage = "https://github.com/josa42/nvim-lightline-lsp/"; 5003 }; ··· 5028 5029 nvim-lspconfig = buildVimPluginFrom2Nix { 5030 pname = "nvim-lspconfig"; 5031 - version = "2022-05-22"; 5032 src = fetchFromGitHub { 5033 owner = "neovim"; 5034 repo = "nvim-lspconfig"; 5035 - rev = "b86a37caf7a4e53e62ba883aef5889b590260de9"; 5036 - sha256 = "0bp1wqiwngrcl4isnnk12v3kzzrvjfbwhx79jvfzqnlqnl9q4m1p"; 5037 }; 5038 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5039 }; ··· 5052 5053 nvim-metals = buildVimPluginFrom2Nix { 5054 pname = "nvim-metals"; 5055 - version = "2022-05-27"; 5056 src = fetchFromGitHub { 5057 owner = "scalameta"; 5058 repo = "nvim-metals"; 5059 - rev = "9f8272802d35928df6c739f8e06f0e2767ad53a7"; 5060 - sha256 = "1h918npmwf46ddrr7hfdxgbmfvdvczhxb8lpdwqia76zx1pz14qs"; 5061 }; 5062 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 5063 }; ··· 5088 5089 nvim-notify = buildVimPluginFrom2Nix { 5090 pname = "nvim-notify"; 5091 - version = "2022-05-16"; 5092 src = fetchFromGitHub { 5093 owner = "rcarriga"; 5094 repo = "nvim-notify"; 5095 - rev = "c6ca279271f03db5ee03523d1c312ba624d3fa75"; 5096 - sha256 = "096pk6gzxvwg55acz9r3wmrmdbz9s0ccyikmm0r91y42aa13xl73"; 5097 }; 5098 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 5099 }; ··· 5160 5161 nvim-tree-lua = buildVimPluginFrom2Nix { 5162 pname = "nvim-tree.lua"; 5163 - version = "2022-05-30"; 5164 src = fetchFromGitHub { 5165 owner = "kyazdani42"; 5166 repo = "nvim-tree.lua"; 5167 - rev = "8198fa01fcb1469b20a268d6f9f0c5f7dbedc424"; 5168 - sha256 = "14s914imkfxwbwk2a0vrq9r1s4hy1lsy2crf2h2p7g9cm7y0mkhd"; 5169 }; 5170 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 5171 }; 5172 5173 nvim-treesitter = buildVimPluginFrom2Nix { 5174 pname = "nvim-treesitter"; 5175 - version = "2022-05-29"; 5176 src = fetchFromGitHub { 5177 owner = "nvim-treesitter"; 5178 repo = "nvim-treesitter"; 5179 - rev = "8c56988d79f95a9d75b001a0a9e302f7b1c4b384"; 5180 - sha256 = "17qii6j681v06f6kmj7p2hbrcjpvdqicii7lfnz81dq1ga522mkw"; 5181 }; 5182 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5183 }; ··· 5268 5269 nvim-web-devicons = buildVimPluginFrom2Nix { 5270 pname = "nvim-web-devicons"; 5271 - version = "2022-05-26"; 5272 src = fetchFromGitHub { 5273 owner = "kyazdani42"; 5274 repo = "nvim-web-devicons"; 5275 - rev = "8a3ab5eb181b5a10d6ed031f3eeafa1acd2058f9"; 5276 - sha256 = "0yvzhv8m6zbrgnfa8x4z8sii2jx2rs4l96y5zh368ywn4ih7p8d8"; 5277 }; 5278 meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/"; 5279 }; ··· 5352 5353 octo-nvim = buildVimPluginFrom2Nix { 5354 pname = "octo.nvim"; 5355 - version = "2022-05-23"; 5356 src = fetchFromGitHub { 5357 owner = "pwntester"; 5358 repo = "octo.nvim"; 5359 - rev = "5517cbdf302be2abc4ac43e5b8b2a812d0222bbb"; 5360 - sha256 = "0lndw6dhkwqm6kx5d9iizdjkvmk45yzrbx05fz6cz22mmyzrxka2"; 5361 }; 5362 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 5363 }; 5364 5365 one-nvim = buildVimPluginFrom2Nix { 5366 pname = "one-nvim"; 5367 version = "2021-06-10"; ··· 5448 5449 orgmode = buildVimPluginFrom2Nix { 5450 pname = "orgmode"; 5451 - version = "2022-05-29"; 5452 src = fetchFromGitHub { 5453 owner = "nvim-orgmode"; 5454 repo = "orgmode"; 5455 - rev = "35f4fb6faf7b26d8c09e382092f0ece0bc11ebd7"; 5456 - sha256 = "10iwn09sjcbckphpndrnhn76ls336gybwm53iwji582shyx6wmsf"; 5457 }; 5458 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 5459 }; ··· 5472 5473 packer-nvim = buildVimPluginFrom2Nix { 5474 pname = "packer.nvim"; 5475 - version = "2022-03-23"; 5476 src = fetchFromGitHub { 5477 owner = "wbthomason"; 5478 repo = "packer.nvim"; 5479 - rev = "4dedd3b08f8c6e3f84afbce0c23b66320cd2a8f2"; 5480 - sha256 = "09sqfak384lhqr37003bq4wm9v0hi690ilag89z6cw5c0fnsysbl"; 5481 }; 5482 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 5483 }; ··· 5496 5497 papercolor-theme = buildVimPluginFrom2Nix { 5498 pname = "papercolor-theme"; 5499 - version = "2022-04-30"; 5500 src = fetchFromGitHub { 5501 owner = "NLKNguyen"; 5502 repo = "papercolor-theme"; 5503 - rev = "beb86c7630e19314f5990acef81f9823bbb5bf3c"; 5504 - sha256 = "14jf8fm1bjcmbw3mbr1a5731bac4i4mb8fv9ahdxd8i9349nyj3c"; 5505 }; 5506 meta.homepage = "https://github.com/NLKNguyen/papercolor-theme/"; 5507 }; ··· 5592 5593 plenary-nvim = buildNeovimPluginFrom2Nix { 5594 pname = "plenary.nvim"; 5595 - version = "2022-05-21"; 5596 src = fetchFromGitHub { 5597 owner = "nvim-lua"; 5598 repo = "plenary.nvim"; 5599 - rev = "1da13add868968802157a0234136d5b1fbc34dfe"; 5600 - sha256 = "019kj1iv941shzzj8343yqavw894f4819r5h58p4fhs3fk40qq6b"; 5601 }; 5602 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 5603 }; ··· 5870 5871 refactoring-nvim = buildVimPluginFrom2Nix { 5872 pname = "refactoring.nvim"; 5873 - version = "2022-05-28"; 5874 src = fetchFromGitHub { 5875 owner = "theprimeagen"; 5876 repo = "refactoring.nvim"; 5877 - rev = "0210e88fdcc8032046289ed654ef39779d97e343"; 5878 - sha256 = "11mjx1r1cjagf15yii3rjf09is3y68kd6gacgfp71z39qxqgicm9"; 5879 }; 5880 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 5881 }; ··· 6207 6208 sonokai = buildVimPluginFrom2Nix { 6209 pname = "sonokai"; 6210 - version = "2022-05-26"; 6211 src = fetchFromGitHub { 6212 owner = "sainnhe"; 6213 repo = "sonokai"; 6214 - rev = "4cb3cae7d95e452569962d9ba05deb0e48ec4c12"; 6215 - sha256 = "1rccaaca1l0hc5hv1js831k5sggvzkp3zin5narwa7p20w6jqm3d"; 6216 }; 6217 meta.homepage = "https://github.com/sainnhe/sonokai/"; 6218 }; ··· 6277 meta.homepage = "https://github.com/edluffy/specs.nvim/"; 6278 }; 6279 6280 splice-vim = buildVimPluginFrom2Nix { 6281 pname = "splice.vim"; 6282 version = "2020-01-15"; ··· 6570 6571 tagalong-vim = buildVimPluginFrom2Nix { 6572 pname = "tagalong.vim"; 6573 - version = "2022-05-16"; 6574 src = fetchFromGitHub { 6575 owner = "AndrewRadev"; 6576 repo = "tagalong.vim"; 6577 - rev = "04a6102cfa67e3e384593ced2226d4c054d379d9"; 6578 - sha256 = "1kjblsn5gglqz57vinlghjknn3s39q2r11vdqgk2xfdaqvrvfhk5"; 6579 }; 6580 meta.homepage = "https://github.com/AndrewRadev/tagalong.vim/"; 6581 }; ··· 6690 6691 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 6692 pname = "telescope-file-browser.nvim"; 6693 - version = "2022-05-28"; 6694 src = fetchFromGitHub { 6695 owner = "nvim-telescope"; 6696 repo = "telescope-file-browser.nvim"; 6697 - rev = "ea7905ed9b13bcf50e0ba4f3bff13330028d298c"; 6698 - sha256 = "0zzbgm9v0rzdk9c04qjhi3k6wgkp4k6rplw8lqq1wxxa0ffwvqgz"; 6699 }; 6700 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 6701 }; ··· 6714 6715 telescope-fzf-native-nvim = buildVimPluginFrom2Nix { 6716 pname = "telescope-fzf-native.nvim"; 6717 - version = "2022-05-15"; 6718 src = fetchFromGitHub { 6719 owner = "nvim-telescope"; 6720 repo = "telescope-fzf-native.nvim"; 6721 - rev = "2330a7eac13f9147d6fe9ce955cb99b6c1a0face"; 6722 - sha256 = "107qh744nw316clvm5nhn2xlb663j59bq346lal12mlvd6wkrsbc"; 6723 }; 6724 meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; 6725 }; ··· 6859 6860 telescope-nvim = buildVimPluginFrom2Nix { 6861 pname = "telescope.nvim"; 6862 - version = "2022-05-29"; 6863 src = fetchFromGitHub { 6864 owner = "nvim-telescope"; 6865 repo = "telescope.nvim"; 6866 - rev = "54be102e20ee4acaaa17e9fce8be07fb586630df"; 6867 - sha256 = "0w4h02xkdmjjmz5fr98h24ylcq7jdm3mg1x9hka9cqdvdsdbck1s"; 6868 }; 6869 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 6870 }; ··· 7988 7989 vim-clap = buildVimPluginFrom2Nix { 7990 pname = "vim-clap"; 7991 - version = "2022-05-29"; 7992 src = fetchFromGitHub { 7993 owner = "liuchengxu"; 7994 repo = "vim-clap"; 7995 - rev = "acdf27bab79e9c40adbbb25fe4d3ed12a957d008"; 7996 - sha256 = "1qhmf34qc9kd1khwr8k57f6x41qyx3avivaz7n3p7aslsnwryz1v"; 7997 }; 7998 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 7999 }; ··· 8060 8061 vim-codefmt = buildVimPluginFrom2Nix { 8062 pname = "vim-codefmt"; 8063 - version = "2022-02-09"; 8064 src = fetchFromGitHub { 8065 owner = "google"; 8066 repo = "vim-codefmt"; 8067 - rev = "27e5ac299a0714025cc46fc1da11694a8662b058"; 8068 - sha256 = "06zp45w1mxq075lrw1x2p87l4gdc5fijgag4mj7j61jd2x92xsx7"; 8069 }; 8070 meta.homepage = "https://github.com/google/vim-codefmt/"; 8071 }; ··· 8252 8253 vim-dadbod = buildVimPluginFrom2Nix { 8254 pname = "vim-dadbod"; 8255 - version = "2022-03-26"; 8256 src = fetchFromGitHub { 8257 owner = "tpope"; 8258 repo = "vim-dadbod"; 8259 - rev = "d6b9957a1e13f34fb66795fad729c611b2513922"; 8260 - sha256 = "14a0mbhcw10400g6ybj6h8nq5bis9hba76qvjx5mph7vbb3rhjwn"; 8261 }; 8262 meta.homepage = "https://github.com/tpope/vim-dadbod/"; 8263 }; ··· 8696 8697 vim-floaterm = buildVimPluginFrom2Nix { 8698 pname = "vim-floaterm"; 8699 - version = "2022-05-25"; 8700 src = fetchFromGitHub { 8701 owner = "voldikss"; 8702 repo = "vim-floaterm"; 8703 - rev = "8cd8d3bcbe8075f1126be151ba01b90b4370734a"; 8704 - sha256 = "1nv18sn0nr75b9f9hf4ax1f22srqv2basayy1yz2mc42m0mp8ra2"; 8705 }; 8706 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8707 }; ··· 8768 8769 vim-fugitive = buildVimPluginFrom2Nix { 8770 pname = "vim-fugitive"; 8771 - version = "2022-05-29"; 8772 src = fetchFromGitHub { 8773 owner = "tpope"; 8774 repo = "vim-fugitive"; 8775 - rev = "92870eb6d2f9663f34f20537ef0393b5ffeb2291"; 8776 - sha256 = "0d60kdp539il0vka0ixayf8cq9xb756bafbnjw1mz725s0h5r927"; 8777 }; 8778 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 8779 }; ··· 9694 9695 vim-markbar = buildVimPluginFrom2Nix { 9696 pname = "vim-markbar"; 9697 - version = "2022-05-14"; 9698 src = fetchFromGitHub { 9699 owner = "Yilin-Yang"; 9700 repo = "vim-markbar"; 9701 - rev = "7a57b2fb54ee36cbc196674f2929e1c334eb9907"; 9702 - sha256 = "02piwnqh1pca7v1h75wn5jr5kh4ik4jj3xmz32b7z8a521wfawa9"; 9703 }; 9704 meta.homepage = "https://github.com/Yilin-Yang/vim-markbar/"; 9705 }; ··· 10199 10200 vim-pandoc-syntax = buildVimPluginFrom2Nix { 10201 pname = "vim-pandoc-syntax"; 10202 - version = "2022-02-16"; 10203 src = fetchFromGitHub { 10204 owner = "vim-pandoc"; 10205 repo = "vim-pandoc-syntax"; 10206 - rev = "7bea0ba8929749b2a471520af87635163fb28bdf"; 10207 - sha256 = "1dqd11qmb5jlkmalp10niysz1c2rv2pzwq332i3incq1v1l5146j"; 10208 }; 10209 meta.homepage = "https://github.com/vim-pandoc/vim-pandoc-syntax/"; 10210 }; ··· 10703 10704 vim-scriptease = buildVimPluginFrom2Nix { 10705 pname = "vim-scriptease"; 10706 - version = "2022-05-29"; 10707 src = fetchFromGitHub { 10708 owner = "tpope"; 10709 repo = "vim-scriptease"; 10710 - rev = "66da29cf9bf679c4d011b308bd494204dc50d251"; 10711 - sha256 = "1zxypaj0396khnj5iw3icr30hsm52lrr9kcgpqp3zwnmxk42chrd"; 10712 }; 10713 meta.homepage = "https://github.com/tpope/vim-scriptease/"; 10714 }; ··· 11003 11004 vim-startuptime = buildVimPluginFrom2Nix { 11005 pname = "vim-startuptime"; 11006 - version = "2022-03-17"; 11007 src = fetchFromGitHub { 11008 owner = "dstein64"; 11009 repo = "vim-startuptime"; 11010 - rev = "61f122ebc41e9bcf1793c752a728db59feee77bb"; 11011 - sha256 = "1p9b2xgfcfbikadb2250ja0zbz1hcj02knqj5jw5kr3fp170100h"; 11012 }; 11013 meta.homepage = "https://github.com/dstein64/vim-startuptime/"; 11014 }; ··· 11160 11161 vim-test = buildVimPluginFrom2Nix { 11162 pname = "vim-test"; 11163 - version = "2022-05-24"; 11164 src = fetchFromGitHub { 11165 owner = "vim-test"; 11166 repo = "vim-test"; 11167 - rev = "99e2bdd80bc9aeb45eb24e4637dd5d2db05e88fb"; 11168 - sha256 = "0vwr2hsfa7ya97501998k28smhx437hclsa5f5zx1j8np1zkspbv"; 11169 }; 11170 meta.homepage = "https://github.com/vim-test/vim-test/"; 11171 }; ··· 11832 11833 vimspector = buildVimPluginFrom2Nix { 11834 pname = "vimspector"; 11835 - version = "2022-05-19"; 11836 src = fetchFromGitHub { 11837 owner = "puremourning"; 11838 repo = "vimspector"; 11839 - rev = "4e03d5ea5c2d7efb8d1f5e73dcc917ad53b0bfb9"; 11840 - sha256 = "0501qcy0kx4nd1ny1fb2klp8fpss3j5vvcynhvx3pn9jxj77mpqn"; 11841 fetchSubmodules = true; 11842 }; 11843 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 12110 12111 zephyr-nvim = buildVimPluginFrom2Nix { 12112 pname = "zephyr-nvim"; 12113 - version = "2022-05-29"; 12114 src = fetchFromGitHub { 12115 owner = "glepnir"; 12116 repo = "zephyr-nvim"; 12117 - rev = "8e6f37d18d9aff6a04bfd9d6fd8a988bfafa9d0b"; 12118 - sha256 = "0nhi40qffzwkkb2a3454i2v8c7fa375lzizylam9ms86d0g9iy7k"; 12119 }; 12120 meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 12121 }; ··· 12158 12159 catppuccin-nvim = buildVimPluginFrom2Nix { 12160 pname = "catppuccin-nvim"; 12161 - version = "2022-05-29"; 12162 src = fetchFromGitHub { 12163 owner = "catppuccin"; 12164 repo = "nvim"; 12165 - rev = "a40c5d8fe2219df22fe87625169a62c90cab917a"; 12166 - sha256 = "0d12dzqary3hbqzdzl2mgnkcgg3g8yn1rcrn94c064bw0mivlhx7"; 12167 }; 12168 meta.homepage = "https://github.com/catppuccin/nvim/"; 12169 }; 12170 12171 chad = buildVimPluginFrom2Nix { 12172 pname = "chad"; 12173 - version = "2022-05-30"; 12174 src = fetchFromGitHub { 12175 owner = "ms-jpq"; 12176 repo = "chadtree"; 12177 - rev = "cf2170bb881eebd62aa3b96c4af18998f77c4138"; 12178 - sha256 = "12vl7m4wc3jsqcbaf011bl9y0qd50rxylli8b1k75zdfwf66f587"; 12179 }; 12180 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 12181 }; ··· 12242 12243 rose-pine = buildVimPluginFrom2Nix { 12244 pname = "rose-pine"; 12245 - version = "2022-05-14"; 12246 src = fetchFromGitHub { 12247 owner = "rose-pine"; 12248 repo = "neovim"; 12249 - rev = "3a6bcc2706409e08280354925006e8a8a01620cb"; 12250 - sha256 = "1l796ap9lsgk5bhy9g72m5nmficbigrfa5rix90dn6mam37jhc8s"; 12251 }; 12252 meta.homepage = "https://github.com/rose-pine/neovim/"; 12253 };
··· 111 meta.homepage = "https://github.com/vim-scripts/Improved-AnsiEsc/"; 112 }; 113 114 + Ionide-vim = buildVimPluginFrom2Nix { 115 + pname = "Ionide-vim"; 116 + version = "2022-05-13"; 117 + src = fetchFromGitHub { 118 + owner = "ionide"; 119 + repo = "Ionide-vim"; 120 + rev = "3092ca0fed470c01457d0cecbe5e108e2b008f0d"; 121 + sha256 = "0fbkmsqpnwrh8skv5yiva8y4aj4d7zm2z5vxbzl0hl6k728dwxvz"; 122 + }; 123 + meta.homepage = "https://github.com/ionide/Ionide-vim/"; 124 + }; 125 + 126 Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix { 127 pname = "Jenkinsfile-vim-syntax"; 128 version = "2021-01-26"; ··· 281 282 SchemaStore-nvim = buildVimPluginFrom2Nix { 283 pname = "SchemaStore.nvim"; 284 + version = "2022-05-30"; 285 src = fetchFromGitHub { 286 owner = "b0o"; 287 repo = "SchemaStore.nvim"; 288 + rev = "af73c24dfbc245a99a16d30444003fa86267d254"; 289 + sha256 = "04d8jwwrfdlcdvn2jvmw6n9ih9zz5a4aympyzmsnnnc8kgzzjk5j"; 290 }; 291 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 292 }; ··· 341 342 SpaceVim = buildVimPluginFrom2Nix { 343 pname = "SpaceVim"; 344 + version = "2022-06-04"; 345 src = fetchFromGitHub { 346 owner = "SpaceVim"; 347 repo = "SpaceVim"; 348 + rev = "4397ec5814e311f9079e5ac3d54190fe0fac4a47"; 349 + sha256 = "0vf0qr5xj7p78z6br1wdj3la88xa5xb4dk8sk2nsrvayzl0xqvgz"; 350 }; 351 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 352 }; ··· 498 499 aerial-nvim = buildVimPluginFrom2Nix { 500 pname = "aerial.nvim"; 501 + version = "2022-05-31"; 502 src = fetchFromGitHub { 503 owner = "stevearc"; 504 repo = "aerial.nvim"; 505 + rev = "ece90c4820e7cea7be0aade9d19ef11f53bbc028"; 506 + sha256 = "1wb2hs4navxmr6d3ify653w7wwpg32zrvpqb2kc413rsaxhbw5q0"; 507 }; 508 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 509 }; ··· 534 535 ale = buildVimPluginFrom2Nix { 536 pname = "ale"; 537 + version = "2022-06-04"; 538 src = fetchFromGitHub { 539 owner = "dense-analysis"; 540 repo = "ale"; 541 + rev = "9bdc923624a489aa4c0a44cb1c77b984ad90e8ba"; 542 + sha256 = "1s6ba5h0cv8y80x2nv9m98q724xv242nqzgxxh7bniakzp3jm4j4"; 543 }; 544 meta.homepage = "https://github.com/dense-analysis/ale/"; 545 }; ··· 774 775 barbar-nvim = buildVimPluginFrom2Nix { 776 pname = "barbar.nvim"; 777 + version = "2022-05-31"; 778 src = fetchFromGitHub { 779 owner = "romgrk"; 780 repo = "barbar.nvim"; 781 + rev = "0bd9de963bcc5c35e9cb9f8bcf2035042927503f"; 782 + sha256 = "059brc6lc87n9ghfj5b9l1pygq5if9yp56prj46ig1w8ad5lgsd4"; 783 }; 784 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 785 }; ··· 906 907 bufferline-nvim = buildVimPluginFrom2Nix { 908 pname = "bufferline.nvim"; 909 + version = "2022-06-01"; 910 src = fetchFromGitHub { 911 owner = "akinsho"; 912 repo = "bufferline.nvim"; 913 + rev = "e9697f74612f90cc1fac7b5a973e1aa1323f9aff"; 914 + sha256 = "1f5qarhf9d3i0b40l9lyigjfpgx9ji3lalw0zbgs0iwga28q2sih"; 915 }; 916 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 917 }; 918 919 bullets-vim = buildVimPluginFrom2Nix { 920 pname = "bullets.vim"; 921 + version = "2022-01-30"; 922 src = fetchFromGitHub { 923 owner = "dkarter"; 924 repo = "bullets.vim"; ··· 1002 1003 circles-nvim = buildVimPluginFrom2Nix { 1004 pname = "circles.nvim"; 1005 + version = "2022-06-03"; 1006 src = fetchFromGitHub { 1007 owner = "projekt0n"; 1008 repo = "circles.nvim"; 1009 + rev = "1d1bae3dd7669efcb8d394c6c78d7c32c5c16f71"; 1010 + sha256 = "1hg89i080xy7wqwsqfhybkfp09689dynjxc86wp2g09rf4lxkgjs"; 1011 }; 1012 meta.homepage = "https://github.com/projekt0n/circles.nvim/"; 1013 }; ··· 1022 sha256 = "1whipcrr4pcg1bkivq3l753v3f3glbhkdd6wp6f9czspr7hx2h2d"; 1023 }; 1024 meta.homepage = "https://github.com/xavierd/clang_complete/"; 1025 + }; 1026 + 1027 + clangd_extensions-nvim = buildVimPluginFrom2Nix { 1028 + pname = "clangd_extensions.nvim"; 1029 + version = "2022-05-31"; 1030 + src = fetchFromGitHub { 1031 + owner = "p00f"; 1032 + repo = "clangd_extensions.nvim"; 1033 + rev = "81b56d41d8ab791509a8464b0afc54144be9f23d"; 1034 + sha256 = "13mainbpndl3mlvalghkvykbqjpvdp5pbhk5ma93vgj38sk6ph0d"; 1035 + }; 1036 + meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; 1037 }; 1038 1039 clever-f-vim = buildVimPluginFrom2Nix { ··· 1410 1411 coc-nvim = buildVimPluginFrom2Nix { 1412 pname = "coc.nvim"; 1413 + version = "2022-06-03"; 1414 src = fetchFromGitHub { 1415 owner = "neoclide"; 1416 repo = "coc.nvim"; 1417 + rev = "102fe82be44e878d6eefdab2cb2fc4aaa5a346f3"; 1418 + sha256 = "0j5xhs1p14z0x622mxf5dsgj0byic26rc02xs1g3hm1hmy1fj530"; 1419 }; 1420 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1421 }; ··· 1466 sha256 = "1y7j3l1wcpr721cc1vha1f3vs7raand819zdy4izpdjmzph7vgch"; 1467 }; 1468 meta.homepage = "https://github.com/lilydjwg/colorizer/"; 1469 + }; 1470 + 1471 + com-cloudedmountain-ide-neovim = buildVimPluginFrom2Nix { 1472 + pname = "com.cloudedmountain.ide.neovim"; 1473 + version = "2022-05-19"; 1474 + src = fetchFromGitHub { 1475 + owner = "Domeee"; 1476 + repo = "com.cloudedmountain.ide.neovim"; 1477 + rev = "d5d6c5151e8643abfabd22e9fe7e31467c679be2"; 1478 + sha256 = "1h2379ibzadv7549i13zjzavya7n7q8z532awvwqdr8incja5b4c"; 1479 + }; 1480 + meta.homepage = "https://github.com/Domeee/com.cloudedmountain.ide.neovim/"; 1481 }; 1482 1483 command-t = buildVimPluginFrom2Nix { ··· 1663 1664 copilot-vim = buildVimPluginFrom2Nix { 1665 pname = "copilot.vim"; 1666 + version = "2022-06-03"; 1667 src = fetchFromGitHub { 1668 owner = "github"; 1669 repo = "copilot.vim"; 1670 + rev = "042543ffc2e77a819da0415da1af6b1842a0f9c2"; 1671 + sha256 = "1anyphnyrigidsmqlczf92y46v8zi9gz3zlnzzyw1dkpp0dzm15h"; 1672 }; 1673 meta.homepage = "https://github.com/github/copilot.vim/"; 1674 }; 1675 1676 + coq-artifacts = buildVimPluginFrom2Nix { 1677 + pname = "coq.artifacts"; 1678 + version = "2022-06-04"; 1679 + src = fetchFromGitHub { 1680 + owner = "ms-jpq"; 1681 + repo = "coq.artifacts"; 1682 + rev = "d89dd1f003cdaca6a08f87894d99de77ffb077f2"; 1683 + sha256 = "0n2naw94asbw4dqnzpkjmxwmgyfyw09fk7a42111n44mb48xi9qc"; 1684 + }; 1685 + meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; 1686 + }; 1687 + 1688 + coq-thirdparty = buildVimPluginFrom2Nix { 1689 + pname = "coq.thirdparty"; 1690 + version = "2022-06-04"; 1691 + src = fetchFromGitHub { 1692 + owner = "ms-jpq"; 1693 + repo = "coq.thirdparty"; 1694 + rev = "da33c118f5a69776cfc85e7db102a0bf88984dc2"; 1695 + sha256 = "0kkadnbk1176d4ykz6hcsi7nkc1vmk0x1h1q2d9zb61l4h5agxmh"; 1696 + }; 1697 + meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 1698 + }; 1699 + 1700 coq-vim = buildVimPluginFrom2Nix { 1701 pname = "coq.vim"; 1702 version = "2013-01-16"; ··· 1711 1712 coq_nvim = buildVimPluginFrom2Nix { 1713 pname = "coq_nvim"; 1714 + version = "2022-06-04"; 1715 src = fetchFromGitHub { 1716 owner = "ms-jpq"; 1717 repo = "coq_nvim"; 1718 + rev = "0a7e549cb0a3e4c7eeb54e3719457600e702de96"; 1719 + sha256 = "1n96sv9kk5igcgdx291c8lr5y6b5wavsycq0mdg60h7078d21cd3"; 1720 }; 1721 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1722 }; ··· 1747 1748 crates-nvim = buildVimPluginFrom2Nix { 1749 pname = "crates.nvim"; 1750 + version = "2022-05-30"; 1751 src = fetchFromGitHub { 1752 owner = "saecki"; 1753 repo = "crates.nvim"; 1754 + rev = "cceea1a4f2d0131f43b6d17ad5c793aded19443b"; 1755 + sha256 = "1hx53p8zgpaa6ql9z50gfcjlspsdd3p2hz1yak9r5qp9j94fk1as"; 1756 }; 1757 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1758 }; ··· 1769 meta.homepage = "https://github.com/godlygeek/csapprox/"; 1770 }; 1771 1772 + csharpls-extended-lsp-nvim = buildVimPluginFrom2Nix { 1773 + pname = "csharpls-extended-lsp.nvim"; 1774 + version = "2022-03-08"; 1775 + src = fetchFromGitHub { 1776 + owner = "Decodetalkers"; 1777 + repo = "csharpls-extended-lsp.nvim"; 1778 + rev = "a1985fd1cd3c67d5e1b1be7c9283222fd46e7615"; 1779 + sha256 = "159mlvz9bb91v8nld2g52r0v4gbdp182l489jdm5pvxc5yf5zl3w"; 1780 + }; 1781 + meta.homepage = "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/"; 1782 + }; 1783 + 1784 csv-vim = buildVimPluginFrom2Nix { 1785 pname = "csv.vim"; 1786 version = "2022-01-12"; ··· 1855 1856 dashboard-nvim = buildVimPluginFrom2Nix { 1857 pname = "dashboard-nvim"; 1858 + version = "2022-05-30"; 1859 src = fetchFromGitHub { 1860 owner = "glepnir"; 1861 repo = "dashboard-nvim"; 1862 + rev = "b661c8118b902dbf9ad86018ce48781ee8466612"; 1863 + sha256 = "0106jhw9fg2zmk0fqnr126f9gnh5bw7sjrxldn06ajj15ll15p9p"; 1864 }; 1865 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 1866 }; ··· 2229 2230 diffview-nvim = buildNeovimPluginFrom2Nix { 2231 pname = "diffview.nvim"; 2232 + version = "2022-05-31"; 2233 src = fetchFromGitHub { 2234 owner = "sindrets"; 2235 repo = "diffview.nvim"; 2236 + rev = "3ffe4a70c4b434ee933cb869b1706632c4407495"; 2237 + sha256 = "04xma63803bprwjynj6nsybiz56h5wzrj8jbfj05hf24q9bbklfd"; 2238 }; 2239 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2240 }; ··· 2265 2266 dressing-nvim = buildVimPluginFrom2Nix { 2267 pname = "dressing.nvim"; 2268 + version = "2022-06-01"; 2269 src = fetchFromGitHub { 2270 owner = "stevearc"; 2271 repo = "dressing.nvim"; 2272 + rev = "1706d00209ee250be56029f8c5b439daa19a1411"; 2273 + sha256 = "0wkixp0gc001hgryqxkm5hdw1pcbjxndz2x4za1b7djq340n9md4"; 2274 }; 2275 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2276 }; 2277 2278 echodoc-vim = buildVimPluginFrom2Nix { 2279 pname = "echodoc.vim"; 2280 + version = "2022-06-04"; 2281 src = fetchFromGitHub { 2282 owner = "Shougo"; 2283 repo = "echodoc.vim"; 2284 + rev = "945cdbbbd0e3c93d6514c0283425c32c35cddb17"; 2285 + sha256 = "0jqy96mc5kdgh7gxcxlgl94fvaxgazhkwkydki78vpgszvshrbry"; 2286 }; 2287 meta.homepage = "https://github.com/Shougo/echodoc.vim/"; 2288 }; 2289 2290 edge = buildVimPluginFrom2Nix { 2291 pname = "edge"; 2292 + version = "2022-06-04"; 2293 src = fetchFromGitHub { 2294 owner = "sainnhe"; 2295 repo = "edge"; 2296 + rev = "2c7c3a1bfbd7ce1a62ef61e6cfdcdb9e8c04d1f0"; 2297 + sha256 = "0g3az80iisdbk5w6yqhpw8ws5jh82hzqwq8y6808n3f0ki1b5mz9"; 2298 }; 2299 meta.homepage = "https://github.com/sainnhe/edge/"; 2300 }; ··· 2375 2376 everforest = buildVimPluginFrom2Nix { 2377 pname = "everforest"; 2378 + version = "2022-05-31"; 2379 src = fetchFromGitHub { 2380 owner = "sainnhe"; 2381 repo = "everforest"; 2382 + rev = "eca7c8c196215f687319295c81e6ba1d4e2f53a4"; 2383 + sha256 = "10jfag6ngarq2gnwlz4w7b0ckm9j899lppznz4sbrhisv35l4mjf"; 2384 }; 2385 meta.homepage = "https://github.com/sainnhe/everforest/"; 2386 }; ··· 2435 2436 feline-nvim = buildVimPluginFrom2Nix { 2437 pname = "feline.nvim"; 2438 + version = "2022-05-31"; 2439 src = fetchFromGitHub { 2440 owner = "feline-nvim"; 2441 repo = "feline.nvim"; 2442 + rev = "1ea42671c523a080a01c62c40c2c8e7fc0139a8f"; 2443 + sha256 = "0yrkdzikpcq9phybbzfggdfj4y983y9qw1fvnzpvff7mp11jskqw"; 2444 }; 2445 meta.homepage = "https://github.com/feline-nvim/feline.nvim/"; 2446 }; ··· 2552 sha256 = "1zsr1536qf7zqdskpshf366m333w66hfjrfdw3ws5yz2l7kq5bcm"; 2553 }; 2554 meta.homepage = "https://github.com/floobits/floobits-neovim/"; 2555 + }; 2556 + 2557 + flutter-tools-nvim = buildVimPluginFrom2Nix { 2558 + pname = "flutter-tools.nvim"; 2559 + version = "2022-05-19"; 2560 + src = fetchFromGitHub { 2561 + owner = "akinsho"; 2562 + repo = "flutter-tools.nvim"; 2563 + rev = "9301eeb3f1b4ea15845ee72f778b6af7bad60321"; 2564 + sha256 = "0c1f7cljpa6mndk1aqs1w64jlhjjybfbyqs0s4g1jdcz5a7b4fqi"; 2565 + }; 2566 + meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; 2567 }; 2568 2569 formatter-nvim = buildVimPluginFrom2Nix { ··· 2904 2905 goto-preview = buildVimPluginFrom2Nix { 2906 pname = "goto-preview"; 2907 + version = "2022-06-03"; 2908 src = fetchFromGitHub { 2909 owner = "rmagatti"; 2910 repo = "goto-preview"; 2911 + rev = "37116fb5167d2a93cada8db9135c5032a25348a7"; 2912 + sha256 = "0mrayyzc4z70rr9c66iwpdqk475pbmgvqanq5nakx1a19blqkkzj"; 2913 }; 2914 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 2915 }; ··· 2926 meta.homepage = "https://github.com/junegunn/goyo.vim/"; 2927 }; 2928 2929 + grammar-guard-nvim = buildVimPluginFrom2Nix { 2930 + pname = "grammar-guard.nvim"; 2931 + version = "2022-01-03"; 2932 + src = fetchFromGitHub { 2933 + owner = "brymer-meneses"; 2934 + repo = "grammar-guard.nvim"; 2935 + rev = "ea163c4adfd68fdd40e095cdf39cb506bf3ce3b2"; 2936 + sha256 = "0wdbpkg1y0s7fhaybyj735dxdkvfgnng49i8k0zrsy16d75md4bs"; 2937 + }; 2938 + meta.homepage = "https://github.com/brymer-meneses/grammar-guard.nvim/"; 2939 + }; 2940 + 2941 graphviz-vim = buildVimPluginFrom2Nix { 2942 pname = "graphviz.vim"; 2943 version = "2021-04-09"; ··· 2976 2977 gruvbox-material = buildVimPluginFrom2Nix { 2978 pname = "gruvbox-material"; 2979 + version = "2022-06-02"; 2980 src = fetchFromGitHub { 2981 owner = "sainnhe"; 2982 repo = "gruvbox-material"; 2983 + rev = "8aba3586fdefbdad3f758e24799245b799ae5a6f"; 2984 + sha256 = "03hkgzirnjahi44xwbzmpcbzpj4lgydq07wva32cyyrv3h8qplar"; 2985 }; 2986 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 2987 }; ··· 3120 3121 hotpot-nvim = buildVimPluginFrom2Nix { 3122 pname = "hotpot.nvim"; 3123 + version = "2022-05-31"; 3124 src = fetchFromGitHub { 3125 owner = "rktjmp"; 3126 repo = "hotpot.nvim"; 3127 + rev = "21258d4194a606d8d53bf68d06cc25457b2e8449"; 3128 + sha256 = "0ily343jzx9ra2mxp1flmshsl5bara0wx10fgyrrps1cfag383jm"; 3129 }; 3130 meta.homepage = "https://github.com/rktjmp/hotpot.nvim/"; 3131 }; ··· 3493 3494 lean-nvim = buildVimPluginFrom2Nix { 3495 pname = "lean.nvim"; 3496 + version = "2022-05-30"; 3497 src = fetchFromGitHub { 3498 owner = "Julian"; 3499 repo = "lean.nvim"; 3500 + rev = "2be99e3fa33ab24beb035ed46c51b353fc373cd5"; 3501 + sha256 = "0235cc6wcir4qgv9yksrj3ycd3w44w2gkb1zn0yljd5ygi3xp2mz"; 3502 }; 3503 meta.homepage = "https://github.com/Julian/lean.nvim/"; 3504 }; ··· 3745 3746 litee-nvim = buildVimPluginFrom2Nix { 3747 pname = "litee.nvim"; 3748 + version = "2022-06-03"; 3749 src = fetchFromGitHub { 3750 owner = "ldelossa"; 3751 repo = "litee.nvim"; 3752 + rev = "de1a3d65c0917bcb933ad023768f6b6e74f6ca92"; 3753 + sha256 = "1qmvqh9xw8y7vgnc532glcgv94mbwr0ilaiw100ri2qlr9lri2np"; 3754 }; 3755 meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 3756 }; ··· 3840 3841 lspsaga-nvim = buildVimPluginFrom2Nix { 3842 pname = "lspsaga.nvim"; 3843 + version = "2022-06-02"; 3844 src = fetchFromGitHub { 3845 owner = "tami5"; 3846 repo = "lspsaga.nvim"; 3847 + rev = "e4beaeff66ae4f70d0b67fe045b70d78780bb947"; 3848 + sha256 = "1in3yhbr535xrzgnm6n8623xgqm73djphv2xnd1q84psr1lrkzb7"; 3849 }; 3850 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3851 }; ··· 3876 3877 lualine-nvim = buildVimPluginFrom2Nix { 3878 pname = "lualine.nvim"; 3879 + version = "2022-05-30"; 3880 src = fetchFromGitHub { 3881 owner = "nvim-lualine"; 3882 repo = "lualine.nvim"; 3883 + rev = "3362b28f917acc37538b1047f187ff1b5645ecdd"; 3884 + sha256 = "0pfkh7zhnwhbfdcild5vayymw4vqzcfb31nq1y33pk1zlvpwxksv"; 3885 }; 3886 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3887 }; ··· 3996 3997 mini-nvim = buildVimPluginFrom2Nix { 3998 pname = "mini.nvim"; 3999 + version = "2022-06-02"; 4000 src = fetchFromGitHub { 4001 owner = "echasnovski"; 4002 repo = "mini.nvim"; 4003 + rev = "6adaf4c42455c093f00d0df3882ab48838423a57"; 4004 + sha256 = "0198f7818m58h2bxgdnfnx5nm7vxi2psssx105dn6ndg55yf2qsx"; 4005 }; 4006 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 4007 }; ··· 4344 4345 neoformat = buildVimPluginFrom2Nix { 4346 pname = "neoformat"; 4347 + version = "2022-06-02"; 4348 src = fetchFromGitHub { 4349 owner = "sbdchd"; 4350 repo = "neoformat"; 4351 + rev = "e8ce68ba5b57df18b54b96adb80ad533c7a2eb3d"; 4352 + sha256 = "09ylazsa933dqhx0x9qc4v2ackqvr22dpzbgyhkvqfs476fj5pn4"; 4353 }; 4354 meta.homepage = "https://github.com/sbdchd/neoformat/"; 4355 }; 4356 4357 neogit = buildVimPluginFrom2Nix { 4358 pname = "neogit"; 4359 + version = "2022-06-01"; 4360 src = fetchFromGitHub { 4361 owner = "TimUntersberger"; 4362 repo = "neogit"; 4363 + rev = "441c23d355b77f4067a1ad018c5dba64efd7ff7f"; 4364 + sha256 = "0yay92x3jmvpgqhx0hv0w19fjisakmmdzd286m656v5g26hmfxj1"; 4365 }; 4366 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 4367 }; ··· 4416 4417 neorg = buildVimPluginFrom2Nix { 4418 pname = "neorg"; 4419 + version = "2022-06-03"; 4420 src = fetchFromGitHub { 4421 owner = "nvim-neorg"; 4422 repo = "neorg"; 4423 + rev = "535fca8fd422fdedd686825d1f59a4e40e00259e"; 4424 + sha256 = "16yvvqmr7hg5g23ndig65y6by1y2khac1j9lmibvf91sxqdqrhxr"; 4425 }; 4426 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 4427 }; ··· 4464 4465 neoterm = buildVimPluginFrom2Nix { 4466 pname = "neoterm"; 4467 + version = "2022-05-31"; 4468 src = fetchFromGitHub { 4469 owner = "kassio"; 4470 repo = "neoterm"; 4471 + rev = "4881d6428bcaa524ad4686431ce184c6fb9bfe59"; 4472 + sha256 = "1i98sfb7vb0fx16zl15lf6ac65f1j0h9hbskmfk6zdiqcfcwhx4f"; 4473 }; 4474 meta.homepage = "https://github.com/kassio/neoterm/"; 4475 }; ··· 4572 4573 neuron-vim = buildVimPluginFrom2Nix { 4574 pname = "neuron.vim"; 4575 + version = "2022-06-02"; 4576 src = fetchFromGitHub { 4577 owner = "fiatjaf"; 4578 repo = "neuron.vim"; 4579 + rev = "e4e7f0b012d39d8e5dfb7d13ca199eaa130279ba"; 4580 + sha256 = "06qqbg4d0gk8d236f08sr847m5icbfknxsya2q3f52alnlpjry32"; 4581 }; 4582 meta.homepage = "https://github.com/fiatjaf/neuron.vim/"; 4583 }; ··· 4596 4597 nightfox-nvim = buildVimPluginFrom2Nix { 4598 pname = "nightfox.nvim"; 4599 + version = "2022-05-30"; 4600 src = fetchFromGitHub { 4601 owner = "EdenEast"; 4602 repo = "nightfox.nvim"; 4603 + rev = "e602acaad91a546be2250e026f0bdc6be8c8a44c"; 4604 + sha256 = "0666alx5yh6kzh417x4wydijh7aslxl4mivjzcvi74zr46h1xwz5"; 4605 }; 4606 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 4607 }; ··· 4644 4645 nord-vim = buildVimPluginFrom2Nix { 4646 pname = "nord-vim"; 4647 + version = "2022-05-31"; 4648 src = fetchFromGitHub { 4649 owner = "arcticicestudio"; 4650 repo = "nord-vim"; 4651 + rev = "bc0f057162491e9228207d74bd88b5efe875316e"; 4652 + sha256 = "16fm573my8ysmcy68wy9kxwrm85q8fmpggwr83z1gwq3mmws59xy"; 4653 }; 4654 meta.homepage = "https://github.com/arcticicestudio/nord-vim/"; 4655 }; ··· 4704 4705 null-ls-nvim = buildVimPluginFrom2Nix { 4706 pname = "null-ls.nvim"; 4707 + version = "2022-05-31"; 4708 src = fetchFromGitHub { 4709 owner = "jose-elias-alvarez"; 4710 repo = "null-ls.nvim"; 4711 + rev = "7b8560d53045f36d74236d17f0b280ec94e65198"; 4712 + sha256 = "0pnp79l7ml97l25xm5c7g9ywnjqb2b9wvzlxp82apqns4qmgq9c2"; 4713 }; 4714 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4715 }; ··· 4776 4777 nvim-biscuits = buildNeovimPluginFrom2Nix { 4778 pname = "nvim-biscuits"; 4779 + version = "2022-05-31"; 4780 src = fetchFromGitHub { 4781 owner = "code-biscuits"; 4782 repo = "nvim-biscuits"; 4783 + rev = "ed33933c1b4098f11ef61c06e2db76974490044d"; 4784 + sha256 = "17pd72djkmqivdkpx9awr9irwysmgsimh9mabd4dha4kjh1ar32j"; 4785 }; 4786 meta.homepage = "https://github.com/code-biscuits/nvim-biscuits/"; 4787 }; 4788 4789 nvim-bqf = buildVimPluginFrom2Nix { 4790 pname = "nvim-bqf"; 4791 + version = "2022-05-31"; 4792 src = fetchFromGitHub { 4793 owner = "kevinhwang91"; 4794 repo = "nvim-bqf"; 4795 + rev = "0cc539c52e51d32d8febf1f04c5e7ed5353fead2"; 4796 + sha256 = "1kljchr83ms3f7nc9lvy3fnvqv13xmh3xksyyazs0ivk20wgmbb3"; 4797 }; 4798 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 4799 }; ··· 4920 4921 nvim-dap = buildVimPluginFrom2Nix { 4922 pname = "nvim-dap"; 4923 + version = "2022-06-03"; 4924 src = fetchFromGitHub { 4925 owner = "mfussenegger"; 4926 repo = "nvim-dap"; 4927 + rev = "9c783d8d2a6f776ee817281f0bf07d356524cc1f"; 4928 + sha256 = "0rg4riwb8fbm661j1bmp1ffi04cfy4y5asmx0a8j9yyaz6bsn0d3"; 4929 }; 4930 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 4931 }; ··· 4992 4993 nvim-gdb = buildVimPluginFrom2Nix { 4994 pname = "nvim-gdb"; 4995 + version = "2022-05-31"; 4996 src = fetchFromGitHub { 4997 owner = "sakhnik"; 4998 repo = "nvim-gdb"; 4999 + rev = "713e333d3d5cecaaee20c1e4d55fb5a344b5ca2e"; 5000 + sha256 = "19jm1i5z1y3bfyp92rwjmbxjalhp3anbmfafhrp10f7sd3mbcxhf"; 5001 }; 5002 meta.homepage = "https://github.com/sakhnik/nvim-gdb/"; 5003 }; ··· 5052 5053 nvim-jdtls = buildVimPluginFrom2Nix { 5054 pname = "nvim-jdtls"; 5055 + version = "2022-06-02"; 5056 src = fetchFromGitHub { 5057 owner = "mfussenegger"; 5058 repo = "nvim-jdtls"; 5059 + rev = "72a40cdcde653df645644375307b4ea0cb658281"; 5060 + sha256 = "180v9810bmnh9xf74sq7nrgv98iva5xpka9yyhqp7n9li7c7xp93"; 5061 }; 5062 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 5063 }; ··· 5088 5089 nvim-lightline-lsp = buildVimPluginFrom2Nix { 5090 pname = "nvim-lightline-lsp"; 5091 + version = "2022-05-30"; 5092 src = fetchFromGitHub { 5093 owner = "josa42"; 5094 repo = "nvim-lightline-lsp"; 5095 + rev = "0fe34eed830b223770111c6333fe48d9fca158d5"; 5096 + sha256 = "08qxyr998d7zwnk0czfq4hif0q801fm2ijpbwql32kd6a62bnhjf"; 5097 }; 5098 meta.homepage = "https://github.com/josa42/nvim-lightline-lsp/"; 5099 }; ··· 5124 5125 nvim-lspconfig = buildVimPluginFrom2Nix { 5126 pname = "nvim-lspconfig"; 5127 + version = "2022-06-03"; 5128 src = fetchFromGitHub { 5129 owner = "neovim"; 5130 repo = "nvim-lspconfig"; 5131 + rev = "2a455c148341c4faf2dd60401397fed35d084c59"; 5132 + sha256 = "1plhjirvg4xvh147xdr339z7jvw2mf973rkahhgxfwfzp1g1gjq9"; 5133 }; 5134 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5135 }; ··· 5148 5149 nvim-metals = buildVimPluginFrom2Nix { 5150 pname = "nvim-metals"; 5151 + version = "2022-06-02"; 5152 src = fetchFromGitHub { 5153 owner = "scalameta"; 5154 repo = "nvim-metals"; 5155 + rev = "6738fe3c0e2142de01c753f8b7c18281d11488ce"; 5156 + sha256 = "19k330fv68z9icdlbf6bjn8ckwrjkdn9k9hl4r4ss95lm7sfgzd8"; 5157 }; 5158 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 5159 }; ··· 5184 5185 nvim-notify = buildVimPluginFrom2Nix { 5186 pname = "nvim-notify"; 5187 + version = "2022-06-04"; 5188 src = fetchFromGitHub { 5189 owner = "rcarriga"; 5190 repo = "nvim-notify"; 5191 + rev = "b517277b2782b9fe20f64220435b8b6f9f02f840"; 5192 + sha256 = "0najyal8r9a443jqyv84sgpa235lkms2ggy835i4pb47azizwmfa"; 5193 }; 5194 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 5195 }; ··· 5256 5257 nvim-tree-lua = buildVimPluginFrom2Nix { 5258 pname = "nvim-tree.lua"; 5259 + version = "2022-06-04"; 5260 src = fetchFromGitHub { 5261 owner = "kyazdani42"; 5262 repo = "nvim-tree.lua"; 5263 + rev = "3aeb59b0754afb60751cd58b9903852b6076cea4"; 5264 + sha256 = "0zw9rafhc4s9fhk53a4mxy9kspmcizzii1phvs2hib34laj78gwb"; 5265 }; 5266 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 5267 }; 5268 5269 nvim-treesitter = buildVimPluginFrom2Nix { 5270 pname = "nvim-treesitter"; 5271 + version = "2022-06-04"; 5272 src = fetchFromGitHub { 5273 owner = "nvim-treesitter"; 5274 repo = "nvim-treesitter"; 5275 + rev = "d7ec2e6ab938b60baa5a9f4cd46d1d88d6da22ac"; 5276 + sha256 = "03y5zl1drl1p072980kd247ksqlh33kvk0sjq1iaplwjmbxkmjfg"; 5277 }; 5278 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5279 }; ··· 5364 5365 nvim-web-devicons = buildVimPluginFrom2Nix { 5366 pname = "nvim-web-devicons"; 5367 + version = "2022-05-30"; 5368 src = fetchFromGitHub { 5369 owner = "kyazdani42"; 5370 repo = "nvim-web-devicons"; 5371 + rev = "8d2c5337f0a2d0a17de8e751876eeb192b32310e"; 5372 + sha256 = "0jb25z0bw2xyix18pf59lrmbnih8yxxkb81xi9zl034k9l9cmsv3"; 5373 }; 5374 meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/"; 5375 }; ··· 5448 5449 octo-nvim = buildVimPluginFrom2Nix { 5450 pname = "octo.nvim"; 5451 + version = "2022-06-02"; 5452 src = fetchFromGitHub { 5453 owner = "pwntester"; 5454 repo = "octo.nvim"; 5455 + rev = "a23c1f1c810c543d9da69a8a6feb2061738fc714"; 5456 + sha256 = "0jy2az08il2w4wyabggmqhmi8cgmyqmm4x4zypvkv8qs7m9l72kq"; 5457 }; 5458 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 5459 }; 5460 5461 + omnisharp-extended-lsp-nvim = buildVimPluginFrom2Nix { 5462 + pname = "omnisharp-extended-lsp.nvim"; 5463 + version = "2022-05-10"; 5464 + src = fetchFromGitHub { 5465 + owner = "Hoffs"; 5466 + repo = "omnisharp-extended-lsp.nvim"; 5467 + rev = "e0dbe96194465f26e2cfff5d170ba8c88287e329"; 5468 + sha256 = "119pc3va1g76clvm6c09jldsybjqml8fycx23lyh85f00jrwr2y9"; 5469 + }; 5470 + meta.homepage = "https://github.com/Hoffs/omnisharp-extended-lsp.nvim/"; 5471 + }; 5472 + 5473 one-nvim = buildVimPluginFrom2Nix { 5474 pname = "one-nvim"; 5475 version = "2021-06-10"; ··· 5556 5557 orgmode = buildVimPluginFrom2Nix { 5558 pname = "orgmode"; 5559 + version = "2022-06-01"; 5560 src = fetchFromGitHub { 5561 owner = "nvim-orgmode"; 5562 repo = "orgmode"; 5563 + rev = "b0649b59144338d3a6d6bd04425a98acd203e413"; 5564 + sha256 = "1q5gxmsjnchp39py0dv4gl4fy0fhjlca1calnlq4vil63yr4jpry"; 5565 }; 5566 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 5567 }; ··· 5580 5581 packer-nvim = buildVimPluginFrom2Nix { 5582 pname = "packer.nvim"; 5583 + version = "2022-06-02"; 5584 src = fetchFromGitHub { 5585 owner = "wbthomason"; 5586 repo = "packer.nvim"; 5587 + rev = "00ec5adef58c5ff9a07f11f45903b9dbbaa1b422"; 5588 + sha256 = "1rgff84r4h5va58652ylspsdv9zhya46fak55spb69m5f9wh2vn5"; 5589 }; 5590 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 5591 }; ··· 5604 5605 papercolor-theme = buildVimPluginFrom2Nix { 5606 pname = "papercolor-theme"; 5607 + version = "2022-05-31"; 5608 src = fetchFromGitHub { 5609 owner = "NLKNguyen"; 5610 repo = "papercolor-theme"; 5611 + rev = "7cd968118f6d00d7c9b7d946f88476ad4f2cbbd3"; 5612 + sha256 = "0yixp5a8gl6bvsp3341zzyil8fjr02g2s2xplqw3y5r16afcqngz"; 5613 }; 5614 meta.homepage = "https://github.com/NLKNguyen/papercolor-theme/"; 5615 }; ··· 5700 5701 plenary-nvim = buildNeovimPluginFrom2Nix { 5702 pname = "plenary.nvim"; 5703 + version = "2022-06-01"; 5704 src = fetchFromGitHub { 5705 owner = "nvim-lua"; 5706 repo = "plenary.nvim"; 5707 + rev = "54b2e3d58f567983feabaeb9408eccf6b7f32206"; 5708 + sha256 = "1ldjdc7yq4awlllr9dcv8fnkcwgdpvj0py5mhvx3v1yjniwrkn2i"; 5709 }; 5710 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 5711 }; ··· 5978 5979 refactoring-nvim = buildVimPluginFrom2Nix { 5980 pname = "refactoring.nvim"; 5981 + version = "2022-06-02"; 5982 src = fetchFromGitHub { 5983 owner = "theprimeagen"; 5984 repo = "refactoring.nvim"; 5985 + rev = "8aae61389d3654335b2fd913d137f4908d482717"; 5986 + sha256 = "0jk6cmng7cyxwdb5a7pnrvhaha32sj225zpjrng52yr1s9zg9hrl"; 5987 }; 5988 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 5989 }; ··· 6315 6316 sonokai = buildVimPluginFrom2Nix { 6317 pname = "sonokai"; 6318 + version = "2022-05-31"; 6319 src = fetchFromGitHub { 6320 owner = "sainnhe"; 6321 repo = "sonokai"; 6322 + rev = "c2f8a7259e4b67fb4d0242afababbb1dda3285a3"; 6323 + sha256 = "1ni8b2b3cqqmi8lr4dh2f5bwnxwcdwqdjfvvds4m8jq2s3kql4bh"; 6324 }; 6325 meta.homepage = "https://github.com/sainnhe/sonokai/"; 6326 }; ··· 6385 meta.homepage = "https://github.com/edluffy/specs.nvim/"; 6386 }; 6387 6388 + spellsitter-nvim = buildVimPluginFrom2Nix { 6389 + pname = "spellsitter.nvim"; 6390 + version = "2022-06-02"; 6391 + src = fetchFromGitHub { 6392 + owner = "lewis6991"; 6393 + repo = "spellsitter.nvim"; 6394 + rev = "430a25393abbf482bddf03c224cd5b8eeb27b5e1"; 6395 + sha256 = "1cypvpyaarn9ckin2cgf2hpsq5qj517pz64imvyckzg22x9cf6yi"; 6396 + }; 6397 + meta.homepage = "https://github.com/lewis6991/spellsitter.nvim/"; 6398 + }; 6399 + 6400 splice-vim = buildVimPluginFrom2Nix { 6401 pname = "splice.vim"; 6402 version = "2020-01-15"; ··· 6690 6691 tagalong-vim = buildVimPluginFrom2Nix { 6692 pname = "tagalong.vim"; 6693 + version = "2022-05-31"; 6694 src = fetchFromGitHub { 6695 owner = "AndrewRadev"; 6696 repo = "tagalong.vim"; 6697 + rev = "7b8cf57d8b5cbf5ece29e8198e72e8db39d9fe26"; 6698 + sha256 = "0qs9vrqc84v62g1qmlf5h07g4s97gg83mvl9jskcz2v3m7wxa6x3"; 6699 }; 6700 meta.homepage = "https://github.com/AndrewRadev/tagalong.vim/"; 6701 }; ··· 6810 6811 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 6812 pname = "telescope-file-browser.nvim"; 6813 + version = "2022-06-02"; 6814 src = fetchFromGitHub { 6815 owner = "nvim-telescope"; 6816 repo = "telescope-file-browser.nvim"; 6817 + rev = "61a5521853ac739ae3d0d395f52c1178108e0114"; 6818 + sha256 = "18zr37rcr0f0066zkp5v3yrji3y1b48dj0sn4zf543pglppz2kz6"; 6819 }; 6820 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 6821 }; ··· 6834 6835 telescope-fzf-native-nvim = buildVimPluginFrom2Nix { 6836 pname = "telescope-fzf-native.nvim"; 6837 + version = "2022-06-01"; 6838 src = fetchFromGitHub { 6839 owner = "nvim-telescope"; 6840 repo = "telescope-fzf-native.nvim"; 6841 + rev = "f0dba7df9536ddb0c8f7b6482ede77940d728d23"; 6842 + sha256 = "1fyww6h5y8624qn30j6297ipjs4h5rbn1af1fslwn3cz0qsfww2h"; 6843 }; 6844 meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; 6845 }; ··· 6979 6980 telescope-nvim = buildVimPluginFrom2Nix { 6981 pname = "telescope.nvim"; 6982 + version = "2022-06-02"; 6983 src = fetchFromGitHub { 6984 owner = "nvim-telescope"; 6985 repo = "telescope.nvim"; 6986 + rev = "d3aad43b3fcf707052f7dd8a7c7072fa69773f3c"; 6987 + sha256 = "0m84qnm7pxn26a4znf0gxrz2q0kr951lqzk7pph54xdxrcvjha10"; 6988 }; 6989 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 6990 }; ··· 8108 8109 vim-clap = buildVimPluginFrom2Nix { 8110 pname = "vim-clap"; 8111 + version = "2022-05-30"; 8112 src = fetchFromGitHub { 8113 owner = "liuchengxu"; 8114 repo = "vim-clap"; 8115 + rev = "2256c3e4860f9bddfb539ec4c3faab30535cbb9a"; 8116 + sha256 = "0fcmx1hirf40qdgb76g3bsf6n4s18v3yq4hw4hlwdp4jpbl2zymw"; 8117 }; 8118 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 8119 }; ··· 8180 8181 vim-codefmt = buildVimPluginFrom2Nix { 8182 pname = "vim-codefmt"; 8183 + version = "2022-06-02"; 8184 src = fetchFromGitHub { 8185 owner = "google"; 8186 repo = "vim-codefmt"; 8187 + rev = "b5270ae807fdbad5183f2831a9348f2fb7cfea1d"; 8188 + sha256 = "0fq1dcizdvrnq6faw36206wvvnfzgcpz83a3kpn466hfbbysmn45"; 8189 }; 8190 meta.homepage = "https://github.com/google/vim-codefmt/"; 8191 }; ··· 8372 8373 vim-dadbod = buildVimPluginFrom2Nix { 8374 pname = "vim-dadbod"; 8375 + version = "2022-06-03"; 8376 src = fetchFromGitHub { 8377 owner = "tpope"; 8378 repo = "vim-dadbod"; 8379 + rev = "c2495b008f1adce6d21745b2c4c576eecc985959"; 8380 + sha256 = "1zj1bab5ck9k9c11cmyszmlnfw3sis79kmlag2a0c0p035rzsl35"; 8381 }; 8382 meta.homepage = "https://github.com/tpope/vim-dadbod/"; 8383 }; ··· 8816 8817 vim-floaterm = buildVimPluginFrom2Nix { 8818 pname = "vim-floaterm"; 8819 + version = "2022-06-03"; 8820 src = fetchFromGitHub { 8821 owner = "voldikss"; 8822 repo = "vim-floaterm"; 8823 + rev = "875c404da92bb716fdfb33d4948277651ff345a9"; 8824 + sha256 = "0gkbd8vvyiln3v1f0hgx34ixhbqda8ggivqfgpnb7vlx5j9za706"; 8825 }; 8826 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8827 }; ··· 8888 8889 vim-fugitive = buildVimPluginFrom2Nix { 8890 pname = "vim-fugitive"; 8891 + version = "2022-06-04"; 8892 src = fetchFromGitHub { 8893 owner = "tpope"; 8894 repo = "vim-fugitive"; 8895 + rev = "5920f807f5a52957a6a09dd36aab1c00bfd85455"; 8896 + sha256 = "1jzlrmc9prv3yhsqjn6bnjhllh7h7vqf6088ady4b2ical1lr839"; 8897 }; 8898 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 8899 }; ··· 9814 9815 vim-markbar = buildVimPluginFrom2Nix { 9816 pname = "vim-markbar"; 9817 + version = "2022-06-04"; 9818 src = fetchFromGitHub { 9819 owner = "Yilin-Yang"; 9820 repo = "vim-markbar"; 9821 + rev = "623f7f64f167c32d7dd358c908544609307a1cfb"; 9822 + sha256 = "1yxb9pk12nyvaxjyckbgvfkf4xql6l5yah6gn21pa5j05n8fd7b5"; 9823 }; 9824 meta.homepage = "https://github.com/Yilin-Yang/vim-markbar/"; 9825 }; ··· 10319 10320 vim-pandoc-syntax = buildVimPluginFrom2Nix { 10321 pname = "vim-pandoc-syntax"; 10322 + version = "2022-06-01"; 10323 src = fetchFromGitHub { 10324 owner = "vim-pandoc"; 10325 repo = "vim-pandoc-syntax"; 10326 + rev = "ff52ed9296715988fc3269b64a903415c3bdf322"; 10327 + sha256 = "08p51a7alj173j0n8qlg4lpyyr4m2i6jfm7wqxl0k4qnfw3lpyx9"; 10328 }; 10329 meta.homepage = "https://github.com/vim-pandoc/vim-pandoc-syntax/"; 10330 }; ··· 10823 10824 vim-scriptease = buildVimPluginFrom2Nix { 10825 pname = "vim-scriptease"; 10826 + version = "2022-05-30"; 10827 src = fetchFromGitHub { 10828 owner = "tpope"; 10829 repo = "vim-scriptease"; 10830 + rev = "18511d389675d773994215ddb572ccdc2b72f52b"; 10831 + sha256 = "1mzs4x6y68akysbibprfif1dksaafhcyhddkcyh3da6by6sp5l0l"; 10832 }; 10833 meta.homepage = "https://github.com/tpope/vim-scriptease/"; 10834 }; ··· 11123 11124 vim-startuptime = buildVimPluginFrom2Nix { 11125 pname = "vim-startuptime"; 11126 + version = "2022-05-30"; 11127 src = fetchFromGitHub { 11128 owner = "dstein64"; 11129 repo = "vim-startuptime"; 11130 + rev = "a8ab56f30c603f8022f5fb6a436f5183beeb7b27"; 11131 + sha256 = "1xlb8q93ff9qdlk17b76sbrz2adixj7zxf8b9ccvafki8diaqkj9"; 11132 }; 11133 meta.homepage = "https://github.com/dstein64/vim-startuptime/"; 11134 }; ··· 11280 11281 vim-test = buildVimPluginFrom2Nix { 11282 pname = "vim-test"; 11283 + version = "2022-05-30"; 11284 src = fetchFromGitHub { 11285 owner = "vim-test"; 11286 repo = "vim-test"; 11287 + rev = "9bd4cd2d772018087d016fa4d35c45c09f13effd"; 11288 + sha256 = "1bs2q5aw7figwk08b0qahyyzdh1g8gp4vbfzxayxh340qj465f8p"; 11289 }; 11290 meta.homepage = "https://github.com/vim-test/vim-test/"; 11291 }; ··· 11952 11953 vimspector = buildVimPluginFrom2Nix { 11954 pname = "vimspector"; 11955 + version = "2022-06-04"; 11956 src = fetchFromGitHub { 11957 owner = "puremourning"; 11958 repo = "vimspector"; 11959 + rev = "44eeaebd8cf8514de2b503e8698f2f341b5f23ad"; 11960 + sha256 = "197l41s256z6iyb1pym6h9m4046k7m0jiwlrgfbf60yy2fxka7f3"; 11961 fetchSubmodules = true; 11962 }; 11963 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 12230 12231 zephyr-nvim = buildVimPluginFrom2Nix { 12232 pname = "zephyr-nvim"; 12233 + version = "2022-06-03"; 12234 src = fetchFromGitHub { 12235 owner = "glepnir"; 12236 repo = "zephyr-nvim"; 12237 + rev = "ab81680a4a78c6be800edba547ebf309a477be6e"; 12238 + sha256 = "1dip9ls8m1dvk69kzyb3wkxvkrv48x1lnv8l4l6xzp1d5xdnh5jy"; 12239 }; 12240 meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 12241 }; ··· 12278 12279 catppuccin-nvim = buildVimPluginFrom2Nix { 12280 pname = "catppuccin-nvim"; 12281 + version = "2022-05-30"; 12282 src = fetchFromGitHub { 12283 owner = "catppuccin"; 12284 repo = "nvim"; 12285 + rev = "773d339cbd307fe218cf7b3ea04eac26b345a3b7"; 12286 + sha256 = "005r3nmjd3s0gbf319xwrvighjg391j3qh79sfc2568z53wxj8r0"; 12287 }; 12288 meta.homepage = "https://github.com/catppuccin/nvim/"; 12289 }; 12290 12291 chad = buildVimPluginFrom2Nix { 12292 pname = "chad"; 12293 + version = "2022-06-04"; 12294 src = fetchFromGitHub { 12295 owner = "ms-jpq"; 12296 repo = "chadtree"; 12297 + rev = "574b9612fa8e91b2d6a5fed538b30cc5dc74098e"; 12298 + sha256 = "0hwji2mlf7awm303kxyy5b9hgz8kya38paqpw5l04g5b8a7qzwss"; 12299 }; 12300 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 12301 }; ··· 12362 12363 rose-pine = buildVimPluginFrom2Nix { 12364 pname = "rose-pine"; 12365 + version = "2022-06-02"; 12366 src = fetchFromGitHub { 12367 owner = "rose-pine"; 12368 repo = "neovim"; 12369 + rev = "04fb9d3bf29755a0cd6e53373e5750ca78a8d37c"; 12370 + sha256 = "14zdlm3rpfkkg0y94071i6qx4bk3vp2wd2f5v7503mdc3p684amq"; 12371 }; 12372 meta.homepage = "https://github.com/rose-pine/neovim/"; 12373 };
+10
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 8 https://github.com/numToStr/FTerm.nvim/,, 9 https://github.com/antoinemadec/FixCursorHold.nvim/,, 10 https://github.com/vim-scripts/Improved-AnsiEsc/,, 11 https://github.com/martinda/Jenkinsfile-vim-syntax/,, 12 https://github.com/autozimu/LanguageClient-neovim/,, 13 https://github.com/vigoux/LanguageTool.nvim/,, ··· 85 https://github.com/yunlingz/ci_dark/,, 86 https://github.com/projekt0n/circles.nvim/,, 87 https://github.com/xavierd/clang_complete/,, 88 https://github.com/rhysd/clever-f.vim/,, 89 https://github.com/bbchung/clighter8/,, 90 https://github.com/winston0410/cmd-parser.nvim/,, ··· 121 https://github.com/metakirby5/codi.vim/,, 122 https://github.com/tjdevries/colorbuddy.nvim/,, 123 https://github.com/lilydjwg/colorizer/,, 124 https://github.com/wincent/command-t/,, 125 https://github.com/numtostr/comment.nvim/,, 126 https://github.com/rhysd/committia.vim/,, ··· 137 https://github.com/Olical/conjure/,, 138 https://github.com/Shougo/context_filetype.vim/,, 139 https://github.com/github/copilot.vim/,, 140 https://github.com/jvoorhis/coq.vim/,, 141 https://github.com/ms-jpq/coq_nvim/,, 142 https://github.com/lfilho/cosco.vim/,, 143 https://github.com/nixprime/cpsm/,, 144 https://github.com/saecki/crates.nvim/,, 145 https://github.com/godlygeek/csapprox/,, 146 https://github.com/chrisbra/csv.vim/,, 147 https://github.com/JazzCore/ctrlp-cmatcher/,, 148 https://github.com/FelikZ/ctrlp-py-matcher/,, ··· 207 https://github.com/ncm2/float-preview.nvim/,, 208 https://github.com/fhill2/floating.nvim/,, 209 https://github.com/floobits/floobits-neovim/,, 210 https://github.com/mhartington/formatter.nvim/,, 211 https://github.com/megaannum/forms/,, 212 https://github.com/rafamadriz/friendly-snippets/,, ··· 237 https://github.com/buoto/gotests-vim/,, 238 https://github.com/rmagatti/goto-preview/,, 239 https://github.com/junegunn/goyo.vim/,, 240 https://github.com/liuchengxu/graphviz.vim/,, 241 https://github.com/gruvbox-community/gruvbox/,,gruvbox-community 242 https://github.com/morhetz/gruvbox/,, ··· 451 https://github.com/glepnir/oceanic-material/,, 452 https://github.com/mhartington/oceanic-next/,, 453 https://github.com/pwntester/octo.nvim/,, 454 https://github.com/Th3Whit3Wolf/one-nvim/,, 455 https://github.com/navarasu/onedark.nvim/,, 456 https://github.com/joshdick/onedark.vim/,, ··· 527 https://github.com/ctjhoa/spacevim/,, 528 https://github.com/chrisgeo/sparkup/,, 529 https://github.com/edluffy/specs.nvim/,, 530 https://github.com/sjl/splice.vim/,, 531 https://github.com/vimlab/split-term.vim/,, 532 https://github.com/AndrewRadev/splitjoin.vim/,,
··· 8 https://github.com/numToStr/FTerm.nvim/,, 9 https://github.com/antoinemadec/FixCursorHold.nvim/,, 10 https://github.com/vim-scripts/Improved-AnsiEsc/,, 11 + https://github.com/ionide/Ionide-vim/,HEAD, 12 https://github.com/martinda/Jenkinsfile-vim-syntax/,, 13 https://github.com/autozimu/LanguageClient-neovim/,, 14 https://github.com/vigoux/LanguageTool.nvim/,, ··· 86 https://github.com/yunlingz/ci_dark/,, 87 https://github.com/projekt0n/circles.nvim/,, 88 https://github.com/xavierd/clang_complete/,, 89 + https://github.com/p00f/clangd_extensions.nvim/,HEAD, 90 https://github.com/rhysd/clever-f.vim/,, 91 https://github.com/bbchung/clighter8/,, 92 https://github.com/winston0410/cmd-parser.nvim/,, ··· 123 https://github.com/metakirby5/codi.vim/,, 124 https://github.com/tjdevries/colorbuddy.nvim/,, 125 https://github.com/lilydjwg/colorizer/,, 126 + https://github.com/Domeee/com.cloudedmountain.ide.neovim/,HEAD, 127 https://github.com/wincent/command-t/,, 128 https://github.com/numtostr/comment.nvim/,, 129 https://github.com/rhysd/committia.vim/,, ··· 140 https://github.com/Olical/conjure/,, 141 https://github.com/Shougo/context_filetype.vim/,, 142 https://github.com/github/copilot.vim/,, 143 + https://github.com/ms-jpq/coq.artifacts/,HEAD, 144 + https://github.com/ms-jpq/coq.thirdparty/,HEAD, 145 https://github.com/jvoorhis/coq.vim/,, 146 https://github.com/ms-jpq/coq_nvim/,, 147 https://github.com/lfilho/cosco.vim/,, 148 https://github.com/nixprime/cpsm/,, 149 https://github.com/saecki/crates.nvim/,, 150 https://github.com/godlygeek/csapprox/,, 151 + https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/,HEAD, 152 https://github.com/chrisbra/csv.vim/,, 153 https://github.com/JazzCore/ctrlp-cmatcher/,, 154 https://github.com/FelikZ/ctrlp-py-matcher/,, ··· 213 https://github.com/ncm2/float-preview.nvim/,, 214 https://github.com/fhill2/floating.nvim/,, 215 https://github.com/floobits/floobits-neovim/,, 216 + https://github.com/akinsho/flutter-tools.nvim/,HEAD, 217 https://github.com/mhartington/formatter.nvim/,, 218 https://github.com/megaannum/forms/,, 219 https://github.com/rafamadriz/friendly-snippets/,, ··· 244 https://github.com/buoto/gotests-vim/,, 245 https://github.com/rmagatti/goto-preview/,, 246 https://github.com/junegunn/goyo.vim/,, 247 + https://github.com/brymer-meneses/grammar-guard.nvim/,HEAD, 248 https://github.com/liuchengxu/graphviz.vim/,, 249 https://github.com/gruvbox-community/gruvbox/,,gruvbox-community 250 https://github.com/morhetz/gruvbox/,, ··· 459 https://github.com/glepnir/oceanic-material/,, 460 https://github.com/mhartington/oceanic-next/,, 461 https://github.com/pwntester/octo.nvim/,, 462 + https://github.com/Hoffs/omnisharp-extended-lsp.nvim/,HEAD, 463 https://github.com/Th3Whit3Wolf/one-nvim/,, 464 https://github.com/navarasu/onedark.nvim/,, 465 https://github.com/joshdick/onedark.vim/,, ··· 536 https://github.com/ctjhoa/spacevim/,, 537 https://github.com/chrisgeo/sparkup/,, 538 https://github.com/edluffy/specs.nvim/,, 539 + https://github.com/lewis6991/spellsitter.nvim/,HEAD, 540 https://github.com/sjl/splice.vim/,, 541 https://github.com/vimlab/split-term.vim/,, 542 https://github.com/AndrewRadev/splitjoin.vim/,,
+2 -2
pkgs/applications/graphics/krita/default.nix
··· 1 { callPackage, ... } @ args: 2 3 callPackage ./generic.nix (args // { 4 - version = "5.0.2"; 5 kde-channel = "stable"; 6 - sha256 = "sha256-5nUfx+tQSXekiAo3brvTmVyH2tFUSGCE6COX5l1JnL8="; 7 })
··· 1 { callPackage, ... } @ args: 2 3 callPackage ./generic.nix (args // { 4 + version = "5.0.6"; 5 kde-channel = "stable"; 6 + sha256 = "sha256:0qhf7vm13v33yk67n7wdcgrqpk7yvajdlkqcp7zhrl2z7qdnvmzd"; 7 })
+15 -4
pkgs/applications/graphics/krita/generic.nix
··· 3 , kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem 4 , kio, kcrash, breeze-icons 5 , boost, libraw, fftw, eigen, exiv2, libheif, lcms2, gsl, openexr, giflib 6 - , openjpeg, opencolorio_1, vc, poppler, curl, ilmbase 7 , qtmultimedia, qtx11extras, quazip 8 , python3Packages 9 ··· 23 inherit sha256; 24 }; 25 26 - nativeBuildInputs = [ cmake extra-cmake-modules python3Packages.sip_4 makeWrapper ]; 27 28 buildInputs = [ 29 karchive kconfig kwidgetsaddons kcompletion kcoreaddons kguiaddons 30 ki18n kitemmodels kitemviews kwindowsystem kio kcrash breeze-icons 31 boost libraw fftw eigen exiv2 lcms2 gsl openexr libheif giflib 32 - openjpeg opencolorio_1 poppler curl ilmbase 33 qtmultimedia qtx11extras quazip 34 python3Packages.pyqt5 35 ] ++ lib.optional stdenv.hostPlatform.isx86 vc; ··· 37 NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ] 38 ++ lib.optional stdenv.cc.isGNU "-Wno-deprecated-copy"; 39 40 cmakeFlags = [ 41 "-DPYQT5_SIP_DIR=${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings" 42 "-DPYQT_SIP_DIR_OVERRIDE=${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings" ··· 52 meta = with lib; { 53 description = "A free and open source painting application"; 54 homepage = "https://krita.org/"; 55 - maintainers = with maintainers; [ abbradar ]; 56 platforms = platforms.linux; 57 license = licenses.gpl3Only; 58 };
··· 3 , kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem 4 , kio, kcrash, breeze-icons 5 , boost, libraw, fftw, eigen, exiv2, libheif, lcms2, gsl, openexr, giflib 6 + , openjpeg, opencolorio_1, vc, poppler, curl, ilmbase, libmypaint, libwebp 7 , qtmultimedia, qtx11extras, quazip 8 , python3Packages 9 ··· 23 inherit sha256; 24 }; 25 26 + nativeBuildInputs = [ cmake extra-cmake-modules python3Packages.sip makeWrapper ]; 27 28 buildInputs = [ 29 karchive kconfig kwidgetsaddons kcompletion kcoreaddons kguiaddons 30 ki18n kitemmodels kitemviews kwindowsystem kio kcrash breeze-icons 31 boost libraw fftw eigen exiv2 lcms2 gsl openexr libheif giflib 32 + openjpeg opencolorio_1 poppler curl ilmbase libmypaint libwebp 33 qtmultimedia qtx11extras quazip 34 python3Packages.pyqt5 35 ] ++ lib.optional stdenv.hostPlatform.isx86 vc; ··· 37 NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ] 38 ++ lib.optional stdenv.cc.isGNU "-Wno-deprecated-copy"; 39 40 + # Krita runs custom python scripts in CMake with custom PYTHONPATH which krita determined in their CMake script. 41 + # Patch the PYTHONPATH so python scripts can import sip successfully. 42 + postPatch = let 43 + pythonPath = python3Packages.makePythonPath (with python3Packages; [ sip setuptools ]); 44 + in '' 45 + substituteInPlace cmake/modules/FindSIP.cmake \ 46 + --replace 'PYTHONPATH=''${_sip_python_path}' 'PYTHONPATH=${pythonPath}' 47 + substituteInPlace cmake/modules/SIPMacros.cmake \ 48 + --replace 'PYTHONPATH=''${_krita_python_path}' 'PYTHONPATH=${pythonPath}' 49 + ''; 50 + 51 cmakeFlags = [ 52 "-DPYQT5_SIP_DIR=${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings" 53 "-DPYQT_SIP_DIR_OVERRIDE=${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings" ··· 63 meta = with lib; { 64 description = "A free and open source painting application"; 65 homepage = "https://krita.org/"; 66 + maintainers = with maintainers; [ abbradar sifmelcara ]; 67 platforms = platforms.linux; 68 license = licenses.gpl3Only; 69 };
+3
pkgs/applications/networking/instant-messengers/chatterino2/default.nix
··· 15 postInstall = lib.optionalString stdenv.isDarwin '' 16 mkdir -p "$out/Applications" 17 mv bin/chatterino.app "$out/Applications/" 18 ''; 19 meta = with lib; { 20 description = "A chat client for Twitch chat";
··· 15 postInstall = lib.optionalString stdenv.isDarwin '' 16 mkdir -p "$out/Applications" 17 mv bin/chatterino.app "$out/Applications/" 18 + '' + '' 19 + mkdir -p $out/share/icons/hicolor/256x256/apps 20 + cp $src/resources/icon.png $out/share/icons/hicolor/256x256/apps/chatterino.png 21 ''; 22 meta = with lib; { 23 description = "A chat client for Twitch chat";
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "deltachat-cursed"; 8 - version = "0.6.0"; 9 10 src = fetchFromGitHub { 11 owner = "adbenitez"; 12 repo = "deltachat-cursed"; 13 rev = "v${version}"; 14 - hash = "sha256-qFX5CjrF0HLR41BbrCPT+rI9vAP6VLzXXAaVq/Loabs="; 15 }; 16 17 nativeBuildInputs = [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "deltachat-cursed"; 8 + version = "0.7.1"; 9 10 src = fetchFromGitHub { 11 owner = "adbenitez"; 12 repo = "deltachat-cursed"; 13 rev = "v${version}"; 14 + hash = "sha256-EA3yTP4j/jj26E8zdRwTIW+9FkI0ehK4Y8AqiCnF2xA="; 15 }; 16 17 nativeBuildInputs = [
+1 -1
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 81 postInstall = '' 82 rm -r node_modules/deltachat-node/node/prebuilds 83 84 - npm run build 85 86 npm prune --production 87
··· 81 postInstall = '' 82 rm -r node_modules/deltachat-node/node/prebuilds 83 84 + npm run build4production 85 86 npm prune --production 87
-37
pkgs/applications/office/marp/default.nix
··· 1 - { lib, stdenv, fetchurl, atomEnv, libXScrnSaver, gtk2 }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "marp"; 5 - version = "0.0.14"; 6 - 7 - src = fetchurl { 8 - url = "https://github.com/yhatt/marp/releases/download/v${version}/${version}-Marp-linux-x64.tar.gz"; 9 - sha256 = "0nklzxwdx5llzfwz1hl2jpp2kwz78w4y63h5l00fh6fv6zisw6j4"; 10 - }; 11 - 12 - unpackPhase = '' 13 - mkdir {locales,resources} 14 - tar --delay-directory-restore -xf $src 15 - chmod u+x {locales,resources} 16 - ''; 17 - 18 - installPhase = '' 19 - mkdir -p $out/lib/marp $out/bin 20 - cp -r ./* $out/lib/marp 21 - ln -s $out/lib/marp/Marp $out/bin 22 - ''; 23 - 24 - postFixup = '' 25 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 26 - --set-rpath "${atomEnv.libPath}:${lib.makeLibraryPath [ libXScrnSaver gtk2 ]}:$out/lib/marp" \ 27 - $out/bin/Marp 28 - ''; 29 - 30 - meta = with lib; { 31 - description = "Markdown presentation writer, powered by Electron"; 32 - homepage = "https://yhatt.github.io/marp/"; 33 - license = licenses.mit; 34 - maintainers = [ maintainers.puffnfresh ]; 35 - platforms = [ "x86_64-linux" ]; 36 - }; 37 - }
···
+7 -5
pkgs/applications/virtualization/colima/default.nix
··· 1 { lib 2 - , buildGoModule 3 , fetchFromGitHub 4 , installShellFiles 5 , lima 6 , makeWrapper 7 }: 8 9 - buildGoModule rec { 10 pname = "colima"; 11 - version = "0.3.4"; 12 13 src = fetchFromGitHub { 14 owner = "abiosoft"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "sha256-KYW3gxf21aWnuRHkysOjArzMSNH3m3XDoi6Sic3N+Po="; 18 19 # We need the git revision 20 leaveDotGit = true; ··· 26 27 nativeBuildInputs = [ installShellFiles makeWrapper ]; 28 29 - vendorSha256 = "sha256-Z4+qwoX04VnLsUIYRfOowFLgcaA9w8oGRl77jzFigIc="; 30 31 preConfigure = '' 32 ldflags="-X github.com/abiosoft/colima/config.appVersion=${version}
··· 1 { lib 2 + , buildGo118Module 3 , fetchFromGitHub 4 , installShellFiles 5 , lima 6 , makeWrapper 7 }: 8 9 + buildGo118Module rec { 10 pname = "colima"; 11 + version = "0.4.2"; 12 13 src = fetchFromGitHub { 14 owner = "abiosoft"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "sha256-66nKH5jxTzLB9bg2lH1E8Cc0GZ6C/N/+yPYhCVEKOBY="; 18 19 # We need the git revision 20 leaveDotGit = true; ··· 26 27 nativeBuildInputs = [ installShellFiles makeWrapper ]; 28 29 + vendorSha256 = "sha256-91Ex3RPWxOHyZcR3Bo+bRdDAFw2mEGiC/uNKjdX2kuw="; 30 + 31 + doCheck = false; 32 33 preConfigure = '' 34 ldflags="-X github.com/abiosoft/colima/config.appVersion=${version}
+9 -14
pkgs/applications/virtualization/docker-slim/default.nix
··· 1 - { lib 2 - , buildGoPackage 3 - , fetchFromGitHub 4 - , makeWrapper 5 - }: 6 7 - buildGoPackage rec { 8 pname = "docker-slim"; 9 version = "1.37.6"; 10 - 11 - goPackagePath = "github.com/docker-slim/docker-slim"; 12 13 src = fetchFromGitHub { 14 owner = "docker-slim"; ··· 16 rev = version; 17 sha256 = "sha256-Jzi6JC6DRklZhNqmFx6eHx6qR8/fb/JuSpgwtPThcc4="; 18 }; 19 20 subPackages = [ "cmd/docker-slim" "cmd/docker-slim-sensor" ]; 21 22 - nativeBuildInputs = [ 23 - makeWrapper 24 - ]; 25 26 ldflags = [ 27 - "-s" "-w" 28 - "-X ${goPackagePath}/pkg/version.appVersionTag=${version}" 29 - "-X ${goPackagePath}/pkg/version.appVersionRev=${src.rev}" 30 ]; 31 32 # docker-slim tries to create its state dir next to the binary (inside the nix
··· 1 + { lib, buildGoModule, fetchFromGitHub, makeWrapper }: 2 3 + buildGoModule rec { 4 pname = "docker-slim"; 5 version = "1.37.6"; 6 7 src = fetchFromGitHub { 8 owner = "docker-slim"; ··· 10 rev = version; 11 sha256 = "sha256-Jzi6JC6DRklZhNqmFx6eHx6qR8/fb/JuSpgwtPThcc4="; 12 }; 13 + 14 + vendorSha256 = null; 15 16 subPackages = [ "cmd/docker-slim" "cmd/docker-slim-sensor" ]; 17 18 + nativeBuildInputs = [ makeWrapper ]; 19 20 ldflags = [ 21 + "-s" 22 + "-w" 23 + "-X github.com/docker-slim/docker-slim/pkg/version.appVersionTag=${version}" 24 + "-X github.com/docker-slim/docker-slim/pkg/version.appVersionRev=${src.rev}" 25 ]; 26 27 # docker-slim tries to create its state dir next to the binary (inside the nix
-25
pkgs/applications/window-managers/btops/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "btops"; 5 - version = "0.1.0"; 6 - 7 - goPackagePath = "github.com/cmschuetz/btops"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "cmschuetz"; 11 - repo = "btops"; 12 - rev = version; 13 - sha256 = "sha256-eE28PGfpmmhcyeSy3PICebAs+cHAZXPxT+S/4+9ukcY="; 14 - }; 15 - 16 - goDeps = ./deps.nix; 17 - 18 - meta = with lib; { 19 - description = "bspwm desktop management that supports dymanic appending, removing, and renaming"; 20 - homepage = "https://github.com/cmschuetz/btops"; 21 - maintainers = with maintainers; [ mnacamura ]; 22 - license = licenses.mit; 23 - platforms = platforms.linux; 24 - }; 25 - }
···
-120
pkgs/applications/window-managers/btops/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/fsnotify/fsnotify"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/fsnotify/fsnotify"; 8 - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9"; 9 - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/hashicorp/hcl"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/hashicorp/hcl"; 17 - rev = "ef8a98b0bbce4a65b5aa4c368430a80ddc533168"; 18 - sha256 = "1qalfsc31fra7hcw2lc3s20aj7al62fq3j5fn5kga3mg99b82nyr"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/magiconair/properties"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/magiconair/properties"; 26 - rev = "c2353362d570a7bfa228149c62842019201cfb71"; 27 - sha256 = "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/mitchellh/mapstructure"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/mitchellh/mapstructure"; 35 - rev = "bb74f1db0675b241733089d5a1faa5dd8b0ef57b"; 36 - sha256 = "1aqk9qr46bwgdc5j7n7als61xvssvyjf4qzfsvhacl4izpygqnw7"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/pelletier/go-toml"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/pelletier/go-toml"; 44 - rev = "66540cf1fcd2c3aee6f6787dfa32a6ae9a870f12"; 45 - sha256 = "1n8na0yg90gm0rpifmzrby5r385vvd62cdam3ls7ssy02bjvfw15"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/spf13/afero"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/spf13/afero"; 53 - rev = "63644898a8da0bc22138abf860edaf5277b6102e"; 54 - sha256 = "13piahaq4vw1y1sklq5scrsflqx0a8hzmdqfz1fy4871kf2gl8qw"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/spf13/cast"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/spf13/cast"; 62 - rev = "8965335b8c7107321228e3e3702cab9832751bac"; 63 - sha256 = "177bk7lq40jbgv9p9r80aydpaccfk8ja3a7jjhfwiwk9r1pa4rr2"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/spf13/jwalterweatherman"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/spf13/jwalterweatherman"; 71 - rev = "7c0cea34c8ece3fbeb2b27ab9b59511d360fb394"; 72 - sha256 = "132p84i20b9s5r6fs597lsa6648vd415ch7c0d018vm8smzqpd0h"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/spf13/pflag"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/spf13/pflag"; 80 - rev = "583c0c0531f06d5278b7d917446061adc344b5cd"; 81 - sha256 = "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/spf13/viper"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/spf13/viper"; 89 - rev = "15738813a09db5c8e5b60a19d67d3f9bd38da3a4"; 90 - sha256 = "1mjfzg8zvnxckaq6l8gw99i2msrfqn9yr04dc3b7kd5bpxi6zr4v"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "golang.org/x/sys"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://go.googlesource.com/sys"; 98 - rev = "7c87d13f8e835d2fb3a70a2912c811ed0c1d241b"; 99 - sha256 = "03fhkng37rczqwfgah5hd7d373jps3hcfx79dmky2fh62yvpcyn3"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "golang.org/x/text"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://go.googlesource.com/text"; 107 - rev = "5c1cf69b5978e5a34c5f9ba09a83e56acc4b7877"; 108 - sha256 = "03br8p1sb1ffr02l8hyrgcyib7ms0z06wy3v4r1dj2l6q4ghwzfs"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "gopkg.in/yaml.v2"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://gopkg.in/yaml.v2"; 116 - rev = "5420a8b6744d3b0345ab293f6fcba19c978f1183"; 117 - sha256 = "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1"; 118 - }; 119 - } 120 - ]
···
+2 -20
pkgs/desktops/pantheon/apps/elementary-camera/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch 5 , nix-update-script 6 - , appstream 7 - , desktop-file-utils 8 - , gettext 9 - , libxml2 10 , meson 11 , ninja 12 , pkg-config ··· 24 25 stdenv.mkDerivation rec { 26 pname = "elementary-camera"; 27 - version = "6.0.3"; 28 29 src = fetchFromGitHub { 30 owner = "elementary"; 31 repo = "camera"; 32 rev = version; 33 - sha256 = "sha256-xIv+mOlZV58XD0Z6Vc2wA1EQUxT5BaQ0zhYc9v+ne1w="; 34 }; 35 36 - patches = [ 37 - # Fix build with meson 0.61 38 - # https://github.com/elementary/camera/pull/216 39 - (fetchpatch { 40 - url = "https://github.com/elementary/camera/commit/ead143b7e3246c5fa9bb37c95d491fb07cea9e04.patch"; 41 - sha256 = "sha256-2zGigUi6DpjJx8SEvAE3Q3jrm7MggOvLc72lAPMPvs4="; 42 - }) 43 - ]; 44 - 45 nativeBuildInputs = [ 46 - appstream 47 - desktop-file-utils 48 - gettext 49 - libxml2 50 meson 51 ninja 52 pkg-config
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , nix-update-script 5 , meson 6 , ninja 7 , pkg-config ··· 19 20 stdenv.mkDerivation rec { 21 pname = "elementary-camera"; 22 + version = "6.1.0"; 23 24 src = fetchFromGitHub { 25 owner = "elementary"; 26 repo = "camera"; 27 rev = version; 28 + sha256 = "sha256-uccH9rCZaifIlLDx+zat3Zx8ecgKo2M6x+mg7AnuFBs="; 29 }; 30 31 nativeBuildInputs = [ 32 meson 33 ninja 34 pkg-config
+4 -1
pkgs/development/compilers/openjdk/openjfx/11.nix
··· 92 ''; 93 94 # glib-2.62 deprecations 95 - NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; 96 97 stripDebugList = [ "." ]; 98
··· 92 ''; 93 94 # glib-2.62 deprecations 95 + # -fcommon: gstreamer workaround for -fno-common toolchains: 96 + # ld: gsttypefindelement.o:(.bss._gst_disable_registry_cache+0x0): multiple definition of 97 + # `_gst_disable_registry_cache'; gst.o:(.bss._gst_disable_registry_cache+0x0): first defined here 98 + NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS -fcommon"; 99 100 stripDebugList = [ "." ]; 101
+13 -3
pkgs/development/compilers/openjdk/openjfx/15.nix
··· 31 JDK_HOME = ${openjdk11_headless.home} 32 '' + args.gradleProperties or ""); 33 34 - #avoids errors about deprecation of GTypeDebugFlags, GTimeVal, etc. 35 - NIX_CFLAGS_COMPILE = [ "-DGLIB_DISABLE_DEPRECATION_WARNINGS" ]; 36 37 buildPhase = '' 38 runHook preBuild ··· 89 ''; 90 91 # glib-2.62 deprecations 92 - NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; 93 94 stripDebugList = [ "." ]; 95
··· 31 JDK_HOME = ${openjdk11_headless.home} 32 '' + args.gradleProperties or ""); 33 34 + NIX_CFLAGS_COMPILE = [ 35 + #avoids errors about deprecation of GTypeDebugFlags, GTimeVal, etc. 36 + "-DGLIB_DISABLE_DEPRECATION_WARNINGS" 37 + 38 + # gstreamer workaround for -fno-common toolchains: 39 + # ld: gsttypefindelement.o:(.bss._gst_disable_registry_cache+0x0): multiple definition of 40 + # `_gst_disable_registry_cache'; gst.o:(.bss._gst_disable_registry_cache+0x0): first defined here 41 + "-fcommon" 42 + ]; 43 44 buildPhase = '' 45 runHook preBuild ··· 96 ''; 97 98 # glib-2.62 deprecations 99 + # -fcommon: gstreamer workaround for -fno-common toolchains: 100 + # ld: gsttypefindelement.o:(.bss._gst_disable_registry_cache+0x0): multiple definition of 101 + # `_gst_disable_registry_cache'; gst.o:(.bss._gst_disable_registry_cache+0x0): first defined here 102 + NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS -fcommon"; 103 104 stripDebugList = [ "." ]; 105
+3 -3
pkgs/development/libraries/libdeltachat/default.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "libdeltachat"; 20 - version = "1.84.0"; 21 22 src = fetchFromGitHub { 23 owner = "deltachat"; 24 repo = "deltachat-core-rust"; 25 rev = version; 26 - hash = "sha256-ZG3siulXVHTbdSd9tmenljFODZ3LWX+BXn6OJfrbEYA="; 27 }; 28 29 patches = [ ··· 33 cargoDeps = rustPlatform.fetchCargoTarball { 34 inherit src; 35 name = "${pname}-${version}"; 36 - hash = "sha256-vQ+A4dEWh5+BgWOdxd7GTPuHk6M6bHgGnZcWNwR/Urs="; 37 }; 38 39 nativeBuildInputs = [
··· 17 18 stdenv.mkDerivation rec { 19 pname = "libdeltachat"; 20 + version = "1.85.0"; 21 22 src = fetchFromGitHub { 23 owner = "deltachat"; 24 repo = "deltachat-core-rust"; 25 rev = version; 26 + hash = "sha256-bgx1j2ESAv9cRe3Iv6nYOS7bUAQcXj3Ta4rAC800Nf8="; 27 }; 28 29 patches = [ ··· 33 cargoDeps = rustPlatform.fetchCargoTarball { 34 inherit src; 35 name = "${pname}-${version}"; 36 + hash = "sha256-7ZdN/7CKFuFOIReM7BkMsO/E2lPyDnl4ssPhK5BPLh8="; 37 }; 38 39 nativeBuildInputs = [
+9 -8
pkgs/development/libraries/qt-6/modules/qtwebengine.nix
··· 116 patchShebangs . 117 ) 118 119 - # Patch library paths in sources 120 - sed -i \ 121 - -e "s,QLibraryInfo::location(QLibraryInfo::DataPath),QLatin1String(\"$out\"),g" \ 122 - -e "s,QLibraryInfo::location(QLibraryInfo::TranslationsPath),QLatin1String(\"$out/translations\"),g" \ 123 - -e "s,QLibraryInfo::location(QLibraryInfo::LibraryExecutablesPath),QLatin1String(\"$out/libexec\"),g" \ 124 - src/core/web_engine_library_info.cpp 125 - 126 sed -i -e '/lib_loader.*Load/s!"\(libudev\.so\)!"${lib.getLib systemd}/lib/\1!' \ 127 src/3rdparty/chromium/device/udev_linux/udev?_loader.cc 128 ··· 132 substituteInPlace src/3rdparty/chromium/ui/events/ozone/layout/xkb/xkb_keyboard_layout_engine.cc \ 133 --replace "/usr/share/X11/xkb" "${xkeyboard_config}/share/X11/xkb" 134 135 substituteInPlace src/core/web_engine_library_info.cpp \ 136 --replace "QLibraryInfo::path(QLibraryInfo::DataPath)" "\"$out\"" \ 137 - --replace "QLibraryInfo::path(QLibraryInfo::TranslationsPath)" "\"$out/translations\"" 138 ''; 139 140 cmakeFlags = [ ··· 231 ]; 232 233 requiredSystemFeatures = [ "big-parallel" ]; 234 235 meta = with lib; { 236 broken = (stdenv.isLinux && stdenv.isAarch64);
··· 116 patchShebangs . 117 ) 118 119 sed -i -e '/lib_loader.*Load/s!"\(libudev\.so\)!"${lib.getLib systemd}/lib/\1!' \ 120 src/3rdparty/chromium/device/udev_linux/udev?_loader.cc 121 ··· 125 substituteInPlace src/3rdparty/chromium/ui/events/ozone/layout/xkb/xkb_keyboard_layout_engine.cc \ 126 --replace "/usr/share/X11/xkb" "${xkeyboard_config}/share/X11/xkb" 127 128 + # Patch library paths in sources 129 substituteInPlace src/core/web_engine_library_info.cpp \ 130 --replace "QLibraryInfo::path(QLibraryInfo::DataPath)" "\"$out\"" \ 131 + --replace "QLibraryInfo::path(QLibraryInfo::TranslationsPath)" "\"$out/translations\"" \ 132 + --replace "QLibraryInfo::path(QLibraryInfo::LibraryExecutablesPath)" "\"$out/libexec\"" 133 ''; 134 135 cmakeFlags = [ ··· 226 ]; 227 228 requiredSystemFeatures = [ "big-parallel" ]; 229 + 230 + postInstall = '' 231 + # This is required at runtime 232 + mkdir $out/libexec 233 + mv $dev/libexec/QtWebEngineProcess $out/libexec 234 + ''; 235 236 meta = with lib; { 237 broken = (stdenv.isLinux && stdenv.isAarch64);
+2 -2
pkgs/development/python-modules/aws-adfs/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "aws-adfs"; 21 - version = "2.0.5"; 22 format = "pyproject"; 23 24 disabled = pythonOlder "3.6"; ··· 27 owner = "venth"; 28 repo = pname; 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-OBxKJN14CuWSq88KxSttpK/Paj2sBHrBVMyP+oPkHys="; 31 }; 32 33 nativeBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "aws-adfs"; 21 + version = "2.2.1"; 22 format = "pyproject"; 23 24 disabled = pythonOlder "3.6"; ··· 27 owner = "venth"; 28 repo = pname; 29 rev = "refs/tags/${version}"; 30 + hash = "sha256-REJYuOGq22onMj4WcfA7i4/cG99UGZA9D99ESIKY1A8="; 31 }; 32 33 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/meross-iot/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "meross-iot"; 14 - version = "0.4.4.4"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 19 src = fetchFromGitHub { 20 owner = "albertogeniola"; 21 repo = "MerossIot"; 22 - rev = version; 23 - sha256 = "sha256-bazAhCsxr8UNV51UnaGbP7kTC6mcDNM7N78f0jy26ew="; 24 }; 25 26 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "meross-iot"; 14 + version = "0.4.4.5"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 19 src = fetchFromGitHub { 20 owner = "albertogeniola"; 21 repo = "MerossIot"; 22 + rev = "refs/tags/${version}"; 23 + sha256 = "sha256-PBf8uHEeHXoYZcFD9KCWg1I5QRAILjVMl3oglWsEsag="; 24 }; 25 26 propagatedBuildInputs = [
+2 -8
pkgs/development/python-modules/ocrmypdf/default.nix
··· 2 , buildPythonPackage 3 , coloredlogs 4 , fetchFromGitHub 5 - , fetchpatch 6 , ghostscript 7 , img2pdf 8 , importlib-metadata ··· 28 29 buildPythonPackage rec { 30 pname = "ocrmypdf"; 31 - version = "13.4.6"; 32 33 src = fetchFromGitHub { 34 owner = "ocrmypdf"; ··· 40 postFetch = '' 41 rm "$out/.git_archival.txt" 42 ''; 43 - hash = "sha256-Hd9vsw+UEpE7juYSCiHhXtxaC58OtS/Uy20Jdp6QXPA="; 44 }; 45 46 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 53 pngquant = "${lib.getBin pngquant}/bin/pngquant"; 54 tesseract = "${lib.getBin tesseract4}/bin/tesseract"; 55 unpaper = "${lib.getBin unpaper}/bin/unpaper"; 56 - }) 57 - # https://github.com/ocrmypdf/OCRmyPDF/pull/973 58 - (fetchpatch { 59 - url = "https://github.com/ocrmypdf/OCRmyPDF/commit/808b24d59f5b541a335006aa6ea7cdc3c991adc0.patch"; 60 - hash = "sha256-khsH70fWk5fStf94wcRKKX7cCbgD69LtKkngJIqA3+w="; 61 }) 62 ]; 63
··· 2 , buildPythonPackage 3 , coloredlogs 4 , fetchFromGitHub 5 , ghostscript 6 , img2pdf 7 , importlib-metadata ··· 27 28 buildPythonPackage rec { 29 pname = "ocrmypdf"; 30 + version = "13.4.7"; 31 32 src = fetchFromGitHub { 33 owner = "ocrmypdf"; ··· 39 postFetch = '' 40 rm "$out/.git_archival.txt" 41 ''; 42 + hash = "sha256-jCfMCjh8MdH5K76iyJCgtkgPtpxnCxlXlzttTIzINPk="; 43 }; 44 45 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 52 pngquant = "${lib.getBin pngquant}/bin/pngquant"; 53 tesseract = "${lib.getBin tesseract4}/bin/tesseract"; 54 unpaper = "${lib.getBin unpaper}/bin/unpaper"; 55 }) 56 ]; 57
+2 -2
pkgs/development/python-modules/pypck/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pypck"; 13 - version = "0.7.14"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "alengwenus"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-v8eCCbSnAmJUmHSNS+lz8JRhDFrqyxgAkgcZ2bzfOTg="; 23 }; 24 25 checkInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pypck"; 13 + version = "0.7.15"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "alengwenus"; 20 repo = pname; 21 rev = version; 22 + hash = "sha256-OuM/r9rxIl4niY87cEcbZ73x2ZIQbaPZqbMrQ7hZE/g="; 23 }; 24 25 checkInputs = [
+7
pkgs/development/tools/misc/texlab/default.nix
··· 30 31 postInstall = '' 32 installManPage texlab.1 33 ''; 34 35 passthru.updateScript = nix-update-script {
··· 30 31 postInstall = '' 32 installManPage texlab.1 33 + 34 + # Remove generated dylib of human_name dependency. TexLab statically 35 + # links to the generated rlib and doesn't reference the dylib. I 36 + # couldn't find any way to prevent building this by passing cargo flags. 37 + # See https://github.com/djudd/human-name/blob/master/Cargo.toml#L43 38 + rm "$out/lib/libhuman_name${stdenv.hostPlatform.extensions.sharedLibrary}" 39 + rmdir "$out/lib" 40 ''; 41 42 passthru.updateScript = nix-update-script {
+5 -2
pkgs/os-specific/linux/kernel/linux-zen.nix
··· 2 3 let 4 # having the full version string here makes it easier to update 5 - modDirVersion = "5.18.0-zen1"; 6 parts = lib.splitString "-" modDirVersion; 7 version = lib.elemAt parts 0; 8 suffix = lib.elemAt parts 1; ··· 20 owner = "zen-kernel"; 21 repo = "zen-kernel"; 22 inherit rev; 23 - sha256 = "sha256-A0QrY1REbRODnHtmyNqVaiLhDgYCECevfHZCxtoQ9kU="; 24 }; 25 26 structuredExtraConfig = with lib.kernel; { 27 ZEN_INTERACTIVE = yes; 28 }; 29 30 extraMeta = {
··· 2 3 let 4 # having the full version string here makes it easier to update 5 + modDirVersion = "5.18.1-zen1"; 6 parts = lib.splitString "-" modDirVersion; 7 version = lib.elemAt parts 0; 8 suffix = lib.elemAt parts 1; ··· 20 owner = "zen-kernel"; 21 repo = "zen-kernel"; 22 inherit rev; 23 + sha256 = "sha256-LCLfLE85NifuskYl2dxLOJEsUNHLegF8ecYyU4xOCtY="; 24 }; 25 26 structuredExtraConfig = with lib.kernel; { 27 ZEN_INTERACTIVE = yes; 28 + # TODO: Remove once #175433 reaches master 29 + # https://nixpk.gs/pr-tracker.html?pr=175433 30 + WERROR = no; 31 }; 32 33 extraMeta = {
+2 -2
pkgs/tools/backup/discordchatexporter-cli/default.nix
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 - version = "2.34"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 - sha256 = "EHpnLUFHR+FC1qlwW0TuLas9aA/CMELHkzbLlNyiwgE="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj";
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 + version = "2.34.1"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 + sha256 = "U+AwxHvyLD2BwrJH3h0yKKHBsgBM/D657TuG9IgllPs="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj";
+1 -1
pkgs/tools/backup/discordchatexporter-cli/deps.nix
··· 1 { fetchNuGet }: [ 2 - (fetchNuGet { pname = "CliFx"; version = "2.2.2"; sha256 = "13g5xlrbyhnbwkyzic5jlhxl0kpvkfrdmb5h2rdf9yp4gp5p9mwg"; }) 3 (fetchNuGet { pname = "Gress"; version = "2.0.1"; sha256 = "00xhyfkrlc38nbl6aymr7zwxc3kj0rxvx5gwk6fkfrvi1pzgq0wc"; }) 4 (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 5 (fetchNuGet { pname = "MiniRazor.CodeGen"; version = "2.2.1"; sha256 = "1mrjw3vq59pbiqvayilazjgv6l87j20j8hmhcpbacz9p5bl1hvvr"; })
··· 1 { fetchNuGet }: [ 2 + (fetchNuGet { pname = "CliFx"; version = "2.2.5"; sha256 = "1bk716rdswy28h53qy68xywci8k1h2iqdy2iz1yf7v8g0sa2n79p"; }) 3 (fetchNuGet { pname = "Gress"; version = "2.0.1"; sha256 = "00xhyfkrlc38nbl6aymr7zwxc3kj0rxvx5gwk6fkfrvi1pzgq0wc"; }) 4 (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 5 (fetchNuGet { pname = "MiniRazor.CodeGen"; version = "2.2.1"; sha256 = "1mrjw3vq59pbiqvayilazjgv6l87j20j8hmhcpbacz9p5bl1hvvr"; })
+5 -6
pkgs/tools/filesystems/goofys/default.nix
··· 6 7 buildGoModule { 8 pname = "goofys"; 9 - version = "unstable-2021-03-26"; 10 11 src = fetchFromGitHub { 12 owner = "kahing"; 13 repo = "goofys"; 14 # Same as v0.24.0 but migrated to Go modules 15 - rev = "0c993271269b539196330a18716a33fbeeebd624"; 16 - sha256 = "18is5sv2a9wmsm0qpakly988z1qyl2b2hf2105lpxrgl659sf14p"; 17 }; 18 19 - vendorSha256 = "15yq0msh9icxd5n2zkkqrlwxifizhpa99d4aznv8clg32ybs61fj"; 20 21 subPackages = [ "." ]; 22 ··· 30 description = "A high-performance, POSIX-ish Amazon S3 file system written in Go."; 31 license = [ lib.licenses.mit ]; 32 maintainers = [ lib.maintainers.adisbladis ]; 33 - # does not build with go 1.17 34 - broken = true; 35 }; 36 37 }
··· 6 7 buildGoModule { 8 pname = "goofys"; 9 + version = "unstable-2022-04-21"; 10 11 src = fetchFromGitHub { 12 owner = "kahing"; 13 repo = "goofys"; 14 # Same as v0.24.0 but migrated to Go modules 15 + rev = "829d8e5ce20faa3f9f6f054077a14325e00e9249"; 16 + sha256 = "sha256-6yVMNSwwPZlADXuPBDRlgoz4Stuz2pgv6r6+y2/C8XY="; 17 }; 18 19 + vendorSha256 = "sha256-2N8MshBo9+2q8K00eTW5So6d8ZNRzOfQkEKmxR428gI="; 20 21 subPackages = [ "." ]; 22 ··· 30 description = "A high-performance, POSIX-ish Amazon S3 file system written in Go."; 31 license = [ lib.licenses.mit ]; 32 maintainers = [ lib.maintainers.adisbladis ]; 33 + broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042 34 }; 35 36 }
+6 -2
pkgs/tools/typesetting/sile/default.nix
··· 59 makeWrapper 60 ]; 61 buildInputs = [ 62 harfbuzz 63 icu 64 fontconfig 65 libiconv 66 - luaEnv 67 ] 68 ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.AppKit 69 ; 70 checkInputs = [ 71 poppler_utils 72 ]; 73 74 - preConfigure = '' 75 patchShebangs build-aux/*.sh 76 '' + lib.optionalString stdenv.isDarwin '' 77 sed -i -e 's|@import AppKit;|#import <AppKit/AppKit.h>|' src/macfonts.m
··· 59 makeWrapper 60 ]; 61 buildInputs = [ 62 + luaEnv 63 harfbuzz 64 icu 65 fontconfig 66 libiconv 67 ] 68 ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.AppKit 69 ; 70 checkInputs = [ 71 poppler_utils 72 ]; 73 + passthru = { 74 + # So it will be easier to inspect this environment, in comparison to others 75 + inherit luaEnv; 76 + }; 77 78 + postPatch = '' 79 patchShebangs build-aux/*.sh 80 '' + lib.optionalString stdenv.isDarwin '' 81 sed -i -e 's|@import AppKit;|#import <AppKit/AppKit.h>|' src/macfonts.m
+2
pkgs/top-level/aliases.nix
··· 128 brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24 129 bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22 130 bro = zeek; # Added 2019-09-29 131 btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22 132 bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14 133 inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17 ··· 826 manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22 827 marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 828 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 829 matcha = throw "matcha was renamed to matcha-gtk-theme"; # added 2020-05-09 830 mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 831 matrique = spectral; # Added 2020-01-27
··· 128 brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24 129 bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22 130 bro = zeek; # Added 2019-09-29 131 + btops = throw "btops has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 132 btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22 133 bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14 134 inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17 ··· 827 manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22 828 marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 829 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 830 + marp = throw "marp has been removed from nixpkgs, as it's unmaintained and has security issues"; # Added 2022-06-04 831 matcha = throw "matcha was renamed to matcha-gtk-theme"; # added 2020-05-09 832 mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 833 matrique = spectral; # Added 2020-01-27
-4
pkgs/top-level/all-packages.nix
··· 25498 25499 bspwm = callPackage ../applications/window-managers/bspwm { }; 25500 25501 - btops = callPackage ../applications/window-managers/btops { }; 25502 - 25503 bvi = callPackage ../applications/editors/bvi { }; 25504 25505 bviplus = callPackage ../applications/editors/bviplus { }; ··· 28014 markmind = callPackage ../applications/misc/markmind { 28015 electron = electron_9; 28016 }; 28017 - 28018 - marp = callPackage ../applications/office/marp { }; 28019 28020 magnetico = callPackage ../applications/networking/p2p/magnetico { }; 28021
··· 25498 25499 bspwm = callPackage ../applications/window-managers/bspwm { }; 25500 25501 bvi = callPackage ../applications/editors/bvi { }; 25502 25503 bviplus = callPackage ../applications/editors/bviplus { }; ··· 28012 markmind = callPackage ../applications/misc/markmind { 28013 electron = electron_9; 28014 }; 28015 28016 magnetico = callPackage ../applications/networking/p2p/magnetico { }; 28017