[Nix-commits] [NixOS/nixpkgs] ca3f41: pocketsphinx: 0.8 -> 5prealpha

2016-12-27 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ca3f41d44bd701efd1b252ea7d717a2031ece332
  
https://github.com/NixOS/nixpkgs/commit/ca3f41d44bd701efd1b252ea7d717a2031ece332
  Author: Spiros Boosalis 
  Date:   2016-12-28 (Wed, 28 Dec 2016)

  Changed paths:
M pkgs/development/libraries/pocketsphinx/default.nix
M pkgs/development/libraries/sphinxbase/default.nix

  Log Message:
  ---
  pocketsphinx: 0.8 -> 5prealpha


  Commit: 7cd1a58a753e0cf7bb17dfc96ad51d3dbd3a354a
  
https://github.com/NixOS/nixpkgs/commit/7cd1a58a753e0cf7bb17dfc96ad51d3dbd3a354a
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2016-12-28 (Wed, 28 Dec 2016)

  Changed paths:
M pkgs/development/libraries/pocketsphinx/default.nix
M pkgs/development/libraries/sphinxbase/default.nix

  Log Message:
  ---
  Merge pull request #21452 from sboosali/fix/pocketsphinx

pocketsphinx: 0.8 -> 5prealpha


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


[Nix-commits] [NixOS/nixpkgs] c6bcc4: linux_4_8: add patch to fix CVE-2016-9919

2016-12-27 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c6bcc485de63b4eeb8032b5f30611fa308b6740c
  
https://github.com/NixOS/nixpkgs/commit/c6bcc485de63b4eeb8032b5f30611fa308b6740c
  Author: Franz Pletz 
  Date:   2016-12-28 (Wed, 28 Dec 2016)

  Changed paths:
M pkgs/os-specific/linux/kernel/patches.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  linux_4_8: add patch to fix CVE-2016-9919


  Commit: 7ae2d221cd13fd13c477387fb93aa5fb33f6bafa
  
https://github.com/NixOS/nixpkgs/commit/7ae2d221cd13fd13c477387fb93aa5fb33f6bafa
  Author: Franz Pletz 
  Date:   2016-12-28 (Wed, 28 Dec 2016)

  Changed paths:
M nixos/modules/services/networking/bird.nix

  Log Message:
  ---
  bird service: add bird to systemPackages

For the tool birdc to monitor and configure bird.


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


[Nix-commits] [NixOS/nixpkgs] c31187: xserver.wacom: update xorg.conf.d name after upstr...

2016-12-27 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c311871a6d0a3f83a0cec3e6b8804a741b83dcb5
  
https://github.com/NixOS/nixpkgs/commit/c311871a6d0a3f83a0cec3e6b8804a741b83dcb5
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/modules/services/x11/hardware/wacom.nix

  Log Message:
  ---
  xserver.wacom: update xorg.conf.d name after upstream change of the number


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


[Nix-commits] [NixOS/nixpkgs] 228f65: python:graphite_beacon: 0.22.1 -> 0.27.0

2016-12-27 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 228f657a2b486119c088a0e5a4c647bf55215706
  
https://github.com/NixOS/nixpkgs/commit/228f657a2b486119c088a0e5a4c647bf55215706
  Author: lassulus 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  python:graphite_beacon: 0.22.1 -> 0.27.0


  Commit: d0ad9b5a893512943b38851226cbaeed3daf7476
  
https://github.com/NixOS/nixpkgs/commit/d0ad9b5a893512943b38851226cbaeed3daf7476
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  Merge pull request #21448 from Lassulus/beacon-update

python:graphite_beacon: 0.22.1 -> 0.27.0


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


Re: [Nix-dev] Introducing Nixpkgs Overlays

2016-12-27 Thread Benno Fünfstück
Hi Nicolas,

I like the idea of Nixpkgs overlays. I have not thought fully about the
whole proposal (and I need to catch up with how security updates work
first), but I think there is small mistake when you say:

As part of this modification, I intend to remove the
`pkgs.overridePackages` function, as this one can literally be
replaced by the following Nix expression:

```nix
let pkgs = import  {}; in
  import pkgs.path { overlay = [ (self: super: {
foo = super.foo.override { enableBar = true; };
bar = import ./pkgs/bar { inherit (self) stdenv fetchurl foo; };
  }) ]; }
```


 The `overridePackages` function is useful when you want to chain multiple
functions that modify the package set, like

