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
changeVersion = overrideFunc: version: hash: overrideFunc (oldAttrs: rec {
inherit version;
src = oldAttrs.src.override {
inherit version hash;
};
});
changeVersion =
overrideFunc: version: hash:
overrideFunc (oldAttrs: rec {
inherit version;
src = oldAttrs.src.override {
inherit version hash;
};
});
localPython = python3.override {
self = localPython;