copy instead of link the background files
This commit is contained in:
parent
cae52377df
commit
20a5f5670b
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation {
|
|||
installPhase = ''
|
||||
mkdir $out
|
||||
for f in $nsfwBgs; do
|
||||
ln -svf $src/$f $out/$f
|
||||
cp $src/$f $out/$f
|
||||
done
|
||||
'';
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ stdenvNoCC.mkDerivation {
|
|||
installPhase = ''
|
||||
mkdir $out
|
||||
for f in $sfwBgs; do
|
||||
ln -svf $src/$f $out/$f
|
||||
cp $src/$f $out/$f
|
||||
done
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue