frozen: Fix build on case-insensitive file systems

authored by Simon Menke and committed by GitHub bb3def88 6dca6ac7

+3
+3
pkgs/development/libraries/frozen/default.nix
··· 23 # Since it has only two source files, the best course of action to support 24 # cross compilation is to create a small meson.build file. 25 # Relevant upstream issue: https://github.com/cesanta/frozen/pull/71 26 preConfigure = '' 27 cp ${./meson.build} meson.build 28 ''; 29
··· 23 # Since it has only two source files, the best course of action to support 24 # cross compilation is to create a small meson.build file. 25 # Relevant upstream issue: https://github.com/cesanta/frozen/pull/71 26 + # We also remove the GN BUILD file to prevent conflicts on case-insesitive 27 + # file systems. 28 preConfigure = '' 29 + rm BUILD 30 cp ${./meson.build} meson.build 31 ''; 32