[Nix-commits] [NixOS/nixpkgs] 039f0e: firmwareLinuxNonfree: 2016-05-18 -> 2016-07-12

2016-07-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 039f0e5cb044a3610252f139283cef32850091e2
  
https://github.com/NixOS/nixpkgs/commit/039f0e5cb044a3610252f139283cef32850091e2
  Author: Franz Pletz 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

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

  Log Message:
  ---
  firmwareLinuxNonfree: 2016-05-18 -> 2016-07-12


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


Re: [Nix-dev] Project environment setup

2016-07-18 Thread Ryan Eckbo

Ok I figured it out, sorry for the public conversation with myself but I
hope that it can help other new Nix users.  The use case is: you have 
some
private nix expressions and would like to configure a project 
environment
that includes those as well as some modified packages provided by 
nixpkgs.

Here's an example how to do it:

# nixpkgs-custom.nix - add your custom expressions to nixpkgs
{ system ? builtins.currentSystem }:

let
pkgs = import  { inherit system; };
callPackage = pkgs.lib.callPackageWith (pkgs // self);
self = {
  ITK = callPackage ./ITK { };
  SlicerExecutionModel = callPackage ./SlicerExecutionModel { };
  DWIConvert = callPackage ./DWIConvert { };
  teem = callPackage ./teem { };
  };
in
  pkgs // self


# shell.nix - the environment you want for a project
{ pkgs ? import  {} }:

let
  mygradle = pkgs.gradleGen.override  {
jdk = pkgs.openjdk8;  // build a gradle that uses JDK 8
};
in
pkgs.stdenv.mkDerivation {
name = "myproject";
src = ./.;
buildInputs = [ mygradle.gradle25 pkgs.DWIConvert pkgs.teem ];  // 
your software environment

}

# Run as
nix-shell --arg pkgs 'import path/to/nixpkgs-custom.nix {}'

And don't be surprised when you wait over 2 minutes for the nix shell 
prompt when
you're running it in a directory that's 900M -- nix will load it all 
into memory!


cheers,
Ryan


On 19 Jul 2016, at 13:17, Ryan Eckbo wrote:


For example, the shell.nix I wrote below doesn't make a gradle
available with openjdk8, and also takes 2m20s to load (!) when
I run `nix-shell`:

# shell.nix
# nix-shell prints 'warning: dumping very large path (> 256 MiB); this 
may run out of memory'

{ pkgs ? import  {} }:

let
  mygradle = pkgs.lib.overrideDerivation pkgs.gradle25 (oldAttrs: {
jdk = pkgs.openjdk8;
});
in
pkgs.stdenv.mkDerivation {
name = "myproject";
src = ./.;
buildInputs = [ mygradle ];
}



On 19 Jul 2016, at 10:53, Ryan Eckbo wrote:

I've been reading the docs and blog posts but I'm still unsure on the 
proper
way to configure a local shell.nix with my required modified 
packages.

Specifically, I need gradle built with jdk 8, something like

   pkgs.gradle25.override { jdk = pkgs.openjdk8; }

and I also have some local nix expressions. But I only want this for 
one project (so no
setting of .nixpkgs/config.nix).  Can someone point me in the right 
direction?


Thanks!
Ryan

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

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

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


Re: [Nix-dev] Project environment setup

2016-07-18 Thread Alex Berg
Also, you probably already found it, but there is some docs in the nixpkgs
manual, called "11.2.5. How to create ad hoc environments for nix-shell"

On Mon, Jul 18, 2016 at 9:41 PM, Alex Berg  wrote:

> Looks like that shell.nix file is correct.
>
> That load-time is only the first time, right? On the first run, all
> dependencies are fetched, but after that there is no need.
>
> What are you expecting? If you enter that nix-shell, you'll have a
> `gradle` command. Are you expecting a `java` command, also? If you want a
> `java` command, then you need to add a jdk to the "buildInputs". You can
> add `pkgs.openjdk7`, and the `java` command will run that while the
> `gradle` command refers to openjdk8. If you want `java` command to use
> openjdk8, then add `pkgs.openjdk8` to the "buildInputs".
>
>
> On Mon, Jul 18, 2016 at 8:17 PM, Ryan Eckbo  wrote:
>
>> For example, the shell.nix I wrote below doesn't make a gradle
>> available with openjdk8, and also takes 2m20s to load (!) when
>> I run `nix-shell`:
>>
>> # shell.nix
>> # nix-shell prints 'warning: dumping very large path (> 256 MiB); this
>> may run out of memory'
>> { pkgs ? import  {} }:
>>
>> let
>>   mygradle = pkgs.lib.overrideDerivation pkgs.gradle25 (oldAttrs: {
>> jdk = pkgs.openjdk8;
>> });
>> in
>> pkgs.stdenv.mkDerivation {
>> name = "myproject";
>> src = ./.;
>> buildInputs = [ mygradle ];
>>
>> }
>>
>>
>>
>> On 19 Jul 2016, at 10:53, Ryan Eckbo wrote:
>>
>> I've been reading the docs and blog posts but I'm still unsure on the
>>> proper
>>> way to configure a local shell.nix with my required modified packages.
>>> Specifically, I need gradle built with jdk 8, something like
>>>
>>>pkgs.gradle25.override { jdk = pkgs.openjdk8; }
>>>
>>> and I also have some local nix expressions. But I only want this for one
>>> project (so no
>>> setting of .nixpkgs/config.nix).  Can someone point me in the right
>>> direction?
>>>
>>> Thanks!
>>> Ryan
>>>
>>> ___
>>> nix-dev mailing list
>>> nix-dev@lists.science.uu.nl
>>> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>>>
>> ___
>> nix-dev mailing list
>> nix-dev@lists.science.uu.nl
>> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>>
>
>
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Project environment setup

2016-07-18 Thread Alex Berg
Looks like that shell.nix file is correct.

That load-time is only the first time, right? On the first run, all
dependencies are fetched, but after that there is no need.

What are you expecting? If you enter that nix-shell, you'll have a `gradle`
command. Are you expecting a `java` command, also? If you want a `java`
command, then you need to add a jdk to the "buildInputs". You can add
`pkgs.openjdk7`, and the `java` command will run that while the `gradle`
command refers to openjdk8. If you want `java` command to use openjdk8,
then add `pkgs.openjdk8` to the "buildInputs".


On Mon, Jul 18, 2016 at 8:17 PM, Ryan Eckbo  wrote:

> For example, the shell.nix I wrote below doesn't make a gradle
> available with openjdk8, and also takes 2m20s to load (!) when
> I run `nix-shell`:
>
> # shell.nix
> # nix-shell prints 'warning: dumping very large path (> 256 MiB); this may
> run out of memory'
> { pkgs ? import  {} }:
>
> let
>   mygradle = pkgs.lib.overrideDerivation pkgs.gradle25 (oldAttrs: {
> jdk = pkgs.openjdk8;
> });
> in
> pkgs.stdenv.mkDerivation {
> name = "myproject";
> src = ./.;
> buildInputs = [ mygradle ];
>
> }
>
>
>
> On 19 Jul 2016, at 10:53, Ryan Eckbo wrote:
>
> I've been reading the docs and blog posts but I'm still unsure on the
>> proper
>> way to configure a local shell.nix with my required modified packages.
>> Specifically, I need gradle built with jdk 8, something like
>>
>>pkgs.gradle25.override { jdk = pkgs.openjdk8; }
>>
>> and I also have some local nix expressions. But I only want this for one
>> project (so no
>> setting of .nixpkgs/config.nix).  Can someone point me in the right
>> direction?
>>
>> Thanks!
>> Ryan
>>
>> ___
>> nix-dev mailing list
>> nix-dev@lists.science.uu.nl
>> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Project environment setup

2016-07-18 Thread Ryan Eckbo

For example, the shell.nix I wrote below doesn't make a gradle
available with openjdk8, and also takes 2m20s to load (!) when
I run `nix-shell`:

# shell.nix
# nix-shell prints 'warning: dumping very large path (> 256 MiB); this 
may run out of memory'

{ pkgs ? import  {} }:

let
  mygradle = pkgs.lib.overrideDerivation pkgs.gradle25 (oldAttrs: {
jdk = pkgs.openjdk8;
});
in
pkgs.stdenv.mkDerivation {
name = "myproject";
src = ./.;
buildInputs = [ mygradle ];
}



On 19 Jul 2016, at 10:53, Ryan Eckbo wrote:

I've been reading the docs and blog posts but I'm still unsure on the 
proper

way to configure a local shell.nix with my required modified packages.
Specifically, I need gradle built with jdk 8, something like

   pkgs.gradle25.override { jdk = pkgs.openjdk8; }

and I also have some local nix expressions. But I only want this for 
one project (so no
setting of .nixpkgs/config.nix).  Can someone point me in the right 
direction?


Thanks!
Ryan

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

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


[Nix-commits] [NixOS/nixpkgs] 287404: busybox: fix static build

2016-07-18 Thread Nikolay Amiantov
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 28740462e7c03b607e5ea06c3acf5a2da772fb01
  
https://github.com/NixOS/nixpkgs/commit/28740462e7c03b607e5ea06c3acf5a2da772fb01
  Author: Nikolay Amiantov 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

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

  Log Message:
  ---
  busybox: fix static build


  Commit: 399db54e3514ceaee82ec217140975d77963359f
  
https://github.com/NixOS/nixpkgs/commit/399db54e3514ceaee82ec217140975d77963359f
  Author: Nikolay Amiantov 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
M nixos/modules/virtualisation/qemu-vm.nix

  Log Message:
  ---
  nixos/qemu: don't recreate extra disks


  Commit: 9cc70b419cc75bbf7f3224ad9f6848760adac1fd
  
https://github.com/NixOS/nixpkgs/commit/9cc70b419cc75bbf7f3224ad9f6848760adac1fd
  Author: Nikolay Amiantov 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
M nixos/release.nix
A nixos/tests/hibernate.nix

  Log Message:
  ---
  nixos/tests: add hibernation test


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


[Nix-dev] Project environment setup

2016-07-18 Thread Ryan Eckbo
I've been reading the docs and blog posts but I'm still unsure on the 
proper

way to configure a local shell.nix with my required modified packages.
Specifically, I need gradle built with jdk 8, something like

   pkgs.gradle25.override { jdk = pkgs.openjdk8; }

and I also have some local nix expressions. But I only want this for one 
project (so no
setting of .nixpkgs/config.nix).  Can someone point me in the right 
direction?


Thanks!
Ryan

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


[Nix-commits] [NixOS/nixpkgs] 60624a: nasty: add large file support (#17011)

2016-07-18 Thread Kranium Gikos Mendoza
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 60624a4625f8b191960b62518eac45cb912bbb4e
  
https://github.com/NixOS/nixpkgs/commit/60624a4625f8b191960b62518eac45cb912bbb4e
  Author: Kranium Gikos Mendoza 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

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

  Log Message:
  ---
  nasty: add large file support (#17011)

also fixes i686 build as a side-effect


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


[Nix-commits] [NixOS/nixpkgs] 60d32f: planner: init at 0.14.6 (#17078)

2016-07-18 Thread Alexey Shmalko
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 60d32ff6cca3a19d1fb1565b07d948c3de45779e
  
https://github.com/NixOS/nixpkgs/commit/60d32ff6cca3a19d1fb1565b07d948c3de45779e
  Author: Alexey Shmalko 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

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

  Log Message:
  ---
  planner: init at 0.14.6 (#17078)


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


[Nix-commits] [NixOS/nixpkgs] 0dee86: gnome-software: propogated -> propagated (#17086)

2016-07-18 Thread Alexey Shmalko
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0dee86279d1aeeb8d9ca839355f5ff9d9d03819d
  
https://github.com/NixOS/nixpkgs/commit/0dee86279d1aeeb8d9ca839355f5ff9d9d03819d
  Author: Alexey Shmalko 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix
M pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix

  Log Message:
  ---
  gnome-software: propogated -> propagated (#17086)


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


[Nix-commits] [NixOS/nixpkgs] b5daad: nginx: refactor and add mainline version

2016-07-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b5daad4268e487fdb2aaf2979667b56b99901bcd
  
https://github.com/NixOS/nixpkgs/commit/b5daad4268e487fdb2aaf2979667b56b99901bcd
  Author: Franz Pletz 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
R pkgs/servers/http/nginx/default.nix
R pkgs/servers/http/nginx/default.upstream
A pkgs/servers/http/nginx/generic.nix
A pkgs/servers/http/nginx/mainline.nix
A pkgs/servers/http/nginx/mainline.upstream
A pkgs/servers/http/nginx/stable.nix
A pkgs/servers/http/nginx/stable.upstream
R pkgs/servers/http/nginx/unstable.upstream
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  nginx: refactor and add mainline version

Upstream calls the unstable version mainline.


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


[Nix-commits] [NixOS/nixpkgs] febcd3: nixos/grafana: set plugins path, fix image generat...

2016-07-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: febcd39afa6dff017290d3c56b7c545c8e05659b
  
https://github.com/NixOS/nixpkgs/commit/febcd39afa6dff017290d3c56b7c545c8e05659b
  Author: Franz Pletz 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
M nixos/modules/services/monitoring/grafana.nix
M pkgs/servers/monitoring/grafana/default.nix

  Log Message:
  ---
  nixos/grafana: set plugins path, fix image generation

Also add options to configure which organization should have anonymous access.


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


[Nix-commits] [NixOS/nixpkgs] 07fe6f: grafana: 3.0.1 -> 3.1.0 (#17084)

2016-07-18 Thread cransom
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 07fe6fa90e3ba01c415b3ff776c5399744845645
  
https://github.com/NixOS/nixpkgs/commit/07fe6fa90e3ba01c415b3ff776c5399744845645
  Author: cransom 
  Date:   2016-07-19 (Tue, 19 Jul 2016)

  Changed paths:
M pkgs/servers/monitoring/grafana/default.nix

  Log Message:
  ---
  grafana: 3.0.1 -> 3.1.0 (#17084)


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


[Nix-commits] [NixOS/nixpkgs] 50b690: kmymoney: 4.7.2 -> 4.8.0

2016-07-18 Thread Christian Richter
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 50b690fd03dabb5c3e21c31e59ab2187d4b5f8a7
  
https://github.com/NixOS/nixpkgs/commit/50b690fd03dabb5c3e21c31e59ab2187d4b5f8a7
  Author: Christian Richter 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  kmymoney: 4.7.2 -> 4.8.0


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


[Nix-commits] [NixOS/nixpkgs] 6145b6: tk: propagate dependency on tcl & libXft

2016-07-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6145b6b7d644139dd551cea36a0bce1580baa971
  
https://github.com/NixOS/nixpkgs/commit/6145b6b7d644139dd551cea36a0bce1580baa971
  Author: Tim Cuthbertson 
  Date:   2016-06-20 (Mon, 20 Jun 2016)

  Changed paths:
M pkgs/development/libraries/tk/generic.nix

  Log Message:
  ---
  tk: propagate dependency on tcl & libXft


  Commit: e558561c3efa297618d5a75fb3241d3fde0ac3bc
  
https://github.com/NixOS/nixpkgs/commit/e558561c3efa297618d5a75fb3241d3fde0ac3bc
  Author: Frederik Rietdijk 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/development/libraries/tk/generic.nix

  Log Message:
  ---
  Merge pull request #16358 from timbertson/tk

tk: propagate dependency on tcl & libXft


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


[Nix-commits] [NixOS/nixpkgs] 17627e: kde5.spectacle: use postInstall instead of postFix...

2016-07-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 17627eac657ae9c4b3246a7e7a4727bf892c0dd6
  
https://github.com/NixOS/nixpkgs/commit/17627eac657ae9c4b3246a7e7a4727bf892c0dd6
  Author: Jos van den Oever 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

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

  Log Message:
  ---
  kde5.spectacle: use postInstall instead of postFixup

The other KDE applications run wrapQtProgram in postInstall.


  Commit: cb53771d93b98966055fb31da9ecc2c5803e
  
https://github.com/NixOS/nixpkgs/commit/cb53771d93b98966055fb31da9ecc2c5803e
  Author: Frederik Rietdijk 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17031 from vandenoever/spectacle

kde5.spectacle: use postInstall instead of postFixup


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


[Nix-commits] [NixOS/nixpkgs] cb40b4: pythonPackages: dulwich disable tests on darwin

2016-07-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cb40b4aafdd6593b9cddbd1b11c3d89ac2a7096f
  
https://github.com/NixOS/nixpkgs/commit/cb40b4aafdd6593b9cddbd1b11c3d89ac2a7096f
  Author: Daiderd Jordan 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  pythonPackages: dulwich disable tests on darwin


  Commit: 9e4cb9a144b8d517c63695b2a49cb366872191a7
  
https://github.com/NixOS/nixpkgs/commit/9e4cb9a144b8d517c63695b2a49cb366872191a7
  Author: Frederik Rietdijk 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17071 from LnL7/darwin-fix-python-dulwich

pythonPackages: dulwich disable tests on darwin


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


Re: [Nix-dev] Raspberry-Pi NixOS

2016-07-18 Thread Lluís Batlle i Rossell
The device tree blob should be built by the kernel, like with pi and pi2,
isn't it?

Regards,
Lluís.


On Mon, Jul 18, 2016 at 10:40:09PM +0200, Tomas Hlavaty wrote:
> 
> Tomas Hlavaty  writes:
> > - pkgs/os-specific/linux/firmware/raspberrypi/default.nix needs newer
> >   rev as the current one is pre-rpi3.
> >
> > - pkgs/os-specific/linux/kernel/linux-rpi.nix needs newer kernel,
> >   probably for the same reason as above.  I tried 4.4.13-v7.
> 
> Tuomas Tynkkynen has done that already and looking at the git log, he's
> progressed quite far.
> 
> commit 36f4a8a485732da98e1fcf40945ecda305677579
> Author: Tuomas Tynkkynen 
> Date:   Sun Jun 19 22:49:36 2016 +0300
> 
> sd-image-armv7l-multiplatform.nix: Preliminary Raspberry Pi 2/3 support
> 
> - RPi3 successfully gets to U-Boot, but then fails to boot the kernel
>   due to a missing device tree file. This should get added to the 4.8
>   kernel release once this patch is merged: 
> https://lkml.org/lkml/2016/6/1/841
> - RPi2 is not tested, but it should successfully boot the NixOS image.
> 
> Could not the device tree be taken from
> raspberrypifw/boot/bcm2710-rpi-3-b.dtb?
> 
> I will build nixpkgs HEAD, lets see.
> 
> Tomas
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev

-- 
(Escriu-me xifrat si saps PGP / Write ciphered if you know PGP)
PGP key D4831A8A - https://emailselfdefense.fsf.org/
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Specifying particular firmware

2016-07-18 Thread Vladimír Čunát
On 07/18/2016 07:35 PM, Matthew Robbetts wrote:
> I can’t figure out where firmware versions are specified/determined by nixos

It's the option `config.hardware.enableAllFirmware` which pulls
`pkgs.firmwareLinuxNonfree`. Surely you can follow to the source, etc.

--Vladimir




smime.p7s
Description: S/MIME Cryptographic Signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Raspberry-Pi NixOS

2016-07-18 Thread Tomas Hlavaty

Tomas Hlavaty  writes:
> - pkgs/os-specific/linux/firmware/raspberrypi/default.nix needs newer
>   rev as the current one is pre-rpi3.
>
> - pkgs/os-specific/linux/kernel/linux-rpi.nix needs newer kernel,
>   probably for the same reason as above.  I tried 4.4.13-v7.

Tuomas Tynkkynen has done that already and looking at the git log, he's
progressed quite far.

commit 36f4a8a485732da98e1fcf40945ecda305677579
Author: Tuomas Tynkkynen 
Date:   Sun Jun 19 22:49:36 2016 +0300

sd-image-armv7l-multiplatform.nix: Preliminary Raspberry Pi 2/3 support

- RPi3 successfully gets to U-Boot, but then fails to boot the kernel
  due to a missing device tree file. This should get added to the 4.8
  kernel release once this patch is merged: 
https://lkml.org/lkml/2016/6/1/841
- RPi2 is not tested, but it should successfully boot the NixOS image.

Could not the device tree be taken from
raspberrypifw/boot/bcm2710-rpi-3-b.dtb?

I will build nixpkgs HEAD, lets see.

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


[Nix-commits] [NixOS/nixpkgs] cf6301: nixpkgs: build bitkeeper only on linux

2016-07-18 Thread Austin Seipp
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cf63016f0631de2c0e0564c29effe7e4d22f913d
  
https://github.com/NixOS/nixpkgs/commit/cf63016f0631de2c0e0564c29effe7e4d22f913d
  Author: Austin Seipp 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  nixpkgs: build bitkeeper only on linux

The OS X build fails due to the dependency on 'crypt' failing. Perhaps
in future versions of BitKeeper this build can be re-enabled.

Signed-off-by: Austin Seipp 


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


[Nix-commits] [NixOS/nixpkgs] f231b2: slic3r: Add LWP for "Send to printer"

2016-07-18 Thread Peter Jones
  Branch: refs/heads/release-16.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f231b2b3f79020025eaabe4e8fae53e81651914c
  
https://github.com/NixOS/nixpkgs/commit/f231b2b3f79020025eaabe4e8fae53e81651914c
  Author: Peter Jones 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  slic3r: Add LWP for "Send to printer"

This patch adds a dependency on the LWP perl module so that Slic3r can
make HTTP connections to Octoprint and send G-code to a remote printer.

(cherry picked from commit f303a072c02d5659abc8b03e69f98f789745b4ab)


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


[Nix-commits] [NixOS/nixpkgs] f303a0: slic3r: Add LWP for "Send to printer"

2016-07-18 Thread Peter Jones
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f303a072c02d5659abc8b03e69f98f789745b4ab
  
https://github.com/NixOS/nixpkgs/commit/f303a072c02d5659abc8b03e69f98f789745b4ab
  Author: Peter Jones 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  slic3r: Add LWP for "Send to printer"

This patch adds a dependency on the LWP perl module so that Slic3r can
make HTTP connections to Octoprint and send G-code to a remote printer.


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


[Nix-commits] [NixOS/nixpkgs] ec0889: grsecurity_base_linux_4_5: fix build

2016-07-18 Thread Joachim Fasting
  Branch: refs/heads/release-16.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ec0889d393aa0e7683e79b1e18fcf295aef6e316
  
https://github.com/NixOS/nixpkgs/commit/ec0889d393aa0e7683e79b1e18fcf295aef6e316
  Author: Joachim Fasting 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  grsecurity_base_linux_4_5: fix build

The hiddev CVE patch, added in
https://github.com/NixOS/nixpkgs/commit/10ba79450b85a4cdb105b8ee18b62e75dc7f8ac7
breaks the grsecurity kernel build.  For now, the simplest solution is to set
kernel patches applied to the grsec base kernel explicitly rather than
inheriting patches from linux_4_5.

Fixes https://github.com/NixOS/nixpkgs/issues/17061


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


[Nix-commits] [NixOS/nixpkgs] 028e3d: qrupdate: fix installation (darwin)

2016-07-18 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 028e3d82df2255f08161b9a3647617d68767b861
  
https://github.com/NixOS/nixpkgs/commit/028e3d82df2255f08161b9a3647617d68767b861
  Author: Anthony Cowley 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  qrupdate: fix installation (darwin)

The issue is that the library files were not copied to $out with the
existing `installTargets` definition.

I noticed this problem on darwin, but I do not know if it is a
darwin-only problem.


  Commit: a7202bf47d56861b43af1e174b68da3178ce9215
  
https://github.com/NixOS/nixpkgs/commit/a7202bf47d56861b43af1e174b68da3178ce9215
  Author: Daiderd Jordan 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #16965 from acowley/qrupdate2

qrupdate: fix installation (darwin)


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


[Nix-commits] [NixOS/nixpkgs] 31a8ee: prometheus: Bump all to newest

2016-07-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 31a8eee841ba85d05ebfdb286cfad6a8de948d6c
  
https://github.com/NixOS/nixpkgs/commit/31a8eee841ba85d05ebfdb286cfad6a8de948d6c
  Author: Svein Ove Aas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/servers/monitoring/prometheus/alertmanager.nix
M pkgs/servers/monitoring/prometheus/default.nix
M pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
M pkgs/servers/monitoring/prometheus/mysqld-exporter.nix
M pkgs/servers/monitoring/prometheus/nginx-exporter.nix
M pkgs/servers/monitoring/prometheus/node-exporter.nix
R pkgs/servers/monitoring/prometheus/node-exporter_deps.json
M pkgs/servers/monitoring/prometheus/pushgateway.nix
M pkgs/servers/monitoring/prometheus/statsd-bridge.nix

  Log Message:
  ---
  prometheus: Bump all to newest

Disable tests for prometheus-node-exporter because one megacli test fails.

Closes #16575.


  Commit: 5647521a2a619a310906821e3481d59850230507
  
https://github.com/NixOS/nixpkgs/commit/5647521a2a619a310906821e3481d59850230507
  Author: Franz Pletz 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/servers/monitoring/prometheus/alertmanager.nix

  Log Message:
  ---
  prometheus-alertmanager: 0.2.1 -> 0.3.0


  Commit: d9f9711f9f093026a02e6da1500bf5818d61c6d0
  
https://github.com/NixOS/nixpkgs/commit/d9f9711f9f093026a02e6da1500bf5818d61c6d0
  Author: Franz Pletz 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/servers/monitoring/prometheus/collectd-exporter.nix

  Log Message:
  ---
  prometheus-collectd-exporter: 0.1.0 -> 0.3.1


  Commit: 328a77f60b3aee558407d08525db34e06fbfafd7
  
https://github.com/NixOS/nixpkgs/commit/328a77f60b3aee558407d08525db34e06fbfafd7
  Author: Franz Pletz 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/servers/monitoring/prometheus/default.nix

  Log Message:
  ---
  prometheus: 0.20.0 -> 1.0.0


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


[Nix-commits] [NixOS/nixpkgs] 3a8765: youtube-dl: 2016.07.09.2 -> 2016.07.17

2016-07-18 Thread Stephen Whitmore
  Branch: refs/heads/release-16.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3a8765a3235a455220c570c9f2ae7c1fe65e4134
  
https://github.com/NixOS/nixpkgs/commit/3a8765a3235a455220c570c9f2ae7c1fe65e4134
  Author: Stephen Whitmore 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  youtube-dl: 2016.07.09.2 -> 2016.07.17

(cherry picked from commit d8516b0fe3396f5c18f00a81108957b4a872e737)


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


[Nix-dev] Specifying particular firmware

2016-07-18 Thread Matthew Robbetts
Hi all,

I am trying to set up a wifi access point with nixos using a Doodle Labs 
ACE-5500-3 (QCA989x) card and the ath10k driver. I am migration a configuration 
over from another, non-Nix, machine that using using a similar card (ACE-DB-3).

I am having trouble getting the hostapd to start in 5GHz mode (2.4GHz works 
fine, it seems to be failing strangely somewhere in the DFS initialization) and 
noticed that, if nothing else, the firmware that is being loaded 
(10.2.4.70.9-2) is 10 months old. I can’t figure out where firmware versions 
are specified/determined by nixos — is there a way to force or override?

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


[Nix-commits] [NixOS/nixpkgs] 1e510f: oh-my-zsh: 2016-07-05 -> 2016-07-15

2016-07-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1e510fd87c792e3228cd7025139dcb92fac195f2
  
https://github.com/NixOS/nixpkgs/commit/1e510fd87c792e3228cd7025139dcb92fac195f2
  Author: Tim Steinbach 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/shells/oh-my-zsh/default.nix

  Log Message:
  ---
  oh-my-zsh: 2016-07-05 -> 2016-07-15


  Commit: 45644bd241ec3f45d81cc45b07c18868c4758e21
  
https://github.com/NixOS/nixpkgs/commit/45644bd241ec3f45d81cc45b07c18868c4758e21
  Author: Joachim F 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/shells/oh-my-zsh/default.nix

  Log Message:
  ---
  Merge pull request #17067 from NeQuissimus/ohmyzsh20160715

oh-my-zsh: 2016-07-05 -> 2016-07-15


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


[Nix-commits] [NixOS/nixpkgs] d8516b: youtube-dl: 2016.07.09.2 -> 2016.07.17

2016-07-18 Thread Peter Simons
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d8516b0fe3396f5c18f00a81108957b4a872e737
  
https://github.com/NixOS/nixpkgs/commit/d8516b0fe3396f5c18f00a81108957b4a872e737
  Author: Stephen Whitmore 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  youtube-dl: 2016.07.09.2 -> 2016.07.17


  Commit: 9c48e82b1de47275c251bbbe5fa3dab727691b45
  
https://github.com/NixOS/nixpkgs/commit/9c48e82b1de47275c251bbbe5fa3dab727691b45
  Author: Peter Simons 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17070 from noffle/ytdl

youtube-dl: 2016.07.09.2 -> 2016.07.17


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


Re: [Nix-dev] New user problem with gnutls

2016-07-18 Thread Matthew Robbetts
Hi Vladimír,

> On Jul 17, 2016, at 7:23 AM, Vladimír Čunát  wrote:
> 
> On 07/15/2016 12:13 AM, Matthew Robbetts wrote:
>> Recently, I’ve been hitting the gnutls test error described in
>> https://github.com/NixOS/nixpkgs/pull/16610. However, despite what looks
>> like changes fixing the error having been committed two weeks ago, my
>> nix-channel and nixos-rebuild commands still hit the same problem.
> 
> The unstable channel lags behind git master, as it waits for builds to
> finish on Hydra and it only updates if release-critical tests succeed.
> More info on: http://nixos.org/nixpkgs/manual/#overview-of-nixpkgs 
> 

Oh, it really is just a delay between what’s in the repo and what is published 
to the channel? I guess I’ll just continue waiting, then!

Out of interest, is there any easy way to see which commit the published 
channel is equivalent to?

Thanks a lot,
Matt___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] b18dde: s3cmd: Fix file library path for darwin

2016-07-18 Thread Daniel Peebles
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b18dde4593fcf2789031ca185e4fe7e55670cb55
  
https://github.com/NixOS/nixpkgs/commit/b18dde4593fcf2789031ca185e4fe7e55670cb55
  Author: Johannes Bornhold 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  s3cmd: Fix file library path for darwin


  Commit: e556effc09778077413bbeff9a0fe8f27e793c56
  
https://github.com/NixOS/nixpkgs/commit/e556effc09778077413bbeff9a0fe8f27e793c56
  Author: Daniel Peebles 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17062 from johbo/darwin-s3cmd

s3cmd: Fix file library path for darwin


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


[Nix-commits] [NixOS/nixpkgs] 0ca587: vimPlugins: fix youcompleteme on darwin

2016-07-18 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0ca5879b5a9c28bfe4c2bce1559b94995ee6b5f0
  
https://github.com/NixOS/nixpkgs/commit/0ca5879b5a9c28bfe4c2bce1559b94995ee6b5f0
  Author: Brandon Kase 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/misc/vim-plugins/default.nix
A pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch
A pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch
M pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme

  Log Message:
  ---
  vimPlugins: fix youcompleteme on darwin


  Commit: a8c25d04452b4d2b4c589aaca881191c953a42f2
  
https://github.com/NixOS/nixpkgs/commit/a8c25d04452b4d2b4c589aaca881191c953a42f2
  Author: Daiderd Jordan 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/misc/vim-plugins/default.nix
A pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch
A pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch
M pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme

  Log Message:
  ---
  Merge branch 'pr-16830'


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


[Nix-commits] [NixOS/nixops] 0779d7: Do not lookup security group ids when subnet is no...

2016-07-18 Thread Rob Vermaas
  Branch: refs/heads/release-1.4
  Home:   https://github.com/NixOS/nixops
  Commit: 0779d759eb84b6599a19a2bdb0ff84faa48c2e8e
  
https://github.com/NixOS/nixops/commit/0779d759eb84b6599a19a2bdb0ff84faa48c2e8e
  Author: Rob Vermaas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixops/backends/ec2.py

  Log Message:
  ---
  Do not lookup security group ids when subnet is not set.


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


[Nix-commits] [NixOS/nixops] 5850f6: Revert "Move evaluation for send_keys to Deploymen...

2016-07-18 Thread Rob Vermaas
  Branch: refs/heads/release-1.4
  Home:   https://github.com/NixOS/nixops
  Commit: 5850f6c9671819c53b86e6d8e78a40d353ce1332
  
https://github.com/NixOS/nixops/commit/5850f6c9671819c53b86e6d8e78a40d353ce1332
  Author: Rob Vermaas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixops/backends/__init__.py
M nixops/deployment.py

  Log Message:
  ---
  Revert "Move evaluation for send_keys to Deployment class."

This reverts commit f727d25dc6889e4c34eb99c78cc086423ebaf71c.


  Commit: 2aa0822948f15416717c39d7789fdac6367ce192
  
https://github.com/NixOS/nixops/commit/2aa0822948f15416717c39d7789fdac6367ce192
  Author: Rob Vermaas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M scripts/nixops

  Log Message:
  ---
  Revert "Evaluate when running 'nixops send-keys' to make sure keys are 
updated."

This reverts commit 7e14c4df70e4085a260a162fb481297ec64acd0d.


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


[Nix-commits] [NixOS/nixops] 7e14c4: Evaluate when running 'nixops send-keys' to make s...

2016-07-18 Thread Rob Vermaas
  Branch: refs/heads/release-1.4
  Home:   https://github.com/NixOS/nixops
  Commit: 7e14c4df70e4085a260a162fb481297ec64acd0d
  
https://github.com/NixOS/nixops/commit/7e14c4df70e4085a260a162fb481297ec64acd0d
  Author: Rob Vermaas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M scripts/nixops

  Log Message:
  ---
  Evaluate when running 'nixops send-keys' to make sure keys are updated.


  Commit: f727d25dc6889e4c34eb99c78cc086423ebaf71c
  
https://github.com/NixOS/nixops/commit/f727d25dc6889e4c34eb99c78cc086423ebaf71c
  Author: Rob Vermaas 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixops/backends/__init__.py
M nixops/deployment.py

  Log Message:
  ---
  Move evaluation for send_keys to Deployment class.


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


[Nix-commits] [NixOS/nixpkgs] e90ab7: libinput: Use absolute paths in udev rules.

2016-07-18 Thread Nikolay Amiantov
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e90ab768ce10bca72215de95edaf71cdb5b645ae
  
https://github.com/NixOS/nixpkgs/commit/e90ab768ce10bca72215de95edaf71cdb5b645ae
  Author: Marcus Brinkmann 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/development/libraries/libinput/default.nix
A pkgs/development/libraries/libinput/udev-absolute-path.patch

  Log Message:
  ---
  libinput: Use absolute paths in udev rules.

Closes #17054


  Commit: 6f893694401fa3048eed94c865ed3f0038deac44
  
https://github.com/NixOS/nixpkgs/commit/6f893694401fa3048eed94c865ed3f0038deac44
  Author: Nikolay Amiantov 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  libinput service: add libinput to udev packages

See #17054


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


[Nix-commits] [NixOS/nixops] 51cfd4: Choose system in dev-shell dynamically

2016-07-18 Thread Domen Kožar
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixops
  Commit: 51cfd4e77c5f84c013136678b7ada4d1bd7181c7
  
https://github.com/NixOS/nixops/commit/51cfd4e77c5f84c013136678b7ada4d1bd7181c7
  Author: Tobias Pflug 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M dev-shell

  Log Message:
  ---
  Choose system in dev-shell dynamically


  Commit: ee59cb252258796eb156d003690af2e764867d67
  
https://github.com/NixOS/nixops/commit/ee59cb252258796eb156d003690af2e764867d67
  Author: Domen Kožar 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M dev-shell

  Log Message:
  ---
  Merge pull request #470 from gilligan/dev-shell-osx

Choose system in dev-shell dynamically


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


[Nix-commits] [NixOS/nixpkgs] 88154e: commandergenius: init at 194beta

2016-07-18 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 88154e2877c1f85029894507deb20e51d07069b1
  
https://github.com/NixOS/nixpkgs/commit/88154e2877c1f85029894507deb20e51d07069b1
  Author: Hans-Christian Esperer 
  Date:   2016-07-15 (Fri, 15 Jul 2016)

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

  Log Message:
  ---
  commandergenius: init at 194beta


  Commit: 4cf02e648d91856fe602a249eec09aec3a30
  
https://github.com/NixOS/nixpkgs/commit/4cf02e648d91856fe602a249eec09aec3a30
  Author: zimbatm 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #16948 from hce/add-commander-genius

commandergenius: init at 194beta


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


[Nix-commits] [NixOS/nixpkgs] 406383: vagrant: 1.8.1 -> 1.8.4

2016-07-18 Thread Langston Barrett
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4063834f92c6fa1ce6063c789ed33ba3a3d7b839
  
https://github.com/NixOS/nixpkgs/commit/4063834f92c6fa1ce6063c789ed33ba3a3d7b839
  Author: Langston Barrett 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  vagrant: 1.8.1 -> 1.8.4


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


[Nix-commits] [NixOS/nixpkgs] 4af2bf: Separate fix-point from config importing hacks and...

2016-07-18 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4af2bf66631d187d952b70fba4963e33002d1dcb
  
https://github.com/NixOS/nixpkgs/commit/4af2bf66631d187d952b70fba4963e33002d1dcb
  Author: John Ericson 
  Date:   2016-07-14 (Thu, 14 Jul 2016)

  Changed paths:
M default.nix
M pkgs/top-level/default.nix
A pkgs/top-level/impure.nix

  Log Message:
  ---
  Separate fix-point from config importing hacks and other impurities


  Commit: a95cc91cf2214711b485d02ded9cc8f9b564f66a
  
https://github.com/NixOS/nixpkgs/commit/a95cc91cf2214711b485d02ded9cc8f9b564f66a
  Author: zimbatm 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M default.nix
M pkgs/top-level/default.nix
A pkgs/top-level/impure.nix

  Log Message:
  ---
  Merge pull request #16826 from Ericson2314/impure

Separate fix-point from config importing hacks and other impurities


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


[Nix-commits] [NixOS/nixpkgs] 32744b: disper: repair missing libXrandr and libX11 depend...

2016-07-18 Thread Graham Christensen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 32744b72e5a048fea7250c444e73d2c0b605d50b
  
https://github.com/NixOS/nixpkgs/commit/32744b72e5a048fea7250c444e73d2c0b605d50b
  Author: Graham Christensen 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  disper: repair missing libXrandr and libX11 dependencies


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


[Nix-commits] [NixOS/nixpkgs] a577b3: why3: 0.87.0 -> 0.87.1

2016-07-18 Thread Gabriel Ebner
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a577b3666e2d2d200d74578603d7aaccc88bcdd2
  
https://github.com/NixOS/nixpkgs/commit/a577b3666e2d2d200d74578603d7aaccc88bcdd2
  Author: Vincent Laporte 
  Date:   2016-06-09 (Thu, 09 Jun 2016)

  Changed paths:
M pkgs/applications/science/logic/why3/default.nix

  Log Message:
  ---
  why3: 0.87.0 -> 0.87.1


  Commit: 530a9ab9810b3fb82015f5f0cf56b125c1ba31c3
  
https://github.com/NixOS/nixpkgs/commit/530a9ab9810b3fb82015f5f0cf56b125c1ba31c3
  Author: Gabriel Ebner 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/applications/science/logic/why3/default.nix

  Log Message:
  ---
  Merge remote-tracking branch 'vbgl/why3-0.87.1'


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


Re: [Nix-dev] nix-shell does not work???

2016-07-18 Thread Matthias Beyer
FYI: I just reported this here:

https://github.com/NixOS/nix/issues/976

On 17-07-2016 20:17:16, Matthias Beyer wrote:
> No, $SHLVL indicates that I'm in a new shell, actually.
> 
> On 17-07-2016 19:50:41, Daniel Hlynskyi wrote:
> > Perhaps shell exits too soon. One way to do it explicitly, is adding
> > 
> >[[ -n "$IN_NIX_SHELL" ]] && exit
> > 
> > to the top of your's ~/.bashrc, just like Bjorn said
> > 
> > 2016-07-17 17:45 GMT+03:00 Matthias Beyer :
> > 
> > > I just verified this:
> > >
> > > echo $PATH | sha1sum
> > > a439474de411c2baec5dc5fad9d9c11180c7558b
> > >
> > > nix-shell -p beancount # a program I do not have installed... it
> > > # gets downloaded after I called this...
> > >
> > > echo $PATH | sha1sum
> > > a439474de411c2baec5dc5fad9d9c11180c7558b
> > >
> > > Of course, beancount is not in scope after calling nix-shell.
> > >
> > > This is on:
> > >
> > > * System: 16.09pre85931.125 (Flounder)
> > > * Nix version: nix-env (Nix) 1.11.2
> > > * Nixpkgs version: "16.09pre85931.125"
> > >
> > > Should I submit this to nix/nixpkgs?
> > >
> > > On 11-07-2016 12:58:47, Matthias Beyer wrote:
> > > > Nope, this is on nixos with nixos-unstable channel.
> > > >
> > > > On 11-07-2016 11:53:26, Bjørn Forsman wrote:
> > > > > On Jul 11, 2016 11:26, "Matthias Beyer"  wrote:
> > > > > >
> > > > > > Hi,
> > > > > >
> > > > > > I'm on nixos unstable channel. I just did
> > > > > >
> > > > > > nix-shell -p calcurse
> > > > > >
> > > > > > it gives me a shell (though it keeps my prompt and doesn't override
> > > it
> > > > > > as I would expect with nix-shell)
> > > > > >
> > > > > > and calcurse is not available in the shell.
> > > > > >
> > > > > > Did I just ran into a bug with nix-shell?
> > > > >
> > > > > Is this on non-NixOS? I think I saw something about that in the nix
> > > issue
> > > > > tracker. Some host bashrc file is sourced and breaks nix-shell.
> > > > >
> > > > > - Bjørn
> > > >
> > > > --
> > > > Mit freundlichen Grüßen,
> > > > Kind regards,
> > > > Matthias Beyer
> > > >
> > > > Proudly sent with mutt.
> > > > Happily signed with gnupg.
> > >
> > >
> > >
> > > --
> > > Mit freundlichen Grüßen,
> > > Kind regards,
> > > Matthias Beyer
> > >
> > > Proudly sent with mutt.
> > > Happily signed with gnupg.
> > >
> > > ___
> > > nix-dev mailing list
> > > nix-dev@lists.science.uu.nl
> > > http://lists.science.uu.nl/mailman/listinfo/nix-dev
> > >
> > >
> 
> -- 
> Mit freundlichen Grüßen,
> Kind regards,
> Matthias Beyer
> 
> Proudly sent with mutt.
> Happily signed with gnupg.



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


-- 
Mit freundlichen Grüßen,
Kind regards,
Matthias Beyer

Proudly sent with mutt.
Happily signed with gnupg.


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


[Nix-commits] [NixOS/nixpkgs] a89623: jags: 3.4.0 -> 4.1.0 (#16804)

2016-07-18 Thread Ben Darwin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a89623339654e3ed316308043dbce086fad4d153
  
https://github.com/NixOS/nixpkgs/commit/a89623339654e3ed316308043dbce086fad4d153
  Author: Ben Darwin 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/applications/science/math/jags/default.nix
M pkgs/development/r-modules/default.nix

  Log Message:
  ---
  jags: 3.4.0 -> 4.1.0 (#16804)

* jags: 3.4.0 -> 4.1.0
* unbreak rjags and dependent packages


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


[Nix-commits] [NixOS/nixpkgs] 1df37f: mendeley: fix sha

2016-07-18 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1df37fe7a36dc683cc24d57759147921a7f7
  
https://github.com/NixOS/nixpkgs/commit/1df37fe7a36dc683cc24d57759147921a7f7
  Author: Rahul Gopinath 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

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

  Log Message:
  ---
  mendeley: fix sha


  Commit: 63884c7d10beee319de9ee4a1e9d690c490e129d
  
https://github.com/NixOS/nixpkgs/commit/63884c7d10beee319de9ee4a1e9d690c490e129d
  Author: Robin Gloster 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17049 from vrthra/mendeley

mendeley: fix sha


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


[Nix-commits] [NixOS/nixpkgs] 60232e: vis: 2016-04-15 -> 2016-07-15

2016-07-18 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 60232e6c947e30afd4b367780cba18e4d67790c5
  
https://github.com/NixOS/nixpkgs/commit/60232e6c947e30afd4b367780cba18e4d67790c5
  Author: Ram Kromberg 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  vis: 2016-04-15 -> 2016-07-15


  Commit: 55c74889eb6883c716b9e7f2f5cd6f1896cab999
  
https://github.com/NixOS/nixpkgs/commit/55c74889eb6883c716b9e7f2f5cd6f1896cab999
  Author: Robin Gloster 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  Merge pull request #17051 from RamKromberg/fix/vis

vis: 2016-04-15 -> 2016-07-15


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


Re: [Nix-dev] Hydra

2016-07-18 Thread Tomas Hlavaty
Hi Fare,

"Dev.Rideau.Fare"  writes:
> I'm trying to determine how feasible it would be (with how much work)
> to use Hydra for a CI environment at work (replacing buildbot).

we've been using hydra for about a year now.  Not sure how does it
compare to buildbot but we had no CI before, so it is a huge improvement
for us in any case.

The biggest effort was to write nix expressions for everything we wanted
to build, mainly because I was new to nixos.  Most expressions were
reasonably easy, but some, e.g. oracleXE was a challenge and still have
some issues.  It works for our need and we even got an experienced nixos
contributor to help us with plugging mingw based builds and tests into
hydra too.

There is no official hydra release, which can be rather frustrating.
This is hopefully going to change as there seem to be an effort to
change this.

> * I don't see much documentation. Many links are dead or redirect to
> the wrong thing: the old 2008 paper mentions nixos.org/hydra-scp but
> that doesn't exist. The "instructions available" link to a hydra job
> instead of an actual manual, and trying to manually link on "manual"
> goes to 404.
>

https://github.com/peti/hydra-tutorial should help you

> * How do you specify tests with hydra? When tests are stateful
> (especially integration tests), can it distinguish between tests that
> actually failed, and failure to test due to e.g. timeout trying to
> setup a test server? Can it handle retrying such tests?

Normally, software is split into packages, which are often implemented
as derivations in nix (kind of hash-consing).  These derivations depend
on each other, and when you let hydra test a package and some dependency
fails, it will tell you.  You can also restart failed builds.  You can
also write VM tests, where you write a nix expression, which when run,
creates a nixos VM with all your dependencies, runs your code and tells
you if it works or what fails.  You can also run the test locally in
qemu and poke around, quite easily.

> * Can Hydra drive Nix workers on Windows? on MacOS?

https://hydra.nixos.org/ has some OSX slaves.

Windows is a problem.  As I said above, we test our lisp app using mingw
and wine under nixos.  It is challenging but possible this way.

> * How much work would it be to make the above work, if it doesn't work
> yet?

Depends how much and how obscure software do you have.  You can checkout
, poke around and see some packages,
how they are implemented.  Obscure proprietary dependencies can be a
problem.

Good luck!

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


[Nix-commits] [NixOS/nixpkgs] f976ba: etcd: 2.3.0 -> 2.3.7 (#16896)

2016-07-18 Thread Stefan Junker
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f976ba1b88fc46ed55ded7026855d635a58baa4c
  
https://github.com/NixOS/nixpkgs/commit/f976ba1b88fc46ed55ded7026855d635a58baa4c
  Author: Stefan Junker 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  etcd: 2.3.0 -> 2.3.7 (#16896)


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


[Nix-commits] [NixOS/nixpkgs] 05274e: syncthing: 0.13.9 -> 0.13.10 (#16912)

2016-07-18 Thread kc1212
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 05274e53f8fc84df77ee64e853e73bd925eca819
  
https://github.com/NixOS/nixpkgs/commit/05274e53f8fc84df77ee64e853e73bd925eca819
  Author: kc1212 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  syncthing: 0.13.9 -> 0.13.10 (#16912)


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


[Nix-commits] [NixOS/nixpkgs] 86ad25: nixos stage-1: add custom pre failure dialog comma...

2016-07-18 Thread Nikolay Amiantov
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 86ad25625f7fb6867e515cb09d1da40834f75a9a
  
https://github.com/NixOS/nixpkgs/commit/86ad25625f7fb6867e515cb09d1da40834f75a9a
  Author: Nikolay Amiantov 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixos/modules/system/boot/stage-1-init.sh
M nixos/modules/system/boot/stage-1.nix

  Log Message:
  ---
  nixos stage-1: add custom pre failure dialog commands


  Commit: 9cab592abd816740f263162be31136177d6a3e92
  
https://github.com/NixOS/nixpkgs/commit/9cab592abd816740f263162be31136177d6a3e92
  Author: Nikolay Amiantov 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixos/modules/system/boot/plymouth.nix

  Log Message:
  ---
  plymouth service: style fixes


  Commit: 7513a1d2f5b85d75e1d57bd18feb29a90a2f6f5d
  
https://github.com/NixOS/nixpkgs/commit/7513a1d2f5b85d75e1d57bd18feb29a90a2f6f5d
  Author: Nikolay Amiantov 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixos/modules/system/boot/plymouth.nix

  Log Message:
  ---
  plymouth service: update root fs before stage 2


  Commit: 3d69653d6b698928f225418e4a5e1b4f621b4dbe
  
https://github.com/NixOS/nixpkgs/commit/3d69653d6b698928f225418e4a5e1b4f621b4dbe
  Author: Nikolay Amiantov 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M nixos/modules/system/boot/plymouth.nix

  Log Message:
  ---
  plymouth service: stop splash screen before a failure prompt


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


[Nix-commits] [NixOS/nixpkgs] 36459f: mypy-lang: 0.4.2 -> 0.4.3 (#17058)

2016-07-18 Thread Martin Gammelsæter
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 36459f19777c788ee4bdc0506aba713ff650815e
  
https://github.com/NixOS/nixpkgs/commit/36459f19777c788ee4bdc0506aba713ff650815e
  Author: Martin Gammelsæter 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/development/tools/mypy-lang/default.nix

  Log Message:
  ---
  mypy-lang: 0.4.2 -> 0.4.3 (#17058)


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


[Nix-commits] [NixOS/nixpkgs] 01753f: nixpkgs: update libtomcrypt url

2016-07-18 Thread Wayne Scott
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 01753f247052ba83e4be8df8c8af662ce9993979
  
https://github.com/NixOS/nixpkgs/commit/01753f247052ba83e4be8df8c8af662ce9993979
  Author: Wayne Scott 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  nixpkgs: update libtomcrypt url

Signed-off-by: Austin Seipp 


  Commit: a05e51d17aa75bde7038035606d2f9a33476271a
  
https://github.com/NixOS/nixpkgs/commit/a05e51d17aa75bde7038035606d2f9a33476271a
  Author: Wayne Scott 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

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

  Log Message:
  ---
  nixpkgs: libtommath 0.39 -> 1.0

Signed-off-by: Austin Seipp 


  Commit: af056de900b82d7406925df13af9c87f3e4c49ae
  
https://github.com/NixOS/nixpkgs/commit/af056de900b82d7406925df13af9c87f3e4c49ae
  Author: Wayne Scott 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
A pkgs/applications/version-management/bitkeeper/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  nixpkgs: add bitkeeper-7.3ce

Closes #16928.

Signed-off-by: Austin Seipp 


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


[Nix-dev] Hydra

2016-07-18 Thread Dev.Rideau.Fare
Dear NixOS developers,


I'm trying to determine how feasible it would be (with how much work) to use 
Hydra for a CI environment at work (replacing buildbot).


* I don't see much documentation. Many links are dead or redirect to the wrong 
thing: the old 2008 paper mentions nixos.org/hydra-scp but that doesn't exist. 
The "instructions available" link to a hydra job instead of an actual manual, 
and trying to manually link on "manual" goes to 404.


* How do you specify tests with hydra? When tests are stateful (especially 
integration tests), can it distinguish between tests that actually failed, and 
failure to test due to e.g. timeout trying to setup a test server? Can it 
handle retrying such tests?


* Can Hydra drive Nix workers on Windows? on MacOS?


* How much work would it be to make the above work, if it doesn't work yet?


-#f

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


[Nix-commits] [NixOS/nixpkgs] d7cfdc: coq: 8.5pl1 -> 8.5pl2 (#16863)

2016-07-18 Thread vbgl
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5
  
https://github.com/NixOS/nixpkgs/commit/d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5
  Author: vbgl 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/applications/science/logic/coq/8.5.nix

  Log Message:
  ---
  coq: 8.5pl1 -> 8.5pl2 (#16863)


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


[Nix-commits] [NixOS/nixpkgs] a93c6b: sbcl: 1.3.6 -> 1.3.7

2016-07-18 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a93c6b628d5a318899733a3734d173645e15ae90
  
https://github.com/NixOS/nixpkgs/commit/a93c6b628d5a318899733a3734d173645e15ae90
  Author: Tomas Hlavaty 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/development/compilers/sbcl/default.nix

  Log Message:
  ---
  sbcl: 1.3.6 -> 1.3.7


  Commit: d45802973fa3281fdf10c6dafa9b6889b64b5b2f
  
https://github.com/NixOS/nixpkgs/commit/d45802973fa3281fdf10c6dafa9b6889b64b5b2f
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/development/compilers/sbcl/default.nix

  Log Message:
  ---
  Merge pull request #17050 from tohl/master

sbcl: 1.3.6 -> 1.3.7


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


[Nix-commits] [NixOS/nixpkgs] b5cfb7: evolution: 3.20.2 -> 3.20.4

2016-07-18 Thread Damien Cassou
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b5cfb7b0012f97cbd2dd6333b611bbda4473995e
  
https://github.com/NixOS/nixpkgs/commit/b5cfb7b0012f97cbd2dd6333b611bbda4473995e
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix

  Log Message:
  ---
  evolution: 3.20.2 -> 3.20.4


  Commit: e14181ab17098d8c57fb89e795ffcab48d4e0978
  
https://github.com/NixOS/nixpkgs/commit/e14181ab17098d8c57fb89e795ffcab48d4e0978
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix

  Log Message:
  ---
  evolution-data-server: 3.20.2 -> 3.20.4


  Commit: 20f2e6e75b6a8b4b22ec7a8bc061fb8ab4d499e8
  
https://github.com/NixOS/nixpkgs/commit/20f2e6e75b6a8b4b22ec7a8bc061fb8ab4d499e8
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix

  Log Message:
  ---
  gnome-online-accounts: 3.20.1 -> 3.20.2


  Commit: 975851d9b13abc0d222c69fabea0a7943856f703
  
https://github.com/NixOS/nixpkgs/commit/975851d9b13abc0d222c69fabea0a7943856f703
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix

  Log Message:
  ---
  gnome-session: 3.20.1 -> 3.20.2


  Commit: 0ee1b5eb5bf44a8559ab6313070ccf42431f41ed
  
https://github.com/NixOS/nixpkgs/commit/0ee1b5eb5bf44a8559ab6313070ccf42431f41ed
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix

  Log Message:
  ---
  gnome-sudoku: 3.20.2 -> 3.20.4


  Commit: b9db4405169e07215d5466cda64ceea9eeb5ae44
  
https://github.com/NixOS/nixpkgs/commit/b9db4405169e07215d5466cda64ceea9eeb5ae44
  Author: Damien Cassou 
  Date:   2016-07-17 (Sun, 17 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix

  Log Message:
  ---
  gspell: 1.0.0 -> 1.0.3


  Commit: d90809aba0348352a0db594bc22d0e170b6afbb1
  
https://github.com/NixOS/nixpkgs/commit/d90809aba0348352a0db594bc22d0e170b6afbb1
  Author: Damien Cassou 
  Date:   2016-07-18 (Mon, 18 Jul 2016)

  Changed paths:
M pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix
M pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix
M pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix
M pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix
M pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix
M pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix

  Log Message:
  ---
  Merge pull request #17030 from DamienCassou/update-some-gnome-packages

Update some gnome packages


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