Skip to content

Commit

Permalink
llvmPackages.lldb: remove unnecessary inherit
Browse files Browse the repository at this point in the history
release_version is provided with callPackage
  • Loading branch information
Artturin committed Sep 6, 2023
1 parent 1d620be commit d7d68a1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/10/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ let
./lldb/procfs.patch
./lldb/gnu-install-dirs.patch
];
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/11/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ let
./lldb/procfs.patch
./lldb/gnu-install-dirs.patch
];
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/12/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ let
resourceDirPatch
./lldb/gnu-install-dirs.patch
];
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/13/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ let
&& !stdenv.targetPlatform.isAarch64
&& (lib.versionOlder darwin.apple_sdk.sdk.version "11.0")
) ./lldb/cpu_subtype_arm64e_replacement.patch;
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/14/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ let
&& !stdenv.targetPlatform.isAarch64
&& (lib.versionOlder darwin.apple_sdk.sdk.version "11.0")
) ./lldb/cpu_subtype_arm64e_replacement.patch;
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/15/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ in let
&& !stdenv.targetPlatform.isAarch64
&& (lib.versionOlder darwin.apple_sdk.sdk.version "11.0")
) ./lldb/cpu_subtype_arm64e_replacement.patch;
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/16/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ in let
&& !stdenv.targetPlatform.isAarch64
&& (lib.versionOlder darwin.apple_sdk.sdk.version "11.0")
) ./lldb/cpu_subtype_arm64e_replacement.patch;
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/llvm/git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ in let
resourceDirPatch
./lldb/gnu-install-dirs.patch
];
inherit llvm_meta release_version;
inherit llvm_meta;
};

# Below, is the LLVM bootstrapping logic. It handles building a
Expand Down

0 comments on commit d7d68a1

Please sign in to comment.