[Nix-commits] [NixOS/nixpkgs] 18a5e1: ocamlPackages.{camlpdf, cpdf}: 2.1.1 -> 2.2.1

2017-01-19 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 18a5e1522ce48de7d729dd25d7b4fe092f07fee8
  
https://github.com/NixOS/nixpkgs/commit/18a5e1522ce48de7d729dd25d7b4fe092f07fee8
  Author: Vincent Laporte 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/development/ocaml-modules/camlpdf/default.nix
M pkgs/development/ocaml-modules/cpdf/default.nix

  Log Message:
  ---
  ocamlPackages.{camlpdf,cpdf}: 2.1.1 -> 2.2.1


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] NixOS 17.03 release manager is Robin Gloster

2017-01-19 Thread Graham Christensen

Hooray! So glad to hear Robin will be carrying the torch forward.

To an easy and fruitful 17.03!

Graham
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] b4e2d7: pythonPackages.pysaml2: patch against external XML...

2017-01-19 Thread Graham Christensen
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b4e2d7c641252091b406d27e71c2c1256383c6fa
  
https://github.com/NixOS/nixpkgs/commit/b4e2d7c641252091b406d27e71c2c1256383c6fa
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.pysaml2: patch against external XML entities (CVE-2016-10127)

(cherry picked from commit cda11c958efabcde4303bd5fb2d9a2109d7ed60e)


  Commit: 4e25b8ceea2243d55be2792801fdedf3327e5c67
  
https://github.com/NixOS/nixpkgs/commit/4e25b8ceea2243d55be2792801fdedf3327e5c67
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M nixos/modules/services/web-servers/apache-httpd/wordpress.nix

  Log Message:
  ---
  wordpress: 4.6.1 -> 4.7.1 for multiple CVEs

CVE-2017-5487 CVE-2017-5488 CVE-2017-5489 CVE-2017-5490 CVE-2017-5491 
CVE-2017-5492 CVE-2017-5493

(cherry picked from commit c0f3b8d629e5b8935936efca05a5612a3712ebdc)


Compare: https://github.com/NixOS/nixpkgs/compare/cff9154372c7...4e25b8ceea22___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] cda11c: pythonPackages.pysaml2: patch against external XML...

2017-01-19 Thread Graham Christensen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cda11c958efabcde4303bd5fb2d9a2109d7ed60e
  
https://github.com/NixOS/nixpkgs/commit/cda11c958efabcde4303bd5fb2d9a2109d7ed60e
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.pysaml2: patch against external XML entities (CVE-2016-10127)


  Commit: c0f3b8d629e5b8935936efca05a5612a3712ebdc
  
https://github.com/NixOS/nixpkgs/commit/c0f3b8d629e5b8935936efca05a5612a3712ebdc
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M nixos/modules/services/web-servers/apache-httpd/wordpress.nix

  Log Message:
  ---
  wordpress: 4.6.1 -> 4.7.1 for multiple CVEs

CVE-2017-5487 CVE-2017-5488 CVE-2017-5489 CVE-2017-5490 CVE-2017-5491 
CVE-2017-5492 CVE-2017-5493


Compare: https://github.com/NixOS/nixpkgs/compare/b81d07e6e663...c0f3b8d629e5___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Is it possible to limit nix access to sudoers and/or a group?

2017-01-19 Thread Tomasz Czyż
It's probably against nix design but let's try.

Just an idea (haven't tried yet). Install nix as NIXUSER (without the
deamon, just nix to run builds). Other users can access paths, build by nix
from /nix/store but they won't access nix as it belongs to NIXUSER.

But they probably can access nix at any point at this stage (or maybe they
need sudo to be added to a group, not sure).




2017-01-20 2:15 GMT+00:00 Mateusz Czaplinski :

> I'd like to build a system where regular users cannot access nix
> commands, daemon, etc. Ideally, only users belonging to a particular
> group could access those. (Probably worse solution, but still
> acceptable, if this was limited to sudoers only.)
>
> Is it possible? If yes, how to do that on NixOS?
>
> Thanks & Best Regards,
> /Mateusz.
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>



-- 
Tomasz Czyż
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-dev] Is it possible to limit nix access to sudoers and/or a group?

2017-01-19 Thread Mateusz Czaplinski
I'd like to build a system where regular users cannot access nix
commands, daemon, etc. Ideally, only users belonging to a particular
group could access those. (Probably worse solution, but still
acceptable, if this was limited to sudoers only.)

Is it possible? If yes, how to do that on NixOS?

Thanks & Best Regards,
/Mateusz.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] b81d07: ardour: 5.4 -> 5.5

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b81d07e6e6639cc828fd8413ea53ce8ad939810a
  
https://github.com/NixOS/nixpkgs/commit/b81d07e6e6639cc828fd8413ea53ce8ad939810a
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/applications/audio/ardour/default.nix

  Log Message:
  ---
  ardour: 5.4 -> 5.5


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 7acadd: ardour{3, 4}: remove due to build failures

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7acadd6f9bb93b2fd070a55cb5eb4cfe1ae8ab43
  
https://github.com/NixOS/nixpkgs/commit/7acadd6f9bb93b2fd070a55cb5eb4cfe1ae8ab43
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
R pkgs/applications/audio/ardour/ardour3.nix
R pkgs/applications/audio/ardour/ardour4.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  ardour{3,4}: remove due to build failures


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] f11a0e: gnome3.nemiver: fix build

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f11a0e0efffe017fe6c4bee44f4e39b74a12516f
  
https://github.com/NixOS/nixpkgs/commit/f11a0e0efffe017fe6c4bee44f4e39b74a12516f
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/desktops/gnome-3/3.22/devtools/nemiver/default.nix

  Log Message:
  ---
  gnome3.nemiver: fix build


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 97f5ee: gnome3.libgames-support: 1.0 -> 1.2.1

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 97f5eea0b6cf3b83136d1bb452fd084390d3755a
  
https://github.com/NixOS/nixpkgs/commit/97f5eea0b6cf3b83136d1bb452fd084390d3755a
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/desktops/gnome-3/3.22/misc/libgames-support/default.nix

  Log Message:
  ---
  gnome3.libgames-support: 1.0 -> 1.2.1


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 35aebd: haskellPackages.servant_09_1_1, servant-client_0_9_...

2017-01-19 Thread John Wiegley
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 35aebd45f236127a6d33ee07e13082b9876b9813
  
