[Nix-commits] [NixOS/nixpkgs] b01793: vlc: Fix build for Qt >= 5.7.0

2017-04-18 Thread aszlig
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b0179351036a870da8c1a89c991a359a73aab0e2
  
https://github.com/NixOS/nixpkgs/commit/b0179351036a870da8c1a89c991a359a73aab0e2
  Author: aszlig 
  Date:   2017-04-19 (Wed, 19 Apr 2017)

  Changed paths:
M pkgs/applications/video/vlc/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  vlc: Fix build for Qt >= 5.7.0

This basically does something similar than the AUR build:

https://aur.archlinux.org/packages/vlc-qt5/

On our side, all there is to do is to force compiling using C++11 mode
and use a patch that the AUR package took from the following upstream
patchwork URL:

https://patches.videolan.org/patch/14061/

Instead of passing CXXFLAGS to the configure script, I'm using sed here
to make sure we don't override flags figured out by configure.

For example if ./configure is used with CXXFLAGS=-std=c++11 appended or
prepended, we have something like:

... -I../include   -std=c++11 -Wall -Wextra -Wsign-compare ...

While if we don't do that at all, we have something like:

... -I../include   -g -O2 -Wall -Wextra -Wsign-compare ...

Another way would be to use NIX_CFLAGS_COMPILE, but that would affect
even compilation of C code and thus resulting in a bunch of warnings
like this:

cc1: warning: command line option '-std=c++11' is valid for C++/ObjC++
but not for C

So with our approach the flags during build look much better:

... -I../include   -std=c++11 -g -O2 -Wall -Wextra -Wsign-compare ...

Another thing I've changed is that the vlc_qt5 attribute in
all-packages.nix now uses the latest Qt 5 version, because the build for
Qt >= 5.7.0 is now no longer broken.

I've also ordered the preConfigure attribute before the configureFlags
attribute, because it makes more sense in terms of context (pre ->
configure -> post).

Tested by building on x86_64-linux with libsForQt56.vlc, libsForQt58.vlc
and vlc (the Qt 4 version, just to be sure I didn't accidentally break
it).

Signed-off-by: aszlig 
Cc: @ttuegel


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


[Nix-commits] [NixOS/nixpkgs] cf68f5: libguestfs: 1.29.5 -> 1.34.4

2017-04-18 Thread Jaka Hudoklin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cf68f546b1d5648c1d83f33e265c019c9f971c10
  
https://github.com/NixOS/nixpkgs/commit/cf68f546b1d5648c1d83f33e265c019c9f971c10
  Author: Volth 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/development/libraries/hivex/default.nix
M pkgs/development/libraries/hivex/hivex-syms.patch
M pkgs/development/libraries/libguestfs/default.nix
M pkgs/development/libraries/libguestfs/libguestfs-syms.patch
M pkgs/development/ocaml-modules/ocaml-libvirt/default.nix

  Log Message:
  ---
  libguestfs: 1.29.5 -> 1.34.4


  Commit: 94753af68ce76e0a8991d711ad54c927b6f891ed
  
https://github.com/NixOS/nixpkgs/commit/94753af68ce76e0a8991d711ad54c927b6f891ed
  Author: Volth 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/development/libraries/libguestfs/default.nix
M pkgs/development/ocaml-modules/ocaml-libvirt/default.nix

  Log Message:
  ---
  libguestfs: 1.34.4 -> 1.34.6


  Commit: dc0e338e01a75a8c7f79961d76eb10d8e023806b
  
https://github.com/NixOS/nixpkgs/commit/dc0e338e01a75a8c7f79961d76eb10d8e023806b
  Author: Volth 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/development/libraries/libguestfs/default.nix
M pkgs/development/libraries/libguestfs/libguestfs-syms.patch

  Log Message:
  ---
  libguestfs: 1.34.6 -> 1.36.3


  Commit: e0b0a07a74cabb2aa1b463787c605a47f44bf3de
  
https://github.com/NixOS/nixpkgs/commit/e0b0a07a74cabb2aa1b463787c605a47f44bf3de
  Author: Jaka Hudoklin 
  Date:   2017-04-19 (Wed, 19 Apr 2017)

  Changed paths:
M pkgs/development/libraries/hivex/default.nix
M pkgs/development/libraries/hivex/hivex-syms.patch
M pkgs/development/libraries/libguestfs/default.nix
M pkgs/development/libraries/libguestfs/libguestfs-syms.patch
M pkgs/development/ocaml-modules/ocaml-libvirt/default.nix

  Log Message:
  ---
  Merge pull request #23073 from volth/libguestfs-1.34

libguestfs: 1.29.5 -> 1.36.3


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


[Nix-commits] [NixOS/nixpkgs] 9ea655: electron: 1.4.15 -> 1.6.2

2017-04-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9ea655dcdd2d37d27db7fffa9b5d7807212cb93c
  
https://github.com/NixOS/nixpkgs/commit/9ea655dcdd2d37d27db7fffa9b5d7807212cb93c
  Author: Benjamin Saunders 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/applications/editors/atom/env.nix
M pkgs/development/tools/electron/default.nix

  Log Message:
  ---
  electron: 1.4.15 -> 1.6.2


  Commit: 1dcb587d93e8a3f1de4c47939e4dd1e91c8546bc
  
https://github.com/NixOS/nixpkgs/commit/1dcb587d93e8a3f1de4c47939e4dd1e91c8546bc
  Author: Joachim F 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/editors/atom/env.nix
M pkgs/development/tools/electron/default.nix

  Log Message:
  ---
  Merge pull request #24888 from Ralith/electron

electron: 1.4.15 -> 1.6.2


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


[Nix-commits] [NixOS/nixpkgs] 36bd9d: pidgin-carbons: init at 0.1.3

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 36bd9d2463d1e90eea888e8ad54e808a67934278
  
https://github.com/NixOS/nixpkgs/commit/36bd9d2463d1e90eea888e8ad54e808a67934278
  Author: William Casarin 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
A 
pkgs/applications/networking/instant-messengers/pidgin-plugins/carbons/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  pidgin-carbons: init at 0.1.3

Implements XMPP extension XEP-0280: Message Carbons for pidgin


  Commit: dc017e634cc7c9283ca24b825ddec622fc86328c
  
https://github.com/NixOS/nixpkgs/commit/dc017e634cc7c9283ca24b825ddec622fc86328c
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
A 
pkgs/applications/networking/instant-messengers/pidgin-plugins/carbons/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #25001 from jb55/new/pidgin-carbons

pidgin-carbons: init at 0.1.3


Compare: https://github.com/NixOS/nixpkgs/compare/0d6caccfb4e2...dc017e634cc7___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] efe205: elpa-packages: 2017-04-17

2017-04-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: efe2057ba0d214893a5ffa79a5c58af3489b7d89
  
https://github.com/NixOS/nixpkgs/commit/efe2057ba0d214893a5ffa79a5c58af3489b7d89
  Author: Michael Alan Dorman 
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
M pkgs/applications/editors/emacs-modes/elpa-generated.nix

  Log Message:
  ---
  elpa-packages: 2017-04-17


  Commit: 607a72a2f12acc432bdbb9719b3046c48eadf2c9
  
https://github.com/NixOS/nixpkgs/commit/607a72a2f12acc432bdbb9719b3046c48eadf2c9
  Author: Michael Alan Dorman 
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
M pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix

  Log Message:
  ---
  melpa-stable-packages: 2017-04-17

Removals:
 - fuel: git repo not accessible
 - jade: renamed to indium


  Commit: 0e5d43d8f10b449b55a13062c7089773b59948cd
  
