mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 21:43:11 +00:00
add debugging of submodule value
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
e2eee2bc7c
commit
6aca7612e5
@ -1,6 +1,6 @@
|
||||
{
|
||||
description = "Nim Codex build flake";
|
||||
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||
circom-compat = {
|
||||
@ -22,7 +22,7 @@
|
||||
circomCompatPkg = circom-compat.packages.${system}.default;
|
||||
buildTarget = pkgsFor.${system}.callPackage ./nix/default.nix {
|
||||
inherit stableSystems circomCompatPkg;
|
||||
src = self;
|
||||
src = pkgsFor.${system}.lib.traceValFn (v: "submodules: ${toString v.submodules)}") self;
|
||||
};
|
||||
build = targets: buildTarget.override { inherit targets; };
|
||||
in rec {
|
||||
@ -31,7 +31,8 @@
|
||||
});
|
||||
|
||||
nixosModules.nim-codex = { config, lib, pkgs, ... }: import ./nix/service.nix {
|
||||
inherit self config lib pkgs;
|
||||
inherit config lib pkgs;
|
||||
self = pkgs.lib.traceValFn (v: "submodules: ${toString v.submodules)}") self;
|
||||
};
|
||||
|
||||
devShells = forAllSystems (system: let
|
||||
@ -72,4 +73,4 @@
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user