https://github.com/NixOS/nixpkgs/commit/35aebd45f236127a6d33ee07e13082b9876b9813
  Author: John Wiegley 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-common.nix

  Log Message:
  ---
  haskellPackages.servant_09_1_1,servant-client_0_9_1_1: update http-api-data 
reference


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 0387e1: gmuc: 0.7.2 -> 0.10.1

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0387e10928d93ab03c4739e9fb08b4e49ef36db6
  
https://github.com/NixOS/nixpkgs/commit/0387e10928d93ab03c4739e9fb08b4e49ef36db6
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/applications/audio/gmu/default.nix

  Log Message:
  ---
  gmuc: 0.7.2 -> 0.10.1


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 0f8675: mpir: add patch to account for sed update

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0f86750d1d42cc6f74f125183d47dbb160757497
  
https://github.com/NixOS/nixpkgs/commit/0f86750d1d42cc6f74f125183d47dbb160757497
  Author: Robin Gloster 
  Date:   2017-01-20 (Fri, 20 Jan 2017)

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

  Log Message:
  ---
  mpir: add patch to account for sed update


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Nix in a Cluster Environment Talk Slides

2017-01-19 Thread Tomasz Czyż
Thanks Kevin, good stuff.

2017-01-19 22:15 GMT+00:00 Kevin Cox :

> Hello,
>
> There was recently a Nix meetup in Dublin and a couple of people
> expressed interest in my talk on using Nix in a clustered environment.
> Unfortunately I fat-fingered the recording but I have posted my slides
> for those who find them useful.
>
> https://kevincox.ca/2017/01/19/nix-and-mesos-talk/
>
> I'll try to make sure that we have the recording figured out for future
> meetups so that those who can't make it can get more value 🙂
>
> Thanks again to Tomasz and Bariša for organizing and hosting the event,
> it's great so see such great attendance. Also if you find yourself in
> the Dublin area feel free to join us: https://www.meetup.com/NixOS-Dublin/
>
> Cheers, Kevin
>
>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>
>


-- 
Tomasz Czyż
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] f4bff9: freepv: 0.3.0_beta1 -> 0.3.0, fix build

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f4bff9d633ef2d9ffb08d6267b2410b8cd4f5617
  
https://github.com/NixOS/nixpkgs/commit/f4bff9d633ef2d9ffb08d6267b2410b8cd4f5617
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/graphics/freepv/default.nix

  Log Message:
  ---
  freepv: 0.3.0_beta1 -> 0.3.0, fix build


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] Nix in a Cluster Environment Talk Slides

2017-01-19 Thread Kevin Cox
Hello,

There was recently a Nix meetup in Dublin and a couple of people
expressed interest in my talk on using Nix in a clustered environment.
Unfortunately I fat-fingered the recording but I have posted my slides
for those who find them useful.

https://kevincox.ca/2017/01/19/nix-and-mesos-talk/

I'll try to make sure that we have the recording figured out for future
meetups so that those who can't make it can get more value 🙂

Thanks again to Tomasz and Bariša for organizing and hosting the event,
it's great so see such great attendance. Also if you find yourself in
the Dublin area feel free to join us: https://www.meetup.com/NixOS-Dublin/

Cheers, Kevin



signature.asc
Description: OpenPGP digital signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] a927ab: qt55.qtbase: fix patch sha with fetchpatch instead...

2017-01-19 Thread Graham Christensen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a927abbee008bbaba0abd7c1b1879687ad9ecdbf
  