https://github.com/NixOS/nixpkgs/commit/0e5d43d8f10b449b55a13062c7089773b59948cd
  Author: Michael Alan Dorman 
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
M pkgs/applications/editors/emacs-modes/melpa-generated.nix

  Log Message:
  ---
  melpa-packages: 2017-04-17

Removals:
 - coati: renamed to sourcetrail
 - fuel: git repo not accessible
 - jade: renamed to indium
 - matrix-client: package removed from melpa


  Commit: 0d6caccfb4e213ed8503fc02179cea72ad096d11
  
https://github.com/NixOS/nixpkgs/commit/0d6caccfb4e213ed8503fc02179cea72ad096d11
  Author: Joachim F 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/editors/emacs-modes/elpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix

  Log Message:
  ---
  Merge pull request #24979 from mdorman/emacs-updates

Automated Emacs package updates


Compare: https://github.com/NixOS/nixpkgs/compare/bc09640d9125...0d6caccfb4e2___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 0479e6: mpDris2: 0.6 -> 0.7

2017-04-18 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0479e68db923a92aa851a965239b9e9b4a2f6f80
  
https://github.com/NixOS/nixpkgs/commit/0479e68db923a92aa851a965239b9e9b4a2f6f80
  Author: Daan Sprenkels 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  mpDris2: 0.6 -> 0.7


  Commit: bc09640d912555ff13a7d3c183d6f6882d9c7934
  
https://github.com/NixOS/nixpkgs/commit/bc09640d912555ff13a7d3c183d6f6882d9c7934
  Author: Benno Fünfstück 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  Merge pull request #24977 from dsprenkels/master

mpDris2: 0.6 -> 0.7


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


[Nix-commits] [NixOS/nixpkgs] 71af44: elementary-icon-theme: 4.0.1.1 -> 4.0.3

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 71af44cae96ce370414e8c14e6079412609ebe53
  
https://github.com/NixOS/nixpkgs/commit/71af44cae96ce370414e8c14e6079412609ebe53
  Author: romildo 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/data/icons/elementary-icon-theme/default.nix

  Log Message:
  ---
  elementary-icon-theme: 4.0.1.1 -> 4.0.3


  Commit: f27206c9527587d3748fb579a6eea7202b2b28c5
  
https://github.com/NixOS/nixpkgs/commit/f27206c9527587d3748fb579a6eea7202b2b28c5
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/data/icons/elementary-icon-theme/default.nix

  Log Message:
  ---
  Merge pull request #24993 from romildo/upd.elementary-icon-theme

elementary-icon-theme: 4.0.1.1 -> 4.0.3


Compare: https://github.com/NixOS/nixpkgs/compare/6231781930e7...f27206c95275___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] ad95a0: mate-icon-theme: 1.18.0 -> 1.18.1

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ad95a04fa5037920aea2bb987557a36d4d1236fb
  
https://github.com/NixOS/nixpkgs/commit/ad95a04fa5037920aea2bb987557a36d4d1236fb
  Author: romildo 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/desktops/mate/mate-icon-theme/default.nix

  Log Message:
  ---
  mate-icon-theme: 1.18.0 -> 1.18.1


  Commit: 245cf6fa0e65adceef42ecc7af848837113616c3
  
https://github.com/NixOS/nixpkgs/commit/245cf6fa0e65adceef42ecc7af848837113616c3
  Author: romildo 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/desktops/mate/mate-themes/default.nix

  Log Message:
  ---
  mate-themes: 3.22.7 -> 3.22.10


  Commit: 6231781930e7e50de56d075fb9bc6c0884118e63
  
https://github.com/NixOS/nixpkgs/commit/6231781930e7e50de56d075fb9bc6c0884118e63
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/desktops/mate/mate-icon-theme/default.nix
M pkgs/desktops/mate/mate-themes/default.nix

  Log Message:
  ---
  Merge pull request #24992 from romildo/upd.mate

mate-themes: 3.22.7 -> 3.22.10, mate-icon-theme: 1.18.0 -> 1.18.1


Compare: https://github.com/NixOS/nixpkgs/compare/a8c8d5a58846...6231781930e7___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] a8c8d5: upx: 3.91 -> 3.93

2017-04-18 Thread armijnhemel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a8c8d5a58846451ff6980f10f8ff9452c100f0c3
  
https://github.com/NixOS/nixpkgs/commit/a8c8d5a58846451ff6980f10f8ff9452c100f0c3
  Author: armijnhemel 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/tools/compression/upx/default.nix

  Log Message:
  ---
  upx: 3.91 -> 3.93

* moved from sourceforge to github


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


[Nix-commits] [NixOS/nixpkgs] e0bf92: fdr: fix Qt library dependency

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e0bf92950c4d8ec0af6491612eb800f6b5d20455
  
https://github.com/NixOS/nixpkgs/commit/e0bf92950c4d8ec0af6491612eb800f6b5d20455
  Author: Nick Hu 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  fdr: fix Qt library dependency


  Commit: 41b43c0b64f87a98642d700436876f8a4df551d2
  
https://github.com/NixOS/nixpkgs/commit/41b43c0b64f87a98642d700436876f8a4df551d2
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  Merge pull request #25000 from NickHu/fdr

fdr: fix Qt library dependency


Compare: https://github.com/NixOS/nixpkgs/compare/032cf416ef62...41b43c0b64f8___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] e7a318: flat-plat: 2016-12-03 -> 20170323

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e7a3186d286fb603639e71db50675ae9cec52ed0
  
https://github.com/NixOS/nixpkgs/commit/e7a3186d286fb603639e71db50675ae9cec52ed0
  Author: romildo 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/misc/themes/flat-plat/default.nix

  Log Message:
  ---
  flat-plat: 2016-12-03 -> 20170323


  Commit: 032cf416ef62c277a0ce124cfef22b3c34520797
  
https://github.com/NixOS/nixpkgs/commit/032cf416ef62c277a0ce124cfef22b3c34520797
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/misc/themes/flat-plat/default.nix

  Log Message:
  ---
  Merge pull request #25002 from romildo/upd.flat-plat

flat-plat: 2016-12-03 -> 20170323


Compare: https://github.com/NixOS/nixpkgs/compare/cba00cb44b6f...032cf416ef62___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] cba00c: git-lfs: 1.3.1 -> 2.0.2

2017-04-18 Thread James ‘Twey’ Kay
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cba00cb44b6ff0178d4876c3c618d9adeb005922
  
https://github.com/NixOS/nixpkgs/commit/cba00cb44b6ff0178d4876c3c618d9adeb005922
  Author: James ‘Twey’ Kay 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  git-lfs: 1.3.1 -> 2.0.2

fixes #25004


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


[Nix-commits] [NixOS/nixpkgs] 733cc2: slock: add configFile support

2017-04-18 Thread Masayuki Takeda
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 733cc23a1b5f38982623aeb1ff35213d62aacab4
  
https://github.com/NixOS/nixpkgs/commit/733cc23a1b5f38982623aeb1ff35213d62aacab4
  Author: Masayuki Takeda 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/misc/screensavers/slock/default.nix

  Log Message:
  ---
  slock: add configFile support

fixes #24994


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


[Nix-commits] [NixOS/hydra] cc8520: Fix build

2017-04-18 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/hydra
  Commit: cc85208fe44fe97b0b6cc265f79a9e27a1aedcc3
  
https://github.com/NixOS/hydra/commit/cc85208fe44fe97b0b6cc265f79a9e27a1aedcc3
  Author: Eelco Dolstra 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M src/hydra-queue-runner/hydra-queue-runner.cc

  Log Message:
  ---
  Fix build


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


[Nix-commits] [NixOS/nixpkgs] d43cac: nix: 1.12pre5122_c60715e -> 1.12pre152_915f62fa

