Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub cbd2c726 f62f3d7a

+90 -70
+44
pkgs/applications/blockchains/lndmanage.nix
··· 1 + { lib, fetchFromGitHub, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "lndmanage"; 5 + version = "0.11.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "bitromortac"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "19sqf7cjslwpfzcdbyq182dx7gnn9hii77sahbnh88v69qxgwzvb"; 12 + }; 13 + 14 + propagatedBuildInputs = with python3Packages; [ 15 + cycler 16 + decorator 17 + googleapis-common-protos 18 + grpcio 19 + grpcio-tools 20 + kiwisolver 21 + networkx 22 + numpy 23 + protobuf 24 + pyparsing 25 + python-dateutil 26 + six 27 + pygments 28 + ]; 29 + 30 + preBuild = '' 31 + substituteInPlace setup.py --replace '==' '>=' 32 + ''; 33 + 34 + preCheck = '' 35 + export HOME=$(mktemp -d) 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "Channel management tool for lightning network daemon (LND) operators"; 40 + homepage = "https://github.com/bitromortac/lndmanage"; 41 + license = licenses.mit; 42 + maintainers = with maintainers; [ mmilata ]; 43 + }; 44 + }
+3 -3
pkgs/applications/blockchains/openethereum/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "openethereum"; 15 - version = "3.1.1"; 15 + version = "3.2.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "openethereum"; 19 19 repo = "openethereum"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-RUrJuJF0R0mc7XdLyk915fRWtMfzjp5QE6oeWxHfyEQ="; 21 + sha256 = "sha256-+bzMo0s+wdp8T/YjPk6mrPSPid1G8WScB8FJhXdL9JQ="; 22 22 }; 23 23 24 - cargoSha256 = "sha256-b+winsCzU0sXGDX6nUtWq4JrIyTcJ3uva7RlV5VsXfk="; 24 + cargoSha256 = "sha256-ibjjJ5zGF6wbO24/RoYKsTYsMNXHb1EdekDwSICPc5g="; 25 25 26 26 LIBCLANG_PATH = "${llvmPackages.libclang}/lib"; 27 27 nativeBuildInputs = [
+4 -2
pkgs/applications/misc/gremlin-console/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gremlin-console"; 5 - version = "3.4.8"; 5 + version = "3.4.10"; 6 6 src = fetchzip { 7 7 url = "http://www-eu.apache.org/dist/tinkerpop/${version}/apache-tinkerpop-gremlin-console-${version}-bin.zip"; 8 - sha256 = "13ycr6ppyrz9rq7dasabjdk8lcsxdj3krb4j7d2jmbh2hij1rdvf"; 8 + sha256 = "sha256-4/EcVjIc+8OMkll8OxE5oXiqk+w9k1Nv9ld8N7oFFp0="; 9 9 }; 10 10 11 11 nativeBuildInputs = [ makeWrapper ]; 12 12 13 13 installPhase = '' 14 + runHook preInstall 14 15 mkdir -p $out/opt 15 16 cp -r ext lib $out/opt/ 16 17 install -D bin/gremlin.sh $out/opt/bin/gremlin-console 17 18 makeWrapper $out/opt/bin/gremlin-console $out/bin/gremlin-console \ 18 19 --prefix PATH ":" "${openjdk}/bin/" \ 19 20 --set CLASSPATH "$out/opt/lib/" 21 + runHook postInstall 20 22 ''; 21 23 22 24 meta = with lib; {
+2 -2
pkgs/applications/version-management/git-and-tools/git-extras/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "git-extras"; 5 - version = "6.1.0"; 5 + version = "6.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tj"; 9 9 repo = "git-extras"; 10 10 rev = version; 11 - sha256 = "12ff9rhgqd71xm72r385hx0h8g75hz0ag0adzqcwfa54k0lhrrrz"; 11 + sha256 = "sha256-ACuTb1DGft2/32Ezg23jhpl9yua5kUTZ2kKL8KHU+BU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ unixtools.column which ];
-29
pkgs/data/fonts/inter-ui/default.nix
··· 1 - { lib, fetchzip }: 2 - 3 - # XXX: IMPORTANT: 4 - # For compat, keep this at the last version that used the name "Inter UI" 5 - # For newer versions, which are now simply named "Inter", 6 - # see the expression for `inter` (../inter/default.nix). 7 - let 8 - version = "3.2"; 9 - in fetchzip { 10 - name = "inter-ui-${version}"; 11 - 12 - url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-UI-${version}.zip"; 13 - 14 - postFetch = '' 15 - mkdir -p $out/share/fonts/opentype 16 - unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype 17 - ''; 18 - 19 - sha256 = "01d2ql803jrhss6g60djvs08x9xl7z6b3snkn03vqnrajdgifcl4"; 20 - 21 - meta = with lib; { 22 - homepage = "https://rsms.me/inter/"; 23 - description = "A typeface specially designed for user interfaces"; 24 - license = licenses.ofl; 25 - platforms = platforms.all; 26 - maintainers = with maintainers; [ demize ]; 27 - }; 28 - } 29 -
+1 -1
pkgs/development/compilers/julia/1.0.nix
··· 139 139 "prefix=$(out)" 140 140 "SHELL=${stdenv.shell}" 141 141 142 - "USE_SYSTEM_BLAS=1" 142 + (lib.optionalString (!stdenv.isDarwin) "USE_SYSTEM_BLAS=1") 143 143 "USE_BLAS64=${if blas.isILP64 then "1" else "0"}" 144 144 145 145 "USE_SYSTEM_LAPACK=1"
+1 -1
pkgs/development/compilers/julia/1.3.nix
··· 89 89 "prefix=$(out)" 90 90 "SHELL=${stdenv.shell}" 91 91 92 - "USE_SYSTEM_BLAS=1" 92 + (lib.optionalString (!stdenv.isDarwin) "USE_SYSTEM_BLAS=1") 93 93 "USE_BLAS64=${if blas.isILP64 then "1" else "0"}" 94 94 95 95 "USE_SYSTEM_LAPACK=1"
+1 -1
pkgs/development/compilers/julia/1.5.nix
··· 88 88 "prefix=$(out)" 89 89 "SHELL=${stdenv.shell}" 90 90 91 - "USE_SYSTEM_BLAS=1" 91 + (lib.optionalString (!stdenv.isDarwin) "USE_SYSTEM_BLAS=1") 92 92 "USE_BLAS64=${if blas.isILP64 then "1" else "0"}" 93 93 94 94 "USE_SYSTEM_LAPACK=1"
+2 -2
pkgs/development/tools/yq-go/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "yq-go"; 5 - version = "4.6.2"; 5 + version = "4.6.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mikefarah"; 9 9 rev = "v${version}"; 10 10 repo = "yq"; 11 - sha256 = "sha256-Hv1o1MzkpapmeIsZJ4peyG5kSHt0EXjTA+gE0iq1XF8="; 11 + sha256 = "sha256-+qSGdskv8qUZRl7wYKn8WsgAcD8DYw1BwZnVKK6g/sI="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vpvIl1lfaziuoHs+oDEIztufH1somphiBAn6qTaQaZw=";
+24 -24
pkgs/games/factorio/versions.json
··· 2 2 "x86_64-linux": { 3 3 "alpha": { 4 4 "experimental": { 5 - "name": "factorio_alpha_x64-1.1.27.tar.xz", 5 + "name": "factorio_alpha_x64-1.1.30.tar.xz", 6 6 "needsAuth": true, 7 - "sha256": "0s8qnr2p819r4pjby71jp5in679yvsz235iy1csmjjm2d2q6igln", 7 + "sha256": "14mcf9pj6s5ms2hl68n3r5jk1q5y2qzw88wiahsb5plkv9qyqyp6", 8 8 "tarDirectory": "x64", 9 - "url": "https://factorio.com/get-download/1.1.27/alpha/linux64", 10 - "version": "1.1.27" 9 + "url": "https://factorio.com/get-download/1.1.30/alpha/linux64", 10 + "version": "1.1.30" 11 11 }, 12 12 "stable": { 13 - "name": "factorio_alpha_x64-1.1.27.tar.xz", 13 + "name": "factorio_alpha_x64-1.1.30.tar.xz", 14 14 "needsAuth": true, 15 - "sha256": "0s8qnr2p819r4pjby71jp5in679yvsz235iy1csmjjm2d2q6igln", 15 + "sha256": "14mcf9pj6s5ms2hl68n3r5jk1q5y2qzw88wiahsb5plkv9qyqyp6", 16 16 "tarDirectory": "x64", 17 - "url": "https://factorio.com/get-download/1.1.27/alpha/linux64", 18 - "version": "1.1.27" 17 + "url": "https://factorio.com/get-download/1.1.30/alpha/linux64", 18 + "version": "1.1.30" 19 19 } 20 20 }, 21 21 "demo": { 22 22 "experimental": { 23 - "name": "factorio_demo_x64-1.1.27.tar.xz", 23 + "name": "factorio_demo_x64-1.1.30.tar.xz", 24 24 "needsAuth": false, 25 - "sha256": "0cgnv6w8bxxskf0gxqcg9hq0zl4idnwh5d61b0510axah1m6i57z", 25 + "sha256": "1b3na8xn9lhlvrsd6hxr130nf9p81s26n25a4qdgkczz6waysgjv", 26 26 "tarDirectory": "x64", 27 - "url": "https://factorio.com/get-download/1.1.27/demo/linux64", 28 - "version": "1.1.27" 27 + "url": "https://factorio.com/get-download/1.1.30/demo/linux64", 28 + "version": "1.1.30" 29 29 }, 30 30 "stable": { 31 - "name": "factorio_demo_x64-1.1.27.tar.xz", 31 + "name": "factorio_demo_x64-1.1.30.tar.xz", 32 32 "needsAuth": false, 33 - "sha256": "0cgnv6w8bxxskf0gxqcg9hq0zl4idnwh5d61b0510axah1m6i57z", 33 + "sha256": "1b3na8xn9lhlvrsd6hxr130nf9p81s26n25a4qdgkczz6waysgjv", 34 34 "tarDirectory": "x64", 35 - "url": "https://factorio.com/get-download/1.1.27/demo/linux64", 36 - "version": "1.1.27" 35 + "url": "https://factorio.com/get-download/1.1.30/demo/linux64", 36 + "version": "1.1.30" 37 37 } 38 38 }, 39 39 "headless": { 40 40 "experimental": { 41 - "name": "factorio_headless_x64-1.1.27.tar.xz", 41 + "name": "factorio_headless_x64-1.1.30.tar.xz", 42 42 "needsAuth": false, 43 - "sha256": "08bny927jiph0zj101yx2wirm16194sap3ifk9rs582s506i1p2w", 43 + "sha256": "1rac6d8v8swiw1nn2hl53rhjfhsyv98qg8hfnwhfqn76jgspspdl", 44 44 "tarDirectory": "x64", 45 - "url": "https://factorio.com/get-download/1.1.27/headless/linux64", 46 - "version": "1.1.27" 45 + "url": "https://factorio.com/get-download/1.1.30/headless/linux64", 46 + "version": "1.1.30" 47 47 }, 48 48 "stable": { 49 - "name": "factorio_headless_x64-1.1.27.tar.xz", 49 + "name": "factorio_headless_x64-1.1.30.tar.xz", 50 50 "needsAuth": false, 51 - "sha256": "08bny927jiph0zj101yx2wirm16194sap3ifk9rs582s506i1p2w", 51 + "sha256": "1rac6d8v8swiw1nn2hl53rhjfhsyv98qg8hfnwhfqn76jgspspdl", 52 52 "tarDirectory": "x64", 53 - "url": "https://factorio.com/get-download/1.1.27/headless/linux64", 54 - "version": "1.1.27" 53 + "url": "https://factorio.com/get-download/1.1.30/headless/linux64", 54 + "version": "1.1.30" 55 55 } 56 56 } 57 57 }
+3 -3
pkgs/tools/admin/stripe-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "stripe-cli"; 5 - version = "1.5.10"; 5 + version = "1.5.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "stripe"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-cedreUdLjUONA8iVlQ/OfOJtM8EgCI8zaKDCbruUIVo="; 11 + sha256 = "sha256-aoflV4C7eH0RNdq8j7kPeAfnOEZECmfZ91/QBQy7oxY="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-hYvW5xAbnxOEapFc70wOF9ybbDv7hLGljKqHI+1Itaw="; 14 + vendorSha256 = "sha256-e7EZ5o30vDpS904/R1y7/Mds7HxQNmsIftrnc1Bj2bc="; 15 15 16 16 subPackages = [ 17 17 "cmd/stripe"
+1
pkgs/top-level/aliases.nix
··· 313 313 inboxer = throw "inboxer has been removed as it is no longer maintained and no longer works as Google shut down the inbox service this package wrapped."; 314 314 infiniband-diags = rdma-core; # added 2019-08-09 315 315 inotifyTools = inotify-tools; 316 + inte-ui = inter; # added 2021-03-27 316 317 i-score = throw "i-score has been removed: abandoned upstream."; # added 2020-11-21 317 318 jamomacore = throw "jamomacore has been removed: abandoned upstream."; # added 2020-11-21 318 319 jbidwatcher = throw "jbidwatcher was discontinued in march 2021"; # added 2021-03-15
+2 -1
pkgs/top-level/all-packages.nix
··· 21343 21343 21344 21344 maligned = callPackage ../development/tools/maligned { }; 21345 21345 21346 - inter-ui = callPackage ../data/fonts/inter-ui { }; 21347 21346 inter = callPackage ../data/fonts/inter { }; 21348 21347 21349 21348 scientifica = callPackage ../data/fonts/scientifica { }; ··· 26873 26872 lnd = callPackage ../applications/blockchains/lnd.nix { }; 26874 26873 26875 26874 lndconnect = callPackage ../applications/blockchains/lndconnect { }; 26875 + 26876 + lndmanage = callPackage ../applications/blockchains/lndmanage.nix { }; 26876 26877 26877 26878 monero = callPackage ../applications/blockchains/monero { 26878 26879 inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC;
+2 -1
pkgs/top-level/metrics.nix
··· 4 4 5 5 runCommand "nixpkgs-metrics" 6 6 { nativeBuildInputs = with pkgs.lib; map getBin [ nix time jq ]; 7 - requiredSystemFeatures = [ "benchmark" ]; 7 + #FIXME: the job doesn't work, see issue #76776 8 + #requiredSystemFeatures = [ "benchmark" ]; # dedicated machine, by @vcunat last time 8 9 } 9 10 '' 10 11 export NIX_STATE_DIR=$TMPDIR