mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge master into staging-next
This commit is contained in:
commit
0a1ac11214
@ -1017,6 +1017,7 @@ let
|
|||||||
"BootServerAddress"
|
"BootServerAddress"
|
||||||
"BootServerName"
|
"BootServerName"
|
||||||
"BootFilename"
|
"BootFilename"
|
||||||
|
"IPv6OnlyPreferredSec"
|
||||||
])
|
])
|
||||||
(assertInt "PoolOffset")
|
(assertInt "PoolOffset")
|
||||||
(assertMinimum "PoolOffset" 0)
|
(assertMinimum "PoolOffset" 0)
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
melpaBuild {
|
melpaBuild {
|
||||||
pname = "consult-gh";
|
pname = "consult-gh";
|
||||||
version = "1.0-unstable-2024-08-02";
|
version = "1.0-unstable-2024-08-11";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "armindarvish";
|
owner = "armindarvish";
|
||||||
repo = "consult-gh";
|
repo = "consult-gh";
|
||||||
rev = "e12b24e68116ac6c171d628c547c017458d6aa2b";
|
rev = "640d4b9c71aa6dfff4f29c0207cc02316f1d61c8";
|
||||||
hash = "sha256-skZkpYUWncGUf9k0IfEq3LAqDXHIfCJJ3p3b3ey+Rks=";
|
hash = "sha256-hFHex4cUAP1U5aK1bfa+va1jiWS8tRqtnMGxr17NWio=";
|
||||||
};
|
};
|
||||||
|
|
||||||
packageRequires = [
|
packageRequires = [
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
stdenv,
|
||||||
lib,
|
lib,
|
||||||
melpaBuild,
|
melpaBuild,
|
||||||
fetchFromGitLab,
|
fetchFromGitLab,
|
||||||
@ -7,13 +8,13 @@
|
|||||||
|
|
||||||
melpaBuild {
|
melpaBuild {
|
||||||
pname = "ligo-mode";
|
pname = "ligo-mode";
|
||||||
version = "1.7.1-unstable-2024-07-17";
|
version = "1.7.0-unstable-2024-08-01";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
owner = "ligolang";
|
owner = "ligolang";
|
||||||
repo = "ligo";
|
repo = "ligo";
|
||||||
rev = "09afc3ff3dd9c88b2dfbc563278a78a099b39902";
|
rev = "454e4a505212b8bd80ac3c75a1432320b9be2604";
|
||||||
hash = "sha256-AX0zZljZPrfBlpdgCNuiq0JaYpHcVBdHHZ9jM31LlQs=";
|
hash = "sha256-Z7bv+ulGwnczrSWWC1RIUzSI4wAF9AtObdi5bBfYsOs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
files = ''("tools/emacs/ligo-mode.el")'';
|
files = ''("tools/emacs/ligo-mode.el")'';
|
||||||
@ -24,6 +25,7 @@ melpaBuild {
|
|||||||
description = "Major mode for editing LIGO source code";
|
description = "Major mode for editing LIGO source code";
|
||||||
homepage = "https://gitlab.com/ligolang/ligo";
|
homepage = "https://gitlab.com/ligolang/ligo";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = [ ];
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||||
|
broken = stdenv.isDarwin; # different src hash on darwin
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -5,16 +5,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "transifex-cli";
|
pname = "transifex-cli";
|
||||||
version = "1.6.14";
|
version = "1.6.15";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "transifex";
|
owner = "transifex";
|
||||||
repo = "cli";
|
repo = "cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-yKkRoeq0hPYMjZcoL9h3l8FimnCjjVSlk9whliEnkzE=";
|
sha256 = "sha256-NW3vPjXfusBQKDbH8DnU/LMyOP2qkzArD7RYjJ1IQvM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-rcimaHr3fFeHSjZXw1w23cKISCT+9t8SgtPnY/uYGAU=";
|
vendorHash = "sha256-3gi2ysIb5256CdmtX38oIfeDwNCQojK+YB9aEm8H01Q=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w" "-X 'github.com/transifex/cli/internal/txlib.Version=${version}'"
|
"-s" "-w" "-X 'github.com/transifex/cli/internal/txlib.Version=${version}'"
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "kube-router";
|
pname = "kube-router";
|
||||||
version = "2.2.0";
|
version = "2.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cloudnativelabs";
|
owner = "cloudnativelabs";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-tEeqenOJVpwFGBS3iYlVdedNo02NV9/jtGsgrquV+0I=";
|
hash = "sha256-Pm/CrB/RxCvEhNdCyfI7kF62cxpx96Cj2zWmW0wl5wM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-sIWRODIV3iJ5FdVjVwesqfbYivOlqZAvPSYa38vhCMA=";
|
vendorHash = "sha256-sIWRODIV3iJ5FdVjVwesqfbYivOlqZAvPSYa38vhCMA=";
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gnmic";
|
pname = "gnmic";
|
||||||
version = "0.38.1";
|
version = "0.38.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "openconfig";
|
owner = "openconfig";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-Js5l6bVZtnR6uOo2+3L2CAvFj/i0O2FFGEiGOkc2qDQ=";
|
hash = "sha256-TSRexhhYny1L7znhjqPLudIMUYhyMQUmLClyXzsZxcY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-4TTxhcP06YuhWWufVTAVK2wTf8mCc3WLAjzFe5wKChY=";
|
vendorHash = "sha256-pJz613QFdA+8HcV+U0aG+A+WDZtSZIgaLVqCnu4WQWo=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w"
|
"-s" "-w"
|
||||||
|
@ -15,13 +15,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "seafile-client";
|
pname = "seafile-client";
|
||||||
version = "9.0.7";
|
version = "9.0.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "haiwen";
|
owner = "haiwen";
|
||||||
repo = "seafile-client";
|
repo = "seafile-client";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-Q/Dimm4oJH6mh0mCbVhkqJuRI9wytGmeBGNjMWiPil4=";
|
sha256 = "sha256-1E/PgQEg8lQntKpafCubPNUIF/L3kjA/rp1xAL8vFfs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -11,16 +11,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "trayscale";
|
pname = "trayscale";
|
||||||
version = "0.13.0";
|
version = "0.13.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "DeedleFake";
|
owner = "DeedleFake";
|
||||||
repo = "trayscale";
|
repo = "trayscale";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-uaHForU+0dAkLPczHr6ZBpNZ6iirvsje+6i8rHrNXdQ=";
|
hash = "sha256-uOPTF6AD70POD1y0R5aXo7t9WtyFGbRrgL8U++nTRl0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-RvGKPIXdkeTdpFraxie76xrtfqRsIpzpBricEQZNFYc=";
|
vendorHash = "sha256-8lrszfxTKLA3KRuuQ312s+1GfK63DwQEK8xDwb1JdrI=";
|
||||||
|
|
||||||
subPackages = [ "cmd/trayscale" ];
|
subPackages = [ "cmd/trayscale" ];
|
||||||
|
|
||||||
|
@ -28,13 +28,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "planify";
|
pname = "planify";
|
||||||
version = "4.10.5";
|
version = "4.10.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "alainm23";
|
owner = "alainm23";
|
||||||
repo = "planify";
|
repo = "planify";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-tjU7/JZjJqH9H/EWMoAbRurJtIDv8BTT938EnJicTv4=";
|
hash = "sha256-jGfLbKDhiBpLkO5de5aLBwLw6xBZ+IIsYPDX4/XGPqE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -12,16 +12,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "git-credential-keepassxc";
|
pname = "git-credential-keepassxc";
|
||||||
version = "0.14.0";
|
version = "0.14.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Frederick888";
|
owner = "Frederick888";
|
||||||
repo = "git-credential-keepassxc";
|
repo = "git-credential-keepassxc";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-AvnnzLiDQEdfAHPns8ufhdiPPn9d23AnI8Aq2DQS+To=";
|
hash = "sha256-qxNzWuuIoK9BJLVcWtrER+MyA5cyd03xAwGljh8DZC4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-c2YucWs0UzyWDKWS5KebT3ps+XvWzlI0+ziJ8JX6oiQ=";
|
cargoHash = "sha256-jBUp0jes4wtr8cmqceEBb6noqGkJUHbIfYgWOw5KMF4=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation ];
|
buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation ];
|
||||||
|
|
||||||
|
@ -10,13 +10,13 @@
|
|||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "git-machete";
|
pname = "git-machete";
|
||||||
version = "3.26.3";
|
version = "3.27.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "virtuslab";
|
owner = "virtuslab";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-UCaJiYLYeHI4R8IJfhgmT4Ji++CtQgvIJrKH1EXl83o=";
|
hash = "sha256-37SZhuMrGjRQOzjnAegL6babhcIjAwh9wtAb7RB09dM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
@ -26,20 +26,20 @@ let
|
|||||||
in
|
in
|
||||||
buildNpmPackage' rec {
|
buildNpmPackage' rec {
|
||||||
pname = "bruno";
|
pname = "bruno";
|
||||||
version = "1.23.1";
|
version = "1.24.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "usebruno";
|
owner = "usebruno";
|
||||||
repo = "bruno";
|
repo = "bruno";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-uQe+j7EH62SH64z9mTpsR/tiYm4vSMDbAkYRhfkjf68=";
|
hash = "sha256-+rnZid+2E3xP6GTHKXki+MeRuoU8gAB34/MVyKu9oEQ=";
|
||||||
|
|
||||||
postFetch = ''
|
postFetch = ''
|
||||||
${lib.getExe npm-lockfile-fix} $out/package-lock.json
|
${lib.getExe npm-lockfile-fix} $out/package-lock.json
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
npmDepsHash = "sha256-157hm7h5FWuOuxoo6WTtlMPq5LcRZIsSt5NDg0pvim8=";
|
npmDepsHash = "sha256-/1/QPKjSgJJDtmUipgbiVR+Buea9cXO+HvICfKVX/2g=";
|
||||||
npmFlags = [ "--legacy-peer-deps" ];
|
npmFlags = [ "--legacy-peer-deps" ];
|
||||||
|
|
||||||
nativeBuildInputs =
|
nativeBuildInputs =
|
||||||
|
@ -14,13 +14,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "fluent-bit";
|
pname = "fluent-bit";
|
||||||
version = "3.1.4";
|
version = "3.1.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "fluent";
|
owner = "fluent";
|
||||||
repo = "fluent-bit";
|
repo = "fluent-bit";
|
||||||
rev = "v${finalAttrs.version}";
|
rev = "v${finalAttrs.version}";
|
||||||
hash = "sha256-TXFVvnjEitEFwQAuqNCgV0xbABcDxGS9KfCUenKN448=";
|
hash = "sha256-3pHqKBRMxPdgicxRN0H2OT3qp8+p0tp4ej83OWEh5OQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# optional only to avoid linux rebuild
|
# optional only to avoid linux rebuild
|
||||||
|
@ -9,19 +9,19 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "godns";
|
pname = "godns";
|
||||||
version = "3.1.7";
|
version = "3.1.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TimothyYe";
|
owner = "TimothyYe";
|
||||||
repo = "godns";
|
repo = "godns";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-aTCYnjv9DTlCohdESGAjMz7JQG0BsLTNMiknyB6Ut50=";
|
hash = "sha256-a8qa8dlFn0+mE2SeDJPZ0OI4EkA/GGFYxkNQE5yKjvM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-E15h5p4ppRb91EUoz5dyWNFl745rt419NMCSurMLxis=";
|
vendorHash = "sha256-ui7GiLR5um8TGrVS+MCXzop1tkeysxBYFrD2Fh0tnBI=";
|
||||||
npmDeps = fetchNpmDeps {
|
npmDeps = fetchNpmDeps {
|
||||||
src = "${src}/web";
|
src = "${src}/web";
|
||||||
hash = "sha256-gnAUI3lLDhjZ+nLap41COq765ymR6a8FgVY/aqqidTQ=";
|
hash = "sha256-oPE69+R66r1LpryAu3ImKKRVDrzXAiDpeCwdQKRmVj0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
npmRoot = "web";
|
npmRoot = "web";
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "hyprdim";
|
pname = "hyprdim";
|
||||||
version = "2.2.5";
|
version = "2.2.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "donovanglover";
|
owner = "donovanglover";
|
||||||
repo = "hyprdim";
|
repo = "hyprdim";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-EWZnimLLV879FiZUax1YK5ML/Qz4qt29rJWn5uoKtqw=";
|
hash = "sha256-zE1GYgS3fFO6Zz1I5zr+ApEux9ndKOeegj2n/rF/4HY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-V4Z3PKavxfQm7zSoTyoWtxpc8yuuGPemO4OdadQEVdg=";
|
cargoHash = "sha256-WchQXRlU/fkjnCOeP9E5JXVdM8UZlG3ixfLGHvmezHg=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "hyprnome";
|
pname = "hyprnome";
|
||||||
version = "0.3.0";
|
version = "0.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "donovanglover";
|
owner = "donovanglover";
|
||||||
repo = "hyprnome";
|
repo = "hyprnome";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-J/gaAwydSA9fi2qZYrWLpodTltL56yG4VQ2YlIPKJ/U=";
|
hash = "sha256-GZn7qS1J6QSanWdy17sMBbwJ77iMij2jKRgPdrjt6tM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-Fyst6rwpvVQoeWCOkJwpNuMcnp6Q+kAXtDg+fccTVNM=";
|
cargoHash = "sha256-oxIZTp5ZJRUjXLpMw2nOnPHYHhHN03HWFRhBZ82Ac10=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
@ -6,13 +6,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "iir1";
|
pname = "iir1";
|
||||||
version = "1.9.4";
|
version = "1.9.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "berndporr";
|
owner = "berndporr";
|
||||||
repo = "iir1";
|
repo = "iir1";
|
||||||
rev = finalAttrs.version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-T8gl51IkZIGq+6D5ge4Kb3wm5aw7Rhphmnf6TTGwHbs=";
|
hash = "sha256-8u+V3+p/nVfl1Izht27OE6D1kkA6all6aUEL9APwXmk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
51
pkgs/by-name/ka/kakoune-lsp/Hardcode-perl.patch
Normal file
51
pkgs/by-name/ka/kakoune-lsp/Hardcode-perl.patch
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
From 14bdb9c39cfd813697a4f5d83ed2b4c4c043a309 Mon Sep 17 00:00:00 2001
|
||||||
|
From: V <v@anomalous.eu>
|
||||||
|
Date: Tue, 9 Apr 2024 06:15:00 +0200
|
||||||
|
Subject: [PATCH] Hardcode perl
|
||||||
|
|
||||||
|
---
|
||||||
|
rc/lsp.kak | 13 ++-----------
|
||||||
|
1 file changed, 2 insertions(+), 11 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/rc/lsp.kak b/rc/lsp.kak
|
||||||
|
index 306b405..6662d29 100644
|
||||||
|
--- a/rc/lsp.kak
|
||||||
|
+++ b/rc/lsp.kak
|
||||||
|
@@ -280,12 +280,8 @@ define-command -hidden lsp-menu -params 1.. %{
|
||||||
|
}
|
||||||
|
define-command -hidden lsp-menu-impl %{
|
||||||
|
evaluate-commands %sh{
|
||||||
|
- if ! command -v perl > /dev/null; then
|
||||||
|
- echo "lsp-show-error %{'perl' must be installed to use the 'lsp-menu' command}"
|
||||||
|
- exit
|
||||||
|
- fi
|
||||||
|
echo >$kak_command_fifo "echo -to-file $kak_response_fifo -quoting kakoune -- %reg{a}"
|
||||||
|
- perl < $kak_response_fifo -we '
|
||||||
|
+ @perl@/bin/perl < $kak_response_fifo -we '
|
||||||
|
use strict;
|
||||||
|
my $Q = "'\''";
|
||||||
|
my @args = ();
|
||||||
|
@@ -2467,11 +2463,6 @@ define-command -hidden lsp-snippets-insert-completion -params 1 %{ evaluate-comm
|
||||||
|
}}
|
||||||
|
|
||||||
|
define-command lsp-snippets-insert -hidden -params 1 %[
|
||||||
|
- evaluate-commands %sh{
|
||||||
|
- if ! command -v perl > /dev/null; then
|
||||||
|
- printf "fail %{'perl' must be installed to use the 'lsp-snippets-insert' command'}"
|
||||||
|
- fi
|
||||||
|
- }
|
||||||
|
evaluate-commands -draft -save-regs '^"' %[
|
||||||
|
set-register '"' %arg{1}
|
||||||
|
execute-keys <a-P>
|
||||||
|
@@ -2526,7 +2517,7 @@ define-command lsp-snippets-insert -hidden -params 1 %[
|
||||||
|
define-command -hidden lsp-snippets-insert-perl-impl %[
|
||||||
|
set-register x nop
|
||||||
|
evaluate-commands %sh[ # $kak_quoted_selections
|
||||||
|
- perl -e '
|
||||||
|
+ @perl@/bin/perl -e '
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Text::ParseWords();
|
||||||
|
--
|
||||||
|
2.45.2
|
||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
From b93660cfa8a80a5e5bf72e1f06fb7bf95272c7e4 Mon Sep 17 00:00:00 2001
|
|
||||||
From: PoweredByPie <poweredbypie@users.noreply.github.com>
|
|
||||||
Date: Fri, 8 Dec 2023 04:39:01 -0800
|
|
||||||
Subject: [PATCH] Use full Perl path
|
|
||||||
|
|
||||||
---
|
|
||||||
rc/lsp.kak | 7 +------
|
|
||||||
1 file changed, 1 insertion(+), 6 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/rc/lsp.kak b/rc/lsp.kak
|
|
||||||
index d695a2e..7c6a436 100644
|
|
||||||
--- a/rc/lsp.kak
|
|
||||||
+++ b/rc/lsp.kak
|
|
||||||
@@ -2339,11 +2339,6 @@ define-command -hidden lsp-snippets-insert-completion -params 1 %{ evaluate-comm
|
|
||||||
}}
|
|
||||||
|
|
||||||
define-command lsp-snippets-insert -hidden -params 1 %[
|
|
||||||
- evaluate-commands %sh{
|
|
||||||
- if ! command -v perl > /dev/null 2>&1; then
|
|
||||||
- printf "fail '''perl'' must be installed to use the ''snippets-insert'' command'"
|
|
||||||
- fi
|
|
||||||
- }
|
|
||||||
evaluate-commands -draft -save-regs '^"' %[
|
|
||||||
set-register '"' %arg{1}
|
|
||||||
execute-keys <a-P>
|
|
||||||
@@ -2397,7 +2392,7 @@ define-command lsp-snippets-insert -hidden -params 1 %[
|
|
||||||
|
|
||||||
define-command -hidden lsp-snippets-insert-perl-impl %[
|
|
||||||
evaluate-commands %sh[ # $kak_quoted_selections
|
|
||||||
- perl -e '
|
|
||||||
+ @perlPath@/bin/perl -e '
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
use Text::ParseWords();
|
|
||||||
--
|
|
||||||
2.42.0
|
|
||||||
|
|
@ -1,34 +1,52 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, perl, CoreServices, Security, SystemConfiguration }:
|
{
|
||||||
|
lib,
|
||||||
|
rustPlatform,
|
||||||
|
fetchFromGitHub,
|
||||||
|
replaceVars,
|
||||||
|
perl,
|
||||||
|
stdenv,
|
||||||
|
CoreServices,
|
||||||
|
Security,
|
||||||
|
SystemConfiguration,
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "kakoune-lsp";
|
pname = "kakoune-lsp";
|
||||||
version = "16.0.0";
|
version = "17.1.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = "kakoune-lsp";
|
||||||
repo = pname;
|
repo = "kakoune-lsp";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-d4Tc6iYp20uOKMd+T2LhWgXWZzvzq1E+VWqjhhiIiHE=";
|
sha256 = "sha256-XBH2pMDiHJNXrx90Lt0IcsbMFUM+X7GAHgiHpdlIdR4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-kV8d0PwIWS6gyfCtv70iv8MrL91ZOZbwYznhc3lUw0U=";
|
patches = [ (replaceVars ./Hardcode-perl.patch { inherit perl; }) ];
|
||||||
|
|
||||||
buildInputs = [ perl ] ++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];
|
cargoHash = "sha256-Yi+T+9E3Wvce4kDLsRgZ07RAGLrq7dkinKpvvGeLeS0=";
|
||||||
|
|
||||||
patches = [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
./Use-full-Perl-path.patch
|
CoreServices
|
||||||
|
Security
|
||||||
|
SystemConfiguration
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
meta = {
|
||||||
substituteInPlace rc/lsp.kak \
|
|
||||||
--subst-var-by perlPath ${lib.getBin perl}
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Kakoune Language Server Protocol Client";
|
description = "Kakoune Language Server Protocol Client";
|
||||||
homepage = "https://github.com/kakoune-lsp/kakoune-lsp";
|
homepage = "https://github.com/kakoune-lsp/kakoune-lsp";
|
||||||
license = with licenses; [ unlicense /* or */ mit ];
|
|
||||||
maintainers = with maintainers; [ philiptaron spacekookie poweredbypie ];
|
# See https://github.com/kakoune-lsp/kakoune-lsp/commit/55dfc83409b9b7d3556bacda8ef8b71fc33b58cd
|
||||||
|
license = with lib.licenses; [
|
||||||
|
unlicense
|
||||||
|
mit
|
||||||
|
];
|
||||||
|
|
||||||
|
maintainers = with lib.maintainers; [
|
||||||
|
philiptaron
|
||||||
|
spacekookie
|
||||||
|
poweredbypie
|
||||||
|
];
|
||||||
|
|
||||||
mainProgram = "kak-lsp";
|
mainProgram = "kak-lsp";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "minijinja";
|
pname = "minijinja";
|
||||||
version = "2.1.1";
|
version = "2.1.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mitsuhiko";
|
owner = "mitsuhiko";
|
||||||
repo = "minijinja";
|
repo = "minijinja";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-21PPIh4xu5EFXdtvmmvoSRPdYiSEwswkACNys32kjXY=";
|
hash = "sha256-BB8uM0yU8M5Crh5hLucJkhvjLC1Vlk5bGKmeO1rCy+Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-lPHM/pEXt4VLTTRxVxQTt/IAKhOxmzYkq71x10LFZ0w=";
|
cargoHash = "sha256-bn7qJZE68UJPNaARQRXy6GPkplv0KAkKByy85ooi5kg=";
|
||||||
|
|
||||||
# The tests relies on the presence of network connection
|
# The tests relies on the presence of network connection
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -1,17 +1,26 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, rosa, nix-update-script }:
|
{ lib, buildGoModule, fetchFromGitHub, fetchpatch, installShellFiles, testers, rosa, nix-update-script }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "rosa";
|
pname = "rosa";
|
||||||
version = "1.2.39";
|
version = "1.2.43";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "openshift";
|
owner = "openshift";
|
||||||
repo = "rosa";
|
repo = "rosa";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-K1FGiUNXSyCTmF//dculpnkTyn3hfqWrOiMUGk9kHrA=";
|
hash = "sha256-1/go7mL2uRzzV/iiTXsgZHGNW8EIONwEnb4jcMiKkv4=";
|
||||||
};
|
};
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# https://github.com/openshift/rosa/pull/2326/
|
||||||
|
# TODO: remove on next version bump
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/openshift/rosa/commit/9ed236880f91f0e9514ba0a6f3be93ee115d1689.patch";
|
||||||
|
hash = "sha256-KNGqJRFyfzcDs336Lj/KwR1yd5M7zfehu7IO0z/KUtg=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" ];
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
{ lib
|
{
|
||||||
, stdenv
|
lib,
|
||||||
, fetchFromGitHub
|
stdenv,
|
||||||
, cmake
|
fetchFromGitHub,
|
||||||
, libpulseaudio
|
cmake,
|
||||||
, lxqt-build-tools
|
libpulseaudio,
|
||||||
, pkg-config
|
lxqt-build-tools,
|
||||||
, qtbase
|
pkg-config,
|
||||||
, qttools
|
qtbase,
|
||||||
, qtwayland
|
qtsvg,
|
||||||
, wrapQtAppsHook
|
qttools,
|
||||||
, gitUpdater
|
qtwayland,
|
||||||
|
wrapQtAppsHook,
|
||||||
|
gitUpdater,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -34,17 +36,18 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
libpulseaudio
|
libpulseaudio
|
||||||
qtbase
|
qtbase
|
||||||
|
qtsvg
|
||||||
qtwayland
|
qtwayland
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.updateScript = gitUpdater { };
|
passthru.updateScript = gitUpdater { };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://github.com/lxqt/pavucontrol-qt";
|
homepage = "https://github.com/lxqt/pavucontrol-qt";
|
||||||
description = "Pulseaudio mixer in Qt (port of pavucontrol)";
|
description = "Pulseaudio mixer in Qt (port of pavucontrol)";
|
||||||
mainProgram = "pavucontrol-qt";
|
mainProgram = "pavucontrol-qt";
|
||||||
license = licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
platforms = with platforms; linux;
|
platforms = with lib.platforms; linux;
|
||||||
maintainers = teams.lxqt.members;
|
maintainers = lib.teams.lxqt.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
{ lib
|
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cmake
|
|
||||||
, zlib
|
|
||||||
, libpng
|
|
||||||
, libjpeg
|
|
||||||
, libGL
|
|
||||||
, libX11
|
|
||||||
, libXi
|
|
||||||
, libXext
|
|
||||||
, Cocoa
|
|
||||||
, Kernel
|
|
||||||
}:
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
|
||||||
pname = "irrlichtmt";
|
|
||||||
version = "1.9.0mt13";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "minetest";
|
|
||||||
repo = "irrlicht";
|
|
||||||
rev = finalAttrs.version;
|
|
||||||
hash = "sha256-BlQd7zbpvQnxqLv3IaHWrXzJ1pJFbQQ3DNWDAj14/YY=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
zlib
|
|
||||||
libpng
|
|
||||||
libjpeg
|
|
||||||
libGL
|
|
||||||
] ++ (if stdenv.hostPlatform.isDarwin then [
|
|
||||||
Cocoa
|
|
||||||
Kernel
|
|
||||||
] else [
|
|
||||||
libX11
|
|
||||||
libXi
|
|
||||||
libXext
|
|
||||||
]);
|
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/minetest/irrlicht";
|
|
||||||
license = lib.licenses.zlib;
|
|
||||||
maintainers = with lib.maintainers; [ DeeUnderscore ];
|
|
||||||
description = "Minetest project's fork of Irrlicht, a realtime 3D engine written in C++";
|
|
||||||
};
|
|
||||||
})
|
|
@ -1,19 +1,20 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
|
certifi,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
pytestCheckHook,
|
||||||
|
python-dateutil,
|
||||||
|
python-dotenv,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
setuptools,
|
setuptools,
|
||||||
certifi,
|
|
||||||
six,
|
six,
|
||||||
python-dateutil,
|
|
||||||
urllib3,
|
urllib3,
|
||||||
pytestCheckHook,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "asana";
|
pname = "asana";
|
||||||
version = "5.0.7";
|
version = "5.0.8";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -22,7 +23,7 @@ buildPythonPackage rec {
|
|||||||
owner = "asana";
|
owner = "asana";
|
||||||
repo = "python-asana";
|
repo = "python-asana";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-X6444LU2hcx4Er5N+WbSjgbe2tHjl1y1z5FqZGngiOw=";
|
hash = "sha256-JC7t8im5OlvQlln9mUJHWMRJ1cRyAwfbIVQ0U3Q1KsU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
@ -31,6 +32,7 @@ buildPythonPackage rec {
|
|||||||
certifi
|
certifi
|
||||||
six
|
six
|
||||||
python-dateutil
|
python-dateutil
|
||||||
|
python-dotenv
|
||||||
urllib3
|
urllib3
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -38,6 +40,11 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
pythonImportsCheck = [ "asana" ];
|
pythonImportsCheck = [ "asana" ];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
# Tests require network access
|
||||||
|
"build_tests/"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python client library for Asana";
|
description = "Python client library for Asana";
|
||||||
homepage = "https://github.com/asana/python-asana";
|
homepage = "https://github.com/asana/python-asana";
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "asyncinotify";
|
pname = "asyncinotify";
|
||||||
version = "4.0.6";
|
version = "4.0.9";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -18,10 +18,10 @@ buildPythonPackage rec {
|
|||||||
owner = "absperf";
|
owner = "absperf";
|
||||||
repo = "asyncinotify";
|
repo = "asyncinotify";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-RXx6i5dIB2oySVaLoHPRGD9VKgiO5OAXmrzVBq8Ad18=";
|
hash = "sha256-Pmv1BXmKUNjFE5h99GR0GmjYKYmTi8ECKAUCKwIAMzc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flit-core ];
|
build-system = [ flit-core ];
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ buildPythonPackage rec {
|
|||||||
description = "Module for inotify";
|
description = "Module for inotify";
|
||||||
homepage = "https://github.com/absperf/asyncinotify/";
|
homepage = "https://github.com/absperf/asyncinotify/";
|
||||||
changelog = "https://github.com/absperf/asyncinotify/releases/tag/v${version}";
|
changelog = "https://github.com/absperf/asyncinotify/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mpl20;
|
||||||
maintainers = with maintainers; [ cynerd ];
|
maintainers = with maintainers; [ cynerd ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,29 +1,43 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
|
||||||
fetchPypi,
|
|
||||||
betamax,
|
betamax,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
pytestCheckHook,
|
||||||
|
pythonOlder,
|
||||||
requests-toolbelt,
|
requests-toolbelt,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "betamax-matchers";
|
pname = "betamax-matchers";
|
||||||
version = "0.4.0";
|
version = "0.4.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
disabled = pythonOlder "3.7";
|
||||||
inherit pname version;
|
|
||||||
sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
|
src = fetchFromGitHub {
|
||||||
|
owner = "betamaxpy";
|
||||||
|
repo = "betamax_matchers";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-BV9DOfZLDAZIr2E75l988QxFWWvazBL9VttxGFIez1M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
betamax
|
betamax
|
||||||
requests-toolbelt
|
requests-toolbelt
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "betamax_matchers" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "A group of experimental matchers for Betamax";
|
||||||
homepage = "https://github.com/sigmavirus24/betamax_matchers";
|
homepage = "https://github.com/sigmavirus24/betamax_matchers";
|
||||||
description = "Group of experimental matchers for Betamax";
|
changelog = "https://github.com/betamaxpy/betamax_matchers/blob/${version}/HISTORY.rst";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cyclopts";
|
pname = "cyclopts";
|
||||||
version = "2.9.4";
|
version = "2.9.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||||||
owner = "BrianPugh";
|
owner = "BrianPugh";
|
||||||
repo = "cyclopts";
|
repo = "cyclopts";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-s+MHy5L6Lof2Hd5gsEbKP5bmwMdbZCgHjOzR81lCoHk=";
|
hash = "sha256-KZGsYaEcOs8NoUCRG4MqW9wqrqDJ1Ygv6U7QfyGqNhQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -12,14 +12,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "django-cachalot";
|
pname = "django-cachalot";
|
||||||
version = "2.6.2";
|
version = "2.6.3";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "noripyt";
|
owner = "noripyt";
|
||||||
repo = "django-cachalot";
|
repo = "django-cachalot";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-8sC0uvfnGh3rp6C9/GsEevVDxAiI6MafIBfUuvnPeas=";
|
hash = "sha256-q4w2goxdDqivGVZCRDGOvYARbzmx6P8Gnw9YlYn9Few=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "fastcore";
|
pname = "fastcore";
|
||||||
version = "1.6.3";
|
version = "1.6.7";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
owner = "fastai";
|
owner = "fastai";
|
||||||
repo = "fastcore";
|
repo = "fastcore";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-WCPO/JLc39EoUyaRNUgaJZvPlyt8WogRct73aOzhyH8=";
|
hash = "sha256-f31aQKYM1qawGrNtUZH3K+Zq9JerKNm+fEJ938bhHKc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "influxdb-client";
|
pname = "influxdb-client";
|
||||||
version = "1.44.0";
|
version = "1.45.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -26,7 +26,7 @@ buildPythonPackage rec {
|
|||||||
owner = "influxdata";
|
owner = "influxdata";
|
||||||
repo = "influxdb-client-python";
|
repo = "influxdb-client-python";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-iG9edGHqhExUoL+1q8s5QvY/mrYOMosgtA2P1zwO3o8=";
|
hash = "sha256-Mhbje/wRltU04jrDQBZVG4OuGdBn20gmBRnnPqyzjcU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "influxdb3-python";
|
pname = "influxdb3-python";
|
||||||
version = "0.7.0";
|
version = "0.8.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||||||
owner = "InfluxCommunity";
|
owner = "InfluxCommunity";
|
||||||
repo = "influxdb3-python";
|
repo = "influxdb3-python";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-jncJUurkH1XzC6Hjcpet1fZejcYjcPq2OWI//FmZcmI=";
|
hash = "sha256-Knub5rZ27OXsiJanA+sI85DaUIskiGcuedKk1wF5zss=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -3,45 +3,31 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
# Python Inputs
|
# Python Inputs
|
||||||
jupyter-packaging,
|
|
||||||
jupyterlab,
|
|
||||||
setuptools,
|
setuptools,
|
||||||
wheel,
|
|
||||||
ipyvue,
|
ipyvue,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ipyvuetify";
|
pname = "ipyvuetify";
|
||||||
version = "1.9.4";
|
version = "1.10.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
# GitHub version tries to run npm (Node JS)
|
# GitHub version tries to run npm (Node JS)
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-wpwfN68wpj2+lLb4w0erAZYa7OrbVhNfGMv0635oiVs=";
|
hash = "sha256-h97mqq3zFu4n7Ymnmz08P14PLltjjaBoFzYEhTJUWsE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# drop pynpm which tries to install node_modules
|
# drop pynpm which tries to install node_modules
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail "jupyter_packaging~=0.7.9" "jupyter_packaging" \
|
--replace-fail '"jupyterlab~=4.0",' "" \
|
||||||
--replace-fail "jupyterlab~=3.0" "jupyterlab" \
|
|
||||||
--replace-fail '"pynpm"' ""
|
--replace-fail '"pynpm"' ""
|
||||||
|
|
||||||
substituteInPlace setup.py \
|
|
||||||
--replace-fail "from pynpm import NPMPackage" "" \
|
|
||||||
--replace-fail "from generate_source import generate_source" "" \
|
|
||||||
--replace-fail 'setup(cmdclass={"egg_info": js_prerelease(egg_info)})' 'setup()'
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
jupyter-packaging
|
|
||||||
jupyterlab
|
|
||||||
setuptools
|
|
||||||
wheel
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ ipyvue ];
|
dependencies = [ ipyvue ];
|
||||||
|
|
||||||
doCheck = false; # no tests on PyPi/GitHub
|
doCheck = false; # no tests on PyPi/GitHub
|
||||||
pythonImportsCheck = [ "ipyvuetify" ];
|
pythonImportsCheck = [ "ipyvuetify" ];
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchFromGitHub,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
flit-core,
|
flit-core,
|
||||||
click,
|
click,
|
||||||
@ -22,6 +22,12 @@
|
|||||||
sphinx-togglebutton,
|
sphinx-togglebutton,
|
||||||
sphinxcontrib-bibtex,
|
sphinxcontrib-bibtex,
|
||||||
sphinx-multitoc-numbering,
|
sphinx-multitoc-numbering,
|
||||||
|
pytestCheckHook,
|
||||||
|
texsoup,
|
||||||
|
jupytext,
|
||||||
|
pytest-regressions,
|
||||||
|
pytest-xdist,
|
||||||
|
sphinx-inline-tabs,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -31,15 +37,18 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit version;
|
owner = "jupyter-book";
|
||||||
pname = "jupyter_book";
|
repo = "jupyter-book";
|
||||||
hash = "sha256-rRXuSanf7Hc6HTBJ2sOFY4KqL5txRKGAEUduZcEbX0Y=";
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-NlCMfkfvquonqf7FdaJ7AC9ebM7VSifn+zM7gWh32LQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flit-core ];
|
build-system = [ flit-core ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
pythonRelaxDeps = [ "myst-parser" ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
click
|
click
|
||||||
jinja2
|
jinja2
|
||||||
jsonschema
|
jsonschema
|
||||||
@ -65,12 +74,46 @@ buildPythonPackage rec {
|
|||||||
"jupyter_book.cli.main"
|
"jupyter_book.cli.main"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
jupytext
|
||||||
|
pytest-regressions
|
||||||
|
pytest-xdist
|
||||||
|
pytestCheckHook
|
||||||
|
sphinx-inline-tabs
|
||||||
|
texsoup
|
||||||
|
];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export HOME=$TMPDIR
|
||||||
|
'';
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# touch the network
|
||||||
|
"test_create_from_cookiecutter"
|
||||||
|
# flaky?
|
||||||
|
"test_execution_timeout"
|
||||||
|
# require texlive
|
||||||
|
"test_toc"
|
||||||
|
"test_toc_latex_parts"
|
||||||
|
"test_toc_latex_urllink"
|
||||||
|
# WARNING: Executing notebook failed: CellExecutionError [mystnb.exec]
|
||||||
|
"test_build_dirhtml_from_template"
|
||||||
|
"test_build_from_template"
|
||||||
|
"test_build_page"
|
||||||
|
"test_build_singlehtml_from_template"
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
# require texlive
|
||||||
|
"tests/test_pdf.py"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Build a book with Jupyter Notebooks and Sphinx";
|
description = "Build a book with Jupyter Notebooks and Sphinx";
|
||||||
homepage = "https://jupyterbook.org/";
|
homepage = "https://jupyterbook.org/";
|
||||||
changelog = "https://github.com/executablebooks/jupyter-book/blob/v${version}/CHANGELOG.md";
|
changelog = "https://github.com/jupyter-book/jupyter-book/blob/${src.rev}/CHANGELOG.md";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ ];
|
maintainers = teams.jupyter.members;
|
||||||
mainProgram = "jupyter-book";
|
mainProgram = "jupyter-book";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nebula3-python";
|
pname = "nebula3-python";
|
||||||
version = "3.8.1";
|
version = "3.8.2";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||||||
owner = "vesoft-inc";
|
owner = "vesoft-inc";
|
||||||
repo = "nebula-python";
|
repo = "nebula-python";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-AcfKcrfDBY5K5xDDA7rLzKnsnhwhtpLXHkPLd0SfC4M=";
|
hash = "sha256-XwrrT5Vuwqw57u3Xt9nS4NjmFG2VD62gWSVfeek2478=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ pdm-backend ];
|
build-system = [ pdm-backend ];
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
numpy,
|
numpy,
|
||||||
numba,
|
numba,
|
||||||
pandas,
|
pandas,
|
||||||
gitUpdater,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -38,8 +37,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
pythonImportsCheck = [ "numpy_groupies" ];
|
pythonImportsCheck = [ "numpy_groupies" ];
|
||||||
|
|
||||||
passthru.updateScript = gitUpdater { tagPrefix = "v"; };
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/ml31415/numpy-groupies";
|
homepage = "https://github.com/ml31415/numpy-groupies";
|
||||||
changelog = "https://github.com/ml31415/numpy-groupies/releases/tag/v${version}";
|
changelog = "https://github.com/ml31415/numpy-groupies/releases/tag/v${version}";
|
||||||
|
29
pkgs/development/python-modules/pycrdt/Cargo.lock
generated
29
pkgs/development/python-modules/pycrdt/Cargo.lock
generated
@ -93,6 +93,12 @@ version = "0.4.22"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "memchr"
|
||||||
|
version = "2.7.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "memoffset"
|
name = "memoffset"
|
||||||
version = "0.9.1"
|
version = "0.9.1"
|
||||||
@ -125,7 +131,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pycrdt"
|
name = "pycrdt"
|
||||||
version = "0.9.6"
|
version = "0.9.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pyo3",
|
"pyo3",
|
||||||
"yrs",
|
"yrs",
|
||||||
@ -211,18 +217,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "1.0.204"
|
version = "1.0.206"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_derive"
|
name = "serde_derive"
|
||||||
version = "1.0.204"
|
version = "1.0.206"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -231,11 +237,12 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_json"
|
name = "serde_json"
|
||||||
version = "1.0.120"
|
version = "1.0.124"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itoa",
|
"itoa",
|
||||||
|
"memchr",
|
||||||
"ryu",
|
"ryu",
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
@ -257,9 +264,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "2.0.72"
|
version = "2.0.74"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -268,9 +275,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "target-lexicon"
|
name = "target-lexicon"
|
||||||
version = "0.12.15"
|
version = "0.12.16"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
|
@ -11,18 +11,19 @@
|
|||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
trio,
|
trio,
|
||||||
y-py,
|
y-py,
|
||||||
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pycrdt";
|
pname = "pycrdt";
|
||||||
version = "0.9.6";
|
version = "0.9.8";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jupyter-server";
|
owner = "jupyter-server";
|
||||||
repo = "pycrdt";
|
repo = "pycrdt";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-1BGJ6I8ODLyEv566w+vQOsPEqN8nQlZHXTWv0tH0cR0=";
|
hash = "sha256-W93rLSDcCB9jrxC/Z88ToCkcfMGnCTGjBkVRNk3lLaI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -49,6 +50,8 @@ buildPythonPackage rec {
|
|||||||
y-py
|
y-py
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { extraArgs = [ "--generate-lockfile" ]; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "CRDTs based on Yrs";
|
description = "CRDTs based on Yrs";
|
||||||
homepage = "https://github.com/jupyter-server/pycrdt";
|
homepage = "https://github.com/jupyter-server/pycrdt";
|
||||||
|
@ -20,14 +20,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "qtile-extras";
|
pname = "qtile-extras";
|
||||||
version = "0.27.0.post1";
|
version = "0.28.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "elParaguayo";
|
owner = "elParaguayo";
|
||||||
repo = "qtile-extras";
|
repo = "qtile-extras";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-c5MCcpU6g95DMycSgOaUdpvPUtgVV/zUSdKVDbZWZGM=";
|
hash = "sha256-gQH9zWSPUH1eL6ZTD0gXVbZmOVG5hhhCakmWSHS2DBQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools-scm ];
|
build-system = [ setuptools-scm ];
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "rapidfuzz";
|
pname = "rapidfuzz";
|
||||||
version = "3.9.5";
|
version = "3.9.6";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -28,13 +28,13 @@ buildPythonPackage rec {
|
|||||||
owner = "maxbachmann";
|
owner = "maxbachmann";
|
||||||
repo = "RapidFuzz";
|
repo = "RapidFuzz";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-uoiXUE36FjIzYrcoqVnHF5RpNeYm8Nkied9UzaEGeSY=";
|
hash = "sha256-vO63Zkc2ltgfpAq81qRP5MjQ08GTkJhnfqwLIxP5eEI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail "scikit-build~=0.18.0" "scikit-build" \
|
--replace-fail "scikit-build~=0.18.0" "scikit-build" \
|
||||||
--replace-fail "Cython >=3.0.10, <3.1.0" "Cython"
|
--replace-fail "Cython >=3.0.11, <3.1.0" "Cython"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tencentcloud-sdk-python";
|
pname = "tencentcloud-sdk-python";
|
||||||
version = "3.0.1208";
|
version = "3.0.1209";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||||||
owner = "TencentCloud";
|
owner = "TencentCloud";
|
||||||
repo = "tencentcloud-sdk-python";
|
repo = "tencentcloud-sdk-python";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-AwkzoGJm+lI853Riq4VACU18nUn0jvUCFmMRJdFhcJM=";
|
hash = "sha256-SQcqLtdt74Onk3mBre9zaZmJhAOTrjZBhL3i1zr9R80=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -10,16 +10,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-about";
|
pname = "cargo-about";
|
||||||
version = "0.6.2";
|
version = "0.6.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "EmbarkStudios";
|
owner = "EmbarkStudios";
|
||||||
repo = "cargo-about";
|
repo = "cargo-about";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-W2qE4QqwVgC/J6NQkUcC501Dcc1qHnAhTIDvlr2El2k=";
|
sha256 = "sha256-J86tX/g3FW7fM24WVTZ8Afwu9hzXrac3qgYPcvUo8z4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-9Cw9FKbpGNsoWTqJtsm+dplvvPkZghj2uQ1M/WMw/LM=";
|
cargoHash = "sha256-Uyki5iDv5eKKcGZOZQwpNYe6jELg3zUNY5LzFKUfzXY=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
2503
pkgs/development/tools/rust/rustup/Cargo.lock
generated
2503
pkgs/development/tools/rust/rustup/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -23,18 +23,16 @@ in
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "rustup";
|
pname = "rustup";
|
||||||
version = "1.26.0";
|
version = "1.27.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rust-lang";
|
owner = "rust-lang";
|
||||||
repo = "rustup";
|
repo = "rustup";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-rdhG9MdjWyvoaMGdjgFyCfQaoV48QtAZE7buA5TkDKg=";
|
sha256 = "sha256-BehkJTEIbZHaM+ABaWN/grl9pX75lPqyBj1q1Kt273M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoLock = {
|
cargoHash = "sha256-iQoMPV97V9WJqT+qVtNpQtW5g+Jyl+U2uA+JEoRYTQA=";
|
||||||
lockFile = ./Cargo.lock;
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ makeBinaryWrapper pkg-config ];
|
nativeBuildInputs = [ makeBinaryWrapper pkg-config ];
|
||||||
|
|
||||||
@ -45,7 +43,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
buildFeatures = [ "no-self-update" ];
|
buildFeatures = [ "no-self-update" ];
|
||||||
|
|
||||||
checkFeatures = [ ];
|
checkFeatures = [ "test" ];
|
||||||
|
|
||||||
patches = lib.optionals stdenv.isLinux [
|
patches = lib.optionals stdenv.isLinux [
|
||||||
(runCommand "0001-dynamically-patchelf-binaries.patch"
|
(runCommand "0001-dynamically-patchelf-binaries.patch"
|
||||||
@ -62,7 +60,9 @@ rustPlatform.buildRustPackage rec {
|
|||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = !stdenv.isAarch64 && !stdenv.isDarwin;
|
# Random tests fail nondeterministically on macOS.
|
||||||
|
# TODO: Investigate this.
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
# skip failing tests
|
# skip failing tests
|
||||||
checkFlags = [
|
checkFlags = [
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "sqldef";
|
pname = "sqldef";
|
||||||
version = "0.17.16";
|
version = "0.17.17";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "k0kubun";
|
owner = "k0kubun";
|
||||||
repo = "sqldef";
|
repo = "sqldef";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-LnkaHVkh/yoONtYEZ7z4QM6NRKuGjTUwT0GFy20neNQ=";
|
hash = "sha256-J3qFafiMVjnJUa9bsYOxBqe3Hrsc/XDUI4p/GGO9Kmg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "flyctl";
|
pname = "flyctl";
|
||||||
version = "0.2.104";
|
version = "0.2.109";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "superfly";
|
owner = "superfly";
|
||||||
repo = "flyctl";
|
repo = "flyctl";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-WMWOXgFsUOdN2MivOlfrN2X9RRiTp3iXv2D3hKGenWM=";
|
hash = "sha256-5+WOc/mVFSO20E6ENFzMSSLYioMkCV8mKIVAVpdFWzU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-Q9GQyIEdTp0ua7pa8sQth61lM149th96sFQesYHPvtI=";
|
vendorHash = "sha256-XXyDHyH1XSh0gJedaQB4HKexz4DMz6rcBlrYoWSKacg=";
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, gitUpdater
|
, gitUpdater
|
||||||
, cmake
|
, cmake
|
||||||
, irrlichtmt
|
|
||||||
, coreutils
|
, coreutils
|
||||||
, libpng
|
, libpng
|
||||||
, bzip2
|
, bzip2
|
||||||
@ -15,7 +14,6 @@
|
|||||||
, openal
|
, openal
|
||||||
, libvorbis
|
, libvorbis
|
||||||
, sqlite
|
, sqlite
|
||||||
, lua5_1
|
|
||||||
, luajit
|
, luajit
|
||||||
, freetype
|
, freetype
|
||||||
, gettext
|
, gettext
|
||||||
@ -29,37 +27,35 @@
|
|||||||
, postgresql
|
, postgresql
|
||||||
, hiredis
|
, hiredis
|
||||||
, libiconv
|
, libiconv
|
||||||
, zlib
|
|
||||||
, libXrandr
|
|
||||||
, libX11
|
|
||||||
, ninja
|
, ninja
|
||||||
, prometheus-cpp
|
, prometheus-cpp
|
||||||
, mesa
|
|
||||||
, OpenGL
|
, OpenGL
|
||||||
, OpenAL ? openal
|
, OpenAL ? openal
|
||||||
, Carbon
|
, Carbon
|
||||||
, Cocoa
|
, Cocoa
|
||||||
, withTouchSupport ? false
|
, Kernel
|
||||||
, buildClient ? true
|
, buildClient ? true
|
||||||
, buildServer ? true
|
, buildServer ? true
|
||||||
|
, SDL2
|
||||||
|
, useSDL2 ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "minetest";
|
pname = "minetest";
|
||||||
version = "5.8.0";
|
version = "5.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "minetest";
|
owner = "minetest";
|
||||||
repo = "minetest";
|
repo = "minetest";
|
||||||
rev = finalAttrs.version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-Oct8nQORSH8PjYs+gHU9QrKObMfapjAlGvycj+AJnOs=";
|
hash = "sha256-cxbiuoD1J3WFoveUgxeR/XXdE7MMR0UEDFleDiaxnsA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
(lib.cmakeBool "BUILD_CLIENT" buildClient)
|
(lib.cmakeBool "BUILD_CLIENT" buildClient)
|
||||||
(lib.cmakeBool "BUILD_SERVER" buildServer)
|
(lib.cmakeBool "BUILD_SERVER" buildServer)
|
||||||
(lib.cmakeBool "ENABLE_PROMETHEUS" buildServer)
|
(lib.cmakeBool "ENABLE_PROMETHEUS" buildServer)
|
||||||
(lib.cmakeBool "ENABLE_TOUCH" withTouchSupport)
|
(lib.cmakeBool "USE_SDL2" useSDL2)
|
||||||
# Ensure we use system libraries
|
# Ensure we use system libraries
|
||||||
(lib.cmakeBool "ENABLE_SYSTEM_GMP" true)
|
(lib.cmakeBool "ENABLE_SYSTEM_GMP" true)
|
||||||
(lib.cmakeBool "ENABLE_SYSTEM_JSONCPP" true)
|
(lib.cmakeBool "ENABLE_SYSTEM_JSONCPP" true)
|
||||||
@ -85,7 +81,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
irrlichtmt
|
|
||||||
jsoncpp
|
jsoncpp
|
||||||
gettext
|
gettext
|
||||||
freetype
|
freetype
|
||||||
@ -97,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
libspatialindex
|
libspatialindex
|
||||||
] ++ lib.optional (lib.meta.availableOn stdenv.hostPlatform luajit) luajit
|
] ++ lib.optional (lib.meta.availableOn stdenv.hostPlatform luajit) luajit
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
mesa # for <KHR/khrplatform.h>
|
|
||||||
libiconv
|
libiconv
|
||||||
OpenGL
|
OpenGL
|
||||||
OpenAL
|
OpenAL
|
||||||
Carbon
|
Carbon
|
||||||
Cocoa
|
Cocoa
|
||||||
|
Kernel
|
||||||
] ++ lib.optionals buildClient [
|
] ++ lib.optionals buildClient [
|
||||||
libpng
|
libpng
|
||||||
libjpeg
|
libjpeg
|
||||||
@ -110,8 +105,11 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
openal
|
openal
|
||||||
libogg
|
libogg
|
||||||
libvorbis
|
libvorbis
|
||||||
] ++ lib.optionals (buildClient && !stdenv.hostPlatform.isDarwin) [
|
] ++ lib.optionals (buildClient && useSDL2) [
|
||||||
|
SDL2
|
||||||
|
] ++ lib.optionals (buildClient && !stdenv.hostPlatform.isDarwin && !useSDL2) [
|
||||||
xorg.libX11
|
xorg.libX11
|
||||||
|
xorg.libXi
|
||||||
] ++ lib.optionals buildServer [
|
] ++ lib.optionals buildServer [
|
||||||
leveldb
|
leveldb
|
||||||
postgresql
|
postgresql
|
||||||
|
@ -6,14 +6,14 @@ let
|
|||||||
# NOTE: When updating these, please also take a look at the changes done to
|
# NOTE: When updating these, please also take a look at the changes done to
|
||||||
# kernel config in the xanmod version commit
|
# kernel config in the xanmod version commit
|
||||||
ltsVariant = {
|
ltsVariant = {
|
||||||
version = "6.6.44";
|
version = "6.6.45";
|
||||||
hash = "sha256-kRMx0NVZNZ0xcEq+Bg9NkzHgRCnblbamxLKUbzfp6h0=";
|
hash = "sha256-sYAa/uIi076XJMHOSjOSQO/rK/wUWIpAfWb/EYDXvD0=";
|
||||||
variant = "lts";
|
variant = "lts";
|
||||||
};
|
};
|
||||||
|
|
||||||
mainVariant = {
|
mainVariant = {
|
||||||
version = "6.10.3";
|
version = "6.10.4";
|
||||||
hash = "sha256-Nwv7Ms8R6tTBK7oHeRf19S1OFCEJcf/fTXurHs+JI0Y=";
|
hash = "sha256-8iK821QbJcgXEeCWh1g1DlJ3gOD5eDErw0O7O+cEGwQ=";
|
||||||
variant = "main";
|
variant = "main";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
{ buildNpmPackage
|
{
|
||||||
, fetchFromGitHub
|
buildNpmPackage,
|
||||||
, nodePackages
|
fetchFromGitHub,
|
||||||
, python3
|
nodePackages,
|
||||||
, stdenv
|
python3,
|
||||||
, cctools
|
stdenv,
|
||||||
, IOKit
|
cctools,
|
||||||
, lib
|
IOKit,
|
||||||
, nixosTests
|
lib,
|
||||||
, enableLocalIcons ? false
|
nixosTests,
|
||||||
, nix-update-script
|
enableLocalIcons ? false,
|
||||||
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
dashboardIcons = fetchFromGitHub {
|
dashboardIcons = fetchFromGitHub {
|
||||||
@ -27,16 +28,16 @@ let
|
|||||||
in
|
in
|
||||||
buildNpmPackage rec {
|
buildNpmPackage rec {
|
||||||
pname = "homepage-dashboard";
|
pname = "homepage-dashboard";
|
||||||
version = "0.9.5";
|
version = "0.9.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gethomepage";
|
owner = "gethomepage";
|
||||||
repo = "homepage";
|
repo = "homepage";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-j5DGi5bLoUOoeu8RupiN+qeixNcpPAu3XG4PidZ5Bsg=";
|
hash = "sha256-jUKXAqq6Oj8CmOuBUlsf0zDIcK+3MX/czzNDmakN9VM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
npmDepsHash = "sha256-jYZUVwrOxoAbfHHSBkN5IlYhC6yZVVwRoZErkbYrjUs=";
|
npmDepsHash = "sha256-YjcF8FkURnTurcJ0Iq0ghv/bhu5sFA860jXrn3TkRds=";
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
mkdir -p config
|
mkdir -p config
|
||||||
@ -48,15 +49,9 @@ buildNpmPackage rec {
|
|||||||
patchShebangs .next/standalone/server.js
|
patchShebangs .next/standalone/server.js
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = lib.optionals stdenv.isDarwin [
|
nativeBuildInputs = lib.optionals stdenv.isDarwin [ cctools ];
|
||||||
cctools
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [ nodePackages.node-gyp-build ] ++ lib.optionals stdenv.isDarwin [ IOKit ];
|
||||||
nodePackages.node-gyp-build
|
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
|
||||||
IOKit
|
|
||||||
];
|
|
||||||
|
|
||||||
env.PYTHON = "${python3}/bin/python";
|
env.PYTHON = "${python3}/bin/python";
|
||||||
|
|
||||||
|
@ -11,16 +11,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "sozu";
|
pname = "sozu";
|
||||||
version = "0.15.19";
|
version = "1.0.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sozu-proxy";
|
owner = "sozu-proxy";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-9TSu27s/rnO48zEhBzaHaU3pHyIJ0LVZC8LBRhn0PNM=";
|
hash = "sha256-FiCKRYIbgxSXbnSv1nauCryUA2PB5uVUK1mhtxJECAA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-h9igqV9YqMqRhqwsKYIji8WAVmcPQfErcPPm0PcDwss=";
|
cargoHash = "sha256-iP5lElqfO4btllVAel5010bgSRQFO/pxyfrj4PFAnJc=";
|
||||||
|
|
||||||
nativeBuildInputs = [ protobuf ];
|
nativeBuildInputs = [ protobuf ];
|
||||||
|
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
# DO NOT EDIT! This file is generated automatically by update.sh
|
# DO NOT EDIT! This file is generated automatically by update.sh
|
||||||
{ }:
|
{ }:
|
||||||
{
|
{
|
||||||
version = "3.127.0";
|
version = "3.128.0";
|
||||||
pulumiPkgs = {
|
pulumiPkgs = {
|
||||||
x86_64-linux = [
|
x86_64-linux = [
|
||||||
{
|
{
|
||||||
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.127.0-linux-x64.tar.gz";
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.128.0-linux-x64.tar.gz";
|
||||||
sha256 = "19ndjx7k7gqchqw6rh66c7jpxqxq49cx98r5kya0wgsdhm1ppnxi";
|
sha256 = "15faqcd6r74a8lwmhrjvy1qnlkc288n8681dpavc2nl6abc46ayh";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.20.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.21.0-linux-amd64.tar.gz";
|
||||||
sha256 = "0ihn2rn05c1ajs3kh6sk62qsd19a932z27061kym4810fdw3vqai";
|
sha256 = "1r4pvgjdibnmklfya1jd96rnvfwi6n3fgcwxkhsjbkr38z65am2p";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-linux-amd64.tar.gz";
|
||||||
@ -21,20 +21,16 @@
|
|||||||
sha256 = "0vcps3pzl8dfcrsk2vc3qgqzjxfb2waq90jld7ap6glc882sr19d";
|
sha256 = "0vcps3pzl8dfcrsk2vc3qgqzjxfb2waq90jld7ap6glc882sr19d";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.2.1-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.5.1-linux-amd64.tar.gz";
|
||||||
sha256 = "0792bjc3csjfv55pg9b6imwrasxz40g928jbackrvdl1c2pawpkn";
|
sha256 = "1xbfr2z610krkyxwlbm4y882nl3g65vdprp3pbmm2gyniqh2r9xr";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-linux-amd64.tar.gz";
|
||||||
sha256 = "11kpczajnshx3ky6m8imsydxpw7a8k608bz3bhy9wd43x2gcg5qd";
|
sha256 = "11kpczajnshx3ky6m8imsydxpw7a8k608bz3bhy9wd43x2gcg5qd";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.46.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.48.0-linux-amd64.tar.gz";
|
||||||
sha256 = "15fc8i0y0xhq85p6vf68df2kavdzph769lzjrrmrayvlclblaiz2";
|
sha256 = "1a1jv01ljz7zc54qqqyy8nb0qn5w4msvp6jr55wl5li39scvp4ck";
|
||||||
}
|
|
||||||
{
|
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.85.0-linux-amd64.tar.gz";
|
|
||||||
sha256 = "0m652snqibs73bhb5rhi4f3a18jjs5s4mh8xj91w82ksljgs0ww3";
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-linux-amd64.tar.gz";
|
||||||
@ -45,20 +41,24 @@
|
|||||||
sha256 = "02v61pqpsxj652937rm7fwdr0612cq157g8wxkah27cxyyyf6qzq";
|
sha256 = "02v61pqpsxj652937rm7fwdr0612cq157g8wxkah27cxyyyf6qzq";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.35.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.86.0-linux-amd64.tar.gz";
|
||||||
sha256 = "11rjl9ddg495awnslnd0q7cfc6x31mwzvcjz56xllgkxxryn8c1n";
|
sha256 = "0a0yl4w5x0d9lvaaqdasbm9sd6h8fr9k8qvnnjq3vbs5xpxf8qap";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.11.4-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.36.0-linux-amd64.tar.gz";
|
||||||
sha256 = "0gb8yrsl7js41ffq993x5cibl3drgdjgaq3nl1xd72248b82pik4";
|
sha256 = "0bcdsi66dwvcfa1wpwq9fzh1khizlkzn6wb8rj1i2fipj39gvs9w";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.0-linux-amd64.tar.gz";
|
||||||
|
sha256 = "10nn27kvv9l32bgy9mrzvs5s5krq1kpaw702mmq5ngiznrkj4ss8";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-linux-amd64.tar.gz";
|
||||||
sha256 = "00px345df0gnirscmj57pvsk9z412z4r5la4y71daf2f2acl73q3";
|
sha256 = "00px345df0gnirscmj57pvsk9z412z4r5la4y71daf2f2acl73q3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.30.2-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.31.0-linux-amd64.tar.gz";
|
||||||
sha256 = "1fsslwik687gqpcj3i5d1zv5jwcf2knkx2whn61bm0gir8wcl3iq";
|
sha256 = "0v5cj9gf63s79crbzs0a32wr8w450z2pzlm3m4njgxnklw3l57r3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-linux-amd64.tar.gz";
|
||||||
@ -73,8 +73,8 @@
|
|||||||
sha256 = "03wx8b74nr93b5z7cm94n728ljzjggpxa0x6n1zn1zcdr6f495sk";
|
sha256 = "03wx8b74nr93b5z7cm94n728ljzjggpxa0x6n1zn1zcdr6f495sk";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.32.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.35.0-linux-amd64.tar.gz";
|
||||||
sha256 = "1dmw1359wcaczc8iyk6ywjzk9yqrn1539br8js4mcvl6yhrp6a2a";
|
sha256 = "12055sgxpa0a14rb2zx7b42f1f2h7ih07jilapbj69kypxfppwij";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-linux-amd64.tar.gz";
|
||||||
@ -89,12 +89,12 @@
|
|||||||
sha256 = "1zra1ck64gs4nwqf62ksfmpbx24lxw6vsgi47j4v8q051m89fgq3";
|
sha256 = "1zra1ck64gs4nwqf62ksfmpbx24lxw6vsgi47j4v8q051m89fgq3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.19.2-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.20.0-linux-amd64.tar.gz";
|
||||||
sha256 = "1j44m55x2yi31790vlc1vivxjbar921xnbx77c3n03s86mmlsyv8";
|
sha256 = "0biyj03nhbmq0fnlkx3v4w43cwk095sa80di1mhbszgz13zj4409";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.15.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.16.0-linux-amd64.tar.gz";
|
||||||
sha256 = "04bldr5h13gfpk19d4s74fvhskyzihi199af1rq0n7ks8mf43ig2";
|
sha256 = "11y742hhna8izpcmra2j5jqhhnd3x7mb0l6n1lark8wazjqifqx9";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-linux-amd64.tar.gz";
|
||||||
@ -109,8 +109,8 @@
|
|||||||
sha256 = "1vl57mjz23krcp7801q5v2vb64daxpyqpas57y8hxvi5np7qnpk4";
|
sha256 = "1vl57mjz23krcp7801q5v2vb64daxpyqpas57y8hxvi5np7qnpk4";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.1-linux-amd64.tar.gz";
|
||||||
sha256 = "1zh21cnnr3pfsraad0spv3nnds6pnad1xa3whms9qzdk62lrh0zh";
|
sha256 = "1fqahbl0rh5794ck21jx4krn5ni5wkk958rf1darl2d7h9l4zr35";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-linux-amd64.tar.gz";
|
||||||
@ -121,28 +121,28 @@
|
|||||||
sha256 = "0byfb2zjymwmgd52wfk1xhp1llw6b4hniwa4faf66fmpr2i157nd";
|
sha256 = "0byfb2zjymwmgd52wfk1xhp1llw6b4hniwa4faf66fmpr2i157nd";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.56.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.57.1-linux-amd64.tar.gz";
|
||||||
sha256 = "0d05z7iym834vxlk7d1blxvjcbyqvi129pfbcl76qyf294sbgbsv";
|
sha256 = "0cfmi8f8v31jbyz32mflb5lvr2hh550mrmavnk3lv631iy5pf1iw";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.83.1-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.86.0-linux-amd64.tar.gz";
|
||||||
sha256 = "16604jh4p4g7rirhcjcnrbyk1srmnzbbr93fc31hlv8hya348c5w";
|
sha256 = "1qdsbgxkaci0m8k70zmjl997njp5pax4c1paa6lngdp4vbsdrq7m";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.1-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.2-linux-amd64.tar.gz";
|
||||||
sha256 = "191nslfjl5l3lv50ficavhir4qpnr5dha1zvsg87ps76cp693jnh";
|
sha256 = "0h9hb51h5fjsnf3lcyik77sb1mw070h7p4drnm6f8rjkg5jy1q7i";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.1-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.2-linux-amd64.tar.gz";
|
||||||
sha256 = "1pi6mfd9309ly8d633cv3mc4mm1gmwg8hfamdyljkw4svagl9l67";
|
sha256 = "03y02rcy2xarvb4v33wxqf2qcy71amc9f6j6h406c8w8dnlaa9c3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-linux-amd64.tar.gz";
|
||||||
sha256 = "0rx05a9mdlv9yfsf6pi0ccdv7zfp7kgrj5zhfjagbk8x04cnygrz";
|
sha256 = "0rx05a9mdlv9yfsf6pi0ccdv7zfp7kgrj5zhfjagbk8x04cnygrz";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.2.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.3.0-linux-amd64.tar.gz";
|
||||||
sha256 = "02a0vbqwaq65yfmjqjrix0s4asnr3mrpn7rr97wmrc7nr47x3pcd";
|
sha256 = "0dmx29ldms7mwhi4ka9qnz53qkis29diyz4g06hbnkc6j1bdc7jn";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-linux-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-linux-amd64.tar.gz";
|
||||||
@ -163,12 +163,12 @@
|
|||||||
];
|
];
|
||||||
x86_64-darwin = [
|
x86_64-darwin = [
|
||||||
{
|
{
|
||||||
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.127.0-darwin-x64.tar.gz";
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.128.0-darwin-x64.tar.gz";
|
||||||
sha256 = "0mvyjbvabgxqmv1bjfbiid31grzgcajflhqsmhi5nrdb72w0sq2d";
|
sha256 = "1py0f208laf82857pfl3ksqwszr12qyfdcc73z9b376wyp5pb86w";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.20.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.21.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "148ksf36bfvl4xysw949yhixcc8q9lm945r03pb8rfrb04561fx2";
|
sha256 = "1r7rfkgp0jnvfcq02jimb3cm2bjw9amz48j0ngx9l29ljykf857a";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-darwin-amd64.tar.gz";
|
||||||
@ -179,20 +179,16 @@
|
|||||||
sha256 = "01bbbwczlakxb08p35s74rd5yqnk8z7580k146ib0l9xgzf0a811";
|
sha256 = "01bbbwczlakxb08p35s74rd5yqnk8z7580k146ib0l9xgzf0a811";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.2.1-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.5.1-darwin-amd64.tar.gz";
|
||||||
sha256 = "1b1fwvwxdiwk7cq4gf1ssjj294abx86j93q8rp1vqj1hfj75glyl";
|
sha256 = "1gi96ndl33b33hxpv67g53aiys8ry2mvk07xc0lb2ckmky5976s8";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "00p3b7m2rnp5w4nsh15w2s3hbhwv6wm2x30d8g939z07z6dxzq3s";
|
sha256 = "00p3b7m2rnp5w4nsh15w2s3hbhwv6wm2x30d8g939z07z6dxzq3s";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.46.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.48.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0yqp5fajmlsxgsin6vrpikr49b5fxi1v6alw5ix2i04mv8fzs5i7";
|
sha256 = "0ilq9hsz503n2z8rkzqdqhpv6pi3jgz16kcz6jb7xn1kdxqia96l";
|
||||||
}
|
|
||||||
{
|
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.85.0-darwin-amd64.tar.gz";
|
|
||||||
sha256 = "1lki7piyk3dffd1cd5zs37dck002ir9mbaysx4cn92w1bbjvn2c2";
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-darwin-amd64.tar.gz";
|
||||||
@ -203,20 +199,24 @@
|
|||||||
sha256 = "1xranra0rkcnvahna4jrb091jy23sgk9ib92dbzl2gw26yj6x9gx";
|
sha256 = "1xranra0rkcnvahna4jrb091jy23sgk9ib92dbzl2gw26yj6x9gx";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.35.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.86.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "14h8dr3xs17lqjr9vxa63m2pwiqc0hd227f1n6x4vchb726h7iam";
|
sha256 = "0bpscwrm8jrhfcma1vy8pzbi2i5l69p40dx9va5lbrslxf73mf88";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.11.4-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.36.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0q9ycpaavrnzl3dh1wa9pi4acpr52s2f3plf3x9yx3l3jdqs8m76";
|
sha256 = "111dl2rpjf8zkb5910sz627cw4cqi4c77vbzjimmx837mjkpij69";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.0-darwin-amd64.tar.gz";
|
||||||
|
sha256 = "0scdybl1mgdrqif6m5gkagh2jrlir2srjmbdgig2i3kqs7y5z2d0";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0rvpv2igaq4xsw0z5fpd11zkkwxwbi3ymq08h2gvkv3zdb966bci";
|
sha256 = "0rvpv2igaq4xsw0z5fpd11zkkwxwbi3ymq08h2gvkv3zdb966bci";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.30.2-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.31.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0lwwq0na0334ynddmpy1fy71js5f35i4ps3084z4cxzaz0amlnv1";
|
sha256 = "049l8287a9rmrr2ypywycnc36g8jhkx37swqkklw1qp1az4cl2k8";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-darwin-amd64.tar.gz";
|
||||||
@ -231,8 +231,8 @@
|
|||||||
sha256 = "1kcp2hryja7bn7n2115wqlc326hb5ln1bk8fzmhlbwaysamxspbj";
|
sha256 = "1kcp2hryja7bn7n2115wqlc326hb5ln1bk8fzmhlbwaysamxspbj";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.32.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.35.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "01yg9rpkgxhcs832f0hgjilyjp257mii1mk1ljjxdvxl9cr82d68";
|
sha256 = "16mk8c9wpl32nb7wf4rj258hh2x6vm8wql0c6ha8w0al0va4bsmf";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-darwin-amd64.tar.gz";
|
||||||
@ -247,12 +247,12 @@
|
|||||||
sha256 = "0ddd0pgpyywq291r9q8w6bn41r2px595017iihx4n2cnb1c4v6d5";
|
sha256 = "0ddd0pgpyywq291r9q8w6bn41r2px595017iihx4n2cnb1c4v6d5";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.19.2-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.20.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "196acjy617p868arsnyr0an4m338b50in1axbwzlkf8rhhifzraq";
|
sha256 = "0pw9qawf3wrndzrz0i93al09rygr23b6gg53njq3az74gw4vjaw3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.15.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.16.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0lnlahbrsccz6qhjrbrmgjh1dc2qvhr4rxhj0zbmvjmgch81cy1a";
|
sha256 = "0dfdc9y0rmn70fjgcnf4c8aqgvj6zai8anjjw5ifgchkp2hqi7s9";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-darwin-amd64.tar.gz";
|
||||||
@ -267,8 +267,8 @@
|
|||||||
sha256 = "1a7gd4vbkvbmk2870xc2dgkq6dd4bvcmdcrkny51m2bcns94b2xl";
|
sha256 = "1a7gd4vbkvbmk2870xc2dgkq6dd4bvcmdcrkny51m2bcns94b2xl";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.1-darwin-amd64.tar.gz";
|
||||||
sha256 = "1y3z2jlw5x1zmfljf25dy8a48arkk030qjc9isxzal6ij8v4ylml";
|
sha256 = "0xjfhrid7jhz6mkbvf4a8fpbhphxmjbj5xhrg7r7v266vgvjjw2y";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-darwin-amd64.tar.gz";
|
||||||
@ -279,28 +279,28 @@
|
|||||||
sha256 = "0xfqi33x1crkvqdl3iqq1i7vky2s3v36fyb1adrn6067mbd7dgxj";
|
sha256 = "0xfqi33x1crkvqdl3iqq1i7vky2s3v36fyb1adrn6067mbd7dgxj";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.56.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.57.1-darwin-amd64.tar.gz";
|
||||||
sha256 = "0pr5s2iaxid9jn290798ssbrcn00gkx3r72f3dvimdb9njrvr2pi";
|
sha256 = "1vx0f9d222vvvflkza288327h5ksiff7sysnzpyaca1kf8v3qs7y";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.83.1-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.86.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0aj92m6f6aydfnj2616azkym9jk8ksai9598njg213dhmiiamyr5";
|
sha256 = "1mwp3pfr8gjq6ff1q4dsfq58pcq2v6qnm5pc1fhp083cvsxvzxkz";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.1-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.2-darwin-amd64.tar.gz";
|
||||||
sha256 = "0mfg1c9dn948kkh3ylfm5njzri28hngv8fbszhx40x5qkyla6qkj";
|
sha256 = "0di85gf7rjg7z1rckqp6ff5jsrc1ng1sihwkpgiv2w9wxhxrh333";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.1-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.2-darwin-amd64.tar.gz";
|
||||||
sha256 = "0021nwmzy3kf87da6r77di0gqpi6g9qby3r459d71631g19xi5hs";
|
sha256 = "0sr9a8zgfvhyr9993pmfddiw92c2m6v5wiafpd0p5hfzf99n5l8c";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-darwin-amd64.tar.gz";
|
||||||
sha256 = "0zqc8iwzgg5aw03sbgcmpi3s0dffya7c8qx2ncxjvq1hcdhzsyj7";
|
sha256 = "0zqc8iwzgg5aw03sbgcmpi3s0dffya7c8qx2ncxjvq1hcdhzsyj7";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.2.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.3.0-darwin-amd64.tar.gz";
|
||||||
sha256 = "0lc7baayl1yq67mg9j0q0sgln915234f7rs22ncp9lk996xgwin8";
|
sha256 = "00l1ybf0a2bjkvd10db9ilyxq0zpv55r3wdy7s9dklq2bagmqzjz";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-darwin-amd64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-darwin-amd64.tar.gz";
|
||||||
@ -321,12 +321,12 @@
|
|||||||
];
|
];
|
||||||
aarch64-linux = [
|
aarch64-linux = [
|
||||||
{
|
{
|
||||||
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.127.0-linux-arm64.tar.gz";
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.128.0-linux-arm64.tar.gz";
|
||||||
sha256 = "1w7k6g8rch463hmgh1qymblikk9j5pcgl0scl422ffd3clqrl8zm";
|
sha256 = "1wwq601y7dkaj2jfj3zxi9yp3m7pka6mad73jaqr2gbgnz8ks0w0";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.20.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.21.0-linux-arm64.tar.gz";
|
||||||
sha256 = "0rva2s47fgii2c3l52gmfnpf0fs8rw3w4prhz7afpv96s9m0qpjb";
|
sha256 = "1nadxwfmn6622jy5hjwxmhczsj4js049nhh128xkc51a70f7iz5k";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-linux-arm64.tar.gz";
|
||||||
@ -337,20 +337,16 @@
|
|||||||
sha256 = "0cs456c4hlasjzd7whnna5adv0x9y4q8jqjmrkb3ijnlyi1l24pv";
|
sha256 = "0cs456c4hlasjzd7whnna5adv0x9y4q8jqjmrkb3ijnlyi1l24pv";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.2.1-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.5.1-linux-arm64.tar.gz";
|
||||||
sha256 = "0jmvk7158384y512g9qycq7d9877rxzk1snwzbz0lfg4rqlw169p";
|
sha256 = "05gafxa1xjqdd0d8ibr9ps1wrca91bvxbgidjrj83ilg6hflsr1j";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-linux-arm64.tar.gz";
|
||||||
sha256 = "0kabsgjxhg8dlj0qa33mfsm90vsd9lzizw1a5sfmf9py7flcvn0y";
|
sha256 = "0kabsgjxhg8dlj0qa33mfsm90vsd9lzizw1a5sfmf9py7flcvn0y";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.46.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.48.0-linux-arm64.tar.gz";
|
||||||
sha256 = "0aihaakzb4cbrdp6xdqxidh08n7zwqgg1ncb57j841gilzf7ya1m";
|
sha256 = "11w454ccy73pmn4jf8dgk7l1pa5m9in8dwshz9a58fvsq2rm9n1h";
|
||||||
}
|
|
||||||
{
|
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.85.0-linux-arm64.tar.gz";
|
|
||||||
sha256 = "0y5avw0zf87sqsh50nb6dm45cpbf2glaxd9lwcnk3bkiwqlbxyis";
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-linux-arm64.tar.gz";
|
||||||
@ -361,20 +357,24 @@
|
|||||||
sha256 = "03rvhz2zbjdldlp3c1335cbp2b8c3y3p88czwsfy6dsd9hry8fsa";
|
sha256 = "03rvhz2zbjdldlp3c1335cbp2b8c3y3p88czwsfy6dsd9hry8fsa";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.35.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.86.0-linux-arm64.tar.gz";
|
||||||
sha256 = "1kphr21na2rzspd4m2kh962mfbr6df23f0rfas3qdrd2nw7vh1rq";
|
sha256 = "1lilc1y1ji91xqz1hvl6nc49apvbm1z7ibd3a701dgsnfc9hbafq";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.11.4-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.36.0-linux-arm64.tar.gz";
|
||||||
sha256 = "1zaxwkn4kg4nnns90dbx6dwdjw5mbbpm9h8wjcd41zhhbd4b3vld";
|
sha256 = "0m7xcblqcpaiiyv0izp5inczzyn07a7s77647fmskq3wax0fgady";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.0-linux-arm64.tar.gz";
|
||||||
|
sha256 = "0z6c4c2g26hl999l7bpx0ma9ks8rlcin5n0jyr1sbl3myy3804hs";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-linux-arm64.tar.gz";
|
||||||
sha256 = "1xfql6ggxd90vh4kb9c0iki1cs47j6v1qld9chcanm394kchavd5";
|
sha256 = "1xfql6ggxd90vh4kb9c0iki1cs47j6v1qld9chcanm394kchavd5";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.30.2-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.31.0-linux-arm64.tar.gz";
|
||||||
sha256 = "10asvq6ds4y9sfxy2lh81ldzxdr347nwvhphjzs3sb2pxrx9dksz";
|
sha256 = "10am0w1q60whmrzrm3hmyxgmg4i1b6m45syy3qhvr8xx0af3p9wi";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-linux-arm64.tar.gz";
|
||||||
@ -389,8 +389,8 @@
|
|||||||
sha256 = "1fr9hm4pkrhhgw6i9ay0mrnf17p5q8sj2bjf1v3lqgchfw8z6sga";
|
sha256 = "1fr9hm4pkrhhgw6i9ay0mrnf17p5q8sj2bjf1v3lqgchfw8z6sga";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.32.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.35.0-linux-arm64.tar.gz";
|
||||||
sha256 = "07qzrx6lnca2fpfk9ld6czaz2qyrzli2dzqa0hkf56mir49rjkj2";
|
sha256 = "0w3sspn64q5h056d7ql12w4q6lnvpdfla2llac4bv7rx1sd3hh3v";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-linux-arm64.tar.gz";
|
||||||
@ -405,12 +405,12 @@
|
|||||||
sha256 = "0d8m2krbzxjhfm82dgf8p4vm3kk9gk98l798q4ayjrddqqb4mxq4";
|
sha256 = "0d8m2krbzxjhfm82dgf8p4vm3kk9gk98l798q4ayjrddqqb4mxq4";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.19.2-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.20.0-linux-arm64.tar.gz";
|
||||||
sha256 = "1x4jxlhgfxr8fl4zfpz0d6c4pbawx7q6y6igzkk3jj2nwfnawmjl";
|
sha256 = "1m18aypypjsyr18igj2kmzh1dw86hxph32agk7k0zjfj921anqmx";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.15.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.16.0-linux-arm64.tar.gz";
|
||||||
sha256 = "00mla8clf53jwdivd0magmzc0psm6ac3xps7xbx979aqd7lgxzv6";
|
sha256 = "1rf6l9wzynn25nds0m7wyzzdd34yg81vf79269j268wkpif7xpmg";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-linux-arm64.tar.gz";
|
||||||
@ -425,8 +425,8 @@
|
|||||||
sha256 = "0krvvhm842lkxa14xfpkk2b1namgxnk3y6n5lcvhsnswga10r2xq";
|
sha256 = "0krvvhm842lkxa14xfpkk2b1namgxnk3y6n5lcvhsnswga10r2xq";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.1-linux-arm64.tar.gz";
|
||||||
sha256 = "1mvx5hq5s4s6hvcjfk4ficdacz5ivrczr10d182n7hzai8nmq3c3";
|
sha256 = "0fwmrxrap9wrihy4d2a85avmgzfmn0xm49b30da2x8cibsdl4g0b";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-linux-arm64.tar.gz";
|
||||||
@ -437,28 +437,28 @@
|
|||||||
sha256 = "064x91jvbqj142rkyphvwwds71i347nifv5akak35lf0ha4v57hw";
|
sha256 = "064x91jvbqj142rkyphvwwds71i347nifv5akak35lf0ha4v57hw";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.56.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.57.1-linux-arm64.tar.gz";
|
||||||
sha256 = "0g7hm3s6mm17y417il6pm78d6aq02bb13sq00cp4ard9sd3qvzwa";
|
sha256 = "1k61nqg0cgy5bdj8fkzf17azx4wskalf6spmfs46swdbrgq5ra2l";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.83.1-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.86.0-linux-arm64.tar.gz";
|
||||||
sha256 = "0b79daawccp4s1nrv4x5blnl5d8gfyia1jmsm1v2xczwcrp8qjvc";
|
sha256 = "0h6cyklya3dpfbkg6n4fm5cxmmdgy1fcq45jriwqyx9isy62wq9p";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.1-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.2-linux-arm64.tar.gz";
|
||||||
sha256 = "1rjjr3xxmms646navaiijcx70jv36mngxp9hkiab16avxs96vgd0";
|
sha256 = "19mrlxyl63m9c7albhszd9ikklm29k8s465cp0bzkrwawy6nn3yy";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.1-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.2-linux-arm64.tar.gz";
|
||||||
sha256 = "0jxrhwv8ailnakxqa8lcbds02r5m33xvn4n1xrrsq2xj15vbyzlz";
|
sha256 = "08f5yqxf0vgidcmwrzq8scdbd2h4wdz226l87h8rxpzssj56lpls";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-linux-arm64.tar.gz";
|
||||||
sha256 = "1868473rk41dhl2gxabg6bin8m9c1lzs52wmcbpjrn91wb8pyz7v";
|
sha256 = "1868473rk41dhl2gxabg6bin8m9c1lzs52wmcbpjrn91wb8pyz7v";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.2.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.3.0-linux-arm64.tar.gz";
|
||||||
sha256 = "0w9nqw99k0vril5rm2bsgny8vrmw84d8qlb2lvxp6qbn0hvaim6v";
|
sha256 = "16j5vimwjksnjwfmgf8nkmja5g8pqi9hsw0mr8xndl61hsrawirn";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-linux-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-linux-arm64.tar.gz";
|
||||||
@ -479,12 +479,12 @@
|
|||||||
];
|
];
|
||||||
aarch64-darwin = [
|
aarch64-darwin = [
|
||||||
{
|
{
|
||||||
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.127.0-darwin-arm64.tar.gz";
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v3.128.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "06sfzk8hm2lgfaj2k0br9w1z6yfa7pfxqvh4wp0c2gxq5vykjw2m";
|
sha256 = "06kw0bh50q16bqdv16xrsl6iqa9nd3kc431n4k3j536m3f83v9ng";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.20.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.21.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "097wrym5h2x3bak28sflpslvfmzh2sw05hgaj3wslcmvvc0h1s5r";
|
sha256 = "1yrccl7z5mbjnxxvvmcjsq4jwvm9ppch2wdybgrapkk7n1liwbd3";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.3.0-darwin-arm64.tar.gz";
|
||||||
@ -495,20 +495,16 @@
|
|||||||
sha256 = "1gpaz8nrx85mrhp03nn3m44q7ksg4irszzj62yyhckdj1jpfkahz";
|
sha256 = "1gpaz8nrx85mrhp03nn3m44q7ksg4irszzj62yyhckdj1jpfkahz";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.2.1-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v7.5.1-darwin-arm64.tar.gz";
|
||||||
sha256 = "17mh63n9w45y320fjcafvcdic52zfmnvkd2fq193ppfx930lz1zc";
|
sha256 = "1wrd06bxwn2y7v9m608dvi53ynsg87c6kv9mv9gafbcxfkjgf8ga";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.5.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "1mmrvn31njs2sr9h6cj7m1ph2gh465qqx0pigvbidjfhl9ag2hrx";
|
sha256 = "1mmrvn31njs2sr9h6cj7m1ph2gh465qqx0pigvbidjfhl9ag2hrx";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.46.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.48.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "1rkavb9la0dmbd49hzwbg8sv5py1h3n88v4sf7y2fjb877xaq1ni";
|
sha256 = "08a5xsmq38dpy1hashzacwhchjj1mvj3ql0mbya5kz8s530iz24x";
|
||||||
}
|
|
||||||
{
|
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.85.0-darwin-arm64.tar.gz";
|
|
||||||
sha256 = "0aml7p89i5dgynfxzzrp2p1acp9s222y6s65s6vxdy2llq8izccd";
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.53.3-darwin-arm64.tar.gz";
|
||||||
@ -519,20 +515,24 @@
|
|||||||
sha256 = "04wibkfpq76qhyy8kf0y89qkssapwgmkv56bspdxpydlnnwvn714";
|
sha256 = "04wibkfpq76qhyy8kf0y89qkssapwgmkv56bspdxpydlnnwvn714";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.35.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.86.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "10vr6vr9dna44g6qsrk5dkc7g03qq7v91x4js8hz20aql7qp68p7";
|
sha256 = "1idnrj0lyc3y466x6lz98h3v9sp4asn6cln390snywxwiam6dx9k";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.11.4-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.36.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "1w04f1w8f1ir1jfbkn6rmrpjj49k6ddw2nfx2617q2icmvaj3q7p";
|
sha256 = "12y6vyz8zfxhn71agzw90mhhn4czyh0xdljpxhsl6yzai3l176jb";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.0-darwin-arm64.tar.gz";
|
||||||
|
sha256 = "1m8jjiq1yfiw06dgji3rw90rmzcwn2j2lrj17vilqxim708vg5fn";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.31.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0x9fvwwx4hd7a3n0nmjnri2r5pdf72chkczdjx3n04rf7lrzbhz4";
|
sha256 = "0x9fvwwx4hd7a3n0nmjnri2r5pdf72chkczdjx3n04rf7lrzbhz4";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.30.2-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.31.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0gi776zhi37nrj37aalz5qmkyf2wihgq4jhm7h6qr5vgr7chld34";
|
sha256 = "1r9pnxwv0dp7ahw1gk7c89j9wqcfp0rpam3qwxq4x3xc5x1b8cg9";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.5.5-darwin-arm64.tar.gz";
|
||||||
@ -547,8 +547,8 @@
|
|||||||
sha256 = "0sd24dkf2bbz113vl59yc4ka5kxjdgsz0z6a84nnfa66llgr81b7";
|
sha256 = "0sd24dkf2bbz113vl59yc4ka5kxjdgsz0z6a84nnfa66llgr81b7";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.32.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.35.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0ivyd5rhsp6mad1z3zxs8y60lfdf7qvqggjlcckn0izhxw69kfzd";
|
sha256 = "1yc35zjzr9ry1jy9avb8d1sliq4iyy59v2jsx4bdixwk9ih3ddpm";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.2.3-darwin-arm64.tar.gz";
|
||||||
@ -563,12 +563,12 @@
|
|||||||
sha256 = "0caz4kgnnrmdr7n571xc7yqscac9jnjwwpjzbnvx4ib6a91wvsdn";
|
sha256 = "0caz4kgnnrmdr7n571xc7yqscac9jnjwwpjzbnvx4ib6a91wvsdn";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.19.2-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.20.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0qpyl38na36gahddblqx602vnhnjcwqxdp2iy38k5d5mlqihg1zn";
|
sha256 = "19nr55glr64lvxf233c2z8j5g13b7r2zxqwsri9vgj3kg52rjsbi";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.15.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.16.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0qa07scjj7mjwqjmv260ansiy8qk3ch9bf50p33ig86599r4indp";
|
sha256 = "0rp7wqz1fydj53jcnsqw2pgs015hmp7am2mps6y03yrh8zy17rnb";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.24.0-darwin-arm64.tar.gz";
|
||||||
@ -583,8 +583,8 @@
|
|||||||
sha256 = "0girslx186bif03hxkpsgs21g88sy2r1py05b2kqb67izcbh996v";
|
sha256 = "0girslx186bif03hxkpsgs21g88sy2r1py05b2kqb67izcbh996v";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v4.1.1-darwin-arm64.tar.gz";
|
||||||
sha256 = "007v4jacfg1i0skarsab918i8qwipgvklrsa6fqv4gwqjcz6y2lr";
|
sha256 = "1whav393yg0w3vxnf835ryp3ah9aqya092w8kw18rgd7miqf6m5m";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.3-darwin-arm64.tar.gz";
|
||||||
@ -595,28 +595,28 @@
|
|||||||
sha256 = "15l2609g7z2xxsblakwq3d3lyg32swb4lmfsrn7m0cwa2a2s2v1x";
|
sha256 = "15l2609g7z2xxsblakwq3d3lyg32swb4lmfsrn7m0cwa2a2s2v1x";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.56.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.57.1-darwin-arm64.tar.gz";
|
||||||
sha256 = "0c4p9gv7a740432190mi6z1471irrfl51rmmbsrdf05dj7brn3zx";
|
sha256 = "0bfxi4c9bv3bwd0x9gv25pcspcvw8cqpgkfbrjnq49mcmys1wz24";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.83.1-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.86.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "08j3irvd034fkpaym6iv67a8ipys6py5hzj3sl6hj3i7894ddv9f";
|
sha256 = "1dfffxx0wrrhrh8h29ffcijp5v55i85x1608l3g12a4dac5p2r3k";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.1-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v0.23.2-darwin-arm64.tar.gz";
|
||||||
sha256 = "1x9vc999rm8sb14294003ak64cim939k2p2lrng2yjib8h553w9y";
|
sha256 = "1jrccj0fkzqb88spl2v97sc2d7nwmkbi0f093f999av504qg0gg4";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.1-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.16.2-darwin-arm64.tar.gz";
|
||||||
sha256 = "01imbxv3l7f0kybykkcdnbvhaypnqalm1n6gzkz6badhazgl9552";
|
sha256 = "0d7jyzf66hxg13zkg9c4g63328vazlp9g7z9djqx44zmpxm6yh2b";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.4-darwin-arm64.tar.gz";
|
||||||
sha256 = "1az0h9xq7py2cn9qwnhndacla8bfayznv2zbghqqy5wnc3rwbdr7";
|
sha256 = "1az0h9xq7py2cn9qwnhndacla8bfayznv2zbghqqy5wnc3rwbdr7";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.2.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v6.3.0-darwin-arm64.tar.gz";
|
||||||
sha256 = "0ssnhzgddg30rgyrqrcp0xmxmik16blk2a06mgcy0q5llara69f2";
|
sha256 = "15djjgjf117hswmg8pg53xp8ck8wp2lls6vnfj6ppdx5c6mpj0gh";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-darwin-arm64.tar.gz";
|
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.10.0-darwin-arm64.tar.gz";
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, fetchFromGitHub, lib }:
|
{ stdenv, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "calamares-nixos-extensions";
|
pname = "calamares-nixos-extensions";
|
||||||
version = "0.3.16";
|
version = "0.3.18";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "NixOS";
|
owner = "NixOS";
|
||||||
repo = "calamares-nixos-extensions";
|
repo = "calamares-nixos-extensions";
|
||||||
rev = version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-ajQWmZVY60Q2cGJcLqMT2ypIi7bMMiyHMgdlp3g9874=";
|
hash = "sha256-j+9iZtw9QIKHLo5sr9nkCVoZS7QQCnDDyTGFXD+R+WU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -27,4 +27,4 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with maintainers; [ vlinkz ];
|
maintainers = with maintainers; [ vlinkz ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
@ -1,8 +1,20 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 15:53:16 -0400
|
||||||
|
Subject: [PATCH] Modifies the users module to only set passwords of user and
|
||||||
|
root
|
||||||
|
|
||||||
|
as the users will have already been created in the configuration.nix
|
||||||
|
file
|
||||||
|
---
|
||||||
|
src/modules/users/Config.cpp | 15 ---------------
|
||||||
|
1 file changed, 15 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/modules/users/Config.cpp b/src/modules/users/Config.cpp
|
diff --git a/src/modules/users/Config.cpp b/src/modules/users/Config.cpp
|
||||||
index eedfd274d..0f3e78848 100644
|
index cd56bc3e2..9b09b36cd 100644
|
||||||
--- a/src/modules/users/Config.cpp
|
--- a/src/modules/users/Config.cpp
|
||||||
+++ b/src/modules/users/Config.cpp
|
+++ b/src/modules/users/Config.cpp
|
||||||
@@ -972,26 +972,11 @@ Config::createJobs() const
|
@@ -1028,12 +1028,6 @@ Config::createJobs() const
|
||||||
|
|
||||||
Calamares::Job* j;
|
Calamares::Job* j;
|
||||||
|
|
||||||
@ -12,6 +24,13 @@ index eedfd274d..0f3e78848 100644
|
|||||||
- jobs.append( Calamares::job_ptr( j ) );
|
- jobs.append( Calamares::job_ptr( j ) );
|
||||||
- }
|
- }
|
||||||
-
|
-
|
||||||
|
if ( getActiveDirectoryUsed() )
|
||||||
|
{
|
||||||
|
j = new ActiveDirectoryJob( m_activeDirectoryAdminUsername,
|
||||||
|
@@ -1043,20 +1037,11 @@ Config::createJobs() const
|
||||||
|
jobs.append( Calamares::job_ptr( j ) );
|
||||||
|
}
|
||||||
|
|
||||||
- j = new SetupGroupsJob( this );
|
- j = new SetupGroupsJob( this );
|
||||||
- jobs.append( Calamares::job_ptr( j ) );
|
- jobs.append( Calamares::job_ptr( j ) );
|
||||||
-
|
-
|
@ -1,3 +1,18 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 15:57:55 -0400
|
||||||
|
Subject: [PATCH] Makes calamares search
|
||||||
|
/run/current-system/sw/share/calamares/ for extra configuration files as by
|
||||||
|
default it only searches /usr/share/calamares/ and
|
||||||
|
/nix/store/<hash>-calamares-<version>/share/calamares/ but
|
||||||
|
calamares-nixos-extensions is not in either of these locations
|
||||||
|
|
||||||
|
---
|
||||||
|
src/calamares/main.cpp | 1 +
|
||||||
|
src/libcalamares/utils/Dirs.cpp | 8 ++++++++
|
||||||
|
src/libcalamares/utils/Dirs.h | 3 +++
|
||||||
|
3 files changed, 12 insertions(+)
|
||||||
|
|
||||||
diff --git a/src/calamares/main.cpp b/src/calamares/main.cpp
|
diff --git a/src/calamares/main.cpp b/src/calamares/main.cpp
|
||||||
index e0491e5f9..faf272016 100644
|
index e0491e5f9..faf272016 100644
|
||||||
--- a/src/calamares/main.cpp
|
--- a/src/calamares/main.cpp
|
||||||
@ -11,7 +26,7 @@ index e0491e5f9..faf272016 100644
|
|||||||
if ( !is_debug )
|
if ( !is_debug )
|
||||||
{
|
{
|
||||||
diff --git a/src/libcalamares/utils/Dirs.cpp b/src/libcalamares/utils/Dirs.cpp
|
diff --git a/src/libcalamares/utils/Dirs.cpp b/src/libcalamares/utils/Dirs.cpp
|
||||||
index c42768a08..bac98645a 100644
|
index c42768a08..dfce7eb5d 100644
|
||||||
--- a/src/libcalamares/utils/Dirs.cpp
|
--- a/src/libcalamares/utils/Dirs.cpp
|
||||||
+++ b/src/libcalamares/utils/Dirs.cpp
|
+++ b/src/libcalamares/utils/Dirs.cpp
|
||||||
@@ -114,6 +114,14 @@ setXdgDirs()
|
@@ -114,6 +114,14 @@ setXdgDirs()
|
||||||
@ -23,7 +38,7 @@ index c42768a08..bac98645a 100644
|
|||||||
+{
|
+{
|
||||||
+ s_extraConfigDirs << "/run/current-system/sw/share/calamares/";
|
+ s_extraConfigDirs << "/run/current-system/sw/share/calamares/";
|
||||||
+ s_extraDataDirs << "/run/current-system/sw/share/calamares/";
|
+ s_extraDataDirs << "/run/current-system/sw/share/calamares/";
|
||||||
+ s_haveExtraDirs = !( s_extraConfigDirs.isEmpty() && s_extraDataDirs.isEmpty() );
|
+ s_haveExtraDirs = !( s_extraConfigDirs.isEmpty() && s_extraDataDirs.isEmpty() );
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
QStringList
|
QStringList
|
@ -1,8 +1,22 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 15:59:54 -0400
|
||||||
|
Subject: [PATCH] Uses pkexec within modules in order to run calamares without
|
||||||
|
root permissions as a whole.
|
||||||
|
|
||||||
|
Also fixes storage check in the welcome module
|
||||||
|
---
|
||||||
|
src/libcalamares/utils/Runner.cpp | 8 +++---
|
||||||
|
src/modules/mount/main.py | 8 +++---
|
||||||
|
.../welcome/checker/GeneralRequirements.cpp | 27 ++++++++++++++++++-
|
||||||
|
.../welcome/checker/GeneralRequirements.h | 1 +
|
||||||
|
4 files changed, 35 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/libcalamares/utils/Runner.cpp b/src/libcalamares/utils/Runner.cpp
|
diff --git a/src/libcalamares/utils/Runner.cpp b/src/libcalamares/utils/Runner.cpp
|
||||||
index 632f32028..fe9052449 100644
|
index f7872a7d0..a246ca110 100644
|
||||||
--- a/src/libcalamares/utils/Runner.cpp
|
--- a/src/libcalamares/utils/Runner.cpp
|
||||||
+++ b/src/libcalamares/utils/Runner.cpp
|
+++ b/src/libcalamares/utils/Runner.cpp
|
||||||
@@ -137,13 +137,13 @@ Calamares::Utils::Runner::run()
|
@@ -145,13 +145,13 @@ Calamares::Utils::Runner::run()
|
||||||
}
|
}
|
||||||
if ( m_location == RunLocation::RunInTarget )
|
if ( m_location == RunLocation::RunInTarget )
|
||||||
{
|
{
|
||||||
@ -21,20 +35,19 @@ index 632f32028..fe9052449 100644
|
|||||||
|
|
||||||
if ( m_output )
|
if ( m_output )
|
||||||
diff --git a/src/modules/mount/main.py b/src/modules/mount/main.py
|
diff --git a/src/modules/mount/main.py b/src/modules/mount/main.py
|
||||||
index 4202639f3..de2556b91 100644
|
index 4a16f8872..6d32916a5 100644
|
||||||
--- a/src/modules/mount/main.py
|
--- a/src/modules/mount/main.py
|
||||||
+++ b/src/modules/mount/main.py
|
+++ b/src/modules/mount/main.py
|
||||||
@@ -235,7 +235,8 @@ def mount_partition(root_mount_point, partition, partitions, mount_options, moun
|
@@ -244,7 +244,7 @@ def mount_partition(root_mount_point, partition, partitions, mount_options, moun
|
||||||
|
|
||||||
# Ensure that the created directory has the correct SELinux context on
|
# Ensure that the created directory has the correct SELinux context on
|
||||||
# SELinux-enabled systems.
|
# SELinux-enabled systems.
|
||||||
|
|
||||||
- os.makedirs(mount_point, exist_ok=True)
|
- os.makedirs(mount_point, exist_ok=True)
|
||||||
+ subprocess.check_call(["pkexec", "mkdir", "-p", mount_point])
|
+ subprocess.check_call(["pkexec", "mkdir", "-p", mount_point])
|
||||||
+
|
|
||||||
try:
|
try:
|
||||||
subprocess.call(['chcon', '--reference=' + raw_mount_point, mount_point])
|
subprocess.call(['chcon', '--reference=' + raw_mount_point, mount_point])
|
||||||
except FileNotFoundError as e:
|
@@ -288,13 +288,13 @@ def mount_partition(root_mount_point, partition, partitions, mount_options, moun
|
||||||
@@ -278,13 +279,13 @@ def mount_partition(root_mount_point, partition, partitions, mount_options, moun
|
|
||||||
for s in btrfs_subvolumes:
|
for s in btrfs_subvolumes:
|
||||||
if not s["subvolume"]:
|
if not s["subvolume"]:
|
||||||
continue
|
continue
|
@ -1,3 +1,16 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 16:00:43 -0400
|
||||||
|
Subject: [PATCH] Adds unfree qml to packagechooserq
|
||||||
|
|
||||||
|
---
|
||||||
|
.../packagechooserq/packagechooserq.qrc | 1 +
|
||||||
|
.../packagechooserq@unfree.qml | 75 +++++++++++++++++++
|
||||||
|
src/modules/packagechooserq/unfree.conf | 11 +++
|
||||||
|
3 files changed, 87 insertions(+)
|
||||||
|
create mode 100644 src/modules/packagechooserq/packagechooserq@unfree.qml
|
||||||
|
create mode 100644 src/modules/packagechooserq/unfree.conf
|
||||||
|
|
||||||
diff --git a/src/modules/packagechooserq/packagechooserq.qrc b/src/modules/packagechooserq/packagechooserq.qrc
|
diff --git a/src/modules/packagechooserq/packagechooserq.qrc b/src/modules/packagechooserq/packagechooserq.qrc
|
||||||
index 1b892dce1..ee80a934b 100644
|
index 1b892dce1..ee80a934b 100644
|
||||||
--- a/src/modules/packagechooserq/packagechooserq.qrc
|
--- a/src/modules/packagechooserq/packagechooserq.qrc
|
||||||
@ -11,7 +24,7 @@ index 1b892dce1..ee80a934b 100644
|
|||||||
</RCC>
|
</RCC>
|
||||||
diff --git a/src/modules/packagechooserq/packagechooserq@unfree.qml b/src/modules/packagechooserq/packagechooserq@unfree.qml
|
diff --git a/src/modules/packagechooserq/packagechooserq@unfree.qml b/src/modules/packagechooserq/packagechooserq@unfree.qml
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 000000000..cb87d864a
|
index 000000000..5e36d77d9
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/src/modules/packagechooserq/packagechooserq@unfree.qml
|
+++ b/src/modules/packagechooserq/packagechooserq@unfree.qml
|
||||||
@@ -0,0 +1,75 @@
|
@@ -0,0 +1,75 @@
|
||||||
@ -32,7 +45,7 @@ index 000000000..cb87d864a
|
|||||||
+import QtQuick.Layouts 1.3
|
+import QtQuick.Layouts 1.3
|
||||||
+
|
+
|
||||||
+Item {
|
+Item {
|
||||||
+
|
+
|
||||||
+ SystemPalette {
|
+ SystemPalette {
|
||||||
+ id: palette
|
+ id: palette
|
||||||
+ colorGroup: SystemPalette.Active
|
+ colorGroup: SystemPalette.Active
|
@ -1,12 +1,25 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 16:01:53 -0400
|
||||||
|
Subject: [PATCH] Modifies finished module to add some NixOS resources.
|
||||||
|
|
||||||
|
Modifies packagechooser module to change the UI.
|
||||||
|
---
|
||||||
|
src/modules/finished/FinishedPage.cpp | 12 +++++---
|
||||||
|
.../packagechooser/PackageChooserPage.cpp | 1 +
|
||||||
|
src/modules/packagechooser/page_package.ui | 28 +++++++++----------
|
||||||
|
3 files changed, 23 insertions(+), 18 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/modules/finished/FinishedPage.cpp b/src/modules/finished/FinishedPage.cpp
|
diff --git a/src/modules/finished/FinishedPage.cpp b/src/modules/finished/FinishedPage.cpp
|
||||||
index 23cb194c4..8714937f6 100644
|
index 51be52678..307607232 100644
|
||||||
--- a/src/modules/finished/FinishedPage.cpp
|
--- a/src/modules/finished/FinishedPage.cpp
|
||||||
+++ b/src/modules/finished/FinishedPage.cpp
|
+++ b/src/modules/finished/FinishedPage.cpp
|
||||||
@@ -74,7 +74,10 @@ FinishedPage::retranslate()
|
@@ -74,8 +74,10 @@ FinishedPage::retranslate()
|
||||||
{
|
{
|
||||||
ui->mainText->setText( tr( "<h1>All done.</h1><br/>"
|
ui->mainText->setText( tr( "<h1>All done.</h1><br/>"
|
||||||
"%1 has been set up on your computer.<br/>"
|
"%1 has been set up on your computer.<br/>"
|
||||||
- "You may now start using your new system.", "@info" )
|
- "You may now start using your new system.",
|
||||||
|
- "@info" )
|
||||||
+ "You may now start using your new system.<br/>"
|
+ "You may now start using your new system.<br/>"
|
||||||
+ "You can change every setting later except the bootloader.<br/>"
|
+ "You can change every setting later except the bootloader.<br/>"
|
||||||
+ "Check the <a href=\"https://nixos.org/manual/nixos/stable/\">manual</a> for instructions on how to install software, upgrade the system or enable services.<br/>"
|
+ "Check the <a href=\"https://nixos.org/manual/nixos/stable/\">manual</a> for instructions on how to install software, upgrade the system or enable services.<br/>"
|
||||||
@ -14,11 +27,12 @@ index 23cb194c4..8714937f6 100644
|
|||||||
.arg( branding->versionedName() ) );
|
.arg( branding->versionedName() ) );
|
||||||
ui->restartCheckBox->setToolTip( tr( "<html><head/><body>"
|
ui->restartCheckBox->setToolTip( tr( "<html><head/><body>"
|
||||||
"<p>When this box is checked, your system will "
|
"<p>When this box is checked, your system will "
|
||||||
@@ -87,7 +90,10 @@ FinishedPage::retranslate()
|
@@ -89,8 +91,10 @@ FinishedPage::retranslate()
|
||||||
ui->mainText->setText( tr( "<h1>All done.</h1><br/>"
|
ui->mainText->setText( tr( "<h1>All done.</h1><br/>"
|
||||||
"%1 has been installed on your computer.<br/>"
|
"%1 has been installed on your computer.<br/>"
|
||||||
"You may now restart into your new system, or continue "
|
"You may now restart into your new system, or continue "
|
||||||
- "using the %2 Live environment.", "@info" )
|
- "using the %2 Live environment.",
|
||||||
|
- "@info" )
|
||||||
+ "using the %2 Live environment.<br/>"
|
+ "using the %2 Live environment.<br/>"
|
||||||
+ "You can change every setting later except the bootloader.<br/>"
|
+ "You can change every setting later except the bootloader.<br/>"
|
||||||
+ "Check the <a href=\"https://nixos.org/manual/nixos/stable/\">manual</a> for instructions on how to install software, upgrade the system or enable services.<br/>"
|
+ "Check the <a href=\"https://nixos.org/manual/nixos/stable/\">manual</a> for instructions on how to install software, upgrade the system or enable services.<br/>"
|
@ -1,8 +1,18 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 16:02:40 -0400
|
||||||
|
Subject: [PATCH] Remove options for unsupported partition types
|
||||||
|
|
||||||
|
---
|
||||||
|
src/modules/partition/gui/CreatePartitionDialog.cpp | 3 ++-
|
||||||
|
src/modules/partition/gui/EditExistingPartitionDialog.cpp | 3 ++-
|
||||||
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/modules/partition/gui/CreatePartitionDialog.cpp b/src/modules/partition/gui/CreatePartitionDialog.cpp
|
diff --git a/src/modules/partition/gui/CreatePartitionDialog.cpp b/src/modules/partition/gui/CreatePartitionDialog.cpp
|
||||||
index c5b17c69e..353b6f964 100644
|
index d18676138..60bb8fdaf 100644
|
||||||
--- a/src/modules/partition/gui/CreatePartitionDialog.cpp
|
--- a/src/modules/partition/gui/CreatePartitionDialog.cpp
|
||||||
+++ b/src/modules/partition/gui/CreatePartitionDialog.cpp
|
+++ b/src/modules/partition/gui/CreatePartitionDialog.cpp
|
||||||
@@ -107,7 +107,8 @@ CreatePartitionDialog::CreatePartitionDialog( Device* device,
|
@@ -108,7 +108,8 @@ CreatePartitionDialog::CreatePartitionDialog( Device* device,
|
||||||
{
|
{
|
||||||
// We need to ensure zfs is added to the list if the zfs module is enabled
|
// We need to ensure zfs is added to the list if the zfs module is enabled
|
||||||
if ( ( fs->type() == FileSystem::Type::Zfs && Calamares::Settings::instance()->isModuleEnabled( "zfs" ) )
|
if ( ( fs->type() == FileSystem::Type::Zfs && Calamares::Settings::instance()->isModuleEnabled( "zfs" ) )
|
||||||
@ -13,10 +23,10 @@ index c5b17c69e..353b6f964 100644
|
|||||||
fsNames << userVisibleFS( fs ); // This is put into the combobox
|
fsNames << userVisibleFS( fs ); // This is put into the combobox
|
||||||
if ( fs->type() == defaultFSType )
|
if ( fs->type() == defaultFSType )
|
||||||
diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.cpp b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.cpp b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
||||||
index 0bc35cabe..3cf8a7fa2 100644
|
index 7a3f4951a..4c3bfc4b0 100644
|
||||||
--- a/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
--- a/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
||||||
+++ b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
+++ b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
|
||||||
@@ -95,7 +95,8 @@ EditExistingPartitionDialog::EditExistingPartitionDialog( Device* device,
|
@@ -113,7 +113,8 @@ EditExistingPartitionDialog::EditExistingPartitionDialog( Device* device,
|
||||||
{
|
{
|
||||||
// We need to ensure zfs is added to the list if the zfs module is enabled
|
// We need to ensure zfs is added to the list if the zfs module is enabled
|
||||||
if ( ( fs->type() == FileSystem::Type::Zfs && Calamares::Settings::instance()->isModuleEnabled( "zfs" ) )
|
if ( ( fs->type() == FileSystem::Type::Zfs && Calamares::Settings::instance()->isModuleEnabled( "zfs" ) )
|
@ -1,5 +1,16 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 16:03:14 -0400
|
||||||
|
Subject: [PATCH] Fix setting the kayboard layout on GNOME wayland.
|
||||||
|
|
||||||
|
By default the module uses the setxkbmap, which will not change the
|
||||||
|
keyboard
|
||||||
|
---
|
||||||
|
src/modules/keyboard/Config.cpp | 7 ++++++-
|
||||||
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/src/modules/keyboard/Config.cpp b/src/modules/keyboard/Config.cpp
|
diff --git a/src/modules/keyboard/Config.cpp b/src/modules/keyboard/Config.cpp
|
||||||
index d8b1e8e86..b2e1b7b5f 100644
|
index ad6bee6f7..4d43abe53 100644
|
||||||
--- a/src/modules/keyboard/Config.cpp
|
--- a/src/modules/keyboard/Config.cpp
|
||||||
+++ b/src/modules/keyboard/Config.cpp
|
+++ b/src/modules/keyboard/Config.cpp
|
||||||
@@ -307,7 +307,10 @@ Config::xkbApply()
|
@@ -307,7 +307,10 @@ Config::xkbApply()
|
@ -1,5 +1,14 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Victor Fuentes <vmfuentes64@gmail.com>
|
||||||
|
Date: Thu, 1 Aug 2024 16:03:53 -0400
|
||||||
|
Subject: [PATCH] Change default location where calamares searches for locales
|
||||||
|
|
||||||
|
---
|
||||||
|
src/modules/locale/Config.cpp | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/src/modules/locale/Config.cpp b/src/modules/locale/Config.cpp
|
diff --git a/src/modules/locale/Config.cpp b/src/modules/locale/Config.cpp
|
||||||
index 54ff5eb64..1a2b98c9c 100644
|
index 8fa17a768..79b5419b6 100644
|
||||||
--- a/src/modules/locale/Config.cpp
|
--- a/src/modules/locale/Config.cpp
|
||||||
+++ b/src/modules/locale/Config.cpp
|
+++ b/src/modules/locale/Config.cpp
|
||||||
@@ -48,7 +48,7 @@ loadLocales( const QString& localeGenPath )
|
@@ -48,7 +48,7 @@ loadLocales( const QString& localeGenPath )
|
@ -7,37 +7,29 @@
|
|||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "calamares";
|
pname = "calamares";
|
||||||
version = "3.3.3";
|
version = "3.3.8";
|
||||||
|
|
||||||
# release including submodule
|
# release including submodule
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/calamares/calamares/releases/download/v${version}/${pname}-${version}.tar.gz";
|
url = "https://github.com/calamares/calamares/releases/download/v${version}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "sha256-XCp2Qc2y9eF2Z0BqfTtzUkf6860KzHl1lZE7kiHZbQM=";
|
sha256 = "sha256-CUNbBOflzuFhdyIwaNinQCw8a4EmrxP/Unr3d0LEM2M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# On major changes, or when otherwise required, you *must* :
|
||||||
|
# 1. reformat the patches,
|
||||||
|
# 2. `git am path/to/00*.patch` them into a calamares worktree,
|
||||||
|
# 3. rebase to the more recent calamares version,
|
||||||
|
# 4. and export the patches again via
|
||||||
|
# `git -c format.signoff=false format-patch v${version} --no-numbered --zero-commit --no-signature`.
|
||||||
patches = lib.optionals nixos-extensions [
|
patches = lib.optionals nixos-extensions [
|
||||||
# Modifies the users module to only set passwords of user and root
|
./0001-Modifies-the-users-module-to-only-set-passwords-of-u.patch
|
||||||
# as the users will have already been created in the configuration.nix file
|
./0002-Makes-calamares-search-run-current-system-sw-share-c.patch
|
||||||
./userjob.patch
|
./0003-Uses-pkexec-within-modules-in-order-to-run-calamares.patch
|
||||||
# Makes calamares search /run/current-system/sw/share/calamares/ for extra configuration files
|
./0004-Adds-unfree-qml-to-packagechooserq.patch
|
||||||
# as by default it only searches /usr/share/calamares/ and /nix/store/<hash>-calamares-<version>/share/calamares/
|
./0005-Modifies-finished-module-to-add-some-NixOS-resources.patch
|
||||||
# but calamares-nixos-extensions is not in either of these locations
|
./0006-Remove-options-for-unsupported-partition-types.patch
|
||||||
./nixos-extensions-paths.patch
|
./0007-Fix-setting-the-kayboard-layout-on-GNOME-wayland.patch
|
||||||
# Uses pkexec within modules in order to run calamares without root permissions as a whole
|
./0008-Change-default-location-where-calamares-searches-for.patch
|
||||||
# Also fixes storage check in the welcome module
|
|
||||||
./nonroot.patch
|
|
||||||
# Adds unfree qml to packagechooserq
|
|
||||||
./unfreeq.patch
|
|
||||||
# Modifies finished module to add some NixOS resources
|
|
||||||
# Modifies packagechooser module to change the UI
|
|
||||||
./uimod.patch
|
|
||||||
# Remove options for unsupported partition types
|
|
||||||
./partitions.patch
|
|
||||||
# Fix setting the kayboard layout on GNOME wayland
|
|
||||||
# By default the module uses the setxkbmap, which will not change the keyboard
|
|
||||||
./waylandkbd.patch
|
|
||||||
# Change default location where calamares searches for locales
|
|
||||||
./supportedlocale.patch
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||||
|
@ -18,16 +18,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "fend";
|
pname = "fend";
|
||||||
version = "1.5.0";
|
version = "1.5.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "printfn";
|
owner = "printfn";
|
||||||
repo = "fend";
|
repo = "fend";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-owWBbeZtkjLiMYnXB5d4PfFX4i5BWo0OOnWd3C02VLE=";
|
hash = "sha256-lfn9RKN2TiHEroDaKJTeQ7wLU2tjoUTyD5Ar5QTNOlY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-pxy6TPDvAnbXJ6QMxWUCwVeWVzKmvwYxysJWhZpeVvI=";
|
cargoHash = "sha256-zmqkGmN0fEYW+6U6cUQK27/OSV4JZW1EQiRswvBnA3M=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pandoc installShellFiles pkg-config copyDesktopItems ];
|
nativeBuildInputs = [ pandoc installShellFiles pkg-config copyDesktopItems ];
|
||||||
buildInputs = [ pkg-config openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
buildInputs = [ pkg-config openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
||||||
|
@ -5,21 +5,21 @@
|
|||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "dnstwist";
|
pname = "dnstwist";
|
||||||
version = "20240116";
|
version = "20240812";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "elceef";
|
owner = "elceef";
|
||||||
repo = "dnstwist";
|
repo = "dnstwist";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-areFRDi728SedArhUy/rbPzhoFabNoT/WdyyN+6OQK0=";
|
hash = "sha256-J6MfPKj7iACsiiSUU/2gxQdwtmqw9NKnjDoSdhxKoAw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
dnspython
|
dnspython
|
||||||
geoip
|
geoip
|
||||||
ppdeep
|
ppdeep
|
||||||
@ -37,10 +37,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Domain name permutation engine for detecting homograph phishing attacks";
|
description = "Domain name permutation engine for detecting homograph phishing attacks";
|
||||||
mainProgram = "dnstwist";
|
|
||||||
homepage = "https://github.com/elceef/dnstwist";
|
homepage = "https://github.com/elceef/dnstwist";
|
||||||
changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}";
|
changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}";
|
||||||
license = with licenses; [ gpl3Only ];
|
license = with licenses; [ gpl3Only ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
|
mainProgram = "dnstwist";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,16 +7,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gopass-summon-provider";
|
pname = "gopass-summon-provider";
|
||||||
version = "1.15.13";
|
version = "1.15.14";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gopasspw";
|
owner = "gopasspw";
|
||||||
repo = "gopass-summon-provider";
|
repo = "gopass-summon-provider";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-cYr9yk5AyTxEo+bO6TgBBZRDWsTR+lvGcCr4kF1aMik=";
|
hash = "sha256-L/wX3qUrx6YfA6flCJ32WyEiBV0dSwAGdWQCU++/Iz8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-s1Zouw1619DbGjnZY26N6En91lzDaeDRZmul/te2z7M=";
|
vendorHash = "sha256-ZNHAjFzMMxodxb/AGVq8q+sP36qR5+8eaKdmmjIaMjs=";
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
@ -5,16 +5,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "tlsx";
|
pname = "tlsx";
|
||||||
version = "1.1.6";
|
version = "1.1.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "projectdiscovery";
|
owner = "projectdiscovery";
|
||||||
repo = "tlsx";
|
repo = "tlsx";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-FF5/STjf8joyJM6qPds1wFeRfncSamy/wWfNRZcG5kc=";
|
hash = "sha256-vCB1sUT5auZmIg3lHFdV905wDfay5R8v+5lEKIuVzEQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-sJravmpvwOSZiVNWFUTLlTA4xk6drItDj4JzR8JNrOo=";
|
vendorHash = "sha256-Tgvs5BUuRTGSU05O+8SSvHvReACqIXqt9MEJWB7O8p4=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
|
@ -1,48 +1,50 @@
|
|||||||
{ lib
|
{
|
||||||
, fetchFromGitHub
|
lib,
|
||||||
, python3
|
fetchFromGitHub,
|
||||||
|
python3,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "trustymail";
|
pname = "trustymail";
|
||||||
version = "0.8.3";
|
version = "1.0.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cisagov";
|
owner = "cisagov";
|
||||||
repo = pname;
|
repo = "trustymail";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-aFXz78Gviki0yIcnn2EgR3mHmt0wMoY5u6RoT6zQc1Y=";
|
hash = "sha256-Zkw+NfeVtIArrBxR1qR9bAQe5yd7mAtNiT0x5Mqr3Ic=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pytest.ini \
|
substituteInPlace pytest.ini \
|
||||||
--replace " --cov" ""
|
--replace-fail " --cov" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [ setuptools ];
|
||||||
dnspython
|
|
||||||
docopt
|
|
||||||
publicsuffixlist
|
|
||||||
pydns
|
|
||||||
pyspf
|
|
||||||
requests
|
|
||||||
] ++ publicsuffixlist.optional-dependencies.update;
|
|
||||||
|
|
||||||
nativeCheckInputs = with python3.pkgs; [
|
dependencies =
|
||||||
pytestCheckHook
|
with python3.pkgs;
|
||||||
];
|
[
|
||||||
|
dnspython
|
||||||
|
docopt
|
||||||
|
publicsuffixlist
|
||||||
|
pydns
|
||||||
|
pyspf
|
||||||
|
requests
|
||||||
|
]
|
||||||
|
++ publicsuffixlist.optional-dependencies.update;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
|
||||||
"trustymail"
|
|
||||||
];
|
pythonImportsCheck = [ "trustymail" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Tool to scan domains and return data based on trustworthy email best practices";
|
description = "Tool to scan domains and return data based on trustworthy email best practices";
|
||||||
mainProgram = "trustymail";
|
|
||||||
homepage = "https://github.com/cisagov/trustymail";
|
homepage = "https://github.com/cisagov/trustymail";
|
||||||
changelog = "https://github.com/cisagov/trustymail/releases/tag/v${version}";
|
changelog = "https://github.com/cisagov/trustymail/releases/tag/v${version}";
|
||||||
license = with licenses; [ cc0 ];
|
license = with licenses; [ cc0 ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
|
mainProgram = "trustymail";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -680,6 +680,7 @@ mapAliases ({
|
|||||||
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
|
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
|
||||||
ipfs-migrator = kubo-migrator; # Added 2022-09-27
|
ipfs-migrator = kubo-migrator; # Added 2022-09-27
|
||||||
iproute = iproute2; # moved from top-level 2021-03-14
|
iproute = iproute2; # moved from top-level 2021-03-14
|
||||||
|
irrlichtmt = throw "irrlichtmt has been removed because it was moved into the Minetest repo"; # Added 2024-08-12
|
||||||
iso-flags-png-320x420 = lib.warn "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17
|
iso-flags-png-320x420 = lib.warn "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17
|
||||||
|
|
||||||
### J ###
|
### J ###
|
||||||
@ -947,6 +948,7 @@ mapAliases ({
|
|||||||
miopen-hip = throw "'miopen-hip' has been replaced with 'rocmPackages.miopen-hip'"; # Added 2023-10-08
|
miopen-hip = throw "'miopen-hip' has been replaced with 'rocmPackages.miopen-hip'"; # Added 2023-10-08
|
||||||
miopen-opencl = throw "'miopen-opencl' has been replaced with 'rocmPackages.miopen-opencl'"; # Added 2023-10-08
|
miopen-opencl = throw "'miopen-opencl' has been replaced with 'rocmPackages.miopen-opencl'"; # Added 2023-10-08
|
||||||
mime-types = mailcap; # Added 2022-01-21
|
mime-types = mailcap; # Added 2022-01-21
|
||||||
|
minetest-touch = minetestclient; # Added 2024-08-12
|
||||||
minetestclient_5 = minetestclient; # Added 2023-12-11
|
minetestclient_5 = minetestclient; # Added 2023-12-11
|
||||||
minetestserver_5 = minetestserver; # Added 2023-12-11
|
minetestserver_5 = minetestserver; # Added 2023-12-11
|
||||||
minizip2 = pkgs.minizip-ng; # Added 2022-12-28
|
minizip2 = pkgs.minizip-ng; # Added 2022-12-28
|
||||||
|
@ -20970,10 +20970,6 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL IOKit;
|
inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL IOKit;
|
||||||
};
|
};
|
||||||
|
|
||||||
irrlichtmt = callPackage ../development/libraries/irrlichtmt {
|
|
||||||
inherit (darwin.apple_sdk.frameworks) Cocoa Kernel;
|
|
||||||
};
|
|
||||||
|
|
||||||
isocodes = callPackage ../development/libraries/iso-codes { };
|
isocodes = callPackage ../development/libraries/iso-codes { };
|
||||||
|
|
||||||
iso-flags = callPackage ../data/icons/iso-flags { };
|
iso-flags = callPackage ../data/icons/iso-flags { };
|
||||||
@ -36061,10 +36057,9 @@ with pkgs;
|
|||||||
moon-buggy = callPackage ../games/moon-buggy { };
|
moon-buggy = callPackage ../games/moon-buggy { };
|
||||||
|
|
||||||
minetest = callPackage ../games/minetest {
|
minetest = callPackage ../games/minetest {
|
||||||
inherit (darwin.apple_sdk.frameworks) OpenGL OpenAL Carbon Cocoa;
|
inherit (darwin.apple_sdk.frameworks) OpenGL OpenAL Carbon Cocoa Kernel;
|
||||||
};
|
};
|
||||||
minetestclient = minetest.override { buildServer = false; };
|
minetestclient = minetest.override { buildServer = false; };
|
||||||
minetest-touch = minetest.override { buildServer = false; withTouchSupport = true; };
|
|
||||||
minetestserver = minetest.override { buildClient = false; };
|
minetestserver = minetest.override { buildClient = false; };
|
||||||
|
|
||||||
mnemosyne = callPackage ../games/mnemosyne {
|
mnemosyne = callPackage ../games/mnemosyne {
|
||||||
|
Loading…
Reference in New Issue
Block a user