Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ef4ddefb 1965bbf7

+159 -54
+19 -2
pkgs/applications/misc/electrum/default.nix
··· 43 mv ./all/electrum/tests $out 44 ''; 45 }; 46 in 47 48 python3.pkgs.buildPythonApplication { ··· 66 67 nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ]; 68 69 - propagatedBuildInputs = with python3.pkgs; [ 70 aiohttp 71 aiohttp-socks 72 aiorpcx ··· 87 ckcc-protocol 88 keepkey 89 trezor 90 - ] ++ lib.optionals enableQt [ pyqt5 qdarkstyle ]; 91 92 preBuild = '' 93 sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
··· 43 mv ./all/electrum/tests $out 44 ''; 45 }; 46 + 47 + py = python3.override { 48 + packageOverrides = self: super: { 49 + 50 + aiorpcx = super.aiorpcx.overridePythonAttrs (oldAttrs: rec { 51 + version = "0.18.7"; 52 + src = oldAttrs.src.override { 53 + inherit version; 54 + sha256 = "1rswrspv27x33xa5bnhrkjqzhv0sknv5kd7pl1vidw9d2z4rx2l0"; 55 + }; 56 + }); 57 + }; 58 + }; 59 + 60 in 61 62 python3.pkgs.buildPythonApplication { ··· 80 81 nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ]; 82 83 + propagatedBuildInputs = with py.pkgs; [ 84 aiohttp 85 aiohttp-socks 86 aiorpcx ··· 101 ckcc-protocol 102 keepkey 103 trezor 104 + ] ++ lib.optionals enableQt [ 105 + pyqt5 106 + qdarkstyle 107 + ]; 108 109 preBuild = '' 110 sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
+3 -2
pkgs/applications/networking/browsers/chromium/common.nix
··· 75 in attrs: concatStringsSep " " (attrValues (mapAttrs toFlag attrs)); 76 77 # https://source.chromium.org/chromium/chromium/src/+/master:build/linux/unbundle/replace_gn_files.py 78 - gnSystemLibraries = [ 79 "ffmpeg" 80 "flac" 81 "libjpeg" 82 "libpng" 83 "libwebp" 84 "libxslt" 85 "opus" 86 - "snappy" 87 "zlib" 88 ]; 89
··· 75 in attrs: concatStringsSep " " (attrValues (mapAttrs toFlag attrs)); 76 77 # https://source.chromium.org/chromium/chromium/src/+/master:build/linux/unbundle/replace_gn_files.py 78 + gnSystemLibraries = lib.optionals (!chromiumVersionAtLeast "93") [ 79 "ffmpeg" 80 + "snappy" 81 + ] ++ [ 82 "flac" 83 "libjpeg" 84 "libpng" 85 "libwebp" 86 "libxslt" 87 "opus" 88 "zlib" 89 ]; 90
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 31 } 32 }, 33 "dev": { 34 - "version": "93.0.4577.8", 35 - "sha256": "1x6i5bmcnj8bkpcb9gcyd1m9nzpq206yyprxrnpak117k7abr2b1", 36 - "sha256bin64": "0qjfb9jxr2gmwb1dsvl6yzz06vsjny2l3icrsdcm0pl6r6davk2w", 37 "deps": { 38 "gn": { 39 "version": "2021-07-08",
··· 31 } 32 }, 33 "dev": { 34 + "version": "93.0.4577.15", 35 + "sha256": "07gbpa1z6cnbmv8008y92ldg53w48rjx0slvgsrw4gk9cnvmnpz0", 36 + "sha256bin64": "0sb3m2mbq6g3mnps7g6xziziwv6sng34410ww5jyx82mw0q0sxig", 37 "deps": { 38 "gn": { 39 "version": "2021-07-08",
+2 -2
pkgs/applications/networking/cloudflared/default.nix
··· 2 3 buildGoModule rec { 4 pname = "cloudflared"; 5 - version = "2021.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "cloudflare"; 9 repo = "cloudflared"; 10 rev = version; 11 - sha256 = "sha256-FQejuKBDUCCcEq9ZmSMigdvqowTurCYEhOiXQN7exIE="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "cloudflared"; 5 + version = "2021.7.3"; 6 7 src = fetchFromGitHub { 8 owner = "cloudflare"; 9 repo = "cloudflared"; 10 rev = version; 11 + sha256 = "sha256-p9FNH5obQfEQZRoOr35ORH+6dwbcNgSXjARF9WA7t9E="; 12 }; 13 14 vendorSha256 = null;
+9 -4
pkgs/applications/version-management/git-and-tools/cgit/default.nix
··· 22 sha256 = "09lzwa183nblr6l8ib35g2xrjf9wm9yhk3szfvyzkwivdv69c9r2"; 23 }; 24 25 - nativeBuildInputs = [ pkg-config ] ++ [ python wrapPython ]; 26 buildInputs = [ 27 - openssl zlib asciidoc libxml2 libxslt docbook_xsl luajit 28 ]; 29 pythonPath = [ pygments markdown ]; 30 ··· 48 preBuild = '' 49 mkdir -p git 50 tar --strip-components=1 -xf "$gitSrc" -C git 51 52 - makeFlagsArray+=(prefix="$out" CGIT_SCRIPT_PATH="$out/cgit/") 53 - ''; 54 55 # Install manpage. 56 postInstall = ''
··· 22 sha256 = "09lzwa183nblr6l8ib35g2xrjf9wm9yhk3szfvyzkwivdv69c9r2"; 23 }; 24 25 + nativeBuildInputs = [ pkg-config asciidoc ] ++ [ python wrapPython ]; 26 buildInputs = [ 27 + openssl zlib libxml2 libxslt docbook_xsl luajit 28 ]; 29 pythonPath = [ pygments markdown ]; 30 ··· 48 preBuild = '' 49 mkdir -p git 50 tar --strip-components=1 -xf "$gitSrc" -C git 51 + ''; 52 53 + makeFlags = [ 54 + "prefix=$(out)" 55 + "CGIT_SCRIPT_PATH=$out/cgit/" 56 + "CC=${stdenv.cc.targetPrefix}cc" 57 + "AR=${stdenv.cc.targetPrefix}ar" 58 + ]; 59 60 # Install manpage. 61 postInstall = ''
+3 -3
pkgs/development/compilers/yosys/default.nix
··· 34 35 stdenv.mkDerivation rec { 36 pname = "yosys"; 37 - version = "0.9+4052"; 38 39 src = fetchFromGitHub { 40 owner = "YosysHQ"; 41 repo = "yosys"; 42 - rev = "687f381b6985d9dda7e11535628e2fafff267af5"; 43 - sha256 = "15lcj798ckh9zwvdqb5gnvicilsxjyxv01gcviijg310hq62n7vf"; 44 }; 45 46 enableParallelBuilding = true;
··· 34 35 stdenv.mkDerivation rec { 36 pname = "yosys"; 37 + version = "0.9+4221"; 38 39 src = fetchFromGitHub { 40 owner = "YosysHQ"; 41 repo = "yosys"; 42 + rev = "9600f20be887b707f6d5d3f74dec58b336e2464e"; 43 + sha256 = "0xbvbnhc6qvcq1c8zxfyf4ws959c824z660nrghfxyzkrjl8wi1h"; 44 }; 45 46 enableParallelBuilding = true;
+2 -2
pkgs/development/python-modules/aiorpcx/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aiorpcx"; 10 - version = "0.18.7"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "aiorpcX"; 15 - sha256 = "808a9ec9172df11677a0f7b459b69d1a6cf8b19c19da55541fa31fb1afce5ce7"; 16 }; 17 18 propagatedBuildInputs = [ attrs ];
··· 7 8 buildPythonPackage rec { 9 pname = "aiorpcx"; 10 + version = "0.22.1"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "aiorpcX"; 15 + sha256 = "0lx54bcinp44fmr8q4bbffsqbkg8kdcwykf9i5jj0bj3sfzgf9k0"; 16 }; 17 18 propagatedBuildInputs = [ attrs ];
+21 -6
pkgs/development/python-modules/matrix-client/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , requests 5 - , pytest, pytest-runner, responses 6 }: 7 8 buildPythonPackage rec { 9 pname = "matrix_client"; 10 - version = "0.3.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw"; 15 }; 16 17 - checkInputs = [ pytest pytest-runner responses ]; 18 19 - propagatedBuildInputs = [ requests ]; 20 21 meta = with lib; { 22 - description = "Matrix Client-Server SDK"; 23 homepage = "https://github.com/matrix-org/matrix-python-sdk"; 24 license = licenses.asl20; 25 maintainers = with maintainers; [ olejorgenb ];
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , pytestCheckHook 5 , requests 6 + , responses 7 + , urllib3 8 }: 9 10 buildPythonPackage rec { 11 pname = "matrix_client"; 12 + version = "0.4.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "0mii7ib3bah5ppqs7i8sjv5l0zbl57011908m4l0jbyby90ayy06"; 17 }; 18 19 + propagatedBuildInputs = [ 20 + requests 21 + urllib3 22 + ]; 23 + 24 + checkInputs = [ 25 + pytestCheckHook 26 + responses 27 + ]; 28 + 29 + postPatch = '' 30 + substituteInPlace setup.py --replace \ 31 + "pytest-runner~=5.1" "" 32 + ''; 33 34 + pythonImportsCheck = [ "matrix_client" ]; 35 36 meta = with lib; { 37 + description = "Python Matrix Client-Server SDK"; 38 homepage = "https://github.com/matrix-org/matrix-python-sdk"; 39 license = licenses.asl20; 40 maintainers = with maintainers; [ olejorgenb ];
+2 -2
pkgs/development/python-modules/nexia/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "nexia"; 12 - version = "0.9.10"; 13 disabled = pythonOlder "3.5"; 14 15 src = fetchFromGitHub { 16 owner = "bdraco"; 17 repo = pname; 18 rev = version; 19 - sha256 = "0k97i243ap1sap5smvfmpsjqzkx5adjvi14awv82pcp52ckzkbi9"; 20 }; 21 22 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "nexia"; 12 + version = "0.9.11"; 13 disabled = pythonOlder "3.5"; 14 15 src = fetchFromGitHub { 16 owner = "bdraco"; 17 repo = pname; 18 rev = version; 19 + sha256 = "0ql08nfvh6rjhjdh78gzih7az95m0fc9wxc22yqmlc9grifnp9i5"; 20 }; 21 22 propagatedBuildInputs = [
+52
pkgs/games/ecwolf/default.nix
···
··· 1 + {stdenv, lib, fetchurl, makeDesktopItem, copyDesktopItems, cmake, pkg-config, zlib, bzip2, libjpeg, SDL, SDL_mixer, gtk2}: 2 + 3 + let 4 + desktopItem = makeDesktopItem { 5 + name = "ecwolf"; 6 + exec = "ecwolf"; 7 + comment = "Enhanced Wolfenstein 3D port"; 8 + desktopName = "Wolfenstein 3D"; 9 + categories = "Game;"; 10 + }; 11 + in 12 + stdenv.mkDerivation rec { 13 + pname = "ecwolf"; 14 + version = "1.3.3"; 15 + 16 + src = fetchurl { 17 + url = "https://maniacsvault.net/ecwolf/files/ecwolf/1.x/${pname}-${version}-src.tar.xz"; 18 + sha256 = "1sbdv672dz47la5a5qwmdi1v258k9kc5dkx7cdj2b6gk8nbm2srl"; 19 + }; 20 + 21 + nativeBuildInputs = [ cmake pkg-config ]; 22 + buildInputs = [ zlib bzip2 libjpeg SDL SDL_mixer gtk2 copyDesktopItems ]; 23 + 24 + desktopItems = [ desktopItem ]; 25 + 26 + # Change the location where the ecwolf executable looks for the ecwolf.pk3 27 + # file. 28 + # 29 + # By default, it expects the PK3 file to reside in the same directory as the 30 + # executable, which is not desirable. 31 + # We will adjust the code so that it can be retrieved from the share/ 32 + # directory. 33 + 34 + preConfigure = '' 35 + sed -i -e "s|ecwolf.pk3|$out/share/ecwolf/ecwolf.pk3|" src/version.h 36 + ''; 37 + 38 + # Install the required PK3 file in the required data directory 39 + postInstall = '' 40 + mkdir -p $out/share/ecwolf 41 + cp ecwolf.pk3 $out/share/ecwolf 42 + ''; 43 + 44 + meta = with lib; { 45 + description = "Enhanched SDL-based port of Wolfenstein 3D for various platforms"; 46 + homepage = "https://maniacsvault.net/ecwolf/"; 47 + license = licenses.gpl2Plus; 48 + maintainers = with maintainers; [ sander ]; 49 + # Darwin is untested (supported by upstream) 50 + platforms = platforms.all; 51 + }; 52 + }
+36 -24
pkgs/misc/vim-plugins/generated.nix
··· 425 426 chadtree = buildVimPluginFrom2Nix { 427 pname = "chadtree"; 428 - version = "2021-07-24"; 429 src = fetchFromGitHub { 430 owner = "ms-jpq"; 431 repo = "chadtree"; 432 - rev = "139ca9bb8685a2d9b807d869a49a85fcd42811f7"; 433 - sha256 = "1739vvb9rzlkyrq63lgadhf2azaszy2xhy52hw91rczg8xw7zfc5"; 434 }; 435 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 436 }; ··· 1667 1668 friendly-snippets = buildVimPluginFrom2Nix { 1669 pname = "friendly-snippets"; 1670 - version = "2021-07-08"; 1671 src = fetchFromGitHub { 1672 owner = "rafamadriz"; 1673 repo = "friendly-snippets"; 1674 - rev = "f3ca66b6a2a42eb01ffc255ac03039177b888951"; 1675 - sha256 = "08wzq5i86wxdyhl2yrl9ggfhng92pfx5d7rhmxfcm4abnnl9sj07"; 1676 }; 1677 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 1678 }; ··· 1939 sha256 = "01w981v7rya9fnxwdhlka4vfzlnw87pxmfcqmvxh3p96lmi71xjm"; 1940 }; 1941 meta.homepage = "https://github.com/buoto/gotests-vim/"; 1942 }; 1943 1944 goyo-vim = buildVimPluginFrom2Nix { ··· 2748 2749 luasnip = buildVimPluginFrom2Nix { 2750 pname = "luasnip"; 2751 - version = "2021-07-23"; 2752 src = fetchFromGitHub { 2753 owner = "l3mon4d3"; 2754 repo = "luasnip"; 2755 - rev = "726aac6f8f05c94418cd3e9d6c05705e8b1ae743"; 2756 - sha256 = "0v5lpcbmlghyfifwys51acihbhawg87bmapjay52g591cjzcd9ak"; 2757 }; 2758 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 2759 }; ··· 3432 3433 nord-nvim = buildVimPluginFrom2Nix { 3434 pname = "nord-nvim"; 3435 - version = "2021-07-23"; 3436 src = fetchFromGitHub { 3437 owner = "shaunsingh"; 3438 repo = "nord.nvim"; 3439 - rev = "b7209e7657dcc786b844a920894a517571da1317"; 3440 - sha256 = "1iaslrhq18myxwla41n3kllvwcn3hb5zcgfl3h6zw4ar8n9pvwdr"; 3441 }; 3442 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 3443 }; ··· 3828 3829 nvim-treesitter = buildVimPluginFrom2Nix { 3830 pname = "nvim-treesitter"; 3831 - version = "2021-07-23"; 3832 src = fetchFromGitHub { 3833 owner = "nvim-treesitter"; 3834 repo = "nvim-treesitter"; 3835 - rev = "65a059b34d5bc77db01372c589f582b17524a2f9"; 3836 - sha256 = "1f0iig48frgd75ccan8yqlxh5j84ywb6im1qsmq17gyfjs4vbqbx"; 3837 }; 3838 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 3839 }; ··· 4044 4045 packer-nvim = buildVimPluginFrom2Nix { 4046 pname = "packer-nvim"; 4047 - version = "2021-07-22"; 4048 src = fetchFromGitHub { 4049 owner = "wbthomason"; 4050 repo = "packer.nvim"; 4051 - rev = "fdf005f5697742da121391d31ad42a47842264f9"; 4052 - sha256 = "15amdgzdiaf0srzzwy2pgk7d44bwls5pzj2088xf1206754znsas"; 4053 }; 4054 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 4055 }; ··· 4489 4490 rust-tools-nvim = buildVimPluginFrom2Nix { 4491 pname = "rust-tools-nvim"; 4492 - version = "2021-07-23"; 4493 src = fetchFromGitHub { 4494 owner = "simrat39"; 4495 repo = "rust-tools.nvim"; 4496 - rev = "160aeb66e46e863802c2e4c5a772c3858bc02fd0"; 4497 - sha256 = "108nxkbybl1fvyawgq0mzbi2c5fadycxj0pnnnsw8alycyjln13f"; 4498 }; 4499 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 4500 }; ··· 9755 9756 vimtex = buildVimPluginFrom2Nix { 9757 pname = "vimtex"; 9758 - version = "2021-07-18"; 9759 src = fetchFromGitHub { 9760 owner = "lervag"; 9761 repo = "vimtex"; 9762 - rev = "830659752b8914f6b4567a00448901246e4d1841"; 9763 - sha256 = "1zdi1kblk03gwifpg1nanq4ppn9xw6af92l3li86ziw89bv3bad9"; 9764 }; 9765 meta.homepage = "https://github.com/lervag/vimtex/"; 9766 };
··· 425 426 chadtree = buildVimPluginFrom2Nix { 427 pname = "chadtree"; 428 + version = "2021-07-25"; 429 src = fetchFromGitHub { 430 owner = "ms-jpq"; 431 repo = "chadtree"; 432 + rev = "393fbc24cab3fdfaffca85e286e01c84bcf748c9"; 433 + sha256 = "08pcp6dh6kibppndf97nzj90iw1qv51s4zk3vq59z16w32zwkzda"; 434 }; 435 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 436 }; ··· 1667 1668 friendly-snippets = buildVimPluginFrom2Nix { 1669 pname = "friendly-snippets"; 1670 + version = "2021-07-24"; 1671 src = fetchFromGitHub { 1672 owner = "rafamadriz"; 1673 repo = "friendly-snippets"; 1674 + rev = "d5bf63e50c1c7923f1de2d10d8d822f6eb8c872e"; 1675 + sha256 = "14h8kd01674i82npc2b58ivhj2d80nb1x8v0j7ag5c5n24p1nphf"; 1676 }; 1677 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 1678 }; ··· 1939 sha256 = "01w981v7rya9fnxwdhlka4vfzlnw87pxmfcqmvxh3p96lmi71xjm"; 1940 }; 1941 meta.homepage = "https://github.com/buoto/gotests-vim/"; 1942 + }; 1943 + 1944 + goto-preview = buildVimPluginFrom2Nix { 1945 + pname = "goto-preview"; 1946 + version = "2021-06-20"; 1947 + src = fetchFromGitHub { 1948 + owner = "rmagatti"; 1949 + repo = "goto-preview"; 1950 + rev = "39aa1e0334b577c59c4f7177ef36624bdd83f100"; 1951 + sha256 = "0rr22r1yp7s3hqfdqf48wlv2bqw9j5izwgm3np7x1ygp85xizcbg"; 1952 + }; 1953 + meta.homepage = "https://github.com/rmagatti/goto-preview/"; 1954 }; 1955 1956 goyo-vim = buildVimPluginFrom2Nix { ··· 2760 2761 luasnip = buildVimPluginFrom2Nix { 2762 pname = "luasnip"; 2763 + version = "2021-07-24"; 2764 src = fetchFromGitHub { 2765 owner = "l3mon4d3"; 2766 repo = "luasnip"; 2767 + rev = "e9f4d03aaacc8af6ebd17833dfb5804a6abbd021"; 2768 + sha256 = "0k86j2rq5ykav8i6gna91v893j4panyr7l2cyp6vrrkj441bx5ww"; 2769 }; 2770 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 2771 }; ··· 3444 3445 nord-nvim = buildVimPluginFrom2Nix { 3446 pname = "nord-nvim"; 3447 + version = "2021-07-24"; 3448 src = fetchFromGitHub { 3449 owner = "shaunsingh"; 3450 repo = "nord.nvim"; 3451 + rev = "f58f77dee66babac1a859c2b552797d8128e1f86"; 3452 + sha256 = "12jway928hhm8s9sbwaqzjjzdgrpvz1gr09q4q5wxicfqaln4cd1"; 3453 }; 3454 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 3455 }; ··· 3840 3841 nvim-treesitter = buildVimPluginFrom2Nix { 3842 pname = "nvim-treesitter"; 3843 + version = "2021-07-24"; 3844 src = fetchFromGitHub { 3845 owner = "nvim-treesitter"; 3846 repo = "nvim-treesitter"; 3847 + rev = "296fe9b8611061a1054c05922dbaa134f2b712b2"; 3848 + sha256 = "0qxdd3z4696xf3nnaxmww3gs0ijfi2bw5aq9ywnqxpb3n734iapd"; 3849 }; 3850 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 3851 }; ··· 4056 4057 packer-nvim = buildVimPluginFrom2Nix { 4058 pname = "packer-nvim"; 4059 + version = "2021-07-25"; 4060 src = fetchFromGitHub { 4061 owner = "wbthomason"; 4062 repo = "packer.nvim"; 4063 + rev = "92dcbe5b1052c2cec1b5455a624710dd1e899777"; 4064 + sha256 = "0mh3ghbz38inwlcv4sqrpmyzwxr62j10d4873p9d5zb6j68ajxn9"; 4065 }; 4066 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 4067 }; ··· 4501 4502 rust-tools-nvim = buildVimPluginFrom2Nix { 4503 pname = "rust-tools-nvim"; 4504 + version = "2021-07-24"; 4505 src = fetchFromGitHub { 4506 owner = "simrat39"; 4507 repo = "rust-tools.nvim"; 4508 + rev = "27e1555146331f42ebb07fb7ba0a196b75e03dde"; 4509 + sha256 = "13dr30nifxrkjj7rf8dyv9p942dinjcpiy24sbfwni2ibmyf2p52"; 4510 }; 4511 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 4512 }; ··· 9767 9768 vimtex = buildVimPluginFrom2Nix { 9769 pname = "vimtex"; 9770 + version = "2021-07-24"; 9771 src = fetchFromGitHub { 9772 owner = "lervag"; 9773 repo = "vimtex"; 9774 + rev = "d1439f47a481b8665fbfa8511c6ae4e7514bdfc7"; 9775 + sha256 = "0brs97yhnfbkyyz6fzhs7s7kjwgwrw6kkinyycq51idxqdqvk4s8"; 9776 }; 9777 meta.homepage = "https://github.com/lervag/vimtex/"; 9778 };
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 575 rktjmp/fwatch.nvim@main 576 rktjmp/lush.nvim@main 577 rmagatti/auto-session@main 578 rodjek/vim-puppet 579 romainl/vim-cool 580 romainl/vim-qf
··· 575 rktjmp/fwatch.nvim@main 576 rktjmp/lush.nvim@main 577 rmagatti/auto-session@main 578 + rmagatti/goto-preview@main 579 rodjek/vim-puppet 580 romainl/vim-cool 581 romainl/vim-qf
+4 -4
pkgs/servers/mail/postfix/default.nix
··· 24 25 in stdenv.mkDerivation rec { 26 pname = "postfix"; 27 - version = "3.6.1"; 28 29 src = fetchurl { 30 - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${pname}-${version}.tar.gz"; 31 - sha256 = "sha256-IKgFYlYB57lZiSIIMsj6FM43TwcR2gVBiPjOxqkv1xw="; 32 }; 33 34 nativeBuildInputs = [ makeWrapper m4 ]; ··· 101 description = "A fast, easy to administer, and secure mail server"; 102 license = with licenses; [ ipl10 epl20 ]; 103 platforms = platforms.linux; 104 - maintainers = with maintainers; [ globin dotlambda ]; 105 }; 106 }
··· 24 25 in stdenv.mkDerivation rec { 26 pname = "postfix"; 27 + version = "3.6.2"; 28 29 src = fetchurl { 30 + url = "http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/${pname}-${version}.tar.gz"; 31 + sha256 = "sha256-UHMj0g17P3BfSc+MB9Q3xtgJC+0H4Vo8DsQF7a1Up9Q="; 32 }; 33 34 nativeBuildInputs = [ makeWrapper m4 ]; ··· 101 description = "A fast, easy to administer, and secure mail server"; 102 license = with licenses; [ ipl10 epl20 ]; 103 platforms = platforms.linux; 104 + maintainers = with maintainers; [ globin dotlambda lewo ]; 105 }; 106 }
+2
pkgs/top-level/all-packages.nix
··· 28923 28924 eboard = callPackage ../games/eboard { }; 28925 28926 eduke32 = callPackage ../games/eduke32 { }; 28927 28928 egoboo = callPackage ../games/egoboo { };
··· 28923 28924 eboard = callPackage ../games/eboard { }; 28925 28926 + ecwolf = callPackage ../games/ecwolf { }; 28927 + 28928 eduke32 = callPackage ../games/eduke32 { }; 28929 28930 egoboo = callPackage ../games/egoboo { };