2017-04-18 Thread Eelco Dolstra
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d43cac9056ad6aedc659fa1c59d6adf77b2ee62c
  
https://github.com/NixOS/nixpkgs/commit/d43cac9056ad6aedc659fa1c59d6adf77b2ee62c
  Author: Eelco Dolstra 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/tools/package-management/nix/default.nix

  Log Message:
  ---
  nix: 1.12pre5122_c60715e -> 1.12pre152_915f62fa

(cherry picked from commit 3dd66ec6e91c49bff788a0fe43e8b5244800601b)


  Commit: 9db11781d2986a8ca84a303b2bbe51510597c106
  
https://github.com/NixOS/nixpkgs/commit/9db11781d2986a8ca84a303b2bbe51510597c106
  Author: Eelco Dolstra 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/tools/package-management/nix/default.nix

  Log Message:
  ---
  Add nixUnstable.perl-bindings

(cherry picked from commit 29b415dcdb9bca8655f09f7fee46be268bb9af87)


Compare: https://github.com/NixOS/nixpkgs/compare/b5c83975b471...9db11781d298___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] c13457: doc: Document the structure of `{build, host, target...

2017-04-18 Thread John Ericson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c13457fe58c354ac2437b4380f27fca4b771c034
  
https://github.com/NixOS/nixpkgs/commit/c13457fe58c354ac2437b4380f27fca4b771c034
  Author: John Ericson 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M doc/cross-compilation.xml

  Log Message:
  ---
  doc: Document the structure of `{build,host,target}Platforms`

Worthwhile to do now that #24610 makes it less abysmal.


  Commit: 1eabc2396145cfed08d9937ce6d1cc2501b9bd8e
  
https://github.com/NixOS/nixpkgs/commit/1eabc2396145cfed08d9937ce6d1cc2501b9bd8e
  Author: John Ericson 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M doc/cross-compilation.xml

  Log Message:
  ---
  Merge pull request #24980 from Ericson2314/platform-normalization

Doc for Platform Normalization


Compare: https://github.com/NixOS/nixpkgs/compare/0c8cf2809155...1eabc2396145___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 0c8cf2: ocamlPackages.llvm: fix hash

2017-04-18 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0c8cf2809155b8a74df8feccbaa4b272a86b06ed
  
https://github.com/NixOS/nixpkgs/commit/0c8cf2809155b8a74df8feccbaa4b272a86b06ed
  Author: Vincent Laporte 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  ocamlPackages.llvm: fix hash


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


[Nix-commits] [NixOS/nixpkgs] ca4789: ocamlPackages.batteries: 2.5.3 -> 2.6.0

2017-04-18 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ca47895d7f8c878f3bce29bf86c7b716c5887081
  
https://github.com/NixOS/nixpkgs/commit/ca47895d7f8c878f3bce29bf86c7b716c5887081
  Author: Vincent Laporte 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  ocamlPackages.batteries: 2.5.3 -> 2.6.0


  Commit: 2230009e7d5c00e9a4719b7ef74594e0615c5071
  
https://github.com/NixOS/nixpkgs/commit/2230009e7d5c00e9a4719b7ef74594e0615c5071
  Author: Vincent Laporte 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/compilers/ocaml/4.04.nix

  Log Message:
  ---
  ocaml: 4.04.0 -> 4.04.1


Compare: https://github.com/NixOS/nixpkgs/compare/da811a56b52e...2230009e7d5c___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 89b89d: defaultIconTheme: Enable darwin support

2017-04-18 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 89b89d1071b6a822a05c8d7dfaa160ba015b021b
  
https://github.com/NixOS/nixpkgs/commit/89b89d1071b6a822a05c8d7dfaa160ba015b021b
  Author: Hamish Mackenzie 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/data/icons/hicolor-icon-theme/default.nix
M pkgs/desktops/gnome-3/3.22/core/adwaita-icon-theme/default.nix
M pkgs/development/tools/misc/icon-naming-utils/default.nix

  Log Message:
  ---
  defaultIconTheme: Enable darwin support


  Commit: da811a56b52e9a99c584632cc36c7727a1180719
  
https://github.com/NixOS/nixpkgs/commit/da811a56b52e9a99c584632cc36c7727a1180719
  Author: Daiderd Jordan 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/data/icons/hicolor-icon-theme/default.nix
M pkgs/desktops/gnome-3/3.22/core/adwaita-icon-theme/default.nix
M pkgs/development/tools/misc/icon-naming-utils/default.nix

  Log Message:
  ---
  Merge pull request #24976 from hamishmack/darwin-icons

defaultIconTheme: Enable darwin support


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


[Nix-commits] [NixOS/nixpkgs] 69c3f2: mesa: maintenance 17.0.3 -> 17.0.4

2017-04-18 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 69c3f280a10ca8464954749629c81813a6d138fe
  
https://github.com/NixOS/nixpkgs/commit/69c3f280a10ca8464954749629c81813a6d138fe
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  mesa: maintenance 17.0.3 -> 17.0.4


  Commit: 09fd6173838ec058e0478ec06cf3d918e2f64fd3
  
https://github.com/NixOS/nixpkgs/commit/09fd6173838ec058e0478ec06cf3d918e2f64fd3
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/libraries/gtk+/3.x.nix

  Log Message:
  ---
  gtk3: maintenance 3.22.11 -> 3.22.12


  Commit: 977aa067ae5bb175805804e61d245586a10b5d5e
  
https://github.com/NixOS/nixpkgs/commit/977aa067ae5bb175805804e61d245586a10b5d5e
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pango: maintenance 1.40.4 -> 1.40.5


  Commit: 148f4996b56fecae1113f211b03caec8918393ee
  
https://github.com/NixOS/nixpkgs/commit/148f4996b56fecae1113f211b03caec8918393ee
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  harfbuzz: bugfix 1.4.4 -> 1.4.5


  Commit: 3efef09866e32e4e8112a2a312fc16ca8f173824
  
https://github.com/NixOS/nixpkgs/commit/3efef09866e32e4e8112a2a312fc16ca8f173824
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  dbus: maintenance 1.10.16 -> 1.10.18


  Commit: ec55f8dcaac9726e910caa31a558b89ce84706a1
  
https://github.com/NixOS/nixpkgs/commit/ec55f8dcaac9726e910caa31a558b89ce84706a1
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  libssh: maintenance 0.7.4 -> 0.7.5


  Commit: 5576ef9f1d8aed61e0d38945a24010179f5cdf27
  
https://github.com/NixOS/nixpkgs/commit/5576ef9f1d8aed61e0d38945a24010179f5cdf27
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/libraries/libav/default.nix
R pkgs/development/libraries/libav/vpxenc-11.6-libvpx-1.5.patch

  Log Message:
  ---
  libav-11: maintenance 11.8 -> 11.9

The patch doesn't apply anymore and changelog suggests it's not needed.


Compare: https://github.com/NixOS/nixpkgs/compare/ec115d47b810...5576ef9f1d8a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] eb1e63: wai-app-file-cgi: remove outdated overrides

2017-04-18 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: eb1e63505ac0fccfb99e381989e22455ea67550e
  
https://github.com/NixOS/nixpkgs/commit/eb1e63505ac0fccfb99e381989e22455ea67550e
  Author: Benno Fünfstück 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  wai-app-file-cgi: remove outdated overrides


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


[Nix-commits] [NixOS/nixpkgs] 7b2034: git-recent: init at 1.0.3

2017-04-18 Thread Benjamin Staffin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7b20341727f24d017a9fffeb0c8ded54689f46b5
  
https://github.com/NixOS/nixpkgs/commit/7b20341727f24d017a9fffeb0c8ded54689f46b5
  Author: José Luis Lafuente 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/version-management/git-and-tools/default.nix
