gnupg: correct a typo in their source code

This commit is contained in:
John Wiegley 2015-01-02 14:50:32 -06:00 committed by Shea Levy
parent bff056703a
commit a00a8d0711

View file

@ -20,6 +20,9 @@ stdenv.mkDerivation rec {
patchPhase = ''
find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
'' + stdenv.lib.optionalString stdenv.isDarwin ''
find . -name pcsc-wrapper.c | xargs sed -i 's/typedef unsinged int pcsc_dword_t/typedef unsigned int pcsc_dword_t/'
'' + ''
patch gl/stdint_.h < ${./clang.patch}
'';