https://github.com/NixOS/nixpkgs/commit/a927abbee008bbaba0abd7c1b1879687ad9ecdbf
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/libraries/qt-5/5.5/qtbase/default.nix

  Log Message:
  ---
  qt55.qtbase: fix patch sha with fetchpatch instead of fetchurl


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 10cfe9: xcbuild: 0ab861ab -> 0.1.1 (#21895)

2017-01-19 Thread Matthew Justin Bauer
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 10cfe945fed31fef4ee97bddc2df5192eb69da32
  
https://github.com/NixOS/nixpkgs/commit/10cfe945fed31fef4ee97bddc2df5192eb69da32
  Author: Matthew Justin Bauer 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/tools/xcbuild/default.nix
M pkgs/development/tools/xcbuild/wrapper.nix

  Log Message:
  ---
  xcbuild: 0ab861ab -> 0.1.1 (#21895)

* xcbuild: add xcode-select wrapper
* xcbuild: update to 0.1.1


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 003ae4: packet: init at 20161215-2b8f07a

2017-01-19 Thread Graham Christensen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 003ae42ae66d21756f42079b52b5c8982ae0f293
  
https://github.com/NixOS/nixpkgs/commit/003ae42ae66d21756f42079b52b5c8982ae0f293
  Author: Graham Christensen 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
A pkgs/development/tools/packet/default.nix
A pkgs/development/tools/packet/deps.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  packet: init at 20161215-2b8f07a

Signed-off-by: Robin Gloster 


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] Trying to install the SailfishOS SDK

2017-01-19 Thread Christoph-Simon Senjak

Hi.

I am trying to write a package for the SailfishOS SDK. It can be 
downloaded from [1]. As this seems to be a graphical installer, I first 
want to run it manually (before trying to package it), so I ran a 
nix-shell in the following way:


nix-shell --pure -p glibc -p freetype -p xorg.libXrender -p glib -p 
pkgconfig -p patchelf -p xorg.libX11 -p xorg.libXi -p xorg.libSM -p 
xorg.libICE -p fontconfig -p mesa -p gcc5


Furthermore, I ran several patchelf commands:

patchelf --replace-needed libgobject-2.0.so.0 
/nix/store/8n9yqcp590d005mp9xmsn4fkkn8nbb0b-glib-2.48.2/lib/libgobject-2.0.so.0 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libX11-xcb.so.1 
/nix/store/04d88aazadyi6pr9ssyr16jr9bv90iiv-libX11-1.6.4/lib/libX11-xcb.so.1 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libXi.so.6 
/nix/store/kjas1jj6hmkj8bwm86xds9xnhb4b9w6m-libXi-1.7.7/lib/libXi.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libSM.so.6 
/nix/store/0ki1zd5icc1wxh8r0a3a8c2i12fvl8l2-libSM-1.2.2/lib/libSM.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libICE.so.6 
/nix/store/8jzhn006vyp6vd2ksa1dnsdzbjxlb0bd-libICE-1.0.9/lib/libICE.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libxcb.so.1 
/nix/store/iscdrla2wi6rvla9ndpxsy86qdzscyma-libxcb-1.12/lib/libxcb.so.1 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libfontconfig.so.1 
/nix/store/nwaqrp0327cfcjwj1ms9cnpnkvccl9fl-fontconfig-2.11.1-lib/lib/libfontconfig.so.1 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libfreetype.so.6 
/nix/store/blgfqhxdwh6mm2g7n663n7s9qcv1m40b-freetype-2.6.5/lib/libfreetype.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libXrender.so.1 
/nix/store/cb9bwxsssd6dymmy095prc8sgpcaqjlb-libXrender-0.9.10/lib/libXrender.so.1 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libX11.so.6 
/nix/store/04d88aazadyi6pr9ssyr16jr9bv90iiv-libX11-1.6.4/lib/libX11.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libglib-2.0.so.0 
/nix/store/8n9yqcp590d005mp9xmsn4fkkn8nbb0b-glib-2.48.2/lib/libglib-2.0.so.0 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
patchelf --replace-needed libGL.so.1 
/nix/store/fw5mpi91cqnjcp3f6skj2jgj1bwr5zkv-mesa-noglu-12.0.5/lib/libGL.so.1 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run


Finally, after running

patchelf --replace-needed libstdc++.so.6 
/nix/store/fqx37fwx5g0c4m6zv9wb6d8cfblrrvi6-gcc-5.4.0-lib/lib/libstdc++.so.6 
SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run


I get the error message

Inconsistency detected by ld.so: dl-version.c: 224: 
_dl_check_map_versions: Assertion `needed != NULL' failed!


Any ideas what I could do about that?

(I am using the stable branch of nixos)

Best Regards,
Christoph-Simon Senjak


[1]:http://releases.sailfishos.org/sdk/installers/1611/SailfishOSSDK-Beta-1611-Qt5-linux-64-offline.run
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] c20062: Fix evaluation (xmpppy: use correct 'licenses' att...

2017-01-19 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c20062311bdb2f10ed8898ce3f84f9fe53d4efe4
  
https://github.com/NixOS/nixpkgs/commit/c20062311bdb2f10ed8898ce3f84f9fe53d4efe4
  Author: Bjørn Forsman 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/python-modules/xmpppy/default.nix

  Log Message:
  ---
  Fix evaluation (xmpppy: use correct 'licenses' attr)

CC @Mic92


  Commit: 1b5d5e3913f3b1b736aebb06f99c57968370cb62
  
https://github.com/NixOS/nixpkgs/commit/1b5d5e3913f3b1b736aebb06f99c57968370cb62
  Author: Bjørn Forsman 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/aliases.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  nmap-graphical: rename from nmap_graphical

Align attrpath and pkgname. Add backwards compatibility alias.


Compare: https://github.com/NixOS/nixpkgs/compare/6762884a9a86...1b5d5e3913f3___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 5326cb: webkit: security 2.14.2 -> 2.14.3

2017-01-19 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5326cb7340e0cdc8a6f49291b3a127be9743a127
  
https://github.com/NixOS/nixpkgs/commit/5326cb7340e0cdc8a6f49291b3a127be9743a127
  Author: Vladimír Čunát 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/libraries/webkitgtk/2.14.nix

  Log Message:
  ---
  webkit: security 2.14.2 -> 2.14.3

https://webkitgtk.org/security/WSA-2017-0001.html
/cc #21967.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs]

2017-01-19 Thread fpletz
  Branch: refs/tags/black@2016-06-02
  Home:   https://github.com/NixOS/nixpkgs
___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs]

2017-01-19 Thread fpletz
  Branch: refs/tags/black@2016-09-01
  Home:   https://github.com/NixOS/nixpkgs
___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs]

2017-01-19 Thread fpletz
  Branch: refs/tags/black@2016-08-31
  Home:   https://github.com/NixOS/nixpkgs
___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 1708d4: python27Packages.xmpppy: fix ssl socket api

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1708d4da13b53557fc95b2e1416288c4672400b6
  
https://github.com/NixOS/nixpkgs/commit/1708d4da13b53557fc95b2e1416288c4672400b6
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/xmpppy/default.nix
A pkgs/development/python-modules/xmpppy/ssl.patch
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  python27Packages.xmpppy: fix ssl socket api


  Commit: 6762884a9a862b4feda5d7776c966c9ebca26554
  
https://github.com/NixOS/nixpkgs/commit/6762884a9a862b4feda5d7776c966c9ebca26554
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/jabberbot.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  python27Packages.jabberbot: init at 0.16


Compare: https://github.com/NixOS/nixpkgs/compare/db4bcbe7e1d1...6762884a9a86___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 87a5de: LTS Haskell 7.16

2017-01-19 Thread Peter Simons
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 87a5de01a7ed56330c8b360aa3ee00c70a248d59
  
https://github.com/NixOS/nixpkgs/commit/87a5de01a7ed56330c8b360aa3ee00c70a248d59
  Author: Peter Simons 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml

  Log Message:
  ---
  LTS Haskell 7.16


  Commit: db4bcbe7e1d16e6fa0bf3a7ac94b9ee3a096dbdd
  
https://github.com/NixOS/nixpkgs/commit/db4bcbe7e1d16e6fa0bf3a7ac94b9ee3a096dbdd
  Author: Peter Simons 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/haskell-modules/hackage-packages.nix

  Log Message:
  ---
  hackage-packages.nix: automatic Haskell package set update

This update was generated by hackage2nix v2.0.4-8-g0d49e12 from Hackage revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/de841f22822055b7e383395441f5136acb5bd8b1.


Compare: https://github.com/NixOS/nixpkgs/compare/a6ebca448e32...db4bcbe7e1d1___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nix] 167d12: build-remote: Implement in C++

2017-01-19 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 167d12b02cc8cadfaf7c28959532030d65687a8f
  
https://github.com/NixOS/nix/commit/167d12b02cc8cadfaf7c28959532030d65687a8f
  Author: Shea Levy 
  Date:   2016-11-10 (Thu, 10 Nov 2016)

  Changed paths:
M .gitignore
M Makefile
A src/build-remote/build-remote.cc
A src/build-remote/local.mk
M src/libstore/derivations.cc
M src/libstore/pathlocks.cc
M src/libstore/ssh-store.cc
M src/libstore/store-api.cc
M src/libstore/store-api.hh
M src/libutil/util.hh
M src/nix/copy.cc
M tests/remote-builds.nix

  Log Message:
  ---
  build-remote: Implement in C++


  Commit: bff3ad767ec21b37f291a2c4ae0eac7d91470ce5
  
https://github.com/NixOS/nix/commit/bff3ad767ec21b37f291a2c4ae0eac7d91470ce5
  Author: Shea Levy 
  Date:   2016-11-10 (Thu, 10 Nov 2016)

  Changed paths:
M src/build-remote/build-remote.cc

  Log Message:
  ---
  build-remote: replace strtoull with stoull to take advantage of C++ error 
handling


  Commit: d771c28613908aa8ac6aa72ceeca9048fbbcb776
  
https://github.com/NixOS/nix/commit/d771c28613908aa8ac6aa72ceeca9048fbbcb776
  Author: Shea Levy 
  Date:   2017-01-10 (Tue, 10 Jan 2017)

  Changed paths:
M src/build-remote/build-remote.cc

  Log Message:
  ---
  build-remote: Use std::set for feature sets


  Commit: 28db29786277ce6790ffb1567f9e679c62737b96
  
https://github.com/NixOS/nix/commit/28db29786277ce6790ffb1567f9e679c62737b96
  Author: Shea Levy 
  Date:   2017-01-10 (Tue, 10 Jan 2017)

  Changed paths:
M src/build-remote/build-remote.cc

  Log Message:
  ---
  build-remote: Don't use C++ streams to read the conf file


  Commit: 8af062f372ae5db6a90700641f15d98505b4a839
  
https://github.com/NixOS/nix/commit/8af062f372ae5db6a90700641f15d98505b4a839
  Author: Eelco Dolstra 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M .gitignore
M Makefile
A src/build-remote/build-remote.cc
A src/build-remote/local.mk
M src/libstore/derivations.cc
M src/libstore/pathlocks.cc
M src/libstore/ssh-store.cc
M src/libstore/store-api.cc
M src/libstore/store-api.hh
M src/libutil/util.hh
M src/nix/copy.cc
M tests/remote-builds.nix

  Log Message:
  ---
  Merge pull request #981 from shlevy/build-remote-c++

build-remote: Implement in C++


Compare: https://github.com/NixOS/nix/compare/21948deed99a...8af062f372ae___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] a6ebca: iproute: update fan patches

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a6ebca448e327cc0e415fdbe60f729da84c893b2
  
https://github.com/NixOS/nixpkgs/commit/a6ebca448e327cc0e415fdbe60f729da84c893b2
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/os-specific/linux/iproute/1000-ubuntu-poc-fan-driver.patch

  Log Message:
  ---
  iproute: update fan patches


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nix] cc3b93: Handle SIGINT etc. via a sigwait() signal handler ...

2017-01-19 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: cc3b93c991e04aff49a44dbced53f070a06f426e
  
https://github.com/NixOS/nix/commit/cc3b93c991e04aff49a44dbced53f070a06f426e
  Author: Eelco Dolstra 
  Date:   2017-01-17 (Tue, 17 Jan 2017)

  Changed paths:
M src/libmain/shared.cc
M src/libstore/download.cc
M src/libutil/util.cc
M src/libutil/util.hh

  Log Message:
  ---
  Handle SIGINT etc. via a sigwait() signal handler thread

This allows other threads to install callbacks that run in a regular,
non-signal context. In particular, we can use this to signal the
downloader thread to quit.

Closes #1183.


  Commit: 90ee1e3fe3b3f0cba8dd31ae161eac79ba249291
  
https://github.com/NixOS/nix/commit/90ee1e3fe3b3f0cba8dd31ae161eac79ba249291
  Author: Eelco Dolstra 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
R tests/timeout.builder.sh
M tests/timeout.nix
M tests/timeout.sh

  Log Message:
  ---
  Add a test for --max-silent-time


  Commit: 2579e32c2bf47a483b823fdf12f0ff66ecaf1b95
  
https://github.com/NixOS/nix/commit/2579e32c2bf47a483b823fdf12f0ff66ecaf1b95
  Author: Eelco Dolstra 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M src/libstore/build.cc

  Log Message:
  ---
  Use std::unique_ptr for HookInstance


  Commit: 63e10b4d28e64107e51207f292ab0093a95c1bc6
  
https://github.com/NixOS/nix/commit/63e10b4d28e64107e51207f292ab0093a95c1bc6
  Author: Eelco Dolstra 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M src/libutil/util.hh

  Log Message:
  ---
  Cleanup


  Commit: 21948deed99a3295e4d5666e027a6ca42dc00b40
  
https://github.com/NixOS/nix/commit/21948deed99a3295e4d5666e027a6ca42dc00b40
  Author: Eelco Dolstra 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M src/libmain/shared.cc
M src/libstore/build.cc
M src/libutil/util.cc
M src/libutil/util.hh
M tests/timeout.nix
M tests/timeout.sh

  Log Message:
  ---
  Kill builds when we get EOF on the log FD

This closes a long-time bug that allowed builds to hang Nix
indefinitely (regardless of timeouts) simply by doing

  exec > /dev/null 2>&1; while true; do true; done

Now, on EOF, we just send SIGKILL to the child to make sure it's
really gone.


Compare: https://github.com/NixOS/nix/compare/c0d55f918379...21948deed99a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 9e60e4: dvdisaster: fix broken make discovery

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9e60e432ba9a3d44e74b94e380714e00353478fd
  
https://github.com/NixOS/nixpkgs/commit/9e60e432ba9a3d44e74b94e380714e00353478fd
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/tools/cd-dvd/dvdisaster/default.nix

  Log Message:
  ---
  dvdisaster: fix broken make discovery


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] cff915: agrep: init at 3.41.5

2017-01-19 Thread c74d
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cff9154372c7bdc9833f5aa8d49f943b4b96f708
  
https://github.com/NixOS/nixpkgs/commit/cff9154372c7bdc9833f5aa8d49f943b4b96f708
  Author: c74d <857...@gmail.com>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
A pkgs/tools/text/agrep/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  agrep: init at 3.41.5

In category `tools`, subcategory `text`, add a package definition for
the program [`agrep`] [1] — "Approximate `grep` for fast fuzzy string
searching".

I have tested this patch per nixpkgs manual section 11.1 ("Making
patches").

[1]: 

(cherry picked from commit 0033f6076ee5c462722bf6077c40ff7949ae6020)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] d9418b: eduke32: fix build

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d9418bf8fbf7136cc10ec969ad8017a4ed3d4f3d
  
https://github.com/NixOS/nixpkgs/commit/d9418bf8fbf7136cc10ec969ad8017a4ed3d4f3d
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/games/eduke32/default.nix

  Log Message:
  ---
  eduke32: fix build


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 9cb672: treewide: fix evaluation

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9cb67274fc71b0700a9ef18ece6195173783df84
  
https://github.com/NixOS/nixpkgs/commit/9cb67274fc71b0700a9ef18ece6195173783df84
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/development/interpreters/hy/default.nix
M pkgs/development/python-modules/flask-wtf.nix
M pkgs/development/python-modules/ghdiff.nix
M pkgs/development/python-modules/twill/default.nix

  Log Message:
  ---
  treewide: fix evaluation

cc @Mic92 @nixy @7c6f434c


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 24038e: mysql-workbench: rename from mysqlWorkbench, add a...

2017-01-19 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 24038e63853daafdca8cf50e34d57bdca7fe09dd
  
https://github.com/NixOS/nixpkgs/commit/24038e63853daafdca8cf50e34d57bdca7fe09dd
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/aliases.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  mysql-workbench: rename from mysqlWorkbench, add alias

fixes #21226


  Commit: fa79441055b090116a4e7bb9e735e67a9670b8b1
  
https://github.com/NixOS/nixpkgs/commit/fa79441055b090116a4e7bb9e735e67a9670b8b1
  Author: Robin Gloster 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/misc/mysql-workbench/default.nix

  Log Message:
  ---
  mysql-workbench: 6.3.7 -> 6.3.8

fixes #21226


Compare: https://github.com/NixOS/nixpkgs/compare/805e6804b1e8...fa79441055b0___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Hydra: infinite CPU and RAM consumption in evaluator

2017-01-19 Thread Christian Kauhaus
Am 19.01.2017 um 11:12 schrieb Christian Theune:
> Nevertheless, it looks like we may have introduced poisonous code that sends
> the evaluator off into infinity. We’ll come back when we find out what it was.

I got it and I would like to share my findings.

We introduced a change that imported an item "nginxModules" into all-packages:

https://github.com/flyingcircusio/nixpkgs/blob/2926129b8940e880a7745e44df511a3d6adacfa9/nixos/modules/flyingcircus/packages/all-packages.nix#L59

The problem was that (1) this import returnes an attrset or attrsets (none
containing a derivation) and that our all-packages gets imported entirely into
our Hydra master job so that all of our custom packages are guaranteed to be
built:

https://github.com/flyingcircusio/nixpkgs/blob/fc-15.09-dev/nixos/release-flyingcircus.nix#L121

This construct seems to send Hydra's evaluator into nowhere land.

After removing the "nginxModules" attribute, everything seems to be fine again:

https://github.com/flyingcircusio/nixpkgs/blob/fc-15.09-dev/nixos/modules/flyingcircus/packages/all-packages.nix#L54

I don't understand the exact reason. My expectation would be that Hydra's
evaluator ignores attrsets defining no derivations (analogous to a Nix
expression like `collect isDerivation nixpkgs`. Obviously, it doesn't exactly
do so. But hey, now it's running again. :-)

Regards

Christian

-- 
Dipl-Inf. Christian Kauhaus <>< · k...@flyingcircus.io · +49 345 219401-0
Flying Circus Internet Operations GmbH · http://flyingcircus.io
Forsterstraße 29 · 06112 Halle (Saale) · Deutschland
HR Stendal 21169 · Geschäftsführer: Christian Theune, Christian Zagrodnick



signature.asc
Description: OpenPGP digital signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 1f6ca0: pythonPackages.bcrypt: 3.1.0 -> 3.1.2

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1f6ca0f37b93efde3fff877799a8f94b11aa545b
  
https://github.com/NixOS/nixpkgs/commit/1f6ca0f37b93efde3fff877799a8f94b11aa545b
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/bcrypt.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.bcrypt: 3.1.0 -> 3.1.2


  Commit: 14a65c5ecdaa68ee811a686c9c6ace3bf6710eb1
  
https://github.com/NixOS/nixpkgs/commit/14a65c5ecdaa68ee811a686c9c6ace3bf6710eb1
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/ldap.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.ldap: 2.4.19 -> 2.4.22


  Commit: c6c5ed15ab0e8c9aaa6ce77c2d13cfc6b52aa0d3
  
https://github.com/NixOS/nixpkgs/commit/c6c5ed15ab0e8c9aaa6ce77c2d13cfc6b52aa0d3
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/requests-oauthlib.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.requests_oauthlib: 0.4.1 -> 0.7.0


  Commit: bbe73c77c1cde3e05097fba9593d485fb38e7f04
  
https://github.com/NixOS/nixpkgs/commit/bbe73c77c1cde3e05097fba9593d485fb38e7f04
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/dulwich.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.dulwich: 0.14.0 -> 0.14.1


  Commit: 1f5b7484a3b423fc3de67835edc031bdea44fcea
  
https://github.com/NixOS/nixpkgs/commit/1f5b7484a3b423fc3de67835edc031bdea44fcea
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/gunicorn.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.gunicorn: 19.1.0 -> 19.3.0


  Commit: 1094e948bfde4deb76221950554e0893bc654490
  
https://github.com/NixOS/nixpkgs/commit/1094e948bfde4deb76221950554e0893bc654490
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/markdown2.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.markdown2: 2.3.0 -> 2.3.1


  Commit: 0b3d711fc4e65c03f197736843250ecb5e1d6452
  
https://github.com/NixOS/nixpkgs/commit/0b3d711fc4e65c03f197736843250ecb5e1d6452
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/flask-login.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.flask_login: enable python3 tests


  Commit: c065c400e9ace3678ec7949f88ed5c7b616d0e51
  
https://github.com/NixOS/nixpkgs/commit/c065c400e9ace3678ec7949f88ed5c7b616d0e51
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/flask-elastic.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.flask_elastic: init at 0.2


  Commit: b3bef109c2713af76c0216f94b748e638fd9a894
  
https://github.com/NixOS/nixpkgs/commit/b3bef109c2713af76c0216f94b748e638fd9a894
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/flask-ldap-login.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.flask-ldap-login: init at 0.3.0


  Commit: f957ce45c477b37fbd6fa559c5b9fc47d1fae86f
  
https://github.com/NixOS/nixpkgs/commit/f957ce45c477b37fbd6fa559c5b9fc47d1fae86f
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/flask-oauthlib.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.flask_oauthlib: init at 0.9.3


  Commit: b9e0da457a593dff4541ad9b8191835ea61d3d48
  
https://github.com/NixOS/nixpkgs/commit/b9e0da457a593dff4541ad9b8191835ea61d3d48
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/ghdiff.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.ghdiff: init at 0.4


  Commit: 5da2caab634d052f44933a9dbf47a41d7c4c14d5
  
https://github.com/NixOS/nixpkgs/commit/5da2caab634d052f44933a9dbf47a41d7c4c14d5
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/development/python-modules/flask-testing.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.flask_testing: init at 0.6.1


  Commit: 3b44782026bcd839b5c98690d548c75e8dce3619
  
https://github.com/NixOS/nixpkgs/commit/3b44782026bcd839b5c98690d548c75e8dce3619
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Change

[Nix-commits] [NixOS/nixpkgs] 55516d: ikiwiki: 3.20160905 -> 3.20170111

2017-01-19 Thread Michael Raskin
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 55516d8cdc29eed0bf267316803ade65d906083a
  
https://github.com/NixOS/nixpkgs/commit/55516d8cdc29eed0bf267316803ade65d906083a
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/misc/ikiwiki/default.nix

  Log Message:
  ---
  ikiwiki: 3.20160905 -> 3.20170111

(cherry picked from commit 03700daf07efe842f973882fab3bc02abc01cbcc)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 03700d: ikiwiki: 3.20160905 -> 3.20170111

2017-01-19 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 03700daf07efe842f973882fab3bc02abc01cbcc
  
https://github.com/NixOS/nixpkgs/commit/03700daf07efe842f973882fab3bc02abc01cbcc
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/misc/ikiwiki/default.nix

  Log Message:
  ---
  ikiwiki: 3.20160905 -> 3.20170111


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 64b7f0: knot-dns: 2.3.3 -> 2.4.0

2017-01-19 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 64b7f096e63cd4a69de101593e6a83802827d817
  
https://github.com/NixOS/nixpkgs/commit/64b7f096e63cd4a69de101593e6a83802827d817
  Author: Vladimír Čunát 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/servers/dns/knot-dns/default.nix

  Log Message:
  ---
  knot-dns: 2.3.3 -> 2.4.0


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Hydra: infinite CPU and RAM consumption in evaluator

2017-01-19 Thread Christian Theune
Hi,

ok, so the best way getting back to a working Hydra was the tip about running 
the system from a checkout and hydra from a checkout.

Picking the versions from Hydra’s own Hydra job to see which ran fine resulted 
in a ~10day  old nixpkgs and the most current Hydra version running properly.

I’ll keep that as the reference procedure for future updates.

Nevertheless, it looks like we may have introduced poisonous code that sends 
the evaluator off into infinity. We’ll come back when we find out what it was.

Cheers,
Christian

> On 18 Jan 2017, at 19:02, Christian Theune  wrote:
> 
> hi,
> 
> jobsets changing can be broken for the moment, but thanks. Especially seeing 
> that I need to go directly to head.
> 
> Appreciated!
> 
> Christian
> 
>> On 18 Jan 2017, at 18:55, stewart mackenzie > > wrote:
>> 
>> The next problem you will have is this:
>> https://github.com/NixOS/hydra/issues/445 
>> 
>> 
>> remove those changes and you will be able to add jobsets.
> 
> --
> Christian Theune · c...@flyingcircus.io  · +49 
> 345 219401 0
> Flying Circus Internet Operations GmbH · http://flyingcircus.io 
> 
> Forsterstraße 29 · 06112 Halle (Saale) · Deutschland
> HR Stendal HRB 21169 · Geschäftsführer: Christian. Theune, Christian. 
> Zagrodnick
> 
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev

--
Christian Theune · c...@flyingcircus.io · +49 345 219401 0
Flying Circus Internet Operations GmbH · http://flyingcircus.io
Forsterstraße 29 · 06112 Halle (Saale) · Deutschland
HR Stendal HRB 21169 · Geschäftsführer: Christian. Theune, Christian. Zagrodnick



signature.asc
Description: Message signed with OpenPGP
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] d93409: Add yubioath-desktop application and required pysc...

2017-01-19 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d9340971d9b2439f17711ac25c2a351650bc0173
  
https://github.com/NixOS/nixpkgs/commit/d9340971d9b2439f17711ac25c2a351650bc0173
  Author: Jon Meredith 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
A pkgs/applications/misc/yubioath-desktop/default.nix
A pkgs/development/python-modules/pyscard/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Add yubioath-desktop application and required pyscard module to support it


  Commit: 7f2769ff6203f13b1887b21a956471ef47239bb0
  
https://github.com/NixOS/nixpkgs/commit/7f2769ff6203f13b1887b21a956471ef47239bb0
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
A pkgs/applications/misc/yubioath-desktop/default.nix
A pkgs/development/python-modules/pyscard/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #21983 from jonmeredith/master

Add yubioath-desktop application and required pyscard module


Compare: https://github.com/NixOS/nixpkgs/compare/553ef5d3aaa1...7f2769ff6203___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 04e479: pythonPackages.case: init at 1.5.2

2017-01-19 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 04e479003357c7b3053a74da16fea7211530c234
  
https://github.com/NixOS/nixpkgs/commit/04e479003357c7b3053a74da16fea7211530c234
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.case: init at 1.5.2


  Commit: ece1154382bbe4d3bd51e60f09aa85e00057b4f3
  
https://github.com/NixOS/nixpkgs/commit/ece1154382bbe4d3bd51e60f09aa85e00057b4f3
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.vine: init at 1.1.3


  Commit: a272ca2c2efd89027072b346d81da9fef1eb9963
  
https://github.com/NixOS/nixpkgs/commit/a272ca2c2efd89027072b346d81da9fef1eb9963
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.amqp: 1.4.9 -> 2.1.4


  Commit: 0be9f1b3e511dd43c3ed75ad0e31bbac9b5e71e3
  
https://github.com/NixOS/nixpkgs/commit/0be9f1b3e511dd43c3ed75ad0e31bbac9b5e71e3
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.billiard: 3.3.0.23 -> 3.5.0.2


  Commit: 67a8210d6ad04ecdf3ffc355bac6695b0463d2c6
  
https://github.com/NixOS/nixpkgs/commit/67a8210d6ad04ecdf3ffc355bac6695b0463d2c6
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.kombu: 3.0.35 -> 4.0.2


  Commit: cdf3b50917382cd6b54f35a7ade053064fcc38d1
  
https://github.com/NixOS/nixpkgs/commit/cdf3b50917382cd6b54f35a7ade053064fcc38d1
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.celery: 3.1.23 -> 4.0.2


  Commit: c71087b345096232564f46810f061482b480ccd2
  
https://github.com/NixOS/nixpkgs/commit/c71087b345096232564f46810f061482b480ccd2
  Author: Lancelot SIX 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.pytest_30: 3.0.4 -> 3.0.5


  Commit: 553ef5d3aaa10664046a718adab7776e0ccdd9de
  
https://github.com/NixOS/nixpkgs/commit/553ef5d3aaa10664046a718adab7776e0ccdd9de
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #21975 from lsix/update_python_celery

Update python celery


Compare: https://github.com/NixOS/nixpkgs/compare/90e7568bfc5c...553ef5d3aaa1___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b8acb9: hy: init at 0.11.1

2017-01-19 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6
  
https://github.com/NixOS/nixpkgs/commit/b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6
  Author: Andrew R. M 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M lib/maintainers.nix
A pkgs/development/interpreters/hy/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  hy: init at 0.11.1

This is the hy language, a dialect of lisp designed to be closely
intergrated with python.


  Commit: 90e7568bfc5c06adab63232a0ad75e4b22ed2028
  
https://github.com/NixOS/nixpkgs/commit/90e7568bfc5c06adab63232a0ad75e4b22ed2028
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M lib/maintainers.nix
A pkgs/development/interpreters/hy/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #21973 from nixy/init/hy

hy: init at 0.11.1


Compare: https://github.com/NixOS/nixpkgs/compare/91852be548b6...90e7568bfc5c___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs]

2017-01-19 Thread vcunat
  Branch: refs/heads/remove-duplicate-intel-gpu-tools
  Home:   https://github.com/NixOS/nixpkgs
___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 806d8c: styx-themes.agency: fix version typo

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 806d8c19baad20652fd322c5546c4a32987b3fff
  
https://github.com/NixOS/nixpkgs/commit/806d8c19baad20652fd322c5546c4a32987b3fff
  Author: Eric Sagnes 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/misc/styx/themes.nix

  Log Message:
  ---
  styx-themes.agency: fix version typo


  Commit: 91852be548b6f2591959919a464cc2c90c2ea24e
  
https://github.com/NixOS/nixpkgs/commit/91852be548b6f2591959919a464cc2c90c2ea24e
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/applications/misc/styx/themes.nix

  Log Message:
  ---
  Merge pull request #21985 from ericsagnes/pkg-fix/styx-themes.agency

styx-themes.agency: fix version typo


Compare: https://github.com/NixOS/nixpkgs/compare/29380256a685...91852be548b6___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 08e991: remove xorg.intelgputools in favor of intel-gpu-to...

2017-01-19 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 08e99191f66c4a6cfe045601411bf6db08a78cac
  
https://github.com/NixOS/nixpkgs/commit/08e99191f66c4a6cfe045601411bf6db08a78cac
  Author: Pascal Wittmann 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/servers/x11/xorg/default.nix
M pkgs/servers/x11/xorg/overrides.nix

  Log Message:
  ---
  remove xorg.intelgputools in favor of intel-gpu-tools

There is no reason in having both and the latter is a
separate derivation and thus easier to maintain.

Closes #21976


  Commit: 42c1f449bd6fa205baef8ba267acb339791fa514
  
https://github.com/NixOS/nixpkgs/commit/42c1f449bd6fa205baef8ba267acb339791fa514
  Author: Vladimír Čunát 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/servers/x11/xorg/extra.list

  Log Message:
  ---
  intel-gpu-tools: finish removing the duplicate


  Commit: 29380256a685dd790105ea0a5d5bd33ffa8c2999
  
https://github.com/NixOS/nixpkgs/commit/29380256a685dd790105ea0a5d5bd33ffa8c2999
  Author: Vladimír Čunát 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/servers/x11/xorg/default.nix
M pkgs/servers/x11/xorg/extra.list
M pkgs/servers/x11/xorg/overrides.nix

  Log Message:
  ---
  Merge #21979: remove duplicate xorg.intelgputools

... in favor of intel-gpu-tools.


Compare: https://github.com/NixOS/nixpkgs/compare/f953ef875d67...29380256a685___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 38b4ae: screen: 4.4.0 -> 4.5.0

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 38b4ae554925a7b48c81f924ccbe627feb313383
  
https://github.com/NixOS/nixpkgs/commit/38b4ae554925a7b48c81f924ccbe627feb313383
  Author: Lancelot SIX 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/tools/misc/screen/default.nix

  Log Message:
  ---
  screen: 4.4.0 -> 4.5.0

See http://lists.gnu.org/archive/html/info-gnu/2017-01/msg7.html
for release announcement.


  Commit: f953ef875d67a6484110a2bf397956edc24601ec
  
https://github.com/NixOS/nixpkgs/commit/f953ef875d67a6484110a2bf397956edc24601ec
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/tools/misc/screen/default.nix

  Log Message:
  ---
  Merge pull request #21986 from lsix/update_screen

screen: 4.4.0 -> 4.5.0


Compare: https://github.com/NixOS/nixpkgs/compare/3fdde25b4c3c...f953ef875d67___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 068c9c: r10k: use gemdir

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 068c9c6c53e65e9ef7ca12bf1784ffec9f433279
  
https://github.com/NixOS/nixpkgs/commit/068c9c6c53e65e9ef7ca12bf1784ffec9f433279
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/system/r10k/default.nix

  Log Message:
  ---
  r10k: use gemdir


  Commit: 4237a2bd18084cd72396f14f637f231a56ad47a8
  
https://github.com/NixOS/nixpkgs/commit/4237a2bd18084cd72396f14f637f231a56ad47a8
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/text/reckon/default.nix

  Log Message:
  ---
  reckon: use gemdir


  Commit: 8c70770e3064e26e3aa1a994f141adfdb8e9a22e
  
https://github.com/NixOS/nixpkgs/commit/8c70770e3064e26e3aa1a994f141adfdb8e9a22e
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/applications/networking/cluster/panamax/api/default.nix

  Log Message:
  ---
  panamax_api: use gemdir


  Commit: 57b06f45dba3764c74e8164d22445f92b34acdd5
  
https://github.com/NixOS/nixpkgs/commit/57b06f45dba3764c74e8164d22445f92b34acdd5
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/text/ruby-zoom/default.nix

  Log Message:
  ---
  ruby-zoom: use gemdir


  Commit: 246fd4c950a7333c9168863a33929af196868262
  
https://github.com/NixOS/nixpkgs/commit/246fd4c950a7333c9168863a33929af196868262
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/networking/maphosts/default.nix

  Log Message:
  ---
  maphosts: use gemdir


  Commit: 53cd750ec6ff96eb87782ba441c733eb9444239f
  
https://github.com/NixOS/nixpkgs/commit/53cd750ec6ff96eb87782ba441c733eb9444239f
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/backup/backup/default.nix

  Log Message:
  ---
  backup: use gemdir


  Commit: d16aefb405b686e404275bcffe65f978afc21bbf
  
https://github.com/NixOS/nixpkgs/commit/d16aefb405b686e404275bcffe65f978afc21bbf
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/audio/mpdcron/default.nix

  Log Message:
  ---
  mpdcron: use gemdir


  Commit: bf99d330adc11c0190ab5b23058b2cf42a76d719
  
https://github.com/NixOS/nixpkgs/commit/bf99d330adc11c0190ab5b23058b2cf42a76d719
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/misc/homesick/default.nix

  Log Message:
  ---
  homesick: use gemdir


  Commit: 18fbdf14cdb5fc99fb13be206dccf8f7730a12e0
  
https://github.com/NixOS/nixpkgs/commit/18fbdf14cdb5fc99fb13be206dccf8f7730a12e0
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/misc/pws/default.nix

  Log Message:
  ---
  pws: use gemdir


  Commit: f2d6af23393878af5ee77f4beb6f6d3035a8732f
  
https://github.com/NixOS/nixpkgs/commit/f2d6af23393878af5ee77f4beb6f6d3035a8732f
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/servers/consul/ui.nix

  Log Message:
  ---
  consul: use gemdir


  Commit: ed608a33844cc577ec89eb2319e33c2d1c430042
  
https://github.com/NixOS/nixpkgs/commit/ed608a33844cc577ec89eb2319e33c2d1c430042
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/servers/monitoring/sensu/default.nix

  Log Message:
  ---
  sensu: use gemdir


  Commit: 2cf82c006942a287990867b79bad8dae4b258940
  
https://github.com/NixOS/nixpkgs/commit/2cf82c006942a287990867b79bad8dae4b258940
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/applications/networking/cluster/panamax/ui/default.nix

  Log Message:
  ---
  panamax_ui: use gemdir


  Commit: 27f91b30aa5f13f09068c3f46f06e76ede341044
  
https://github.com/NixOS/nixpkgs/commit/27f91b30aa5f13f09068c3f46f06e76ede341044
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/applications/office/ppl-address-book/default.nix

  Log Message:
  ---
  ppl-address-book: use gemdir


  Commit: 062f905906b4e37294819f10c9b1511e396eccaf
  
https://github.com/NixOS/nixpkgs/commit/062f905906b4e37294819f10c9b1511e396eccaf
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/development/compilers/matter-compiler/default.nix

  Log Message:
  ---
  matter-compiler: use gemdir


  Commit: dd91891bd952eaaa763ba3d919f7456ac6a7cd6b
  
https://github.com/NixOS/nixpkgs/commit/dd91891bd952eaaa763ba3d919f7456ac6a7cd6b
  Author: Jörg Thalheim 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/applications/version-management/gitlab/default.nix

  Log Message:
  ---
  gitlab: use gemdir


  Commit: d824aeb196ad1f1b54c47588

[Nix-commits] [NixOS/nixpkgs] 63bb3f: youtube-dl: 2017.01.14 -> 2017.01.18

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 63bb3f3fa679eecf2fe67ba0d09f82eaf2a9412f
  
https://github.com/NixOS/nixpkgs/commit/63bb3f3fa679eecf2fe67ba0d09f82eaf2a9412f
  Author: Stefan Götz 
  Date:   2017-01-18 (Wed, 18 Jan 2017)

  Changed paths:
M pkgs/tools/misc/youtube-dl/default.nix

  Log Message:
  ---
  youtube-dl: 2017.01.14 -> 2017.01.18


  Commit: 485a1ac94b846144e0bc1a0d545dfa03f3530cdf
  
https://github.com/NixOS/nixpkgs/commit/485a1ac94b846144e0bc1a0d545dfa03f3530cdf
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/tools/misc/youtube-dl/default.nix

  Log Message:
  ---
  Merge pull request #21978 from goetzst/youtube-dl

youtube-dl: 2017.01.14 -> 2017.01.18


Compare: https://github.com/NixOS/nixpkgs/compare/b502bba10bf0...485a1ac94b84___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b63535: python27Packages.influxdb: 0.1.12 -> 4.0.0

2017-01-19 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b63534a6344a1f88b22e8020e3a429966425
  
https://github.com/NixOS/nixpkgs/commit/b63534a6344a1f88b22e8020e3a429966425
  Author: Justin Humm 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  python27Packages.influxdb: 0.1.12 -> 4.0.0

Updated, as the old package is not compatible with current InfluxDB versions.
Changed buildInputs as following:
* requests -> requests2 as it is newer
* added dateutil as it is needed
* added tytz as it is needed
* added six as it is needed


  Commit: b502bba10bf0ab700eb9ba452d9373aa33eeebdf
  
https://github.com/NixOS/nixpkgs/commit/b502bba10bf0ab700eb9ba452d9373aa33eeebdf
  Author: Jörg Thalheim 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #21981 from erictapen/python27Packages.influxdb-update

python27Packages.influxdb: 0.1.12 -> 4.0.0


Compare: https://github.com/NixOS/nixpkgs/compare/d1c3cc63e15f...b502bba10bf0___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] f4f885: treewide: switch more packages to older gperf

2017-01-19 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f4f885243e6139edb196d00a9313f6ce5141e0de
  
https://github.com/NixOS/nixpkgs/commit/f4f885243e6139edb196d00a9313f6ce5141e0de
  Author: Vladimír Čunát 
  Date:   2017-01-19 (Thu, 19 Jan 2017)

  Changed paths:
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  treewide: switch more packages to older gperf

They wouldn't build otherwise.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits