[Nix-commits] [NixOS/nixpkgs] 994299: xapian: 1.4.0 -> 1.4.4

2017-05-06 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 994299b7a9f8ad0a03d19ab0cf74047c481b9fde
  
https://github.com/NixOS/nixpkgs/commit/994299b7a9f8ad0a03d19ab0cf74047c481b9fde
  Author: Peter Hoeg 
  Date:   2017-05-07 (Sun, 07 May 2017)

  Changed paths:
M pkgs/development/libraries/xapian/default.nix
M pkgs/development/libraries/xapian/tools/omega/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  xapian: 1.4.0 -> 1.4.4


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


[Nix-commits] [NixOS/nixpkgs] 21e95c: libreoffice: perform release build

2017-05-06 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 21e95c04bdbc45e204f385b8d8e4f0ab63cdc449
  
https://github.com/NixOS/nixpkgs/commit/21e95c04bdbc45e204f385b8d8e4f0ab63cdc449
  Author: Peter Hoeg 
  Date:   2017-05-07 (Sun, 07 May 2017)

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

  Log Message:
  ---
  libreoffice: perform release build

This removes the "Development Build" message from the splash screen as well as
changes all references in the program from LibreOfficeDev to LibreOffice.


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


[Nix-commits] [NixOS/nixpkgs] 0eac38: libtoxcore: 0.1.7 -> 0.1.8

2017-05-06 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0eac38c4cebebc3c78286153e050345e64317aed
  
https://github.com/NixOS/nixpkgs/commit/0eac38c4cebebc3c78286153e050345e64317aed
  Author: Peter Hoeg 
  Date:   2017-05-07 (Sun, 07 May 2017)

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

  Log Message:
  ---
  libtoxcore: 0.1.7 -> 0.1.8


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


[Nix-commits] [NixOS/nixpkgs] 7e9ca8: neomutt: 2017-03-06 -> 2017-04-28

2017-05-06 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7e9ca80490f87cb24e64c2446a79a5a9a6a3de99
  
https://github.com/NixOS/nixpkgs/commit/7e9ca80490f87cb24e64c2446a79a5a9a6a3de99
  Author: Peter Hoeg 
  Date:   2017-05-07 (Sun, 07 May 2017)

  Changed paths:
M pkgs/applications/networking/mailreaders/neomutt/default.nix

  Log Message:
  ---
  neomutt: 2017-03-06 -> 2017-04-28


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


Re: [Nix-dev] Would love to get feedback / help to a kodi problem

2017-05-06 Thread Matthew Bauer
Stefan Huchler  writes:

> Because I dont think that the nixos / nix documentation is very good
> (imho) and some experience with kodi packaging could help, I would be
> happy if somebody could help me get the plugin packaged.

This is definitely a struggle. The big issue is that Nix/Nixpkgs are
much more complicated than the average package manager. We probably have
/more/ documentation than RPM/DEB/Homebrew/etc. but we also have lots
more abstraction and hacks. It’s useful when you understand it but a
pain in the ass when it’s not working right.

> As far as I get it making a package for that plugin:
> https://github.com/xbmc/peripheral.joystick
>
> My first question for that would be: do I
> need to create a own package for that or do I have to modify the
> existing kodi package?

I don’t have Kodi setup but looking at the code you are probably going
to need to use it as plugin. You can follow the basic structure of
advanced-launcher for peripheral.joystick:

https://github.com/NixOS/nixpkgs/blob/52cb1df30c0413752a85a9fb01d48c1a3dba69ce/pkgs/applications/video/kodi/plugins.nix#L43-L71

That plugin will need to be referenced under wrapKodi in
all-packages.nix. I’d recommend call it "enablePeripheralJoystick":

https://github.com/NixOS/nixpkgs/blob/7d8a6ef1fddac18c2bdfd1d2552492c3598b14d0/pkgs/top-level/all-packages.nix#L15604-L15619

If you run into trouble definitely feel free to ask for help. Especially
on the #NixOS on freenode. Usually they can be really helpful.

To test it you will need to create ~/.nixpkgs/config.nix and put
something like this in it:

{
  kodi = {
enablePeripheralJoystick = true;
enableControllers = true; # might not be needed
  }
}

To build it, run:

nix-env -iA nixpkgs.kodi -f/home/user/path-to-nixpkgs/

Then kodi should be in your environment. Just run it with kodi if you
can. You’ll need to do some modifications to get it building under NixOS
but you’ll hopefully have a better handle on things. Make sure if you
get it working you submit a PR for it though! Don’t be afraid to ask for
help if you have issues.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 66b40a: crashplan: 4.8.0 -> 4.8.2

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 66b40adcfffde1e38b126e0d89e10f2209d550af
  
