Skip to content

Commit

Permalink
[nix] change layers folders to use lowercase directories
Browse files Browse the repository at this point in the history
Chisel will generate lowercase directoreise by default now, see:
chipsalliance/chisel#4505.

Signed-off-by: Qiming Chu <cchuqiming@gmail.com>
  • Loading branch information
Emin017 authored and Avimitin committed Feb 8, 2025
1 parent 143f9bd commit eee8ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/chisel/nix/gcd/rtl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
, enable-layers ? [ ]
}:
let
processLayer = lib.map (str: "./" + lib.replaceStrings [ "." ] [ "/" ] str);
processLayer = lib.map (str: "./" + lib.replaceStrings [ "." ] [ "/" ] (lib.toLower str));
enableLayersDirs = processLayer enable-layers;
in
stdenvNoCC.mkDerivation {
Expand Down

0 comments on commit eee8ce9

Please sign in to comment.