Merge master into staging-next

This commit is contained in:
github-actions[bot] 2023-06-12 00:02:19 +00:00 committed by GitHub
commit 112762351d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
92 changed files with 4845 additions and 3174 deletions

View file

@ -5761,6 +5761,12 @@
githubId = 10353047;
name = "Tobias Happ";
};
getchoo = {
email = "getchoo@tuta.io";
github = "getchoo";
githubId = 48872998;
name = "Seth";
};
gfrascadorio = {
email = "gfrascadorio@tutanota.com";
github = "gfrascadorio";
@ -16531,6 +16537,15 @@
fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";
}];
};
undefined-moe = {
name = "undefined";
email = "i@undefined.moe";
github = "undefined-moe";
githubId = 29992205;
keys = [{
fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52";
}];
};
unhammer = {
email = "unhammer@fsfe.org";
github = "unhammer";

View file

@ -484,6 +484,9 @@ let
optionalString cfg.mysqlAuth ''
account sufficient ${pkgs.pam_mysql}/lib/security/pam_mysql.so config_file=/etc/security/pam_mysql.conf
'' +
optionalString (config.services.kanidm.enablePam) ''
account sufficient ${pkgs.kanidm}/lib/pam_kanidm.so ignore_unknown_user
'' +
optionalString (config.services.sssd.enable && cfg.sssdStrictAccess==false) ''
account sufficient ${pkgs.sssd}/lib/security/pam_sss.so
'' +
@ -617,6 +620,9 @@ let
optionalString use_ldap ''
auth sufficient ${pam_ldap}/lib/security/pam_ldap.so use_first_pass
'' +
optionalString config.services.kanidm.enablePam ''
auth sufficient ${pkgs.kanidm}/lib/pam_kanidm.so ignore_unknown_user use_first_pass
'' +
optionalString config.services.sssd.enable ''
auth sufficient ${pkgs.sssd}/lib/security/pam_sss.so use_first_pass
'' +
@ -653,6 +659,9 @@ let
optionalString cfg.mysqlAuth ''
password sufficient ${pkgs.pam_mysql}/lib/security/pam_mysql.so config_file=/etc/security/pam_mysql.conf
'' +
optionalString config.services.kanidm.enablePam ''
password sufficient ${pkgs.kanidm}/lib/pam_kanidm.so
'' +
optionalString config.services.sssd.enable ''
password sufficient ${pkgs.sssd}/lib/security/pam_sss.so
'' +
@ -714,6 +723,9 @@ let
optionalString cfg.mysqlAuth ''
session optional ${pkgs.pam_mysql}/lib/security/pam_mysql.so config_file=/etc/security/pam_mysql.conf
'' +
optionalString config.services.kanidm.enablePam ''
session optional ${pkgs.kanidm}/lib/pam_kanidm.so
'' +
optionalString config.services.sssd.enable ''
session optional ${pkgs.sssd}/lib/security/pam_sss.so
'' +
@ -1298,6 +1310,7 @@ in
# Include the PAM modules in the system path mostly for the manpages.
[ pkgs.pam ]
++ optional config.users.ldap.enable pam_ldap
++ optional config.services.kanidm.enablePam pkgs.kanidm
++ optional config.services.sssd.enable pkgs.sssd
++ optionals config.security.pam.krb5.enable [pam_krb5 pam_ccreds]
++ optionals config.security.pam.enableOTPW [ pkgs.otpw ]
@ -1364,6 +1377,9 @@ in
optionalString use_ldap ''
mr ${pam_ldap}/lib/security/pam_ldap.so,
'' +
optionalString config.services.kanidm.enablePam ''
mr ${pkgs.kanidm}/lib/pam_kanidm.so,
'' +
optionalString config.services.sssd.enable ''
mr ${pkgs.sssd}/lib/security/pam_sss.so,
'' +

View file

@ -320,6 +320,7 @@ in
ProtectHome = false;
RestrictAddressFamilies = [ "AF_UNIX" ];
TemporaryFileSystem = "/:ro";
Restart = "on-failure";
};
environment.RUST_LOG = "info";
};

View file

