gnupg: correct a typo in their source code

This commit is contained in:
John Wiegley
2015-01-03 07:53:09 -05:00
committed by Shea Levy
parent bff056703a
commit a00a8d0711
+3
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}
'';