```nix
let
  pkgs = import  {};
  pkgsA = functionA pkgs
  pkgsB = pkgsA.overridePackages (super: self: {
  });
```

In this code example. I do not need to know how functionA is implemented
internally. It seems to me that, if I instead used overlays for this, it
would be hard to achieve the same effect: I would have to manually take
care to re-apply the overrides that `functionA` put in place.

This does not mean that `overridePackages` needs to stay as-is. But perhaps
it would be possible to implement it using overlays, while still providing
the same interface to the user?


Regards,

Benno Fünfstück
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] e17bb6: nixpart: Move out of python-packages.nix

2016-12-27 Thread aszlig
  Branch: refs/heads/nixpart
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e17bb6195d73db1a30a46298ad5047bb0fa20472
  
https://github.com/NixOS/nixpkgs/commit/e17bb6195d73db1a30a46298ad5047bb0fa20472
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/tests/storage.nix
M pkgs/tools/filesystems/nixpart/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  nixpart: Move out of python-packages.nix

The reason why it was in python-packages.nix is because we needed to
have a way to run this with different Python versions and also that the
project's API could be used by another program or library.

This is not intended so far and even if we're going to do that, we can
still move it back into python-packages.nix.

This now should make it easier to override the arguments of the package
and also should be easier to install inside a user env via "nix-env -iA
nixpart" instead of "nix-env -iA python3Packages.nixpart".

Signed-off-by: aszlig 


  Commit: 85e72e3abd4cb48cb4d387d893918421666ad5ce
  
https://github.com/NixOS/nixpkgs/commit/85e72e3abd4cb48cb4d387d893918421666ad5ce
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/release.nix
M nixos/tests/storage.nix

  Log Message:
  ---
  nixos/tests/storage: Split into sub-derivations

Running a specific test case is a bit icky if you need to comment out
the parts you don't want to run or wait for tests to succeed that you're
not even interested in.

This splits the subtests into its own derivations that can be simply
referenced using -A of nix-build/nix-instantiate.

Signed-off-by: aszlig 


  Commit: d6f428c0d5862a05b385d7b3759efd71b4fe08e1
  
https://github.com/NixOS/nixpkgs/commit/d6f428c0d5862a05b385d7b3759efd71b4fe08e1
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/modules/tasks/storage.nix

  Log Message:
  ---
  nixos/storage: Add defaults for clear/initlabel

I haven't yet stumbled on this because I have always set these options
within test configurations.

So this now allows to set empty disk options, which is fine (after all
we just need to reference them using the storage option in fileSystems
and swapDevices).

Signed-off-by: aszlig 


  Commit: 850466140cb3d28d5f9ab696eb686c6e7d438ff7
  
https://github.com/NixOS/nixpkgs/commit/850466140cb3d28d5f9ab696eb686c6e7d438ff7
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/tests/storage.nix

  Log Message:
  ---
  nixos/tests/storage: Fix exporting storage.xml

Using copyFileFromHost() doesn't work if the file contains single
quotes, because they're not escaped properly.

So let's move to a more robust way to provide storage.xml to the
guests (via environment.etc), because apart from that escaping issue we
really don't need anything like copyFileFromHost() anymore because every
subtest now resides in its own derivation.

Signed-off-by: aszlig 


  Commit: fa05131461d723062ca90c5797c7be8327a41da9
  
https://github.com/NixOS/nixpkgs/commit/fa05131461d723062ca90c5797c7be8327a41da9
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/tests/storage.nix

  Log Message:
  ---
  nixos/tests/storage: Rename --from-xml to --xml

I've changed this in aszlig/nixpart@7529c47b05974500b4aaaff4e6644f03900061fe.

So let's fix it here :-)

Signed-off-by: aszlig 


  Commit: 81152a51a4ebbfd4026528137b47530290ea84cf
  
https://github.com/NixOS/nixpkgs/commit/81152a51a4ebbfd4026528137b47530290ea84cf
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/tools/filesystems/nixpart/default.nix

  Log Message:
  ---
  nixpart: Update to latest master version

This is mainly for testing purposes during the WIP branch, but it should
actually do partitioning for some of the NixOS VM tests (particularily
the .btrfs test).

I've tagged this specifically as unstable-1.0.0 to make sure noone is
seriously going to use it yet (except for playing around of course).

Signed-off-by: aszlig 


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


[Nix-commits] [NixOS/nixpkgs] 346c1d: xournal: Allow to build it on darwin with X11 back...

2016-12-27 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 346c1db2ac336e15f2c0019292963a9c5ba37f58
  