https://github.com/NixOS/nixpkgs/commit/66b40adcfffde1e38b126e0d89e10f2209d550af
  Author: Matt McHenry 
  Date:   2017-04-30 (Sun, 30 Apr 2017)

  Changed paths:
M pkgs/applications/backup/crashplan/default.nix

  Log Message:
  ---
  crashplan: 4.8.0 -> 4.8.2


  Commit: 1e1ef8e82d42e26f116cd39e69048477ea2ffbd7
  
https://github.com/NixOS/nixpkgs/commit/1e1ef8e82d42e26f116cd39e69048477ea2ffbd7
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M pkgs/applications/backup/crashplan/default.nix

  Log Message:
  ---
  Merge pull request #25373 from jerith666/crashplan-482

crashplan: 4.8.0 -> 4.8.2


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


[Nix-commits] [NixOS/nixpkgs] c893d7: nixos/display-managers: Quote "$vars" (#25199)

2017-05-06 Thread Michael Weiss
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c893d7adcc0c669f0c37f00f7a8cbfbfd7e53604
  
https://github.com/NixOS/nixpkgs/commit/c893d7adcc0c669f0c37f00f7a8cbfbfd7e53604
  Author: Judson Lester 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/services/x11/display-managers/default.nix

  Log Message:
  ---
  nixos/display-managers: Quote "$vars" (#25199)

(cherry picked from commit 0d726295703537c074b5a19d9b463ceca9a5cecc)


  Commit: 928331078053061fef1b78e1398e404b7478ea7d
  
https://github.com/NixOS/nixpkgs/commit/928331078053061fef1b78e1398e404b7478ea7d
  Author: Michael Weiss 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/services/x11/display-managers/default.nix
M nixos/modules/services/x11/display-managers/lightdm.nix
M nixos/modules/services/x11/display-managers/sddm.nix

  Log Message:
  ---
  display-managers: Fix the xsession parameters

The xsession script was called with inconsistent (depending on the
display managers) and wrong parameters. The main reason for this where
the spaces the parameter syntax. In order to fix this the old syntax:
$1 = ' + '
Will be replaced with a new syntax:
$1 = "+"

This assumes that neither "" nor ""
contain the "+" character but this shouldn't be a problem.

This patch also fixes the quoting by using double quotes (") instead of
single quotes (') [0].

Last but not least this'll add some comments for the better
understanding of the script.

[0]: 
https://specifications.freedesktop.org/desktop-entry-spec/latest/ar01s06.html

(cherry picked from commit 1273f414a784af87363ac440af2ce948b6a656b1)


  Commit: 3e3c38aaef029cf29d6bf014513bea9aecefd83a
  
https://github.com/NixOS/nixpkgs/commit/3e3c38aaef029cf29d6bf014513bea9aecefd83a
  Author: Michael Weiss 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/services/x11/desktop-managers/default.nix

  Log Message:
  ---
  desktop-managers: Use a black BG as fallback

Use a solid black background when no background image (via
~/.background-image) is provided. In my case this fixes the really
strange behaviour when i3 without a desktop manager starts with the SDDM
login screen as background image.

(cherry picked from commit 852813689a335399e30f83e0659666f3e312716e)


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


[Nix-commits] [NixOS/nixpkgs] 71ae25: nixos: revert changes from 3ab45f4b369c in taskser...

2017-05-06 Thread Peter Simons
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 71ae259627a1650f70c0bea0cab3a90f9c6856bc
  
https://github.com/NixOS/nixpkgs/commit/71ae259627a1650f70c0bea0cab3a90f9c6856bc
  Author: Peter Simons 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/services/misc/taskserver/default.nix

  Log Message:
  ---
  nixos: revert changes from 3ab45f4b369c in taskserver module

See 
https://github.com/NixOS/nixpkgs/commit/3ab45f4b369c9c741b55ddedeaac4c797dc61c04#commitcomment-22029298.

Fixes https://github.com/NixOS/nixpkgs/issues/25529 (I hope).


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


[Nix-commits] [NixOS/nixpkgs] 22cffa: socklog: init at 2.1.0

2017-05-06 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 22cffa0716de2f3cda9d262a4b7861d534ea9805
  
https://github.com/NixOS/nixpkgs/commit/22cffa0716de2f3cda9d262a4b7861d534ea9805
  Author: Joachim Fasting 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  socklog: init at 2.1.0


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


[Nix-commits] [NixOS/nixpkgs] 146985: irods: init at 4.2.0

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 146985e772e43c6129eb32589c39dec29053f75f
  
https://github.com/NixOS/nixpkgs/commit/146985e772e43c6129eb32589c39dec29053f75f
  Author: Bruno Bzeznik 
  Date:   2016-12-15 (Thu, 15 Dec 2016)

  Changed paths:
A pkgs/tools/filesystems/irods/common.nix
A pkgs/tools/filesystems/irods/default.nix
A pkgs/tools/filesystems/irods/irods_root_path.patch
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  irods: init at 4.2.0


  Commit: 3c320fe7b1039a5d4bfc067b81e4028876c40af5
  
https://github.com/NixOS/nixpkgs/commit/3c320fe7b1039a5d4bfc067b81e4028876c40af5
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/tools/filesystems/irods/common.nix
A pkgs/tools/filesystems/irods/default.nix
A pkgs/tools/filesystems/irods/irods_root_path.patch
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #19898 from bzizou/irods4.2

irods: init at 4.2.0


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


[Nix-commits] [NixOS/nixpkgs] 7c955a: MAR1D: init at 0.2.0

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7c955abfc4ea4ae83428bf1813f003ea5a6591b9
  
https://github.com/NixOS/nixpkgs/commit/7c955abfc4ea4ae83428bf1813f003ea5a6591b9
  Author: Taeer Bar-Yam 
  Date:   2016-11-15 (Tue, 15 Nov 2016)

  Changed paths:
A pkgs/games/mar1d/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  MAR1D: init at 0.2.0


  Commit: df5329e12758071cf0a4e2c5932b3c5db3754ef8
  
https://github.com/NixOS/nixpkgs/commit/df5329e12758071cf0a4e2c5932b3c5db3754ef8
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/games/mar1d/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #20317 from Radvendii/master

MAR1D: init at 0.2.0


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


[Nix-commits] [NixOS/nixpkgs] 9bc0b1: pass: 1.7 -> 1.7.1

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9bc0b12c682774a60da254ea5e2ab439d809d735
  
https://github.com/NixOS/nixpkgs/commit/9bc0b12c682774a60da254ea5e2ab439d809d735
  Author: Victor Calvert 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/tools/security/pass/default.nix

  Log Message:
  ---
  pass: 1.7 -> 1.7.1


  Commit: 1035af4789beaac0110dab6da005ef037bd5231e
  
https://github.com/NixOS/nixpkgs/commit/1035af4789beaac0110dab6da005ef037bd5231e
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M pkgs/tools/security/pass/default.nix

  Log Message:
  ---
  Merge pull request #25545 from calvertvl/update-pass-1.7.1

pass: 1.7 -> 1.7.1


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


[Nix-commits] [NixOS/nixpkgs] 450a05: graylog: 2.2.2 -> 2.2.3

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 450a0571cdb0ac9af1253e27aa9e4bed53b4
  
https://github.com/NixOS/nixpkgs/commit/450a0571cdb0ac9af1253e27aa9e4bed53b4
  Author: Tristan Helmich 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  graylog: 2.2.2 -> 2.2.3


  Commit: 2f826ef26f0c1e31e3fa53af52b14a5432a07e0e
  
https://github.com/NixOS/nixpkgs/commit/2f826ef26f0c1e31e3fa53af52b14a5432a07e0e
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  Merge pull request #25554 from mayflower/graylog_2.2.3

graylog: 2.2.2 -> 2.2.3


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


[Nix-commits] [NixOS/nixpkgs] fac459: vivaldi: 1.6.689.34-1 -> 1.8.770.56-1

2017-05-06 Thread Benjamin Staffin
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: fac4593448b069294934cc2befbdb11f060b479e
  
https://github.com/NixOS/nixpkgs/commit/fac4593448b069294934cc2befbdb11f060b479e
  Author: romildo 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M pkgs/applications/networking/browsers/vivaldi/default.nix

  Log Message:
  ---
  vivaldi: 1.6.689.34-1 -> 1.8.770.56-1

Add $out/opt/vivaldi/lib to RPATH so that libffmpeg.so distributed
with Vivaldi can be found. Otherwise launching Vivaldi fails.

(cherry picked from commit 9747994a7b0be071c5f242cb8424abb190279c68)


  Commit: 6149cd874eebf773cd1fda3f3623a282ec1cfb31
  
https://github.com/NixOS/nixpkgs/commit/6149cd874eebf773cd1fda3f3623a282ec1cfb31
  Author: José Romildo Malaquias 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M pkgs/applications/networking/browsers/vivaldi/default.nix

  Log Message:
  ---
  vivaldi: 1.8.770.56-1 -> 1.9.818.44-1 (#25345)

(cherry picked from commit f87e4c9f53925603a73a8ec1070dbcd743bedfd2)


  Commit: 1736798a87248bb0d73f88c8e0523309f33ffd4c
  
https://github.com/NixOS/nixpkgs/commit/1736798a87248bb0d73f88c8e0523309f33ffd4c
  Author: Benjamin Staffin 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  google-chrome: 57.0.2987.133 -> 58.0.3029.96

stable: 57.0.2987.133 -> 58.0.3029.96
beta: 58.0.3029.68 -> 59.0.3071.36
dev: 59.0.3067.0 -> 60.0.3088.3
(cherry picked from commit 4a593e428576833df308e8af0731a8c8b859ab5c)


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


[Nix-commits] [NixOS/nixpkgs] 0a897b: mesa: use older LLVM on aarch64 for now

2017-05-06 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0a897b2a33dd920456b058de9f835aa890a67cd9
  
https://github.com/NixOS/nixpkgs/commit/0a897b2a33dd920456b058de9f835aa890a67cd9
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  mesa: use older LLVM on aarch64 for now


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


[Nix-commits] [NixOS/nixpkgs] 4a593e: google-chrome: 57.0.2987.133 -> 58.0.3029.96

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4a593e428576833df308e8af0731a8c8b859ab5c
  
https://github.com/NixOS/nixpkgs/commit/4a593e428576833df308e8af0731a8c8b859ab5c
  Author: Benjamin Staffin 
  Date:   2017-05-04 (Thu, 04 May 2017)

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

  Log Message:
  ---
  google-chrome: 57.0.2987.133 -> 58.0.3029.96

stable: 57.0.2987.133 -> 58.0.3029.96
beta: 58.0.3029.68 -> 59.0.3071.36
dev: 59.0.3067.0 -> 60.0.3088.3


  Commit: 1321d0006995134b7ef611b72e5cf92eed97343c
  
https://github.com/NixOS/nixpkgs/commit/1321d0006995134b7ef611b72e5cf92eed97343c
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  Merge pull request #25508 from benley/google-chrome-variants

google-chrome: 57.0.2987.133 -> 58.0.3029.96


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


[Nix-dev] Would love to get feedback / help to a kodi problem

2017-05-06 Thread Stefan Huchler
Hello,

I have problems getting my wireless xbox controller working with nixos
17.03 I think I kind of / might understand what the problem is.

I think I would be able to solve it in other distros by compiling a
package and install it into the system, but thats not so easy in nixos
cause of the weard paths, so you have to package it I think.

Because I dont think that the nixos / nix documentation is very good
(imho) and some experience with kodi packaging could help, I would be
happy if somebody could help me get the plugin packaged.

I tried to describe the problem here already:

https://github.com/NixOS/nixpkgs/issues/25490

As far as I get it making a package for that plugin:
https://github.com/xbmc/peripheral.joystick

would solve the problem. My first question for that would be: do I
need to create a own package for that or do I have to modify the
existing kodi package?

Regards

Stefan

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


[Nix-commits] [NixOS/nixpkgs] e7203c: xen service: Forward DNS queries from Xen guests

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e7203cb03d981220354cb01216f283e176139c20
  
https://github.com/NixOS/nixpkgs/commit/e7203cb03d981220354cb01216f283e176139c20
  Author: Michał Pałka 
  Date:   2017-05-04 (Thu, 04 May 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  xen service: Forward DNS queries from Xen guests

Provide the option forwardDns in virtualisation.xen.bridge, which
enables forwarding of DNS queries to the default resolver, allowing
outside internet access for the xen guests.


  Commit: dc2fc5ed575f162624984437ade816b96316f9ab
  
https://github.com/NixOS/nixpkgs/commit/dc2fc5ed575f162624984437ade816b96316f9ab
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  Merge pull request #25495 from michalpalka/xen-forward-dns

xen service: Forward DNS queries from Xen guests


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


[Nix-commits] [NixOS/nixpkgs] 3b0daa: xen service: Add the possibility to override confi...

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3b0daa1a28a94725122ffcd0f39b452e084c351e
  
https://github.com/NixOS/nixpkgs/commit/3b0daa1a28a94725122ffcd0f39b452e084c351e
  Author: Michał Pałka 
  Date:   2017-05-04 (Thu, 04 May 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  xen service: Add the possibility to override configuration of xendomains

Add the option virtualisation.xen.domain.extraConfig, which
allows overriding options passed to xendomains.


  Commit: 6ef9875edb5160d8e447d3acd06ffc14c23a9052
  
https://github.com/NixOS/nixpkgs/commit/6ef9875edb5160d8e447d3acd06ffc14c23a9052
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  Merge pull request #25494 from michalpalka/xendomains

xen service: Add the possibility to override configuration of xendomains


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


[Nix-commits] [NixOS/nixpkgs] 2fcb87: xen service: fix xen-bridge not setting the config...

2017-05-06 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2fcb8714bac1076e2614ea7e024ca52f82269ff2
  
https://github.com/NixOS/nixpkgs/commit/2fcb8714bac1076e2614ea7e024ca52f82269ff2
  Author: Michał Pałka 
  Date:   2017-04-28 (Fri, 28 Apr 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  xen service: fix xen-bridge not setting the configured netmask
The xen-bridge service accepts the option prefixLength, but does not
use it to set the actual netmask on the bridge. This commit makes
it set the correct netmask.


  Commit: e2f9c1b97b08c801f9d40926224ad8f20b827237
  
https://github.com/NixOS/nixpkgs/commit/e2f9c1b97b08c801f9d40926224ad8f20b827237
  Author: Joachim F 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M nixos/modules/virtualisation/xen-dom0.nix

  Log Message:
  ---
  Merge pull request #25281 from michalpalka/master

xen service: fix xen-bridge not setting the configured netmask


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


[Nix-commits] [NixOS/nixpkgs] 756695: pythonPackages.ltc_scrypt: init at 1.0

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 756695c3fa4d3f45b83172938c973d7b3a86898c
  
https://github.com/NixOS/nixpkgs/commit/756695c3fa4d3f45b83172938c973d7b3a86898c
  Author: Lorenzo Manacorda 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages.ltc_scrypt: init at 1.0

library needed by the electrum-ltc lightweight litecoin wallet


  Commit: fe792c46d09ec32889890dce5c76ea0b8cf2c432
  
https://github.com/NixOS/nixpkgs/commit/fe792c46d09ec32889890dce5c76ea0b8cf2c432
  Author: Lorenzo Manacorda 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/applications/misc/electrum-ltc/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  electrum-ltc: init at 2.6.4.2

lightweight litecoin wallet


  Commit: 30a33a55ddb46c51ee5410560df9b407cf020625
  
https://github.com/NixOS/nixpkgs/commit/30a33a55ddb46c51ee5410560df9b407cf020625
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/applications/misc/electrum-ltc/default.nix
A pkgs/development/python-modules/ltc_scrypt/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #25544 from asymmetric/electrum-ltc

Electrum-LTC: init at 2.6.4.2


Compare: https://github.com/NixOS/nixpkgs/compare/477fa42be6a9...30a33a55ddb4___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b70924: Revert "Merge pull request #25275 from Ericson2314...

2017-05-06 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b70924bd80918d153a5e2023afd7647ae7b24a12
  
https://github.com/NixOS/nixpkgs/commit/b70924bd80918d153a5e2023afd7647ae7b24a12
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M lib/systems/doubles.nix
M lib/systems/parse.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/release-cross.nix

  Log Message:
  ---
  Revert "Merge pull request #25275 from Ericson2314/platform-normalize"

This reverts commit 2282a5774cd80567644a44d31585bf965a55f9ec, reversing
changes made to 14adea91566019549f33392d4710d9babd0108d7.

The lib tests are bloking nixpkgs-unstable, and I don't like debugging
it soon enough.


  Commit: 477fa42be6a96d9bca9db36236fca37a238d4011
  
https://github.com/NixOS/nixpkgs/commit/477fa42be6a96d9bca9db36236fca37a238d4011
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M lib/maintainers.nix

  Log Message:
  ---
  maintainers: add vmchale, missing after #25514


  Commit: e68633cd7270b01c6a02196054335090d6c13455
  
https://github.com/NixOS/nixpkgs/commit/e68633cd7270b01c6a02196054335090d6c13455
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M lib/maintainers.nix
M lib/systems/doubles.nix
M lib/systems/parse.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/release-cross.nix

  Log Message:
  ---
  Merge branch 'master' into staging

The missing maintainer entry is blocking evaluation on Hydra.


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


[Nix-commits] [NixOS/nixpkgs] 477fa4: maintainers: add vmchale, missing after #25514

2017-05-06 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 477fa42be6a96d9bca9db36236fca37a238d4011
  
https://github.com/NixOS/nixpkgs/commit/477fa42be6a96d9bca9db36236fca37a238d4011
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M lib/maintainers.nix

  Log Message:
  ---
  maintainers: add vmchale, missing after #25514


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


[Nix-commits] [NixOS/nixpkgs] b70924: Revert "Merge pull request #25275 from Ericson2314...

2017-05-06 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b70924bd80918d153a5e2023afd7647ae7b24a12
  
https://github.com/NixOS/nixpkgs/commit/b70924bd80918d153a5e2023afd7647ae7b24a12
  Author: Vladimír Čunát 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M lib/systems/doubles.nix
M lib/systems/parse.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/release-cross.nix

  Log Message:
  ---
  Revert "Merge pull request #25275 from Ericson2314/platform-normalize"

This reverts commit 2282a5774cd80567644a44d31585bf965a55f9ec, reversing
changes made to 14adea91566019549f33392d4710d9babd0108d7.

The lib tests are bloking nixpkgs-unstable, and I don't like debugging
it soon enough.


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


[Nix-commits] [NixOS/nixpkgs] ce4ff6: lib/tests.nix: add section headers

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

  Changed paths:
M lib/tests.nix

  Log Message:
  ---
  lib/tests.nix: add section headers


  Commit: 46a36d82eea3679176d77399cc292e5877eea50a
  
https://github.com/NixOS/nixpkgs/commit/46a36d82eea3679176d77399cc292e5877eea50a
  Author: Profpatsch 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M lib/trivial.nix

  Log Message:
  ---
  lib/trivial.nix: add type for fix


  Commit: f5bed28db87a65d05137dabefa02792249939dd1
  
https://github.com/NixOS/nixpkgs/commit/f5bed28db87a65d05137dabefa02792249939dd1
  Author: Alexey Shmalko 
  Date:   2017-05-01 (Mon, 01 May 2017)

  Changed paths:
M .github/ISSUE_TEMPLATE.md

  Log Message:
  ---
  github issue template: add sandboxing info


  Commit: 94d909adaf828079ec8ea673d7de8f34f1554a1a
  
https://github.com/NixOS/nixpkgs/commit/94d909adaf828079ec8ea673d7de8f34f1554a1a
  Author: Alexander V. Nikolaev 
  Date:   2017-05-01 (Mon, 01 May 2017)

  Changed paths:
M pkgs/applications/graphics/gimp/plugins/default.nix

  Log Message:
  ---
  gimp: fix all plugins build


  Commit: 8452e0684ee06c30f866c37c43e50caa52ed78ab
  
https://github.com/NixOS/nixpkgs/commit/8452e0684ee06c30f866c37c43e50caa52ed78ab
  Author: Alexander V. Nikolaev 
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
M pkgs/applications/graphics/gimp/plugins/default.nix

  Log Message:
  ---
  gimp: split buildInputs and nativeBuildInputs for plugins


  Commit: 0de51ef70e7e1a796a6eac883bf2a79bd8a28569
  
https://github.com/NixOS/nixpkgs/commit/0de51ef70e7e1a796a6eac883bf2a79bd8a28569
  Author: romildo 
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
A pkgs/tools/networking/connman-gtk/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  connman-gtk: init at 1.1.1


  Commit: 830669ca05c41545679f452957baed18abc9a927
  
https://github.com/NixOS/nixpkgs/commit/830669ca05c41545679f452957baed18abc9a927
  Author: Volth 
  Date:   2017-05-02 (Tue, 02 May 2017)

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

  Log Message:
  ---
  xrdp: do not restart xrdp-sesman on nixos-rebuild


  Commit: 9bce416637ec210925addb7babfdc367dd99b12d
  
https://github.com/NixOS/nixpkgs/commit/9bce416637ec210925addb7babfdc367dd99b12d
  Author: Volth 
  Date:   2017-05-02 (Tue, 02 May 2017)

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

  Log Message:
  ---
  xrdp: environment.pathsToLink from xserver.nix


  Commit: 31ad4e16579f169060449a90d4870efa7375fcb4
  
https://github.com/NixOS/nixpkgs/commit/31ad4e16579f169060449a90d4870efa7375fcb4
  Author: zraexy 
  Date:   2017-05-02 (Tue, 02 May 2017)

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

  Log Message:
  ---
  perlPackages.RegexpGrammars: init at 1.045


  Commit: f93d70bc60c485f2e98db213f114d2e8316bafea
  
https://github.com/NixOS/nixpkgs/commit/f93d70bc60c485f2e98db213f114d2e8316bafea
  Author: Jon Banafato 
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
M pkgs/applications/networking/corebird/default.nix

  Log Message:
  ---
  corebird: 1.4.2 -> 1.5


  Commit: cfd831437f9bccb18e50193838d45e8fba20c2b0
  
https://github.com/NixOS/nixpkgs/commit/cfd831437f9bccb18e50193838d45e8fba20c2b0
  Author: Volth 
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
M pkgs/applications/networking/remote/freerdp/default.nix
R pkgs/applications/networking/remote/freerdp/dlopen-absolute-paths.diff

  Log Message:
  ---
  freerdp: 20170201 -> 20170502


  Commit: 8678c0339d4595008c674cc4e7815bac35fbf477
  
https://github.com/NixOS/nixpkgs/commit/8678c0339d4595008c674cc4e7815bac35fbf477
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  aenum: 1.4.7 -> 2.0.3


  Commit: 92d18827d40eef32fafa26d5d097059cd77c1e08
  
https://github.com/NixOS/nixpkgs/commit/92d18827d40eef32fafa26d5d097059cd77c1e08
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  agate: 1.2.2 -> 1.6.0


  Commit: 390f67924fc9990197470458d4ff2955d13202dd
  
https://github.com/NixOS/nixpkgs/commit/390f67924fc9990197470458d4ff2955d13202dd
  Author: Rahul Gopinath 
  Date:   

[Nix-commits] [NixOS/nixpkgs] cc51dd: pythonPackages.pytest-flake8: init at 0.8.1

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cc51dd699d0d55562f5ecc1f190450674f3de975
  
https://github.com/NixOS/nixpkgs/commit/cc51dd699d0d55562f5ecc1f190450674f3de975
  Author: Jaakko Luttinen 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  pythonPackages.pytest-flake8: init at 0.8.1


  Commit: 37a48c91996cde06adebcd4988b89f6e5e7c79dd
  
https://github.com/NixOS/nixpkgs/commit/37a48c91996cde06adebcd4988b89f6e5e7c79dd
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  Merge pull request #25549 from jluttine/add-pytest-flake8

pythonPackages.pytest-flake8: init at 0.8.1


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


[Nix-commits] [NixOS/nixpkgs] 7aafda: pythonPackages: pytest-datafiles init at 1.0

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7aafda3024daae0f35d553b8c7567354f0b8b6ba
  
https://github.com/NixOS/nixpkgs/commit/7aafda3024daae0f35d553b8c7567354f0b8b6ba
  Author: Maximilian Güntner 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages: pytest-datafiles init at 1.0


  Commit: 401ace9cd32d1d3e12b47a49bbd757c3e763a6e4
  
https://github.com/NixOS/nixpkgs/commit/401ace9cd32d1d3e12b47a49bbd757c3e763a6e4
  Author: Maximilian Güntner 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages: pytest-mock 1.2 -> 1.6.0


  Commit: de53284cbd258a1a723677b8a1e9ec0eaf724ba8
  
https://github.com/NixOS/nixpkgs/commit/de53284cbd258a1a723677b8a1e9ec0eaf724ba8
  Author: Maximilian Güntner 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  watson: init at 1.4.0


  Commit: 5bf1e967fde2e1e411e2d57581bb9d8570f79dcd
  
https://github.com/NixOS/nixpkgs/commit/5bf1e967fde2e1e411e2d57581bb9d8570f79dcd
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/applications/office/watson/default.nix
A pkgs/development/python-modules/pytest-datafiles/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #25296 from mguentner/add_td_watson

watson: init at 1.4.0


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


[Nix-commits] [NixOS/nixpkgs] f5bed2: github issue template: add sandboxing info

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f5bed28db87a65d05137dabefa02792249939dd1
  
https://github.com/NixOS/nixpkgs/commit/f5bed28db87a65d05137dabefa02792249939dd1
  Author: Alexey Shmalko 
  Date:   2017-05-01 (Mon, 01 May 2017)

  Changed paths:
M .github/ISSUE_TEMPLATE.md

  Log Message:
  ---
  github issue template: add sandboxing info


  Commit: 63160f314412629a7bb72ecfca8b42d5dcd2d0df
  
https://github.com/NixOS/nixpkgs/commit/63160f314412629a7bb72ecfca8b42d5dcd2d0df
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
M .github/ISSUE_TEMPLATE.md

  Log Message:
  ---
  Merge pull request #25385 from rasendubi/issue-template

github issue template: add sandboxing info


Compare: https://github.com/NixOS/nixpkgs/compare/2135e032e17d...63160f314412___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] a2569f: c-blosc: init at 1.11.3

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a2569f5fd63bd1867ba6da1a2207560384dfa7a3
  
https://github.com/NixOS/nixpkgs/commit/a2569f5fd63bd1867ba6da1a2207560384dfa7a3
  Author: Josef Kemetmueller 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/development/libraries/c-blosc/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  c-blosc: init at 1.11.3


  Commit: facf9a6d22966c9ab664e669b7a68f814dc2337f
  
https://github.com/NixOS/nixpkgs/commit/facf9a6d22966c9ab664e669b7a68f814dc2337f
  Author: Josef Kemetmueller 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  pytables: Fix build on darwin by using external c-blosc

Using the pytables internal c-blosc lead to a compilation error on
darwin, as the installer uses cpuinfo.get_cpu_info(), which
(unexpectedly for pytables) returns None in the current darwin-python.


  Commit: 2135e032e17da106b3482036f7da09a1e0f27832
  
https://github.com/NixOS/nixpkgs/commit/2135e032e17da106b3482036f7da09a1e0f27832
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

  Changed paths:
A pkgs/development/libraries/c-blosc/default.nix
M pkgs/development/python-modules/tables/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #25551 from knedlsepp/fix-pytables-on-darwin

pytables: Fix build on darwin by using external c-blosc


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


[Nix-commits] [NixOS/nixpkgs] dee886: gitAndTools.gitflow: fix runtime dependencies #254...

2017-05-06 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dee8865d03ad78f7beb8e8a7f990f1ec64de199d
  
https://github.com/NixOS/nixpkgs/commit/dee8865d03ad78f7beb8e8a7f990f1ec64de199d
  Author: Jaakko Luttinen 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  gitAndTools.gitflow: fix runtime dependencies #25487

If `git-flow` was installed without explicitly installing `getopt` and `git`
too, it couldn't find those executables. Now it can find those and it can be
used as `git-flow` executable. Note, however, that in order to use `git-flow` as
git subcommand (`git flow`), one needs to install `git` too.


  Commit: cc00ca657f5e66fa2b637df51dd296cb28e9244b
  
https://github.com/NixOS/nixpkgs/commit/cc00ca657f5e66fa2b637df51dd296cb28e9244b
  Author: Jörg Thalheim 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  Merge pull request #25548 from jluttine/gitflow-fix-dependencies

gitAndTools.gitflow: fix runtime dependencies #25487


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


[Nix-commits] [NixOS/nixpkgs] 37f59b: tw-rs: init at 0.1.26

2017-05-06 Thread Vanessa McHale
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 37f59b3586c5a4d9f07c6aef7a9355a84691297a
  
https://github.com/NixOS/nixpkgs/commit/37f59b3586c5a4d9f07c6aef7a9355a84691297a
  Author: Vanessa McHale 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  tw-rs: init at 0.1.26

fixes #25514


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


[Nix-commits] [NixOS/nixpkgs] 637e41: calibre: 2.83.0 -> 2.84.0

2017-05-06 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 637e41fa6fb68c94895f90de45a905cf23fcc5f0
  
https://github.com/NixOS/nixpkgs/commit/637e41fa6fb68c94895f90de45a905cf23fcc5f0
  Author: Peter Hoeg 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  calibre: 2.83.0 -> 2.84.0


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


[Nix-commits] [NixOS/nixpkgs] 4ea961: kernelPackages.splUnstable: 0.7.0-rc3 -> 0.7.0-rc4

2017-05-06 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4ea961ccc368c2f6ab9bda94643dd179cd7ba0cb
  
https://github.com/NixOS/nixpkgs/commit/4ea961ccc368c2f6ab9bda94643dd179cd7ba0cb
  Author: Jörg Thalheim 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  kernelPackages.splUnstable: 0.7.0-rc3 -> 0.7.0-rc4


  Commit: 7765e5971c3eb882866bd5e333b91bbb96f9ccdb
  
https://github.com/NixOS/nixpkgs/commit/7765e5971c3eb882866bd5e333b91bbb96f9ccdb
  Author: Jörg Thalheim 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  kernelPackages.zfsUnstable: 0.7.0-rc3 -> 0.7.0-rc4


Compare: https://github.com/NixOS/nixpkgs/compare/399216c03ae3...7765e5971c3e___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b7ea2a: gitkraken: 2.4.0 -> 2.5.0

2017-05-06 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b7ea2a4f39a0248011527cf32077829f026cd618
  
https://github.com/NixOS/nixpkgs/commit/b7ea2a4f39a0248011527cf32077829f026cd618
  Author: Winnie Quinn 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  gitkraken: 2.4.0 -> 2.5.0


  Commit: 399216c03ae37661331521aeaa7cfa7bb09519f0
  
https://github.com/NixOS/nixpkgs/commit/399216c03ae37661331521aeaa7cfa7bb09519f0
  Author: Frederik Rietdijk 
  Date:   2017-05-06 (Sat, 06 May 2017)

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

  Log Message:
  ---
  Merge pull request #25547 from winniequinn/gitkraken-2.5.0

gitkraken: 2.4.0 -> 2.5.0


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