lol

sphinx: Normalize the filename with NFC

The original problem with the normalization of the filename only
occurred because it was in NFC. However, when trying to fix it by
`mv`ing the file to a normalization-indifferent name, I used the NFD
normalized name from my file system. This means it only works on
normalizing file systems. The filename must be in the original encoding
and will be normalized by normalizing file systems like HFS+.

authored by

toonn and committed by
Jonathan Ringer
9b277c28 cb3813b7

+1 -1
+1 -1
pkgs/development/python-modules/sphinx/default.nix
··· 39 39 sha256 = "129x3kljxq7sbg5cc12z3cmjsili6l3qrsxllkx97id1a85f7zmj"; 40 40 extraPostFetch = '' 41 41 cd $out 42 - mv tests/roots/test-images/testimäge.png \ 42 + mv tests/roots/test-images/testimäge.png \ 43 43 tests/roots/test-images/testimæge.png 44 44 patch -p1 < ${./0001-test-images-Use-normalization-equivalent-character.patch} 45 45 '';