https://github.com/NixOS/nixpkgs/commit/346c1db2ac336e15f2c0019292963a9c5ba37f58
  Author: Johannes Bornhold 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  xournal: Allow to build it on darwin with X11 backend


  Commit: febab15b01fc2ed68e688e3819941a2c62091d8a
  
https://github.com/NixOS/nixpkgs/commit/febab15b01fc2ed68e688e3819941a2c62091d8a
  Author: Johannes Bornhold 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  gtk2: Enable xinput for Darwin


  Commit: 7d4e04c7950196e26dad5067045eb8a4cb2718f2
  
https://github.com/NixOS/nixpkgs/commit/7d4e04c7950196e26dad5067045eb8a4cb2718f2
  Author: Daiderd Jordan 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/applications/graphics/xournal/default.nix
M pkgs/development/libraries/gtk+/2.x.nix

  Log Message:
  ---
  Merge pull request #21400 from johbo/darwin-xournal

Xournal: Darwin support


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


[Nix-commits] [NixOS/nixpkgs] 7e54f3: mm: init at 2016.11.04

2016-12-27 Thread Arseniy Seroka
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7e54f35d65737f55525f8328dd9309bdb93b5ff9
  
https://github.com/NixOS/nixpkgs/commit/7e54f35d65737f55525f8328dd9309bdb93b5ff9
  Author: Adam Beckmeyer 
  Date:   2016-12-18 (Sun, 18 Dec 2016)

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

  Log Message:
  ---
  mm: init at 2016.11.04


  Commit: aa18f24f4b29e978de25817de1b087f145a14b66
  
https://github.com/NixOS/nixpkgs/commit/aa18f24f4b29e978de25817de1b087f145a14b66
  Author: Arseniy Seroka 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  Merge pull request #21269 from non-Jedi/mm

mm: init at 2016.11.04


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


[Nix-commits] [NixOS/nixpkgs] cfbe50: nixos/graphite: fix beacon config parameter

2016-12-27 Thread lassulus
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cfbe501d4ecb6173be204e68a0d7b5e8f52086e8
  
https://github.com/NixOS/nixpkgs/commit/cfbe501d4ecb6173be204e68a0d7b5e8f52086e8
  Author: lassulus 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/modules/services/monitoring/graphite.nix

  Log Message:
  ---
  nixos/graphite: fix beacon config parameter


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


