Skip to content

Commit

Permalink
test: Add self.clang to lib.mapAttrs in testenv.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
dudong2 committed Sep 8, 2024
1 parent b15dd9d commit 2170c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/testenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ poetry2nix.mkPoetryEnv {
lib.mapAttrs
(attr: systems: super.${attr}.overridePythonAttrs
(old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ map (a: self.${a}) systems;
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.clang ] ++ map (a: self.${a}) systems;
}))
buildSystems
);
Expand Down

0 comments on commit 2170c39

Please sign in to comment.