linted
This commit is contained in:
atagen 2025-02-02 16:57:31 +11:00
parent 4e99a0e323
commit 7485de646a
95 changed files with 2743 additions and 2282 deletions

View file

@ -1,49 +1,18 @@
{
inputs,
lib,
...
}: {
}:
{
rice = import ./rice.nix;
murex-jump = inputs.murex-jump.overlays.murex-jump;
murex-starship = inputs.murex-starship.overlays.murex-starship;
comfyui = inputs.comfyui.overlays.comfyui;
comfyui-plugins = inputs.comfyui-plugins.overlays.comfyui-plugins;
murex = final: prev: {
inherit (inputs.murex-jump.overlays) murex-jump;
inherit (inputs.murex-starship.overlays) murex-starship;
inherit (inputs.comfyui.overlays) comfyui;
inherit (inputs.comfyui-plugins.overlays) comfyui-plugins;
murex = _final: prev: {
murex = prev.murex.overrideAttrs {
version = "dev-${builtins.toString inputs.murex.lastModifiedDate}";
src = inputs.murex;
vendorHash = "sha256-NIhg8D8snCNxpb3i2JG5tLcZteYBCGN4QbOowG/vgJE=";
vendorHash = "sha256-+V9rvWTtMtszR8JmTrntEy+CsAZsKYRblHsp6iaPuUs=";
};
};
# sirula = let
# src = inputs.sirula;
# in
# final: prev: {
# sirula =
# (prev.sirula.override (old: {
# rustPlatform =
# old.rustPlatform
# // {
# buildRustPackage = args:
# old.rustPlatform.buildRustPackage (args
# // {
# inherit src;
# cargoHash = prev.lib.fakeHash;
# cargoSha256 = prev.lib.fakeHash;
# cargoLock = {
# lockFile = "${inputs.sirula}" + /Cargo.lock;
# };
# });
# };
# }))
# .overrideAttrs (oldAttrs: {
# version = "1.0.0-${builtins.toString inputs.sirula.lastModifiedDate}";
# inherit src;
# cargoDeps = oldAttrs.cargoDeps.overrideAttrs (prev.lib.const {
# inherit src;
# outputHash = prev.lib.fakeHash;
# outputHashMode = "recursive";
# });
# });
# };
}