Re: [Nix-dev] How to access makeTest function from nixpkgs/nixos/lib/testing.nix?

2016-08-02 Thread Aycan İrican
Also you don’t need to use toString, below should also work:
 
  import (my-nixpkgs.path + "/nixos/tests/make-test.nix”) ({…});

—
aycan



> On 03 Aug 2016, at 05:36, Tomasz Czyż  wrote:
> 
> I'm just adding solution I was looking for and finally found:
> 
> (import "${toString my-nixpkgs.path}/nixos/lib/testing.nix")
> 
> that's how you get the path from custom nixpkgs.
> 
> 2016-06-23 1:43 GMT+01:00 Tomasz Czyż :
> 
> 
> 2016-06-23 1:39 GMT+01:00 Maarten Hoogendoorn :
> Cool.
> 
> For development environments, it is recommended to use the nix-shell program.
> 
> +1, I'm constantly forgetting about it. 
> A good example is nixops (nixos/nixops on github).
> 
> PS, I've added the list again.
> 
> Cheers :-)
> 
> Tom 
> Op 23 jun. 2016 02:34 schreef "Tomasz Czyż" :
> 
> Maarten,
> 
> thank you for showing this, I definitely omitted this part, now I see how you 
> set NIX_PATH in test.sh.
> 
> I think this approach is fine, and I'll use that solution if I won't figure 
> out better way.
> 
> I have tree like that:
> ./nixpkgs.nix  # this stuff is importing specific nixpkgs commit
> ./app1
> ./app2
> ./app3
> ./tests
> 
> each app is importing "../nixpkgs.nix" separately and tests are importing it 
> as well so all separately are using same nix version "internally".
> 
> By avoiding wrapper I can go to every directory and run nix-build and it will 
> work and app will be bound to specific nixpkgs version. 
> 
> Another solution would be, as you pointed, setting -I / NIX_PATH, but this is 
> another manual step that needs to be done. You have to add this to .profile 
> (but this is not project specific :[) or you have to set this in every 
> terminal you are working in, or figure out other way to set up this. I'll go 
> this route if I have no other options.
> 
> Right now with small workaround I described in previous post all stuff is 
> working without any other setup.
> 
> 1. Clone the repo
> 2. nix-build in every directory you want
> 
> 2016-06-23 1:23 GMT+01:00 Maarten Hoogendoorn :
> You could set the nixpkgs path with the -I option, or as I do, with a shell 
> variable.
> Point it to your fork of nixpkgs, and you're done.
> 
> Alternatively, there is some overridePackage(s?) function that might interest 
> you. (I myself should look at in detail as well ;))
> 
> Op 23 jun. 2016 02:19 schreef "Tomasz Czyż" :
> 
> Maarten, 
> 
> thank you for sharing your work.
> 
> I think you are using approach with "import " and not overriden pkgs 
> inside testing config/machine - which I prefer to avoid, because I want to 
> have bound nixpkgs version, I don't want to use "system" version. (maybe I'm 
> missing some piece, in that case please point it out).
> 
> In the meantime I found, that I can pass/override pinned pkgs inside 
> config/machine description with a little trick.
> 
>   import  ({
> machine = {config,pkgs,...}: {
>   _module.args.pkgs = my-nixpkgs;  # this trick overrides pkgs argument 
> for all modules
>   imports = [
>   ... my modules...
>   ];
> 
> };
> testScript=''
> ...
> '';
>   })
> 
> 
> I would prefer to not use this method as probably "pkgs" argument can "leak" 
> in some places (the other version of nixpkgs can be used and I will not 
> detect this easily). But that's the best I have so far.
> 
> 
> 
> 2016-06-23 1:10 GMT+01:00 Maarten Hoogendoorn :
> Hi Tomasz,
> 
> Some weeks ago, I looked into this to run zfs integration tests for a rust 
> binding to libzfs.
> 
> The GitHub repository [1] is set up to run a qemu vm on Travis, so that my 
> tests can run with a kernel that supports zfs. It also provides some 
> isolation during development. I'd rather not destroy my main pool by accident 
> ;)
> 
> Good luck, and let me know if this helps you out :)
> Maarten
> 
> [1] https://github.com/moretea/rust-zfs
> 
> 2016-06-23 1:23 GMT+02:00 Tomasz Czyż :
> Hello,
> 
> I found makeTest function from nixos useful and I would like to use it in my 
> projects for building integration testing environments.
> 
> The only method I found by now, how to access it is:
> 
> (import ).makeTest
> 
> The problem is: in the script I'm running, the fixed nixpkgs version is 
> passed as "pkgs" argument. The script must test programs against that 
> specific nixpkgs version.
> 
> I see two options:
> 1. grab makeTest command from pinned nixpkgs
> 2. grab makeTest from  and pass pinned nixpkgs as argument to 
> makeTest (and further to machine/nodes).
> 
> 1. I couldn't find the attribute which is pointing to that function or file, 
> if looks like I can access it only using path syntax like 
> . Is there any way to get path for current 
> "pkgs" set? Or are there any other ways how I can access this file/function?
> 
> 2. I didn't find any way to pass pkgs argument down the stack, looks like 

Re: [Nix-dev] How to access makeTest function from nixpkgs/nixos/lib/testing.nix?

2016-08-02 Thread Tomasz Czyż
I'm just adding solution I was looking for and finally found:

(import "${toString my-nixpkgs.path}/nixos/lib/testing.nix")

that's how you get the path from custom nixpkgs.

2016-06-23 1:43 GMT+01:00 Tomasz Czyż :

>
>
> 2016-06-23 1:39 GMT+01:00 Maarten Hoogendoorn :
>
>> Cool.
>>
>> For development environments, it is recommended to use the nix-shell
>> program.
>>
> +1, I'm constantly forgetting about it.
>
>> A good example is nixops (nixos/nixops on github).
>>
>> PS, I've added the list again.
>>
> Cheers :-)
>
> Tom
>
>> Op 23 jun. 2016 02:34 schreef "Tomasz Czyż" :
>>
>> Maarten,
>>>
>>> thank you for showing this, I definitely omitted this part, now I see
>>> how you set NIX_PATH in test.sh.
>>>
>>> I think this approach is fine, and I'll use that solution if I won't
>>> figure out better way.
>>>
>>> I have tree like that:
>>> ./nixpkgs.nix  # this stuff is importing specific nixpkgs commit
>>> ./app1
>>> ./app2
>>> ./app3
>>> ./tests
>>>
>>> each app is importing "../nixpkgs.nix" separately and tests are
>>> importing it as well so all separately are using same nix version
>>> "internally".
>>>
>>> By avoiding wrapper I can go to every directory and run nix-build and it
>>> will work and app will be bound to specific nixpkgs version.
>>>
>>> Another solution would be, as you pointed, setting -I / NIX_PATH, but
>>> this is another manual step that needs to be done. You have to add this to
>>> .profile (but this is not project specific :[) or you have to set this in
>>> every terminal you are working in, or figure out other way to set up this.
>>> I'll go this route if I have no other options.
>>>
>>> Right now with small workaround I described in previous post all stuff
>>> is working without any other setup.
>>>
>>> 1. Clone the repo
>>> 2. nix-build in every directory you want
>>>
>>> 2016-06-23 1:23 GMT+01:00 Maarten Hoogendoorn :
>>>
 You could set the nixpkgs path with the -I option, or as I do, with a
 shell variable.
 Point it to your fork of nixpkgs, and you're done.

 Alternatively, there is some overridePackage(s?) function that might
 interest you. (I myself should look at in detail as well ;))
 Op 23 jun. 2016 02:19 schreef "Tomasz Czyż" :

 Maarten,
