Skip to content

Commit c824013

Browse files
bbjubjub2494aldoborrero
authored andcommitted
inputs: remove duplicate
1 parent ee49e1f commit c824013

File tree

3 files changed

+1
-25
lines changed

3 files changed

+1
-25
lines changed

flake.lock

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
# packages
1111
nixpkgs.url = "github:nixos/nixpkgs/24.11";
1212
nixpkgs-2311.url = "github:nixos/nixpkgs/23.11";
13-
nixpkgs-2411.url = "github:nixos/nixpkgs/24.11";
1413
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
1514

1615
foundry-nix = {
@@ -85,10 +84,6 @@
8584
inherit system;
8685
nixpkgs = inputs.nixpkgs-2311;
8786
};
88-
pkgs2411 = lib.mkNixpkgs {
89-
inherit system;
90-
nixpkgs = inputs.nixpkgs-2411;
91-
};
9287
};
9388

9489
# devshell

pkgs/default.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@
1717
pkgs,
1818
pkgsUnstable,
1919
pkgs2311,
20-
pkgs2411,
2120
system,
2221
...
2322
}: let
2423
inherit (pkgs) callPackage;
2524
inherit (lib) platformPkgs platformApps;
2625
callPackageUnstable = pkgsUnstable.callPackage;
2726
callPackage2311 = pkgs2311.callPackage;
28-
callPackage2411 = pkgs2411.callPackage;
2927
in {
3028
packages = platformPkgs system rec {
3129
besu = callPackageUnstable ./by-name/be/besu {};
@@ -36,7 +34,7 @@
3634
dirk = callPackage ./by-name/di/dirk {inherit bls mcl;};
3735
dreamboat = callPackage ./by-name/dr/dreamboat {inherit blst;};
3836
eigenlayer = callPackage ./by-name/ei/eigenlayer {};
39-
erigon = callPackage2411 ./by-name/er/erigon {};
37+
erigon = callPackage ./by-name/er/erigon {};
4038
eth2-testnet-genesis = callPackage ./by-name/et/eth2-testnet-genesis {inherit bls;};
4139
eth2-val-tools = callPackage ./by-name/et/eth2-val-tools {inherit bls mcl;};
4240
eth-validator-watcher = callPackage2311 ./by-name/et/eth-validator-watcher {};

0 commit comments

Comments
 (0)