Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 1ea9de26 7340ea55

+169 -79
+2 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 198 }; 199 200 terraform_1 = mkTerraform { 201 - version = "1.1.2"; 202 - sha256 = "sha256-8M/hs4AiApe9C19VnVhWYYOkKqXbv3aREUTNfExTDww="; 203 vendorSha256 = "sha256-inPNvNUcil9X0VQ/pVgZdnnmn9UCfEz7qXiuKDj8RYM="; 204 patches = [ ./provider-path-0_15.patch ]; 205 passthru = { inherit plugins; };
··· 198 }; 199 200 terraform_1 = mkTerraform { 201 + version = "1.1.3"; 202 + sha256 = "sha256-dvAuzVmwnM2PQcILzw3xNacBwuRY7cZEU3nv4/DzOKE="; 203 vendorSha256 = "sha256-inPNvNUcil9X0VQ/pVgZdnnmn9UCfEz7qXiuKDj8RYM="; 204 patches = [ ./provider-path-0_15.patch ]; 205 passthru = { inherit plugins; };
+5 -5
pkgs/applications/version-management/gitlab/data.json
··· 1 { 2 - "version": "14.6.0", 3 - "repo_hash": "0b77nh7xq5qalzhvfmsymmkrb78lmaffk464b074wi5c8gy3f5dn", 4 "yarn_hash": "1kcjbf8xn3bwac2s9i2i7dpgbkwcjh09wvgbgysm5yffpdswg6nl", 5 "owner": "gitlab-org", 6 "repo": "gitlab", 7 - "rev": "v14.6.0-ee", 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "14.6.0", 10 "GITLAB_PAGES_VERSION": "1.49.0", 11 "GITLAB_SHELL_VERSION": "13.22.1", 12 - "GITLAB_WORKHORSE_VERSION": "14.6.0" 13 } 14 }
··· 1 { 2 + "version": "14.6.1", 3 + "repo_hash": "0zgznf0f7jxyznil6q3fac2rvhaa2lhlpxcnbmkg9djyx1vcm7k1", 4 "yarn_hash": "1kcjbf8xn3bwac2s9i2i7dpgbkwcjh09wvgbgysm5yffpdswg6nl", 5 "owner": "gitlab-org", 6 "repo": "gitlab", 7 + "rev": "v14.6.1-ee", 8 "passthru": { 9 + "GITALY_SERVER_VERSION": "14.6.1", 10 "GITLAB_PAGES_VERSION": "1.49.0", 11 "GITLAB_SHELL_VERSION": "13.22.1", 12 + "GITLAB_WORKHORSE_VERSION": "14.6.1" 13 } 14 }
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 33 }; 34 }; 35 36 - version = "14.6.0"; 37 gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}"; 38 in 39 ··· 45 owner = "gitlab-org"; 46 repo = "gitaly"; 47 rev = "v${version}"; 48 - sha256 = "sha256-YiDZtWRb1PnCAv+UCPRQFoCA12vf3xoHoJ1i/hW+vMg="; 49 }; 50 51 vendorSha256 = "sha256-ZLd4E3+e25Hqmd6ZyF3X6BveMEg7OF0FX9IvNBWn3v0=";
··· 33 }; 34 }; 35 36 + version = "14.6.1"; 37 gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}"; 38 in 39 ··· 45 owner = "gitlab-org"; 46 repo = "gitaly"; 47 rev = "v${version}"; 48 + sha256 = "sha256-nbE71s+KoDC6EK26cmq+YIw9MFSQv1y6qwZAJXVXGj4="; 49 }; 50 51 vendorSha256 = "sha256-ZLd4E3+e25Hqmd6ZyF3X6BveMEg7OF0FX9IvNBWn3v0=";
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 buildGoModule rec { 6 pname = "gitlab-workhorse"; 7 8 - version = "14.6.0"; 9 10 src = fetchFromGitLab { 11 owner = data.owner;
··· 5 buildGoModule rec { 6 pname = "gitlab-workhorse"; 7 8 + version = "14.6.1"; 9 10 src = fetchFromGitLab { 11 owner = data.owner;
+3 -1
pkgs/applications/version-management/mercurial/default.nix
··· 11 , which 12 , sqlite 13 , git 14 , gnupg 15 }: 16 ··· 70 git 71 gnupg 72 ]; 73 checkPhase = '' 74 cat << EOF > tests/blacklists/nix 75 # tests enforcing "/usr/bin/env" shebangs, which are patched for nix ··· 78 EOF 79 80 # extended timeout necessary for tests to pass on the busy CI workers 81 - export HGTESTFLAGS="--blacklist blacklists/nix --timeout 600" 82 make check 83 ''; 84
··· 11 , which 12 , sqlite 13 , git 14 + , cacert 15 , gnupg 16 }: 17 ··· 71 git 72 gnupg 73 ]; 74 + SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt"; # needed for git 75 checkPhase = '' 76 cat << EOF > tests/blacklists/nix 77 # tests enforcing "/usr/bin/env" shebangs, which are patched for nix ··· 80 EOF 81 82 # extended timeout necessary for tests to pass on the busy CI workers 83 + export HGTESTFLAGS="--blacklist blacklists/nix --timeout 1800" 84 make check 85 ''; 86
+1 -1
pkgs/development/nim-packages/build-nim-package/default.nix
··· 10 11 configurePhase = if isNull configurePhase then '' 12 runHook preConfigure 13 - find $NIX_BUILD_TOP -name .attrs.json 14 nim_builder --phase:configure 15 runHook postConfigure 16 '' else
··· 10 11 configurePhase = if isNull configurePhase then '' 12 runHook preConfigure 13 + export NIX_NIM_BUILD_INPUTS=''${pkgsHostTarget[@]} $NIX_NIM_BUILD_INPUTS 14 nim_builder --phase:configure 15 runHook postConfigure 16 '' else
+20 -3
pkgs/development/nim-packages/bumpy/default.nix
··· 1 - { fetchNimble }: 2 3 - fetchNimble { 4 pname = "bumpy"; 5 version = "1.0.3"; 6 - hash = "sha256-mDmDlhOGoYYjKgF5j808oT2NqRlfcOdLSDE3WtdJFQ0="; 7 }
··· 1 + { lib, buildNimPackage, fetchFromGitHub, vmath }: 2 3 + buildNimPackage rec { 4 pname = "bumpy"; 5 version = "1.0.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "treeform"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-mDmDlhOGoYYjKgF5j808oT2NqRlfcOdLSDE3WtdJFQ0="; 12 + }; 13 + 14 + propagatedBuildInputs = [ vmath ]; 15 + 16 + doCheck = true; 17 + 18 + meta = with lib; 19 + src.meta // { 20 + description = "2d collision library"; 21 + license = [ licenses.mit ]; 22 + maintainers = [ maintainers.ehmry ]; 23 + }; 24 }
+18 -3
pkgs/development/nim-packages/flatty/default.nix
··· 1 - { fetchNimble }: 2 3 - fetchNimble { 4 pname = "flatty"; 5 version = "0.2.3"; 6 - hash = "sha256-1tPLtnlGtE4SF5/ti/2svvYHpEy/0Za5N4YAOHFOyjA="; 7 }
··· 1 + { lib, buildNimPackage, fetchFromGitHub }: 2 3 + buildNimPackage rec { 4 pname = "flatty"; 5 version = "0.2.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "treeform"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-1tPLtnlGtE4SF5/ti/2svvYHpEy/0Za5N4YAOHFOyjA="; 12 + }; 13 + 14 + doCheck = true; 15 + 16 + meta = with lib; 17 + src.meta // { 18 + description = "Tools and serializer for plain flat binary files"; 19 + license = [ licenses.mit ]; 20 + maintainers = [ maintainers.ehmry ]; 21 + }; 22 }
+1 -1
pkgs/development/nim-packages/nim_builder/nim_builder.nim
··· 97 for def in getEnv("nimDefines").split: 98 if def != "": 99 switch("define", def) 100 - for input in getEnv("buildInputs").split: 101 if input != "": 102 for nimbleFile in walkFiles(input / "*.nimble"): 103 let inputSrc = normalizedPath(
··· 97 for def in getEnv("nimDefines").split: 98 if def != "": 99 switch("define", def) 100 + for input in getEnv("NIX_NIM_BUILD_INPUTS").split: 101 if input != "": 102 for nimbleFile in walkFiles(input / "*.nimble"): 103 let inputSrc = normalizedPath(
+22 -4
pkgs/development/nim-packages/pixie/default.nix
··· 1 - { fetchNimble }: 2 3 - fetchNimble { 4 pname = "pixie"; 5 - version = "1.1.3"; 6 - hash = "sha256-xKIejVxOd19mblL1ZwpJH91dgKQS5g8U08EL8lGGelA="; 7 }
··· 1 + { lib, buildNimPackage, fetchFromGitHub, bumpy, chroma, flatty, nimsimd, vmath 2 + , zippy }: 3 4 + buildNimPackage rec { 5 pname = "pixie"; 6 + version = "3.1.2"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "treeform"; 10 + repo = pname; 11 + rev = version; 12 + hash = "sha256-rF72ybfsipBHgQmH0e6DBn1e7WWY6dGn9yp1qvLIS3A="; 13 + }; 14 + 15 + propagatedBuildInputs = [ bumpy chroma flatty nimsimd vmath zippy ]; 16 + 17 + doCheck = true; 18 + 19 + meta = with lib; 20 + src.meta // { 21 + description = "Full-featured 2d graphics library for Nim"; 22 + license = [ licenses.mit ]; 23 + maintainers = [ maintainers.ehmry ]; 24 + }; 25 }
-7
pkgs/development/nim-packages/typography/default.nix
··· 1 - { fetchNimble }: 2 - 3 - fetchNimble { 4 - pname = "typography"; 5 - version = "0.7.9"; 6 - hash = "sha256-IYjw3PCp5XzVed2fGGCt9Hb60cxFeF0BUZ7L5PedTLU="; 7 - }
···
+19 -4
pkgs/development/nim-packages/vmath/default.nix
··· 1 - { fetchNimble }: 2 3 - fetchNimble { 4 pname = "vmath"; 5 - version = "1.0.3"; 6 - hash = "sha256-zzSKXjuTZ46HTFUs0N47mxEKTKIdS3dwr+60sQYSdn0="; 7 }
··· 1 + { lib, buildNimPackage, fetchFromGitHub }: 2 3 + buildNimPackage rec { 4 pname = "vmath"; 5 + version = "1.1.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "treeform"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-/v0lQIOMogTxFRtbssziW4W6VhMDepM6Si8igLgcx30="; 12 + }; 13 + 14 + doCheck = true; 15 + 16 + meta = with lib; 17 + src.meta // { 18 + description = "Math vector library for graphical things"; 19 + license = [ licenses.mit ]; 20 + maintainers = [ maintainers.ehmry ]; 21 + }; 22 }
+20 -3
pkgs/development/nim-packages/zippy/default.nix
··· 1 - { fetchNimble }: 2 3 - fetchNimble { 4 pname = "zippy"; 5 version = "0.7.3"; 6 - hash = "sha256-w64ENRyP3mNTtESSt7CDDxUkjYSfziNVVedkO4HIuJ8="; 7 }
··· 1 + { lib, buildNimPackage, fetchFromGitHub, unzip }: 2 3 + buildNimPackage rec { 4 pname = "zippy"; 5 version = "0.7.3"; 6 + 7 + nativeBuildInputs = [ unzip ]; 8 + 9 + src = fetchFromGitHub { 10 + owner = "guzba"; 11 + repo = pname; 12 + rev = version; 13 + hash = "sha256-w64ENRyP3mNTtESSt7CDDxUkjYSfziNVVedkO4HIuJ8="; 14 + }; 15 + 16 + doCheck = true; 17 + 18 + meta = with lib; 19 + src.meta // { 20 + description = "Pure Nim implementation of deflate, zlib, gzip and zip"; 21 + license = [ licenses.mit ]; 22 + maintainers = [ maintainers.ehmry ]; 23 + }; 24 }
+23 -6
pkgs/development/python-modules/algebraic-data-types/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pythonOlder, hypothesis, mypy }: 2 3 buildPythonPackage rec { 4 pname = "algebraic-data-types"; 5 - version = "0.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "jspahrsummers"; 9 repo = "adt"; 10 rev = "v" + version; 11 - sha256 = "1py94jsgh6wch59n9dxnwvk74psbpa1679zfmripa1qfc2218kqi"; 12 }; 13 14 - disabled = pythonOlder "3.6"; 15 - 16 checkInputs = [ 17 hypothesis 18 mypy 19 ]; 20 21 meta = with lib; { 22 description = "Algebraic data types for Python"; 23 homepage = "https://github.com/jspahrsummers/adt"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ uri-canva ]; 26 - platforms = platforms.unix; 27 }; 28 }
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , hypothesis 6 + , mypy 7 + , pytestCheckHook 8 + }: 9 10 buildPythonPackage rec { 11 pname = "algebraic-data-types"; 12 + version = "0.2.1"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "jspahrsummers"; 19 repo = "adt"; 20 rev = "v" + version; 21 + hash = "sha256-RHLI5rmFxklzG9dyYgYfSS/srCjcxNpzNcK/RPNJBPE="; 22 }; 23 24 checkInputs = [ 25 + pytestCheckHook 26 hypothesis 27 mypy 28 ]; 29 30 + disabledTestPaths = [ 31 + # AttributeError: module 'mypy.types' has no attribute 'TypeVarDef' 32 + "tests/test_mypy_plugin.py" 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "adt" 37 + ]; 38 + 39 meta = with lib; { 40 description = "Algebraic data types for Python"; 41 homepage = "https://github.com/jspahrsummers/adt"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ uri-canva ]; 44 }; 45 }
+2 -2
pkgs/development/python-modules/azure-mgmt-consumption/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "azure-mgmt-consumption"; 12 - version = "8.0.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 - sha256 = "b4cc167648634f864394066d5621afc137c1be795ee76f7539125f9538a2bf37"; 18 }; 19 20 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "azure-mgmt-consumption"; 12 + version = "9.0.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 + sha256 = "76f9566390721226add96c9d3020ab986d3e5fd81e3143c098f57262c6ce4a51"; 18 }; 19 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/blocksat-cli/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "blocksat-cli"; 16 - version = "0.4.1"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "96ec5e548dcdb71ada75727d76b34006fe5f6818bd89cf982e15616d41889603"; 21 }; 22 23 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "blocksat-cli"; 16 + version = "0.4.2"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-hz5BGE+gqOrPiXvmeOTOecm2RUrTvM/xxvV3cnO2QSc="; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 - version = "3.12.0"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "8f1390c3776fcfce71e1ef024d9ccde52c16d1cd728bc587c24065d6e4d21933"; 22 }; 23 24 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 + version = "3.12.1"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "98e53298a7c79f0af351c80e6fc0b57bc735afdec764424e459179ef04f5a40f"; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/makefun/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "makefun"; 10 - version = "1.12.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "4d0e90ca3fdbdeb6a4a0891e2da7d4b8e80386e19e6db91ce29b8aa5c876ecfe"; 15 }; 16 17 postPatch = ''
··· 7 8 buildPythonPackage rec { 9 pname = "makefun"; 10 + version = "1.13.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "2c673d2b4f0ef809347513cb45e3b23a04228588af7c9ac859e99247abac516a"; 15 }; 16 17 postPatch = ''
+7 -2
pkgs/development/python-modules/striprtf/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "striprtf"; 8 - version = "0.0.18"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - sha256 = "6bb2dc8a59f3128662f958d647c5e6755f9ad8053f216c88e68514df204926d2"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/joshy/striprtf";
··· 5 6 buildPythonPackage rec { 7 pname = "striprtf"; 8 + version = "0.0.19"; 9 + format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "b7f15e11306e466dbe91665409233a06d9fdb4ee156489a3d879579891b04c25"; 14 }; 15 + 16 + pythonImportsCheck = [ 17 + "striprtf" 18 + ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/joshy/striprtf";
+1 -2
pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
··· 536 unzip 537 which 538 zip 539 ] ++ lib.optionals (stdenv.isDarwin) [ cctools libcxx CoreFoundation CoreServices Foundation ]; 540 541 # Bazel makes extensive use of symlinks in the WORKSPACE. ··· 549 shopt -s dotglob extglob 550 mv !(bazel_src) bazel_src 551 ''; 552 - # Needed to build fish completion 553 - propagatedBuildInputs = [ python3.pkgs.absl-py ]; 554 buildPhase = '' 555 runHook preBuild 556
··· 536 unzip 537 which 538 zip 539 + python3.pkgs.absl-py # Needed to build fish completion 540 ] ++ lib.optionals (stdenv.isDarwin) [ cctools libcxx CoreFoundation CoreServices Foundation ]; 541 542 # Bazel makes extensive use of symlinks in the WORKSPACE. ··· 550 shopt -s dotglob extglob 551 mv !(bazel_src) bazel_src 552 ''; 553 buildPhase = '' 554 runHook preBuild 555
+3 -6
pkgs/tools/archivers/7zz/default.nix
··· 1 { stdenv, lib, fetchurl, p7zip }: 2 3 - # https://sourceforge.net/p/sevenzip/discussion/45797/thread/7fe6c21efa/ 4 stdenv.mkDerivation rec { 5 pname = "7zz"; 6 - version = "21.04"; 7 8 src = fetchurl { 9 - url = "https://7-zip.org/a/7z${lib.replaceStrings ["." ] [""] version}-src.7z"; 10 - sha256 = "sha256-XmuEyIJAJQM0ZbgrW02lQ2rp4KFDBjLXKRaTfY+VCOg="; 11 }; 12 13 sourceRoot = "CPP/7zip/Bundles/Alone2"; ··· 16 # to build with the optimized assembler but that doesn't support building with 17 # GCC: https://github.com/nidud/asmc/issues/8 18 makefile = "../../cmpl_gcc.mak"; # "../../cmpl_gcc_x64.mak"; 19 - 20 - NIX_CFLAGS_COMPILE = [ "-Wno-error=maybe-uninitialized" ]; 21 22 nativeBuildInputs = [ p7zip ]; 23
··· 1 { stdenv, lib, fetchurl, p7zip }: 2 3 stdenv.mkDerivation rec { 4 pname = "7zz"; 5 + version = "21.07"; 6 7 src = fetchurl { 8 + url = "https://7-zip.org/a/7z${lib.replaceStrings [ "." ] [ "" ] version}-src.7z"; 9 + sha256 = "sha256-0QdNVvQVqrmdmeWXp7ZtxFXbpjSa6KTInfdkdbahKEw="; 10 }; 11 12 sourceRoot = "CPP/7zip/Bundles/Alone2"; ··· 15 # to build with the optimized assembler but that doesn't support building with 16 # GCC: https://github.com/nidud/asmc/issues/8 17 makefile = "../../cmpl_gcc.mak"; # "../../cmpl_gcc_x64.mak"; 18 19 nativeBuildInputs = [ p7zip ]; 20
+3 -3
pkgs/tools/misc/fd/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "fd"; 5 - version = "8.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "sharkdp"; 9 repo = "fd"; 10 rev = "v${version}"; 11 - sha256 = "sha256-MSkQYsBZkQOFkOnjGY+VuifUZnzloSysAO/hsp+fy1A="; 12 }; 13 14 - cargoSha256 = "sha256-nwgAgyVaxs1ebu9ndUN3FlFiycyEbRgvUhZ8iGmrVhQ="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "fd"; 5 + version = "8.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "sharkdp"; 9 repo = "fd"; 10 rev = "v${version}"; 11 + sha256 = "sha256-1Fxkd37KoFkUYYeFTaCAtndCa00lZB2KptsKIwpIt2o="; 12 }; 13 14 + cargoSha256 = "sha256-qymlTuFnYMbldNDGVDpkLCC0QQK1il/LAXcIil5koCo="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
+3 -3
pkgs/tools/networking/termscp/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "termscp"; 15 - version = "0.7.0"; 16 17 src = fetchFromGitHub { 18 owner = "veeso"; 19 repo = pname; 20 rev = "v${version}"; 21 - sha256 = "131kij6pnw9r0p2a28g00z85dh758h4rm9ic09qmp61cq7dphkc1"; 22 }; 23 24 - cargoSha256 = "1k2vwmfy6dczgs3bz8k4j24cc8l7l9fdh3ymp79ril4rp1v6kfp2"; 25 26 nativeBuildInputs = [ 27 pkg-config
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "termscp"; 15 + version = "0.8.0"; 16 17 src = fetchFromGitHub { 18 owner = "veeso"; 19 repo = pname; 20 rev = "v${version}"; 21 + sha256 = "sha256-fVZDpzgcpMWOoUtoq7go/NFWfoR1aONuRtTba0sqPZk="; 22 }; 23 24 + cargoSha256 = "sha256-iLm73dWF9z/obtAXe5dZlvJcxU6hB5N0vaSc/HLuTuQ="; 25 26 nativeBuildInputs = [ 27 pkg-config
+3
pkgs/tools/security/bypass403/default.nix
··· 21 homepage = "https://github.com/drsigned/bypass403"; 22 license = with licenses; [ mit ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25 }
··· 21 homepage = "https://github.com/drsigned/bypass403"; 22 license = with licenses; [ mit ]; 23 maintainers = with maintainers; [ fab ]; 24 + 25 + # https://github.com/drsigned/bypass403 no longer exists 26 + broken = true; 27 }; 28 }
+2 -2
pkgs/tools/security/kubescape/default.nix
··· 6 7 buildGoModule rec { 8 pname = "kubescape"; 9 - version = "1.0.137"; 10 11 src = fetchFromGitHub { 12 owner = "armosec"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-2VjC5icIKF7VO7Tli/mk/gXbIzZxkFm7Aigwl+BVQ6g="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 buildGoModule rec { 8 pname = "kubescape"; 9 + version = "1.0.138"; 10 11 src = fetchFromGitHub { 12 owner = "armosec"; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-/Rp4eNlvlONiH3F6Zv9GDUF26tmSuhFGUL1MoKOFSEc="; 16 }; 17 18 nativeBuildInputs = [
+1 -1
pkgs/tools/security/pinentry/default.nix
··· 3 , ncurses, gtk2, gcr, libcap, libsecret 4 , enabledFlavors ? [ "curses" "tty" "gtk2" "emacs" ] 5 ++ lib.optionals stdenv.isLinux [ "gnome3" ] 6 - ++ lib.optionals (stdenv.hostPlatform.system != "aarch64-darwin") [ "qt" ] 7 }: 8 9 with lib;
··· 3 , ncurses, gtk2, gcr, libcap, libsecret 4 , enabledFlavors ? [ "curses" "tty" "gtk2" "emacs" ] 5 ++ lib.optionals stdenv.isLinux [ "gnome3" ] 6 + ++ lib.optionals (!stdenv.isDarwin) [ "qt" ] 7 }: 8 9 with lib;
+1 -7
pkgs/tools/text/hottext/default.nix
··· 12 }; 13 14 buildInputs = with nimPackages; [ 15 - bumpy 16 - chroma 17 - flatty 18 - nimsimd 19 pixie 20 sdl2 21 - typography 22 - vmath 23 - zippy 24 ]; 25 26 HOTTEXT_FONT_PATH = "${gentium}/share/fonts/truetype/GentiumPlus-Regular.ttf"; ··· 38 ''; 39 40 meta = with lib; { 41 description = "Simple RSVP speed-reading utility"; 42 license = licenses.unlicense; 43 homepage = "https://git.sr.ht/~ehmry/hottext";
··· 12 }; 13 14 buildInputs = with nimPackages; [ 15 pixie 16 sdl2 17 ]; 18 19 HOTTEXT_FONT_PATH = "${gentium}/share/fonts/truetype/GentiumPlus-Regular.ttf"; ··· 31 ''; 32 33 meta = with lib; { 34 + broken = true; # Needs to be updated to latest Pixie API. 35 description = "Simple RSVP speed-reading utility"; 36 license = licenses.unlicense; 37 homepage = "https://git.sr.ht/~ehmry/hottext";
-2
pkgs/top-level/nim-packages.nix
··· 77 78 tempfile = callPackage ../development/nim-packages/tempfile { }; 79 80 - typography = callPackage ../development/nim-packages/typography { }; 81 - 82 ui = callPackage ../development/nim-packages/ui { inherit (pkgs) libui; }; 83 84 unicodedb = callPackage ../development/nim-packages/unicodedb { };
··· 77 78 tempfile = callPackage ../development/nim-packages/tempfile { }; 79 80 ui = callPackage ../development/nim-packages/ui { inherit (pkgs) libui; }; 81 82 unicodedb = callPackage ../development/nim-packages/unicodedb { };