A pkgs/applications/version-management/git-and-tools/git-recent/default.nix

  Log Message:
  ---
  git-recent: init at 1.0.3


  Commit: 2c14055aaa09c855374c2c49106c28033b4c2c3d
  
https://github.com/NixOS/nixpkgs/commit/2c14055aaa09c855374c2c49106c28033b4c2c3d
  Author: Benjamin Staffin 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/version-management/git-and-tools/default.nix
A pkgs/applications/version-management/git-and-tools/git-recent/default.nix

  Log Message:
  ---
  Merge pull request #24990 from jlesquembre/git-recent

git-recent: init at 1.0.3


Compare: https://github.com/NixOS/nixpkgs/compare/b2ed3db94aea...2c14055aaa09___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 5a5db6: command-not-found: add options

2017-04-18 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5a5db609e5bd83bc589f36eef394f3ad172d6648
  
https://github.com/NixOS/nixpkgs/commit/5a5db609e5bd83bc589f36eef394f3ad172d6648
  Author: makefu 
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
M nixos/modules/programs/command-not-found/command-not-found.nix
M nixos/modules/programs/command-not-found/command-not-found.pl

  Log Message:
  ---
  command-not-found: add options

add option to disable command-not-found as well as option to define dbPath.
Disabling this may remove the perl dependency for bash/zsh prompts


  Commit: b2ed3db94aea937fc77fcbd4e1ce4a51fd18def9
  
https://github.com/NixOS/nixpkgs/commit/b2ed3db94aea937fc77fcbd4e1ce4a51fd18def9
  Author: Jörg Thalheim 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M nixos/modules/programs/command-not-found/command-not-found.nix
M nixos/modules/programs/command-not-found/command-not-found.pl

  Log Message:
  ---
  Merge pull request #24962 from makefu/modules/command-not-found/refactor

Refactor command-not-found


Compare: https://github.com/NixOS/nixpkgs/compare/91ad6b35970b...b2ed3db94aea___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b5c839: brotli: fix on Darwin

2017-04-18 Thread Dan Peebles
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b5c83975b4718628b07380ba7b2c1f24d5904fb5
  
https://github.com/NixOS/nixpkgs/commit/b5c83975b4718628b07380ba7b2c1f24d5904fb5
  Author: Dan Peebles 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/tools/compression/brotli/default.nix

  Log Message:
  ---
  brotli: fix on Darwin

(cherry picked from commit 6f0a2af5bccc4f53ae1874ad9aa6103c8cb752f3)


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


[Nix-commits] [NixOS/nix] 9622d0: Manual: document tryEval

2017-04-18 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 9622d00afa6e94ef3ca026f9e15a7d122566e7d0
  
https://github.com/NixOS/nix/commit/9622d00afa6e94ef3ca026f9e15a7d122566e7d0
  Author: Linus Heckemann 
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
M doc/manual/expressions/builtins.xml

  Log Message:
  ---
  Manual: document tryEval


  Commit: 62a07992bd480d1b4490d40404147bf24b9ea952
  
https://github.com/NixOS/nix/commit/62a07992bd480d1b4490d40404147bf24b9ea952
  Author: Eelco Dolstra 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M doc/manual/expressions/builtins.xml

  Log Message:
  ---
  Merge pull request #1337 from lheckemann/doc-tryEval

Manual: document tryEval


Compare: https://github.com/NixOS/nix/compare/67fe3e07b206...62a07992bd48___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nix] 503cc4: nix-channel: error out if direct tarball unpack fa...

2017-04-18 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 503cc4431b8fa008caca7d06026dcfcab8626884
  
https://github.com/NixOS/nix/commit/503cc4431b8fa008caca7d06026dcfcab8626884
  Author: Shea Levy 
  Date:   2017-04-10 (Mon, 10 Apr 2017)

  Changed paths:
M src/nix-channel/nix-channel.cc

  Log Message:
  ---
  nix-channel: error out if direct tarball unpack fails.

It's very unlikely a path ending in .tar.gz is a directory

Fixes #1318


  Commit: 67fe3e07b2069c27484d6817d05d9190e70c518c
  
https://github.com/NixOS/nix/commit/67fe3e07b2069c27484d6817d05d9190e70c518c
  Author: Eelco Dolstra 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M src/nix-channel/nix-channel.cc

  Log Message:
  ---
  Merge pull request #1321 from shlevy/channel-direct-tarball-error

nix-channel: error out if direct tarball unpack fails.


Compare: https://github.com/NixOS/nix/compare/f8a2e8a55203...67fe3e07b206___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Rust prebuilt package overlay.

2017-04-18 Thread William Casarin
Nicolas Pierron  writes:

> On Tue, Mar 7, 2017 at 1:41 PM, Profpatsch  wrote:
>> On 17-03-04 08:34pm, Nicolas Pierron wrote:
>>> The *.toml manifest file is then parsed (yes, in Nix [3]) to extract
>>> [3] https://github.com/mozilla/nixpkgs-mozilla/blob/master/lib/parseTOML.nix
>>
>> what have you done
>
> I made tool to avoid updating this repository every time there is a
> new nightly version of rustc.
> This Nix expression is able to parse a 200 kB toml file in less than 1 second.

apparently you have angered the hacker gods on macos:

nixpkgs (efe12d665812e2c5f7c20513a829edff5b8b1977)
nixpkgs-mozilla (4779fb7776c3d38d78b5ebcee62165e6d1350f74)
nix-env (Nix) 1.11.8

$ nix-shell -p rustChannels.stable.rust

error: while evaluating the attribute ‘nativeBuildInputs’ of the derivation 
‘shell’ at /Users/jb55/dev/nixpkgs/pkgs/build-support/trivial-builders.nix:7:14:
while evaluating ‘getOutput’ at 
/Users/jb55/dev/nixpkgs/lib/attrsets.nix:453:23, called from undefined position:
while evaluating ‘getCrossDrv’ at 
/Users/jb55/dev/nixpkgs/pkgs/stdenv/generic/default.nix:133:21, called from 
undefined position:
while evaluating the attribute ‘stable.rust’ at 
/Users/jb55/etc/nixpkgs-mozilla/rust-overlay.nix:154:5:
while evaluating ‘fromManifest’ at 
/Users/jb55/etc/nixpkgs-mozilla/rust-overlay.nix:85:28, called from 
/Users/jb55/etc/nixpkgs-mozilla/rust-overlay.nix:154:15:
while evaluating ‘flip’ at /Users/jb55/dev/nixpkgs/lib/trivial.nix:109:16, 
called from /Users/jb55/etc/nixpkgs-mozilla/rust-overlay.nix:87:21:
while evaluating ‘mapAttrs’ at /Users/jb55/dev/nixpkgs/lib/attrsets.nix:198:17, 
called from /Users/jb55/dev/nixpkgs/lib/trivial.nix:109:19:
while evaluating ‘fromTOML’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:133:14, called from 
/Users/jb55/etc/nixpkgs-mozilla/rust-overlay.nix:86:16:
while evaluating ‘zipAttrs’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:137:18, called from 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:149:7:
while evaluating ‘parser’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:130:12, called from 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:135:19:
while evaluating ‘closeSection’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:91:18, called from 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:131:5:
while evaluating ‘tokenizer’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:41:15, called from 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:131:53:
while evaluating ‘tokenizer_rec’ at 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:6:46, called from 
/Users/jb55/etc/nixpkgs-mozilla/lib/parseTOML.nix:41:20:
compiling pattern ‘([
]+(=|[[][[][a-zA-Z0-9_."*-]+[]][]]|[[][a-zA-Z0-9_."*-]+[]]|[a-zA-Z0-9_-]+|"[^"]*")[
 
[... same line repeated 4094 times ...]
]+(=|[[][[][a-zA-Z0-9_."*-]+[]][]]|[[][a-zA-Z0-9_."*-]+[]]|[a-zA-Z0-9_-]+|"[^"]*")).*’:
 out of memory



Looks like some kind of infinite recursion bug?
Seems to work fine on my nixos box though 樂

Cheers,
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-dev] Can't install NixOS on an NVME drive

2017-04-18 Thread Liam Wigney
Hey all,

I've been trying to install NixOS on the new XPS 13 but I've found that
NixOS can't find the drive in /dev/. There's no listing for /sdax or /nvmex.

I've looked online and found that changing some bios settings (Something
about raid) makes it show up, however doing that stops windows booting.

