Re: [Nix-dev] [ANN] Home Manager

2017-07-04 Thread Robert Helgesson
Thanks Nicolas!

> For your information, the module system was made such that you can 
> re-use it as a submodule. So technically, you might be able to create
> a NixOS module for NixOS which imports the home-manager within NixOS
> users ;)
> 
> This home-manager submodule would have to forward pkgs as a module 
> argument (as done in NixOS), and import the modules from the 
> home-manager.

Yes, I've been meaning to do this and in principle I think it should
work as you describe. But while the HM activation script should be
sufficiently idempotent to include in `system.activationScripts`, it is
not really written for speed so it may need some tweaking in that area.

Many thanks for your comment :-)

/rycee

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


[Nix-dev] [ANN] Home Manager

2017-07-02 Thread Robert Helgesson
Hi All,

While my little Home Manager project has been online at

  https://github.com/rycee/home-manager

since January I haven't really mentioned it much. Although it is far
from complete, I now feel sufficiently confident about its stability and
usefulness to announce it to the wider community.

In short Home Manager is a set of NixOS modules and a command line tool
called `home-manager` that lets you configure your user's environment
similar to how you configure your NixOS system. Since Home Manager uses
the NixOS module system under the hood and therefore supports the nice
things the modules bring, in particular type checking, automatic man
page generation, and merging configurations using the `imports` field.

It is quite similar to nixuser [1] in scope and implementation but
differs in some crucial ways, most notably Home Manager lives in a
separate repository from Nixpkgs which I hope makes it easier to get
started. It also works under NixOS 17.03 (which is the version I mostly
use) and to some extent also other Linux distros and even macOS. Though
I have personally only ever used it under NixOS.

A simple Home Manager configuration may look something like

{ pkgs, ... }:

{
  home.packages = [
pkgs.htop
pkgs.fortune
  ];

  programs.emacs = {
enable = true;
extraPackages = epkgs: [
  epkgs.nix-mode
  epkgs.magit
];
  };

  programs.firefox = {
enable = true;
enableAdobeFlash = true;
  };

  services.gpg-agent = {
enable = true;
defaultCacheTtl = 1800;
enableSshSupport = true;
  };
}

I have also written a more elaborate description of the project on my
website which you can reach at

  https://rycee.net/posts/2017-07-02-manage-your-home-with-nix.html

Please have a look and give Home Manager a try if you are feeling
adventurous. Feedback is most welcome!

/rycee

[1] https://github.com/NixOS/nixpkgs/pull/9250

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


[Nix-commits] [NixOS/nixpkgs] 0a52cc: eclipse-platform: 4.6.2 -> 4.7

2017-06-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0a52cc1851f16eca0f8b9c7d08be4ea8fceb4b1c
  
https://github.com/NixOS/nixpkgs/commit/0a52cc1851f16eca0f8b9c7d08be4ea8fceb4b1c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-28 (Wed, 28 Jun 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipse-platform: 4.6.2 -> 4.7


  Commit: 556a867186649021aba07ddbae5cc1087f2df7c8
  
