Author: viric Date: Mon Mar 19 21:50:58 2012 New Revision: 33279 URL: https://nixos.org/websvn/nix/?rev=33279&sc=1
Log: Adding a glibc patch to get proper first days of the week in the Catalan locale. Since 2008 somehow it cannot get fixed in glibc: https://bugzilla.redhat.com/show_bug.cgi?id=454629 Added: nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/catalan-firstdays.patch Modified: nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/common.nix Added: nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/catalan-firstdays.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/catalan-firstdays.patch Mon Mar 19 21:50:58 2012 (r33279) @@ -0,0 +1,13 @@ +https://bugzilla.redhat.com/show_bug.cgi?id=454629 + +--- glibc-20090510T1842/localedata/locales/ca_ES.orig 2009-06-26 14:05:18.422043552 +0200 ++++ glibc-20090510T1842/localedata/locales/ca_ES 2009-06-26 14:05:38.292042700 +0200 +@@ -138,6 +138,8 @@ + date_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065>/ + <U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020>/ + <U0025><U005A><U0020><U0025><U0059>" ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_PAPER Modified: nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/common.nix ============================================================================== --- nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/common.nix Mon Mar 19 19:43:31 2012 (r33278) +++ nixpkgs/trunk/pkgs/development/libraries/glibc/2.13/common.nix Mon Mar 19 21:50:58 2012 (r33279) @@ -77,7 +77,7 @@ /* Without this patch many KDE binaries crash. */ ./glibc-elf-localscope.patch - ]; + ] ++ stdenv.lib.optional installLocales ./catalan-firstdays.patch; postPatch = '' # Needed for glibc to build with the gnumake 3.82 _______________________________________________ nix-commits mailing list [email protected] http://lists.science.uu.nl/mailman/listinfo/nix-commits