I'm thinking this could be related to the lenovo controversy
https://www.reddit.com/r/linux/comments/53ri0m/warning_microsoft_signature_pc_program_now/.
The comments say that a Linux compatible driver should be available now but
do I have to enable it somehow? How would I do this for the LiveCD?

I'm brand new to Nix and NixOS so I'm sorry if I missed anything.

Thanks.
Liam
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] What's the "perfect setup" for hacking on Nix?

2017-04-18 Thread Chris Marusich
Hi Profpatsch,

Thank you for the response!

Profpatsch  writes:

> On 17-04-08 11:17pm, Chris Marusich wrote:
>> Hi Nix devs!
>> 
>> What is the "perfect setup" for hacking on Nix?  Is there an IDE that
>> the you prefer to use?  Is there a C++ major mode for Emacs that you
>> can't live without?  Are there other helpful tools?
>
> A very good text editor. I can recommend Spacemacs.
> nix comes with a `nix-mode.el` file for Emacs.
> On Spacemacs, there is the `nixos` layer
> which is nice, if rudimentary.

I use emacs, myself, but I'm open to trying a different IDE if it's what
most of the Nix devs use.  Since Nix is implemented in C++, I guess any
C++ IDE (or modes/tools in emacs) would be helpful.  I was just curious
to know if any particular IDE or technology was heavily used by the Nix
community.  I've found that using the same tools as the rest of a dev
group can often be the path of least resistance and the most enjoyable
experience, regardless of what editor I personally prefer.

> Since nix is a relatively new DSL, the editor-support is lacking.
> Compared to Scheme at least.

I'm interested in browsing and modifying the Nix C++ source code, but of
course anything that helps make it easier to work with Nix expressions
is helpful, too!

> I recommend studying the nix-* tools in-depth, they are your
> main user interface. Particularly nix-store, nix-instantiate, nix-build.
> Also, nix-repl is very helpful (separate package).

Do you mean for getting the hang of Nix expressions?  That's a good
idea; when I play with Nix expressions, I'll keep this in mind.

-- 
Chris


signature.asc
Description: PGP signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] ceed68: pythonPackages.setuptools: propagate python

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/python3
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ceed684f1053e4b58539223fc0cb342cf2b108dd
  
https://github.com/NixOS/nixpkgs/commit/ceed684f1053e4b58539223fc0cb342cf2b108dd
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.setuptools: propagate python

for consistency since we do so for all Python packages.


  Commit: cf9bcb8c26e26e2454f5a3dfb574536b175e4286
  
https://github.com/NixOS/nixpkgs/commit/cf9bcb8c26e26e2454f5a3dfb574536b175e4286
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/build-python-package-setuptools.nix
M pkgs/development/interpreters/python/build-python-package.nix
M pkgs/development/interpreters/python/mk-python-derivation.nix
M pkgs/development/python-modules/bootstrapped-pip/default.nix
M pkgs/development/python-modules/setuptools/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Python: redo setuptools bootstrapping


  Commit: d57046d6b75afff12d42446759bf80a6a4b98843
  
https://github.com/NixOS/nixpkgs/commit/d57046d6b75afff12d42446759bf80a6a4b98843
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  bootstrapped-pip: remove unnecessary dependencies


  Commit: 290f51f38249d63a76f6b8d0e49fbfd2eaa6b9ef
  
https://github.com/NixOS/nixpkgs/commit/290f51f38249d63a76f6b8d0e49fbfd2eaa6b9ef
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.setuptools: pass --no-dependencies

Somehow pip complaints it can't find the setuptools dependencies, but
they're really there and they're working.


  Commit: 168d9ec6f22f36c7bd87b6352eb8c4f01151992c
  
https://github.com/NixOS/nixpkgs/commit/168d9ec6f22f36c7bd87b6352eb8c4f01151992c
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/build-python-package-setuptools.nix
R pkgs/development/interpreters/python/run_setup.py

  Log Message:
  ---
  Python: use setuptools shim instead of our own


  Commit: b43a5096b0d116b037fec90f419f56142007ce25
  
https://github.com/NixOS/nixpkgs/commit/b43a5096b0d116b037fec90f419f56142007ce25
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  Python: bootstrapped-pip rewrite


  Commit: 978c2f1750f6cf97bdd95196807b487cc89b4dac
  
https://github.com/NixOS/nixpkgs/commit/978c2f1750f6cf97bdd95196807b487cc89b4dac
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  setuptools bump to 35.0.0


  Commit: 1fc6ecaaae4fc0a9abd804865d3bc3d17fafee18
  
https://github.com/NixOS/nixpkgs/commit/1fc6ecaaae4fc0a9abd804865d3bc3d17fafee18
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/build-python-package.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Python: mkPythonDerivation is no longer public


  Commit: 981d6372b32cac65166c6814c2442ca40902e2ac
  
https://github.com/NixOS/nixpkgs/commit/981d6372b32cac65166c6814c2442ca40902e2ac
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/cpython/3.6/default.nix

  Log Message:
  ---
  python36: 3.6.0 -> 3.6.1


  Commit: 3fcb3b1b715b752719ecf9e18f2cedbd5e09c1c4
  
https://github.com/NixOS/nixpkgs/commit/3fcb3b1b715b752719ecf9e18f2cedbd5e09c1c4
  Author: Tim Steinbach 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.9.nix

  Log Message:
  ---
  linux: 4.9.22 -> 4.9.23


  Commit: f1b885116f83db844c1f83dcddfeeb84336f89e1
  
https://github.com/NixOS/nixpkgs/commit/f1b885116f83db844c1f83dcddfeeb84336f89e1
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/kolourpaint.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  kdeApplications.kolourpaint: init at 16.12.3


  Commit: 7a940b1810cfe7bddee8065499f9abbc57e74581
  

[Nix-commits] [NixOS/nixpkgs] f225ff: pythonPackages.magic: fix package, closes #16361

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f225ffa397adb63626b198b4321a0ca52057e11d
  
https://github.com/NixOS/nixpkgs/commit/f225ffa397adb63626b198b4321a0ca52057e11d
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.magic: fix package, closes #16361


  Commit: a697985e37b8a8d7c0c1db2f59b0e744ec9c0941
  
https://github.com/NixOS/nixpkgs/commit/a697985e37b8a8d7c0c1db2f59b0e744ec9c0941
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pytest: 3.0.6 -> 3.0.7


  Commit: a9cbac6322e0b7c0795dc9633b861ee68761ebe8
  
https://github.com/NixOS/nixpkgs/commit/a9cbac6322e0b7c0795dc9633b861ee68761ebe8
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.hypothesis: 3.6.1 -> 3.7.0


  Commit: 7fa72a7602a498ffe01a8af28e2fa38cfb4c99ab
  
https://github.com/NixOS/nixpkgs/commit/7fa72a7602a498ffe01a8af28e2fa38cfb4c99ab
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pandas: minor fixes tests


  Commit: a7f6911b373b2ff231b57997f32ce8a28a20115d
  
