Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 810135363eccff4f460a59621e00ef566ab2a48e
      
https://github.com/NixOS/nixpkgs/commit/810135363eccff4f460a59621e00ef566ab2a48e
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/tools/filesystems/ceph/generic.nix

  Log Message:
  -----------
  ceph: Fix 'lib.optional' use

Produces a list of list as buildInputs.


  Commit: 3a762ef967e52bcf67b1de507f17d48b887d980a
      
https://github.com/NixOS/nixpkgs/commit/3a762ef967e52bcf67b1de507f17d48b887d980a
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/tools/networking/shadowsocks-libev/default.nix

  Log Message:
  -----------
  shadowsocks-libev: Fix 'lib.optional' use

Produces buildInputs having lists of lists.


  Commit: d2ef0577c5783333d3832bfb312516173b06fb8d
      
https://github.com/NixOS/nixpkgs/commit/d2ef0577c5783333d3832bfb312516173b06fb8d
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/libraries/grail/default.nix

  Log Message:
  -----------
  grail: Fix 'lib.optional' use

Produces a list-of-lists as buildInputs.


  Commit: e08599567a51c2ed0512187096baba8a7cf7da72
      
https://github.com/NixOS/nixpkgs/commit/e08599567a51c2ed0512187096baba8a7cf7da72
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/libraries/frame/default.nix

  Log Message:
  -----------
  frame: Fix 'lib.optional' use

Produces a list-of-lists in buildInputs


  Commit: f97ba3070a1881619cb5e066f7084ed86e193c25
      
https://github.com/NixOS/nixpkgs/commit/f97ba3070a1881619cb5e066f7084ed86e193c25
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/libraries/gdal/default.nix
    M pkgs/development/libraries/gdal/gdal-1_11.nix

  Log Message:
  -----------
  gdal: Fix reference to mysql dev output


  Commit: 4223e83a68e358cda3d375428cf5edad597cdd9d
      
https://github.com/NixOS/nixpkgs/commit/4223e83a68e358cda3d375428cf5edad597cdd9d
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/libraries/tcltls/default.nix

  Log Message:
  -----------
  tcltls: Fix reference to openssl dev output


  Commit: 0cfb79afacdd07c40f7c8b81b17df4f55a7205f2
      
https://github.com/NixOS/nixpkgs/commit/0cfb79afacdd07c40f7c8b81b17df4f55a7205f2
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/compilers/gcc/6/default.nix

  Log Message:
  -----------
  gcc6: Unify some differences with gcc5

In particular, fixes build with the new shuffled outputs.


  Commit: d45d243749540c00b84b93b7e5d2645a6fab44d0
      
https://github.com/NixOS/nixpkgs/commit/d45d243749540c00b84b93b7e5d2645a6fab44d0
  Author: Tuomas Tynkkynen <[email protected]>
  Date:   2016-08-30 (Tue, 30 Aug 2016)

  Changed paths:
    M pkgs/development/libraries/libb2/default.nix

  Log Message:
  -----------
  libbb2: Use "--enable-fat=yes" to avoid build nondeterminism

Otherwise it would pick various -march flags based on the CPU of the
compiling system, using beautiful code like this:

````
 63 AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1,
 64  [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
 65      int op = $1, eax, ebx, ecx, edx;
 66      FILE *f;
 67       __asm__("cpuid"
 68         : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
 69         : "a" (op));
 70      f = fopen("conftest_cpuid", "w"); if (!f) return 1;
 71      fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx);
 72      fclose(f);
 73      return 0;
 74 ])],

...

121       AC_CACHE_CHECK([whether avx is supported], [ax_cv_have_avx_ext],
122       [
123         ax_cv_have_avx_ext=no
124         if test "$((0x$ecx>>28&0x01))" = 1; then
125           ax_cv_have_avx_ext=yes
126         fi
127       ])
````


Compare: https://github.com/NixOS/nixpkgs/compare/0478682f09fd...d45d24374954
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to