|
{ nerd-font-patcher, stdenv, recursive }:
|
|
stdenv.mkDerivation {
|
|
name = "recursive-nerd-font-patched";
|
|
src = recursive;
|
|
nativeBuildInputs = [ nerd-font-patcher ];
|
|
buildPhase = ''
|
|
find -name RecMono\*.ttf -execdir nerd-font-patcher -c {} \;
|
|
'';
|
|
installPhase = "cp -a . $out";
|
|
}
|