[Nix-commits] [NixOS/nixpkgs] df5f88: ruby: 2.4.0 (#21419)

2016-12-27 Thread Michael Fellinger
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: df5f88070e239a23d26055c138c1efb0706e0b4e
  
https://github.com/NixOS/nixpkgs/commit/df5f88070e239a23d26055c138c1efb0706e0b4e
  Author: Michael Fellinger 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/development/interpreters/ruby/default.nix
M pkgs/development/interpreters/ruby/patchsets.nix
M pkgs/development/interpreters/ruby/rvm-patchsets.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  ruby: 2.4.0 (#21419)


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


[Nix-commits] [NixOS/nixpkgs] 125328: zerotierone: 1.1.12 -> 1.1.14

2016-12-27 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 12532879b06d816ba88b52ed8ce5fdad53d6edb7
  
https://github.com/NixOS/nixpkgs/commit/12532879b06d816ba88b52ed8ce5fdad53d6edb7
  Author: zimbatm 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  zerotierone: 1.1.12 -> 1.1.14


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


[Nix-commits] [NixOS/nixpkgs] 1896bf: pygraphviz: 1.3.1 -> 1.4rc1

2016-12-27 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1896bf7a7831d612d1e8a188cb83b715aa476a7f
  
https://github.com/NixOS/nixpkgs/commit/1896bf7a7831d612d1e8a188cb83b715aa476a7f
  Author: Josef Kemetmueller 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  pygraphviz: 1.3.1 -> 1.4rc1

This fixes a segmentation fault during the test phase
https://github.com/pygraphviz/pygraphviz/issues/84


  Commit: 7c73f4408640a67b81828c79affc17a940ade902
  
https://github.com/NixOS/nixpkgs/commit/7c73f4408640a67b81828c79affc17a940ade902
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  Merge pull request #21440 from knedlsepp/fix-pygraphviz

pygraphviz: 1.3.1 -> 1.4rc1


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


[Nix-commits] [NixOS/nixpkgs] 857d0e: facter: use boost160 (#21435)

2016-12-27 Thread Kranium Gikos Mendoza
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 857d0edcfb84364faffcc3de064dec0de1d5fab9
  
https://github.com/NixOS/nixpkgs/commit/857d0edcfb84364faffcc3de064dec0de1d5fab9
  Author: Kranium Gikos Mendoza 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  facter: use boost160 (#21435)


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


[Nix-commits] [NixOS/nixpkgs] 02c65b: google-chrome: add channel name suffix

2016-12-27 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 02c65bdac919fcb0cecc1a157744156ed39b9fc6
  
https://github.com/NixOS/nixpkgs/commit/02c65bdac919fcb0cecc1a157744156ed39b9fc6
  Author: zimbatm 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/applications/networking/browsers/google-chrome/default.nix

  Log Message:
  ---
  google-chrome: add channel name suffix

Updates would always select the unstable version otherwise. This was
copies from the chromium package.


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


[Nix-commits] [NixOS/nixpkgs] 9de120: pythonPackages.resampy: init at 0.1.4

2016-12-27 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9de120ff9d2a4cabf0ba0a7fa31a1daabd1ef5d9
  
https://github.com/NixOS/nixpkgs/commit/9de120ff9d2a4cabf0ba0a7fa31a1daabd1ef5d9
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  pythonPackages.resampy: init at 0.1.4


  Commit: 7847a02db9d3bfde2146e8a2e5a7b6ffca36c2fb
  
https://github.com/NixOS/nixpkgs/commit/7847a02db9d3bfde2146e8a2e5a7b6ffca36c2fb
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  pythonPackages.numpydoc: 0.5 -> 0.6.0


  Commit: 72385a35f87a998d3ffafd6673e832455a25a22a
  
https://github.com/NixOS/nixpkgs/commit/72385a35f87a998d3ffafd6673e832455a25a22a
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  pythonPackages.librosa: 0.4.0 -> 0.4.3


  Commit: 3b050791e47362cb4d6ce4da74bbaa360eaa8ff3
  
https://github.com/NixOS/nixpkgs/commit/3b050791e47362cb4d6ce4da74bbaa360eaa8ff3
  Author: Frederik Rietdijk 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  pythonPackages.joblib: 0.9.4 -> 0.10.3


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


[Nix-commits] [NixOS/nixpkgs] bef30f: cgit: 0.12 -> 1.1

2016-12-27 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bef30f322f3fb9dee853264193decb3c9552aabf
  
https://github.com/NixOS/nixpkgs/commit/bef30f322f3fb9dee853264193decb3c9552aabf
  Author: Bjørn Forsman 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  cgit: 0.12 -> 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] a55bf2: codesearch: init at 20150617

2016-12-27 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a55bf2b812463c992dad5f441efb8831dde10a0b
  
https://github.com/NixOS/nixpkgs/commit/a55bf2b812463c992dad5f441efb8831dde10a0b
  Author: Benno Fünfstück 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  codesearch: init at 20150617


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


[Nix-commits] [NixOS/nixpkgs] 2436fc: ghcHEAD comes with a ghci package.

2016-12-27 Thread Shea Levy
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2436fc1b11647ed2ca2398088541a108440d75e6
  
https://github.com/NixOS/nixpkgs/commit/2436fc1b11647ed2ca2398088541a108440d75e6
  Author: Shea Levy 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  ghcHEAD comes with a ghci package.


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


[Nix-commits] [NixOS/nixpkgs] 54be55: hhpc: init at 0.3.1

2016-12-27 Thread Alexey Shmalko
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 54be55f47c1cb56c4352208511fea80fef1b5db2
  
https://github.com/NixOS/nixpkgs/commit/54be55f47c1cb56c4352208511fea80fef1b5db2
  Author: Nicolò Balzarotti 
  Date:   2016-12-26 (Mon, 26 Dec 2016)

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

  Log Message:
  ---
  hhpc: init at 0.3.1


  Commit: 35667f04741545ada3752e95d30567811ab68a60
  
https://github.com/NixOS/nixpkgs/commit/35667f04741545ada3752e95d30567811ab68a60
  Author: Alexey Shmalko 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

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

  Log Message:
  ---
  Merge pull request #21363 from nico202/hhpc

hhpc: init at 0.3.1


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


[Nix-commits] [NixOS/nixpkgs] 9db36f: libsigrokdecode: 0.4.0 -> 0.4.1

2016-12-27 Thread Bjørn Forsman
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9db36f277dc5741abe78e1ef4b0ba1cbab0be9bb
  
https://github.com/NixOS/nixpkgs/commit/9db36f277dc5741abe78e1ef4b0ba1cbab0be9bb
  Author: Bjørn Forsman 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/development/tools/libsigrokdecode/default.nix

  Log Message:
  ---
  libsigrokdecode: 0.4.0 -> 0.4.1

(cherry picked from commit cbb29a26a210f801ab5f8df8f8831d75ab2c470b)


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


[Nix-commits] [NixOS/nixpkgs] cbb29a: libsigrokdecode: 0.4.0 -> 0.4.1

2016-12-27 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cbb29a26a210f801ab5f8df8f8831d75ab2c470b
  
https://github.com/NixOS/nixpkgs/commit/cbb29a26a210f801ab5f8df8f8831d75ab2c470b
  Author: Bjørn Forsman 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/development/tools/libsigrokdecode/default.nix

  Log Message:
  ---
  libsigrokdecode: 0.4.0 -> 0.4.1


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


[Nix-commits] [NixOS/nixpkgs] ccbee4: nixos/tests/blivet: Fix typo in comment

2016-12-27 Thread aszlig
  Branch: refs/heads/nixpart
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ccbee460da2c875a04602c63e886b45fd11821da
  
https://github.com/NixOS/nixpkgs/commit/ccbee460da2c875a04602c63e886b45fd11821da
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M nixos/tests/blivet.nix

  Log Message:
  ---
  nixos/tests/blivet: Fix typo in comment

It's the volume_key _binary_ not the volume_key "something" :-)

Signed-off-by: aszlig 


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


[Nix-commits] [NixOS/nixpkgs] 108ba6: nixos/tests/blivet: Refactor test runner

2016-12-27 Thread aszlig
  Branch: refs/heads/nixpart
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 108ba655a2f79fa1a012442de94d3d10cdc4ae9d
  
https://github.com/NixOS/nixpkgs/commit/108ba655a2f79fa1a012442de94d3d10cdc4ae9d
  Author: aszlig 
  Date:   2016-12-26 (Mon, 26 Dec 2016)

  Changed paths:
M nixos/tests/blivet.nix
M pkgs/development/libraries/libblockdev/default.nix
M pkgs/development/python-modules/blivet/default.nix

  Log Message:
  ---
  nixos/tests/blivet: Refactor test runner

First of all, this gets rid of all the copying of the test sources by
providing them via a separate output directly from the corresponding
packages.

This also simplifies the way we retrieve environment variables needed
for running the tests. Previously we used one derivation for every
environment variable, the latter being defined in an attrset so we can
make customizations.

We no longer need these customizations, especially because libblockdev
and blivet are both rhinstaller projects and pretty much have the same
testing setup.

So now we gather these variables in one derivation and also do not fetch
LD_LIBRARY_PATH anymore, because all of the library path references are
built into the corresponding libraries.

I'm also no longer using "with pkgs.lib;" for the whole expression to
make sure we can catch eval errors very early on (my Vim config does
"nix-instantiate --parse" when writing the file).

Signed-off-by: aszlig 


  Commit: e919a460a769fe6f6aee1405775efb423a478aef
  
https://github.com/NixOS/nixpkgs/commit/e919a460a769fe6f6aee1405775efb423a478aef
  Author: aszlig 
  Date:   2016-12-27 (Tue, 27 Dec 2016)

  Changed paths:
M pkgs/development/python-modules/blivet/default.nix
A pkgs/development/python-modules/blivet/no-hawkey.patch

  Log Message:
  ---
  blivet: 0.67 -> 2.1.7

This is basically a bump from the stone age to the current version, so
the changelog would be a bit long to summarize here, hence here is the
URL:

https://github.com/rhinstaller/blivet/blob/blivet-2.1.7/python-blivet.spec#L80-L1278

A few of the direct dependencies of blivet are now direct depencies of
libblockdev, which inself is a replacement for pyblock in C and uses
gobject-introspection to resolve the C symbols.

We also patch out hawkey and replace it with a wrapper around nix-store,
because on NixOS we can't use libsolv to resolve dependencies.

Right now, I'm also disabling the EDD tests, because I think they
shouldn't work within our VM test environments, but I need to dig a bit
more into that.

In the end we now still have 12 failing test cases which we need to
resolve:

https://headcounter.org/hydra/log/1rbpjrrjvc95ldcmmrqbangh5ssizygr-vm-test-run-blivet.drv

Signed-off-by: aszlig 


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