>
> thank you for sharing your work.
>
> I think you are using approach with "import " and not
> overriden pkgs inside testing config/machine - which I prefer to avoid,
> because I want to have bound nixpkgs version, I don't want to use "system"
> version. (maybe I'm missing some piece, in that case please point it out).
>
> In the meantime I found, that I can pass/override pinned pkgs inside
> config/machine description with a little trick.
>
>   import  ({
> machine = {config,pkgs,...}: {
>   _module.args.pkgs = my-nixpkgs;  # this trick overrides pkgs
> argument for all modules
>   imports = [
>   ... my modules...
>   ];
>
> };
> testScript=''
> ...
> '';
>   })
>
>
> I would prefer to not use this method as probably "pkgs" argument can
> "leak" in some places (the other version of nixpkgs can be used and I will
> not detect this easily). But that's the best I have so far.
>
>
>
> 2016-06-23 1:10 GMT+01:00 Maarten Hoogendoorn :
>
>> Hi Tomasz,
>>
>> Some weeks ago, I looked into this to run zfs integration tests for a
>> rust binding to libzfs.
>>
>> The GitHub repository [1] is set up to run a qemu vm on Travis, so
>> that my tests can run with a kernel that supports zfs. It also provides
>> some isolation during development. I'd rather not destroy my main pool by
>> accident ;)
>>
>> Good luck, and let me know if this helps you out :)
>> Maarten
>>
>> [1] https://github.com/moretea/rust-zfs
>>
>> 2016-06-23 1:23 GMT+02:00 Tomasz Czyż :
>>
>>> Hello,
>>>
>>> I found makeTest function from nixos useful and I would like to use
>>> it in my projects for building integration testing environments.
>>>
>>> The only method I found by now, how to access it is:
>>>
>>> (import ).makeTest
>>>
>>> The problem is: in the script I'm running, the fixed nixpkgs version
>>> is passed as "pkgs" argument. The script must test programs against that
>>> specific nixpkgs version.
>>>
>>> I see two options:
>>> 1. grab makeTest command from pinned nixpkgs
>>> 2. grab makeTest from  and pass pinned nixpkgs as argument
>>> to makeTest (and further to machine/nodes).
>>>
>>> 1. I couldn't find the attribute which is pointing to that function
>>> or file, if looks like I can access it only using path syntax like
>>> . Is there any way to get path 

