awsebcli: nixfmt-rfc-style

This commit is contained in:
Kirill Radzikhovskyy 2024-10-05 07:18:49 +10:00
parent 4f3042a038
commit 017f0a4ddb

View File

@ -1,12 +1,19 @@
{ lib, python3, fetchFromGitHub, git }: {
lib,
python3,
fetchFromGitHub,
git,
}:
let let
changeVersion = overrideFunc: version: hash: overrideFunc (oldAttrs: rec { changeVersion =
inherit version; overrideFunc: version: hash:
src = oldAttrs.src.override { overrideFunc (oldAttrs: rec {
inherit version hash; inherit version;
}; src = oldAttrs.src.override {
}); inherit version hash;
};
});
localPython = python3.override { localPython = python3.override {
self = localPython; self = localPython;