Skip to content

Commit

Permalink
fixed path support KaylorBen#16
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiderUnderUrBed committed Oct 30, 2024
1 parent c1686bc commit 2655b2e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,15 @@ let
'';

installPhase = ''
mkdir -p $out
echo "Copying contents from ${plugin} to output"
cp -r ${plugin}/* $out
mkdir -p "$out"
echo "Copying contents from ${src} to $out"
cp -r ${src}/* "$out/"
'';
});




recursiveUpdateAttrsList = list:
if (builtins.length list <= 1) then (builtins.elemAt list 0) else
recursiveUpdateAttrsList ([
Expand Down

0 comments on commit 2655b2e

Please sign in to comment.