@ -46,7 +46,7 @@ import ./make-test-python.nix ({ pkgs, lib, ...} :
type = "custom";
status = {
source = "script";
cmd = "/bin/sh -c 'echo charger status F'";
cmd = "/bin/sh -c 'echo charger status A'";
};
enabled = {
source = "script";

View file

@ -2,6 +2,10 @@ import ./make-test-python.nix ({ pkgs, ... }:
let
certs = import ./common/acme/server/snakeoil-certs.nix;
serverDomain = certs.domain;
testCredentials = {
password = "Password1_cZPEwpCWvrReripJmAZdmVIZd8HHoHcl";
};
in
{
name = "kanidm";
@ -73,17 +77,55 @@ import ./make-test-python.nix ({ pkgs, ... }:
with subtest("Test CLI login"):
client.succeed("kanidm login -D anonymous")
client.succeed("kanidm self whoami | grep anonymous@${serverDomain}")
client.succeed("kanidm logout")
with subtest("Recover idm_admin account"):
# Must stop the server for account recovery or else kanidmd fails with
# "unable to lock kanidm exclusive lock at /var/lib/kanidm/kanidm.db.klock".
server.succeed("systemctl stop kanidm")
server.succeed("su - kanidm -c 'kanidmd recover-account -c ${serverConfigFile} idm_admin 2>&1 | rg -o \'[A-Za-z0-9]{48}\' '")
idm_admin_password = server.succeed("su - kanidm -c 'kanidmd recover-account -c ${serverConfigFile} idm_admin 2>&1 | rg -o \'[A-Za-z0-9]{48}\' '").strip().removeprefix("'").removesuffix("'")
server.succeed("systemctl start kanidm")
with subtest("Test unixd connection"):
client.wait_for_unit("kanidm-unixd.service")
# TODO: client.wait_for_file("/run/kanidm-unixd/sock")
client.wait_until_succeeds("kanidm-unix status | grep working!")
with subtest("Test user creation"):
client.wait_for_unit("getty@tty1.service")
client.wait_until_succeeds("pgrep -f 'agetty.*tty1'")
client.wait_until_tty_matches("1", "login: ")
client.send_chars("root\n")
client.send_chars("kanidm login -D idm_admin\n")
client.wait_until_tty_matches("1", "Enter password: ")
client.send_chars(f"{idm_admin_password}\n")
client.wait_until_tty_matches("1", "Login Success for idm_admin")
client.succeed("kanidm person create testuser TestUser")
client.succeed("kanidm person posix set --shell \"$SHELL\" testuser")
client.send_chars("kanidm person posix set-password testuser\n")
client.wait_until_tty_matches("1", "Enter new")
client.send_chars("${testCredentials.password}\n")
client.wait_until_tty_matches("1", "Retype")
client.send_chars("${testCredentials.password}\n")
output = client.succeed("getent passwd testuser")
assert "TestUser" in output
client.succeed("kanidm group create shell")
client.succeed("kanidm group posix set shell")
client.succeed("kanidm group add-members shell testuser")
with subtest("Test user login"):
client.send_key("alt-f2")
client.wait_until_succeeds("[ $(fgconsole) = 2 ]")
client.wait_for_unit("getty@tty2.service")
client.wait_until_succeeds("pgrep -f 'agetty.*tty2'")
client.wait_until_tty_matches("2", "login: ")
client.send_chars("testuser\n")
client.wait_until_tty_matches("2", "login: testuser")
client.wait_until_succeeds("pgrep login")
client.wait_until_tty_matches("2", "Password: ")
client.send_chars("${testCredentials.password}\n")
client.wait_until_succeeds("systemctl is-active user@$(id -u testuser).service")
client.send_chars("touch done\n")
client.wait_for_file("/home/testuser@${serverDomain}/done")
'';
})

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "besu";
version = "23.4.0";
version = "23.4.1";
src = fetchurl {
url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-ghaVsyVcn2RvTVJ+N0IZyWQW9JgjFSDy7sK+vtxT9aA=";
sha256 = "sha256-SdOnoGnK4wdJcJPYNPhzzngEpG3VkgfV6DIUWVMtMY4=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "ergo";
version = "5.0.10";
version = "5.0.11";
src = fetchurl {
url = "https://github.com/ergoplatform/ergo/releases/download/v${version}/ergo-${version}.jar";
sha256 = "sha256-T1+xQtXbLyfiV1IAeIiqzIFt1UZuctIkyNGzRc8E+zM=";
sha256 = "sha256-diaNhqDtfFtDFIqwfv+wmeMVHeN+t4Q/KDRhVwXw14g=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -676,10 +676,10 @@
elpaBuild {
pname = "cape";
ename = "cape";
version = "0.15.0.20230529.95422";
version = "0.15.0.20230606.90445";
src = fetchurl {
url = "https://elpa.gnu.org/devel/cape-0.15.0.20230529.95422.tar";
sha256 = "1ayg3lnrpz0ixyyh492xv7q28sv9jdxmw1vwnfwan5xyklh6l4zq";
url = "https://elpa.gnu.org/devel/cape-0.15.0.20230606.90445.tar";
sha256 = "0r63wp2h7qf7na1jcj1brgw86bvs3fs5xb2a3r24832wd0j5shic";
};
packageRequires = [ compat emacs ];
meta = {
@ -969,10 +969,10 @@
elpaBuild {
pname = "consult";
ename = "consult";
version = "0.34.0.20230529.135640";
version = "0.34.0.20230609.165451";
src = fetchurl {
url = "https://elpa.gnu.org/devel/consult-0.34.0.20230529.135640.tar";
sha256 = "0qdv1hfw9cj7k5ba8xiq395sbama8sv3jp2hdhw0bkzqcajirkvk";
url = "https://elpa.gnu.org/devel/consult-0.34.0.20230609.165451.tar";
sha256 = "0dhh82ywl144dx8d7r3qc88h17jp63is4qljmvcvjaxv00dhh866";
};
packageRequires = [ compat emacs ];
meta = {
@ -1169,17 +1169,14 @@
license = lib.licenses.free;
};
}) {};
cursory = callPackage ({ elpaBuild
, emacs
, fetchurl
, lib }:
cursory = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "cursory";
ename = "cursory";
version = "0.3.0.0.20230101.152922";
version = "1.0.0.0.20230609.51943";
src = fetchurl {
url = "https://elpa.gnu.org/devel/cursory-0.3.0.0.20230101.152922.tar";
sha256 = "1vnp9bh6g2jarzlq37lln05rqr2x3i6pv64s1g5fq7r0cw238p90";
url = "https://elpa.gnu.org/devel/cursory-1.0.0.0.20230609.51943.tar";
sha256 = "0c0hqrg2xbc3k5f2hvsg9amvv05flrjlc2xdx1ychh7nabz6x0nl";
};
packageRequires = [ emacs ];
meta = {
@ -1286,10 +1283,10 @@
elpaBuild {
pname = "denote";
ename = "denote";
version = "1.2.0.0.20230601.182251";
version = "1.2.0.0.20230605.73117";
src = fetchurl {
url = "https://elpa.gnu.org/devel/denote-1.2.0.0.20230601.182251.tar";
sha256 = "0a99yj9llxhafr097in3f8qpfafm4qd647wjz13gbcr92hc18cdp";
url = "https://elpa.gnu.org/devel/denote-1.2.0.0.20230605.73117.tar";
sha256 = "1rj7gaqxliyah72q485hx1gm474xs391zi34hdpdz3l87bd57n6a";
};
packageRequires = [ emacs ];
meta = {
@ -1674,10 +1671,10 @@
elpaBuild {
pname = "ef-themes";
ename = "ef-themes";
version = "1.0.2.0.20230604.41512";
version = "1.1.1.0.20230608.174002";
src = fetchurl {
url = "https://elpa.gnu.org/devel/ef-themes-1.0.2.0.20230604.41512.tar";
sha256 = "0kmdfii2rhq35z77xx9npss6wn8rzrmrpy73srcbgd9lnqf2flbc";
url = "https://elpa.gnu.org/devel/ef-themes-1.1.1.0.20230608.174002.tar";
sha256 = "1lgn60jbansq45y5g8c3vb10rsd82d2vzcn3diqpwj2f5vl88zl4";
};
packageRequires = [ emacs ];
meta = {
@ -1699,10 +1696,10 @@
elpaBuild {
pname = "eglot";
ename = "eglot";
version = "1.15.0.20230525.132945";
version = "1.15.0.20230609.11219";
src = fetchurl {
url = "https://elpa.gnu.org/devel/eglot-1.15.0.20230525.132945.tar";
sha256 = "1w9r3mn4jfvi24knb29bs0maji7jp9hb556lamsr6v4mv9519h82";
url = "https://elpa.gnu.org/devel/eglot-1.15.0.20230609.11219.tar";
sha256 = "1p6nhkg6nwkxbn4378bpwc8qrqr53srxxrwvnmzwzxfz047hbqaq";
};
packageRequires = [
eldoc
@ -1805,6 +1802,24 @@
license = lib.licenses.free;
};
}) {};
emacs-gc-stats = callPackage ({ elpaBuild
, emacs
, fetchurl
, lib }:
elpaBuild {
pname = "emacs-gc-stats";
ename = "emacs-gc-stats";
version = "1.0.0.20230414.170313";
src = fetchurl {
url = "https://elpa.gnu.org/devel/emacs-gc-stats-1.0.0.20230414.170313.tar";
sha256 = "17jmxhxym6n3n61vf0my7c98pzx6d7gxfc8qb7k0yhac1b8s9fg3";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/emacs-gc-stats.html";
license = lib.licenses.free;
};
}) {};
embark = callPackage ({ compat
, elpaBuild
, emacs
@ -1813,10 +1828,10 @@
elpaBuild {
pname = "embark";
ename = "embark";
version = "0.22.1.0.20230528.112522";
version = "0.22.1.0.20230604.235020";
src = fetchurl {
url = "https://elpa.gnu.org/devel/embark-0.22.1.0.20230528.112522.tar";
sha256 = "1kk5mlwgnp35pk52fcx5k17zkhbq8giavzkbhkjl6bphdw6mvhsw";
url = "https://elpa.gnu.org/devel/embark-0.22.1.0.20230604.235020.tar";
sha256 = "0yb3g3yp4vd9w6bclmff1qgqryj1hz9xf187yfrnqv3viv924454";
};
packageRequires = [ compat emacs ];
meta = {
@ -1833,10 +1848,10 @@
elpaBuild {
pname = "embark-consult";
ename = "embark-consult";
version = "0.7.0.20230528.112522";
version = "0.7.0.20230604.235020";
src = fetchurl {
url = "https://elpa.gnu.org/devel/embark-consult-0.7.0.20230528.112522.tar";
sha256 = "1smq2p246a0d19cn72lgijj189ybbzj3whn8ickfn13126k2k8aj";
url = "https://elpa.gnu.org/devel/embark-consult-0.7.0.20230604.235020.tar";
sha256 = "1982pcvf2crwmind8ykx5i30dvyd63pfljnrsjgnb4ws7nglbrbi";
};
packageRequires = [ consult emacs embark ];
meta = {
@ -2004,10 +2019,10 @@
elpaBuild {
pname = "exwm";
ename = "exwm";
version = "0.27.0.20221122.0";
version = "0.27.0.20230609.0";
src = fetchurl {
url = "https://elpa.gnu.org/devel/exwm-0.27.0.20221122.0.tar";
sha256 = "1vx1qy44vdnwzsc6xq69nql468yh6nc6k8b4fkx3xl45zkwnvck2";
url = "https://elpa.gnu.org/devel/exwm-0.27.0.20230609.0.tar";
sha256 = "0igqkdx2lwmwx9llidhk716lv9v5k1sd4r3j15c3qzaq5fzzqv2w";
};
packageRequires = [ xelb ];
meta = {
@ -2076,10 +2091,10 @@
elpaBuild {
pname = "firefox-javascript-repl";
ename = "firefox-javascript-repl";
version = "0.9.4.0.20230602.50753";
version = "0.9.5.0.20230605.161924";
src = fetchurl {
url = "https://elpa.gnu.org/devel/firefox-javascript-repl-0.9.4.0.20230602.50753.tar";
sha256 = "18nxyhk6jblnzzyqzykfwv0mfcfsxi2n9yrxpjq5hpq5h34xwx08";
url = "https://elpa.gnu.org/devel/firefox-javascript-repl-0.9.5.0.20230605.161924.tar";
sha256 = "1fwi01mqyz0mvy27rxz4k97mww02gv6njhb4p7wxj1wrx1xsmm1z";
};
packageRequires = [ emacs ];
meta = {
@ -3486,10 +3501,10 @@
elpaBuild {
pname = "modus-themes";
ename = "modus-themes";
version = "4.2.0.0.20230602.41836";
version = "4.2.0.0.20230610.24325";
src = fetchurl {
url = "https://elpa.gnu.org/devel/modus-themes-4.2.0.0.20230602.41836.tar";
sha256 = "0scqgsh3g9llvqannl9i3xwk3sldrsq1lvml3b0j1fyjn1c1hbq4";
url = "https://elpa.gnu.org/devel/modus-themes-4.2.0.0.20230610.24325.tar";
sha256 = "1860kl7wmd29qr7yk84pr08j9snhh2r5hh6m1hi1k64wz974f091";
};
packageRequires = [ emacs ];
meta = {
@ -3946,10 +3961,10 @@
elpaBuild {
pname = "org-modern";
ename = "org-modern";
version = "0.9.0.20230601.130658";
version = "0.9.0.20230604.100249";
src = fetchurl {
url = "https://elpa.gnu.org/devel/org-modern-0.9.0.20230601.130658.tar";
sha256 = "1rm9qz9ndw0l9kd1x6z6x1kq3qj9cw5hwp3gibw881slcfa6xlfr";
url = "https://elpa.gnu.org/devel/org-modern-0.9.0.20230604.100249.tar";
sha256 = "0f7qnkh1cj4hmgxg6l7vmqq3fcck2shaszbfk86m94why3agh708";
};
packageRequires = [ compat emacs ];
meta = {
@ -5302,10 +5317,10 @@
elpaBuild {
pname = "spacious-padding";
ename = "spacious-padding";
version = "0.0.0.0.20230603.41712";
version = "0.1.0.0.20230606.175440";
src = fetchurl {
url = "https://elpa.gnu.org/devel/spacious-padding-0.0.0.0.20230603.41712.tar";
sha256 = "1n8n09if2blfpa8z54l7zgsr6fxc01w8lj6qhkw73dd2y2nza6py";
url = "https://elpa.gnu.org/devel/spacious-padding-0.1.0.0.20230606.175440.tar";
sha256 = "01541k8j5g920vnj3ds6ancqyi36n6ak00g4rq5vc6ia1ybxiijh";
};
packageRequires = [ emacs ];
meta = {
@ -5705,10 +5720,10 @@
elpaBuild {
pname = "tempel";
ename = "tempel";
version = "0.7.0.20230515.185447";
version = "0.7.0.20230606.80030";
src = fetchurl {
url = "https://elpa.gnu.org/devel/tempel-0.7.0.20230515.185447.tar";
sha256 = "0jlnzf71zw791xixbdmcnvsl57gq7a8llm506sw0mvdnv544q3n1";
url = "https://elpa.gnu.org/devel/tempel-0.7.0.20230606.80030.tar";
sha256 = "0p2x5ba37a6f37m0bfs2a02hp8c81rs4f8q6v35n4r3652kbw7pm";
};
packageRequires = [ compat emacs ];
meta = {
@ -5959,10 +5974,10 @@
elpaBuild {
pname = "triples";
ename = "triples";
version = "0.2.7.0.20230416.5412";
version = "0.3.0.20230610.100448";
src = fetchurl {
url = "https://elpa.gnu.org/devel/triples-0.2.7.0.20230416.5412.tar";
sha256 = "01sjwnk3czmk553yz7p5aw2wy9i8q6r1cfx9crzz434r2xgssg00";
url = "https://elpa.gnu.org/devel/triples-0.3.0.20230610.100448.tar";
sha256 = "08bz6ypg6grp9vz12kr0bp7m8v3vc22klc0x1aiv3f7wgy451snk";
};
packageRequires = [ emacs seq ];
meta = {
@ -5974,10 +5989,10 @@
elpaBuild {
pname = "typo";
ename = "typo";
version = "1.0.1.0.20230407.82047";
version = "1.0.1.0.20230527.83048";
src = fetchurl {
url = "https://elpa.gnu.org/devel/typo-1.0.1.0.20230407.82047.tar";
sha256 = "0y5lkmk8ad8rl354wva6alnqbr2w17xla8bzzl5vbc9rpp25vcpl";
url = "https://elpa.gnu.org/devel/typo-1.0.1.0.20230527.83048.tar";
sha256 = "12flvb976krxxidb8jlkrkfq0nm57gfwcsczjk5slxvwyjf4hvi8";
};
packageRequires = [ emacs ];
meta = {
@ -5992,10 +6007,10 @@
elpaBuild {
pname = "ulisp-repl";
ename = "ulisp-repl";
version = "1.0.2.0.20230602.52713";
version = "1.0.3.0.20230604.111559";
src = fetchurl {
url = "https://elpa.gnu.org/devel/ulisp-repl-1.0.2.0.20230602.52713.tar";
sha256 = "190hhmw625g95xf2lcs2ph3bzi3zh55769a9vzcan4g6rw1jy4wn";
url = "https://elpa.gnu.org/devel/ulisp-repl-1.0.3.0.20230604.111559.tar";
sha256 = "1lay2sqi2ncwvrzs39wjd9fl66vsnxis9q6g7cyjqi4y667jg62s";
};
packageRequires = [ emacs ];
meta = {
@ -6203,10 +6218,10 @@
elpaBuild {
pname = "vc-hgcmd";
ename = "vc-hgcmd";
version = "1.14.1.0.20211021.170441";
version = "1.14.1.0.20230605.161947";
src = fetchurl {
url = "https://elpa.gnu.org/devel/vc-hgcmd-1.14.1.0.20211021.170441.tar";
sha256 = "0v2dlqrik10q6mfc9g3fp2k7q60xdj5awqmry6y3yxiimaas60kl";
url = "https://elpa.gnu.org/devel/vc-hgcmd-1.14.1.0.20230605.161947.tar";
sha256 = "0mv2n5xhilq5vc0k4iahk3fs0skdcshvmdyynqyy6ii764zmmg87";
};
packageRequires = [ emacs ];
meta = {
@ -6265,10 +6280,10 @@
elpaBuild {
pname = "verilog-mode";
ename = "verilog-mode";
version = "2022.12.18.181110314.0.20230418.101438";
version = "2023.6.6.141322628.0.20230606.214619";
src = fetchurl {
url = "https://elpa.gnu.org/devel/verilog-mode-2022.12.18.181110314.0.20230418.101438.tar";
sha256 = "0g67x9gd43g9dv4fji6zkysk6cm54x7s16li3avigdqpv24w8ydm";
url = "https://elpa.gnu.org/devel/verilog-mode-2023.6.6.141322628.0.20230606.214619.tar";
sha256 = "1gm5p32kcg9nisbic5pfnbyy5hmj598s6wma285x8hpd0fhypgn5";
};
packageRequires = [];
meta = {
@ -6485,10 +6500,10 @@
elpaBuild {
pname = "which-key";
ename = "which-key";
version = "3.6.0.0.20230330.172149";
version = "3.6.0.0.20230606.182727";
src = fetchurl {
url = "https://elpa.gnu.org/devel/which-key-3.6.0.0.20230330.172149.tar";
sha256 = "12sj692gskfmy2ch9h51j500c03srybx9nq4ngf5ac3n36rsbygp";
url = "https://elpa.gnu.org/devel/which-key-3.6.0.0.20230606.182727.tar";
sha256 = "0r8r1y82vsxcpf6rck7ay0hksrm1cyxczyhz7dlnnja9sdr4wsfx";
};
packageRequires = [ emacs ];
meta = {

View file

@ -265,10 +265,10 @@
elpaBuild {
pname = "auctex";
ename = "auctex";
version = "13.1.10";
version = "13.2.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/auctex-13.1.10.tar";
sha256 = "0vxf3aw7j73d0cbfh8d5fp5gyi7vxq9vb7fqxmxxs24pvdnlym15";
url = "https://elpa.gnu.org/packages/auctex-13.2.0.tar";
sha256 = "1jk05cca7lrwykj3by4s7c198bffam0mga7hgwmcz5bgxl79ijvf";
};
packageRequires = [ emacs ];
meta = {
@ -400,10 +400,10 @@
elpaBuild {
pname = "beframe";
ename = "beframe";
version = "0.2.0";
version = "0.3.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/beframe-0.2.0.tar";
sha256 = "1nj35r59zpa5hadw9axjassrixx91yqgiffpk9yfhjwnz2s93l15";
url = "https://elpa.gnu.org/packages/beframe-0.3.0.tar";
sha256 = "0naa3agr4h0z1fc3fwnsq4k57zpzvg7ganbr6dyp7c70ja8x32h0";
};
packageRequires = [ emacs ];
meta = {
@ -565,6 +565,21 @@
license = lib.licenses.free;
};
}) {};
calibre = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "calibre";
ename = "calibre";
version = "1.3.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/calibre-1.3.3.tar";
sha256 = "03vg3vym5v04jcvrbyh1m1vfh04a4maiyac89c052lj9zp7yzrx7";
};
packageRequires = [ compat emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/calibre.html";
license = lib.licenses.free;
};
}) {};
cape = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "cape";
@ -719,10 +734,10 @@
elpaBuild {
pname = "comint-mime";
ename = "comint-mime";
version = "0.2";
version = "0.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/comint-mime-0.2.tar";
sha256 = "06sxsrmxr2l63cslaqmsc03birkcsqbnwbjkhn0f8y3afb4pafkf";
url = "https://elpa.gnu.org/packages/comint-mime-0.3.tar";
sha256 = "0dlzwzmiwq9z8riq6h1gpq1g713x09kxgaz2m4anxkbmgb95r7hf";
};
packageRequires = [ emacs ];
meta = {
@ -1012,10 +1027,10 @@
elpaBuild {
pname = "cursory";
ename = "cursory";
version = "0.3.0";
version = "1.0.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/cursory-0.3.0.tar";
sha256 = "1mgvdncqgf0ll2mn5zp47lvvbzrzgdga9dbbjwqaapzy6llfg51x";
url = "https://elpa.gnu.org/packages/cursory-1.0.0.tar";
sha256 = "08mh6564xr4dni53dm7m4jz8cf8v6i99xnrxyp76zvaa809zc5q3";
};
packageRequires = [ emacs ];
meta = {
@ -1462,10 +1477,10 @@
elpaBuild {
pname = "ef-themes";
ename = "ef-themes";
version = "0.11.0";
version = "1.1.1";
src = fetchurl {
url = "https://elpa.gnu.org/packages/ef-themes-0.11.0.tar";
sha256 = "06nkglshklsdr8xcdbrwbp402p260n6g3zk3mn9kv3ynf35wv2wv";
url = "https://elpa.gnu.org/packages/ef-themes-1.1.1.tar";
sha256 = "0yd3m9az0kdv73wx2vbvv0zmlknnc929ldyxnf78w81r5hd4vn7c";
};
packageRequires = [ emacs ];
meta = {
@ -1487,10 +1502,10 @@
elpaBuild {
pname = "eglot";
ename = "eglot";
version = "1.14";
version = "1.15";
src = fetchurl {
url = "https://elpa.gnu.org/packages/eglot-1.14.tar";
sha256 = "0aw28gdx90k87czxf436r9bva58bal55cdnp90ga36c89wzdjznj";
url = "https://elpa.gnu.org/packages/eglot-1.15.tar";
sha256 = "05brq76xbdkbhbn572n0hyz80lwc3ly5waaqsaan5l1apxgl6ww7";
};
packageRequires = [
eldoc
@ -1507,7 +1522,7 @@
license = lib.licenses.free;
};
}) {};
el-search = callPackage ({ cl-print
el-search = callPackage ({ cl-print ? null
, elpaBuild
, emacs
, fetchurl
@ -1636,10 +1651,10 @@
elpaBuild {
pname = "ement";
ename = "ement";
version = "0.8.3";
version = "0.9.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/ement-0.8.3.tar";
sha256 = "074ah73y2v285rlgzn3q2kcqmbra2qdz4hmjs8xd5hpk7za53c7w";
url = "https://elpa.gnu.org/packages/ement-0.9.3.tar";
sha256 = "0pqxq2pqj5hjd2fg403y05x99i6x666vk2z2jbm3ipxwnp4krppw";
};
packageRequires = [
emacs
@ -1764,14 +1779,15 @@
, lib
, nadvice
, soap-client
, url-http-ntlm }:
, url-http-ntlm
, url-http-oauth }:
elpaBuild {
pname = "excorporate";
ename = "excorporate";
version = "1.0.0";
version = "1.1.1";
src = fetchurl {
url = "https://elpa.gnu.org/packages/excorporate-1.0.0.tar";
sha256 = "1g0wc2kp15ra323b4rxvdh58q9c4h7m20grw6a0cs53m7l9xi62f";
url = "https://elpa.gnu.org/packages/excorporate-1.1.1.tar";
sha256 = "06ilfkrlx6ca0qfqq3w1w07kdwak556i1wgf1875py2d5xkg4r90";
};
packageRequires = [
cl-lib
@ -1780,6 +1796,7 @@
nadvice
soap-client
url-http-ntlm
url-http-oauth
];
meta = {
homepage = "https://elpa.gnu.org/packages/excorporate.html";
@ -1846,6 +1863,21 @@
license = lib.licenses.free;
};
}) {};
face-shift = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "face-shift";
ename = "face-shift";
version = "0.2.1";
src = fetchurl {
url = "https://elpa.gnu.org/packages/face-shift-0.2.1.tar";
sha256 = "115959sgy7jivb5534rkm5mbqpjayfci9wpzx75p7cjsn02hfi0p";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/face-shift.html";
license = lib.licenses.free;
};
}) {};
filladapt = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "filladapt";
@ -1861,6 +1893,24 @@
license = lib.licenses.free;
};
}) {};
firefox-javascript-repl = callPackage ({ elpaBuild
, emacs
, fetchurl
, lib }:
elpaBuild {
pname = "firefox-javascript-repl";
ename = "firefox-javascript-repl";
version = "0.9.5";
src = fetchurl {
url = "https://elpa.gnu.org/packages/firefox-javascript-repl-0.9.5.tar";
sha256 = "0ml59kiigqnss84az1c8hp87bmcs9dngz01ly63x47wfym2af8mi";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/firefox-javascript-repl.html";
license = lib.licenses.free;
};
}) {};
flylisp = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "flylisp";
@ -2429,10 +2479,10 @@
elpaBuild {
pname = "inspector";
ename = "inspector";
version = "0.28";
version = "0.31";
src = fetchurl {
url = "https://elpa.gnu.org/packages/inspector-0.28.tar";
sha256 = "0n7s9wai63p42ximiknmi8ryvnj71v6b1dnhafpapka8ymkkdwsb";
url = "https://elpa.gnu.org/packages/inspector-0.31.tar";
sha256 = "0h6qc9g7glxvc4ap9jm0zifljgaxc3291m1dqjprl0f48li4wphd";
};
packageRequires = [ emacs ];
meta = {
@ -2614,10 +2664,10 @@
elpaBuild {
pname = "jinx";
ename = "jinx";
version = "0.7";
version = "0.8";
src = fetchurl {
url = "https://elpa.gnu.org/packages/jinx-0.7.tar";
sha256 = "0kfi5sjzrbxkbcql3h5qi0gd4dsbrxbjg5wldid8vjgqm9cnzvw4";
url = "https://elpa.gnu.org/packages/jinx-0.8.tar";
sha256 = "19dgp312jvpy3k0xq0r033jfhnyrl8xfv3q2djwv9s7883483srn";
};
packageRequires = [ compat emacs ];
meta = {
@ -2760,6 +2810,26 @@
license = lib.licenses.free;
};
}) {};
latex-table-wizard = callPackage ({ auctex
, elpaBuild
, emacs
, fetchurl
, lib
, transient }:
elpaBuild {
pname = "latex-table-wizard";
ename = "latex-table-wizard";
version = "1.5.2";
src = fetchurl {
url = "https://elpa.gnu.org/packages/latex-table-wizard-1.5.2.tar";
sha256 = "0vm4iv0ryff95yld8hlrlmn0wfgkj9690yiwd8pvja2w5m578mf2";
};
packageRequires = [ auctex emacs transient ];
meta = {
homepage = "https://elpa.gnu.org/packages/latex-table-wizard.html";
license = lib.licenses.free;
};
}) {};
leaf = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "leaf";
@ -3139,10 +3209,10 @@
elpaBuild {
pname = "modus-themes";
ename = "modus-themes";
version = "4.1.1";
version = "4.2.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/modus-themes-4.1.1.tar";
sha256 = "06lp7mpazby7iiwzw4naym983plg9r63ba9vmaszh3609d2gm0s9";
url = "https://elpa.gnu.org/packages/modus-themes-4.2.0.tar";
sha256 = "0bki4h3rs1ch47sygb4nib8960lyvvgs7yxgsy009il3hfxzdgsq";
};
packageRequires = [ emacs ];
meta = {
@ -3279,10 +3349,10 @@
elpaBuild {
pname = "nano-modeline";
ename = "nano-modeline";
version = "0.7.2";
version = "1.0.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/nano-modeline-0.7.2.tar";
sha256 = "14405gj7fh14incbpsg75fwzxfzazqp9lfk60i4w731kfwhlc727";
url = "https://elpa.gnu.org/packages/nano-modeline-1.0.0.tar";
sha256 = "0fg4s3ydmb769mnyx3ngx7rp5g8pmm91rqwng05jb8sgn0sfmsni";
};
packageRequires = [ emacs ];
meta = {
@ -3523,10 +3593,10 @@
elpaBuild {
pname = "org";
ename = "org";
version = "9.6.4";
version = "9.6.6";
src = fetchurl {
url = "https://elpa.gnu.org/packages/org-9.6.4.tar";
sha256 = "1g0yi308bviw9fypikx67n2g4hvr63cin4pxnhv8s70np7754kf2";
url = "https://elpa.gnu.org/packages/org-9.6.6.tar";
sha256 = "00xp2v0crg5ls79a9waapymr8rrv00gpff3ihm3w8mr3f6dyypn9";
};
packageRequires = [ emacs ];
meta = {
@ -3613,10 +3683,10 @@
elpaBuild {
pname = "org-remark";
ename = "org-remark";
version = "1.0.5";
version = "1.1.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/org-remark-1.0.5.tar";
sha256 = "01pgfg9j5wrhggjklkc9nbfiwjd5qnmhcbcccc06jz3hmd0rnxr2";
url = "https://elpa.gnu.org/packages/org-remark-1.1.0.tar";
sha256 = "0vbs4dz86bz1s5crf7gfm4h4wpb7ibky3698ghdb4v4d5piz86ld";
};
packageRequires = [ emacs org ];
meta = {
@ -3688,10 +3758,10 @@
elpaBuild {
pname = "osm";
ename = "osm";
version = "0.11";
version = "0.12";
src = fetchurl {
url = "https://elpa.gnu.org/packages/osm-0.11.tar";
sha256 = "17bll1p3s5gkhaiisab8w5q9ygsmqgmzfq5irghl71vlac0r2gsk";
url = "https://elpa.gnu.org/packages/osm-0.12.tar";
sha256 = "1i94ymji0kknrf8p49vghs7s9f16skp5vsxayj1dy52gkvfh273j";
};
packageRequires = [ compat emacs ];
meta = {
@ -3883,10 +3953,10 @@
elpaBuild {
pname = "poke";
ename = "poke";
version = "3.0";
version = "3.2";
src = fetchurl {
url = "https://elpa.gnu.org/packages/poke-3.0.tar";
sha256 = "08ajbhwj4sdph9ay7wbd807slzxg6360kpqkyyvhdzl8kqh67wc7";
url = "https://elpa.gnu.org/packages/poke-3.2.tar";
sha256 = "0rhcz7kg20j72hf9rhq5zacdak8ayhn4cnwhgq9qwr18z00bxxm7";
};
packageRequires = [ emacs ];
meta = {
@ -3928,10 +3998,10 @@
elpaBuild {
pname = "posframe";
ename = "posframe";
version = "1.4.1";
version = "1.4.2";
src = fetchurl {
url = "https://elpa.gnu.org/packages/posframe-1.4.1.tar";
sha256 = "02kw3d6760015q61sryw8k3zqdnzhcwwyfjfysbfs07cljkqpjnh";
url = "https://elpa.gnu.org/packages/posframe-1.4.2.tar";
sha256 = "0ca43wgbr0n5ri7cyxjmn7blq59xq43rx9z9q02a2j4yn05w8nss";
};
packageRequires = [ emacs ];
meta = {
@ -4421,7 +4491,7 @@
}) {};
rudel = callPackage ({ cl-generic
, cl-lib ? null
, cl-print
, cl-print ? null
, elpaBuild
, emacs
, fetchurl
@ -4718,10 +4788,10 @@
elpaBuild {
pname = "soap-client";
ename = "soap-client";
version = "3.2.1";
version = "3.2.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/soap-client-3.2.1.tar";
sha256 = "0v3aj059cvfv5yc9fx8naq8ygphlpbasc1nksgfim8iyk9wg7l3n";
url = "https://elpa.gnu.org/packages/soap-client-3.2.3.tar";
sha256 = "0z6af253iwimam03jnpai2h989i6vyv05wdz7dadna6amdryfznc";
};
packageRequires = [ cl-lib emacs ];
meta = {
@ -4759,6 +4829,21 @@
license = lib.licenses.free;
};
}) {};
spacious-padding = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "spacious-padding";
ename = "spacious-padding";
version = "0.1.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/spacious-padding-0.1.0.tar";
sha256 = "0kc5f1p9y2gp2sb6l2vljjhi330f8zxfm7gjjvyymhf2grr61mxw";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/spacious-padding.html";
license = lib.licenses.free;
};
}) {};
spinner = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "spinner";
@ -5192,10 +5277,10 @@
elpaBuild {
pname = "tramp";
ename = "tramp";
version = "2.6.0.3";
version = "2.6.0.5";
src = fetchurl {
url = "https://elpa.gnu.org/packages/tramp-2.6.0.3.tar";
sha256 = "0hcm20qk62k9irqdfcb44js9jkff43fji07la33arnjqvswrqs6n";
url = "https://elpa.gnu.org/packages/tramp-2.6.0.5.tar";
sha256 = "0hbrrlcyhxkmjym4wnwipi47lzqpnlxc833p0hmghc6n0s8sx7hf";
};
packageRequires = [ emacs ];
meta = {
@ -5248,16 +5333,16 @@
license = lib.licenses.free;
};
}) {};
transient = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
transient = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "transient";
ename = "transient";
version = "0.3.7";
version = "0.4.1";
src = fetchurl {
url = "https://elpa.gnu.org/packages/transient-0.3.7.tar";
sha256 = "0x4xjbaw98dma7232bzw53rbq9q70vms6lvvramng7vfaz0mcy2a";
url = "https://elpa.gnu.org/packages/transient-0.4.1.tar";
sha256 = "0mw619057spgz9rrf8rws1zywpjl8ri7hz30f4g8wxqsgrk4ph79";
};
packageRequires = [ emacs ];
packageRequires = [ compat emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/transient.html";
license = lib.licenses.free;
@ -5278,6 +5363,21 @@
license = lib.licenses.free;
};
}) {};
tree-inspector = callPackage ({ elpaBuild, emacs, fetchurl, lib, treeview }:
elpaBuild {
pname = "tree-inspector";
ename = "tree-inspector";
version = "0.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/tree-inspector-0.3.tar";
sha256 = "1hns99rfga8p85ylbr4ri14wyfcxf0bcni0fyr09awipxrpn6ikq";
};
packageRequires = [ emacs treeview ];
meta = {
homepage = "https://elpa.gnu.org/packages/tree-inspector.html";
license = lib.licenses.free;
};
}) {};
trie = callPackage ({ elpaBuild, fetchurl, heap, lib, tNFA }:
elpaBuild {
pname = "trie";
@ -5297,10 +5397,10 @@
elpaBuild {
pname = "triples";
ename = "triples";
version = "0.2.7";
version = "0.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/triples-0.2.7.tar";
sha256 = "1p980liprsnir4wqvf0ixzykv61iaaprkc6wc0vi7a4q2pj7ra6f";
url = "https://elpa.gnu.org/packages/triples-0.3.tar";
sha256 = "0qzyhsv50qpnys28vksdv404fq6jkdd1733c21lsz15g04kaj9nf";
};
packageRequires = [ emacs seq ];
meta = {
@ -5323,6 +5423,21 @@
license = lib.licenses.free;
};
}) {};
ulisp-repl = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "ulisp-repl";
ename = "ulisp-repl";
version = "1.0.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/ulisp-repl-1.0.3.tar";
sha256 = "09n0wp0dfg9xyxw0hwwb5p6namninvsw1fs710hmnh224q6wffgy";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/ulisp-repl.html";
license = lib.licenses.free;
};
}) {};
undo-tree = callPackage ({ elpaBuild, emacs, fetchurl, lib, queue }:
elpaBuild {
pname = "undo-tree";
@ -5368,6 +5483,21 @@
license = lib.licenses.free;
};
}) {};
urgrep = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib, project }:
elpaBuild {
pname = "urgrep";
ename = "urgrep";
version = "0.1.1";
src = fetchurl {
url = "https://elpa.gnu.org/packages/urgrep-0.1.1.tar";
sha256 = "0bdi0phx7in23g4pb6yrzp4b1n08zjk4cnvhj3ya76y7sah0hdsz";
};
packageRequires = [ compat emacs project ];
meta = {
homepage = "https://elpa.gnu.org/packages/urgrep.html";
license = lib.licenses.free;
};
}) {};
url-http-ntlm = callPackage ({ cl-lib ? null
, elpaBuild
, fetchurl
@ -5387,6 +5517,21 @@
license = lib.licenses.free;
};
}) {};
url-http-oauth = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "url-http-oauth";
ename = "url-http-oauth";
version = "0.8.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/url-http-oauth-0.8.3.tar";
sha256 = "1vcbx8rpzvx4v4g7iyja6kpsqidaiy2xzj7glrwwzhppkbp0xkvy";
};
packageRequires = [];
meta = {
homepage = "https://elpa.gnu.org/packages/url-http-oauth.html";
license = lib.licenses.free;
};
}) {};
url-scgi = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "url-scgi";
@ -5548,10 +5693,10 @@
elpaBuild {
pname = "verilog-mode";
ename = "verilog-mode";
version = "2022.12.18.181110314";
version = "2023.6.6.141322628";
src = fetchurl {
url = "https://elpa.gnu.org/packages/verilog-mode-2022.12.18.181110314.tar";
sha256 = "0vy2lfscirj7as106m94yi88n8pwp4d2ngaclsf0axyrbcagzkjn";
url = "https://elpa.gnu.org/packages/verilog-mode-2023.6.6.141322628.tar";
sha256 = "14qls4v5yxrgyiimvvggimw5ddlx0ll387a1r6awm274rj4p3d19";
};
packageRequires = [];
meta = {
@ -5563,10 +5708,10 @@
elpaBuild {
pname = "vertico";
ename = "vertico";
version = "1.2";
version = "1.3";
src = fetchurl {
url = "https://elpa.gnu.org/packages/vertico-1.2.tar";
sha256 = "1vf2nh2wrjj6ig5iq7kx1p85a1m494lxfvhlqrl5nhi2hjbgnqy3";
url = "https://elpa.gnu.org/packages/vertico-1.3.tar";
sha256 = "192ljdvzyyjs9i3r3zimzarwpakibdrl036pdk60qmg4kyh057ms";
};
packageRequires = [ compat emacs ];
meta = {
@ -5661,10 +5806,10 @@
elpaBuild {
pname = "vundo";
ename = "vundo";
version = "2.0.0";
version = "2.1.0";
src = fetchurl {
url = "https://elpa.gnu.org/packages/vundo-2.0.0.tar";
sha256 = "032aqcqq2xhh12qcpp8p3qldv0r9cnqr2y11jk1m5cvgal1cbb68";
url = "https://elpa.gnu.org/packages/vundo-2.1.0.tar";
sha256 = "1inm6kvh5j47nsrmq6wpf30dqmx0arzdpa6vdcn834g50i4fh8kc";
};
packageRequires = [ emacs ];
meta = {

View file

@ -4,13 +4,13 @@
, emacs
}:
trivialBuild rec {
trivialBuild {
pname = "sunrise-commander";
version = "0.pre+unstable=2021-09-27";
version = "unstable=2021-09-27";
src = fetchFromGitHub {
owner = pname;
repo = pname;
owner = "sunrise-commander";
repo = "sunrise-commander";
rev = "16e6df7e86c7a383fb4400fae94af32baf9cb24e";
hash = "sha256-D36qiRi5OTZrBtJ/bD/javAWizZ8NLlC/YP4rdLCSsw=";
};
@ -19,11 +19,11 @@ trivialBuild rec {
emacs
];
meta = with lib; {
meta = {
homepage = "https://github.com/sunrise-commander/sunrise-commander/";
description = "Orthodox (two-pane) file manager for Emacs";
license = licenses.gpl3Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.AndersonTorres ];
platforms = lib.platforms.all;
};
}

View file

@ -526,6 +526,21 @@
license = lib.licenses.free;
};
}) {};
devil = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "devil";
ename = "devil";
version = "0.4.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/devil-0.4.0.tar";
sha256 = "1j6qmp1dh3f2g3nxmr5lwbabrfid5kwnbcx5ddsynqkpiq5c866x";
};
packageRequires = [ emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/devil.html";
license = lib.licenses.free;
};
}) {};
diff-ansi = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "diff-ansi";
@ -631,21 +646,16 @@
license = lib.licenses.free;
};
}) {};
editorconfig = callPackage ({ cl-lib ? null
, elpaBuild
, emacs
, fetchurl
, lib
, nadvice }:
editorconfig = callPackage ({ elpaBuild, emacs, fetchurl, lib, nadvice }:
elpaBuild {
pname = "editorconfig";
ename = "editorconfig";
version = "0.9.1";
version = "0.10.1";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/editorconfig-0.9.1.tar";
sha256 = "0i271313bsk3hlkc3bzjv79i20y6ffk7gwn26rnhljwpi828wfsw";
url = "https://elpa.nongnu.org/nongnu/editorconfig-0.10.1.tar";
sha256 = "0x6qij98rwq2yra7c0qa01rjb10pg23nwnnsb2fb76d5yhk1dcqw";
};
packageRequires = [ cl-lib emacs nadvice ];
packageRequires = [ emacs nadvice ];
meta = {
homepage = "https://elpa.gnu.org/packages/editorconfig.html";
license = lib.licenses.free;
@ -670,10 +680,10 @@
elpaBuild {
pname = "elpher";
ename = "elpher";
version = "3.4.3";
version = "3.5.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/elpher-3.4.3.tar";
sha256 = "0v785g0k3ik28k3iq9hf6h4d1avj50rzvqf9mbil4vcl1gb6jksm";
url = "https://elpa.nongnu.org/nongnu/elpher-3.5.0.tar";
sha256 = "10b4s3anbm4afs5i7rkv9qm5f5y9lzyj9dzajb1x654df4l0m4w4";
};
packageRequires = [ emacs ];
meta = {
@ -685,10 +695,10 @@
elpaBuild {
pname = "engine-mode";
ename = "engine-mode";
version = "2.2.1";
version = "2.2.3";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/engine-mode-2.2.1.tar";
sha256 = "1m5i3pyi4y90jvwgypxzl3qwhq5j6gazwijalhjcgb6gnpsm81kv";
url = "https://elpa.nongnu.org/nongnu/engine-mode-2.2.3.tar";
sha256 = "07r5g2xrss175m622npna7c51ra4im7l69mkqp6689m2954g23wk";
};
packageRequires = [ cl-lib ];
meta = {
@ -1206,16 +1216,16 @@
license = lib.licenses.free;
};
}) {};
git-modes = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
git-modes = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "git-modes";
ename = "git-modes";
version = "1.4.0";
version = "1.4.1";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/git-modes-1.4.0.tar";
sha256 = "1pag50l0rl361p1617rdvhhdajsmq9b1lyi94g16hibygdn7vaff";
url = "https://elpa.nongnu.org/nongnu/git-modes-1.4.1.tar";
sha256 = "0zxab7rjy5rh8y0ln9h04pvcim8a4qdpj1zs0c0dwbxcsa7v7hz1";
};
packageRequires = [ emacs ];
packageRequires = [ compat emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/git-modes.html";
license = lib.licenses.free;
@ -1683,16 +1693,16 @@
license = lib.licenses.free;
};
}) {};
keycast = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
keycast = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "keycast";
ename = "keycast";
version = "1.2.0";
version = "1.3.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/keycast-1.2.0.tar";
sha256 = "0iiksz8lcz9y5yplw455v2zgvq2jz6jc2ic3ybax10v3wgxnhiad";
url = "https://elpa.nongnu.org/nongnu/keycast-1.3.0.tar";
sha256 = "0yv9rcpfwjms8p7wmk2lhgbn8b44nyz6g81czcr5z39w5914rh4x";
};
packageRequires = [ emacs ];
packageRequires = [ compat emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/keycast.html";
license = lib.licenses.free;
@ -1747,10 +1757,10 @@
elpaBuild {
pname = "macrostep";
ename = "macrostep";
version = "0.9.1";
version = "0.9.2";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/macrostep-0.9.1.tar";
sha256 = "1n7x19748nv02zrxwy8b46jg9k4fzvqmwgvswq8x9ksghzsn7xyh";
url = "https://elpa.nongnu.org/nongnu/macrostep-0.9.2.tar";
sha256 = "1257vz50k69wka756c9sjq86apvw876myl3wml55x5m8q328wbcf";
};
packageRequires = [ cl-lib ];
meta = {
@ -2142,16 +2152,22 @@
license = lib.licenses.free;
};
}) {};
orgit = callPackage ({ elpaBuild, emacs, fetchurl, lib, magit, org }:
orgit = callPackage ({ compat
, elpaBuild
, emacs
, fetchurl
, lib
, magit
, org }:
elpaBuild {
pname = "orgit";
ename = "orgit";
version = "1.8.0";
version = "1.9.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/orgit-1.8.0.tar";
sha256 = "03qjhiv3smnpjciz5sfri7v5gzgcnk5g0lhgm06flqnarfrrkn1h";
url = "https://elpa.nongnu.org/nongnu/orgit-1.9.0.tar";
sha256 = "1lwvmd0mri1vxqp5d8fqam1qhznfjq0bn5i5jjv15nqzcklsw7bm";
};
packageRequires = [ emacs magit org ];
packageRequires = [ compat emacs magit org ];
meta = {
homepage = "https://elpa.gnu.org/packages/orgit.html";
license = lib.licenses.free;
@ -2256,10 +2272,10 @@
elpaBuild {
pname = "pdf-tools";
ename = "pdf-tools";
version = "1.0.0";
version = "1.1.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/pdf-tools-1.0.0.tar";
sha256 = "0p9q9a11s68s95z8n0i45x1w8mg476bpnrvijg6i83779dmrpxh0";
url = "https://elpa.nongnu.org/nongnu/pdf-tools-1.1.0.tar";
sha256 = "0gb8c7y55mmz69agg0rkdjrxg0abznl2mj2x8vw12x4x1ggmykkf";
};
packageRequires = [ emacs let-alist tablist ];
meta = {
@ -2364,10 +2380,10 @@
elpaBuild {
pname = "racket-mode";
ename = "racket-mode";
version = "1.0.20230321.113335";
version = "1.0.20230508.134227";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20230321.113335.tar";
sha256 = "0vr030zkgdjwn6kcrdiwsdwbk1x3sk60w60cfs60y7jmwaggqr65";
url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20230508.134227.tar";
sha256 = "15h9idjiggl6v1jrmkyg7p80mgpq3mwlj0x0mz3zch6xnx30d73h";
};
packageRequires = [ emacs ];
meta = {
@ -2638,10 +2654,10 @@
elpaBuild {
pname = "solarized-theme";
ename = "solarized-theme";
version = "1.3.0";
version = "2.0.1";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/solarized-theme-1.3.0.tar";
sha256 = "0wa3wp9r0h4y3kkiw8s4pi1zvg22yhnpsp8ckv1hp4y6js5jbg65";
url = "https://elpa.nongnu.org/nongnu/solarized-theme-2.0.1.tar";
sha256 = "1kz34a7133l2dl09mvb8v79k693ypxk01bmqwm8cfa7icqq2ka98";
};
packageRequires = [ emacs ];
meta = {
@ -2743,10 +2759,10 @@
elpaBuild {
pname = "sweeprolog";
ename = "sweeprolog";
version = "0.17.0";
version = "0.19.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.17.0.tar";
sha256 = "0k51k77g1mivs3ijnkl0i51v9bfjmivwnbkqwza9kclxd4dwlvyy";
url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.19.0.tar";
sha256 = "13jq4kprxnv2wiz1hzzjcfg418d0gj2z0bm27y1myh4ak5x1jbvj";
};
packageRequires = [ emacs ];
meta = {
@ -2989,10 +3005,10 @@
elpaBuild {
pname = "undo-fu-session";
ename = "undo-fu-session";
version = "0.5";
version = "0.6";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/undo-fu-session-0.5.tar";
sha256 = "002srqa08kpgzsp171n88k1bz7qin16lpr7yafg13i29x37v6yzq";
url = "https://elpa.nongnu.org/nongnu/undo-fu-session-0.6.tar";
sha256 = "0l54zqr481xlldfjllhsq4z6ccyzx0k3h7gm59pz32m7bd7zxggl";
};
packageRequires = [ emacs ];
meta = {
@ -3004,10 +3020,10 @@
elpaBuild {
pname = "vc-fossil";
ename = "vc-fossil";
version = "20221120";
version = "20230504";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/vc-fossil-20221120.tar";
sha256 = "0ygacnq1w64iw8al2gcyjjwgvbnm2l97sw4lf5a2x6ms0fgnbdgk";
url = "https://elpa.nongnu.org/nongnu/vc-fossil-20230504.tar";
sha256 = "0s7mxi9qq5axv1prqgfi1d7yyrn0abal8y25d4l7n38qszixjlcd";
};
packageRequires = [];
meta = {
@ -3110,16 +3126,16 @@
license = lib.licenses.free;
};
}) {};
with-editor = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
with-editor = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "with-editor";
ename = "with-editor";
version = "3.2.0";
version = "3.3.0";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/with-editor-3.2.0.tar";
sha256 = "1rsggbhkngzbcmg3076jbi1sfkzz8p4s5i00sk0ywc6vkmsp6s1k";
url = "https://elpa.nongnu.org/nongnu/with-editor-3.3.0.tar";
sha256 = "1kawmx6wkkbkl87lkvjp1z88ynycql5i62rrzvrqjyscps82914j";
};
packageRequires = [ emacs ];
packageRequires = [ compat emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/with-editor.html";
license = lib.licenses.free;
@ -3197,10 +3213,10 @@
elpaBuild {
pname = "xah-fly-keys";
ename = "xah-fly-keys";
version = "23.10.20230407101020";
version = "23.11.20230609124049";
src = fetchurl {
url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-23.10.20230407101020.tar";
sha256 = "1gdzl5s80hhfnskngjsw1wy18rs6k5hr5cvnj7pdli9ai10alx9y";
url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-23.11.20230609124049.tar";
sha256 = "0vp457cvwvwbdzglm7s3dbghhc4p3lpr7rxni75fiyqrv8smjrwa";
};
packageRequires = [ emacs ];
meta = {

View file

@ -30,14 +30,17 @@ test_packageset(){
}
download_change "elpa/elpa-generated.nix"
download_change "elpa/elpa-devel-generated.nix"
download_change "melpa/recipes-archive-melpa.json"
download_change "nongnu/nongnu-generated.nix"
test_packageset "nongnuPackages"
test_packageset "elpaPackages"
test_packageset "elpaDevelPackages"
test_packageset "melpaStablePackages"
test_packageset "melpaPackages"
commit_change "elpa-packages" "elpa-generated.nix"
commit_change "elpa-devel-packages" "elpa-devel-generated.nix"
commit_change "melpa-packages" "recipes-archive-melpa.json"
commit_change "nongnu-packages" "nongnu-generated.nix"

View file

@ -2,13 +2,13 @@
mkDerivation rec {
pname = "notepad-next";
version = "0.6.1";
version = "0.6.3";
src = fetchFromGitHub {
owner = "dail8859";
repo = "NotepadNext";
rev = "v${version}";
sha256 = "sha256-4OjthXAzcAVwDA7+oK7sKiOiB7i/cYIdxyrz+9wPvDg=";
sha256 = "sha256-1ci1g+qBDsw9IkqjI3tRvMsLBvnPU+nn7heYuid/e5M=";
# External dependencies - https://github.com/dail8859/NotepadNext/issues/135
fetchSubmodules = true;
};

View file

@ -173,24 +173,24 @@ final: prev:
LazyVim = buildVimPluginFrom2Nix {
pname = "LazyVim";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "LazyVim";
repo = "LazyVim";
rev = "e049928b8bb3a385a186617a97c56cfb8f74a6f8";
sha256 = "105sm7qyyypa2y1lxr00a01x322z6f1zwiz9wgdrdsi6bn9zmbh6";
rev = "986a6374f4fd3f9b176105f4a3a4392b24e1953a";
sha256 = "1gr3f779phdxaq6m2dbd2swkvwd702s2gnkhbj3vrcs38a9jrbnz";
};
meta.homepage = "https://github.com/LazyVim/LazyVim/";
};
LeaderF = buildVimPluginFrom2Nix {
pname = "LeaderF";
version = "2023-06-07";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "Yggdroot";
repo = "LeaderF";
rev = "124bcbf036c44ec33e4e6e4b356811b2c086faf0";
sha256 = "0aidvlynckh1c203pa2mbvgz538jl4559cpng4s9r5g4apyn1aqq";
rev = "86013dd6208609e51c722e91e8faa6c4597ed83a";
sha256 = "07w8f0i10xzgvlc9j31i7a84vz4xln7985gag4bdpn4pxl3dpxvz";
};
meta.homepage = "https://github.com/Yggdroot/LeaderF/";
};
@ -365,12 +365,12 @@ final: prev:
SpaceVim = buildVimPluginFrom2Nix {
pname = "SpaceVim";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "SpaceVim";
repo = "SpaceVim";
rev = "9d80f93a85ea99442fc3539ab2a0acbaef6c7058";
sha256 = "10wjc6ypdf9gvagm7ywdp1q6xsx58f4s6wl4rm3zvnky30pdl70i";
rev = "f4b746a617323610d9a069bae6808ec6ca448bd9";
sha256 = "1lp8j3bsz52mzhpjq8lmbf8ws857n71n0kcgvzx6adn74gh3sfl6";
};
meta.homepage = "https://github.com/SpaceVim/SpaceVim/";
};
@ -547,12 +547,12 @@ final: prev:
ale = buildVimPluginFrom2Nix {
pname = "ale";
version = "2023-05-26";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
rev = "7021ed0c6859ec8b1bf5012d1276d54a786449c3";
sha256 = "08cy7sicmj1zq4jwldgp8c37nhk7jmma42lfak3rp2dg54y24rsa";
rev = "c0eff9f2f18c5408596ce1e8e43dc7933340e514";
sha256 = "1fhkf7cs7xk6n0md7avisnan9vdd2lyydpmnbsdyxm6i2gwmjz31";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@ -571,12 +571,12 @@ final: prev:
alpha-nvim = buildVimPluginFrom2Nix {
pname = "alpha-nvim";
version = "2023-05-09";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "goolord";
repo = "alpha-nvim";
rev = "1838ae926e8d49fe5330d1498ee8289ae2c340bc";
sha256 = "1grjhz11im4h0fgcbvln55lszmgjz7v9bni9pigqwhf5jpzyjbr7";
rev = "9e33db324b8bb7a147bce9ea5496686ee859461d";
sha256 = "0l5nwrdnb27a1sszivkzqf8q1isqkg07yh8p9f268m0433h8n0hf";
};
meta.homepage = "https://github.com/goolord/alpha-nvim/";
};
@ -1099,12 +1099,12 @@ final: prev:
bufdelete-nvim = buildVimPluginFrom2Nix {
pname = "bufdelete.nvim";
version = "2023-05-28";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "famiu";
repo = "bufdelete.nvim";
rev = "ccfa2589fa68512770639839ab3850097fbbf4dc";
sha256 = "1d0dy4i8qnbqwf7xi3hqvjhs40rh0h4mdhij6s45gxm2aj12gad2";
rev = "a7c1ce91c05df5685a974695aa46840da628a6a3";
sha256 = "15yyzvapvfhxv369kxx6pi7qymzpkghq9x2c21ly5vg7yp6dmwwa";
};
meta.homepage = "https://github.com/famiu/bufdelete.nvim/";
};
@ -1579,12 +1579,12 @@ final: prev:
cmp-npm = buildVimPluginFrom2Nix {
pname = "cmp-npm";
version = "2023-02-15";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "David-Kunz";
repo = "cmp-npm";
rev = "e5753b6103ce4cf887233142fa9f31b2d13b42f2";
sha256 = "1hcl7ch38pnjsjnpvrqmfghikaps80aykxbn63xm8wrdqa7rxph3";
rev = "713f08c0492efbbe81eebcddc3162e6822bb610b";
sha256 = "1s4191aql9b3xjidz2m559s1hsy5cf7hhn3xzb16d365nzin4rwk";
};
meta.homepage = "https://github.com/David-Kunz/cmp-npm/";
};
@ -1963,12 +1963,12 @@ final: prev:
codeium-vim = buildVimPluginFrom2Nix {
pname = "codeium.vim";
version = "2023-06-02";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "Exafunction";
repo = "codeium.vim";
rev = "48eaf767680e7e35b89110e0193f99520e76f666";
sha256 = "0v99z5amg6pjh2gbvrgdrm62zgb9x0dr5v594l7sa4wziczh3kl1";
rev = "b748ff19c7c3fbd0b9e263d04ea58e10954027ff";
sha256 = "09qrry6y9k1c20z3q9d1m15a3n1bx1kzf11237fhhc41y2rk3g15";
};
meta.homepage = "https://github.com/Exafunction/codeium.vim/";
};
@ -2853,12 +2853,12 @@ final: prev:
diffview-nvim = buildVimPluginFrom2Nix {
pname = "diffview.nvim";
version = "2023-06-07";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "sindrets";
repo = "diffview.nvim";
rev = "9f00ed07c16662bd4280ecc4bfe7d35a65b1f6b7";
sha256 = "0c1vyd7q8jfn0hc55fsnramxa862299k29dsinbq0yz2k60plvsz";
rev = "6780a8a27f5cd326f502653cecef701611641fdf";
sha256 = "1qy7mh1j8npqhc6r1zd21g0ihswvgawbc7grc204hhca1g1qzgpx";
};
meta.homepage = "https://github.com/sindrets/diffview.nvim/";
};
@ -2961,12 +2961,12 @@ final: prev:
edgy-nvim = buildVimPluginFrom2Nix {
pname = "edgy.nvim";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "folke";
repo = "edgy.nvim";
rev = "f4f2d0fdaf73f282b38527cd8aac04cda33bcecf";
sha256 = "1pgics6arbif2a7js1hcwc38kjyy8xzl31l1sf75v30cqkfz9m6j";
rev = "7bf62a057284233381c8fc4848e10d8335942495";
sha256 = "0zcvjy6sdqahg7wfyc20zxsdima6zz0hfc4r7zhsw77x5z0jm6cm";
};
meta.homepage = "https://github.com/folke/edgy.nvim/";
};
@ -3167,12 +3167,12 @@ final: prev:
fidget-nvim = buildVimPluginFrom2Nix {
pname = "fidget.nvim";
version = "2023-03-27";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "j-hui";
repo = "fidget.nvim";
rev = "0ba1e16d07627532b6cae915cc992ecac249fb97";
sha256 = "01rrjxlg4xjfs8la0cfcnf5z36s5fdxqzfs4mc0zdz1bn5z60qmf";
rev = "f1c375ba68839eaa4a65efdf2aa078c0da0548fe";
sha256 = "0bzlv846iz0dbvi166m5aj8ynxp86ba1ycwg0vjxawjcnkhvkdv4";
};
meta.homepage = "https://github.com/j-hui/fidget.nvim/";
};
@ -3324,12 +3324,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
rev = "0eb246a7dbb06d3d9e560696be210241cc27c081";
sha256 = "1lglrhf34qkb6zaxsiy3pkdvsxsx1wnb0l4dw2plwbgwvmcnwl9h";
rev = "b71d1ddc30a10ce0474156f7ee93bc9006d0cd74";
sha256 = "0jxj57996c4ab54p0zd4h5ldkz9yad1jy0ylzikfq8ylvw7z4p31";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@ -3444,12 +3444,12 @@ final: prev:
fzf-vim = buildVimPluginFrom2Nix {
pname = "fzf.vim";
version = "2023-06-04";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "junegunn";
repo = "fzf.vim";
rev = "5d87ac1fe8d729f116bda2f90a7211ad309ddf5a";
sha256 = "1v7cp8bv7pdjz3cz90i5dj3xl31zk2jzsvwjrjdqs1fz601yhv3f";
rev = "1dcdb21db618055134cd611f4f5918f6d00a5df0";
sha256 = "0655iypmf7nafrwhrj09v5cgwfsg8dnqgkrpxlb2z2b5wji79cx7";
};
meta.homepage = "https://github.com/junegunn/fzf.vim/";
};
@ -4463,12 +4463,12 @@ final: prev:
lazy-nvim = buildVimPluginFrom2Nix {
pname = "lazy.nvim";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "folke";
repo = "lazy.nvim";
rev = "d1b02c2dda88422ca573f2a1ebdfb213ce0124d6";
sha256 = "12283fg12qrh2wbd304p34m2n9w8awf9rv0n9sm82k44fjryrlsi";
rev = "678179543e0d27650c328d8659f2c2cab4d854ef";
sha256 = "01s2c09kw071lvfgn8bfw2aw978n50xdln6aapn4m2iw4fwhsg5s";
};
meta.homepage = "https://github.com/folke/lazy.nvim/";
};
@ -5195,12 +5195,12 @@ final: prev:
mini-nvim = buildVimPluginFrom2Nix {
pname = "mini.nvim";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "echasnovski";
repo = "mini.nvim";
rev = "296ebbbd3e5ba5e43f5125efe18ad76fe3b632cc";
sha256 = "1z86b6gzgr6smzz6zkv3y052whm27h5ffmah8ginmvxdhvrr8bv8";
rev = "56509def588044fd5dcd1efe74197f1f4fe8953a";
sha256 = "0fkjwg9klf2dy0ic8knwffkni9xlbf4kyvj63k1alyy5scn6nzgi";
};
meta.homepage = "https://github.com/echasnovski/mini.nvim/";
};
@ -5231,16 +5231,28 @@ final: prev:
mkdx = buildVimPluginFrom2Nix {
pname = "mkdx";
version = "2023-04-23";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "SidOfc";
repo = "mkdx";
rev = "1662c1531f0e0a1cb9c9566b555cb8686a336532";
sha256 = "0n0i7092qqjlp6s951frhasbmi225x52myar3yrh9zskdmrxbh6x";
rev = "b2c059e15b4998f98faa1d3c9dc6c2cddb2f8208";
sha256 = "1flvk7hfdlg95qds8sipqi8zqpi8gzbczybclf0qgyis3r8wc8jl";
};
meta.homepage = "https://github.com/SidOfc/mkdx/";
};
modicator-nvim = buildVimPluginFrom2Nix {
pname = "modicator.nvim";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "mawkler";
repo = "modicator.nvim";
rev = "51d7005913f99bf80c207731e052818edf178a3f";
sha256 = "0h0fm1j5m470rcf2bkq1dxq4lxirln6ad2giisi3vh9jibgdizbn";
};
meta.homepage = "https://github.com/mawkler/modicator.nvim/";
};
molokai = buildVimPluginFrom2Nix {
pname = "molokai";
version = "2015-11-11";
@ -5555,12 +5567,12 @@ final: prev:
neoconf-nvim = buildVimPluginFrom2Nix {
pname = "neoconf.nvim";
version = "2023-06-08";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "folke";
repo = "neoconf.nvim";
rev = "4cfa8a11e4de565c95636643db77b44f926f4f25";
sha256 = "0dqarykny6aszyv9wj5vvakjjaxi3f873dnkaxjdzgg7kdls1486";
rev = "bf802bff605d439f0403d55d83e8f6bf7247fce8";
sha256 = "15nhcamd9ginv562gim3yrnf7x6cfw9b7a9f0vzqbgsm71icjc9d";
};
meta.homepage = "https://github.com/folke/neoconf.nvim/";
};
@ -5579,12 +5591,12 @@ final: prev:
neodev-nvim = buildVimPluginFrom2Nix {
pname = "neodev.nvim";
version = "2023-06-07";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "folke";
repo = "neodev.nvim";
rev = "a24a910ad0842be997f34a4811c10b4f92aa53af";
sha256 = "0riy2n99zrj1y2h2nd1m8w906jf1ack4zwc6si613ad98ykcw3rp";
rev = "d69254e1fbdc4a04c56719dde19e5eafb7b04b58";
sha256 = "0l9jfbyhx41ydj5r2jd09gm9j72zzzj1zwjc65d8xda30w3bgl5y";
};
meta.homepage = "https://github.com/folke/neodev.nvim/";
};
@ -5603,24 +5615,24 @@ final: prev:
neogen = buildVimPluginFrom2Nix {
pname = "neogen";
version = "2023-06-07";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "danymat";
repo = "neogen";
rev = "d8c8145304190b1889452b50ef437d9d49bdc033";
sha256 = "087ckq04l4nlzb7i5j25jync568i4w4kbg5jmn9vfcj9g8il0cah";
rev = "1dd0319ccf41b2498f45a3c7607f2ee325ffc6a0";
sha256 = "0f464qplyscvpqmp28fi7207ih03ykamdz1ximp4dkj9gi3iiazf";
};
meta.homepage = "https://github.com/danymat/neogen/";
};
neogit = buildVimPluginFrom2Nix {
pname = "neogit";
version = "2023-06-01";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "TimUntersberger";
repo = "neogit";
rev = "4cebc271b13cb7af6b5a3e8ad76a356660c0c00c";
sha256 = "0m6bvxymqb32x4h77diq6d7rxy7vbp2sx12d1pa3i8vp8vqwcm9b";
rev = "68a3e90e9d1ed9e362317817851d0f34b19e426b";
sha256 = "06ffj2hb6d4d3fhybkywszxb7skx6wkrd95syz7a3p91ly07a9ss";
};
meta.homepage = "https://github.com/TimUntersberger/neogit/";
};
@ -6155,12 +6167,12 @@ final: prev:
noice-nvim = buildVimPluginFrom2Nix {
pname = "noice.nvim";
version = "2023-06-06";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "folke";
repo = "noice.nvim";
rev = "acf47e2b863eb20f177aa1bd5398041513e731e1";
sha256 = "1w4vzkashi7yqkzgb9cdq7nv27ibkw94ih041jf36k9axmlffqbr";
rev = "a070cb87a180fd7e2c4387accff0be90268fb736";
sha256 = "0838s3vqp2f6g8q7dwd4ga0m4qr8kj02snbrxd6xz4zzzaz1hlbq";
};
meta.homepage = "https://github.com/folke/noice.nvim/";
};
@ -6203,12 +6215,12 @@ final: prev:
nui-nvim = buildVimPluginFrom2Nix {
pname = "nui.nvim";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "MunifTanjim";
repo = "nui.nvim";
rev = "062e366afcdf2bc1e9d28313a1df4ff14f05cb4e";
sha256 = "08hws2h2wc60i2swyh0lbqr6xxdpk0b2mm8h5vs6gbgk8vmvp5gx";
rev = "64bdc579873fa5bd303f6951ead2b419493c88e8";
sha256 = "1hffqk9vz6lw6jrixqy9sxj1wv2z7cbj08ykccyfym2zpij40gx6";
};
meta.homepage = "https://github.com/MunifTanjim/nui.nvim/";
};
@ -6239,12 +6251,12 @@ final: prev:
nvchad = buildVimPluginFrom2Nix {
pname = "nvchad";
version = "2023-06-07";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvchad";
repo = "nvchad";
rev = "c3c349c8302c4318a66c3c1a1a4d79f3d746381d";
sha256 = "0mbfgc0vsmyr4hw71kcpawk9m0xk70mdhd29pdbfy3ac3720gld4";
rev = "27992efc1cee6ac6c0ba002a8df8635464073fa4";
sha256 = "01j1zwb6r1zrfjaiy13n2salk9y9k6ivqg8dxjx9j8jqx7xqds2y";
};
meta.homepage = "https://github.com/nvchad/nvchad/";
};
@ -6359,12 +6371,12 @@ final: prev:
nvim-cmp = buildNeovimPluginFrom2Nix {
pname = "nvim-cmp";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-cmp";
rev = "b5a636d46c69bb371995c22d7a10ee1544004879";
sha256 = "00ij5f441xg1d3xg21f3kdmxmiyywzqv5kp1nklfmsp45ahxyhmi";
rev = "69e7d280cbe17e318b549a10ae3cae5810946be6";
sha256 = "119cfn70bb5bbfaq9rfc51dms64qfzzkn6aknj4lnd2dx1r56k00";
};
meta.homepage = "https://github.com/hrsh7th/nvim-cmp/";
};
@ -6599,12 +6611,12 @@ final: prev:
nvim-highlite = buildVimPluginFrom2Nix {
pname = "nvim-highlite";
version = "2023-06-01";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "Iron-E";
repo = "nvim-highlite";
rev = "2646e30f686b321638f82510162e4dc8104a57ff";
sha256 = "1nrjwfh2iv1nqg2miqdl7f277kwcgzc9n08dliiga8r01fsz1h4a";
rev = "5ff71ee26591bacdf3387f150759262427d56c13";
sha256 = "0nwlfw9ic7jjcaxlghy43scasf846258b75a3v4n71kxvs6w0xkd";
};
meta.homepage = "https://github.com/Iron-E/nvim-highlite/";
};
@ -6635,12 +6647,12 @@ final: prev:
nvim-jdtls = buildVimPluginFrom2Nix {
pname = "nvim-jdtls";
version = "2023-06-02";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-jdtls";
rev = "8597d57fb40d4ad503cf3acb2fdcfe1b0d8a193d";
sha256 = "1s7xnl8rsav4237mzh37q4qflhbfb2sq7vasdfgzx4mgad2x6kx5";
rev = "dbb8a403e90302bd5611da91975d37a0a26e1473";
sha256 = "11pfy4w67170fc32fhcyjr8lnw1g9yxrvsp9y676rfbp8imh1sf4";
};
meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/";
};
@ -6719,12 +6731,12 @@ final: prev:
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
rev = "0f598b9ab9f2a6d7e137074be99c8d89af44b990";
sha256 = "1nnf06sxa3bvlk1hzivnsh5r5yq9rfdywyqnj9qp043nczrdki2p";
rev = "08f1f347c718e945c3b1712ebb68c6834182cf3a";
sha256 = "0kqxbyb5hg6r4rv79bxjj8dvm3440137xxppp2a5idxi8sisdqad";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@ -6923,12 +6935,12 @@ final: prev:
nvim-scrollview = buildVimPluginFrom2Nix {
pname = "nvim-scrollview";
version = "2023-06-09";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "dstein64";
repo = "nvim-scrollview";
rev = "ca91af0a81694f65f2e4da5e76e395484f70a034";
sha256 = "1cjgbgm994ivbkdf3c1jlm9gzm87gmh768jjmhd8azr90h0fk6dv";
rev = "5508b210504249943a397948b89865728bf314b2";
sha256 = "07g4389kjcjp3vi9mcn3jay1zg7w3bv5kxs77619mrrcb8579j57";
};
meta.homepage = "https://github.com/dstein64/nvim-scrollview/";
};
@ -6959,12 +6971,12 @@ final: prev:
nvim-spectre = buildVimPluginFrom2Nix {
pname = "nvim-spectre";
version = "2023-05-12";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-pack";
repo = "nvim-spectre";
rev = "1abe23ec9b7bc3082164f4cb842d521ef70e080e";
sha256 = "0dwfhdf1xzw57mw0bxl6gpx3hf2a48ig6w7xcyf0xl5y2rq1php4";
rev = "8adb05dbfbd36862d700b5c3d1c26f0febf3f10d";
sha256 = "1swpwr78g1ygw1k5a881qnrv9dk728637a90m44f44ip5g51v95l";
};
meta.homepage = "https://github.com/nvim-pack/nvim-spectre/";
};
@ -7019,24 +7031,24 @@ final: prev:
nvim-tree-lua = buildVimPluginFrom2Nix {
pname = "nvim-tree.lua";
version = "2023-06-04";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-tree";
repo = "nvim-tree.lua";
rev = "f5d970d4506f385b29534252d8c15a782fa53034";
sha256 = "0xxxw51imnz93f69kvsj41i7hv2c5gw9g9h6scd06rq2gd654fj9";
rev = "034511714bacfadc5008e49f73fcef67e5613840";
sha256 = "1zgrcbcqxnjnkli235lm9jhds8irxwgh26djfmw1kzz2ry18srsi";
};
meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/";
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
rev = "2c59e0ff3da6514b03d853ebecb6c36c515a5d7d";
sha256 = "1h3amaa9p24k3rnj8l9jzq2a2lif7n0hz1z15ygssqqqc0vakvva";
rev = "f9d701176cb9a3e206a4c690920a8993630c3ec8";
sha256 = "08zc1irs12clw8fy140j4lk9m4wfjmmmm64dw915gyl0l6r9g0rb";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@ -7595,12 +7607,12 @@ final: prev:
plenary-nvim = buildNeovimPluginFrom2Nix {
pname = "plenary.nvim";
version = "2023-05-31";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
rev = "499e0743cf5e8075cd32af68baa3946a1c76adf1";
sha256 = "0r9aw3a53vzq0rdyvq7pi99pqbmnww0dm146pbj2kd33rb34daz6";
rev = "36aaceb6e93addd20b1b18f94d86aecc552f30c4";
sha256 = "0r0z27kwpgd8ladjj86h9gmyq2mxcwbiaj3a6mi1bz2dwxqiddxb";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@ -8921,12 +8933,12 @@ final: prev:
telescope-frecency-nvim = buildVimPluginFrom2Nix {
pname = "telescope-frecency.nvim";
version = "2023-04-11";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-frecency.nvim";
rev = "0a4a521471141ae3c94ff0ebcffcaff3c3aad147";
sha256 = "14n6fvkaa5f4k989a51ib3r7czy1q6ggym17g7rrd2vx4bk0n1vd";
rev = "3ddaaa0a6084592eed451ded5fcd279e4a60c122";
sha256 = "0bixv9ry2crbbr1184mw0fwbz8xyiqaz3bhqmgzrvx3jnvzfxk23";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/";
};
@ -9139,12 +9151,12 @@ final: prev:
telescope-nvim = buildNeovimPluginFrom2Nix {
pname = "telescope.nvim";
version = "2023-06-08";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
rev = "42267407ae588fd6c07238777d48869571193a49";
sha256 = "02ycgspcyvxfm7b62mqavvhii2z9r181qbk5ikkcy9nskgi2figd";
rev = "89ca7265726cb07ca316562b13fd0c406588af65";
sha256 = "17684bndaiw8gxi95lydc6xk2gyl5h62wfcmc07l687lpsy6c5l7";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@ -9488,12 +9500,12 @@ final: prev:
true-zen-nvim = buildVimPluginFrom2Nix {
pname = "true-zen.nvim";
version = "2022-08-07";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "Pocco81";
repo = "true-zen.nvim";
rev = "98740c76254c65576ec294551028b65081053588";
sha256 = "1g7wwb081yliqzpzmgjgvv9fn9qcry9k4xbgv0zcgz7z1lbhmyj1";
rev = "2b9e210e0d1a735e1fa85ec22190115dffd963aa";
sha256 = "1jq607an49n1lhclqjdbmaqa0609vmdsr2pvq9w2vwmxci6v3rks";
};
meta.homepage = "https://github.com/Pocco81/true-zen.nvim/";
};
@ -14929,12 +14941,12 @@ final: prev:
yats-vim = buildVimPluginFrom2Nix {
pname = "yats.vim";
version = "2023-03-27";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "HerringtonDarkholme";
repo = "yats.vim";
rev = "1be1f3afc06108d210a7725217f9a1e50f93808f";
sha256 = "089yfiz3k8gbsamydaihvzh1sy3vajklvm74853xyrfy3y21nw4h";
rev = "d3687891bdd333de4d831b6c7859e15d9ed3c4b2";
sha256 = "1b6383ihh3bya7gxyfj7b74qbm4sq33zyzhpicqlqcnaf5bml7nl";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/";
@ -14978,12 +14990,12 @@ final: prev:
zenbones-nvim = buildVimPluginFrom2Nix {
pname = "zenbones.nvim";
version = "2023-04-09";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "mcchrish";
repo = "zenbones.nvim";
rev = "74d444054a7377ec2a32c88130a197cae1439fc2";
sha256 = "0f32lz22cwp9q7mwdl59zvrvrhr4fsdym7fi6bdbgzp44ca56r9y";
rev = "e951fb866bd49497c55e9a943363c00b63cce4d1";
sha256 = "1lzqyryy9plvqzphrqbwkyf7f4a92ba0ggg7xbakf26gzijhzxy9";
};
meta.homepage = "https://github.com/mcchrish/zenbones.nvim/";
};
@ -15062,12 +15074,12 @@ final: prev:
catppuccin-nvim = buildVimPluginFrom2Nix {
pname = "catppuccin-nvim";
version = "2023-06-05";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "nvim";
rev = "233c4175780d9b4e39ae4fe4535c1e4c14bd76ed";
sha256 = "0jk2wxs5w7xr9bc7b1g3d2aqbpv6v84ky7xb3r0k982z431k3lsq";
rev = "2df7036c5c303c9184869936e40ca18935e4afcb";
sha256 = "0xv7694868023gdp0lxm08vv814cl9yw4nxwdk6sgvkk3za4kdin";
};
meta.homepage = "https://github.com/catppuccin/nvim/";
};
@ -15086,12 +15098,12 @@ final: prev:
chad = buildVimPluginFrom2Nix {
pname = "chad";
version = "2023-06-04";
version = "2023-06-09";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
rev = "e9dacf34363ad9a63c7d27caf5d07a9f713e600c";
sha256 = "0an6sj2li6s2r64xq47j919aj1psn4z81mzyfgndnlpjcqly4rwy";
rev = "b0c4766b27d9ea2a6b958a247721da8c593f4ff3";
sha256 = "0pz2q12bgg8jyyjnhcs2sn68qilm2z8w9h14gryy5klx94mdf8i6";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@ -15206,12 +15218,12 @@ final: prev:
rose-pine = buildVimPluginFrom2Nix {
pname = "rose-pine";
version = "2023-06-06";
version = "2023-06-10";
src = fetchFromGitHub {
owner = "rose-pine";
repo = "neovim";
rev = "6b7b38bbb3dac648dbf81f2728ce1101f476f920";
sha256 = "03hsav7w4rx6h0c6i4afj4siq7pzp652iqq4q2q2lz1qhy7lnz5k";
rev = "34f68e871527fb8d7d193e04dafedcf7005304c1";
sha256 = "0jnkny5fzn06k3s5yzgirr8n9gv4x0fjpv4723b19gnpk4mgrvhy";
};
meta.homepage = "https://github.com/rose-pine/neovim/";
};

View file

@ -203,12 +203,12 @@
};
commonlisp = buildGrammar {
language = "commonlisp";
version = "0.0.0+rev=747a6e1";
version = "0.0.0+rev=7a61fd7";
src = fetchFromGitHub {
owner = "theHamsta";
repo = "tree-sitter-commonlisp";
rev = "747a6e161ee8ab000f00f3adf0bec8dfbf6a8403";
hash = "sha256-KufA/oSVJG50J7lSYr6bkKUK33ODdALvo5UoTnFlAHM=";
rev = "7a61fd78c1673da5c38b7bef56794f0ac6250e91";
hash = "sha256-Rqv2ZcxtOBvoii+wO7LfwOztHmE8S/+Ia5SaKb8um7g=";
};
meta.homepage = "https://github.com/theHamsta/tree-sitter-commonlisp";
};
@ -303,12 +303,12 @@
};
dart = buildGrammar {
language = "dart";
version = "0.0.0+rev=0033b22";
version = "0.0.0+rev=9211496";
src = fetchFromGitHub {
owner = "UserNobody14";
repo = "tree-sitter-dart";
rev = "0033b223b5876b0db07da487dc799dcb63aedd1b";
hash = "sha256-KPe03jEeWP8XtxgFU1ThLxqQAV/edl2PQV5PGAijs4s=";
rev = "921149688d70f163d650f26c23f1bc42fac5d303";
hash = "sha256-XO7nh8JcLJanuelDcLS28E/55CzPs2F+mL60NMdbDVs=";
};
meta.homepage = "https://github.com/UserNobody14/tree-sitter-dart";
};
@ -1509,12 +1509,12 @@
};
racket = buildGrammar {
language = "racket";
version = "0.0.0+rev=e196cd4";
version = "0.0.0+rev=b726123";
src = fetchFromGitHub {
owner = "6cdh";
repo = "tree-sitter-racket";
rev = "e196cd417c425c2c3dc54f3b7b7666fe968ba50b";
hash = "sha256-BSHa+CnxMflSCwmxrtMGLS9/wqBfi7NFwmG2LyXKm6c=";
rev = "b7261231aeaa8157240427716287fb5cbbcf44a2";
hash = "sha256-q6/n7vjozuyoKZSupDRTlHX7vCFR5z69sr+PttQUnXI=";
};
meta.homepage = "https://github.com/6cdh/tree-sitter-racket";
};
@ -1586,12 +1586,12 @@
};
ruby = buildGrammar {
language = "ruby";
version = "0.0.0+rev=74fde5e";
version = "0.0.0+rev=2edbd43";
src = fetchFromGitHub {
owner = "tree-sitter";
repo = "tree-sitter-ruby";
rev = "74fde5e5fb2bb5978aaee7895188eb199f7facf0";
hash = "sha256-U8pEd4kEh9LSxugG9k7WkjF+PaHenZO+VIisLGKHJUs=";
rev = "2edbd437ee901b8fa95861ec538e56efe3ebd127";
hash = "sha256-VJQrAU1irsGN1/V7/fjDaIiSzunUGTs0imSHUHyWex4=";
};
meta.homepage = "https://github.com/tree-sitter/tree-sitter-ruby";
};
@ -1608,12 +1608,12 @@
};
scala = buildGrammar {
language = "scala";
version = "0.0.0+rev=007a184";
version = "0.0.0+rev=d42d40c";
src = fetchFromGitHub {
owner = "tree-sitter";
repo = "tree-sitter-scala";
rev = "007a1845a46d3b4c1edfd157491ffc5739e2340f";
hash = "sha256-o6wwnb8BCYgtUAsZzLND2ImAULXoiFKvFQugz7p9qFo=";
rev = "d42d40c7adbc638cf9fb571a5bc984715bf083c2";
hash = "sha256-fxvAe//NL/yPAmeHH8J3IOATNYzF9DS1NG8kBsfG+1g=";
};
meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala";
};

View file

@ -440,6 +440,7 @@ https://github.com/echasnovski/mini.nvim/,,
https://github.com/wfxr/minimap.vim/,,
https://github.com/jghauser/mkdir.nvim/,main,
https://github.com/SidOfc/mkdx/,,
https://github.com/mawkler/modicator.nvim/,HEAD,
https://github.com/tomasr/molokai/,,
https://github.com/loctvl842/monokai-pro.nvim/,HEAD,
https://github.com/shaunsingh/moonlight.nvim/,,pure-lua

View file

@ -1,6 +1,6 @@
{ lib
, mkDerivation
, fetchFromGitLab
, fetchurl
, cmake
, extra-cmake-modules
, pkg-config
@ -8,6 +8,7 @@
, kfilemetadata
, kirigami2
, kirigami-addons
, kitemmodels
, kquickcharts
, plasma-framework
, qqc2-desktop-style
@ -19,14 +20,11 @@
mkDerivation rec {
pname = "arianna";
version = "1.0.1";
version = "1.1.0";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "graphics";
repo = "arianna";
rev = "v${version}";
hash = "sha256-IETqKVIWeICFgqmBSVz8ea8100hHGXIo5S3O0OaIC04=";
src = fetchurl {
url = "mirror://kde/stable/arianna/arianna-${version}.tar.xz";
hash = "sha256-C60PujiUTyw2DwImu8PVmU687CP9CuWZ+d8LuZKthKY=";
};
nativeBuildInputs = [
@ -40,6 +38,7 @@ mkDerivation rec {
kfilemetadata
kirigami2
kirigami-addons
kitemmodels
kquickcharts
plasma-framework
qqc2-desktop-style

View file

@ -1,33 +1,29 @@
{ lib
, buildPythonApplication
, fetchPypi
, iso8601
, progressbar2
, requests
, twitch-python
, pytz
, python-dateutil
}:
buildPythonApplication rec {
pname = "twitch-chat-downloader";
version = "3.2.2";
version = "2.5.3";
# NOTE: Using maintained fork because upstream has stopped working, and it has
# not been updated in a while.
# https://github.com/PetterKraabol/Twitch-Chat-Downloader/issues/142
src = fetchPypi {
inherit version;
pname = "tcd";
sha256 = "ee6a8e22c54ccfd29988554b13fe56b2a1bf524e110fa421d77e27baa8dcaa19";
pname = "tdh-tcd";
sha256 = "sha256-dvj0HoF/2n5aQGMOD8UYY4EZegQwThPy1XJFvXyRT4Q=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "'pipenv==2022.4.30'," "" \
--replace "setuptools==62.1." "setuptools" \
--replace "requests==2.27.1" "requests" \
--replace "twitch-python==0.0.20" "twitch-python" \
--replace "pytz==2022.1" "pytz" \
--replace "python-dateutil==2.8.2" "python-dateutil"
'';
propagatedBuildInputs = [ requests twitch-python pytz python-dateutil ];
propagatedBuildInputs = [
iso8601
progressbar2
requests
];
doCheck = false; # no tests
@ -35,7 +31,7 @@ buildPythonApplication rec {
meta = with lib; {
description = "Twitch Chat Downloader";
homepage = "https://github.com/PetterKraabol/Twitch-Chat-Downloader";
homepage = "https://github.com/TheDrHax/Twitch-Chat-Downloader";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};

View file

@ -15,13 +15,13 @@ let
in
stdenv.mkDerivation rec {
pname = "xmrig";
version = "6.19.1";
version = "6.19.3";
src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig";
rev = "v${version}";
hash = "sha256-m8ot/IbpxdzHOyJymzZ7MWt4p78GTUuTjYZ9P1oGpWI=";
hash = "sha256-mvEmxN7spyQkavAcjW4bVt7xjtRTP77OwHzJ5UqsSoE=";
};
patches = [

View file

@ -86,11 +86,11 @@ let
in
stdenv.mkDerivation rec {
pname = "appgate-sdp";
version = "6.1.3";
version = "6.2.0";
src = fetchurl {
url = "https://bin.appgate-sdp.com/${lib.versions.majorMinor version}/client/appgate-sdp_${version}_amd64.deb";
sha256 = "sha256-uk7+XBKtTGnX/bHBQttmxlu9+gKvFqu3VhzC7uIYCNQ=";
sha256 = "sha256-qs4hrhQGPMYfhz95y8lNECcDGbsvypVN5DPSKsHhiFs=";
};
# just patch interpreter

View file

@ -6,7 +6,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "flexget";
version = "3.7.4";
version = "3.7.5";
format = "pyproject";
# Fetch from GitHub in order to use `requirements.in`
@ -14,7 +14,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "Flexget";
repo = "Flexget";
rev = "refs/tags/v${version}";
hash = "sha256-x5hwuc2yXDw8qWGLRJDH4V4rmvxjBKZaogmv4SxXoz4=";
hash = "sha256-abnCXRlpGp3+6zjKVOtlxjcC5VdaHjMyPC9PRlABJIA=";
};
postPatch = ''

View file

@ -11,13 +11,13 @@ assert trackerSearch -> (python3 != null);
mkDerivation rec {
pname = "qbittorrent" + lib.optionalString (!guiSupport) "-nox";
version = "4.5.2";
version = "4.5.3";
src = fetchFromGitHub {
owner = "qbittorrent";
repo = "qBittorrent";
rev = "release-${version}";
hash = "sha256-U0JDLLyIrMBqP4EqRAj48sdv9Om9cwdx4vP/0Ob1QB8=";
hash = "sha256-d3WYNMeM6ccn0M+EuCm4OBEq8NKU0Nx276Av5cobzfU=";
};
enableParallelBuilding = true;

View file

@ -13,16 +13,16 @@ let
common = { stname, target, postInstall ? "" }:
buildGoModule rec {
pname = stname;
version = "1.23.4";
version = "1.23.5";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
hash = "sha256-a2ulTP7J5+f5ikdKVIq4l6GQEJ8PH+MGNV4C0NReFyQ=";
hash = "sha256-IdzgbgPpwgSDbGc2sDlQAPRWEYBRgrxs4ldP404n9FQ=";
};
vendorHash = "sha256-d/So51ZMDdduUEgOOu9wc3kLh4dRzFR6S5BxcCVtiXI=";
vendorHash = "sha256-/mRuwBS05+6ugXNdfHJIhuOJWY7zcKvdvUdcpq4rVQ0=";
nativeBuildInputs = lib.optionals stdenv.isDarwin [
# Recent versions of macOS seem to require binaries to be signed when

View file

@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "morgen";
version = "2.7.2";
version = "2.7.3";
src = fetchurl {
url = "https://download.todesktop.com/210203cqcj00tw1/morgen-${version}.deb";
sha256 = "sha256-s3gGDBxT0kHEuWiE79P/CKMknTljIdxzAP4GkS+hk+g=";
sha256 = "sha256-8cGL2xQI4NYDPGqnvlnVVvha3wXFT8IcjRWTTGO7OJQ=";
};
nativeBuildInputs = [

View file

@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "srvc";
version = "0.18.0";
version = "0.19.0";
src = fetchFromGitHub {
owner = "insilica";
repo = "rs-srvc";
rev = "v${version}";
hash = "sha256-/NLqQcuJML0Yxu08dGma6WjTmuEsf5GbsgjX90f2K5U=";
hash = "sha256-ymDQJjD/7uY0nC0eJhSkT/X/oBSwVt6nAOOb81IKOQ4=";
};
cargoHash = "sha256-OlzMKiibWLmba2MhcUWzvgBDMyTqTBqaXYI2a0Uw7Jw=";
cargoHash = "sha256-OMw/n8STqjT1e3iWwJU4R1UzhhctF6gLkAddy5EWapc=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices

View file

@ -1,6 +1,6 @@
{ ballerina, lib, writeText, runCommand, makeWrapper, fetchzip, stdenv, openjdk }:
let
version = "2201.5.0";
version = "2201.6.0";
codeName = "swan-lake";
in stdenv.mkDerivation {
pname = "ballerina";
@ -8,7 +8,7 @@ in stdenv.mkDerivation {
src = fetchzip {
url = "https://dist.ballerina.io/downloads/${version}/ballerina-${version}-${codeName}.zip";
sha256 = "sha256-6UpUKoUHkYW9aPo2AbpP5uC1rCv578ultG9II1jZPRE=";
sha256 = "sha256-yttRswqNq8Tam1OwnC9klwrryDDqdHMzzRs9T9pYlnU=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -0,0 +1,38 @@
{ lib
, rustPlatform
, fetchCrate
, fetchpatch
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "starlark";
version = "0.9.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-h8TBWWw94Ka9C0W0i0aHACq6jO0QOLnLW+wTRzorHcc=";
};
cargoHash = "sha256-OLzotKyiG0JmtjH0ckRImHMPPxfQZ+8IHZtXlo1f8+Y=";
patches = [
# fix test broken due to using `fetchCrate`
# https://github.com/facebookexperimental/starlark-rust/pull/78
(fetchpatch {
name = "fix-test-rust-loc-when-tested-from-the-crate.patch";
url = "https://github.com/facebookexperimental/starlark-rust/commit/0e4f90c77868e506268fcb6c9d37368e5b2b8cf5.patch";
hash = "sha256-c8irAyS2IQ5C6s+0t4+hbW8aFptkwvCu9JHLyZqZsW4=";
stripLen = 1;
})
];
meta = with lib; {
description = "A Rust implementation of the Starlark language";
homepage = "https://github.com/facebookexperimental/starlark-rust";
changelog = "https://github.com/facebookexperimental/starlark-rust/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
broken = stdenv.isAarch64 || stdenv.isDarwin;
};
}

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "imgui";
version = "1.89.5";
version = "1.89.6";
src = fetchFromGitHub {
owner = "ocornut";
repo = "imgui";
rev = "v${version}";
sha256 = "sha256-Ha70CTSBpyF9S+/qG9lAhUlUT4vY0crOoi3vFsy65H8=";
sha256 = "sha256-fxoBvJnGawbPCe+U+5biBbkN33IsWDKMSReJYJrEMMo=";
};
dontBuild = true;

View file

@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "liboqs";
version = "0.7.2";
version = "0.8.0";
src = fetchFromGitHub {
owner = "open-quantum-safe";
repo = pname;
rev = version;
sha256 = "sha256-cwrTHj/WFDZ9Ez2FhjpRhEx9aC5xBnh7HR/9T+zUpZc=";
sha256 = "sha256-h3mXoGRYgPg0wKQ1u6uFP7wlEUMQd5uIBt4Hr7vjNtA=";
};
nativeBuildInputs = [ cmake ];

View file

@ -14,13 +14,13 @@
stdenv.mkDerivation rec {
pname = "mongoc";
version = "1.23.4";
version = "1.23.5";
src = fetchFromGitHub {
owner = "mongodb";
repo = "mongo-c-driver";
rev = "refs/tags/${version}";
hash = "sha256-jYEEWbm00V3zhzxH8jBkrj/+OC6CGjbh5qofNYmsdTk=";
hash = "sha256-gdf3+EsAIf2yfuw75bNAPlwZbi9NFhVB9Q5MmS6KSo8=";
};
postPatch = ''

View file

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "quictls";
version = "3.0.8+quic";
version = "3.0.9-quic1";
src = fetchFromGitHub {
owner = "quictls";
repo = "openssl";
rev = "openssl-${version}";
sha256 = "sha256-6t23EY+Gk/MvLOcYpDbL5jEr0rMaaPYOsc+12WFgv1c=";
sha256 = "sha256-AXhZD8gDnOSZajQL+fFOcGXH+yCnns9fCWvfk6/OFqA=";
};
patches = [

View file

@ -18,11 +18,11 @@ assert petsc-withp4est -> p4est.mpiSupport;
stdenv.mkDerivation rec {
pname = "petsc";
version = "3.19.1";
version = "3.19.2";
src = fetchurl {
url = "http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-${version}.tar.gz";
sha256 = "sha256-dNtgxTyAtI1cOeB7w5qIPsztiLnySl3hfPb0hakD4SA=";
sha256 = "sha256-EU82P3ebsWg5slwOcPiwrg2UfVDnL3xs3csRsAEHmxY=";
};
mpiSupport = !withp4est || p4est.mpiSupport;

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sonivox";
version = "3.6.11";
version = "3.6.12";
src = fetchFromGitHub {
owner = "pedrolcl";
repo = pname;
rev = "v${version}";
hash = "sha256-kCMY9A16g+CNNPn4PZ80QdEP6f58zCI3fQ1BFiK1ZQg=";
hash = "sha256-df3EwscTF9n1fazz5Oa3FIXgWXHruhJBzMt8Y+ELP94=";
};
nativeBuildInputs = [ cmake ];

View file

@ -1,32 +1,43 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, azure-common
, azure-mgmt-core
, buildPythonPackage
, fetchPypi
, isodate
, msrest
, msrestazure
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
version = "1.0.0";
pname = "azure-mgmt-privatedns";
disabled = isPy27;
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "b60f16e43f7b291582c5f57bae1b083096d8303e9d9958e2c29227a55cc27c45";
hash = "sha256-MtucYFpKj/ANNON1UdXrBrTsJnq53iph3SJ1ypWj+5g=";
extension = "zip";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
msrest
msrestazure
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# no tests included
doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.mgmt.privatedns" ];
pythonImportsCheck = [
"azure.common"
"azure.mgmt.privatedns"
];
meta = with lib; {
description = "Microsoft Azure DNS Private Zones Client Library for Python";

View file

@ -0,0 +1,55 @@
{ lib
, stdenv
, buildPythonPackage
, chardet
, openpyxl
, charset-normalizer
, fetchPypi
, fetchpatch
, pythonOlder
, pandas
, tabulate
, click
, pdfminer
, pypdf
, opencv3
}:
buildPythonPackage rec {
pname = "camelot-py";
version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-l6fZBtaF5AWaSlSaY646UfCrcqPIJlV/hEPGWhGB3+Y=";
};
propagatedBuildInputs = [
charset-normalizer
chardet
pandas
tabulate
click
pdfminer
openpyxl
pypdf
opencv3
];
doCheck = false;
pythonImportsCheck = [
"camelot"
];
meta = with lib; {
description = "A Python library to extract tabular data from PDFs";
homepage = "http://camelot-py.readthedocs.io";
changelog = "https://github.com/camelot-dev/camelot/blob/v${version}/HISTORY.md";
license = licenses.mit;
maintainers = with maintainers; [ _2gn ];
};
}

View file

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "click-option-group";
version = "0.5.5";
version = "0.5.6";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "click-contrib";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-ur7ycioZmgWMp4N+MURj1ggYMzs2eauteg1B5eLkSvc=";
hash = "sha256-uR5rIZPPT6pRk/jJEy2rZciOXrHWVWN6BfGroQ3znas=";
};
propagatedBuildInputs = [

View file

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "cohere";
version = "4.5.1";
version = "4.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-+/oeZpYyCrQava0lEt5uLlSc65XaBCyI/G/lwAxfBTA=";
hash = "sha256-4d89x+Pg5HZSUyxryH6OuMMGiMfeHXQX5Wy0XS++obY=";
};
nativeBuildInputs = [

View file

@ -8,6 +8,12 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
@ -46,9 +52,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "built"
version = "0.5.2"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b9c056b9ed43aee5e064b683aa1ec783e19c6acec7559e3ae931b7490472fbe"
checksum = "96f9cdd34d6eb553f9ea20e5bf84abb7b13c729f113fc1d8e49dc00ad9fa8738"
dependencies = [
"cargo-lock",
"chrono",
@ -56,9 +62,9 @@ dependencies = [
[[package]]
name = "bumpalo"
version = "3.12.2"
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
[[package]]
name = "byteorder"
@ -98,12 +104,12 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.24"
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
dependencies = [
"android-tzdata",
"iana-time-zone",
"num-integer",
"num-traits",
"winapi",
]
@ -159,7 +165,7 @@ dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
"memoffset 0.8.0",
"scopeguard",
]
@ -174,20 +180,21 @@ dependencies = [
[[package]]
name = "css-inline"
version = "0.8.5"
version = "0.9.0"
dependencies = [
"attohttpc",
"cssparser 0.29.6",
"cssparser",
"html5ever",
"indexmap",
"kuchiki",
"memchr",
"selectors",
"smallvec",
"url",
]
[[package]]
name = "css-inline-python"
version = "0.8.7"
version = "0.9.0"
dependencies = [
"built",
"css-inline",
@ -197,23 +204,6 @@ dependencies = [
"url",
]
[[package]]
name = "cssparser"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
dependencies = [
"cssparser-macros",
"dtoa-short",
"itoa 0.4.8",
"matches",
"phf 0.8.0",
"proc-macro2",
"quote",
"smallvec",
"syn 1.0.109",
]
[[package]]
name = "cssparser"
version = "0.29.6"
@ -222,7 +212,7 @@ checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
dependencies = [
"cssparser-macros",
"dtoa-short",
"itoa 1.0.6",
"itoa",
"matches",
"phf 0.10.1",
"proc-macro2",
@ -233,12 +223,12 @@ dependencies = [
[[package]]
name = "cssparser-macros"
version = "0.6.0"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
dependencies = [
"quote",
"syn 1.0.109",
"syn 2.0.18",
]
[[package]]
@ -256,15 +246,15 @@ dependencies = [
[[package]]
name = "dtoa"
version = "0.4.8"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169"
[[package]]
name = "dtoa-short"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
dependencies = [
"dtoa",
]
@ -293,9 +283,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.1.0"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
dependencies = [
"percent-encoding",
]
@ -332,9 +322,9 @@ dependencies = [
[[package]]
name = "getrandom"
version = "0.2.9"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
dependencies = [
"cfg-if",
"libc",
@ -358,9 +348,9 @@ dependencies = [
[[package]]
name = "html5ever"
version = "0.25.2"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
dependencies = [
"log",
"mac",
@ -378,14 +368,14 @@ checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
dependencies = [
"bytes",
"fnv",
"itoa 1.0.6",
"itoa",
]
[[package]]
name = "iana-time-zone"
version = "0.1.56"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
dependencies = [
"android_system_properties",
"core-foundation-sys",
@ -406,9 +396,9 @@ dependencies = [
[[package]]
name = "idna"
version = "0.3.0"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
@ -430,12 +420,6 @@ version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
[[package]]
name = "itoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "itoa"
version = "1.0.6"
@ -444,36 +428,24 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
[[package]]
name = "js-sys"
version = "0.3.62"
version = "0.3.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kuchiki"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
dependencies = [
"cssparser 0.27.2",
"html5ever",
"matches",
"selectors",
]
[[package]]
name = "libc"
version = "0.2.144"
version = "0.2.146"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
[[package]]
name = "lock_api"
version = "0.4.9"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
dependencies = [
"autocfg",
"scopeguard",
@ -481,12 +453,9 @@ dependencies = [
[[package]]
name = "log"
version = "0.4.17"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
[[package]]
name = "mac"
@ -496,13 +465,13 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "markup5ever"
version = "0.10.1"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
dependencies = [
"log",
"phf 0.8.0",
"phf_codegen",
"phf 0.10.1",
"phf_codegen 0.10.0",
"string_cache",
"string_cache_codegen",
"tendril",
@ -529,6 +498,15 @@ dependencies = [
"autocfg",
]
[[package]]
name = "memoffset"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
[[package]]
name = "miniz_oxide"
version = "0.7.1"
@ -550,16 +528,6 @@ version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
@ -581,9 +549,9 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.17.1"
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
[[package]]
name = "parking_lot"
@ -597,22 +565,22 @@ dependencies = [
[[package]]
name = "parking_lot_core"
version = "0.9.7"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
"windows-targets",
]
[[package]]
name = "percent-encoding"
version = "2.2.0"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "phf"
@ -620,9 +588,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
"phf_macros 0.8.0",
"phf_shared 0.8.0",
"proc-macro-hack",
]
[[package]]
@ -631,7 +597,7 @@ version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
"phf_macros 0.10.0",
"phf_macros",
"phf_shared 0.10.0",
"proc-macro-hack",
]
@ -646,6 +612,16 @@ dependencies = [
"phf_shared 0.8.0",
]
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
]
[[package]]
name = "phf_generator"
version = "0.8.0"
@ -666,20 +642,6 @@ dependencies = [
"rand 0.8.5",
]
[[package]]
name = "phf_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
dependencies = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "phf_macros"
version = "0.10.0"
@ -732,23 +694,23 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
version = "1.0.57"
version = "1.0.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4ec6d5fe0b140acb27c9a0444118cf55bfbb4e0b259739429abb4521dd67c16"
checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406"
dependencies = [
"unicode-ident",
]
[[package]]
name = "pyo3"
version = "0.18.3"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b1ac5b3731ba34fdaa9785f8d74d17448cd18f30cf19e0c7e7b1fdb5272109"
checksum = "cffef52f74ec3b1a1baf295d9b8fcc3070327aefc39a6d00656b13c1d0b8885c"
dependencies = [
"cfg-if",
"indoc",
"libc",
"memoffset",
"memoffset 0.9.0",
"parking_lot",
"pyo3-build-config",
"pyo3-ffi",
@ -758,9 +720,9 @@ dependencies = [
[[package]]
name = "pyo3-build-config"
version = "0.18.3"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cb946f5ac61bb61a5014924910d936ebd2b23b705f7a4a3c40b05c720b079a3"
checksum = "713eccf888fb05f1a96eb78c0dbc51907fee42b3377272dc902eb38985f418d5"
dependencies = [
"once_cell",
"target-lexicon",
@ -774,9 +736,9 @@ checksum = "be6d574e0f8cab2cdd1eeeb640cbf845c974519fa9e9b62fa9c08ecece0ca5de"
[[package]]
name = "pyo3-ffi"
version = "0.18.3"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd4d7c5337821916ea2a1d21d1092e8443cf34879e53a0ac653fbb98f44ff65c"
checksum = "5b2ecbdcfb01cbbf56e179ce969a048fd7305a66d4cdf3303e0da09d69afe4c3"
dependencies = [
"libc",
"pyo3-build-config",
@ -784,9 +746,9 @@ dependencies = [
[[package]]
name = "pyo3-macros"
version = "0.18.3"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9d39c55dab3fc5a4b25bbd1ac10a2da452c4aca13bb450f22818a002e29648d"
checksum = "b78fdc0899f2ea781c463679b20cb08af9247febc8d052de941951024cd8aea0"
dependencies = [
"proc-macro2",
"pyo3-macros-backend",
@ -796,9 +758,9 @@ dependencies = [
[[package]]
name = "pyo3-macros-backend"
version = "0.18.3"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97daff08a4c48320587b5224cc98d609e3c27b6d437315bd40b605c98eeb5918"
checksum = "60da7b84f1227c3e2fe7593505de274dcf4c8928b4e0a1c23d551a14e4e80a0f"
dependencies = [
"proc-macro2",
"quote",
@ -807,9 +769,9 @@ dependencies = [
[[package]]
name = "quote"
version = "1.0.27"
version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
dependencies = [
"proc-macro2",
]
@ -874,7 +836,7 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom 0.2.9",
"getrandom 0.2.10",
]
[[package]]
@ -919,9 +881,9 @@ dependencies = [
[[package]]
name = "redox_syscall"
version = "0.2.16"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
@ -990,22 +952,20 @@ dependencies = [
[[package]]
name = "selectors"
version = "0.22.0"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416"
dependencies = [
"bitflags",
"cssparser 0.27.2",
"cssparser",
"derive_more",
"fxhash",
"log",
"matches",
"phf 0.8.0",
"phf_codegen",
"phf_codegen 0.8.0",
"precomputed-hash",
"servo_arc",
"smallvec",
"thin-slice",
]
[[package]]
@ -1019,29 +979,29 @@ dependencies = [
[[package]]
name = "serde"
version = "1.0.163"
version = "1.0.164"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.163"
version = "1.0.164"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.16",
"syn 2.0.18",
]
[[package]]
name = "servo_arc"
version = "0.1.1"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741"
dependencies = [
"nodrop",
"stable_deref_trait",
@ -1110,9 +1070,9 @@ dependencies = [
[[package]]
name = "syn"
version = "2.0.16"
version = "2.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
dependencies = [
"proc-macro2",
"quote",
@ -1136,12 +1096,6 @@ dependencies = [
"utf-8",
]
[[package]]
name = "thin-slice"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
[[package]]
name = "tinyvec"
version = "1.6.0"
@ -1174,9 +1128,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
[[package]]
name = "unicode-ident"
version = "1.0.8"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
[[package]]
name = "unicode-normalization"
@ -1201,9 +1155,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.3.1"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
dependencies = [
"form_urlencoded",
"idna",
@ -1230,9 +1184,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
version = "0.2.85"
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
@ -1240,24 +1194,24 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.85"
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.16",
"syn 2.0.18",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.85"
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@ -1265,28 +1219,28 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.85"
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.16",
"syn 2.0.18",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.85"
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
[[package]]
name = "web-sys"
version = "0.3.62"
version = "0.3.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
dependencies = [
"js-sys",
"wasm-bindgen",
@ -1304,9 +1258,9 @@ dependencies = [
[[package]]
name = "webpki-roots"
version = "0.23.0"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa54963694b65584e170cf5dc46aeb4dcaa5584e652ff5f3952e56d66aff0125"
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
dependencies = [
"rustls-webpki",
]
@ -1339,31 +1293,7 @@ version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets 0.48.0",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
"windows-targets",
]
[[package]]
@ -1372,93 +1302,51 @@ version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"

View file

@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "css-inline";
version = "0.8.7";
version = "0.9.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "Stranger6667";
repo = "css-inline";
rev = "python-v${version}";
hash = "sha256-VtWvzEqozbRo9OIcObdaRRqDq9Tcp0KxXOPZWO5qTeE=";
hash = "sha256-JyciyXElGDvZgjfL0yz9KhCCDu9ZRZvOn8LwkmfYKSg=";
};
postPatch = ''
@ -39,7 +39,7 @@ buildPythonPackage rec {
ln -s ${./Cargo.lock} Cargo.lock
'';
name = "${pname}-${version}";
hash = "sha256-S8ebg5sMK7zoG84eAeXIWqDYuRVW9Mx9GJUAaKD9mxw=";
hash = "sha256-9oLVMcrAB3JX9XSN5uBvrazFFG6J6s6V3HnEfz/qj2E=";
};
nativeBuildInputs = [

View file

@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "cssutils";
version = "2.6.0";
version = "2.7.0";
disabled = pythonOlder "3.7";
@ -25,7 +25,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-99zSPBzskJ/fNjDeNG4UE7eyVVk23sFLouu5kTvwgY4=";
hash = "sha256-s2GDbkw5z5TwUjUVIecGAWzJ04ACapUTp0AA263LOAQ=";
};
nativeBuildInputs = [

View file

@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "dask-image";
version = "2022.9.0";
version = "2023.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-8SPf0Wp9FcdmYqasFHeFCe1e7ZtJT0Mi5ZRemxWSNUc=";
hash = "sha256-M6qckhUG2DvBw2uY5pAJFyuvatC7owVlb6XWkkrzAys=";
};
propagatedBuildInputs = [

View file

@ -8,14 +8,13 @@
buildPythonPackage rec {
pname = "django-scopes";
version = "1.2.0.post1";
version = "2.0.0";
src = fetchFromGitHub {
owner = "raphaelm";
repo = "django-scopes";
# No 1.2.0.post1 tag, see https://github.com/raphaelm/django-scopes/issues/27
rev = "0b93cdb6a8335cb02a8ea7296511358ba841d137";
hash = "sha256-djptJRkW1pfVbxhhs58fJA4d8dKZuvYRy01Aa3Btr+k=";
rev = "refs/tags/${version}";
hash = "sha256-CtToztLVvSb91pMpPNL8RysQJzlRkeXuQbpvbkX3jfM=";
};
propagatedBuildInputs = [

View file

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "geoalchemy2";
version = "0.13.1";
version = "0.13.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,7 +21,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "GeoAlchemy2";
inherit version;
hash = "sha256-VyRtRK6pC0xS+EwAb2dY0OGVHrkBjxBAmocUHwIVmxM=";
hash = "sha256-2Fp96qmiMJAXM/dBnWv/VnS4cwZR3hoH8rZCOqSSXQk=";
};
nativeBuildInputs = [
@ -64,6 +64,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Toolkit for working with spatial databases";
homepage = "https://geoalchemy-2.readthedocs.io/";
changelog = "https://github.com/geoalchemy/geoalchemy2/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};

View file

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, mock
, pythonOlder
, pytestCheckHook
, datalad
, git
, dcm2niix
, nibabel
, pydicom
@ -14,35 +15,39 @@
}:
buildPythonPackage rec {
version = "0.12.2";
version = "0.13.1";
pname = "heudiconv";
format = "pyproject";
disabled = isPy27;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
#sha256 = "0gzqqa4pzhywdbvks2qjniwhr89sgipl5k7h9hcjs7cagmy9gb05";
sha256 = "sha256-cYr74mw7tXRJRr8rXlu1UMZuU3YXXfDzhuc+vaa+7PQ=";
sha256 = "sha256-UUBRC6RToj4XVbJnxG+EKdue4NVpTAW31RNm9ieF1lU=";
};
postPatch = ''
# doesn't exist as a separate package with Python 3:
substituteInPlace heudiconv/info.py --replace "'pathlib'," ""
'';
propagatedBuildInputs = [
dcm2niix nibabel pydicom nipype dcmstack etelemetry filelock
nibabel
pydicom
nipype
dcmstack
etelemetry
filelock
];
nativeCheckInputs = [ dcm2niix pytest mock ];
nativeCheckInputs = [
datalad
dcm2niix
pytestCheckHook
git
];
# test_monitor and test_dlad require 'inotify' and 'datalad' respectively,
# and these aren't in Nixpkgs
checkPhase = "pytest -k 'not test_dlad and not test_monitor' heudiconv/tests";
preCheck = ''export HOME=$(mktemp -d)'';
meta = with lib; {
homepage = "https://heudiconv.readthedocs.io";
description = "Flexible DICOM converter for organizing imaging data";
changelog = "https://github.com/nipy/heudiconv/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ bcdarwin ];
};

View file

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "monai";
version = "1.1.0";
disabled = pythonOlder "3.7";
version = "1.2.0";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Project-MONAI";
repo = "MONAI";
rev = "refs/tags/${version}";
hash = "sha256-XTjZhynIiFtFjJSW6rRAnpErZvf6QHkuK4e2L6l3naM=";
hash = "sha256-nMxROOBkLPmw1GRKiZq6WGJq93LOpSg/7zIVOg+WzC8=";
};
# Ninja is not detected by setuptools for some reason even though it's present:
@ -37,7 +37,7 @@ buildPythonPackage rec {
BUILD_MONAI = 1;
doCheck = false; # takes too long; numerous dependencies, some not in Nixpkgs
doCheck = false; # takes too long; tries to download data
pythonImportsCheck = [
"monai"
@ -58,6 +58,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Pytorch framework (based on Ignite) for deep learning in medical imaging";
homepage = "https://github.com/Project-MONAI/MONAI";
changelog = "https://github.com/Project-MONAI/MONAI/releases/tag/${version}";
license = licenses.asl20;
maintainers = [ maintainers.bcdarwin ];
};

View file

@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "peewee-migrate";
version = "1.10.0";
version = "1.10.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "klen";
repo = "peewee_migrate";
rev = "refs/tags/${version}";
hash = "sha256-YDL7J/LmCRz6kRHQ0NrnVnvtS3rFkH08umjPI95mn6w=";
hash = "sha256-SBHeXHfhYjyXr+tODryKQfxZKy7l4ez5C6eU6FjS2qI=";
};
nativeBuildInputs = [

View file

@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "phonenumbers";
version = "8.13.11";
version = "8.13.13";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-PjJ02IyrNgm1X/W5NBcHXbyi0TBk8QP79WLg6h3aD5o=";
hash = "sha256-S9+MmJr/DNsQWu8XCtLCHxS0U3vLMs80nx9xDfmSpAo=";
};
nativeCheckInputs = [

View file

@ -3,20 +3,24 @@
, fetchPypi
, pytest
, pyvirtualdisplay
, isPy27
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-xvfb";
version = "2.0.0";
disabled = isPy27;
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1kyq5rg27dsnj7dc6x9y7r8vwf8rc88y2ppnnw6r96alw0nn9fn4";
hash = "sha256-N0arH00RWfA/dRY40FNonM0oQpGzi4+wPT67579pz8A=";
};
buildInputs = [ pytest ];
buildInputs = [
pytest
];
propagatedBuildInputs = [
pyvirtualdisplay
@ -25,6 +29,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A pytest plugin to run Xvfb for tests";
homepage = "https://github.com/The-Compiler/pytest-xvfb";
changelog = "https://github.com/The-Compiler/pytest-xvfb/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};

View file

@ -3,7 +3,6 @@
, buildPythonPackage
, cargo
, fetchFromGitHub
, fetchpatch
, h5py
, numpy
, pythonOlder
@ -17,7 +16,7 @@
buildPythonPackage rec {
pname = "safetensors";
version = "0.3.0";
version = "0.3.1";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -26,21 +25,11 @@ buildPythonPackage rec {
owner = "huggingface";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Qpb5lTw1WEME9tWEGfxC8l8dK9mGMH2rz+O+xGCrUxw";
hash = "sha256-RoIBD+zBKVzXE8OpI8GR371YPxceR4P8B9T1/AHc9vA=";
};
patches = [
# remove after next release
(fetchpatch {
name = "commit-cargo-lockfile";
relative = "bindings/python";
url = "https://github.com/huggingface/safetensors/commit/a7061b4235b59312010b2dd6f9597381428ee9a2.patch";
hash = "sha256-iH4vQOL2LU93kd0dSS8/JJxKGb+kDstqnExjYSSwi78";
})
];
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src patches;
inherit src;
sourceRoot = "source/bindings/python";
hash = "sha256-tC0XawmKWNGCaByHQfJEfmHM3m/qgTuIpcRaEFJC6dM";
};

View file

@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "stem";
version = "1.8.1";
version = "1.8.2";
# As of May 2023, the master branch of stem contains fixes for Python 3.11
# that the last release (1.8.1) doesn't. The test suite fails on both master
@ -12,7 +12,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-gdQ6fGaLqde8EQOy56kR6dFIKUs3PSelmujaee96Pi8=";
hash = "sha256-g/sZ/9TJ+CIHwAYFFIA4n4CvIhp+R4MACu3sTjhOtYI=";
};
postPatch = ''

View file

@ -6,14 +6,14 @@
buildPythonPackage rec {
pname = "striprtf";
version = "0.0.22";
version = "0.0.25";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-T7rb6EJPQStbJjv3L7PA2rTdtXTWCd1NCE9uK4sEQCs=";
hash = "sha256-5soxa3sCeBeYeNsxr4Y96ztTVdeSHgSH/6z8WWUvGQI=";
};
pythonImportsCheck = [

View file

@ -18,7 +18,7 @@
let
pname = "trainer";
version = "0.0.25";
version = "0.0.26";
in
buildPythonPackage {
inherit pname version;
@ -28,7 +28,7 @@ buildPythonPackage {
owner = "coqui-ai";
repo = "Trainer";
rev = "refs/tags/v${version}";
hash = "sha256-XhE3CbcbCZjuUI6dx1gNNpQrxycqCgmOgjkaQ8MtL9E=";
hash = "sha256-poC1aCXBb5mjZvqQjxhiv3+mKK262rxisgkHvAuNCsk=";
};
postPatch = ''

View file

@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "uproot";
version = "5.0.7";
version = "5.0.8";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -26,7 +26,7 @@ buildPythonPackage rec {
owner = "scikit-hep";
repo = "uproot5";
rev = "refs/tags/v${version}";
hash = "sha256-Ql5Hk2Cd/TB9k7CVrffV5vi70wps+y9SE10Sb2NMaeg=";
hash = "sha256-w5KUiizXzHz0+5WJNaaRYTaKwP8455klp8/1eKB8cQs=";
};
nativeBuildInputs = [

View file

@ -49,6 +49,7 @@ gem 'digest-sha3'
gem 'dip'
gem 'domain_name'
gem 'do_sqlite3'
gem 'erb-formatter'
gem 'ethon'
gem 'eventmachine'
gem 'excon'

View file

@ -14,14 +14,14 @@
stdenv.mkDerivation rec {
pname = "abuild";
version = "3.11.1";
version = "3.11.7";
src = fetchFromGitLab {
domain = "gitlab.alpinelinux.org";
owner = "alpine";
repo = pname;
rev = version;
sha256 = "sha256-hxk3EsoY6qvHsIyNv2qbttWYAvn0qNojSi8Y3pXl/p4=";
sha256 = "sha256-QcfUbjveSGAOMAyIrG0ZNNM4rqT7zWUHIhaMzBenKm0=";
};
buildInputs = [

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "mill";
version = "0.10.12";
version = "0.11.0";
src = fetchurl {
url = "https://github.com/com-lihaoyi/mill/releases/download/${version}/${version}-assembly";
hash = "sha256-MlPnJMuz35Zd+VQwvsadRRPULebR7GWN1vGV+cJ7s4c=";
hash = "sha256-LB7np8LTes97XWnOHxCTYXY5BRZxxJJ4EpMsG4zUHNQ=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "esbuild";
version = "0.17.19";
version = "0.18.0";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
hash = "sha256-PLC7OJLSOiDq4OjvrdfCawZPfbfuZix4Waopzrj8qsU=";
hash = "sha256-3tZbYLYuT1F/OumxlpcXmGTyBPCeK21Le35zxLGbQuw=";
};
vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
@ -22,6 +22,6 @@ buildGoModule rec {
homepage = "https://esbuild.github.io";
changelog = "https://github.com/evanw/esbuild/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ lucus16 marsam ];
maintainers = with maintainers; [ lucus16 marsam undefined-moe ];
};
}

View file

@ -1,4 +1,13 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, Cocoa, CoreServices, Foundation, rust, libiconv }:
{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
, Cocoa
, CoreServices
, Foundation
, rust
, libiconv
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-watch";
@ -23,7 +32,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A Cargo subcommand for watching over Cargo project's source";
homepage = "https://github.com/passcod/cargo-watch";
homepage = "https://github.com/watchexec/cargo-watch";
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd ivan ];
};

View file

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "libremines";
version = "1.9.1";
version = "1.10.0";
src = fetchFromGitHub {
owner = "Bollos00";
repo = pname;
rev = "v${version}";
hash = "sha256-CQE7fggRxFI/VatS7NMcIrC78tzqSwkkVC8gK9iKdVY=";
hash = "sha256-aqWzTvvRoke+Rakb6dNpDoD7haKHEKW3XARGLrH2WiY=";
};
nativeBuildInputs = [ cmake wrapQtAppsHook ];

View file

@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, cmake
, cmark
, ninja
, jdk17
, zlib
@ -24,13 +25,13 @@ let
in
stdenv.mkDerivation rec {
pname = "prismlauncher-unwrapped";
version = "6.3";
version = "7.0";
src = fetchFromGitHub {
owner = "PrismLauncher";
repo = "PrismLauncher";
rev = version;
sha256 = "sha256-7tptHKWkbdxTn6VIPxXE1K3opKRiUW2zv9r6J05dcS8=";
sha256 = "sha256-jBBHWN/ERUVzJAyebN7eFCODZg1P7QYPOBPIM+bIbak=";
};
nativeBuildInputs = [ extra-cmake-modules cmake jdk17 ninja ];
@ -40,12 +41,13 @@ stdenv.mkDerivation rec {
quazip
ghc_filesystem
tomlplusplus
cmark
] ++ lib.optional gamemodeSupport gamemode;
hardeningEnable = [ "pie" ];
cmakeFlags = lib.optionals (msaClientID != null) [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]
++ lib.optionals (lib.versionAtLeast qtbase.version "6") [ "-DLauncher_QT_VERSION_MAJOR=6" ];
++ lib.optionals (lib.versionOlder qtbase.version "6") [ "-DLauncher_QT_VERSION_MAJOR=5" ];
postUnpack = ''
rm -rf source/libraries/libnbtplusplus
@ -65,6 +67,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
changelog = "https://github.com/PrismLauncher/PrismLauncher/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ minion3665 Scrumplex ];
maintainers = with maintainers; [ minion3665 Scrumplex getchoo ];
};
}

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "afuse";
version = "0.4.1";
version = "0.5.0";
src = fetchFromGitHub {
owner = "pcarrier";
repo = "afuse";
rev = "v${version}";
sha256 = "06i855h8a1w2jfly2gfy7vwhb2fp74yxbf3r69s28lki2kzwjar6";
sha256 = "sha256-KpysJRvDx+12BSl9pIGRqbJAM4W1NbzxMgDycGCr2RM=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];

View file

@ -64,11 +64,11 @@ let
in
stdenv.mkDerivation rec {
pname = "freeipa";
version = "4.10.1";
version = "4.10.2";
src = fetchurl {
url = "https://releases.pagure.org/freeipa/freeipa-${version}.tar.gz";
sha256 = "sha256-q2rQzcBl1tI4/7+hxEwOY9ND86hObe7O7Y9EEH7cUoA=";
sha256 = "sha256-9DbfxJeEUGnBE7pULTPrVgqRePILUFk4Kn0WFNmcFVg=";
};
nativeBuildInputs = [

View file

@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "fwts";
version = "23.03.00";
version = "23.05.00";
src = fetchzip {
url = "https://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz";
sha256 = "sha256-loBlNQwsgv3n5qqvcT6w22Z/AshwIS7vQrBjLCL4z/Q=";
sha256 = "sha256-LRsxgvo7XQ62gPjdH4F+03MQyRZ1VxEwokI9RvVkpKI=";
stripRoot = false;
};

View file

@ -7,13 +7,13 @@
stdenv.mkDerivation {
pname = "ipu6-drivers";
version = "unstable-2023-05-19";
version = "unstable-2023-06-02";
src = fetchFromGitHub {
owner = "intel";
repo = "ipu6-drivers";
rev = "8c02a846d1afe0e108964a2d3db4acb175712da9";
hash = "sha256-f2EuxVkCvEPyH0XbLCv5t/Mi0jdk7BOh1QluG/TxZr0=";
rev = "8e410803b5d31c2c5bf32961f786d205ba6acc5d";
hash = "sha256-6GiDSGqVBTQrVMd+Rz/Lckvec+mtbuQ1w/ymC4Cie4I=";
};
postPatch = ''

View file

@ -3,11 +3,11 @@
let
elasticmq-server = stdenv.mkDerivation rec {
pname = "elasticmq-server";
version = "1.3.14";
version = "1.4.1";
src = fetchurl {
url = "https://s3-eu-west-1.amazonaws.com/softwaremill-public/${pname}-${version}.jar";
sha256 = "sha256-diTfRYV51d9QYx1E6ZbSSaM6qDIaqVPum9qsBagIcec=";
sha256 = "sha256-F1G9shYvntFiSgLdXPkSTpN/MP86ewhHRIchbXues+s=";
};
# don't do anything?

View file

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2023.6.0";
version = "2023.6.1";
components = {
"3_day_blinds" = ps: with ps; [
];

View file

@ -296,7 +296,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating
hassVersion = "2023.6.0";
hassVersion = "2023.6.1";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -312,7 +312,7 @@ in python.pkgs.buildPythonApplication rec {
# Primary source is the pypi sdist, because it contains translations
src = fetchPypi {
inherit pname version;
hash = "sha256-dEszA95EIwGMR2Ztpe7P8weh4FbqGJBkso7nCvTkPDc=";
hash = "sha256-8F2KiV/lujTbaWQl0IfCwzQ7HxNioHAHcffi7lL2hzs=";
};
# Secondary source is git for tests
@ -320,7 +320,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-0rhjh/mIevRdisWvTSx9QQjHdY7nMVpuGyTr9sChipk=";
hash = "sha256-ojiNHl+sm1mLiM+rjESeR2zPOCGkG3RQ9to6VfetmZQ=";
};
nativeBuildInputs = with python.pkgs; [

View file

@ -4,7 +4,7 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
version = "20230607.0";
version = "20230608.0";
format = "wheel";
src = fetchPypi {
@ -12,7 +12,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-O3hAF3QgZHm6q+manxlqWZLlSDxHMr86B3GdwMClxEk=";
hash = "sha256-bTOjenzcj8d5N192v3L7W7XZ0CRDcO8GbVUnxcMitQU=";
};
# there is nothing to strip in this package

View file

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "homeassistant-stubs";
version = "2023.6.0";
version = "2023.6.1";
format = "pyproject";
disabled = python.version != home-assistant.python.version;
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "KapJI";
repo = "homeassistant-stubs";
rev = "refs/tags/${version}";
hash = "sha256-efwrTHWc4m4biP7b39OU1GRifoKm49hEUTtIfrNGUeA=";
hash = "sha256-LiBn9NpR7sAAZX1yPT0V5LhQeALPvGVRzDam7cCBoi8=";
};
nativeBuildInputs = [

View file

@ -2,6 +2,7 @@
, buildGoModule
, fetchFromGitHub
, fetchNpmDeps
, fetchpatch
, cacert
, go
, git
@ -16,20 +17,28 @@
buildGoModule rec {
pname = "evcc";
version = "0.117.4";
version = "0.118.0";
src = fetchFromGitHub {
owner = "evcc-io";
repo = pname;
rev = version;
hash = "sha256-Qy2+E1//J6YKr/GAF0DItiyby78vCkfqg1pnvgBGSIQ=";
hash = "sha256-LQtFmN4IyDj/SRTik+ML3h1/tMwnTQ13dQHnghcDuUo=";
};
vendorHash = "sha256-3EHdjRCzrty7BnaSG4TAf52jRl0AVS6baSl2XhYUH0A=";
patches = [
(fetchpatch {
# fix ISO15118 vehicle setup
url = "https://github.com/evcc-io/evcc/commit/cc22337b422e4ee541a2c75740c039f2d029bd9b.patch";
hash = "sha256-Q+5Klpdv1cWVg716lbKl1JLwkr4LiLPRUoZHemFUQZc=";
})
];
vendorHash = "sha256-1YTVFn/DngzSQwYxGHCAaJl4ZnVj4au32YcpNo1m4w8=";
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-GmNyjXt5eskf59e9dt1OLB4gayBFbk/pG+7dJ5qoO+Q=";
hash = "sha256-QRjOmanO+phyqgZb/cAyU0dFKI6T6o84MuObANZoYNE=";
};
nativeBuildInputs = [

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "fastly-exporter";
version = "7.4.0";
version = "7.5.0";
src = fetchFromGitHub {
owner = "peterbourgon";
repo = pname;
rev = "v${version}";
sha256 = "sha256-jZXQ5N6xIBk85ae4dPERB0tY5TBeIT6ThG6rLYLHmJ0=";
sha256 = "sha256-Am8TqolPP0m+57plvG0pzh69KDD7rfabLU+E35LE6aI=";
};
vendorSha256 = "sha256-BBfI5SyTgaoXXHxhraH09YVi43v1mD6Ia8oyh+TYqvA=";
vendorHash = null;
meta = with lib; {
description = "Prometheus exporter for the Fastly Real-time Analytics API";

View file

@ -21,15 +21,15 @@ let
}.${stdenv.hostPlatform.system} or unsupported;
hash = {
aarch64-darwin = "sha256-Fk0JTHapmvf0FWDC/V+IoCDpjU0stVxo9XfAOXqMECM=";
aarch64-linux = "sha256-s2TP8t+87ZQka9q0AQBfxpBwryx/qNqXfxYojvJEaAU=";
x86_64-darwin = "sha256-nhWyAlc7vuM2c66lJ2e2sXFZlw7vWL9cKiDNrUS6LEs=";
x86_64-linux = "sha256-GbEQuTKCVfLd0oZbPKbVVbgGMi+eooBpc9zL2k/L3zY=";
aarch64-darwin = "sha256-FFRzT4OSpiBkgr4euqJYznmF7DW8tEhhJQ6iuQoUwP0=";
aarch64-linux = "sha256-Syrx2vwDoy5a6NXPyhDkdrVIYC7+6y1uGw4wq55joK8=";
x86_64-darwin = "sha256-eXjDL8xlC8BwjMOplNTHuGPaYfKgupr/YgtSl3xYOuo=";
x86_64-linux = "sha256-T7qk9cCBsx226DovHq1i3A/RIQq+Y7XhW2BIwJR6l68=";
}.${stdenv.hostPlatform.system} or unsupported;
in stdenv.mkDerivation rec {
inherit pname;
version = "1.4.1.3258";
version = "1.5.2.3484";
src = fetchurl {
url = "https://github.com/Prowlarr/Prowlarr/releases/download/v${version}/Prowlarr.master.${version}.${os}-core-${arch}.tar.gz";

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "monetdb";
version = "11.45.13";
version = "11.45.17";
src = fetchurl {
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
sha256 = "sha256-TYTzC1oiU/YwrJNABwyA50qSB12cwrMurqYFVCtSAcc=";
sha256 = "sha256-sVRNnaklw2mHkTz8Kw6x8uPfdN+I1n1tOjHBslyMpGc=";
};
postPatch = ''
@ -23,7 +23,8 @@ stdenv.mkDerivation rec {
$out/bin/Mz.py \
$out/bin/Mtest.py \
$out/bin/sqlsample.pl \
$out/bin/malsample.pl
$out/bin/malsample.pl \
$out/bin/Mconvert.py
'';
nativeBuildInputs = [ cmake python3 ];

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "pgvector";
version = "0.4.2";
version = "0.4.3";
src = fetchFromGitHub {
owner = "pgvector";
repo = "pgvector";
rev = "v${version}";
hash = "sha256-zx1IFhBVi0KLhQgnacCHS5VQUwcxXQAWpc1J+LrtcRU=";
hash = "sha256-WkbY/jc34ueJ6INIt9XCEW9jK7wUizeChgFXL9doZ4Q=";
};
buildInputs = [ postgresql ];

View file

@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
pname = "ckbcomp";
version = "1.220";
version = "1.221";
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "installer-team";
repo = "console-setup";
rev = version;
sha256 = "sha256-t/yz7l08gPjGycjcXxnQFt49KcvVF2G/XBn+ko8gAC8=";
sha256 = "sha256-4/g2RR3jDeEjntEC9IySn3hHofK23zKb8+kvTcbnpTI=";
};
buildInputs = [ perl ];

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, fuse, fuse3, pkg-config }:
stdenv.mkDerivation rec {
version = "1.17.2";
version = "1.17.3";
pname = "bindfs";
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
sha256 = "sha256-XyxQpwuNWMAluB+/Nk+tQy0VSTZjDOACPMiLqo1codA=";
sha256 = "sha256-wWh2CRVywjJCwW6Hxb5+NRL0Q6rmNzKNjAEcBx6TAus=";
};
nativeBuildInputs = [ pkg-config ];

View file

@ -12,13 +12,13 @@
mkDerivation rec {
pname = "antimicrox";
version = "3.3.3";
version = "3.3.4";
src = fetchFromGitHub {
owner = "AntiMicroX";
repo = pname;
rev = version;
sha256 = "sha256-svEk+IFttkCXmoAOFH3k2rRC/OL9HXOLiuGrCh10YNc=";
sha256 = "sha256-WEtKeQKRZcYpZ4mnFdj4ZRApBuD8fByf11Uu6ylbAcY=";
};
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config itstool ];

View file

@ -10,7 +10,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "agg"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"anyhow",
"avt",

View file

@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "agg";
version = "1.4.1";
version = "1.4.2";
src = fetchFromGitHub {
owner = "asciinema";
repo = pname;
repo = "agg";
rev = "v${version}";
sha256 = "sha256-ozkC3jaM7Q0BKS7KrgN+sI6YU0996ioTgbrJ4uJ6/9E=";
sha256 = "sha256-pyXGWSL2HnRfcLo1V/pFKNI08B51ZvmJsYhl893CUl0=";
};
cargoLock = {
@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A command-line tool for generating animated GIF files from asciicast v2 files produced by asciinema terminal recorder";
homepage = "https://github.com/asciinema/agg";
changelog = "https://github.com/asciinema/agg/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};

View file

@ -0,0 +1,43 @@
{ lib
, rustPlatform
, fetchCrate
, pkg-config
, wrapGAppsHook4
, gdk-pixbuf
, gtk4
, libadwaita
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "fclones-gui";
version = "0.1.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-rMeXUNpoEzqsDmlTmnHsFkas3zFgdCH0WSeP83RtT+c=";
};
cargoHash = "sha256-2oeyTMYg0PyTpSMLaub3nZGeoK5U6BlC8OReBwRi3DA=";
nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];
buildInputs = [
gdk-pixbuf
gtk4
libadwaita
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk_11_0.frameworks.IOKit
];
meta = with lib; {
description = "Interactive duplicate file remover";
homepage = "https://github.com/pkolaczk/fclones/tree/main/fclones-gui";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -10,11 +10,11 @@
stdenv.mkDerivation rec {
pname = "geekbench";
version = "6.0.3";
version = "6.1.0";
src = fetchurl {
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
hash = "sha256-08c5YBKljeFo31Y7WHEnLLiJdFJm8RfkY2Q44C2dp7k=";
hash = "sha256-GBJHnT6tfLdZuaawwhEvqOFYcmM42DZxRxm7cJNi0aA=";
};
dontConfigure = true;

View file

@ -15,7 +15,7 @@ let
python pytest nose cryptography pyyaml requests mock requests-mock
python-dateutil setuptools;
version = "4.20";
version = "4.22";
in
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
owner = "spaam";
repo = "svtplay-dl";
rev = version;
hash = "sha256-nG4ErqQC7GZDLClqcE3cliXxowzCku/SnB39AVIqkNw=";
hash = "sha256-xY6XhQb9Nn0W09EZuLUgPiCR4uGb8ibnORCZOVLFXwA=";
};
pythonPaths = [ cryptography pyyaml requests ];

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "kapp";
version = "0.56.0";
version = "0.57.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
rev = "v${version}";
sha256 = "sha256-j3iAz0Mn9gtvGqdYEUqJ4njDg2GsWdOn6KV3z28ok2w=";
sha256 = "sha256-kcG5Ag+1sMy+qePd8NwPFBgwNAboH6d6315fbpi8nTc=";
};
vendorHash = null;

View file

@ -4,14 +4,14 @@
stdenv.mkDerivation rec {
pname = "apk-tools";
version = "2.12.11";
version = "2.14.0";
src = fetchFromGitLab {
domain = "gitlab.alpinelinux.org";
owner = "alpine";
repo = "apk-tools";
rev = "v${version}";
sha256 = "sha256-vhEjzCuMvMZmzkCQK25JG3tT33KnX2fJbqdaTaeuhgo=";
sha256 = "sha256-NbADp017wL6h+Owg/GISidoXEq0seWaa98/Hyyq6pYc=";
};
nativeBuildInputs = [ pkg-config scdoc ]

View file

@ -6,15 +6,15 @@
rustPlatform.buildRustPackage rec {
pname = "bao";
version = "0.12.0";
version = "0.12.1";
src = fetchCrate {
inherit version;
pname = "${pname}_bin";
sha256 = "SkplBzor7Fv2+6K8wcTtZwjR66RfLPA/YNNUUHniWpM=";
sha256 = "sha256-+MjfqIg/aKPWhzxbPJ0dnS4egCj50Ib7ob3zXUSBXRg=";
};
cargoSha256 = "yr4HvtOWnU2dFTBgSsbVcuDELe1o1SEtZ7rN/ctKAdI=";
cargoHash = "sha256-SNsRN5XgchZq6/BZnMeahIqnkP4Jq6bZxbE5cDVpsQA=";
meta = {
description = "An implementation of BLAKE3 verified streaming";

View file

@ -0,0 +1,46 @@
{ lib
, buildGoModule
, fetchFromGitHub
, testers
, gtree
}:
buildGoModule rec {
pname = "gtree";
version = "1.7.45";
src = fetchFromGitHub {
owner = "ddddddO";
repo = "gtree";
rev = "v${version}";
hash = "sha256-XQJSc2BrWDXuG5I9cMUDY2Y2sTsolNBZ1zu8ci9To7k=";
};
vendorHash = "sha256-WI6li9q3AuWm6MP7Y1TL9TjcZozX6czgdXNRbLlu590=";
subPackages = [
"cmd/gtree"
];
ldflags = [
"-s"
"-w"
"-X=main.Version=${version}"
"-X=main.Revision=${src.rev}"
];
passthru.tests = {
version = testers.testVersion {
package = gtree;
command = "gtree version";
};
};
meta = with lib; {
description = "Generate directory trees and directories using Markdown or programmatically";
homepage = "https://github.com/ddddddO/gtree";
changelog = "https://github.com/ddddddO/gtree/releases/tag/${src.rev}";
license = licenses.bsd2;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -0,0 +1,52 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, withPcre2 ? stdenv.isLinux
, pcre2
, testers
, rare-regex
}:
buildGoModule rec {
pname = "rare";
version = "0.3.1";
src = fetchFromGitHub {
owner = "zix99";
repo = "rare";
rev = version;
hash = "sha256-p/L9OL5Eo98PcT5vvODy2xdSH7fuIZJQIAfqhdO490Q=";
};
vendorHash = "sha256-wUOtxNjL/4MosACCzPTWKWrnMZhxINfN1ppkRsqDh9M=";
buildInputs = lib.optionals withPcre2 [
pcre2
];
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
"-X=main.buildSha=${src.rev}"
];
tags = lib.optionals withPcre2 [
"pcre2"
];
passthru.tests = {
version = testers.testVersion {
package = rare-regex;
};
};
meta = with lib; {
description = "A fast text scanner/regex extractor and realtime summarizer";
homepage = "https://rare.zdyn.net";
changelog = "https://github.com/zix99/rare/releases/tag/${src.rev}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -28,5 +28,6 @@ stdenv.mkDerivation rec {
license = licenses.mit; # Expat version
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
mainProgram = "wayland-info";
};
}

View file

@ -11840,6 +11840,8 @@ with pkgs;
rarcrack = callPackage ../tools/security/rarcrack { };
rare-regex = callPackage ../tools/text/rare-regex { };
rarian = callPackage ../development/libraries/rarian { };
ratman = callPackage ../tools/networking/ratman { };
@ -17488,6 +17490,8 @@ with pkgs;
starlark = callPackage ../development/interpreters/starlark { };
starlark-rust = callPackage ../development/interpreters/starlark-rust { };
supercollider = libsForQt5.callPackage ../development/interpreters/supercollider {
fftw = fftwSinglePrec;
};
@ -18675,6 +18679,8 @@ with pkgs;
gtranslator = callPackage ../tools/text/gtranslator { };
gtree = callPackage ../tools/text/gtree { };
guff = callPackage ../tools/graphics/guff { };
guile-hall = callPackage ../development/tools/guile/guile-hall { };
@ -30837,6 +30843,8 @@ with pkgs;
fclones = callPackage ../tools/misc/fclones { };
fclones-gui = darwin.apple_sdk_11_0.callPackage ../tools/misc/fclones/gui.nix { };
fcp = callPackage ../tools/misc/fcp { };
fdupes = callPackage ../tools/misc/fdupes { };

View file

@ -1633,6 +1633,8 @@ self: super: with self; {
canopen = callPackage ../development/python-modules/canopen { };
camelot = callPackage ../development/python-modules/camelot { };
capstone = callPackage ../development/python-modules/capstone {
inherit (pkgs) capstone;
};

View file

@ -5,10 +5,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1y1li6hy8aps1hhabhfv3izvrirp7hi378kazijcqm9c5wn0cw5a";
sha256 = "001cwsb6496wp8g0nkyjqxgmii63aljydq132yb2ksdp8ml5zlgj";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
actionmailbox = {
dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail" "net-imap" "net-pop" "net-smtp"];
@ -16,10 +16,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0f0l0rb4iczman3v74xs9593n76bqw5wqkhx76k5364zfz8lz9dw";
sha256 = "0d990xy3jin8qa4l989r43kl5ykmi2kdlxqpnla10n5c7xp7xmci";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
actionmailer = {
dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "net-imap" "net-pop" "net-smtp" "rails-dom-testing"];
@ -27,10 +27,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "112ga1x7y5l0fmammlwajzqxp0fbg1ciw7f6ad9a55wrb0n3hk3y";
sha256 = "033981lhbq0vl8ppfpamqpqj3sq15x759899hvwli2imp3yw49r5";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@ -38,10 +38,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1cb0hqkfkc0b9s7swvi4nf64c24i3ma1gv09anr8a81k56s0rwxd";
sha256 = "0w717izq6k7wl2j6zn4516kg2iwg3zgdzja6b6gpk6y5nccr04hw";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
actiontext = {
dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "globalid" "nokogiri"];
@ -49,10 +49,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0pq6c14n932bdqigsvkmwiakjfmm6vcfz23k4z4yk77c1q6f68cg";
sha256 = "0bcpjhhbq6gl4h7hq2fianfz8vpdxf53gsj1ng04bkh5bxxrmrc1";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
actionview = {
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
@ -60,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1h9027sqzfcbc84dnzw8nxjyg15zrk1y2fc0468wg1xi9nmyw96z";
sha256 = "1z0xvdal339w7jvk7a5py0c1q5xh588vqrilgxizkvzm3hwf48a2";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
activejob = {
dependencies = ["activesupport" "globalid"];
@ -71,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "08xawfj8lkxlfwnmx3f7324w126rli6mqdx9j6ybz2ks9vxz0x3w";
sha256 = "18gsxi7vlg8y8k2fbhq44zd0mivjpnn4nrlfj037c7wvq5h8367v";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
activemodel = {
dependencies = ["activesupport"];
@ -82,10 +82,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0ymhsxgdb68zgf4zp07g2bymmpgn0b9r38avn9pagz1p5zy1ql9v";
sha256 = "0cjbk1xl6jl2d6sczpxnr8da7zbmshmrghqhqdcwqqzl6chcy2si";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
activerecord = {
dependencies = ["activemodel" "activesupport"];
@ -93,10 +93,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "01wb98i2zsbb4jcb4i6z72vb05wiks4hv9chc66h1rsxrv0zi4dv";
sha256 = "04x0bz3051linhmi52cfg31nsm4sgg27m7wp9p0cxrxdwc7q0bjl";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
activestorage = {
dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"];
@ -104,10 +104,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1jpqaxkxxk6pks6qg66qyi7k9sxkwx366sgy9sj97lf4zxvccc4r";
sha256 = "0mg236x3rkmdargkk9y6j9gqhkajzbk852gwnp1crp0difk7a4r8";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
activesupport = {
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
@ -115,10 +115,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "15m0b1im6i401ab51vzr7f8nk8kys1qa0snnl741y3sir3xd07jp";
sha256 = "1c7k5i6531z5il4q1jnbrv7x7zcl3bgnxp5fzl71rzigk6zn53ym";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
addressable = {
dependencies = ["public_suffix"];
@ -168,10 +168,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0c3jjwp5zax3jsk3ckxy0af8bqcaa7j707ahv2pxp2fi2sb3n3vw";
sha256 = "0dk1dxz6rshll9hk33halpnfrab1gzr8dgrb4d1zdhw5n30k3zsa";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
atomos = {
groups = ["default"];
@ -233,17 +233,6 @@
};
version = "3.2.4";
};
bulma-clean-theme = {
dependencies = ["jekyll" "jekyll-seo-tag"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1qvnl0xgzxbgyniv5m52mm5mr4rmgn3mqx0qa9xhl3lj75mfdfgh";
type = "gem";
};
version = "0.13.1";
};
byebug = {
groups = ["default"];
platforms = [];
@ -271,10 +260,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "06mywzjpi1bh04qwb2wzrngmbaia1mxib5kzwg62cz3j6wclg5xd";
sha256 = "1v5j3szb30d0i5x9bx85bmqz028qcaxswifvhgh7qy1bby4j5mis";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
camping = {
dependencies = ["mab" "rack"];
@ -897,6 +886,17 @@
};
version = "0.5.3";
};
erb-formatter = {
dependencies = ["syntax_tree"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1hr6q367ngnjjlclhjx8gma98dndmk04bj1pap5p5sqarn8ic01x";
type = "gem";
};
version = "0.4.3";
};
erubi = {
groups = ["default"];
platforms = [];
@ -943,10 +943,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0j826kfvzn7nc5pv950n270r0sx1702k988ad11cdlav3dcxxw09";
sha256 = "08r6qgbpkxxsihjmlspk3l1sr69q5hx35p1l4wp7rmkbzys89867";
type = "gem";
};
version = "0.99.0";
version = "0.100.0";
};
execjs = {
groups = ["default"];
@ -964,10 +964,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1f20vjx0ywx0zdb4dfx4cpa7kd51z6vg7dw5hs35laa45dy9g9pj";
sha256 = "08rxibzssqv14sgdfh45pdm26nbk54xp84vb5pb1mlyalszz1mc3";
type = "gem";
};
version = "2.7.4";
version = "2.7.6";
};
faraday-net_http = {
groups = ["default"];
@ -1100,10 +1100,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1zhids3iqxq8lcslvg49pkg3lyhw4y8ha0q3p0p2grx0dnl2kfi4";
sha256 = "1p9hyhfcdzp8ikidilwkiicz5zw2zpvmq7sa85bpf5sra82syvxg";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
gemoji = {
groups = ["default"];
@ -1131,10 +1131,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0q86kaw1hcyqbwbp5fbx2rlbv7wdklprf76xvxgsb8qa6dxgyv6f";
sha256 = "1gpjg0d4f0l0fyx96h4djq6jsbd20ai65vbwh2f19359bpmad1yh";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
git = {
dependencies = ["addressable" "rchardet"];
@ -1185,10 +1185,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0plr7159pfy9f5aaxygaz4shzb6y13g83r430583r9ixa6slnll3";
sha256 = "19pwbfjc8px03jsh26sbsszrmhil3zbvkpq8cjm5953s8zc8yygl";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
globalid = {
dependencies = ["activesupport"];
@ -1207,10 +1207,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "186fj7c6wz90y7h569qm25hvyarsslj1mkq0fz9mv7iyj64d9czk";
sha256 = "1bgzjfzvb2fb04c5dfzyx3qsq0d8xz1hy24nidy6a7dbg88aj6hy";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
gpgme = {
dependencies = ["mini_portile2"];
@ -1383,10 +1383,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1yk33slipi3i1kydzrrchbi7cgisaxym6pgwlzx7ir8vjk6wl90x";
sha256 = "0qaamqsh5f3szhcakkak8ikxlzxqnv49n2p7504hcz2l0f4nj0wx";
type = "gem";
};
version = "1.13.0";
version = "1.14.1";
};
iconv = {
groups = ["default"];
@ -1424,10 +1424,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1y8l6k34svmdyqxya3iahpwbpvmn3fswhwsvrz0nk1wyb8yfihsh";
sha256 = "10fd3i92897blalxfkgc0jjv0qqx31v7cm7j2b6a3b97an0bfz80";
type = "gem";
};
version = "1.5.4";
version = "1.5.6";
};
jbuilder = {
dependencies = ["actionview" "activesupport"];
@ -2372,10 +2372,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "10zmnzk0b6v48s9nyrgnidcinn06m52ph3mzzcjh5q7xrzii3mb8";
sha256 = "1mr2ibfk874ncv0qbdkynay738w2mfinlkhnbd5lyk5yiw5q1p10";
type = "gem";
};
version = "1.15.1";
version = "1.15.2";
};
octokit = {
dependencies = ["faraday" "sawyer"];
@ -2458,10 +2458,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "06g5ajjvm961yhqj4mm0j05sfz8fq0ybqcd5i37cyabm7jxxj4d4";
sha256 = "1hak6b4j0xvq2n12wfmd8666284nwig3fgwi5chcirpp5c0mgj2h";
type = "gem";
};
version = "4.1.5";
version = "4.1.7";
};
parallel = {
groups = ["default"];
@ -2636,20 +2636,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0yf4jmkyy8das7pj1xzwllfvzkhq2p6p534j61d9h4wz3nfyf0s5";
sha256 = "1v7fmv0n4bhdcwh60dgza44iqai5pg34f5pzm4vh4i5fwx7mpqxh";
type = "gem";
};
version = "6.2.2";
version = "6.3.0";
};
racc = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "09jgz6r0f7v84a7jz9an85q8vvmp743dqcsdm3z9c8rqcqv6pljq";
sha256 = "0m2i3shf5y7bj253z00gxpw2k5dr6nn97s7ppbs3q4zw78i0pz94";
type = "gem";
};
version = "1.6.2";
version = "1.7.0";
};
rack = {
groups = ["default"];
@ -2689,10 +2689,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1vg2jdp0qi7skfc4yxxlwk6hjfh0r736rl020012hwxvg8imnrsv";
sha256 = "1zip0qhk7pp6cvrir77p6v76wj68zaqik875qr5rapqz9am2pvsp";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
rails-dom-testing = {
dependencies = ["activesupport" "nokogiri"];
@ -2706,15 +2706,15 @@
version = "2.0.3";
};
rails-html-sanitizer = {
dependencies = ["loofah"];
dependencies = ["loofah" "nokogiri"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0ygav4xyq943qqyhjmi3mzirn180j565mc9h5j4css59x1sn0cmz";
sha256 = "1pm4z853nyz1bhhqr7fzl44alnx4bjachcr6rh6qjj375sfz3sc6";
type = "gem";
};
version = "1.5.0";
version = "1.6.0";
};
railties = {
dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor" "zeitwerk"];
@ -2722,10 +2722,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0w6pib1s0kmfnhjvxwh48flz7w4gy8y961n821w8by7d1g83vjwq";
sha256 = "0kn3cx00jnb7bjnh1k2q0dxk0r7nl1a0krgyk5ykxw1wcac81wyw";
type = "gem";
};
version = "7.0.4.3";
version = "7.0.5";
};
rainbow = {
groups = ["default"];
@ -3017,10 +3017,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0013mnzj6ql3v8nif7fm8n2832jnwa46azync6azsg9d4iblrfmy";
sha256 = "14gg24mn8gmi88133x2aq3k3wr3jq2l6rklyvsb1dmgnj7qhm1m9";
type = "gem";
};
version = "1.51.0";
version = "1.52.0";
};
rubocop-ast = {
dependencies = ["parser"];
@ -3028,10 +3028,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0gs8zjigzdqj0kcmmrhvd4zavwr6kz6h9qvrh9m7bhy56f4aqljs";
sha256 = "188bs225kkhrb17dsf3likdahs2p1i1sqn0pr3pvlx50g6r2mnni";
type = "gem";
};
version = "1.28.1";
version = "1.29.0";
};
rubocop-performance = {
dependencies = ["rubocop" "rubocop-ast"];
@ -3039,10 +3039,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1z6i24r0485fxa5n4g3rhp88w589fifszhd1khbzya2iiknkjxkr";
sha256 = "0bp02784v0qm8qcswi169s0ar6216rwk516v3idzpbxznpqp97ac";
type = "gem";
};
version = "1.17.1";
version = "1.18.0";
};
ruby-graphviz = {
dependencies = ["rexml"];
@ -3237,10 +3237,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0p6z0mdglwynlcz4mnlk1mz8vxsr41id1pf0dfrbgnwpv8zvlika";
sha256 = "1brf6h0kg5ssl1sb99gv41y8lk814jqa3nzakb79ywlhyzbn1513";
type = "gem";
};
version = "5.68.0";
version = "5.69.0";
};
sequel_pg = {
dependencies = ["pg" "sequel"];
@ -3427,10 +3427,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1jj8lny5hp8gm920k73r6xpb40j5mpiw1dcr8g5id4hxjggkw8by";
sha256 = "09p32vp94sa1mbr0if0adf02yzc4ns00lsmpwns2xbkncwpzrqm4";
type = "gem";
};
version = "0.10.1";
version = "0.10.2";
};
terminal-table = {
groups = ["default"];
@ -3467,10 +3467,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1qmhi6d9przjzhsyk9g5pq2j75c656msh6xzprqd2mxgphf23jxs";
sha256 = "0bmjgbv8158klwp2r3klxjwaj93nh1sbl4xvj9wsha0ic478avz7";
type = "gem";
};
version = "2.1.0";
version = "2.2.0";
};
timeout = {
groups = ["default"];
@ -3529,10 +3529,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0xibs7kgbsw401ywfw67wg47fmm7sdcypy85m25af9r2q2hbq7gb";
sha256 = "019ir4bcr8fag7dmq7ph6ilpvwjbv4qalip0bz7dlddbd6fk4vjs";
type = "gem";
};
version = "0.2.0";
version = "0.3.0";
};
typhoeus = {
dependencies = ["ethon"];