[Nix-commits] [NixOS/nixpkgs] cc9547: foo2zjs: remove use of `builderDefsPackage` (#1745...

2016-08-02 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cc9547dcf99f63e1046b25b9273bbc4b3999b341
  
https://github.com/NixOS/nixpkgs/commit/cc9547dcf99f63e1046b25b9273bbc4b3999b341
  Author: Robert Helgesson 
  Date:   2016-08-03 (Wed, 03 Aug 2016)

  Changed paths:
M pkgs/misc/drivers/foo2zjs/default.nix

  Log Message:
  ---
  foo2zjs: remove use of `builderDefsPackage` (#17459)


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


[Nix-commits] [NixOS/nixpkgs] 062182: supercollider: 3.6.6 -> 3.7.2 (#17395)

2016-08-02 Thread Bart Brouns
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0621828bb7a275484f3f6a6428d0e675c2bcc3c2
  
https://github.com/NixOS/nixpkgs/commit/0621828bb7a275484f3f6a6428d0e675c2bcc3c2
  Author: Bart Brouns 
  Date:   2016-08-03 (Wed, 03 Aug 2016)

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

  Log Message:
  ---
  supercollider: 3.6.6 -> 3.7.2 (#17395)


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


[Nix-commits] [NixOS/nixpkgs] 0afcb7: puddletag: init at 1.1.1 (#17443)

2016-08-02 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0afcb79f606d772c4f6581f21204cf9277479378
  
https://github.com/NixOS/nixpkgs/commit/0afcb79f606d772c4f6581f21204cf9277479378
  Author: Peter Hoeg 
  Date:   2016-08-03 (Wed, 03 Aug 2016)

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

  Log Message:
  ---
  puddletag: init at 1.1.1 (#17443)

Thanks to @fridh for feedback.


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


[Nix-commits] [NixOS/nixpkgs] 16d48b: Re-enable bunch of packages on Darwin

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 16d48b828067d1f4c7a0ca35910d3175c6362ebc
  
https://github.com/NixOS/nixpkgs/commit/16d48b828067d1f4c7a0ca35910d3175c6362ebc
  Author: Tuomas Tynkkynen 
  Date:   2016-08-03 (Wed, 03 Aug 2016)

  Changed paths:
M pkgs/development/libraries/libdaemon/default.nix
M pkgs/development/libraries/tecla/default.nix
M pkgs/shells/dash/default.nix
M pkgs/tools/archivers/atool/default.nix

  Log Message:
  ---
  Re-enable bunch of packages on Darwin

Prior to 1bf5ded1933b18af9a95dc263063756ed9d383ba these contained
`hydraPlatforms = platforms.linux`, which was apparently misleading.


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


[Nix-commits] [NixOS/nixpkgs] 176f80: cmake: 3.4.3 -> 3.6.0

2016-08-02 Thread Thomas Tuegel
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 176f804f36a99a23ee1256c85b72af6edb1ada22
  
https://github.com/NixOS/nixpkgs/commit/176f804f36a99a23ee1256c85b72af6edb1ada22
  Author: Alexey Shmalko 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/tools/build-managers/cmake/default.nix

  Log Message:
  ---
  cmake: 3.4.3 -> 3.6.0


  Commit: e058ac54872f96c2d4f3e8af4b33ce6c39d9bafa
  
https://github.com/NixOS/nixpkgs/commit/e058ac54872f96c2d4f3e8af4b33ce6c39d9bafa
  Author: Thomas Tuegel 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/tools/build-managers/cmake/default.nix

  Log Message:
  ---
  Merge branch 'cmake-3.6' into staging


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


[Nix-commits] [NixOS/nixpkgs] 387569: lua5: Re-enabel on Darwin

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3875690d80d257a76ef19d7db828fbb19e4a955e
  
https://github.com/NixOS/nixpkgs/commit/3875690d80d257a76ef19d7db828fbb19e4a955e
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/interpreters/lua-5/5.2.nix
M pkgs/development/interpreters/lua-5/5.3.nix

  Log Message:
  ---
  lua5: Re-enabel on Darwin

Prior to 1bf5ded1933b18af9a95dc263063756ed9d383ba this contained
`hydraPlatforms = platforms.linux`, which was apparently misleading.


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


[Nix-commits] [NixOS/nixpkgs] dc26ac: libmng: Re-enable on Darwin

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dc26ac6e04b98fab87dab03941819d937f02f573
  
https://github.com/NixOS/nixpkgs/commit/dc26ac6e04b98fab87dab03941819d937f02f573
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  libmng: Re-enable on Darwin

Prior to 1bf5ded1933b18af9a95dc263063756ed9d383ba this contained
`hydraPlatforms = platforms.linux`, which was apparently misleading.


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


[Nix-commits] [NixOS/nixpkgs] 2cce7a: telepathy_salut: fix build, add myself as maintain...

2016-08-02 Thread Luca Bruno
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2cce7a064e367ebc773a072022b45a772661893e
  
https://github.com/NixOS/nixpkgs/commit/2cce7a064e367ebc773a072022b45a772661893e
  Author: Luca Bruno 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  telepathy_salut: fix build, add 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] b7e920: androidenv: Don't build on Hydra

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b7e9207a67272dd19ef8cb0aabac47ea4b42add4
  
https://github.com/NixOS/nixpkgs/commit/b7e9207a67272dd19ef8cb0aabac47ea4b42add4
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/mobile/androidenv/androidndk.nix
M pkgs/development/mobile/androidenv/androidsdk.nix

  Log Message:
  ---
  androidenv: Don't build on Hydra

Output limit exceeded:

http://hydra.nixos.org/build/38236076
http://hydra.nixos.org/build/38235851


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


[Nix-commits] [NixOS/nixpkgs] 91a392: asciidoc: Works on Darwin

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 91a3920b1d30f213446abf92a336315f71ad6f33
  
https://github.com/NixOS/nixpkgs/commit/91a3920b1d30f213446abf92a336315f71ad6f33
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  asciidoc: Works on Darwin

D'oh! Plain 'asciidoc' works, but 'asciidoc-full' doesn't, so my scripts
changed it to 'linux' in
https://github.com/NixOS/nixpkgs/commit/21f17d69f61e8239870bf97edf49e594198076a8


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


[Nix-commits] [NixOS/nixpkgs] d84cec: travis-nox-review-pr.sh: Fix nixpkgs manual build

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d84cec10565570fdbf4861ceb7316aa388994e6c
  
https://github.com/NixOS/nixpkgs/commit/d84cec10565570fdbf4861ceb7316aa388994e6c
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M maintainers/scripts/travis-nox-review-pr.sh

  Log Message:
  ---
  travis-nox-review-pr.sh: Fix nixpkgs manual build

The current command is actually building the 'manpages' package, not the
nixpkgs manual.


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


[Nix-commits] [NixOS/nixpkgs] 1c00f2: perlPackages.NetSSLeay: 1.72 -> 1.77

2016-08-02 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1c00f258953594ac8577f241ba7bea838b453889
  
https://github.com/NixOS/nixpkgs/commit/1c00f258953594ac8577f241ba7bea838b453889
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  perlPackages.NetSSLeay: 1.72 -> 1.77


  Commit: 93758f6b2fd4da1db7868138fcb2236145dcfcd3
  
https://github.com/NixOS/nixpkgs/commit/93758f6b2fd4da1db7868138fcb2236145dcfcd3
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  perlPackages.NetSSLeay: link openssl pkgconfig files

Instead of linking the lib folder with the libraries, link the lib
directory from the dev output containing the pkgconfig files. This is
enough for finding the libs and fixes a build failure with libressl.


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


[Nix-commits] [NixOS/nixpkgs] cb0ddb: seabios: 1.9.2 -> 1.9.3

2016-08-02 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cb0ddbadd9001dee27e587a82e16d580e32b2e34
  
https://github.com/NixOS/nixpkgs/commit/cb0ddbadd9001dee27e587a82e16d580e32b2e34
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/virtualization/seabios/default.nix

  Log Message:
  ---
  seabios: 1.9.2 -> 1.9.3


  Commit: 9cfcf90832da5fe2da6d33b4213fa6e11906ebe7
  
https://github.com/NixOS/nixpkgs/commit/9cfcf90832da5fe2da6d33b4213fa6e11906ebe7
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
R pkgs/development/libraries/libressl/2.2.nix
M pkgs/development/libraries/libressl/2.3.nix
M pkgs/development/libraries/libressl/2.4.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  libressl: 2.3.6 -> 2.3.7, 2.4.1 -> 2.4.2

Version 2.2.x is removed because it is not maintained by upstream anymore.


  Commit: e55aa50175765c84f203992c15eca2be089b099d
  
https://github.com/NixOS/nixpkgs/commit/e55aa50175765c84f203992c15eca2be089b099d
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/tools/admin/simp_le/default.nix

  Log Message:
  ---
  simp_le: apply patch to update TOS hash

Fixes #17455.

Also see https://github.com/kuba/simp_le/issues/114.


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


[Nix-commits] [NixOS/nixpkgs] e66952: gambatte: init at 2016-05-03

2016-08-02 Thread Tuomas Tynkkynen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e669521834c5670bb0e79d9b25f3e3d10aede156
  
https://github.com/NixOS/nixpkgs/commit/e669521834c5670bb0e79d9b25f3e3d10aede156
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  gambatte: init at 2016-05-03


  Commit: b96fe03484ba8fa3091664246ec67a57f5703b1a
  
https://github.com/NixOS/nixpkgs/commit/b96fe03484ba8fa3091664246ec67a57f5703b1a
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/editors/tweak/default.nix
M pkgs/development/interpreters/picolisp/default.nix
M pkgs/development/libraries/assimp/default.nix
M pkgs/development/libraries/zeromq/3.x.nix
M pkgs/development/web/valum/default.nix
M pkgs/servers/http/couchdb/default.nix
M pkgs/tools/audio/pasystray/default.nix
M pkgs/tools/filesystems/fatresize/default.nix
M pkgs/tools/misc/dvtm/default.nix
M pkgs/tools/networking/nylon/default.nix

  Log Message:
  ---
  treewide: Fix meta.platforms related typos


  Commit: 1bf5ded1933b18af9a95dc263063756ed9d383ba
  
https://github.com/NixOS/nixpkgs/commit/1bf5ded1933b18af9a95dc263063756ed9d383ba
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/science/math/fricas/default.nix
M pkgs/applications/version-management/subversion/default.nix
M pkgs/development/compilers/swi-prolog/default.nix
M pkgs/development/interpreters/lua-5/5.2.nix
M pkgs/development/interpreters/lua-5/5.3.nix
M pkgs/development/interpreters/lua-5/expat.nix
M pkgs/development/interpreters/lua-5/sec.nix
M pkgs/development/interpreters/maude/default.nix
M pkgs/development/libraries/libdaemon/default.nix
M pkgs/development/libraries/libgnurl/default.nix
M pkgs/development/libraries/libmng/default.nix
M pkgs/development/libraries/serf/default.nix
M pkgs/development/libraries/silgraphite/default.nix
M pkgs/development/libraries/silgraphite/graphite2.nix
M pkgs/development/libraries/tecla/default.nix
M pkgs/servers/mail/dovecot/default.nix
M pkgs/shells/dash/default.nix
M pkgs/tools/archivers/atool/default.nix
M pkgs/tools/backup/bup/default.nix
M pkgs/tools/compression/pigz/default.nix
M pkgs/tools/graphics/gnuplot/default.nix
M pkgs/tools/graphics/graphviz/2.32.nix
M pkgs/tools/graphics/graphviz/default.nix
M pkgs/tools/networking/pdsh/default.nix
M pkgs/tools/typesetting/asciidoc/default.nix
M pkgs/tools/typesetting/multimarkdown/default.nix

  Log Message:
  ---
  treewide: Lots of meta.hydraPlatforms -> meta.platforms

In all of these files, there is no meta.platforms but only
meta.hydraPlatforms, which doesn't seem to have any purpose except being
inconsistent.


  Commit: 17e94ebc6a46a9a3bce9e8f9aeff1e29049e19c6
  
https://github.com/NixOS/nixpkgs/commit/17e94ebc6a46a9a3bce9e8f9aeff1e29049e19c6
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  xorg.xcbutilcursor: Don't wipe out most meta attrs


  Commit: db35d7b8ab7212bf52395f2f4816ea2fdacffbfe
  
https://github.com/NixOS/nixpkgs/commit/db35d7b8ab7212bf52395f2f4816ea2fdacffbfe
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/tools/package-management/koji/default.nix
M pkgs/tools/text/sgml/opensp/compat.nix

  Log Message:
  ---
  koji, opensp: Some meta fixes


  Commit: 59ce9118103898ec53b7679a312552246afab8b7
  
https://github.com/NixOS/nixpkgs/commit/59ce9118103898ec53b7679a312552246afab8b7
  Author: Tuomas Tynkkynen 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/misc/xmove/default.nix
M pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
M pkgs/applications/science/electronics/fritzing/default.nix
M pkgs/applications/science/logic/sad/default.nix
M pkgs/build-support/mono-dll-fixer/default.nix
M pkgs/data/fonts/dejavu-fonts/default.nix
M pkgs/development/libraries/giflib/libungif.nix
M pkgs/development/libraries/java/jdom/default.nix
M pkgs/development/libraries/java/lucene/default.nix
M pkgs/development/libraries/t1lib/default.nix
M pkgs/misc/emulators/atari++/default.nix
M pkgs/misc/emulators/atari800/default.nix
M pkgs/os-specific/linux/opengl/xorg-sys/default.nix
M pkgs/os-specific/linux/systemd/libudev.nix
M pkgs/tools/misc/mrtg/default.nix
M pkgs/tools/security/super/default.nix

  Log Message:
  ---
  treewide: Some EOF-whitespace fixes


  Commit: 

[Nix-commits] [NixOS/nixpkgs] fbbd50: unicon-lang: disable fortify hardening

2016-08-02 Thread Franz Pletz
  Branch: refs/heads/hardened-stdenv
  Home:   https://github.com/NixOS/nixpkgs
  Commit: fbbd50dbab794c7fcf748f54517596a6a96df96e
  
https://github.com/NixOS/nixpkgs/commit/fbbd50dbab794c7fcf748f54517596a6a96df96e
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/interpreters/unicon-lang/default.nix

  Log Message:
  ---
  unicon-lang: disable fortify hardening

Detects buffer overflow in a tool used at link time.


  Commit: f0d0164a3811a4cd570dc64ffe8c56824c736f06
  
https://github.com/NixOS/nixpkgs/commit/f0d0164a3811a4cd570dc64ffe8c56824c736f06
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix

  Log Message:
  ---
  tracefilesim: disable fortify hardening


  Commit: c1f1fd68cc0342ebb55c6ed004f71dffbcbfaa0c
  
https://github.com/NixOS/nixpkgs/commit/c1f1fd68cc0342ebb55c6ed004f71dffbcbfaa0c
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/libraries/gegl/3.0.nix

  Log Message:
  ---
  gegl_0_3: disable format hardening, add autoreconfHook


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


[Nix-commits] [NixOS/nixpkgs] 6cf020: gdal: 2.0.2 -> 2.1.1

2016-08-02 Thread Gabriel Ebner
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6cf020fc29fa8a272e991e633e8372c424250e09
  
https://github.com/NixOS/nixpkgs/commit/6cf020fc29fa8a272e991e633e8372c424250e09
  Author: Michel Kuhlmann 
  Date:   2016-07-27 (Wed, 27 Jul 2016)

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

  Log Message:
  ---
  gdal: 2.0.2 -> 2.1.1


  Commit: f298be9ef44657fdd267f7c296b40d4c97c9c1fc
  
https://github.com/NixOS/nixpkgs/commit/f298be9ef44657fdd267f7c296b40d4c97c9c1fc
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
A nixos/modules/services/web-servers/nginx/location-options.nix
A nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: declarative config


  Commit: 4676983990b1d35676eba19cee9e24a16e0f60d7
  
https://github.com/NixOS/nixpkgs/commit/4676983990b1d35676eba19cee9e24a16e0f60d7
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: Add ACME support for ssl sites


  Commit: 900b311a386b82ab66f209c1b9d4c292af08d6dc
  
https://github.com/NixOS/nixpkgs/commit/900b311a386b82ab66f209c1b9d4c292af08d6dc
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Fix ACME extraDomains, fix challenge url to not redirect to 
allow renewals


  Commit: 8bd1f401bbacf7e6537528d3f2dfd9e610e346c8
  
https://github.com/NixOS/nixpkgs/commit/8bd1f401bbacf7e6537528d3f2dfd9e610e346c8
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add sslProtocols option


  Commit: 35d76a72aba69108a369478be6cb21914d5075a5
  
https://github.com/NixOS/nixpkgs/commit/35d76a72aba69108a369478be6cb21914d5075a5
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add sslCiphers option


  Commit: c61157b7e6512036a7abc04a45df334162b3b111
  
https://github.com/NixOS/nixpkgs/commit/c61157b7e6512036a7abc04a45df334162b3b111
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add dhParams option


  Commit: d5a097fdb609ec5ffb09bcab632e4b2a03ae05ca
  
https://github.com/NixOS/nixpkgs/commit/d5a097fdb609ec5ffb09bcab632e4b2a03ae05ca
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Don't create acme certs if acme is not enabled


  Commit: 811f243ce6f1ce82cf93bc5b45e5879513a2a305
  
https://github.com/NixOS/nixpkgs/commit/811f243ce6f1ce82cf93bc5b45e5879513a2a305
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/location-options.nix

  Log Message:
  ---
  nginx module: Add extraConfig for locations


  Commit: 4e5c7913e9db6906b031bb8310ba811f533854d3
  
https://github.com/NixOS/nixpkgs/commit/4e5c7913e9db6906b031bb8310ba811f533854d3
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: Add acmeFallbackHost vhost option


  Commit: e18f8e8b6614499794ef704f0272bf986a906b78
  
https://github.com/NixOS/nixpkgs/commit/e18f8e8b6614499794ef704f0272bf986a906b78
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: turn off basic auth on acme locations


  Commit: ff12ee35b702dca2ed3c3b6671ac232bc850e6d7
  
https://github.com/NixOS/nixpkgs/commit/ff12ee35b702dca2ed3c3b6671ac232bc850e6d7
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: redirect to same 

[Nix-commits] [NixOS/nixops] 63c6ea: Fallback to EC2/AWS env variable if access key id ...

2016-08-02 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixops
  Commit: 63c6ea456b27008a62ef1edc75de2ecfb5373f31
  
https://github.com/NixOS/nixops/commit/63c6ea456b27008a62ef1edc75de2ecfb5373f31
  Author: Mathias Schreck 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M nixops/backends/ec2.py

  Log Message:
  ---
  Fallback to EC2/AWS env variable if access key id is not defined

According to the documentation the environment variable `EC2_ACCESS_KEY` or 
`AWS_ACCESS_KEY_ID` should be
used if the `deployment.route53.accessKeyId` has not been defined.


  Commit: 121bdc218c050884305375758f5749b311d1f0b8
  
https://github.com/NixOS/nixops/commit/121bdc218c050884305375758f5749b311d1f0b8
  Author: Eelco Dolstra 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M nixops/backends/ec2.py

  Log Message:
  ---
  Merge pull request #482 from lo1tuma/route53-env-vars-fix

Fallback to EC2/AWS env variable if access key id is not defined


Compare: https://github.com/NixOS/nixops/compare/1861dddcf479...121bdc218c05___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b0d748: bitkeeper: disable fortify hardening

2016-08-02 Thread Franz Pletz
  Branch: refs/heads/hardened-stdenv
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b0d748e244df6c977b2a1db3873ffdc271e59615
  
https://github.com/NixOS/nixpkgs/commit/b0d748e244df6c977b2a1db3873ffdc271e59615
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  bitkeeper: disable fortify hardening


  Commit: f2a66d4c16d19e671dc0a39956c08de2852e42a3
  
https://github.com/NixOS/nixpkgs/commit/f2a66d4c16d19e671dc0a39956c08de2852e42a3
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  criu: fix merge fail

d020caa5b2eca90ea051403fbb4c52b99ee071b9 vs. 
e3d0fe898bb0451b2485ccc0be42354614f4fba3


  Commit: 0751027b3155406a4cd61568bc8393f9e34b5fa0
  
https://github.com/NixOS/nixpkgs/commit/0751027b3155406a4cd61568bc8393f9e34b5fa0
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  wxPython: Disable format hardening


  Commit: c22c137c6cf3616b30f87028d92eb9d5fca35fec
  
https://github.com/NixOS/nixpkgs/commit/c22c137c6cf3616b30f87028d92eb9d5fca35fec
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  ruby_2_0: disable format hardening


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


[Nix-commits] [NixOS/nixpkgs] 15b849: seabios: disable fortify hardening

2016-08-02 Thread Franz Pletz
  Branch: refs/heads/hardened-stdenv
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 15b8491af31c7bb2e9ae0a78a097f8f34fcb7198
  
https://github.com/NixOS/nixpkgs/commit/15b8491af31c7bb2e9ae0a78a097f8f34fcb7198
  Author: Franz Pletz 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/virtualization/seabios/default.nix

  Log Message:
  ---
  seabios: disable fortify hardening


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


[Nix-commits] [NixOS/nixpkgs] 6cf020: gdal: 2.0.2 -> 2.1.1

2016-08-02 Thread Robin Gloster
  Branch: refs/heads/hardened-stdenv
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6cf020fc29fa8a272e991e633e8372c424250e09
  
https://github.com/NixOS/nixpkgs/commit/6cf020fc29fa8a272e991e633e8372c424250e09
  Author: Michel Kuhlmann 
  Date:   2016-07-27 (Wed, 27 Jul 2016)

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

  Log Message:
  ---
  gdal: 2.0.2 -> 2.1.1


  Commit: f298be9ef44657fdd267f7c296b40d4c97c9c1fc
  
https://github.com/NixOS/nixpkgs/commit/f298be9ef44657fdd267f7c296b40d4c97c9c1fc
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
A nixos/modules/services/web-servers/nginx/location-options.nix
A nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: declarative config


  Commit: 4676983990b1d35676eba19cee9e24a16e0f60d7
  
https://github.com/NixOS/nixpkgs/commit/4676983990b1d35676eba19cee9e24a16e0f60d7
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: Add ACME support for ssl sites


  Commit: 900b311a386b82ab66f209c1b9d4c292af08d6dc
  
https://github.com/NixOS/nixpkgs/commit/900b311a386b82ab66f209c1b9d4c292af08d6dc
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Fix ACME extraDomains, fix challenge url to not redirect to 
allow renewals


  Commit: 8bd1f401bbacf7e6537528d3f2dfd9e610e346c8
  
https://github.com/NixOS/nixpkgs/commit/8bd1f401bbacf7e6537528d3f2dfd9e610e346c8
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add sslProtocols option


  Commit: 35d76a72aba69108a369478be6cb21914d5075a5
  
https://github.com/NixOS/nixpkgs/commit/35d76a72aba69108a369478be6cb21914d5075a5
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add sslCiphers option


  Commit: c61157b7e6512036a7abc04a45df334162b3b111
  
https://github.com/NixOS/nixpkgs/commit/c61157b7e6512036a7abc04a45df334162b3b111
  Author: Tristan Helmich 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Add dhParams option


  Commit: d5a097fdb609ec5ffb09bcab632e4b2a03ae05ca
  
https://github.com/NixOS/nixpkgs/commit/d5a097fdb609ec5ffb09bcab632e4b2a03ae05ca
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: Don't create acme certs if acme is not enabled


  Commit: 811f243ce6f1ce82cf93bc5b45e5879513a2a305
  
https://github.com/NixOS/nixpkgs/commit/811f243ce6f1ce82cf93bc5b45e5879513a2a305
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/location-options.nix

  Log Message:
  ---
  nginx module: Add extraConfig for locations


  Commit: 4e5c7913e9db6906b031bb8310ba811f533854d3
  
https://github.com/NixOS/nixpkgs/commit/4e5c7913e9db6906b031bb8310ba811f533854d3
  Author: Franz Pletz 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix
M nixos/modules/services/web-servers/nginx/vhost-options.nix

  Log Message:
  ---
  nginx module: Add acmeFallbackHost vhost option


  Commit: e18f8e8b6614499794ef704f0272bf986a906b78
  
https://github.com/NixOS/nixpkgs/commit/e18f8e8b6614499794ef704f0272bf986a906b78
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: turn off basic auth on acme locations


  Commit: ff12ee35b702dca2ed3c3b6671ac232bc850e6d7
  
https://github.com/NixOS/nixpkgs/commit/ff12ee35b702dca2ed3c3b6671ac232bc850e6d7
  Author: Robin Gloster 
  Date:   2016-07-28 (Thu, 28 Jul 2016)

  Changed paths:
M nixos/modules/services/web-servers/nginx/default.nix

  Log Message:
  ---
  nginx module: redirect to 

[Nix-commits] [NixOS/nixpkgs] 470249: firefox-bin: 47.0.1 -> 48.0 (#17452)

2016-08-02 Thread taku0
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 47024938a2ef8c0d6821e7998dee062b430aebf0
  
https://github.com/NixOS/nixpkgs/commit/47024938a2ef8c0d6821e7998dee062b430aebf0
  Author: taku0 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/sources.nix

  Log Message:
  ---
  firefox-bin: 47.0.1 -> 48.0 (#17452)


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


[Nix-commits] [NixOS/nixpkgs] 5286c0: cmake: add support for cxxtest

2016-08-02 Thread Thomas Tuegel
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5286c0aebbe82a95f3e4b51aa35bc3b33bface2a
  
https://github.com/NixOS/nixpkgs/commit/5286c0aebbe82a95f3e4b51aa35bc3b33bface2a
  Author: Julien Dehos 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

  Changed paths:
M pkgs/development/tools/build-managers/cmake/default.nix

  Log Message:
  ---
  cmake: add support for cxxtest


  Commit: eab92e6ecd55e03ac50768d41ef0a6ef5e98e50f
  
https://github.com/NixOS/nixpkgs/commit/eab92e6ecd55e03ac50768d41ef0a6ef5e98e50f
  Author: Thomas Tuegel 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/development/tools/build-managers/cmake/default.nix

  Log Message:
  ---
  Merge branch 'pr-17426' into staging


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


[Nix-commits] [NixOS/nixpkgs] 6711e6: nixos manual: add Emacs section (fixes #13217)

2016-08-02 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6711e62d51a014d24eb1ec6313e1facf94bb8498
  
https://github.com/NixOS/nixpkgs/commit/6711e62d51a014d24eb1ec6313e1facf94bb8498
  Author: Rodney Lorrimar 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M nixos/doc/manual/configuration/configuration.xml
M nixos/doc/manual/default.nix
A nixos/modules/services/editors/emacs.xml

  Log Message:
  ---
  nixos manual: add Emacs section (fixes #13217)

In light of Emacs packaging improvements such as those mentioned
in #11503, and with the addition of a systemd service (#15807
and #16356), and considering that the wiki page is completely
out of date (#13217), it seems that some documentation is in order.


  Commit: 982be4d55a770eb597f49fb8f8f1ba61f3fd8dfb
  
https://github.com/NixOS/nixpkgs/commit/982be4d55a770eb597f49fb8f8f1ba61f3fd8dfb
  Author: Thomas Tuegel 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M nixos/doc/manual/configuration/configuration.xml
M nixos/doc/manual/default.nix
A nixos/modules/services/editors/emacs.xml

  Log Message:
  ---
  Merge pull request #17349 from rvl/nixos-manual-emacs

nixos manual: add Emacs section (fixes #13217)


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


[Nix-commits] [NixOS/nixpkgs] 99f63b: pythonPackages.mutagen: 1.27 -> 1.32

2016-08-02 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 99f63b4ded22117186eeba671c1657d155b45a20
  
https://github.com/NixOS/nixpkgs/commit/99f63b4ded22117186eeba671c1657d155b45a20
  Author: Bjørn Forsman 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  pythonPackages.mutagen: 1.27 -> 1.32

(Not updating to the latest version, 1.34, because it breaks e.g.
'beets'. See https://github.com/beetbox/beets/issues/2153.)

The new version requires locale / i18n to be set-up for tests or else
this message is thrown:

  RuntimeError: This test suite needs a unicode locale encoding. Try setting 
LANG=C.UTF-8

Also, remove a test that currently fails due to the python builder in
nixpkgs. PR with fix: https://github.com/NixOS/nixpkgs/pull/17430
("python: add file encoding to run_setup.py").


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


[Nix-commits] [NixOS/nixpkgs] 9e9192: git-up: 1.4.0 -> 1.4.1

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9e919254043ef52adc6b66a5c484b81a95a8ae13
  
https://github.com/NixOS/nixpkgs/commit/9e919254043ef52adc6b66a5c484b81a95a8ae13
  Author: Peter Hoeg 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  git-up: 1.4.0 -> 1.4.1


  Commit: 35cdfa572bebdf73ca28b82d84d16ddd0d1115fc
  
https://github.com/NixOS/nixpkgs/commit/35cdfa572bebdf73ca28b82d84d16ddd0d1115fc
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  Merge pull request #17449 from peterhoeg/git-up

git-up: 1.4.0 -> 1.4.1


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


[Nix-commits] Success: Hydra job nixpkgs:trunk:tarball on x86_64-linux

2016-08-02 Thread Hydra Build Daemon
Hi,

The status of Hydra job ‘nixpkgs:trunk:tarball’ (on x86_64-linux) has changed 
from "Failed" to "Success".  For details, see

  https://hydra.nixos.org/build/38232368

This may be due to 14 commits by Benno Fünfstück , 
Bjørn Forsman , Frederik Rietdijk 
, Lancelot SIX , Michel Kuhlmann 
 or Peter Hoeg .

Yay!

Regards,

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


[Nix-commits] [NixOS/nixpkgs] b1882a: beets: 1.3.17 -> 1.3.19

2016-08-02 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b1882ad395278be7d28e27e4484db6048820f29b
  
https://github.com/NixOS/nixpkgs/commit/b1882ad395278be7d28e27e4484db6048820f29b
  Author: Bjørn Forsman 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  beets: 1.3.17 -> 1.3.19

The echonest plugin was removed in 3.18 because the API it used is
shutting down. You might want to try the acousticbrainz instead.

Update pluginsWithoutDeps as needed to keep preCheck working.


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


[Nix-dev] PERL5LIB and lib.makePerlPath

2016-08-02 Thread Daniel Hlynskyi
Hi. There is a function lib.makePerlPath

$ nix-instantiate --eval -E 'with import {}; lib.makePerlPath
[perlPackages.DBDPg]'
"/nix/store/...-perl-DBD-Pg-3.5.3/lib/perl5/site_perl"

I want a similar function, which includes deps too (for wrapper)

$ nix-instantiate --eval -E 'with import {}; lib.makeFullPerlPath
[perlPackages.DBDPg]'
"/nix/store/...-perl-DBD-Pg-3.5.3/lib/perl5/site_perl:/nix/store/...-perl-DBI-1.634/lib/perl5/site_perl"

Has anybody done this already?
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 8fad3e: pythonPackages.setuptools: specify priority

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8fad3e81b07825ae8476f49eb32bd80f87ea82d2
  
https://github.com/NixOS/nixpkgs/commit/8fad3e81b07825ae8476f49eb32bd80f87ea82d2
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  pythonPackages.setuptools: specify priority

Both python3 and setuptools come with easy-install. For some magic
reason this hasn't caused any collisions yet, but it does with #17428.
We hereby prioritize the version that comes with setuptools.


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


[Nix-commits] [NixOS/nixpkgs] 2c7b5a: notmuch-mutt: drop unused fetchurl parameter

2016-08-02 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2c7b5ac8a9cddbda9fa929c193e4a37d4aead437
  
https://github.com/NixOS/nixpkgs/commit/2c7b5ac8a9cddbda9fa929c193e4a37d4aead437
  Author: Benno Fünfstück 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/mailreaders/notmuch/mutt.nix

  Log Message:
  ---
  notmuch-mutt: drop unused fetchurl parameter


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


[Nix-commits] [NixOS/nixpkgs] 8c04c3: notmuch-mutt: init at 0.22

2016-08-02 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8c04c3c899cfa08e8a5e8a0e7b6d0b323f756ef6
  
https://github.com/NixOS/nixpkgs/commit/8c04c3c899cfa08e8a5e8a0e7b6d0b323f756ef6
  Author: Peter Hoeg 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/mailreaders/notmuch/default.nix
A pkgs/applications/networking/mailreaders/notmuch/mutt.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/perl-packages.nix

  Log Message:
  ---
  notmuch-mutt: init at 0.22


  Commit: 58afc252e4a1f856e000b862412fb1b1b1ca001a
  
https://github.com/NixOS/nixpkgs/commit/58afc252e4a1f856e000b862412fb1b1b1ca001a
  Author: Benno Fünfstück 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/mailreaders/notmuch/mutt.nix

  Log Message:
  ---
  notmuch-mutt: remove unused parameter


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


[Nix-commits] [NixOS/nixpkgs] 3a185d: fix eval

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3a185d159f78b1f2ab2e954a501158ca5770f3a5
  
https://github.com/NixOS/nixpkgs/commit/3a185d159f78b1f2ab2e954a501158ca5770f3a5
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  fix eval


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


[Nix-commits] [NixOS/nixpkgs] 6cf020: gdal: 2.0.2 -> 2.1.1

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6cf020fc29fa8a272e991e633e8372c424250e09
  
https://github.com/NixOS/nixpkgs/commit/6cf020fc29fa8a272e991e633e8372c424250e09
  Author: Michel Kuhlmann 
  Date:   2016-07-27 (Wed, 27 Jul 2016)

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

  Log Message:
  ---
  gdal: 2.0.2 -> 2.1.1


  Commit: 0af0a20e1dddc2e993565d4e73c45bcddcf6ab74
  
https://github.com/NixOS/nixpkgs/commit/0af0a20e1dddc2e993565d4e73c45bcddcf6ab74
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  Merge pull request #17140 from michelk/gdal/update

gdal: 2.0.2 -> 2.1.1


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


[Nix-commits] [NixOS/nixpkgs] 0d08b7: pythonPackages.django_raster: Use mirror in URL

2016-08-02 Thread Lancelot SIX
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0d08b7d03cfdc8dd00545458e7a057d3ef4d3598
  
https://github.com/NixOS/nixpkgs/commit/0d08b7d03cfdc8dd00545458e7a057d3ef4d3598
  Author: Lancelot SIX 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  pythonPackages.django_raster: Use mirror in URL


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


[Nix-commits] [NixOS/nixpkgs] 853209: pythonPackages.kombu: Enable for python > 2.7

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 853209dde916dbb30650e6b7682fd25089fd494c
  
https://github.com/NixOS/nixpkgs/commit/853209dde916dbb30650e6b7682fd25089fd494c
  Author: Lancelot SIX 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

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

  Log Message:
  ---
  pythonPackages.kombu: Enable for python > 2.7

Only tests cannot run on python3* because dependencies are unavailable
(qpid-python). Kombu is announced to work fine for python3[1]

[1] 
https://github.com/celery/kombu/blob/a4edc670f49027154e3f708dfcd3726aceda8fc5/setup.py#L168-L170


  Commit: abc85a9601a7f384df6e095eb2645777dc4abce4
  
https://github.com/NixOS/nixpkgs/commit/abc85a9601a7f384df6e095eb2645777dc4abce4
  Author: Lancelot SIX 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

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

  Log Message:
  ---
  python35Packages.celery: disable

Few tests fail with python35 (related to OrderedDict changes).

setup.py file do not report this release as supporting python35 [1]

[1] 
https://github.com/celery/celery/blob/f6aa74a0b5fdfae27169ab09f45cc82602d7012b/setup.py#L73-L75


  Commit: 20a94d9b40cdbdf451cf760a2582c30e605621b7
  
https://github.com/NixOS/nixpkgs/commit/20a94d9b40cdbdf451cf760a2582c30e605621b7
  Author: Lancelot SIX 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

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

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


  Commit: ab1fdce28534255872c8aef10974dfb849bde325
  
https://github.com/NixOS/nixpkgs/commit/ab1fdce28534255872c8aef10974dfb849bde325
  Author: Lancelot SIX 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

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

  Log Message:
  ---
  python35Packages.django_colorful: enable at 1.2

python35Packages.django_colorful was erroneously disabled for python35.


  Commit: b1e42243f18f9d3259c0c40ead170f14fd50a2de
  
https://github.com/NixOS/nixpkgs/commit/b1e42243f18f9d3259c0c40ead170f14fd50a2de
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  Merge pull request #17431 from lancelotsix/add_django_raster

Add django raster


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


[Nix-commits] Failed: Hydra job nixpkgs:trunk:tarball on x86_64-linux

2016-08-02 Thread Hydra Build Daemon
Hi,

The status of Hydra job ‘nixpkgs:trunk:tarball’ (on x86_64-linux) has changed 
from "Success" to "Failed".  For details, see

  https://hydra.nixos.org/build/38232309

This may be due to 11 commits by Frederik Rietdijk , Joachim 
Fasting , Thomas Tuegel  or lukasepple 
.

Go forth and fix it.

Regards,

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


[Nix-commits] [NixOS/nixpkgs] 298811: pythonPackages: remove pythonName

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2988112a0ccae54766247385934d463ba2ad5ce6
  
https://github.com/NixOS/nixpkgs/commit/2988112a0ccae54766247385934d463ba2ad5ce6
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  pythonPackages: remove pythonName

because it is not used anywhere


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


[Nix-commits] [NixOS/nixpkgs] bd14e4: rdup: init at 1.1.15

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bd14e4242ee022bf1496a76a0235196229e80d8b
  
https://github.com/NixOS/nixpkgs/commit/bd14e4242ee022bf1496a76a0235196229e80d8b
  Author: lukasepple 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

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

  Log Message:
  ---
  rdup: init at 1.1.15


  Commit: 402a53736eab190dc08ea8c350568f0b16b8c9f8
  
https://github.com/NixOS/nixpkgs/commit/402a53736eab190dc08ea8c350568f0b16b8c9f8
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

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

  Log Message:
  ---
  Merge pull request #17420 from lukasepple/master

rdup: init at 1.1.15


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


[Nix-commits] [NixOS/nixpkgs] 8d02a6: dnscrypt-proxy: 1.6.1 -> 1.7.0

2016-08-02 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8d02a631be021b4fbec75b05ae9c83225184fd72
  
https://github.com/NixOS/nixpkgs/commit/8d02a631be021b4fbec75b05ae9c83225184fd72
  Author: Joachim Fasting 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/tools/networking/dnscrypt-proxy/default.nix

  Log Message:
  ---
  dnscrypt-proxy: 1.6.1 -> 1.7.0

No user-facing changes of particular note.

Full changelog at https://github.com/jedisct1/dnscrypt-proxy/releases/tag/1.7.0


  Commit: 79ac02ed648156e8d34a6dbc283af5dca6f78771
  
https://github.com/NixOS/nixpkgs/commit/79ac02ed648156e8d34a6dbc283af5dca6f78771
  Author: Joachim Fasting 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M nixos/modules/services/networking/dnscrypt-proxy.nix

  Log Message:
  ---
  dnscrypt-proxy service: update resolver list


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


[Nix-commits] [NixOS/nixpkgs] 248972: kde5.dolphin: include konsole kpart

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 248972b86a514c0d17babe823db4ab12815fc6f1
  
https://github.com/NixOS/nixpkgs/commit/248972b86a514c0d17babe823db4ab12815fc6f1
  Author: Thomas Tuegel 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

  Changed paths:
M pkgs/desktops/kde-5/applications/dolphin.nix

  Log Message:
  ---
  kde5.dolphin: include konsole kpart


  Commit: ff7a65956755d5c571a7c7d56717f0b44ca30376
  
https://github.com/NixOS/nixpkgs/commit/ff7a65956755d5c571a7c7d56717f0b44ca30376
  Author: Thomas Tuegel 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

  Changed paths:
M pkgs/desktops/kde-5/applications/kate.nix

  Log Message:
  ---
  kde5.kate: add konsole kpart


  Commit: 39aff85b0e253fd950cf2f87c94143e7e2a4e991
  
https://github.com/NixOS/nixpkgs/commit/39aff85b0e253fd950cf2f87c94143e7e2a4e991
  Author: Thomas Tuegel 
  Date:   2016-08-01 (Mon, 01 Aug 2016)

  Changed paths:
M pkgs/applications/editors/kile/frameworks.nix

  Log Message:
  ---
  kde5.kile: add konsole kpart


  Commit: f7a48fb80e3ce7afe6aa655e90e9aafc0525329f
  
https://github.com/NixOS/nixpkgs/commit/f7a48fb80e3ce7afe6aa655e90e9aafc0525329f
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/editors/kile/frameworks.nix
M pkgs/desktops/kde-5/applications/dolphin.nix
M pkgs/desktops/kde-5/applications/kate.nix

  Log Message:
  ---
  Merge pull request #17435 from ttuegel/konsole-kpart

Add missing Konsole kpart to various KDE applications


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


[Nix-commits] [NixOS/nixpkgs] 65c109: kde5.konversation: use kdeWrapper

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 65c109f8875e37726a96ec8cd9e8a090c921b08c
  
https://github.com/NixOS/nixpkgs/commit/65c109f8875e37726a96ec8cd9e8a090c921b08c
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/irc/konversation/1.6.nix

  Log Message:
  ---
  kde5.konversation: use kdeWrapper


  Commit: 266fde80ca137cfa4f6dfc6b382e936737a19e32
  
https://github.com/NixOS/nixpkgs/commit/266fde80ca137cfa4f6dfc6b382e936737a19e32
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/networking/irc/konversation/1.6.nix

  Log Message:
  ---
  kde5.konversation: 1.6 -> 1.6.1


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


[Nix-commits] [NixOS/nixpkgs] 2e538a: kde5.yakuake: use kdeWrapper

2016-08-02 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2e538a0f55e3c40b2b02ee1c750f145eeb1cd27f
  
https://github.com/NixOS/nixpkgs/commit/2e538a0f55e3c40b2b02ee1c750f145eeb1cd27f
  Author: Frederik Rietdijk 
  Date:   2016-08-02 (Tue, 02 Aug 2016)

  Changed paths:
M pkgs/applications/misc/yakuake/3.0.nix

  Log Message:
  ---
  kde5.yakuake: use kdeWrapper


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