Merge master into staging-next

authored by github-actions[bot] and committed by GitHub dd7cbca2 f121c20c

+174 -31
+2 -2
pkgs/applications/science/math/gmsh/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "gmsh"; 8 - version = "4.7.1"; 9 10 src = fetchurl { 11 url = "http://gmsh.info/src/gmsh-${version}-source.tgz"; 12 - sha256 = "0shwi41van3k0z6rnpl3sz5nh46xbyyljwfpcp8pwxbc26aw5169"; 13 }; 14 15 buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
··· 5 6 stdenv.mkDerivation rec { 7 pname = "gmsh"; 8 + version = "4.8.0"; 9 10 src = fetchurl { 11 url = "http://gmsh.info/src/gmsh-${version}-source.tgz"; 12 + sha256 = "sha256-JYd4PEsClj+divtxfJlUyu+kY+ouChLhZZMH5qDX6ms="; 13 }; 14 15 buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
+2 -2
pkgs/development/interpreters/jruby/default.nix
··· 6 jruby = stdenv.mkDerivation rec { 7 pname = "jruby"; 8 9 - version = "9.2.15.0"; 10 11 src = fetchurl { 12 url = "https://s3.amazonaws.com/jruby.org/downloads/${version}/jruby-bin-${version}.tar.gz"; 13 - sha256 = "sha256-no5dc8QtHa2KeVptw5vYfoj8iGP3bgZeQJnDLQhSBbA="; 14 }; 15 16 nativeBuildInputs = [ makeWrapper ];
··· 6 jruby = stdenv.mkDerivation rec { 7 pname = "jruby"; 8 9 + version = "9.2.16.0"; 10 11 src = fetchurl { 12 url = "https://s3.amazonaws.com/jruby.org/downloads/${version}/jruby-bin-${version}.tar.gz"; 13 + sha256 = "sha256-WuJ/FJ9z8/6k80NZy7dzwl2dmH5yte3snouTlXmX6zA="; 14 }; 15 16 nativeBuildInputs = [ makeWrapper ];
+51
pkgs/development/python-modules/fakeredis/default.nix
···
··· 1 + { lib 2 + , aioredis 3 + , async_generator 4 + , buildPythonPackage 5 + , fetchPypi 6 + , hypothesis 7 + , lupa 8 + , pytest-asyncio 9 + , pytest-mock 10 + , pytestCheckHook 11 + , pythonOlder 12 + , redis 13 + , six 14 + , sortedcontainers 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "fakeredis"; 19 + version = "1.4.5"; 20 + disabled = pythonOlder "3.5"; 21 + 22 + src = fetchPypi { 23 + inherit pname version; 24 + sha256 = "0slb23zxn47a4z8b7jq7gq40g4zsn52y9h29zdqs29b85394gjq1"; 25 + }; 26 + 27 + propagatedBuildInputs = [ 28 + aioredis 29 + lupa 30 + redis 31 + six 32 + sortedcontainers 33 + ]; 34 + 35 + checkInputs = [ 36 + async_generator 37 + hypothesis 38 + pytest-asyncio 39 + pytest-mock 40 + pytestCheckHook 41 + ]; 42 + 43 + pythonImportsCheck = [ "fakeredis" ]; 44 + 45 + meta = with lib; { 46 + description = "Fake implementation of Redis API"; 47 + homepage = "https://github.com/jamesls/fakeredis"; 48 + license = with licenses; [ mit ]; 49 + maintainers = with maintainers; [ fab ]; 50 + }; 51 + }
+2 -2
pkgs/development/python-modules/humanfriendly/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "humanfriendly"; 10 - version = "8.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12"; 15 }; 16 17 propagatedBuildInputs = lib.optional (pythonOlder "3.3") monotonic;
··· 7 8 buildPythonPackage rec { 9 pname = "humanfriendly"; 10 + version = "9.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-BmVilWY5qyH/JnbR/aC1mH6YXFNPx2cAoZvVS8uBEh0="; 15 }; 16 17 propagatedBuildInputs = lib.optional (pythonOlder "3.3") monotonic;
+26
pkgs/development/python-modules/lupa/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , cython 4 + , fetchPypi 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "lupa"; 9 + version = "1.9"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "13ifv0nxbf70xg69sp49j484m8cnid7rgh8f94pgfb50dj01vqd3"; 14 + }; 15 + 16 + nativeBuildInputs = [ cython ]; 17 + 18 + pythonImportsCheck = [ "lupa" ]; 19 + 20 + meta = with lib; { 21 + description = "Lua in Python"; 22 + homepage = "https://github.com/scoder/lupa"; 23 + license = with licenses; [ mit ]; 24 + maintainers = with maintainers; [ fab ]; 25 + }; 26 + }
+2 -2
pkgs/development/python-modules/pykmtronic/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pykmtronic"; 10 - version = "0.0.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "1p0i7g4k8ggmzargdi3ch55id04j5qjlhv8hap2162gc77b16d59"; 15 }; 16 17 propagatedBuildInputs = [ aiohttp lxml ];
··· 7 8 buildPythonPackage rec { 9 pname = "pykmtronic"; 10 + version = "0.0.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-8bxn27DU1XUQUxQFJklEge29DHx1DMu7pJG4hVE1jDU="; 15 }; 16 17 propagatedBuildInputs = [ aiohttp lxml ];
+4 -4
pkgs/development/tools/build-managers/shards/default.nix
··· 43 crystal = crystal_0_34; 44 }; 45 46 - shards_0_13 = generic { 47 - version = "0.12.0"; 48 - sha256 = "0dginczw1gc5qlb9k4b6ldxzqz8n97jrrnjvj3mm9wcdbc9j6h3c"; 49 crystal = crystal_0_36; 50 }; 51 52 - shards = shards_0_13; 53 }
··· 43 crystal = crystal_0_34; 44 }; 45 46 + shards_0_14 = generic { 47 + version = "0.14.0"; 48 + sha256 = "sha256-HEyGXoGkQvLrk672/ekmBxnR1eRM//GwRPd/19LM8Wo="; 49 crystal = crystal_0_36; 50 }; 51 52 + shards = shards_0_14; 53 }
+2 -2
pkgs/development/tools/build-managers/shards/shards.nix
··· 2 molinillo = { 3 owner = "crystal-lang"; 4 repo = "crystal-molinillo"; 5 - rev = "v0.1.0"; 6 - sha256 = "0rs0w59m6ccsgkdxfy3xv6alxsziy9sy9smz71cz0dnyvlzlnaxj"; 7 }; 8 }
··· 2 molinillo = { 3 owner = "crystal-lang"; 4 repo = "crystal-molinillo"; 5 + rev = "v0.2.0"; 6 + sha256 = "0pzi8pbrjn03zgk3kbha2kqqq0crmr8gy98dr05kisafvbghzwnh"; 7 }; 8 }
+2 -2
pkgs/development/tools/dapper/default.nix
··· 5 6 buildGoPackage rec { 7 pname = "dapper"; 8 - version = "0.5.5"; 9 10 goPackagePath = "github.com/rancher/dapper"; 11 ··· 13 owner = "rancher"; 14 repo = "dapper"; 15 rev = "v${version}"; 16 - sha256 = "sha256-QzPW1uC/WuYM/lLqyKodIozGTz5Qn1haoDvgNgjhrRA="; 17 }; 18 patchPhase = '' 19 substituteInPlace main.go --replace 0.0.0 ${version}
··· 5 6 buildGoPackage rec { 7 pname = "dapper"; 8 + version = "0.5.6"; 9 10 goPackagePath = "github.com/rancher/dapper"; 11 ··· 13 owner = "rancher"; 14 repo = "dapper"; 15 rev = "v${version}"; 16 + sha256 = "sha256-o64r4TBDpICnVZMIX2jKQjoJkA/jAviJkvI/xJ4ToM8="; 17 }; 18 patchPhase = '' 19 substituteInPlace main.go --replace 0.0.0 ${version}
+4 -4
pkgs/development/tools/dive/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dive"; 5 - version = "0.9.2"; 6 7 src = fetchFromGitHub { 8 owner = "wagoodman"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "1v69xbkjmyzm5g4wi9amjk65fs4qgxkqc0dvq55vqjigzrranp22"; 12 }; 13 14 - vendorSha256 = "0219q9zjc0i6fbdngqh0wjpmq8wj5bjiz5dls0c1aam0lh4vwkhc"; 15 16 doCheck = false; 17 ··· 25 description = "A tool for exploring each layer in a docker image"; 26 homepage = "https://github.com/wagoodman/dive"; 27 license = licenses.mit; 28 - maintainers = with maintainers; [ marsam spacekookie ]; 29 }; 30 }
··· 2 3 buildGoModule rec { 4 pname = "dive"; 5 + version = "0.10.0"; 6 7 src = fetchFromGitHub { 8 owner = "wagoodman"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-1pmw8pUlek5FlI1oAuvLSqDow7hw5rw86DRDZ7pFAmA="; 12 }; 13 14 + vendorSha256 = "sha256-0gJ3dAPoilh3IWkuesy8geNsuI1T0DN64XvInc9LvlM="; 15 16 doCheck = false; 17 ··· 25 description = "A tool for exploring each layer in a docker image"; 26 homepage = "https://github.com/wagoodman/dive"; 27 license = licenses.mit; 28 + maintainers = with maintainers; [ marsam spacekookie SuperSandro2000 ]; 29 }; 30 }
+12
pkgs/misc/vim-plugins/generated.nix
··· 2974 meta.homepage = "https://github.com/roxma/nvim-cm-racer/"; 2975 }; 2976 2977 nvim-compe = buildVimPluginFrom2Nix { 2978 pname = "nvim-compe"; 2979 version = "2021-03-05";
··· 2974 meta.homepage = "https://github.com/roxma/nvim-cm-racer/"; 2975 }; 2976 2977 + nvim-bqf = buildVimPluginFrom2Nix { 2978 + pname = "nvim-bqf"; 2979 + version = "2021-02-25"; 2980 + src = fetchFromGitHub { 2981 + owner = "kevinhwang91"; 2982 + repo = "nvim-bqf"; 2983 + rev = "4a424267e110e9637b84096a7080aa280c56be31"; 2984 + sha256 = "034x827nka73znvnbm5slnypw1az9s7xlrpkv5ia6hi7pcapjyfn"; 2985 + }; 2986 + meta.homepage = "https://github.com/kevinhwang91/nvim-bqf"; 2987 + }; 2988 + 2989 nvim-compe = buildVimPluginFrom2Nix { 2990 pname = "nvim-compe"; 2991 version = "2021-03-05";
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 264 KeitaNakamura/neodark.vim 265 keith/investigate.vim 266 keith/swift.vim 267 kevinhwang91/nvim-hlslens@main 268 kien/rainbow_parentheses.vim 269 knubie/vim-kitty-navigator
··· 264 KeitaNakamura/neodark.vim 265 keith/investigate.vim 266 keith/swift.vim 267 + kevinhwang91/nvim-bqf@main 268 kevinhwang91/nvim-hlslens@main 269 kien/rainbow_parentheses.vim 270 knubie/vim-kitty-navigator
+3 -3
pkgs/servers/http/gitlab-pages/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gitlab-pages"; 5 - version = "1.34.0"; 6 7 src = fetchFromGitLab { 8 owner = "gitlab-org"; 9 repo = "gitlab-pages"; 10 rev = "v${version}"; 11 - sha256 = "sha256-bJ9BQbAe35z5cIw0HhFjM6arWf1Tdy4gRipAHywxZZk="; 12 }; 13 14 - vendorSha256 = "sha256-amPL0gzvqsacj7+UNJeZOQbeiBESUttbtPHxLpDykRI="; 15 subPackages = [ "." ]; 16 doCheck = false; # Broken 17
··· 2 3 buildGoModule rec { 4 pname = "gitlab-pages"; 5 + version = "1.35.0"; 6 7 src = fetchFromGitLab { 8 owner = "gitlab-org"; 9 repo = "gitlab-pages"; 10 rev = "v${version}"; 11 + sha256 = "sha256-5AkzbOutBXy59XvMwfyH6A8ETwjP2QokG/Rz31/nCpk="; 12 }; 13 14 + vendorSha256 = "sha256-g8FDWpZmbZSkJAzoEiI8/JZLTTgG7uJ4sS35axaEXLY="; 15 subPackages = [ "." ]; 16 doCheck = false; # Broken 17
+2 -2
pkgs/servers/jackett/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "jackett"; 5 - version = "0.17.606"; 6 7 src = fetchurl { 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 - sha256 = "sha256-SWZMS5O1hp9RsFlivfegqoiCLLd9PZthxbrn6IL+FzI="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "jackett"; 5 + version = "0.17.617"; 6 7 src = fetchurl { 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 + sha256 = "sha256-rNCtoiv48fzKH5CAzTZJjAjv6Z37BfVVNqsfpRVfY1M="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+47
pkgs/tools/misc/ytfzf/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeWrapper 5 + , curl 6 + , dmenu 7 + , fzf 8 + , jq 9 + , mpv 10 + , youtube-dl 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "ytfzf"; 15 + version = "1.0.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "pystardust"; 19 + repo = "ytfzf"; 20 + rev = "v${version}"; 21 + sha256 = "09znixn8mpkxipv2x3nrfxr2i8g7y58v25qssqf092j9lh85sf9h"; 22 + }; 23 + 24 + nativeBuildInputs = [ makeWrapper ]; 25 + 26 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 27 + 28 + dontBuild = true; 29 + 30 + # remove after next update 31 + preInstall = '' 32 + mkdir -p "$out/bin" 33 + ''; 34 + 35 + postInstall = '' 36 + wrapProgram "$out/bin/ytfzf" --prefix PATH : ${lib.makeBinPath [ 37 + curl dmenu fzf jq mpv youtube-dl 38 + ]} 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "A posix script to find and watch youtube videos from the terminal"; 43 + homepage = "https://github.com/pystardust/ytfzf"; 44 + license = licenses.gpl3Only; 45 + maintainers = with maintainers; [ dotlambda ]; 46 + }; 47 + }
+2 -2
pkgs/tools/networking/haproxy/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 - version = "2.3.5"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 - sha256 = "sha256-eSRTlTC79VWCnH9Yhr4Lf8+NnI/+CGe3AQvrZwq/vks="; 19 }; 20 21 buildInputs = [ openssl zlib ]
··· 11 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 + version = "2.3.6"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 + sha256 = "sha256-bUYg5dodk+118ikBEhbbgdUJe2i/F14wny+rKJC7oDY="; 19 }; 20 21 buildInputs = [ openssl zlib ]
+2 -2
pkgs/tools/system/daemon/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "daemon"; 5 - version = "0.7.1"; 6 7 src = fetchurl { 8 url = "http://libslack.org/daemon/download/daemon-${version}.tar.gz"; 9 - sha256 = "sha256-uh9tyHUyyFK/uPQ2F5zWYcNFj/iY9ndnxBQSMZhibf0="; 10 }; 11 12 makeFlags = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "daemon"; 5 + version = "0.8"; 6 7 src = fetchurl { 8 url = "http://libslack.org/daemon/download/daemon-${version}.tar.gz"; 9 + sha256 = "sha256-dPEubUs8hWMkib0IQx09mXvBcmS/V7cgI4Ty6AnP9ZY="; 10 }; 11 12 makeFlags = [
+3 -1
pkgs/top-level/all-packages.nix
··· 9361 9362 yeshup = callPackage ../tools/system/yeshup { }; 9363 9364 ytree = callPackage ../tools/misc/ytree { }; 9365 9366 yggdrasil = callPackage ../tools/networking/yggdrasil { }; ··· 12972 12973 inherit (callPackage ../development/tools/build-managers/shards { }) 12974 shards_0_11 12975 - shards_0_13 12976 shards; 12977 12978 shellcheck = callPackage ../development/tools/shellcheck {};
··· 9361 9362 yeshup = callPackage ../tools/system/yeshup { }; 9363 9364 + ytfzf = callPackage ../tools/misc/ytfzf { }; 9365 + 9366 ytree = callPackage ../tools/misc/ytree { }; 9367 9368 yggdrasil = callPackage ../tools/networking/yggdrasil { }; ··· 12974 12975 inherit (callPackage ../development/tools/build-managers/shards { }) 12976 shards_0_11 12977 + shards_0_14 12978 shards; 12979 12980 shellcheck = callPackage ../development/tools/shellcheck {};
+5 -1
pkgs/top-level/python-packages.nix
··· 2215 2216 fake_factory = callPackage ../development/python-modules/fake_factory { }; 2217 2218 faker = callPackage ../development/python-modules/faker { }; 2219 2220 - fake-useragent = callPackage ../development/python-modules/fake-useragent { }; 2221 2222 falcon = callPackage ../development/python-modules/falcon { }; 2223 ··· 3928 ludios_wpull = callPackage ../development/python-modules/ludios_wpull { }; 3929 3930 luftdaten = callPackage ../development/python-modules/luftdaten { }; 3931 3932 lxc = callPackage ../development/python-modules/lxc { }; 3933
··· 2215 2216 fake_factory = callPackage ../development/python-modules/fake_factory { }; 2217 2218 + fake-useragent = callPackage ../development/python-modules/fake-useragent { }; 2219 + 2220 faker = callPackage ../development/python-modules/faker { }; 2221 2222 + fakeredis = callPackage ../development/python-modules/fakeredis { }; 2223 2224 falcon = callPackage ../development/python-modules/falcon { }; 2225 ··· 3930 ludios_wpull = callPackage ../development/python-modules/ludios_wpull { }; 3931 3932 luftdaten = callPackage ../development/python-modules/luftdaten { }; 3933 + 3934 + lupa = callPackage ../development/python-modules/lupa { }; 3935 3936 lxc = callPackage ../development/python-modules/lxc { }; 3937