diff --git a/container-era-fee-withdrawer.nix b/container-era-fee-withdrawer.nix index 4bc1414..95cbb45 100644 --- a/container-era-fee-withdrawer.nix +++ b/container-era-fee-withdrawer.nix @@ -1,5 +1,5 @@ { pkgs -, nixsgx-flake +, nixsgxLib , efw , tag ? "latest" , isAzure ? true @@ -7,7 +7,7 @@ let name = if isAzure then "era-fee-withdrawer-azure" else "era-fee-withdrawer-dcap"; in -pkgs.callPackage nixsgx-flake.lib.mkSGXContainer { +nixsgxLib.mkSGXContainer { inherit name; inherit tag; diff --git a/flake.lock b/flake.lock index d22507c..1df20bd 100644 --- a/flake.lock +++ b/flake.lock @@ -73,11 +73,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1717281328, - "narHash": "sha256-evZPzpf59oNcDUXxh2GHcxHkTEG4fjae2ytWP85jXRo=", + "lastModified": 1719707984, + "narHash": "sha256-RoxIr/fbndtuKqulGvNCcuzC6KdAib85Q8gXnjzA1dw=", "owner": "nixos", "repo": "nixpkgs", - "rev": "b3b2b28c1daa04fe2ae47c21bb76fd226eac4ca1", + "rev": "7dca15289a1c2990efbe4680f0923ce14139b042", "type": "github" }, "original": { @@ -93,11 +93,11 @@ "snowfall-lib": "snowfall-lib" }, "locked": { - "lastModified": 1719403531, - "narHash": "sha256-JYqPdAB393YZIndGs5om7EsLUha3fpLckb9RKjKN7Fg=", + "lastModified": 1719916365, + "narHash": "sha256-RzCFbGAHq6rTY4ctrmazGIx59qXtfrVfEnIe+L0leTo=", "owner": "matter-labs", "repo": "nixsgx", - "rev": "3a272950fa21601f31e8ca8b4e4897975069a00a", + "rev": "0309a20ee5bf12b7390aa6795409b448420e80f2", "type": "github" }, "original": { @@ -126,11 +126,11 @@ ] }, "locked": { - "lastModified": 1716675292, - "narHash": "sha256-7TFvVE4HR/b65/0AAhewYHEJzUXxIEJn82ow5bCkrDo=", + "lastModified": 1719005984, + "narHash": "sha256-mpFl3Jv4fKnn+5znYXG6SsBjfXHJdRG5FEqNSPx0GLA=", "owner": "snowfallorg", "repo": "lib", - "rev": "5d6e9f235735393c28e1145bec919610b172a20f", + "rev": "c6238c83de101729c5de3a29586ba166a9a65622", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index b2c8e9d..21caa1b 100644 --- a/flake.nix +++ b/flake.nix @@ -37,8 +37,8 @@ }; }; - container-era-fee-withdrawer-azure = pkgs.callPackage ./container-era-fee-withdrawer.nix { inherit nixsgx-flake; isAzure = true; }; - container-era-fee-withdrawer-dcap = pkgs.callPackage ./container-era-fee-withdrawer.nix { inherit nixsgx-flake; isAzure = false; }; + container-era-fee-withdrawer-azure = pkgs.callPackage ./container-era-fee-withdrawer.nix { isAzure = true; }; + container-era-fee-withdrawer-dcap = pkgs.callPackage ./container-era-fee-withdrawer.nix { isAzure = false; }; in { formatter = pkgs.nixpkgs-fmt;