forked from mirrors/nixpkgs
Merge pull request #220752 from kirillrdy/openmoji
openmoji: fixup, patch for newer glob
This commit is contained in:
commit
98a55cb0fe
|
@ -63,6 +63,12 @@ in stdenv.mkDerivation rec {
|
|||
nodePackages.lodash
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# this is API change in glob >9
|
||||
substituteInPlace helpers/generate-font-glyphs.js \
|
||||
--replace "require('glob').sync" "require('glob').globSync"
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
|
|
Loading…
Reference in a new issue