11 lines
292 B
Nix
11 lines
292 B
Nix
|
{ 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";
|
||
|
}
|