https://github.com/NixOS/nixpkgs/commit/a7f6911b373b2ff231b57997f32ce8a28a20115d
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.dask: 0.13.0 -> 0.14.1


  Commit: 5cc79b96243a3d6443e0a2ce48528c7fc616c325
  
https://github.com/NixOS/nixpkgs/commit/5cc79b96243a3d6443e0a2ce48528c7fc616c325
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.idna: 2.0 -> 2.5


  Commit: 632a62a8c0089604e4fb6f676025792631c68918
  
https://github.com/NixOS/nixpkgs/commit/632a62a8c0089604e4fb6f676025792631c68918
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.asn1crypto: init at 0.22.0


  Commit: 8227e665f8c32c97f73fd7037cc3fcdac528acd7
  
https://github.com/NixOS/nixpkgs/commit/8227e665f8c32c97f73fd7037cc3fcdac528acd7
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.packaging: fix test runner


  Commit: 51b082093542eec3d15e6fcc87a216aa00339b70
  
https://github.com/NixOS/nixpkgs/commit/51b082093542eec3d15e6fcc87a216aa00339b70
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.cryptography_vectors: 1.7.2 -> 1.8.1


  Commit: 36b8746594e498700355b1f4f9e0ac2dc001efc2
  
https://github.com/NixOS/nixpkgs/commit/36b8746594e498700355b1f4f9e0ac2dc001efc2
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.cryptography: 1.7.2 -> 1.8.1


  Commit: 8806414310b774fe8c02c93ea302fed62c3a38c6
  
https://github.com/NixOS/nixpkgs/commit/8806414310b774fe8c02c93ea302fed62c3a38c6
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.ipyparallel: 6.0.0 -> 6.0.2


  Commit: 9a106b1c528b3400be0c9c3fe00bf8ff9d053c82
  
https://github.com/NixOS/nixpkgs/commit/9a106b1c528b3400be0c9c3fe00bf8ff9d053c82
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.ipykernel: 4.5.2 -> 4.6.1


  Commit: 2c00cd3bae13487a88cff3f68ac12835d8552193
  
https://github.com/NixOS/nixpkgs/commit/2c00cd3bae13487a88cff3f68ac12835d8552193
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  

[Nix-commits] [NixOS/nixpkgs] 91ad6b: Revert "grub module: fix efiInstallAsRemovable des...

2017-04-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 91ad6b35970b1378ac99de209b4ec48318704b07
  
https://github.com/NixOS/nixpkgs/commit/91ad6b35970b1378ac99de209b4ec48318704b07
  Author: Vladimír Čunát 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M nixos/modules/system/boot/loader/grub/grub.nix

  Log Message:
  ---
  Revert "grub module: fix efiInstallAsRemovable description"

This reverts commit c2b56626f1a872d06642777193b72d6473c8b97c.
It broke creating the manual.  I suspect the descriptions are
auto-wrapped by  and .

We've been through this already in 3af715af90.
/cc #24978, @zraexy, @Mic92.


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


[Nix-commits] [NixOS/nixpkgs] 7643c7: linux: 4.4.61 -> 4.4.62

2017-04-18 Thread Tim Steinbach
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7643c7c8cc72e605ec2948c85ac3fee121f6997b
  
https://github.com/NixOS/nixpkgs/commit/7643c7c8cc72e605ec2948c85ac3fee121f6997b
  Author: Tim Steinbach 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.4.nix

  Log Message:
  ---
  linux: 4.4.61 -> 4.4.62


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


[Nix-commits] [NixOS/nixpkgs] dd6627: kdeApplications.kolourpaint: init at 16.12.3

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dd662792b15e2e24dfb73b87975fe8517de2fe82
  
https://github.com/NixOS/nixpkgs/commit/dd662792b15e2e24dfb73b87975fe8517de2fe82
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/kolourpaint.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  kdeApplications.kolourpaint: init at 16.12.3


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


[Nix-commits] [NixOS/nixpkgs] fb14e6: linux: 4.9.22 -> 4.9.23

2017-04-18 Thread Tim Steinbach
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: fb14e6a1a77bd9156c30c02d1ccadc2a6871
  
https://github.com/NixOS/nixpkgs/commit/fb14e6a1a77bd9156c30c02d1ccadc2a6871
  Author: Tim Steinbach 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.9.nix

  Log Message:
  ---
  linux: 4.9.22 -> 4.9.23

(cherry picked from commit 1173fe0b49a7bd1a9777a53edffcf208e8de8934)


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


[Nix-commits] [NixOS/nixpkgs] 1173fe: linux: 4.9.22 -> 4.9.23

2017-04-18 Thread Tim Steinbach
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1173fe0b49a7bd1a9777a53edffcf208e8de8934
  
https://github.com/NixOS/nixpkgs/commit/1173fe0b49a7bd1a9777a53edffcf208e8de8934
  Author: Tim Steinbach 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.9.nix

  Log Message:
  ---
  linux: 4.9.22 -> 4.9.23


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