https://github.com/NixOS/nixpkgs/commit/556a867186649021aba07ddbae5cc1087f2df7c8
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-28 (Wed, 28 Jun 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipse-sdk: 4.6.2 -> 4.7


  Commit: fa6e946383e5fb2d1cbe47617d34aff081a9c6f2
  
https://github.com/NixOS/nixpkgs/commit/fa6e946383e5fb2d1cbe47617d34aff081a9c6f2
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-28 (Wed, 28 Jun 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-jdt: 4.6.2 -> 4.7


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


[Nix-commits] [NixOS/nixpkgs] 107d53: bundix: 2.2.0 -> 2.2.1 (#26894)

2017-06-27 Thread Robert
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 107d53f40c940a6495ee96c1f22aa9200647dce7
  
https://github.com/NixOS/nixpkgs/commit/107d53f40c940a6495ee96c1f22aa9200647dce7
  Author: Robert <git...@vllmrt.net>
  Date:   2017-06-27 (Tue, 27 Jun 2017)

  Changed paths:
M pkgs/development/ruby-modules/bundix/default.nix

  Log Message:
  ---
  bundix: 2.2.0 -> 2.2.1 (#26894)

This fixes `fetchurl-force.nix` not being installed, which breaks
bundix for some gems.

E.g.

```
$ nix-build --argstr url https://rubygems.org/gems/nio4r-2.1.0.gem 
/nix/store/y6959dxal86l3alc0ryf7752prbbkzxg-bundix-2.2.0/lib/ruby/gems/2.3.0/gems/bundix-2.2.0/lib/bundix/fetchurl-force.nix
error: getting status of 
‘/nix/store/y6959dxal86l3alc0ryf7752prbbkzxg-bundix-2.2.0/lib/ruby/gems/2.3.0/gems/bundix-2.2.0/lib/bundix/fetchurl-force.nix’:
 No such file or directory
```


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


[Nix-commits] [NixOS/nixpkgs] 90b2d0: maintainers: add roberth

2017-06-22 Thread Robert Hensing
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 90b2d06268971aea52aa254df6c4458792986d88
  
https://github.com/NixOS/nixpkgs/commit/90b2d06268971aea52aa254df6c4458792986d88
  Author: Robert Hensing <rob...@roberthensing.nl>
  Date:   2017-06-22 (Thu, 22 Jun 2017)

  Changed paths:
M lib/maintainers.nix

  Log Message:
  ---
  maintainers: add roberth


  Commit: 86dc6469baa652c111437ac8f3e124e1d1ed8f86
  
https://github.com/NixOS/nixpkgs/commit/86dc6469baa652c111437ac8f3e124e1d1ed8f86
  Author: Robert Hensing <rob...@roberthensing.nl>
  Date:   2017-06-22 (Thu, 22 Jun 2017)

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

  Log Message:
  ---
  arelle: init at 2017-06-01


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


[Nix-commits] [NixOS/nixpkgs] c28e6e: expat: 2.2.0 -> 2.2.1

2017-06-18 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c28e6eecaa950d1abd3187f6e6a64b9b0a24f3fc
  
https://github.com/NixOS/nixpkgs/commit/c28e6eecaa950d1abd3187f6e6a64b9b0a24f3fc
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-18 (Sun, 18 Jun 2017)

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

  Log Message:
  ---
  expat: 2.2.0 -> 2.2.1

Includes fixes for CVE-2017-9233 and CVE-2016-9063.

(cherry picked from commit 5fc48529bc8dcdd578b71c9fdb919fefba0f8c74)


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


[Nix-commits] [NixOS/nixpkgs] 19f821: perl-Perl-Critic: 1.126 -> 1.128

2017-06-15 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 19f8213a3e49c0ba362c3715d90374e896d16068
  
https://github.com/NixOS/nixpkgs/commit/19f8213a3e49c0ba362c3715d90374e896d16068
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-15 (Thu, 15 Jun 2017)

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

  Log Message:
  ---
  perl-Perl-Critic: 1.126 -> 1.128


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


[Nix-commits] [NixOS/nixpkgs] 4576e8: trash-cli: fix build on Python 3.6

2017-06-02 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4576e817fd8c25aa02a917e89982cf7e3e37
  
https://github.com/NixOS/nixpkgs/commit/4576e817fd8c25aa02a917e89982cf7e3e37
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-03 (Sat, 03 Jun 2017)

  Changed paths:
M pkgs/tools/misc/trash-cli/default.nix

  Log Message:
  ---
  trash-cli: fix build on Python 3.6


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


[Nix-commits] [NixOS/nixpkgs] 463df8: perl-DBIx-Class-Schema-Loader: 0.07045 -> 0.07047

2017-06-01 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 463df8c9f7dc0a29c4b4fa5b46b1eca073b40074
  
https://github.com/NixOS/nixpkgs/commit/463df8c9f7dc0a29c4b4fa5b46b1eca073b40074
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-06-01 (Thu, 01 Jun 2017)

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

  Log Message:
  ---
  perl-DBIx-Class-Schema-Loader: 0.07045 -> 0.07047


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


[Nix-commits] [NixOS/nixpkgs] 0fbc66: perl-Socket6: 0.25 -> 0.28

2017-05-19 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0fbc6630a31b6188a750a0b6f8f703a366f23b6c
  
https://github.com/NixOS/nixpkgs/commit/0fbc6630a31b6188a750a0b6f8f703a366f23b6c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-05-19 (Fri, 19 May 2017)

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

  Log Message:
  ---
  perl-Socket6: 0.25 -> 0.28


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


[Nix-commits] [NixOS/nixpkgs] 23f633: perl-PPI: 1.220 -> 1.224

2017-05-17 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 23f6332634e2e9f7ace12c67a8ab7a92c8cf13f7
  
https://github.com/NixOS/nixpkgs/commit/23f6332634e2e9f7ace12c67a8ab7a92c8cf13f7
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-05-17 (Wed, 17 May 2017)

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

  Log Message:
  ---
  perl-PPI: 1.220 -> 1.224


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


[Nix-commits] [NixOS/nixpkgs] e281e5: eclipse-plugin-autodetect-encoding: init at 1.8.3

2017-05-11 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e281e59711203ded4d7ed7712b82350e4d68926b
  
https://github.com/NixOS/nixpkgs/commit/e281e59711203ded4d7ed7712b82350e4d68926b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-05-11 (Thu, 11 May 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-autodetect-encoding: init at 1.8.3


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


[Nix-commits] [NixOS/nixpkgs] dd70ff: svtplay-dl: 1.9.3 -> 1.9.4

2017-05-10 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dd70ff228f7081d9152842feac1954636656edc8
  
https://github.com/NixOS/nixpkgs/commit/dd70ff228f7081d9152842feac1954636656edc8
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-05-10 (Wed, 10 May 2017)

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

  Log Message:
  ---
  svtplay-dl: 1.9.3 -> 1.9.4


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


[Nix-commits] [NixOS/nixpkgs] e026fb: kgpg: Added gnupg1 as runtime dependency (#25356)

2017-05-02 Thread Robert Tröger
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e026fb485221d8a6e05ec52008766ccf4e7c5589
  
https://github.com/NixOS/nixpkgs/commit/e026fb485221d8a6e05ec52008766ccf4e7c5589
  Author: Robert Tröger <git...@troeger.cc>
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
M pkgs/applications/kde/kgpg.nix

  Log Message:
  ---
  kgpg: Added gnupg1 as runtime dependency (#25356)


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


[Nix-commits] [NixOS/nixpkgs] 4c1713: transmission-remote-gtk: fix broken tray applet ic...

2017-04-25 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4c171319f56ab1b9fb50d8fd0afb422046adc636
  
https://github.com/NixOS/nixpkgs/commit/4c171319f56ab1b9fb50d8fd0afb422046adc636
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-26 (Wed, 26 Apr 2017)

  Changed paths:
M pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix

  Log Message:
  ---
  transmission-remote-gtk: fix broken tray applet icons

This uses `wrapGAppsHook` and `hicolor_icon_theme` to let the tray
applet find the icons.


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


[Nix-commits] [NixOS/nixpkgs] 17b689: perl-version: add meta section

2017-04-25 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 17b689c0b27e6bf1ff25744cdf9608297dec8740
  
https://github.com/NixOS/nixpkgs/commit/17b689c0b27e6bf1ff25744cdf9608297dec8740
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-25 (Tue, 25 Apr 2017)

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

  Log Message:
  ---
  perl-version: add meta section


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


[Nix-commits] [NixOS/nixpkgs] 45cb7c: comic-relief: change download URL

2017-04-15 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 45cb7c2c0efc61e9871562fe343efcea3c9171db
  
https://github.com/NixOS/nixpkgs/commit/45cb7c2c0efc61e9871562fe343efcea3c9171db
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-15 (Sat, 15 Apr 2017)

  Changed paths:
M pkgs/data/fonts/comic-relief/default.nix

  Log Message:
  ---
  comic-relief: change download URL

The previous URL is broken.


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


[Nix-commits] [NixOS/nixpkgs] 0a2481: haskellPackages.bench: 1.0.2 -> 1.0.3

2017-04-14 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0a24814d8f89712e887fe915a094808b609138d6
  
https://github.com/NixOS/nixpkgs/commit/0a24814d8f89712e887fe915a094808b609138d6
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-14 (Fri, 14 Apr 2017)

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

  Log Message:
  ---
  haskellPackages.bench: 1.0.2 -> 1.0.3

The 1.0.2 version does not build with the current turtle library.


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


[Nix-commits] [NixOS/nixpkgs] de0f09: josm: 11639 -> 11826

2017-04-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: de0f09035377d4ebd6d183168d7e94bff82eecf5
  
https://github.com/NixOS/nixpkgs/commit/de0f09035377d4ebd6d183168d7e94bff82eecf5
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-13 (Thu, 13 Apr 2017)

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

  Log Message:
  ---
  josm: 11639 -> 11826


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


[Nix-commits] [NixOS/nixpkgs] 034ea0: pythonPackages.PyICU: 1.9.5 -> 1.9.6

2017-04-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 034ea00b98101922fd70507692f87b97fbccf836
  
https://github.com/NixOS/nixpkgs/commit/034ea00b98101922fd70507692f87b97fbccf836
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-04-13 (Thu, 13 Apr 2017)

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

  Log Message:
  ---
  pythonPackages.PyICU: 1.9.5 -> 1.9.6


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


[Nix-commits] [NixOS/nixpkgs] b31f43: cpulimit: 2.4 -> 2.5

2017-03-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b31f43d7c6202e71642f69b8cb1350c1900cf69a
  
https://github.com/NixOS/nixpkgs/commit/b31f43d7c6202e71642f69b8cb1350c1900cf69a
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-28 (Tue, 28 Mar 2017)

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

  Log Message:
  ---
  cpulimit: 2.4 -> 2.5


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


[Nix-commits] [NixOS/nixpkgs] a4d285: atanks: 6.2 -> 6.5

2017-03-23 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a4d285616dac3147529dac22fadc515435cd7e49
  
https://github.com/NixOS/nixpkgs/commit/a4d285616dac3147529dac22fadc515435cd7e49
  Author: Linus Heckemann <g...@sphalerite.org>
  Date:   2017-03-23 (Thu, 23 Mar 2017)

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

  Log Message:
  ---
  atanks: 6.2 -> 6.5


  Commit: f92d08020dc5bb33622f83fade68b407f3a52378
  
https://github.com/NixOS/nixpkgs/commit/f92d08020dc5bb33622f83fade68b407f3a52378
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-23 (Thu, 23 Mar 2017)

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

  Log Message:
  ---
  atanks: remove unnecessary patch phase


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


[Nix-commits] [NixOS/nixpkgs] 0a476e: eclipses: add dependencies as build inputs

2017-03-14 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0a476ee5de86c2e2e2edf3b8a571f82573404679
  
https://github.com/NixOS/nixpkgs/commit/0a476ee5de86c2e2e2edf3b8a571f82573404679
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-14 (Tue, 14 Mar 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/build-eclipse.nix
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipses: add dependencies as build inputs

Having `glib` in the build inputs will allow its build hook to
trigger. Also adds `gsettings_desktop_schemas` as a dependency since
Eclipse appears to need the schemas under certain circumstances.

(cherry picked from commit 5228bc9f2e2a7e85a1ec433e6a0ea4eda40bd5e4)


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


[Nix-commits] [NixOS/nixpkgs] 390579: eclipses: add dependencies as build inputs

2017-03-14 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3905792c9496b5ba00b5c964800f761594ebcdad
  
https://github.com/NixOS/nixpkgs/commit/3905792c9496b5ba00b5c964800f761594ebcdad
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-14 (Tue, 14 Mar 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/build-eclipse.nix
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipses: add dependencies as build inputs

Having `glib` in the build inputs will allow its build hook to
trigger. Also adds `gsettings_desktop_schemas` as a dependency since
Eclipse appears to need the schemas under certain circumstances.

(cherry picked from commit 5228bc9f2e2a7e85a1ec433e6a0ea4eda40bd5e4)


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


[Nix-commits] [NixOS/nixpkgs] 5228bc: eclipses: add dependencies as build inputs

2017-03-14 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5228bc9f2e2a7e85a1ec433e6a0ea4eda40bd5e4
  
https://github.com/NixOS/nixpkgs/commit/5228bc9f2e2a7e85a1ec433e6a0ea4eda40bd5e4
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-14 (Tue, 14 Mar 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/build-eclipse.nix
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipses: add dependencies as build inputs

Having `glib` in the build inputs will allow its build hook to
trigger. Also adds `gsettings_desktop_schemas` as a dependency since
Eclipse appears to need the schemas under certain circumstances.


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


[Nix-commits] [NixOS/nixpkgs] e206d5: dogecoin: fix sha256

2017-03-07 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e206d5ab63b64b377c22488ac0b33481bef9bf21
  
https://github.com/NixOS/nixpkgs/commit/e206d5ab63b64b377c22488ac0b33481bef9bf21
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-07 (Tue, 07 Mar 2017)

  Changed paths:
M pkgs/applications/altcoins/dogecoin.nix

  Log Message:
  ---
  dogecoin: fix sha256


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


[Nix-commits] [NixOS/nixpkgs] ac0021: cassandra_2_2: init at 2.2.9

2017-03-07 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ac0021ce53d2f9d8b26aa5374ccac1cc3e4b270d
  
https://github.com/NixOS/nixpkgs/commit/ac0021ce53d2f9d8b26aa5374ccac1cc3e4b270d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-07 (Tue, 07 Mar 2017)

  Changed paths:
A pkgs/servers/nosql/cassandra/2.2.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  cassandra_2_2: init at 2.2.9


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


[Nix-commits] [NixOS/nixpkgs] 927974: photivo: fix build with lensfun >= 0.3

2017-03-06 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9279742eed98ae1b23d14d3cda2780fb84585c17
  
https://github.com/NixOS/nixpkgs/commit/9279742eed98ae1b23d14d3cda2780fb84585c17
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-06 (Mon, 06 Mar 2017)

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

  Log Message:
  ---
  photivo: fix build with lensfun >= 0.3

(cherry picked from commit 747b62f909c16f951b7b94624f6494ab861d67ef)


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


[Nix-commits] [NixOS/nixpkgs] 747b62: photivo: fix build with lensfun >= 0.3

2017-03-06 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 747b62f909c16f951b7b94624f6494ab861d67ef
  
https://github.com/NixOS/nixpkgs/commit/747b62f909c16f951b7b94624f6494ab861d67ef
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-06 (Mon, 06 Mar 2017)

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

  Log Message:
  ---
  photivo: fix build with lensfun >= 0.3


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


[Nix-commits] [NixOS/nixpkgs] 7618a9: javasvn: remove

2017-03-06 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7618a9f481352a023b37829779a60048ccfc6032
  
https://github.com/NixOS/nixpkgs/commit/7618a9f481352a023b37829779a60048ccfc6032
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-06 (Mon, 06 Mar 2017)

  Changed paths:
R pkgs/development/libraries/java/javasvn/builder.sh
R pkgs/development/libraries/java/javasvn/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  javasvn: remove

Upstream URL is invalid and the package has not had direct attention
since June 2006.

(cherry picked from commit a3e6b41d3677d37d808ee8f3b81f94d996899d40)


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


[Nix-commits] [NixOS/nixpkgs] d093c1: josm: 11526 -> 11639

2017-03-03 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d093c111ea4bd8e3387ec217a8f23b91e952c2d3
  
https://github.com/NixOS/nixpkgs/commit/d093c111ea4bd8e3387ec217a8f23b91e952c2d3
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-03 (Fri, 03 Mar 2017)

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

  Log Message:
  ---
  josm: 11526 -> 11639


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


[Nix-commits] [NixOS/nixpkgs] a5ed11: svtplay-dl: 1.9.2 -> 1.9.3

2017-03-01 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a5ed11202c772b2da8d2208b1574668a4bb608ad
  
https://github.com/NixOS/nixpkgs/commit/a5ed11202c772b2da8d2208b1574668a4bb608ad
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  svtplay-dl: 1.9.2 -> 1.9.3


  Commit: 337356448a9ce7f6ca4ba345af76b8625e4eb2c7
  
https://github.com/NixOS/nixpkgs/commit/337356448a9ce7f6ca4ba345af76b8625e4eb2c7
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  perl-Log-Log4perl: 1.48 -> 1.49


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


[Nix-commits] [NixOS/nixpkgs] 981681: gpsbabel: require qt4 rather than qtbase

2017-02-28 Thread Robert Helgesson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 981681c703b0643e904874e06de472d3cbd64547
  
https://github.com/NixOS/nixpkgs/commit/981681c703b0643e904874e06de472d3cbd64547
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  gpsbabel: require qt4 rather than qtbase

(cherry picked from commit cf9cb1bac3fe61b3cac5dcd3aca5e2c214186a24)


  Commit: 78f42707143842643432b0095a2caaed2c002d07
  
https://github.com/NixOS/nixpkgs/commit/78f42707143842643432b0095a2caaed2c002d07
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  gpsbabel: 1.5.2 -> 1.5.3

(cherry picked from commit 61237e17380b64f8e2879f082a06d719f729e30a)


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


[Nix-commits] [NixOS/nixpkgs] cf9cb1: gpsbabel: require qt4 rather than qtbase

2017-02-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cf9cb1bac3fe61b3cac5dcd3aca5e2c214186a24
  
https://github.com/NixOS/nixpkgs/commit/cf9cb1bac3fe61b3cac5dcd3aca5e2c214186a24
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  gpsbabel: require qt4 rather than qtbase


  Commit: 61237e17380b64f8e2879f082a06d719f729e30a
  
https://github.com/NixOS/nixpkgs/commit/61237e17380b64f8e2879f082a06d719f729e30a
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-03-01 (Wed, 01 Mar 2017)

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

  Log Message:
  ---
  gpsbabel: 1.5.2 -> 1.5.3


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


[Nix-commits] [NixOS/nixpkgs] 86b840: perl-Data-FormValidator: 4.81 -> 4.85

2017-02-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 86b840d8c97ae00497be0c1d9acbc038960b5d81
  
https://github.com/NixOS/nixpkgs/commit/86b840d8c97ae00497be0c1d9acbc038960b5d81
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

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

  Log Message:
  ---
  perl-Data-FormValidator: 4.81 -> 4.85


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


[Nix-commits] [NixOS/nixpkgs] b87be6: stix-two: init at 2.0.0

2017-02-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b87be6e8ec10b794ffe038d34985544c8a87027b
  
https://github.com/NixOS/nixpkgs/commit/b87be6e8ec10b794ffe038d34985544c8a87027b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-20 (Mon, 20 Feb 2017)

  Changed paths:
A pkgs/data/fonts/stix-two/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  stix-two: init at 2.0.0


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


[Nix-commits] [NixOS/nixpkgs] 096956: eclipse-plugin-yedit: init at 1.0.20.201509041456

2017-02-15 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 09695699027efb35f3f560725e8ef93509d5929f
  
https://github.com/NixOS/nixpkgs/commit/09695699027efb35f3f560725e8ef93509d5929f
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-15 (Wed, 15 Feb 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-yedit: init at 1.0.20.201509041456


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


[Nix-commits] [NixOS/nixpkgs] 08779a: eclipse-plugin-jdt: 4.6 -> 4.6.2

2017-02-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 08779a71e996a8d2a8a1f185d04e7d833b8c7884
  
https://github.com/NixOS/nixpkgs/commit/08779a71e996a8d2a8a1f185d04e7d833b8c7884
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-14 (Tue, 14 Feb 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-jdt: 4.6 -> 4.6.2


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


[Nix-commits] [NixOS/nixpkgs] 486b9b: eclipse-plugin-scala: use stable download URL

2017-02-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 486b9be579fc1f046671ddaf1157f084ba956bdd
  
https://github.com/NixOS/nixpkgs/commit/486b9be579fc1f046671ddaf1157f084ba956bdd
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-14 (Tue, 14 Feb 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-scala: use stable download URL

Unfortunately, the latest release does not appear to be available
through a stable URL.


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


[Nix-commits] [NixOS/nixpkgs] 929846: svtplay-dl: 1.9.1 -> 1.9.2

2017-02-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9298467923f129480cdd3beebcab4f08ad3229c8
  
https://github.com/NixOS/nixpkgs/commit/9298467923f129480cdd3beebcab4f08ad3229c8
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-13 (Mon, 13 Feb 2017)

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

  Log Message:
  ---
  svtplay-dl: 1.9.1 -> 1.9.2


  Commit: a2d2649a8fe84c00cc14df24611c9e2c907873ba
  
https://github.com/NixOS/nixpkgs/commit/a2d2649a8fe84c00cc14df24611c9e2c907873ba
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-13 (Mon, 13 Feb 2017)

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

  Log Message:
  ---
  perl-MooseX-Types: 0.46 -> 0.50


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


[Nix-commits] [NixOS/nixpkgs] bb0f9d: subtitleeditor: 0.52.1 -> 0.53.0

2017-02-13 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bb0f9d5e470e97686b796521784aa5f92f3ddaa8
  
https://github.com/NixOS/nixpkgs/commit/bb0f9d5e470e97686b796521784aa5f92f3ddaa8
  Author: José Romildo Malaquias <malaqu...@gmail.com>
  Date:   2017-02-13 (Mon, 13 Feb 2017)

  Changed paths:
M pkgs/applications/video/subtitleeditor/default.nix
R 
pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch

  Log Message:
  ---
  subtitleeditor: 0.52.1 -> 0.53.0

(cherry picked from commit c212ad163052557e0f980ad7aeb851fae90135f7)


  Commit: d375f42115ce4bb65a7d3b48025954eb61e5a37d
  
https://github.com/NixOS/nixpkgs/commit/d375f42115ce4bb65a7d3b48025954eb61e5a37d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-13 (Mon, 13 Feb 2017)

  Changed paths:
M pkgs/applications/video/subtitleeditor/default.nix

  Log Message:
  ---
  subtitle-editor: fix build

Apply Debian patch that makes the project build with later GStreamer
versions.

(cherry picked from commit 446aa6834aae0c585a94688247608458a0f93e4b)


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


[Nix-commits] [NixOS/nixpkgs] bbbd3c: sile: minor cleanup

2017-02-11 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bbbd3c09701500c0d322f24c840e453a2973bf5f
  
https://github.com/NixOS/nixpkgs/commit/bbbd3c09701500c0d322f24c840e453a2973bf5f
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-11 (Sat, 11 Feb 2017)

  Changed paths:
M pkgs/tools/typesetting/sile/default.nix

  Log Message:
  ---
  sile: minor cleanup


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


[Nix-commits] [NixOS/nixpkgs] 5ebdbe: mimeo: 2016.11 -> 2017.2.9

2017-02-10 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5ebdbe493a4e4e7c92698728b8b3feda28d2ac41
  
https://github.com/NixOS/nixpkgs/commit/5ebdbe493a4e4e7c92698728b8b3feda28d2ac41
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-11 (Sat, 11 Feb 2017)

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

  Log Message:
  ---
  mimeo: 2016.11 -> 2017.2.9


  Commit: 922413c0439ef0e9b98b2da7ec35a76ed0ac48bb
  
https://github.com/NixOS/nixpkgs/commit/922413c0439ef0e9b98b2da7ec35a76ed0ac48bb
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-11 (Sat, 11 Feb 2017)

  Changed paths:
M pkgs/tools/graphics/gmic/default.nix

  Log Message:
  ---
  gmic: 1.7.8 -> 1.7.9


  Commit: 405ec4496aca149f77d68f7fb6d501f129e7b66a
  
https://github.com/NixOS/nixpkgs/commit/405ec4496aca149f77d68f7fb6d501f129e7b66a
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-11 (Sat, 11 Feb 2017)

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

  Log Message:
  ---
  josm: 11223 -> 11526


  Commit: 5e8499f4472b552131c905e2fe81ec8b28a3843c
  
https://github.com/NixOS/nixpkgs/commit/5e8499f4472b552131c905e2fe81ec8b28a3843c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-11 (Sat, 11 Feb 2017)

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

  Log Message:
  ---
  gpsprune: 18.5 -> 18.6


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


[Nix-commits] [NixOS/nixpkgs] 05a87d: git-hub: 0.10 -> 0.11.0

2017-02-04 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 05a87d24bc04aab232f7d5baea620ccd28852da9
  
https://github.com/NixOS/nixpkgs/commit/05a87d24bc04aab232f7d5baea620ccd28852da9
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-04 (Sat, 04 Feb 2017)

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

  Log Message:
  ---
  git-hub: 0.10 -> 0.11.0

Includes fixes for CVE-2016-7793 and CVE-2016-7794.

(cherry picked from commit 41a0d0587233803a133024054c307a903f1cfcb6)


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


[Nix-commits] [NixOS/nixpkgs] de172a: copyright-update: init at 2016.1018

2017-02-01 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: de172ae0613092a0efb2fd7654943a06463b90ac
  
https://github.com/NixOS/nixpkgs/commit/de172ae0613092a0efb2fd7654943a06463b90ac
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-02-01 (Wed, 01 Feb 2017)

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

  Log Message:
  ---
  copyright-update: init at 2016.1018


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


[Nix-commits] [NixOS/nixpkgs] c603d2: svtplay-dl: 1.9 -> 1.9.1

2017-01-30 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c603d2c0d5a9246601b8113a90f3fa9679138c86
  
https://github.com/NixOS/nixpkgs/commit/c603d2c0d5a9246601b8113a90f3fa9679138c86
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-30 (Mon, 30 Jan 2017)

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

  Log Message:
  ---
  svtplay-dl: 1.9 -> 1.9.1


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


[Nix-commits] [NixOS/nixpkgs] 89150d: theme-vertex: 20161009 -> 20170128

2017-01-30 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 89150d3377c8851e7a17e8fd5ed693301c0bce47
  
https://github.com/NixOS/nixpkgs/commit/89150d3377c8851e7a17e8fd5ed693301c0bce47
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-30 (Mon, 30 Jan 2017)

  Changed paths:
M pkgs/misc/themes/vertex/default.nix

  Log Message:
  ---
  theme-vertex: 20161009 -> 20170128


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


[Nix-commits] [NixOS/nixpkgs] cf7f34: perl-IO-CaptureOutput: 1.1103 -> 1.1104

2017-01-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cf7f34a1aa7fac6c820dee5b95e87c077baaf670
  
https://github.com/NixOS/nixpkgs/commit/cf7f34a1aa7fac6c820dee5b95e87c077baaf670
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-28 (Sat, 28 Jan 2017)

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

  Log Message:
  ---
  perl-IO-CaptureOutput: 1.1103 -> 1.1104

Also add meta section.


  Commit: 588f4b7098465e49853a5d403b2b4e2fb8cc8257
  
https://github.com/NixOS/nixpkgs/commit/588f4b7098465e49853a5d403b2b4e2fb8cc8257
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-28 (Sat, 28 Jan 2017)

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

  Log Message:
  ---
  perl-HTML-Tiny: add meta section


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


[Nix-commits] [NixOS/nixpkgs] 55d373: perl-List-Compare: 0.39 -> 0.53

2017-01-28 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 55d37301e8f407cb73eb7263ff500350adff66bc
  
https://github.com/NixOS/nixpkgs/commit/55d37301e8f407cb73eb7263ff500350adff66bc
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-28 (Sat, 28 Jan 2017)

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

  Log Message:
  ---
  perl-List-Compare: 0.39 -> 0.53

Note, the previous package version was in error. Fixes #22234.

(cherry picked from commit 44eedb927a246706e98cb286a63ada032020b613)


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


[Nix-commits] [NixOS/nixpkgs] 44eedb: perl-List-Compare: 0.39 -> 0.53

2017-01-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 44eedb927a246706e98cb286a63ada032020b613
  
https://github.com/NixOS/nixpkgs/commit/44eedb927a246706e98cb286a63ada032020b613
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-28 (Sat, 28 Jan 2017)

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

  Log Message:
  ---
  perl-List-Compare: 0.39 -> 0.53

Note, the previous package version was in error. Fixes #22234.


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


Re: [Nix-dev] Arch is dropping i686. Should we?

2017-01-26 Thread Robert Helgesson
> Does anyone on this list use NixOS on i686?

Besides some VirtualBox image laying around I have one physical machine:

  $ uname -a
  Linux kappa 4.4.31 #1-NixOS SMP Thu Nov 10 15:37:00 UTC 2016 i686
GNU/Linux
  $ grep 'model name' /proc/cpuinfo
  model name: Mobile Intel(R) Pentium(R) III CPU - M  1200MHz

It is the IBM ThinkPad X30 mentioned in
  https://rycee.net/posts/2016-11-13-an-atypical-nixos-install.html

/rycee

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


[Nix-commits] [NixOS/nixpkgs] 4a914f: overpass: 2.1 -> 3.0.2

2017-01-24 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4a914f2f9f9b2784d2bf78ee3cd56a7fd4e44e93
  
https://github.com/NixOS/nixpkgs/commit/4a914f2f9f9b2784d2bf78ee3cd56a7fd4e44e93
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-24 (Tue, 24 Jan 2017)

  Changed paths:
M pkgs/data/fonts/overpass/default.nix

  Log Message:
  ---
  overpass: 2.1 -> 3.0.2


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


[Nix-commits] [NixOS/nixpkgs] 3c521e: svtplay-dl: 1.8 -> 1.9

2017-01-23 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3c521ed1cf67244326be726b8cde6e5b7fbcb436
  
https://github.com/NixOS/nixpkgs/commit/3c521ed1cf67244326be726b8cde6e5b7fbcb436
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-23 (Mon, 23 Jan 2017)

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

  Log Message:
  ---
  svtplay-dl: 1.8 -> 1.9


  Commit: 653a7d97cb8686d7fd8b72c8a8d86b4d9f46455b
  
https://github.com/NixOS/nixpkgs/commit/653a7d97cb8686d7fd8b72c8a8d86b4d9f46455b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-23 (Mon, 23 Jan 2017)

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

  Log Message:
  ---
  perl-MooseX-Types-Common: 0.001013 -> 0.001014

Also remove myself from maintainers.


  Commit: df89b9b9e98d6cd7a1ab7bf3532ff5f79b7ffa57
  
https://github.com/NixOS/nixpkgs/commit/df89b9b9e98d6cd7a1ab7bf3532ff5f79b7ffa57
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-23 (Mon, 23 Jan 2017)

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

  Log Message:
  ---
  perl-MooX-Types-MooseLike-Numeric: 1.02 -> 1.03

Also remove myself from maintainers.


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


[Nix-commits] [NixOS/nixpkgs] ba4687: radeontop: 2016-07-04 -> 2016-10-28

2017-01-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ba4687c3ea12b4c6c86fadae9d6b1835de571150
  
https://github.com/NixOS/nixpkgs/commit/ba4687c3ea12b4c6c86fadae9d6b1835de571150
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-20 (Fri, 20 Jan 2017)

  Changed paths:
M pkgs/os-specific/linux/radeontop/default.nix

  Log Message:
  ---
  radeontop: 2016-07-04 -> 2016-10-28

This is actually version 1.0 but to support `nix-env -u` we continue
using the release date.


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


[Nix-commits] [NixOS/nixpkgs] 6c9e41: libsecret: add dev output

2017-01-10 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6c9e41333d24a6962f9f904614eab664d2a0a5ab
  
https://github.com/NixOS/nixpkgs/commit/6c9e41333d24a6962f9f904614eab664d2a0a5ab
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-11 (Wed, 11 Jan 2017)

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

  Log Message:
  ---
  libsecret: add dev output

This reduces the closure size of the secret-tool binary from 178 MiB to
38 MiB.


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


[Nix-commits] [NixOS/nixpkgs] 5d2723: perl-mod_perl2: use cpan mirror

2017-01-09 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5d2723945e35d4cb5128aa4c4256c788a732c5a6
  
https://github.com/NixOS/nixpkgs/commit/5d2723945e35d4cb5128aa4c4256c788a732c5a6
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-09 (Mon, 09 Jan 2017)

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

  Log Message:
  ---
  perl-mod_perl2: use cpan mirror

Also add license field.


  Commit: 5bf06ac7109f58fe7d66149b3fb0b8fc79e4236c
  
https://github.com/NixOS/nixpkgs/commit/5bf06ac7109f58fe7d66149b3fb0b8fc79e4236c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-09 (Mon, 09 Jan 2017)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-checkstyle: 7.2.0 -> 7.3.0


  Commit: b0106b66fd1d898b4322d1851c3dbe090d74ae2a
  
https://github.com/NixOS/nixpkgs/commit/b0106b66fd1d898b4322d1851c3dbe090d74ae2a
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2017-01-09 (Mon, 09 Jan 2017)

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

  Log Message:
  ---
  perl-Net-HTTP: 6.09 -> 6.12


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


Re: [Nix-dev] eclipse platform Neon.2

2017-01-02 Thread Robert Helgesson
I have merged your two patches into Nixpkgs master now. I made minor
modifications to reintroduce the `eclipse-platform-46` attribute and to
use HTTPS downloads.

/rycee

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


Re: [Nix-dev] eclipse platform Neon.2

2017-01-02 Thread Robert Helgesson
> The attached patch adds the Eclipse Platform version 4.6.2 (Neon.2) to
> the nixpkgs.

Wonderful! I will sort this Eclipse-situation out when I get home from
work. Many thanks for the patches!

/rycee

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


Re: [Nix-dev] eclipse Neon.2 SDK

2017-01-02 Thread Robert Helgesson
On 2017-01-02 15:25, Karn Kallio wrote:
>> Thanks Karn! But why replace the Eclipse Platform attribute with
>> Eclipse
>> SDK? I'm using Eclipse Platform and am quite happy not to have the
>> extra
>> plugins of the full SDK.
> 
> The Platform and SDK expressions were downloading and installing the
> same thing.  The combination was under the SDK because that is the name
> the Eclipse project uses in the tarball.

Ah, interesting. Seems like a bug. The platform package should install
the Eclipse Platform, not Eclipse SDK. The difference is ~70MiB Vs.
~200MiB according to

  http://download.eclipse.org/eclipse/downloads/drops4/R-4.6.2-201611241400/

/rycee

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


Re: [Nix-dev] eclipse Neon.2 SDK

2017-01-01 Thread Robert Helgesson
> The attached patch updates the Eclipse SDK nixpkgs expression to the
> latest version 4.6.2 (Neon.2).

Thanks Karn! But why replace the Eclipse Platform attribute with Eclipse
SDK? I'm using Eclipse Platform and am quite happy not to have the extra
plugins of the full SDK.

/rycee

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


[Nix-commits] [NixOS/nixpkgs] 8ad3a4: clblas-cuda: use system gtest library

2016-12-31 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8ad3a4dcfcc5f99c8c358b794f8bab91a0226104
  
https://github.com/NixOS/nixpkgs/commit/8ad3a4dcfcc5f99c8c358b794f8bab91a0226104
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-31 (Sat, 31 Dec 2016)

  Changed paths:
M pkgs/development/libraries/science/math/clblas/cuda/default.nix

  Log Message:
  ---
  clblas-cuda: use system gtest library

Without this the build attempts to download the library.

(cherry picked from commit 2990cd8aeac6b6a05121eebb0f5ca997eb73a650)


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


[Nix-commits] [NixOS/nixpkgs] f8fdf3: perl-Math-BigInt: 1.999802 -> 1.999806

2016-12-17 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f8fdf3dcb375fec0003a7814a78188f6d2b45897
  
https://github.com/NixOS/nixpkgs/commit/f8fdf3dcb375fec0003a7814a78188f6d2b45897
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-17 (Sat, 17 Dec 2016)

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

  Log Message:
  ---
  perl-Math-BigInt: 1.999802 -> 1.999806


  Commit: 8d593f2610aa9a02808f4b94dcabd2bd937a80ac
  
https://github.com/NixOS/nixpkgs/commit/8d593f2610aa9a02808f4b94dcabd2bd937a80ac
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-17 (Sat, 17 Dec 2016)

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

  Log Message:
  ---
  perl-Math-BigRat: 0.260805 -> 0.2611


  Commit: cdb7d9f22b7b23ec9b29e2e9b6d6da5bc99ed9ea
  
https://github.com/NixOS/nixpkgs/commit/cdb7d9f22b7b23ec9b29e2e9b6d6da5bc99ed9ea
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-17 (Sat, 17 Dec 2016)

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

  Log Message:
  ---
  perl-bignum: 0.44 -> 0.47


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


[Nix-commits] [NixOS/nixpkgs] 6a54d0: unifont: 9.0.01 -> 9.0.02

2016-12-15 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6a54d0992a4df06157b357a6d280cc792635cde4
  
https://github.com/NixOS/nixpkgs/commit/6a54d0992a4df06157b357a6d280cc792635cde4
  Author: Lancelot SIX <l...@lancelotsix.com>
  Date:   2016-12-15 (Thu, 15 Dec 2016)

  Changed paths:
M pkgs/data/fonts/unifont/default.nix

  Log Message:
  ---
  unifont: 9.0.01 -> 9.0.02

See http://lists.gnu.org/archive/html/info-gnu/2016-09/msg2.html
for release announcement

(cherry picked from commit 5cbfbb1553e02c27c40387130384019652dcce2b)


  Commit: 01f2239be1578b32ecfa7648416b3054bdb429bc
  
https://github.com/NixOS/nixpkgs/commit/01f2239be1578b32ecfa7648416b3054bdb429bc
  Author: Tim Steinbach <t...@nequissimus.com>
  Date:   2016-12-15 (Thu, 15 Dec 2016)

  Changed paths:
M pkgs/data/fonts/unifont/default.nix

  Log Message:
  ---
  unifont: 9.0.02 -> 9.0.03

(cherry picked from commit d51f1a3dd3ea70fb77c7af91d0db229e4b49d197)


  Commit: dc786a9e3a09d3149887912adbd9c4699d9b6d6c
  
https://github.com/NixOS/nixpkgs/commit/dc786a9e3a09d3149887912adbd9c4699d9b6d6c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-15 (Thu, 15 Dec 2016)

  Changed paths:
M pkgs/data/fonts/unifont/default.nix

  Log Message:
  ---
  unifont: 9.0.03 -> 9.0.04

Also change download URL to use GNU mirrors.

(cherry picked from commit 321e2a915375231d48fb41493266cdf2095330a9)


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


[Nix-commits] [NixOS/nixpkgs] 6d1180: perl-Sub-Quote: init at 2.003001

2016-12-13 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6d1180cf023f309438de77afd38c6de3c3eda3f9
  
https://github.com/NixOS/nixpkgs/commit/6d1180cf023f309438de77afd38c6de3c3eda3f9
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-13 (Tue, 13 Dec 2016)

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

  Log Message:
  ---
  perl-Sub-Quote: init at 2.003001


  Commit: 586dd2a3bb8d825fa2479a2f3b816cc6d38e7686
  
https://github.com/NixOS/nixpkgs/commit/586dd2a3bb8d825fa2479a2f3b816cc6d38e7686
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-13 (Tue, 13 Dec 2016)

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

  Log Message:
  ---
  perl-Moo: 2.002005 -> 2.003000

Also remove myself as maintainer since I'm not really using this
package.


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


[Nix-commits] [NixOS/nixpkgs] ff2368: perl-Tk: 804.032_501 -> 804.033

2016-12-05 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ff2368105eb01b219508493b4998a5e7218ae677
  
https://github.com/NixOS/nixpkgs/commit/ff2368105eb01b219508493b4998a5e7218ae677
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-05 (Mon, 05 Dec 2016)

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

  Log Message:
  ---
  perl-Tk: 804.032_501 -> 804.033

Also remove unnecessary `configurePhase` and add X11 include path.

Fixes #20932.

(cherry picked from commit f4fd4678f0d51c0efc04cc91880d854e6e197976)


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


[Nix-commits] [NixOS/nixpkgs] f4fd46: perl-Tk: 804.032_501 -> 804.033

2016-12-05 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f4fd4678f0d51c0efc04cc91880d854e6e197976
  
https://github.com/NixOS/nixpkgs/commit/f4fd4678f0d51c0efc04cc91880d854e6e197976
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-05 (Mon, 05 Dec 2016)

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

  Log Message:
  ---
  perl-Tk: 804.032_501 -> 804.033

Also remove unnecessary `configurePhase` and add X11 include path.

Fixes #20932.


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


[Nix-commits] [NixOS/nixpkgs] 64aaba: perl-CryptX: 0.041 -> 0.044

2016-12-04 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 64aabae8e24ba6278b28aef3587dc12b1805f42b
  
https://github.com/NixOS/nixpkgs/commit/64aabae8e24ba6278b28aef3587dc12b1805f42b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-04 (Sun, 04 Dec 2016)

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

  Log Message:
  ---
  perl-CryptX: 0.041 -> 0.044


  Commit: 0dc4e70fc99defb4c7ea1d4ed0d0690c9752b22e
  
https://github.com/NixOS/nixpkgs/commit/0dc4e70fc99defb4c7ea1d4ed0d0690c9752b22e
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-04 (Sun, 04 Dec 2016)

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

  Log Message:
  ---
  perl-Math-BigInt: 1.999801 -> 1.999802


  Commit: 7cdf160f34f249477e1ce9102052c84872e34228
  
https://github.com/NixOS/nixpkgs/commit/7cdf160f34f249477e1ce9102052c84872e34228
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-04 (Sun, 04 Dec 2016)

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

  Log Message:
  ---
  perl-Test2-Suite: 0.52 -> 0.61


  Commit: 64291e4fa289e10c63eb54e1cdc00a447271d593
  
https://github.com/NixOS/nixpkgs/commit/64291e4fa289e10c63eb54e1cdc00a447271d593
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-12-04 (Sun, 04 Dec 2016)

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

  Log Message:
  ---
  pythonPackages.slob: 2016-03-04 -> 2016-11-03


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


[Nix-commits] [NixOS/nixpkgs] 5f40d8: matrix-synapse service: add missing `$`

2016-11-29 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5f40d803d707b490274a408992ebd607f25df69e
  
https://github.com/NixOS/nixpkgs/commit/5f40d803d707b490274a408992ebd607f25df69e
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-30 (Wed, 30 Nov 2016)

  Changed paths:
M nixos/modules/services/misc/matrix-synapse.nix

  Log Message:
  ---
  matrix-synapse service: add missing `$`

As-is the generated configuration file will include the line literally.


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


[Nix-commits] [NixOS/nixpkgs] be34ee: cpulimit: 2.3 -> 2.4

2016-11-26 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: be34ee415baaecc5756d630b4e4619a7d43e1753
  
https://github.com/NixOS/nixpkgs/commit/be34ee415baaecc5756d630b4e4619a7d43e1753
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  cpulimit: 2.3 -> 2.4


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


[Nix-commits] [NixOS/nixpkgs] 57d382: perl-IO-Socket-SSL: 2.037 -> 2.039

2016-11-26 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 57d3827d49a6b6c2531e16af2c7f5a25983e6da2
  
https://github.com/NixOS/nixpkgs/commit/57d3827d49a6b6c2531e16af2c7f5a25983e6da2
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-IO-Socket-SSL: 2.037 -> 2.039


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


[Nix-commits] [NixOS/nixpkgs] 066166: perl-bignum: 0.43 -> 0.44

2016-11-26 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 066166b8cb16651beb8adc84114c62835cb06c59
  
https://github.com/NixOS/nixpkgs/commit/066166b8cb16651beb8adc84114c62835cb06c59
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-bignum: 0.43 -> 0.44

Resolves CVE-2016-1238, see
<https://rt.cpan.org/Public/Bug/Display.html?id=116506>.

(cherry picked from commit e700ff6e0cace55f8e5a3f537fd4826274ca7dc0)


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


[Nix-commits] [NixOS/nixpkgs] e700ff: perl-bignum: 0.43 -> 0.44

2016-11-26 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e700ff6e0cace55f8e5a3f537fd4826274ca7dc0
  
https://github.com/NixOS/nixpkgs/commit/e700ff6e0cace55f8e5a3f537fd4826274ca7dc0
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-bignum: 0.43 -> 0.44

Resolves CVE-2016-1238, see
<https://rt.cpan.org/Public/Bug/Display.html?id=116506>.


  Commit: ba095feb530b02bfecd2f90951e7febfc955e55f
  
https://github.com/NixOS/nixpkgs/commit/ba095feb530b02bfecd2f90951e7febfc955e55f
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-Data-Validate-IP: 0.26 -> 0.27


  Commit: 0637d949309ccab23de83a9f9da2d6d4b2f50178
  
https://github.com/NixOS/nixpkgs/commit/0637d949309ccab23de83a9f9da2d6d4b2f50178
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-Digest-JHash: 0.09 -> 0.10


  Commit: 088ff595e666f5d7e8c833d10ea78b0eea8477ae
  
https://github.com/NixOS/nixpkgs/commit/088ff595e666f5d7e8c833d10ea78b0eea8477ae
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-Math-BigInt: 1.999800 -> 1.999801


  Commit: ca77ba39bf7b5d16e69cb0d69e63aee9fe20176b
  
https://github.com/NixOS/nixpkgs/commit/ca77ba39bf7b5d16e69cb0d69e63aee9fe20176b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-26 (Sat, 26 Nov 2016)

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

  Log Message:
  ---
  perl-Test-Simple: 1.302062 -> 1.302067


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


[Nix-commits] [NixOS/nixpkgs] 8a424e: tahoe service: use ExecStart instead of script

2016-11-25 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8a424e3fbd30b54d73b91fa8841ac82d2af75a9a
  
https://github.com/NixOS/nixpkgs/commit/8a424e3fbd30b54d73b91fa8841ac82d2af75a9a
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-25 (Fri, 25 Nov 2016)

  Changed paths:
M nixos/modules/services/network-filesystems/tahoe.nix

  Log Message:
  ---
  tahoe service: use ExecStart instead of script

Since only a single command is necessary to start Tahoe it is sufficient
to use ExecStart and thereby skip starting up Bash (and leaving it
running).


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


[Nix-commits] [NixOS/nixpkgs] d01274: telepathy_haze: add patch to fix build

2016-11-20 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d012749fab5d52b2feb1469348fd40a14d44d83d
  
https://github.com/NixOS/nixpkgs/commit/d012749fab5d52b2feb1469348fd40a14d44d83d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-20 (Sun, 20 Nov 2016)

  Changed paths:
M pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix

  Log Message:
  ---
  telepathy_haze: add patch to fix build

Without the patch, the build fails with recent versions of Pidgin.

(cherry picked from commit 840db709ebd74027e917d37fd2b42da86f50ea10)


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


[Nix-commits] [NixOS/nixpkgs] 840db7: telepathy_haze: add patch to fix build

2016-11-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 840db709ebd74027e917d37fd2b42da86f50ea10
  
https://github.com/NixOS/nixpkgs/commit/840db709ebd74027e917d37fd2b42da86f50ea10
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-20 (Sun, 20 Nov 2016)

  Changed paths:
M pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix

  Log Message:
  ---
  telepathy_haze: add patch to fix build

Without the patch, the build fails with recent versions of Pidgin.


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


[Nix-commits] [NixOS/nixpkgs] 72d410: pecita: 5.3 -> 5.4

2016-11-16 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 72d410fc74dd1d78af074a045859166c52dc8fad
  
https://github.com/NixOS/nixpkgs/commit/72d410fc74dd1d78af074a045859166c52dc8fad
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-17 (Thu, 17 Nov 2016)

  Changed paths:
M pkgs/data/fonts/pecita/default.nix

  Log Message:
  ---
  pecita: 5.3 -> 5.4


  Commit: b25f9ff20eb9fc24716fdff15944ec289a0af9a4
  
https://github.com/NixOS/nixpkgs/commit/b25f9ff20eb9fc24716fdff15944ec289a0af9a4
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-17 (Thu, 17 Nov 2016)

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

  Log Message:
  ---
  mimeo: 2016.2 -> 2016.11


  Commit: 38de6ed18e879c01324299f39c28b54725d0fb9c
  
https://github.com/NixOS/nixpkgs/commit/38de6ed18e879c01324299f39c28b54725d0fb9c
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-17 (Thu, 17 Nov 2016)

  Changed paths:
M pkgs/tools/graphics/gmic/default.nix

  Log Message:
  ---
  gmic: 1.7.7 -> 1.7.8


  Commit: 4b6770d0c0bcf839747307b49258dc9e5f54653e
  
https://github.com/NixOS/nixpkgs/commit/4b6770d0c0bcf839747307b49258dc9e5f54653e
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-17 (Thu, 17 Nov 2016)

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

  Log Message:
  ---
  pythonPackages.PyICU: 1.9.3 -> 1.9.5


  Commit: add010f69425075a5d4c73e2fe961e65b92e1d01
  
https://github.com/NixOS/nixpkgs/commit/add010f69425075a5d4c73e2fe961e65b92e1d01
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-17 (Thu, 17 Nov 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-testng: 6.9.12 -> 6.9.13


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


[Nix-commits] [NixOS/nixpkgs] ab44ed: eclipse-plugin-acejump: 1.0.0.201501181511 -> 1.0....

2016-11-09 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ab44ed6013c5ebd551e7482c47e16f604e686657
  
https://github.com/NixOS/nixpkgs/commit/ab44ed6013c5ebd551e7482c47e16f604e686657
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-09 (Wed, 09 Nov 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-acejump: 1.0.0.201501181511 -> 1.0.0.201610261941

(cherry picked from commit 9f251e1cb138f4a299b1da4257ba119311373ff4)


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


[Nix-commits] [NixOS/nixpkgs] 9f251e: eclipse-plugin-acejump: 1.0.0.201501181511 -> 1.0....

2016-11-09 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9f251e1cb138f4a299b1da4257ba119311373ff4
  
https://github.com/NixOS/nixpkgs/commit/9f251e1cb138f4a299b1da4257ba119311373ff4
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-09 (Wed, 09 Nov 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-acejump: 1.0.0.201501181511 -> 1.0.0.201610261941


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


[Nix-commits] [NixOS/nixpkgs] ce55d9: perl-Math-BigInt: 1.999726 -> 1.999727

2016-11-09 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ce55d91a17bcf83373f1d54070d56fa0acb0c4a0
  
https://github.com/NixOS/nixpkgs/commit/ce55d91a17bcf83373f1d54070d56fa0acb0c4a0
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-09 (Wed, 09 Nov 2016)

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

  Log Message:
  ---
  perl-Math-BigInt: 1.999726 -> 1.999727


  Commit: 04d30023cfc5ee9e6797c60b58fbfa4121cc03a2
  
https://github.com/NixOS/nixpkgs/commit/04d30023cfc5ee9e6797c60b58fbfa4121cc03a2
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-09 (Wed, 09 Nov 2016)

  Changed paths:
M pkgs/data/fonts/fira-code/default.nix

  Log Message:
  ---
  fira-code: 1.203 -> 1.204


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


[Nix-commits] [NixOS/nixpkgs] 321e2a: unifont: 9.0.03 -> 9.0.04

2016-11-05 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 321e2a915375231d48fb41493266cdf2095330a9
  
https://github.com/NixOS/nixpkgs/commit/321e2a915375231d48fb41493266cdf2095330a9
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-05 (Sat, 05 Nov 2016)

  Changed paths:
M pkgs/data/fonts/unifont/default.nix

  Log Message:
  ---
  unifont: 9.0.03 -> 9.0.04

Also change download URL to use GNU mirrors.


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


[Nix-commits] [NixOS/nixpkgs] b6bd55: perl-Archive-Cpio: 0.09 -> 0.10

2016-11-03 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b6bd555c66cfad421e61ae0cf82a0be50be67cc2
  
https://github.com/NixOS/nixpkgs/commit/b6bd555c66cfad421e61ae0cf82a0be50be67cc2
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-03 (Thu, 03 Nov 2016)

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

  Log Message:
  ---
  perl-Archive-Cpio: 0.09 -> 0.10

Also add license field.


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


[Nix-commits] [NixOS/nixpkgs] bcb0a6: perl-Role-Tiny: 2.000003 -> 2.000005

2016-11-02 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bcb0a65f23a0d3ac1850ecd2b004e7c28b19a6d8
  
https://github.com/NixOS/nixpkgs/commit/bcb0a65f23a0d3ac1850ecd2b004e7c28b19a6d8
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-02 (Wed, 02 Nov 2016)

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

  Log Message:
  ---
  perl-Role-Tiny: 2.03 -> 2.05


  Commit: f7e2675ed509bdd4da45c9d8bd19c5976111b16d
  
https://github.com/NixOS/nixpkgs/commit/f7e2675ed509bdd4da45c9d8bd19c5976111b16d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-02 (Wed, 02 Nov 2016)

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

  Log Message:
  ---
  perl-Moo: 2.002003 -> 2.002005


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


[Nix-commits] [NixOS/nixpkgs] f33c5f: perl-Image-Info: 1.38 -> 1.39

2016-11-02 Thread Robert Helgesson
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f33c5f713e1aa7c780134154e8e5072ad2081921
  
https://github.com/NixOS/nixpkgs/commit/f33c5f713e1aa7c780134154e8e5072ad2081921
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-02 (Wed, 02 Nov 2016)

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

  Log Message:
  ---
  perl-Image-Info: 1.38 -> 1.39

Fixes information disclosure security issue. See
https://lwn.net/Vulnerabilities/704702/.

(cherry picked from commit 68f2bc8fb351065fda55c8a7b1ee6d74ba64a9a0)


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


[Nix-commits] [NixOS/nixpkgs] 68f2bc: perl-Image-Info: 1.38 -> 1.39

2016-11-02 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 68f2bc8fb351065fda55c8a7b1ee6d74ba64a9a0
  
https://github.com/NixOS/nixpkgs/commit/68f2bc8fb351065fda55c8a7b1ee6d74ba64a9a0
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-11-02 (Wed, 02 Nov 2016)

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

  Log Message:
  ---
  perl-Image-Info: 1.38 -> 1.39

Fixes information disclosure security issue. See
https://lwn.net/Vulnerabilities/704702/.


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


[Nix-commits] [NixOS/nixpkgs] 236a32: perl-DBIx-Class: remove myself as maintainer

2016-10-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 236a32069a50537620fc41e8867f106f21ca6239
  
https://github.com/NixOS/nixpkgs/commit/236a32069a50537620fc41e8867f106f21ca6239
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-28 (Fri, 28 Oct 2016)

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

  Log Message:
  ---
  perl-DBIx-Class: remove myself as maintainer


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


[Nix-commits] [NixOS/nixpkgs] 268568: eclipses: use HTTPS download URLs

2016-10-28 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 268568a74acfbd03c1b30eab31e4fc439c6ce8fb
  
https://github.com/NixOS/nixpkgs/commit/268568a74acfbd03c1b30eab31e4fc439c6ce8fb
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-28 (Fri, 28 Oct 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipses: use HTTPS download URLs


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


[Nix-commits] [NixOS/nixpkgs] 4860c0: perl-Importer: 0.014 -> 0.024

2016-10-26 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4860c08607800bf7ed98c487e5f287ad565f6c73
  
https://github.com/NixOS/nixpkgs/commit/4860c08607800bf7ed98c487e5f287ad565f6c73
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-26 (Wed, 26 Oct 2016)

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

  Log Message:
  ---
  perl-Importer: 0.014 -> 0.024


  Commit: de3860229ae1dee77a2e04015e590801befafa25
  
https://github.com/NixOS/nixpkgs/commit/de3860229ae1dee77a2e04015e590801befafa25
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-26 (Wed, 26 Oct 2016)

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

  Log Message:
  ---
  perl-Test-Simple: 1.302056 -> 1.302062


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


Re: [Nix-dev] patch: update eclipse platform

2016-10-22 Thread Robert Helgesson

Hi Karn,


The attached patch updates the Eclipse platfrom expression to the
latest released Neon.1


Applied to master. Thanks for the submission!

/Robert

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


[Nix-commits] [NixOS/nixpkgs] 866858: eclipse-platform-46: 4.6 -> 4.6.1

2016-10-22 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8668585f4e0c5fb4024fa8bcb9b528a4ce19253d
  
https://github.com/NixOS/nixpkgs/commit/8668585f4e0c5fb4024fa8bcb9b528a4ce19253d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-23 (Sun, 23 Oct 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipse-platform-46: 4.6 -> 4.6.1


  Commit: 4841ca292cd89d1b4ba18f4e0732490c68b12709
  
https://github.com/NixOS/nixpkgs/commit/4841ca292cd89d1b4ba18f4e0732490c68b12709
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-23 (Sun, 23 Oct 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipse-sdk-46: 4.6 -> 4.6.1


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


[Nix-commits] [NixOS/nixpkgs] 9b2fbb: eclipse: less heavy comments

2016-10-21 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9b2fbb776b5a59be275271a6b45903b57f9cc3f0
  
https://github.com/NixOS/nixpkgs/commit/9b2fbb776b5a59be275271a6b45903b57f9cc3f0
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-21 (Fri, 21 Oct 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/default.nix

  Log Message:
  ---
  eclipse: less heavy comments


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


[Nix-commits] [NixOS/nixpkgs] db6897: perl-CryptX: 0.040 -> 0.041

2016-10-19 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: db6897220684fbabc66ea3ba62497aed4a53
  
https://github.com/NixOS/nixpkgs/commit/db6897220684fbabc66ea3ba62497aed4a53
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-19 (Wed, 19 Oct 2016)

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

  Log Message:
  ---
  perl-CryptX: 0.040 -> 0.041


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


[Nix-commits] [NixOS/nixpkgs] 31853a: svtplay-dl: 1.6 -> 1.7

2016-10-19 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 31853a73fabd70746c44a9feecfdf3e591fb9c7d
  
https://github.com/NixOS/nixpkgs/commit/31853a73fabd70746c44a9feecfdf3e591fb9c7d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-19 (Wed, 19 Oct 2016)

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

  Log Message:
  ---
  svtplay-dl: 1.6 -> 1.7


  Commit: ad3163efab61e94459a98608d5b76ef44a8a2259
  
https://github.com/NixOS/nixpkgs/commit/ad3163efab61e94459a98608d5b76ef44a8a2259
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-19 (Wed, 19 Oct 2016)

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

  Log Message:
  ---
  perl-PDF-API2: 2.028 -> 2.030


  Commit: 337004285ba2ed14f8d3a2ac84e2dd4f0ae5507b
  
https://github.com/NixOS/nixpkgs/commit/337004285ba2ed14f8d3a2ac84e2dd4f0ae5507b
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-19 (Wed, 19 Oct 2016)

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

  Log Message:
  ---
  perl-Pod-Weaver: 4.014 -> 4.015


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


[Nix-commits] [NixOS/nixpkgs] 2398a6: overpass: init at 2.1

2016-10-14 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2398a66859c6cbfc26ed57f5bda68c0e2da00a7d
  
https://github.com/NixOS/nixpkgs/commit/2398a66859c6cbfc26ed57f5bda68c0e2da00a7d
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-14 (Fri, 14 Oct 2016)

  Changed paths:
A pkgs/data/fonts/overpass/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  overpass: init at 2.1


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


[Nix-commits] [NixOS/nixpkgs] 7b3073: svtplay-dl: 1.5 -> 1.6

2016-10-11 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7b3073e8fa6335a79f8f64ea72d879bc8fc3e53e
  
https://github.com/NixOS/nixpkgs/commit/7b3073e8fa6335a79f8f64ea72d879bc8fc3e53e
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-10-11 (Tue, 11 Oct 2016)

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

  Log Message:
  ---
  svtplay-dl: 1.5 -> 1.6


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


[Nix-commits] [NixOS/nixpkgs] db3579: ddclient service: minor spelling fix

2016-09-30 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: db3579c332b3ea7b52e34f1a66829672c8075aa6
  
https://github.com/NixOS/nixpkgs/commit/db3579c332b3ea7b52e34f1a66829672c8075aa6
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-30 (Fri, 30 Sep 2016)

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

  Log Message:
  ---
  ddclient service: minor spelling fix


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


[Nix-commits] [NixOS/nixpkgs] c8a2fb: perl-Net-Domain-TLD: 1.74 -> 1.75

2016-09-25 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c8a2fb4d7b4cacc46f6e3c5224fd96c6a3eac4a8
  
https://github.com/NixOS/nixpkgs/commit/c8a2fb4d7b4cacc46f6e3c5224fd96c6a3eac4a8
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-26 (Mon, 26 Sep 2016)

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

  Log Message:
  ---
  perl-Net-Domain-TLD: 1.74 -> 1.75


  Commit: 0f9ddacbd4cd1f9d2740734976e48f2060c15e93
  
https://github.com/NixOS/nixpkgs/commit/0f9ddacbd4cd1f9d2740734976e48f2060c15e93
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-26 (Mon, 26 Sep 2016)

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

  Log Message:
  ---
  perl-Pod-Weaver: 4.013 -> 4.014


  Commit: 1e12738dc40737eb8e600d893f83420385c929b6
  
https://github.com/NixOS/nixpkgs/commit/1e12738dc40737eb8e600d893f83420385c929b6
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-26 (Mon, 26 Sep 2016)

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

  Log Message:
  ---
  svtplay-dl: 1.4 -> 1.5


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


[Nix-commits] [NixOS/nixpkgs] 47e210: gpsprune: 18.4 -> 18.5

2016-09-22 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 47e210b846fc4b1530e7d29a26af1d1400f59c1e
  
https://github.com/NixOS/nixpkgs/commit/47e210b846fc4b1530e7d29a26af1d1400f59c1e
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-22 (Thu, 22 Sep 2016)

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

  Log Message:
  ---
  gpsprune: 18.4 -> 18.5


  Commit: 38f9d995ab77ce01739c7f76eced81b1ce659573
  
https://github.com/NixOS/nixpkgs/commit/38f9d995ab77ce01739c7f76eced81b1ce659573
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-22 (Thu, 22 Sep 2016)

  Changed paths:
M pkgs/applications/editors/eclipse/plugins.nix

  Log Message:
  ---
  eclipse-plugin-testng: 6.9.11 -> 6.9.12


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


[Nix-commits] [NixOS/nixpkgs] ec97f2: perl-Net-OpenSSH: 0.70 -> 0.73

2016-09-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ec97f23affd85dc6f0c4a953b7b082ef963f9672
  
https://github.com/NixOS/nixpkgs/commit/ec97f23affd85dc6f0c4a953b7b082ef963f9672
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

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

  Log Message:
  ---
  perl-Net-OpenSSH: 0.70 -> 0.73


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


[Nix-commits] [NixOS/nixpkgs] 423834: perl-Object-Signature: add meta section

2016-09-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4238342ebdfd017bc7210dd19d06ee432f159e24
  
https://github.com/NixOS/nixpkgs/commit/4238342ebdfd017bc7210dd19d06ee432f159e24
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

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

  Log Message:
  ---
  perl-Object-Signature: add meta section


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


[Nix-commits] [NixOS/nixpkgs] f2bfd2: perl-Number-Format: 1.73 -> 1.75

2016-09-20 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f2bfd2fb6fdac84a1cb1be581f090dfa9a86f44f
  
https://github.com/NixOS/nixpkgs/commit/f2bfd2fb6fdac84a1cb1be581f090dfa9a86f44f
  Author: Robert Helgesson <rob...@rycee.net>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

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

  Log Message:
  ---
  perl-Number-Format: 1.73 -> 1.75

Also add meta section.


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


  1   2   >