| 29 Oct 2022 |
qwertyuiop | * If this is the issue what should i add to
installPhase = ''
install -D -t $out *.el
''; | 19:56:35 |
qwertyuiop | In reply to @zxsou:matrix.org If this is the issue what should i add to
installPhase = ''
install -D -t $out *.el
''; okay, i made it work using this instead | 21:47:17 |
qwertyuiop | installPhase = ''
mkdir -p $out
cp -r -t $out *
chmod 755 *
'';
| 21:47:28 |
qwertyuiop | but i only got an empty misc/ dir in doom-private | 21:48:22 |
qwertyuiop | i think its because src isnt recursive | 21:48:43 |
qwertyuiop | src = lib.sourceByRegex ./. [ "misc" "config.org" "init.el" "packages.el" ];
| 21:50:31 |
qwertyuiop | okay, i gave up on the regex filter... I'm incompetent 😅 | 22:52:47 |
qwertyuiop | now the derivation looks like a mess | 22:53:00 |
qwertyuiop | but | 22:53:01 |
qwertyuiop |  Download image.png | 22:53:08 |
qwertyuiop | its working :D | 22:53:10 |
qwertyuiop | svg splash screen | 22:53:18 |
qwertyuiop | the svg changes colors depending on the theme | 22:53:37 |
qwertyuiop | In reply to @zxsou:matrix.org src = lib.sourceByRegex ./. [ "misc" "config.org" "init.el" "packages.el" ];
if someone is experienced with filters please tell me how to filter it with the contents of the misc/ dir, this i couldnt understand how to do that with this filter | 22:58:52 |