[Nix-commits] [NixOS/nixpkgs] 4861ab: perl: 5.22.2 -> 5.22.3 (#24832)

2017-04-18 Thread Maksim Bronsky
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4861ab9dbea148c01f8d1c17a926046dd7aa344b
  
https://github.com/NixOS/nixpkgs/commit/4861ab9dbea148c01f8d1c17a926046dd7aa344b
  Author: Maksim Bronsky 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/perl/default.nix

  Log Message:
  ---
  perl: 5.22.2 -> 5.22.3 (#24832)

(cherry picked from commit d6b42b4008b64eac3a99c4ed5a6c2b197fc1abdc)


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


[Nix-commits] [NixOS/nixpkgs] c5b291: python36: 3.6.0 -> 3.6.1

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c5b29121fe93643eb4ee6498c4d9ff0f83f448d9
  
https://github.com/NixOS/nixpkgs/commit/c5b29121fe93643eb4ee6498c4d9ff0f83f448d9
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/cpython/3.6/default.nix

  Log Message:
  ---
  python36: 3.6.0 -> 3.6.1

(cherry picked from commit 07327cddf6e79704d00f9199d129b0564f5d57f8)


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


[Nix-commits] [NixOS/nixpkgs] c27515: python36: 3.6.0 -> 3.6.1

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c275158f0617f006286bb6bb3aa941c27990e503
  
https://github.com/NixOS/nixpkgs/commit/c275158f0617f006286bb6bb3aa941c27990e503
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/interpreters/python/cpython/3.6/default.nix

  Log Message:
  ---
  python36: 3.6.0 -> 3.6.1


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


[Nix-commits] [NixOS/nixpkgs] 5717b8: pythonPackages.statsmodels: 0.6.1 -> 0.8.0

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/python-wip
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5717b8a3c26fa51d5a075d8135e77a815a415dd8
  
https://github.com/NixOS/nixpkgs/commit/5717b8a3c26fa51d5a075d8135e77a815a415dd8
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.statsmodels: 0.6.1 -> 0.8.0


  Commit: b254e8f0dd7327cbc9f655a50de743156908c116
  
https://github.com/NixOS/nixpkgs/commit/b254e8f0dd7327cbc9f655a50de743156908c116
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.multipledispatch: disable tests


  Commit: 614acf185368b238a6da73d0bcafef4424176616
  
https://github.com/NixOS/nixpkgs/commit/614acf185368b238a6da73d0bcafef4424176616
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pretend: disable tests


  Commit: d418f886622863ce61d57106ac2174a074795bf8
  
https://github.com/NixOS/nixpkgs/commit/d418f886622863ce61d57106ac2174a074795bf8
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.Nuitka: 0.5.21.3 -> 0.5.25


  Commit: 1e7f2b331afdccd3ab688470b3e57f6fd2708c5e
  
https://github.com/NixOS/nixpkgs/commit/1e7f2b331afdccd3ab688470b3e57f6fd2708c5e
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.bottleneck: fix build

New setuptools seems to have broken bottleneck.


  Commit: 1b9ed93466fc5bb4863acc136595d4e508e6b31a
  
https://github.com/NixOS/nixpkgs/commit/1b9ed93466fc5bb4863acc136595d4e508e6b31a
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.dill: 0.2.5 -> 0.2.6


  Commit: d0f67d72052a22e12c01441c0569d462b3f0b0c4
  
https://github.com/NixOS/nixpkgs/commit/d0f67d72052a22e12c01441c0569d462b3f0b0c4
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.numba: 0.30.1 -> 0.31.0


  Commit: c1f9bdbb3dc798bd9cdfe47a1f3375f304d98dbc
  
https://github.com/NixOS/nixpkgs/commit/c1f9bdbb3dc798bd9cdfe47a1f3375f304d98dbc
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M pkgs/development/python-modules/llvmlite/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.llvmlite: 0.15.0 -> 0.16.0


  Commit: a8538dadeaf2e6510111ad022ed4d17f2b633c81
  
https://github.com/NixOS/nixpkgs/commit/a8538dadeaf2e6510111ad022ed4d17f2b633c81
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pycryptodome: remove namePrefix argument


  Commit: a0aa625f09c00d3767d1160769038e92f12c29dc
  
https://github.com/NixOS/nixpkgs/commit/a0aa625f09c00d3767d1160769038e92f12c29dc
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.certifi: move to separate file


Compare: https://github.com/NixOS/nixpkgs/compare/5607987bbddf...a0aa625f09c0___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 560798: pythonPackages.certifi: move to separate file

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/python-wip
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5607987bbddf26f68db333c338372a019091cdd8
  
https://github.com/NixOS/nixpkgs/commit/5607987bbddf26f68db333c338372a019091cdd8
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.certifi: move to separate file


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


[Nix-commits] [NixOS/nixpkgs] f225ff: pythonPackages.magic: fix package, closes #16361

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/python-wip
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f225ffa397adb63626b198b4321a0ca52057e11d
  
https://github.com/NixOS/nixpkgs/commit/f225ffa397adb63626b198b4321a0ca52057e11d
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.magic: fix package, closes #16361


  Commit: a697985e37b8a8d7c0c1db2f59b0e744ec9c0941
  
https://github.com/NixOS/nixpkgs/commit/a697985e37b8a8d7c0c1db2f59b0e744ec9c0941
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pytest: 3.0.6 -> 3.0.7


  Commit: a9cbac6322e0b7c0795dc9633b861ee68761ebe8
  
https://github.com/NixOS/nixpkgs/commit/a9cbac6322e0b7c0795dc9633b861ee68761ebe8
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.hypothesis: 3.6.1 -> 3.7.0


  Commit: 7fa72a7602a498ffe01a8af28e2fa38cfb4c99ab
  
https://github.com/NixOS/nixpkgs/commit/7fa72a7602a498ffe01a8af28e2fa38cfb4c99ab
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.pandas: minor fixes tests


  Commit: a7f6911b373b2ff231b57997f32ce8a28a20115d
  
https://github.com/NixOS/nixpkgs/commit/a7f6911b373b2ff231b57997f32ce8a28a20115d
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.dask: 0.13.0 -> 0.14.1


  Commit: 5cc79b96243a3d6443e0a2ce48528c7fc616c325
  
https://github.com/NixOS/nixpkgs/commit/5cc79b96243a3d6443e0a2ce48528c7fc616c325
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.idna: 2.0 -> 2.5


  Commit: 632a62a8c0089604e4fb6f676025792631c68918
  
https://github.com/NixOS/nixpkgs/commit/632a62a8c0089604e4fb6f676025792631c68918
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.asn1crypto: init at 0.22.0


  Commit: 8227e665f8c32c97f73fd7037cc3fcdac528acd7
  
https://github.com/NixOS/nixpkgs/commit/8227e665f8c32c97f73fd7037cc3fcdac528acd7
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.packaging: fix test runner


  Commit: 51b082093542eec3d15e6fcc87a216aa00339b70
  
https://github.com/NixOS/nixpkgs/commit/51b082093542eec3d15e6fcc87a216aa00339b70
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.cryptography_vectors: 1.7.2 -> 1.8.1


  Commit: 36b8746594e498700355b1f4f9e0ac2dc001efc2
  
https://github.com/NixOS/nixpkgs/commit/36b8746594e498700355b1f4f9e0ac2dc001efc2
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.cryptography: 1.7.2 -> 1.8.1


  Commit: 8806414310b774fe8c02c93ea302fed62c3a38c6
  
https://github.com/NixOS/nixpkgs/commit/8806414310b774fe8c02c93ea302fed62c3a38c6
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.ipyparallel: 6.0.0 -> 6.0.2


  Commit: 9a106b1c528b3400be0c9c3fe00bf8ff9d053c82
  
https://github.com/NixOS/nixpkgs/commit/9a106b1c528b3400be0c9c3fe00bf8ff9d053c82
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.ipykernel: 4.5.2 -> 4.6.1


  Commit: 2c00cd3bae13487a88cff3f68ac12835d8552193
  
https://github.com/NixOS/nixpkgs/commit/2c00cd3bae13487a88cff3f68ac12835d8552193
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  

Re: [Nix-dev] bitlbee + libpurple support

2017-04-18 Thread Stu Kraji
hi Théophane,

thank you for your help. Unfortunately it still does not work :( I have the
following code in my nix config file

nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
  bitlbee = (pkgs.bitlbee.overrideAttrs (oldAttrs: {
   buildInputs = [ telegram-purple pidgin gnutls glib libotr python];
   configureFlags = [
   "--gcov=1"
   "--otr=1"
   "--ssl=gnutls"
   "--jabber=1"
   "--twitter=0"
   "--purple=1"
   "--pidfile=/var/lib/bitlbee/bitlbee.pid"];
  }));
};
  };


  #bitlbee
  services.bitlbee.enable = true;
  systemd.services.bitlbee.environment.PURPLE_PLUGIN_PATH =
"~/.purple/plugins/";

I can see that libpurple is compiled with purple support but the protocol
telegram is not detected. (i also tried to created a symlink to
telegram-purple.so in ~/.purple/plugins/ but it still does not work)

thanks,

Stu

2017-04-11 12:41 GMT+01:00 Théophane Hufschmitt :

> Hi Stu,
>
> Libpurple uses the PURPLE_PLUGIN_PATH to locates the plugins, so you
> need to pass it to the bitlbee service. I have a modification of the
> module
> [here](https://github.com/CIRB/nixpkgs-config/blob/master/
> overlays/default.nix#L12)
> if you want to see how it's done (or you can just set
> `systemd.services.bitlbee.environment.PURPLE_PLUGIN_PATH =
> "the_path_you_want_to_set"`).
>
> --
> Théophane
>
>
> On 04/06/2017 11:39 AM, Stu Kraji wrote:
> > hello,
> >
> > OS: nixOS 17.03
> >
> > I would like to add purple support to bitlbee so that I can connect to
> > telegram with erc (emacs irc client). I have tried to add the following
> > to my configuration.nix file
> >
> > environment.systemPackages = with pkgs; [
> > telegram-purple
> > (pkgs.bitlbee.overrideAttrs (oldAttrs: {
> >buildInputs = [ pidgin gnutls glib libotr python];
> >configureFlags = [
> >"--gcov=1"
> >"--otr=1"
> >"--ssl=gnutls"
> >"--jabber=1"
> >"--twitter=0"
> >"--purple=1"
> >"--pidfile=/var/lib/bitlbee/bitlbee.pid"];
> >}))
> >   ];
> >
> > services.bitlbee.enable = true;
> >
> > when I execute nixos-rebuild switch I can see that the bitlbee is
> > compiled with purple support, but after connecting to bitlbee it seems
> > that purple's protocols are not supported. Does the line
> > services.bitlbee.enable = true installs the normal version? should I
> > create a new service?
> >
> > thanks,
> >
> > Stu
> >
> >
> > ___
> > nix-dev mailing list
> > nix-dev@lists.science.uu.nl
> > http://lists.science.uu.nl/mailman/listinfo/nix-dev
> >
>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 7138b5: slock: needs the ability to be install with suid p...

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7138b559189defc1426df800ca713d43a9aacbe7
  
https://github.com/NixOS/nixpkgs/commit/7138b559189defc1426df800ca713d43a9aacbe7
  Author: Scott R. Parish 
  Date:   2017-03-30 (Thu, 30 Mar 2017)

  Changed paths:
M nixos/modules/module-list.nix
A nixos/modules/programs/slock.nix

  Log Message:
  ---
  slock: needs the ability to be install with suid privileges


  Commit: 57a29cab6a3955e2f8795aed8142e51d73f7d26d
  
https://github.com/NixOS/nixpkgs/commit/57a29cab6a3955e2f8795aed8142e51d73f7d26d
  Author: Orivej Desh 
  Date:   2017-04-01 (Sat, 01 Apr 2017)

  Changed paths:
A pkgs/games/instead-launcher/default.nix
A pkgs/games/instead-launcher/path.patch
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  instead-launcher: init at 0.6.3


  Commit: 39e95aa159ec002f1c1f4bfa28e0eb944e80da5c
  
https://github.com/NixOS/nixpkgs/commit/39e95aa159ec002f1c1f4bfa28e0eb944e80da5c
  Author: Vince v. Oosten 
  Date:   2017-04-11 (Tue, 11 Apr 2017)

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

  Log Message:
  ---
  add disk storage to libvirt


  Commit: 00c3bd1561b5027562e827341e71cfd2fab1904c
  
https://github.com/NixOS/nixpkgs/commit/00c3bd1561b5027562e827341e71cfd2fab1904c
  Author: Vince van Oosten 
  Date:   2017-04-11 (Tue, 11 Apr 2017)

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

  Log Message:
  ---
  add parted to build inputs


  Commit: c1ef227b37859e77e4cee2045312e2f036a8c7e7
  
https://github.com/NixOS/nixpkgs/commit/c1ef227b37859e77e4cee2045312e2f036a8c7e7
  Author: Tristan Helmich 
  Date:   2017-04-12 (Wed, 12 Apr 2017)

  Changed paths:
M pkgs/servers/radarr/default.nix

  Log Message:
  ---
  radarr: 0.2.0.535 -> 0.2.0.596


  Commit: bf4be8f1dd29612a4e706589ce2bde9be9742ce9
  
https://github.com/NixOS/nixpkgs/commit/bf4be8f1dd29612a4e706589ce2bde9be9742ce9
  Author: Peter Hoeg 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M nixos/modules/services/cluster/kubernetes.nix

  Log Message:
  ---
  k8s: convert int to string to avoid interpolation error


  Commit: a3ee3b51d7236a9b039c6c7e8df9ea8a26c689ef
  
https://github.com/NixOS/nixpkgs/commit/a3ee3b51d7236a9b039c6c7e8df9ea8a26c689ef
  Author: Peter Hoeg 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M nixos/modules/services/cluster/kubernetes.nix

  Log Message:
  ---
  k8s: use slice and target for kubernetes


  Commit: 82b6a8f413f3729c531712e262322c40f4bb2898
  
https://github.com/NixOS/nixpkgs/commit/82b6a8f413f3729c531712e262322c40f4bb2898
  Author: Florent Becker 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

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

  Log Message:
  ---
  rustRegistry: 2017-04-11 -> 2017-04-13


  Commit: dcca9b17e3ee1b72f683642c22884c93f7284ffe
  
https://github.com/NixOS/nixpkgs/commit/dcca9b17e3ee1b72f683642c22884c93f7284ffe
  Author: Florent Becker 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

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

  Log Message:
  ---
  pijul: 0.4.1 -> 0.4.4


  Commit: e8014ce2438ab04852db504b2a8f84d7bbf3582a
  
https://github.com/NixOS/nixpkgs/commit/e8014ce2438ab04852db504b2a8f84d7bbf3582a
  Author: Matthias Beyer 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/applications/office/beancount/default.nix

  Log Message:
  ---
  beancount: 2.0b13 -> 2.0b15


  Commit: 3d04aafffd1707c21bfc056b6d2f8f3efd66d843
  
https://github.com/NixOS/nixpkgs/commit/3d04aafffd1707c21bfc056b6d2f8f3efd66d843
  Author: Matthias Beyer 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/applications/office/fava/default.nix

  Log Message:
  ---
  fava: 1.2 -> 1.3


  Commit: 9d794180196c42929cc95c262492ad8a52f1fe1b
  
https://github.com/NixOS/nixpkgs/commit/9d794180196c42929cc95c262492ad8a52f1fe1b
  Author: lucas8 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

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

  Log Message:
  ---
  fanficfare: init at 2.9.0


  Commit: 552efadbef953162099e6185edc4aad67dae773f
  
https://github.com/NixOS/nixpkgs/commit/552efadbef953162099e6185edc4aad67dae773f
  Author: Benjamin Staffin 
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
M pkgs/applications/networking/browsers/chromium/upstream-info.nix

  Log Message:
  ---
  chromium: 57.0.2987.110 -> 57.0.2987.133 [security]

CVE-2017-5055: Use after free in printing. Credit to 

[Nix-commits] [NixOS/nixpkgs] 34a565: pythonPackages.qtconsole: use pyqt5 backend

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 34a565cba94e49c1c8395511ed9dd7c37b5c6642
  
https://github.com/NixOS/nixpkgs/commit/34a565cba94e49c1c8395511ed9dd7c37b5c6642
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.qtconsole: use pyqt5 backend

instead of pyqt4 which required building qt4.

(cherry picked from commit 8cc5530a73339a6b5044243895f9886da512154d)


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


[Nix-commits] [NixOS/nixpkgs] 8cc553: pythonPackages.qtconsole: use pyqt5 backend

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8cc5530a73339a6b5044243895f9886da512154d
  
https://github.com/NixOS/nixpkgs/commit/8cc5530a73339a6b5044243895f9886da512154d
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.qtconsole: use pyqt5 backend

instead of pyqt4 which required building qt4.


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


[Nix-commits] [NixOS/nixpkgs] 2da9af: Python docs: Python 2.x namespace packages may col...

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2da9af9289ee43e6f0ab9b390576b7495cf0e074
  
https://github.com/NixOS/nixpkgs/commit/2da9af9289ee43e6f0ab9b390576b7495cf0e074
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M doc/languages-frameworks/python.md

  Log Message:
  ---
  Python docs: Python 2.x namespace packages may collide when using 
.withPackages

(cherry picked from commit 8d491ec6c69b8649a7f4824f304e5e29ebdf6e00)


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


[Nix-commits] [NixOS/nixpkgs] 8d491e: Python docs: Python 2.x namespace packages may col...

2017-04-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8d491ec6c69b8649a7f4824f304e5e29ebdf6e00
  
https://github.com/NixOS/nixpkgs/commit/8d491ec6c69b8649a7f4824f304e5e29ebdf6e00
  Author: Frederik Rietdijk 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M doc/languages-frameworks/python.md

  Log Message:
  ---
  Python docs: Python 2.x namespace packages may collide when using 
.withPackages


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