Re: [Nix-dev] git in nix is broken...

2017-07-10 Thread Vladimír Čunát via nix-dev
On 07/10/2017 11:06 PM, Dmitry Kalinkin via nix-dev wrote:
> Same can be achieved with makeWrapper
> (http://nixos.org/nixpkgs/manual/#ssec-stdenv-functions)
> Also, there is propagatedBuildInputs, but it is limited to Nix build
> environment.

For completeness, propagatedUserEnvPkgs extends that to user/system envs
(docs seem to be missing), though in most cases I personally prefer when
things are runnable from the nix store directly.

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


Re: [Nix-dev] Debugging Hydra failures without a log

2017-07-10 Thread Vladimír Čunát via nix-dev
On 07/10/2017 10:52 PM, Sergiu Ivanov wrote:
>> It didn't?  I see an evaluation a few days after that did succeed:
>> https://hydra.nixos.org/job/nixpkgs/release-17.03/bibtex2html.i686-linux
> 
> Oh, cool, thanks a lot!
> 
> Hydra didn't send me an "it works" notification this time and I didn't
> manage to find the page you gave me a link to.  Now I've finally found
> where to click, thanks a lot!  (Note to myself: it's in the Job menu at
> the top of the page.)

Sometimes I also see "holes" in the maintainer notifications, I don't
know why.  I think it can even happen the other way for transient
problems, getting only another "Success" notification without getting
the "(Dependency) failed" one.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Debugging Hydra failures without a log

2017-07-10 Thread Vladimír Čunát via nix-dev
On 07/10/2017 06:47 PM, Sergiu Ivanov via nix-dev wrote:
> Hydra told me the package bibtex2html which I maintain got broken:
> 
>   https://hydra.nixos.org/build/55099626
> 
> I waited for a couple weeks hoping the issue will fix itself, but
> apparently it didn't.  [...]

It didn't?  I see an evaluation a few days after that did succeed:
https://hydra.nixos.org/job/nixpkgs/release-17.03/bibtex2html.i686-linux

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


Re: [Nix-dev] re2c fix build

2017-07-09 Thread Vladimír Čunát via nix-dev
On 07/09/2017 03:34 AM, Karn Kallio via nix-dev wrote:
> The attached patch fixes the build of the re2c Nixpkgs expression by
> adjusting the sourceRoot to account for the unpackFile treatment of a
> directory.

Note: I had to "undo" that anyway in 3a891c67fc87, as the change was
caused by commits that I didn't manage to fixup before they reached master.

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


Re: [Nix-dev] error: cannot auto-call a function that has an argument without a default value (‘stdenv’)

2017-07-06 Thread Vladimír Čunát via nix-dev
On 07/06/2017 05:54 PM, tj5527 via nix-dev wrote:
> Following the example
> at http://nixos.org/nix/manual/#chap-writing-nix-expressions to build
> hello package. But `nix-build -A hello` throws error "error: cannot
> auto-call a function that has an argument without a default value
> (‘stdenv’)"
> 
> How can I fix this problem?

Well, apparently you try to evaluate a standalone file that specifies a
function but you don't specify how to fill its parameters.  It should be
explained in the following section
http://nixos.org/nix/manual/#sec-arguments

That's how it's commonly done in nixpkgs.  If you want a *separate*
expression that depends on nixpkgs, you may e.g. start by adding this
line to the beginning of the file:
with import  {};
instead of
{ stdenv, something1, something2, ... }:

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


Re: [Nix-dev] unequal build hash

2017-07-06 Thread Vladimír Čunát via nix-dev
On 07/06/2017 07:35 PM, Harmen via nix-dev wrote:
> Does that makes sense? Did I forget a 'name' somewhere?

When you use things like
  src = ./.;
the directory gets copied into nix store and the resulting path's name
is based on the name of the directory.

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


Re: [Nix-dev] Using system.autoUpgrade with a git channel

2017-07-06 Thread Vladimír Čunát via nix-dev
On 07/07/2017 01:46 AM, John Ramsden via nix-dev wrote:
> I was also wondering what exactly the 'nixos-rebuild switch' command's
> '--upgrade' flag does.

It does
$ nix-channel --update nixos
Best see the source if you want details, as it's relatively simple:
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/tools/nixos-rebuild.sh#L197

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


[Nix-commits] [NixOS/nixpkgs] f10940: postfix: Add optional LDAP support

2017-07-05 Thread Vladimír Čunát via nix-commits
---
  Sys::CPU: Try to fix Darwin build.


  Commit: 07176ed6f14c606b1f724dd05157fa187c7fdf50
  
https://github.com/NixOS/nixpkgs/commit/07176ed6f14c606b1f724dd05157fa187c7fdf50
  Author: Eelco Dolstra 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
R pkgs/development/compilers/gcc/6/darwin-const-correct.patch
M pkgs/development/compilers/gcc/6/default.nix

  Log Message:
  ---
  gcc: 6.3.0 -> 6.4.0


  Commit: 0ec4394ee7d7ad0e3215c9a9f2c83cdcb9718a94
  
https://github.com/NixOS/nixpkgs/commit/0ec4394ee7d7ad0e3215c9a9f2c83cdcb9718a94
  Author: Vladimír Čunát 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/tools/filesystems/ntfs-3g/default.nix

  Log Message:
  ---
  ntfs3g: change package name

It was being parsed incorrectly, as noted on
https://github.com/NixOS/nix/issues/1440
nix-repl> builtins.parseDrvName ntfs3g.name
{ name = "ntfs"; version = "3g-2017.3.23"; }


  Commit: 8acde59fa5881dfa676761fc57241d5b6de48b18
  
https://github.com/NixOS/nixpkgs/commit/8acde59fa5881dfa676761fc57241d5b6de48b18
  Author: bugworm 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
A pkgs/data/icons/papirus-icon-theme/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  papirus-icon-theme: init at 20170616

fixes #27115


  Commit: 756dce19a122a3d87f4511ee7dce435873da76eb
  
https://github.com/NixOS/nixpkgs/commit/756dce19a122a3d87f4511ee7dce435873da76eb
  Author: Jörg Thalheim 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

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

  Log Message:
  ---
  Merge pull request #27118 from dtzWill/fix/sys-cpu-darwin

WIP: Sys::CPU: Try to fix Darwin build.


  Commit: 240b632026e6a76cf5d84146c80d5f07c22b1f2d
  
https://github.com/NixOS/nixpkgs/commit/240b632026e6a76cf5d84146c80d5f07c22b1f2d
  Author: Emanuele Peruffo 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
A pkgs/desktops/gnome-3/extensions/topicons-plus/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  gnomeExtensions.topicons-plus: init at v20 (#27116)

TopIcons extension for Gnome 3


  Commit: f873ba8cc8bb69b57913f2468f0dd78ddbeb427d
  
https://github.com/NixOS/nixpkgs/commit/f873ba8cc8bb69b57913f2468f0dd78ddbeb427d
  Author: Jörg Thalheim 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/development/compilers/haxe/default.nix
R pkgs/development/compilers/haxe/hxcpp.nix
M pkgs/development/compilers/haxe/setup-hook.sh
M pkgs/development/compilers/neko/default.nix
M pkgs/top-level/all-packages.nix
A pkgs/top-level/haxe-packages.nix

  Log Message:
  ---
  Merge pull request #27101 from volth/haxe-essentials

haxe: fix hxcpp, introduce haxePackage with hxjava and hxcs


  Commit: 12ee0fbd8883cb5a17b499c42c8d6cdf602d1640
  
https://github.com/NixOS/nixpkgs/commit/12ee0fbd8883cb5a17b499c42c8d6cdf602d1640
  Author: aszlig 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/applications/virtualization/virtualbox/default.nix
M pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
A pkgs/applications/virtualization/virtualbox/linux-4.12.patch

  Log Message:
  ---
  virtualbox: Add patch for Linux 4.12

Compiling the kernel modules on Linux 4.12 fails, so I've included an
upstream patch from:

https://www.virtualbox.org/changeset/66927/vbox

The patch is applied against the guest additions as well, where we need
to transform the patch a bit so that we get CR LF line endings (DOS
format), which is what is the case for the guest additions ISO.

I've tested this with all the subtests of the "virtualbox" NixOS VM
tests and they all succeed on x86_64-linux.

Signed-off-by: aszlig 


  Commit: ad294794570bf8ea84284a8e0c06b5642eb2d8e2
  
https://github.com/NixOS/nixpkgs/commit/ad294794570bf8ea84284a8e0c06b5642eb2d8e2
  Author: Will Dietz 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/tools/security/jd-gui/default.nix

  Log Message:
  ---
  jd-gui: Fix interpreter, add many missing deps, un-upx.


  Commit: da7f680bca543fdd30b2d28d85ef05d2e8354766
  
https://github.com/NixOS/nixpkgs/commit/da7f680bca543fdd30b2d28d85ef05d2e8354766
  Author: dywedir 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

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

  Log Message:
  ---
  tlp: 0.9 -> 1.0


  Commit: 535a6c3520c3e34c5d74008764d12165650ec4d4
  
https://github.com/NixOS/nixpkgs/commit/535a6c3520c3e34c5d74008764d12165650ec4d4
  Author: Volth 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/build-support/fetchgit/default.nix
A pkgs/build-support/fetchgit/gitrepotoname.nix
M pkgs/build-support/fetchgit/nix-prefetch-git
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  fetchFromGitHub: fix fetchSubmodules=true when revisi

[Nix-commits] [NixOS/nixpkgs] 111b5e: groff: Add site.tmac to fix man page coloring

2017-07-05 Thread Vladimír Čunát via nix-commits
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 111b5eb6377839b9518ea40fba6a71f121574ea1
  
https://github.com/NixOS/nixpkgs/commit/111b5eb6377839b9518ea40fba6a71f121574ea1
  Author: Aneesh Agrawal 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/text/groff/default.nix
A pkgs/tools/text/groff/site.tmac

  Log Message:
  ---
  groff: Add site.tmac to fix man page coloring

This enables groff to correctly respond to the LESS_TERMCAP_*
environment variables, allowing colorized man pages.

Patch is taken from Arch Linux;
see https://bugs.archlinux.org/task/33760.


  Commit: 7b7eb577a2220e6c745adbea0b0973c8a1b7d0a3
  
https://github.com/NixOS/nixpkgs/commit/7b7eb577a2220e6c745adbea0b0973c8a1b7d0a3
  Author: Vladimír Čunát 
  Date:   2017-07-05 (Wed, 05 Jul 2017)

  Changed paths:
M pkgs/tools/text/groff/default.nix
A pkgs/tools/text/groff/site.tmac

  Log Message:
  ---
  Merge #27061: groff: fix man page coloring


  Commit: 1db1ba9048483005ea86709cb33f23a946a990b5
  
https://github.com/NixOS/nixpkgs/commit/1db1ba9048483005ea86709cb33f23a946a990b5
  Author: Vladimír Čunát 
  Date:   2017-07-05 (Wed, 05 Jul 2017)

  Changed paths:
M pkgs/tools/text/groff/default.nix

  Log Message:
  ---
  groff: (nitpick) quote shell variables


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


[Nix-commits] [NixOS/nixpkgs] febadb: gnutls: bugfix 3.5.13 -> 3.5.14

2017-07-05 Thread Vladimír Čunát via nix-commits
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: febadbce3f5f5015f133d04e9476634c988a19b0
  
https://github.com/NixOS/nixpkgs/commit/febadbce3f5f5015f133d04e9476634c988a19b0
  Author: Vladimír Čunát 
  Date:   2017-07-05 (Wed, 05 Jul 2017)

  Changed paths:
M pkgs/development/libraries/gnutls/3.5.nix

  Log Message:
  ---
  gnutls: bugfix 3.5.13 -> 3.5.14


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


[Nix-commits] [NixOS/nixpkgs] 495a02: llvmPackages_4: 4.0.0 -> 4.0.1

2017-07-05 Thread Vladimír Čunát via nix-commits
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 495a022e440d1eb0cc17008da9d4ce516dcf82a5
  
https://github.com/NixOS/nixpkgs/commit/495a022e440d1eb0cc17008da9d4ce516dcf82a5
  Author: Will Dietz 
  Date:   2017-06-27 (Tue, 27 Jun 2017)

  Changed paths:
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/default.nix
M pkgs/development/compilers/llvm/4/libc++/default.nix
M pkgs/development/compilers/llvm/4/libc++abi.nix
M pkgs/development/compilers/llvm/4/lld.nix
M pkgs/development/compilers/llvm/4/lldb.nix
M pkgs/development/compilers/llvm/4/llvm.nix
M pkgs/development/compilers/llvm/4/openmp.nix

  Log Message:
  ---
  llvmPackages_4: 4.0.0 -> 4.0.1


  Commit: f171b95e446cd4ee5f3d2e758dce8237a9e9c5bc
  
https://github.com/NixOS/nixpkgs/commit/f171b95e446cd4ee5f3d2e758dce8237a9e9c5bc
  Author: Vladimír Čunát 
  Date:   2017-07-05 (Wed, 05 Jul 2017)

  Changed paths:
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/default.nix
M pkgs/development/compilers/llvm/4/libc++/default.nix
M pkgs/development/compilers/llvm/4/libc++abi.nix
M pkgs/development/compilers/llvm/4/lld.nix
M pkgs/development/compilers/llvm/4/lldb.nix
M pkgs/development/compilers/llvm/4/llvm.nix
M pkgs/development/compilers/llvm/4/openmp.nix

  Log Message:
  ---
  Merge #26905: llvmPackages_4: 4.0.0 -> 4.0.1


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


[Nix-commits] [NixOS/nixpkgs] 0ec439: ntfs3g: change package name

2017-07-04 Thread Vladimír Čunát via nix-commits
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0ec4394ee7d7ad0e3215c9a9f2c83cdcb9718a94
  
https://github.com/NixOS/nixpkgs/commit/0ec4394ee7d7ad0e3215c9a9f2c83cdcb9718a94
  Author: Vladimír Čunát 
  Date:   2017-07-04 (Tue, 04 Jul 2017)

  Changed paths:
M pkgs/tools/filesystems/ntfs-3g/default.nix

  Log Message:
  ---
  ntfs3g: change package name

It was being parsed incorrectly, as noted on
https://github.com/NixOS/nix/issues/1440
nix-repl> builtins.parseDrvName ntfs3g.name
{ name = "ntfs"; version = "3g-2017.3.23"; }


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


[Nix-commits] [NixOS/nixpkgs] 72c9ed: Merge #26628: treewide: setuid/setgid fallout

2017-07-03 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 72c9ed78d0b1d9d5f531805ddf5bf06bfd447614
  
https://github.com/NixOS/nixpkgs/commit/72c9ed78d0b1d9d5f531805ddf5bf06bfd447614
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/applications/misc/udevil/default.nix
M pkgs/games/unnethack/default.nix
M pkgs/games/xconq/default.nix
M pkgs/games/xsokoban/default.nix
M pkgs/servers/computing/torque/default.nix
M pkgs/servers/http/hiawatha/default.nix
M pkgs/shells/rssh/default.nix
M pkgs/tools/misc/uucp/default.nix
M pkgs/tools/security/logkeys/default.nix
M pkgs/tools/security/sudo/default.nix
M pkgs/tools/security/super/default.nix
M pkgs/tools/system/logcheck/default.nix

  Log Message:
  ---
  Merge #26628: treewide: setuid/setgid fallout

(cherry picked from commit d88c0cf8678c7accbd95010bb20ea0812a48bac5)
There were just a couple of conflicts, apparently someone has already
fixed rewritefs and cron on 17.03.
I re-checked that all those do build now (with a new-enough nix daemon).


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


[Nix-commits] [NixOS/nixpkgs] c73f0c: mesa: maintenance 17.1.2 -> 17.1.4

2017-07-03 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c73f0caea5f0822ea044b4f90de4b64706d91362
  
https://github.com/NixOS/nixpkgs/commit/c73f0caea5f0822ea044b4f90de4b64706d91362
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

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

  Log Message:
  ---
  mesa: maintenance 17.1.2 -> 17.1.4

The announcement seems safe, as usual.

Hydra's Darwin machines will be busy for quite some time on staging,
so let me squeeze this, as it will only be mass rebuild on *-linux.


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


[Nix-commits] [NixOS/nixpkgs] 37f0aa: releaseTools: add channel function

2017-07-03 Thread Vladimír Čunát
ithub.com/NixOS/nixpkgs/commit/7d8adcab3832cafdbd2f27ab70a27953a0a484b6
  Author: Peter Simons 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml

  Log Message:
  ---
  LTS Haskell 8.21


  Commit: be23568daac69331f1f78b9c20b780f575ed2acd
  
https://github.com/NixOS/nixpkgs/commit/be23568daac69331f1f78b9c20b780f575ed2acd
  Author: RFish ⚓ 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml

  Log Message:
  ---
  hackage2nix: use older version of apply-refact with ghc-8.0.x

Version 0.4 of apply-refact doesn't compile with GHC 8.0.x. This patch
updates configurations-ghc-8.0.x to use apply-refact version 0.3.0.1.

Closes https://github.com/NixOS/nixpkgs/pull/26896.
Fixes https://github.com/NixOS/nixpkgs/issues/26895.


  Commit: 641bd6e0ca00460a1243831b42f1d06bab2d67b1
  
https://github.com/NixOS/nixpkgs/commit/641bd6e0ca00460a1243831b42f1d06bab2d67b1
  Author: Peter Simons 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  hackage-packages.nix: automatic Haskell package set update

This update was generated by hackage2nix v2.2.1-13-g5c18fb5 from Hackage 
revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/b275173e921ad083e3cbd9a448b03df9748ec7b1.


  Commit: 2e78ca284e8e10ead2108a22e07b6801c71fd070
  
https://github.com/NixOS/nixpkgs/commit/2e78ca284e8e10ead2108a22e07b6801c71fd070
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  mcabber: 1.0.5 -> 1.1.0


  Commit: fa92dd8cfc52ffa0c70e394abe2e7e8409372cb3
  
https://github.com/NixOS/nixpkgs/commit/fa92dd8cfc52ffa0c70e394abe2e7e8409372cb3
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  nzbget: 18.1 -> 19.0


  Commit: cdf0c53ac77b7accf4fc9bda2914d405cce17aae
  
https://github.com/NixOS/nixpkgs/commit/cdf0c53ac77b7accf4fc9bda2914d405cce17aae
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/yodl/default.nix

  Log Message:
  ---
  yodl: 3.08.02 -> 4.01.00


  Commit: 1420b20f08666e79efbe81c0c0728f869b643812
  
https://github.com/NixOS/nixpkgs/commit/1420b20f08666e79efbe81c0c0728f869b643812
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  radicale: 1.1.2 -> 1.1.4


  Commit: e071756043bab71432b800af0dd55805b80b0b76
  
https://github.com/NixOS/nixpkgs/commit/e071756043bab71432b800af0dd55805b80b0b76
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  spin: 6.4.5 -> 6.4.6


  Commit: c4d59d886d3cfa4be8c908e77c1ce0fe23ed1312
  
https://github.com/NixOS/nixpkgs/commit/c4d59d886d3cfa4be8c908e77c1ce0fe23ed1312
  Author: tjikini 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/data/fonts/emacs-all-the-icons-fonts/default.nix

  Log Message:
  ---
  emacs-all-the-icons-fonts: 2.50 -> 2.6.4


  Commit: 9c05499de972ba3d990002cbdf2530d3b273a836
  
https://github.com/NixOS/nixpkgs/commit/9c05499de972ba3d990002cbdf2530d3b273a836
  Author: Frederik Rietdijk 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/libraries/gdal/default.nix
A pkgs/tools/misc/hdf4/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #26039 from knedlsepp/add-gdal-hdf4-support

gdal: Add hdf4 support


  Commit: 81e46dbb29c0218e057df151e6377bf59b98db13
  
https://github.com/NixOS/nixpkgs/commit/81e46dbb29c0218e057df151e6377bf59b98db13
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/default.nix

  Log Message:
  ---
  texlive: wrap scripts by older perl

Fixes #26890.


  Commit: 1551975e64fca2c6975b87cf0b05431a123df6f0
  
https://github.com/NixOS/nixpkgs/commit/1551975e64fca2c6975b87cf0b05431a123df6f0
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
M pkgs/top-level/ocaml-packages.nix

  Log Message:
  ---
  ocamlPackages.ocp-ocamlres: init at 0.3

A tool ocp-ocamlres to embed files and directories inside OCaml executables,
with a companion library ocplib-ocamlres to manipulate them at run-time.

Homepage: https://www.typerex.org/ocp-

[Nix-commits] [NixOS/nixpkgs] cb9fe8: Mariadb: Fix URL for source tarball.

2017-07-02 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cb9fe8ceadbf9149f506574095ef3645d6b36909
  
https://github.com/NixOS/nixpkgs/commit/cb9fe8ceadbf9149f506574095ef3645d6b36909
  Author: Sebastian Hagen 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/servers/sql/mariadb/default.nix

  Log Message:
  ---
  Mariadb: Fix URL for source tarball.

mariadb.org appears to have changed their URL schemes, and the tarball URL used
by this derivation no longer works, which makes this unbuildable from scratch.

This change updates that URL to a mariadb.org location that will still serve
this tarball.

Hash is unchanged.


  Commit: cc83f351188610a06ce2539f42bc3c6cb5902ad2
  
https://github.com/NixOS/nixpkgs/commit/cc83f351188610a06ce2539f42bc3c6cb5902ad2
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/servers/sql/mariadb/default.nix

  Log Message:
  ---
  Merge #27076: mariadb: fix URL for source tarball

Not even all their mirrors serve our version, unfortunately.


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


[Nix-commits] [NixOS/nixpkgs] 659046: Merge #27076: mariadb: fix URL for source tarball

2017-07-02 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 65904657b5d613bc1cc827aa2bb8df5c88150fea
  
https://github.com/NixOS/nixpkgs/commit/65904657b5d613bc1cc827aa2bb8df5c88150fea
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/servers/sql/mariadb/default.nix

  Log Message:
  ---
  Merge #27076: mariadb: fix URL for source tarball

Not even all their mirrors serve our version, unfortunately.

(cherry picked from commit cc83f351188610a06ce2539f42bc3c6cb5902ad2)


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


[Nix-commits] [NixOS/nixpkgs] 8ad1e6: Merge #27075: p7zip: Update CVE-2016-9296 patch UR...

2017-07-02 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8ad1e63e79cd60a20b89ec99dd4797f4ffa0f6df
  
https://github.com/NixOS/nixpkgs/commit/8ad1e63e79cd60a20b89ec99dd4797f4ffa0f6df
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/tools/archivers/p7zip/default.nix

  Log Message:
  ---
  Merge #27075: p7zip: Update CVE-2016-9296 patch URL

(cherry picked from commit 1f0de2dce26b6bcfd5f9d49365b15dbcab4ae723)


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


[Nix-commits] [NixOS/nixpkgs] 674e46: p7zip: Update CVE-2016-9296 patch URL.

2017-07-02 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 674e46d643a46eda2079b7cc387f3f34da796831
  
https://github.com/NixOS/nixpkgs/commit/674e46d643a46eda2079b7cc387f3f34da796831
  Author: es_github 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/tools/archivers/p7zip/default.nix

  Log Message:
  ---
  p7zip: Update CVE-2016-9296 patch URL.

The debian source for this patch file has gone away, rendering this derivation
unbuildable from scratch.
This change updates the URL to a src.fedoraproject.org location that is still
serving a p7zip patch. This file is not the same bytewise, so I'm also updating
the hash; I didn't manage to find a location still serving a file with the
original hash, and my best guess is that this one is functionally equivalent.


  Commit: 6cad339a0eb0d052c8f5e4a88ce89c49792feee5
  
https://github.com/NixOS/nixpkgs/commit/6cad339a0eb0d052c8f5e4a88ce89c49792feee5
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/tools/archivers/p7zip/default.nix

  Log Message:
  ---
  p7zip: add commit ID to the patch

We still do mirror the patch (I think), as `nix-build -Q -A p7zip.patches`
downloaded it on my machine.  I verified that only the diff headers differ;
it's still better to have another working download and Fedora's URLs are
less likely to disappear than Debian's.
/cc #27075.


  Commit: 1f0de2dce26b6bcfd5f9d49365b15dbcab4ae723
  
https://github.com/NixOS/nixpkgs/commit/1f0de2dce26b6bcfd5f9d49365b15dbcab4ae723
  Author: Vladimír Čunát 
  Date:   2017-07-03 (Mon, 03 Jul 2017)

  Changed paths:
M pkgs/tools/archivers/p7zip/default.nix

  Log Message:
  ---
  Merge #27075: p7zip: Update CVE-2016-9296 patch URL


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


[Nix-commits] [NixOS/nixpkgs] 057f89: lib/maintainers: add zxc24 to fix evaluation

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 057f89b9344e5341796046f25ae4f269be6d4529
  
https://github.com/NixOS/nixpkgs/commit/057f89b9344e5341796046f25ae4f269be6d4529
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M lib/maintainers.nix

  Log Message:
  ---
  lib/maintainers: add zxc24 to fix evaluation

Broken by 03a00c39d.


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


[Nix-commits] [NixOS/nixpkgs] 0476a0: texlive.combine: fix perl scripts without a sheban...

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0476a064151c8f45c0bb408897b058ca22008d2a
  
https://github.com/NixOS/nixpkgs/commit/0476a064151c8f45c0bb408897b058ca22008d2a
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/combine.nix

  Log Message:
  ---
  texlive.combine: fix perl scripts without a shebang

Fixes #24343.  These parts of upstream texlive are really ugly.
Also improve variable quoting in the code around.

(cherry picked from commit 82b67204c13331beba2299a47eb3a49b1682)
The change seems safe enough.


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


[Nix-commits] [NixOS/nixpkgs] 8dddd2: texlive.combine: fix perl scripts without a sheban...

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 82b67204c13331beba2299a47eb3a49b1682
  
https://github.com/NixOS/nixpkgs/commit/82b67204c13331beba2299a47eb3a49b1682
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/combine.nix

  Log Message:
  ---
  texlive.combine: fix perl scripts without a shebang

Fixes #24343.  These parts of upstream texlive are really ugly.
Also improve variable quoting in the code around.


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


[Nix-commits] [NixOS/nixpkgs] 81e46d: texlive: wrap scripts by older perl

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 81e46dbb29c0218e057df151e6377bf59b98db13
  
https://github.com/NixOS/nixpkgs/commit/81e46dbb29c0218e057df151e6377bf59b98db13
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/default.nix

  Log Message:
  ---
  texlive: wrap scripts by older perl

Fixes #26890.


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


[Nix-commits] [NixOS/nixpkgs] 2014db: nixos xkb-layouts-exist: try to debug on Hydra

2017-06-28 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2014db3efcd2a50507494ae55eb02c96dc4f4ea3
  
https://github.com/NixOS/nixpkgs/commit/2014db3efcd2a50507494ae55eb02c96dc4f4ea3
  Author: Vladimír Čunát 
  Date:   2017-06-28 (Wed, 28 Jun 2017)

  Changed paths:
M nixos/modules/services/x11/xserver.nix

  Log Message:
  ---
  nixos xkb-layouts-exist: try to debug on Hydra

I hate having to do this.  We're unable to reproduce the problem locally.


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


[Nix-commits] [NixOS/nixpkgs] b90bab: libopus: 1.2 -> 1.2.1

2017-06-28 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b90bab7d58e755de953e0355cadb3ab4cf5ad590
  
https://github.com/NixOS/nixpkgs/commit/b90bab7d58e755de953e0355cadb3ab4cf5ad590
  Author: Martin Wohlert 
  Date:   2017-06-28 (Wed, 28 Jun 2017)

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

  Log Message:
  ---
  libopus: 1.2 -> 1.2.1

> http://opus-codec.org/release/stable/2017/06/26/libopus-1_2_1.html

This Opus 1.2.1 minor release fixes a relatively rare issue where the 1.2 
encoder would wrongly assume a signal to be bandlimited to 12 kHz and not 
encode frequencies between 12 and 20 kHz.
This only happens on a few clips, but it is good to update to avoid a potential 
loss of quality.

There are no other changes compared to 1.2.


  Commit: 46a44627829c58a36ca7628205c374ce63ef3839
  
https://github.com/NixOS/nixpkgs/commit/46a44627829c58a36ca7628205c374ce63ef3839
  Author: Vladimír Čunát 
  Date:   2017-06-28 (Wed, 28 Jun 2017)

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

  Log Message:
  ---
  Merge #26927: libopus: bugfix 1.2 -> 1.2.1


Compare: https://github.com/NixOS/nixpkgs/compare/855c1bde4285...46a44627829c___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] ce8178: qtinstaller: fix broken meta

2017-06-26 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ce8178ed931a0f6036a8a71919fd67b0a103e687
  
https://github.com/NixOS/nixpkgs/commit/ce8178ed931a0f6036a8a71919fd67b0a103e687
  Author: Vladimír Čunát 
  Date:   2017-06-26 (Mon, 26 Jun 2017)

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

  Log Message:
  ---
  qtinstaller: fix broken meta

The invalid meta.outputsToInstall has been blocking channel updates.
https://mailman.science.uu.nl/pipermail/nix-dev/2017-June/023991.html


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


Re: [Nix-dev] nixos-unstable-small channel is not updating anymore

2017-06-26 Thread Vladimír Čunát
On 06/26/2017 07:22 PM, Eelco Dolstra wrote:
> Jun 26 17:12:49 webserver update-nixos-unstable-small-start[13607]:
> error: in package ‘libsForQt5.qtinstaller’: this derivation has bad
> ‘meta.outputsToInstall’

Right, this particular error is fixed by ce8178ed931a.  Is it possible
to make such errors visible somewhere, e.g. on Hydra?

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


[Nix-dev] nixos-unstable-small channel is not updating anymore

2017-06-26 Thread Vladimír Čunát
Hi.
That channel hasn't updated for over a week now and it's unclear why, as
all the jobs succeeded on most evaluations during the past week.

--Vladimir


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


Re: [Nix-dev] Setup hook evaluation order

2017-06-24 Thread Vladimír Čunát
On 06/22/2017 01:05 PM, Thomas Tuegel wrote:
> How can I make my setup hook be evaluated after multiple-outputs.sh is loaded?

Immediate idea, maybe there's a better way: make the envHook just extend
prePhases by a function that does the actual work.  That should get run
after all envHooks but before all phases.

Still, I wonder if we should change the order to run the setup hooks
from stdenv before those from packages.  It would seem more natural.

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


[Nix-commits] [NixOS/nixpkgs] 7c1a16: knot-dns: security 2.4.2 -> 2.4.5

2017-06-23 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7c1a1651a50cfa09f6650ea20d70398bb3d6ac71
  
https://github.com/NixOS/nixpkgs/commit/7c1a1651a50cfa09f6650ea20d70398bb3d6ac71
  Author: Vladimír Čunát 
  Date:   2017-06-23 (Fri, 23 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-dns/default.nix

  Log Message:
  ---
  knot-dns: security 2.4.2 -> 2.4.5

https://lists.nic.cz/pipermail/knot-dns-users/2017-June/001144.html
(master is using 2.5.x already)


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


[Nix-commits] [NixOS/nixpkgs] 75872f: knot-dns: security 2.5.1 -> 2.5.2

2017-06-23 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 75872f31617ef867f7ec77c2d50e1253fc0cad60
  
https://github.com/NixOS/nixpkgs/commit/75872f31617ef867f7ec77c2d50e1253fc0cad60
  Author: Vladimír Čunát 
  Date:   2017-06-23 (Fri, 23 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-dns/default.nix

  Log Message:
  ---
  knot-dns: security 2.5.1 -> 2.5.2

https://lists.nic.cz/pipermail/knot-dns-users/2017-June/001144.html


  Commit: c76f8d9c7ab01119bbf051529e78d541e6f25d41
  
https://github.com/NixOS/nixpkgs/commit/c76f8d9c7ab01119bbf051529e78d541e6f25d41
  Author: Vladimír Čunát 
  Date:   2017-06-23 (Fri, 23 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-resolver/default.nix

  Log Message:
  ---
  knot-resolver: maintenance 1.3.0 -> 1.3.1


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


Re: [Nix-dev] firefox package questions

2017-06-20 Thread Vladimír Čunát
On 06/19/2017 12:25 PM, Roland Koebler wrote:
> I installed firefox-esr, but the started Firefox called itself "Nightly".

Firefox trademark policy does *not* allow (us) to distribute with the
brand for versions that we build ourselves.  You may avoid that if you
build it on your machines.  See
https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/browsers/firefox/common.nix#L47

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


Re: [Nix-dev] Backport nodejs-8_x to 17.03

2017-06-20 Thread Vladimír Čunát
On 06/20/2017 06:06 PM, Wout Mertens wrote:
> I'd like to have Node 8 in 17.03, is there any reason why we shouldn't
> do that?
> 
> It would be a non-default attribute, like in master, so the only impact
> would be on Hydra I suppose.

I believe such additions are perfectly OK.  (It should be `lowPrio`, too.)

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


[Nix-commits] [NixOS/nixpkgs] 04d4d1: gawk: link gawk manpage to awk

2017-06-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 04d4d14d6d1662526a42234f4500f1161cb7936d
  
https://github.com/NixOS/nixpkgs/commit/04d4d14d6d1662526a42234f4500f1161cb7936d
  Author: Robin Gloster 
  Date:   2017-06-13 (Tue, 13 Jun 2017)

  Changed paths:
M pkgs/tools/text/gawk/default.nix

  Log Message:
  ---
  gawk: link gawk manpage to awk


  Commit: 286c36d7370763eb8222659ddd8f67773398c3c1
  
https://github.com/NixOS/nixpkgs/commit/286c36d7370763eb8222659ddd8f67773398c3c1
  Author: gnidorah 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

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

  Log Message:
  ---
  utillinux: fix "fstrim --all"


  Commit: f714dfbb1dc9d3df943edeaed3dc18d2ce0a579d
  
https://github.com/NixOS/nixpkgs/commit/f714dfbb1dc9d3df943edeaed3dc18d2ce0a579d
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M doc/configuration.xml
M doc/functions.xml
M doc/overlays.xml
M doc/package-notes.xml
M doc/reviewing-contributions.xml
M doc/stdenv.xml
M lib/maintainers.nix
M nixos/doc/manual/administration/imperative-containers.xml
M nixos/doc/manual/development/option-declarations.xml
M nixos/doc/manual/development/option-types.xml
M nixos/doc/manual/release-notes/rl-1509.xml
M nixos/doc/manual/release-notes/rl-1603.xml
M nixos/doc/manual/release-notes/rl-1709.xml
M nixos/modules/installer/tools/nix-fallback-paths.nix
M nixos/modules/module-list.nix
M nixos/modules/programs/gnupg.nix
A nixos/modules/programs/thefuck.nix
M nixos/modules/services/cluster/kubernetes.nix
M nixos/modules/services/continuous-integration/jenkins/default.nix
M nixos/modules/services/logging/logstash.nix
M nixos/modules/services/misc/errbot.nix
R nixos/modules/services/networking/aiccu.nix
M nixos/modules/services/networking/cntlm.nix
M nixos/modules/services/networking/hostapd.nix
M nixos/modules/services/search/elasticsearch.nix
M nixos/modules/services/search/kibana.nix
M nixos/modules/services/web-servers/apache-httpd/default.nix
M nixos/modules/services/web-servers/caddy.nix
M nixos/modules/services/x11/desktop-managers/gnome3.nix
M nixos/modules/services/x11/display-managers/lightdm.nix
M nixos/modules/system/boot/loader/grub/grub.nix
A nixos/tests/elk.nix
M nixos/tests/installer.nix
R nixos/tests/logstash.nix
M pkgs/applications/altcoins/default.nix
A pkgs/applications/altcoins/go-ethereum-classic/default.nix
A pkgs/applications/altcoins/go-ethereum-classic/deps.nix
M pkgs/applications/audio/google-play-music-desktop-player/default.nix
M pkgs/applications/editors/emacs-modes/elpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
M pkgs/applications/editors/emacs-modes/org-generated.nix
M pkgs/applications/editors/vim/default.nix
M pkgs/applications/misc/calibre/default.nix
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/hugo/deps.nix
M pkgs/applications/misc/lyx/default.nix
M pkgs/applications/networking/browsers/chromium/common.nix
R 
pkgs/applications/networking/browsers/chromium/patches/fix-bootstrap-gn.patch
M pkgs/applications/networking/browsers/chromium/plugins.nix
M pkgs/applications/networking/browsers/chromium/upstream-info.nix
M pkgs/applications/networking/browsers/firefox-bin/default.nix
M pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
M pkgs/applications/networking/browsers/firefox-bin/update.nix
M pkgs/applications/networking/browsers/firefox/packages.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix
M pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
M pkgs/applications/networking/browsers/vivaldi/default.nix
M pkgs/applications/networking/dropbox/default.nix
M pkgs/applications/networking/instant-messengers/gajim/default.nix
A pkgs/applications/networking/instant-messengers/gajim/fix-tests.patch
M pkgs/applications/networking/instant-messengers/zoom-us/default.nix
M pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
A 
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
R pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
M pkgs/applications/networking/mailreaders/thunderbird/default.nix
M pkgs/applications/networking/syncthing/default.nix
M pkgs/applications/office/gnumeric/default.nix
M pkgs/applications/office/mendeley/default.nix
M pkgs/applications/science/biology/snpeff/default.nix
M pkgs/applications/version-management/mr/default.nix
M pkgs/applicatio

[Nix-commits] [NixOS/nixpkgs] 66fdb9: gawkInteractive: fix build after 04d4d14d6d

2017-06-18 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 66fdb94f5011a2087e237451555c64767c09357e
  
https://github.com/NixOS/nixpkgs/commit/66fdb94f5011a2087e237451555c64767c09357e
  Author: Vladimír Čunát 
  Date:   2017-06-18 (Sun, 18 Jun 2017)

  Changed paths:
M pkgs/tools/text/gawk/default.nix

  Log Message:
  ---
  gawkInteractive: fix build after 04d4d14d6d

(Without causing a mass rebuild for now.)


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


[Nix-commits] [NixOS/nixpkgs] b1f56b: wirelessInterfaces: Add a missing parameter

2017-06-18 Thread Vladimír Čunát
9fd4b4fca57421d72fb86df7
  
https://github.com/NixOS/nixpkgs/commit/bb1e0b51de9f40639fd4b4fca57421d72fb86df7
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/servers/computing/torque/default.nix

  Log Message:
  ---
  torque: Patch out attempts to set special bits


  Commit: a4a0f301085279936a97cc8f498d9f473f4580a8
  
https://github.com/NixOS/nixpkgs/commit/a4a0f301085279936a97cc8f498d9f473f4580a8
  Author: Tim Steinbach 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/development/tools/build-managers/gradle/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  gradle: 3.5 -> 4.0


  Commit: 7eaa7adf4e7f3e32be85dcf3bd34ffd6b4cf23be
  
https://github.com/NixOS/nixpkgs/commit/7eaa7adf4e7f3e32be85dcf3bd34ffd6b4cf23be
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/shells/rssh/default.nix

  Log Message:
  ---
  rssh: don't set special bits


  Commit: 5e9edcfebefb09fd208c195856b073a4e5769248
  
https://github.com/NixOS/nixpkgs/commit/5e9edcfebefb09fd208c195856b073a4e5769248
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/servers/http/hiawatha/default.nix

  Log Message:
  ---
  hiawatha: Don't ask cmake to install w/setuid perms


  Commit: 794a4a5ce58dea4f164c53db601ef1af3bc8b2e1
  
https://github.com/NixOS/nixpkgs/commit/794a4a5ce58dea4f164c53db601ef1af3bc8b2e1
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  xsokoban: Fix OWNER username quoting, maybe fix travis?


  Commit: 5ff8387f64044a69a7ccef607eccd46f4d06
  
https://github.com/NixOS/nixpkgs/commit/5ff8387f64044a69a7ccef607eccd46f4d06
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  sudo: fix attempt to set special perms


  Commit: f094fad7a9ea9a99d853b56c0eff937caffbcedb
  
https://github.com/NixOS/nixpkgs/commit/f094fad7a9ea9a99d853b56c0eff937caffbcedb
  Author: taku0 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/chromium/plugins.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix

  Log Message:
  ---
  flashplayer: 26.0.0.126 -> 26.0.0.131


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

  Changed paths:
M nixos/modules/security/wrappers/default.nix

  Log Message:
  ---
  Merge #26657: nixos security.wrappers: fix a typo

Fixes #26611.


  Commit: 481cf50b1f4ecd2283131a494f1d269f07b2b3be
  
https://github.com/NixOS/nixpkgs/commit/481cf50b1f4ecd2283131a494f1d269f07b2b3be
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/development/ocaml-modules/containers/default.nix

  Log Message:
  ---
  Merge pull request #26619 from regnat/ocaml-containers

ocamlPackages.containers: 0.22 -> 1.2


  Commit: 05547dbcb419acb76126135bb51bf7cb1279ec72
  
https://github.com/NixOS/nixpkgs/commit/05547dbcb419acb76126135bb51bf7cb1279ec72
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Log Message:
  ---
  Merge pull request #26664 from taku0/flashplayer-26.0.0.131

flashplayer: 26.0.0.126 -> 26.0.0.131


  Commit: 0d4431cfe90b2242723ccb1ccc90714f2f68a609
  
https://github.com/NixOS/nixpkgs/commit/0d4431cfe90b2242723ccb1ccc90714f2f68a609
  Author: Piotr Bogdan 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/tools/system/fakeroot/default.nix
A pkgs/tools/system/fakeroot/einval.patch

  Log Message:
  ---
  fakeroot: apply patch to ignore EINVAL errors as well

Fixes #25901 the nixos.ova job.  See the referred links.


  Commit: 67655caf3707e846c754d905340cf3ff69d06b15
  
https://github.com/NixOS/nixpkgs/commit/67655caf3707e846c754d905340cf3ff69d06b15
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/tools/system/cron/default.nix

  Log Message:
  ---
  cron: document patch


  Commit: ae147e329f49f2b5c140115c1be3e787727b3d62
  
https://github.com/NixOS/nixpkgs/commit/ae147e329f49f2b5c140115c1be3e787727b3d62
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/tools/system/logcheck/default.nix

  Log Message:
  ---
  logcheck: add remark to patch


  Commit: 9e2f08cdc265b0752f846228712ff891d0abed28
  
https://github.com/NixOS/nixpkgs/commit/9e2f08cdc265b0752f846228712ff891d0abed28
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Change

[Nix-commits] [NixOS/nixpkgs] 351b59: cairo: bugfix 1.14.8 -> 1.14.10

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

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

  Log Message:
  ---
  cairo: bugfix 1.14.8 -> 1.14.10


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


[Nix-commits] [NixOS/nixpkgs] 0d9208: at: Don't set fancy bits on install

2017-06-17 Thread Vladimír Čunát
4a4a5ce58dea4f164c53db601ef1af3bc8b2e1
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  xsokoban: Fix OWNER username quoting, maybe fix travis?


  Commit: 5ff8387f64044a69a7ccef607eccd46f4d06
  
https://github.com/NixOS/nixpkgs/commit/5ff8387f64044a69a7ccef607eccd46f4d06
  Author: Will Dietz 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  sudo: fix attempt to set special perms


  Commit: 67655caf3707e846c754d905340cf3ff69d06b15
  
https://github.com/NixOS/nixpkgs/commit/67655caf3707e846c754d905340cf3ff69d06b15
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/tools/system/cron/default.nix

  Log Message:
  ---
  cron: document patch


  Commit: ae147e329f49f2b5c140115c1be3e787727b3d62
  
https://github.com/NixOS/nixpkgs/commit/ae147e329f49f2b5c140115c1be3e787727b3d62
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/tools/system/logcheck/default.nix

  Log Message:
  ---
  logcheck: add remark to patch


  Commit: 9e2f08cdc265b0752f846228712ff891d0abed28
  
https://github.com/NixOS/nixpkgs/commit/9e2f08cdc265b0752f846228712ff891d0abed28
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  sudo: add remark to patch


  Commit: cca6eb62c001f2fb5a06993979e717d04e0dcd7b
  
https://github.com/NixOS/nixpkgs/commit/cca6eb62c001f2fb5a06993979e717d04e0dcd7b
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  super: add remark to patch


  Commit: ca6bb9098ca3f8fb8fe74de5b113478571010c7a
  
https://github.com/NixOS/nixpkgs/commit/ca6bb9098ca3f8fb8fe74de5b113478571010c7a
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  uucp: add remark to patch


  Commit: 878381fd4d61433ba6c880983cd127e9641d38c2
  
https://github.com/NixOS/nixpkgs/commit/878381fd4d61433ba6c880983cd127e9641d38c2
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  rewritefs: add remark to patch


  Commit: aa49177091e7fc94b57fefef2f8e46c1ef824d03
  
https://github.com/NixOS/nixpkgs/commit/aa49177091e7fc94b57fefef2f8e46c1ef824d03
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  xconq: add remark to patch


  Commit: 230c0d461a7941c770f358e2b0829fe344953027
  
https://github.com/NixOS/nixpkgs/commit/230c0d461a7941c770f358e2b0829fe344953027
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  udevil: add remark to patch


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

  Changed paths:
M pkgs/applications/misc/udevil/default.nix
M pkgs/games/unnethack/default.nix
M pkgs/games/xconq/default.nix
M pkgs/games/xsokoban/default.nix
M pkgs/os-specific/linux/rewritefs/default.nix
M pkgs/servers/computing/torque/default.nix
M pkgs/servers/http/hiawatha/default.nix
M pkgs/shells/rssh/default.nix
M pkgs/tools/misc/uucp/default.nix
M pkgs/tools/security/logkeys/default.nix
M pkgs/tools/security/sudo/default.nix
M pkgs/tools/security/super/default.nix
M pkgs/tools/system/at/install.patch
M pkgs/tools/system/cron/default.nix
M pkgs/tools/system/logcheck/default.nix

  Log Message:
  ---
  Merge #26628: treewide: setuid/setgid fallout


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


[Nix-commits] [NixOS/nixpkgs] a889c4: Merge #26657: nixos security.wrappers: fix a typo

2017-06-17 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a889c4c379f489d8cd1cbb87b64351a8d95508a8
  
https://github.com/NixOS/nixpkgs/commit/a889c4c379f489d8cd1cbb87b64351a8d95508a8
  Author: Vladimír Čunát 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M nixos/modules/security/wrappers/default.nix

  Log Message:
  ---
  Merge #26657: nixos security.wrappers: fix a typo

Fixes #26611.

(cherry picked from commit c416641d4d1de6ac6db350974abc350cc774badc)


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


[Nix-commits] [NixOS/nixpkgs] 5ca644: Fixing attribute name mistake: setguid => setgid

2017-06-17 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5ca644c22876866751e653b0f15928a7d32bf9fc
  
https://github.com/NixOS/nixpkgs/commit/5ca644c22876866751e653b0f15928a7d32bf9fc
  Author: Parnell Springmeyer 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

  Changed paths:
M nixos/modules/security/wrappers/default.nix

  Log Message:
  ---
  Fixing attribute name mistake: setguid => setgid


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

  Changed paths:
M nixos/modules/security/wrappers/default.nix

  Log Message:
  ---
  Merge #26657: nixos security.wrappers: fix a typo

Fixes #26611.


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


[Nix-commits] [NixOS/nixpkgs] fdef88: ply: init at v1-beta1(9e810b1)

2017-06-17 Thread Vladimír Čunát
/nixpkgs/commit/5b0a370f3f41c7a49d160c20836c112a40889706
  Author: Jörg Thalheim 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26636 from NeQuissimus/atom_1_18_0

atom: 1.17.2 -> 1.18.0


  Commit: ba1dd2660a740c457cab93a200eeafc281dcb2e5
  
https://github.com/NixOS/nixpkgs/commit/ba1dd2660a740c457cab93a200eeafc281dcb2e5
  Author: Jörg Thalheim 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26645 from NeQuissimus/kotlin_1_1_2_5

kotlin: 1.1.2 -> 1.1.2-5


  Commit: c396360b7b4dfdcfeaf5e8d6861d995ed98430f5
  
https://github.com/NixOS/nixpkgs/commit/c396360b7b4dfdcfeaf5e8d6861d995ed98430f5
  Author: Jörg Thalheim 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26621 from guillaumekoenig/install-gtk-launch

gtk3: install gtk-launch


  Commit: ada9e9435570ca8a853ab7198c816bfa604f5646
  
https://github.com/NixOS/nixpkgs/commit/ada9e9435570ca8a853ab7198c816bfa604f5646
  Author: Jörg Thalheim 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/applications/audio/ardour/default.nix

  Log Message:
  ---
  Merge pull request #26646 from magnetophon/ardour

Ardour: 5.8 -> 5.10


  Commit: 304391b2f208ff109a0384fe9a0efef4d92d785a
  
https://github.com/NixOS/nixpkgs/commit/304391b2f208ff109a0384fe9a0efef4d92d785a
  Author: Vladimír Čunát 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

  Changed paths:
M pkgs/applications/audio/ardour/default.nix
M pkgs/applications/editors/atom/default.nix
M pkgs/development/compilers/kotlin/default.nix
M pkgs/development/libraries/gtk+/3.x.nix
A pkgs/development/tools/build-managers/sbt/scala-native.nix
A pkgs/games/ltris/default.nix
A pkgs/games/ltris/gcc5_compliance.diff
A pkgs/os-specific/linux/ply/default.nix
M pkgs/tools/misc/clipster/default.nix
M pkgs/top-level/all-packages.nix

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

Another couple thousand rebuilds.


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


[Nix-commits] [NixOS/nixpkgs] c002b8: faustCompressors: 1.1.1 -> 1.2

2017-06-16 Thread Vladimír Čunát
 and missing icons.


  Commit: dda6daa4ff876d6f48cdd3538509c26c3e18af03
  
https://github.com/NixOS/nixpkgs/commit/dda6daa4ff876d6f48cdd3538509c26c3e18af03
  Author: Charles Strahan 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/chromium/plugins.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix

  Log Message:
  ---
  flash: 26.0.0.126 -> 26.0.0.131

The previous releases were 404ing.


  Commit: bfd865dc61599514ef2131819d017fb09330233d
  
https://github.com/NixOS/nixpkgs/commit/bfd865dc61599514ef2131819d017fb09330233d
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/audio/artyFX/default.nix
M pkgs/applications/audio/eq10q/default.nix
M pkgs/applications/audio/jalv/default.nix
M pkgs/applications/audio/lv2bm/default.nix
M pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
M pkgs/applications/audio/qjackctl/default.nix
M pkgs/applications/audio/qmidinet/default.nix
M pkgs/applications/audio/sorcer/default.nix
M pkgs/applications/audio/x42-plugins/default.nix
M pkgs/applications/audio/zynaddsubfx/default.nix
M pkgs/applications/misc/tint2/default.nix
M pkgs/applications/networking/browsers/chromium/default.nix
M pkgs/applications/networking/browsers/chromium/plugins.nix
M pkgs/applications/networking/browsers/google-chrome/default.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
M 
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix
M pkgs/applications/networking/instant-messengers/dino/default.nix
A pkgs/development/compilers/llvm/3.7/fix-llvm-config.patch
M pkgs/development/compilers/llvm/3.7/llvm.nix
M pkgs/development/haskell-modules/configuration-common.nix
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/hackage-packages.nix
M pkgs/development/libraries/audio/lilv/default.nix
M pkgs/development/libraries/audio/ntk/default.nix
M pkgs/development/libraries/aws-sdk-cpp/default.nix

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


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


[Nix-commits] [NixOS/nixpkgs] 286c36: utillinux: fix "fstrim --all"

2017-06-16 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 286c36d7370763eb8222659ddd8f67773398c3c1
  
https://github.com/NixOS/nixpkgs/commit/286c36d7370763eb8222659ddd8f67773398c3c1
  Author: gnidorah 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

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

  Log Message:
  ---
  utillinux: fix "fstrim --all"


  Commit: 2a76b6ad698af623f110a183a4f0ce3f3f308273
  
https://github.com/NixOS/nixpkgs/commit/2a76b6ad698af623f110a183a4f0ce3f3f308273
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

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

  Log Message:
  ---
  Merge #26540: utillinux: fix "fstrim --all"


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


[Nix-commits] [NixOS/nixpkgs] d25bf8: elasticsearch service: remove postStart script

2017-06-16 Thread Vladimír Čunát
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/development/tools/misc/gdb/default.nix

  Log Message:
  ---
  gdb: disable format warnings

Fixes #26145


  Commit: 29049d07f9fcf2755a2755dcda078891445da67b
  
https://github.com/NixOS/nixpkgs/commit/29049d07f9fcf2755a2755dcda078891445da67b
  Author: Daiderd Jordan 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/misc/vim-plugins/default.nix

  Log Message:
  ---
  vim-plugins: fix evaluation


  Commit: 3d601f6a8a4bcbd686011251f2a01e9c17595be8
  
https://github.com/NixOS/nixpkgs/commit/3d601f6a8a4bcbd686011251f2a01e9c17595be8
  Author: Daiderd Jordan 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/development/compilers/rust/rustc.nix

  Log Message:
  ---
  rustc: disable another gdb test


  Commit: 4a90156912e9541cef15c556a4b4b366f02dea69
  
https://github.com/NixOS/nixpkgs/commit/4a90156912e9541cef15c556a4b4b366f02dea69
  Author: Graham Christensen 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/chromium/common.nix
R 
pkgs/applications/networking/browsers/chromium/patches/fix-bootstrap-gn.patch
M pkgs/applications/networking/browsers/chromium/upstream-info.nix

  Log Message:
  ---
  Merge pull request #26512 from ntruessel/update-chromium

chromium: 58.0.3029.110 -> 59.0.3071.86


  Commit: c95f3a36cd2ab9c2565bfc9fd88eae57023146a5
  
https://github.com/NixOS/nixpkgs/commit/c95f3a36cd2ab9c2565bfc9fd88eae57023146a5
  Author: Bjørn Forsman 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/development/compilers/sdcc/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  sdcc: 3.5.0 -> 3.6.0

* requires texinfo
* --std=c99 unneeded, fixed upstream
* can build with nixpkgs default boost (v1.62), so let's do that


  Commit: 46e2c1398f5ae44717dd00cd5846e54d02980ae0
  
https://github.com/NixOS/nixpkgs/commit/46e2c1398f5ae44717dd00cd5846e54d02980ae0
  Author: Pascal Bach 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  nextcloud: 11.0.2 -> 12.0.0


  Commit: e19cdd3b34a81f7807a539974dd97bb091648cde
  
https://github.com/NixOS/nixpkgs/commit/e19cdd3b34a81f7807a539974dd97bb091648cde
  Author: Tuomas Tynkkynen 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
R pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch
M pkgs/development/libraries/icu/default.nix

  Log Message:
  ---
  icu: Fix ARM patch

Broken by fad6fc3dae16b5161895165bf275e329e20860d6.
Let's do it in a cleaner way.


  Commit: 86da6d441f7a248b02d545ac1b2c90ef27f42d0b
  
https://github.com/NixOS/nixpkgs/commit/86da6d441f7a248b02d545ac1b2c90ef27f42d0b
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  lyx: maintenance 2.2.2 -> 2.2.3

In particular, they claim some fixes related to Qt-5.8,
so I switched back to using the default Qt (=5.8 ATM).

Tested just briefly.


  Commit: a3317da9f9221d986405a676599bbca4632ed7c7
  
https://github.com/NixOS/nixpkgs/commit/a3317da9f9221d986405a676599bbca4632ed7c7
  Author: Daiderd Jordan 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
A pkgs/applications/networking/browsers/firefox/cargo-fix.patch
M pkgs/applications/networking/browsers/firefox/packages.nix
M pkgs/development/compilers/rust/beta.nix
A pkgs/development/compilers/rust/binaryBuild.nix
M pkgs/development/compilers/rust/bootstrap.nix
M pkgs/development/compilers/rust/default.nix
M pkgs/development/compilers/rust/nightly.nix
M pkgs/development/compilers/rust/nightlyBin.nix
M pkgs/development/compilers/rust/print-hashes.sh
M pkgs/development/compilers/rust/rustc.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/rust-packages.nix

  Log Message:
  ---
  Merge pull request #26275 from anderspapitto/rust-updates

rust: 1.15.0 -> 1.17.0


  Commit: 370ace4cf03b31eedcf1e635ed5d52272b774526
  
https://github.com/NixOS/nixpkgs/commit/370ace4cf03b31eedcf1e635ed5d52272b774526
  Author: Tuomas Tynkkynen 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/common-config.nix

  Log Message:
  ---
  kernel: Don't build self-test modules


  Commit: 4010313ab901c9022f564dfdc0e9ef27b595aa53
  
https://github.com/NixOS/nixpkgs/commit/4010313ab901c9022f564dfdc0e9ef27b595aa53
  Author: Daiderd Jordan 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
A pkgs/development/beam-modules/lib.nix
M pkgs/development/interpreters/erlang/R16.nix
M pkgs/development/interpreters/erlang/R16B02-8-basho.nix
M pkgs/development/interpreters/erlang/R17.ni

[Nix-commits] [NixOS/nixpkgs] 773822: firefox: rename default.nix -> common.nix

2017-06-16 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 773822dc09d9a4cedeef424cd17ebd79a0410aa7
  
https://github.com/NixOS/nixpkgs/commit/773822dc09d9a4cedeef424cd17ebd79a0410aa7
  Author: Jan Malakhovski 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
A pkgs/applications/networking/browsers/firefox/common.nix
R pkgs/applications/networking/browsers/firefox/default.nix

  Log Message:
  ---
  firefox: rename default.nix -> common.nix

(cherry picked from commit 1d407173b0ddcf995d0dfbf98c936c5f046f8532)


  Commit: 378d10001f72ca3b231af132d405203a524c339a
  
https://github.com/NixOS/nixpkgs/commit/378d10001f72ca3b231af132d405203a524c339a
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox/common.nix
A pkgs/applications/networking/browsers/firefox/packages.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  firefoxPackages: refactor to a state "close" to master

The point is to support simple version updates via simple
cherry-picking.  The hashes are the same as in the grandparent commit.


  Commit: 9914a7443e2b7ff9c05e98a7a3f740466d124a9a
  
https://github.com/NixOS/nixpkgs/commit/9914a7443e2b7ff9c05e98a7a3f740466d124a9a
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox/wrapper.nix

  Log Message:
  ---
  wrapFirefox: fix #25505 gtk3 file dialogs

Crash + icons.

(cherry picked from commit 700d6186a30e9e811)
Maybe it's not required ATM, but it shouldn't hurt.


  Commit: d33c4b2b4ab2f664ba9710cabcd1178cd3cac882
  
https://github.com/NixOS/nixpkgs/commit/d33c4b2b4ab2f664ba9710cabcd1178cd3cac882
  Author: Vladimír Čunát 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/sources.nix
M pkgs/applications/networking/browsers/firefox/packages.nix
M pkgs/development/libraries/nspr/default.nix
M pkgs/development/libraries/nss/default.nix

  Log Message:
  ---
  Merge #26571: firefox* updates (critical security)

(cherry picked from commit 952bb9a445f6af99d9c3509cbf606ca6319097a6)
Yes, finally I could do this simple cherry-pick :-)


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


[Nix-commits] [NixOS/nixpkgs] 273210: thunderbird, thunderbird-bin: 52.1.1 -> 52.2.0

2017-06-15 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2732104cc328b8ee064edf5705731e4f7cda1058
  
https://github.com/NixOS/nixpkgs/commit/2732104cc328b8ee064edf5705731e4f7cda1058
  Author: taku0 
  Date:   2017-06-16 (Fri, 16 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/default.nix
M pkgs/applications/networking/browsers/firefox-bin/update.nix
M pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
A 
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
R pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
M pkgs/applications/networking/mailreaders/thunderbird/default.nix

  Log Message:
  ---
  thunderbird, thunderbird-bin: 52.1.1 -> 52.2.0


  Commit: 540f8ee7ad5adf6fb88f9e612e3e538cb90be778
  
https://github.com/NixOS/nixpkgs/commit/540f8ee7ad5adf6fb88f9e612e3e538cb90be778
  Author: Vladimír Čunát 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

  Log Message:
  ---
  Merge #26601: thunderbird*: 52.1.1 -> 52.2.0 (security)

It's a real *merge* this time, though the changes came in parent.


Compare: https://github.com/NixOS/nixpkgs/compare/791f072384a1...540f8ee7ad5a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 791f07: Merge #26601: thunderbird*: 52.1.1 -> 52.2.0 (secu...

2017-06-15 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 791f072384a18a821d998edcecb5d7b3cd78e4ea
  
https://github.com/NixOS/nixpkgs/commit/791f072384a18a821d998edcecb5d7b3cd78e4ea
  Author: Vladimír Čunát 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/default.nix
M pkgs/applications/networking/browsers/firefox-bin/update.nix
M pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
A 
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
R pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
M pkgs/applications/networking/mailreaders/thunderbird/default.nix

  Log Message:
  ---
  Merge #26601: thunderbird*: 52.1.1 -> 52.2.0 (security)


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


[Nix-commits] [NixOS/nixpkgs] 6cf604: firefox-bin: 53.0.3 -> 54.0

2017-06-15 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6cf604828568f0594db75daae39498f055c1a01f
  
https://github.com/NixOS/nixpkgs/commit/6cf604828568f0594db75daae39498f055c1a01f
  Author: taku0 
  Date:   2017-06-14 (Wed, 14 Jun 2017)

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

  Log Message:
  ---
  firefox-bin: 53.0.3 -> 54.0


  Commit: ceb34c6d95044b37605e49dc6b2ae73ef5be8210
  
https://github.com/NixOS/nixpkgs/commit/ceb34c6d95044b37605e49dc6b2ae73ef5be8210
  Author: taku0 
  Date:   2017-06-14 (Wed, 14 Jun 2017)

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

  Log Message:
  ---
  nspr: 4.13.1 -> 4.15


  Commit: 0ed1aead70e8ba7394df9d32df50c0b54e0ed480
  
https://github.com/NixOS/nixpkgs/commit/0ed1aead70e8ba7394df9d32df50c0b54e0ed480
  Author: taku0 
  Date:   2017-06-14 (Wed, 14 Jun 2017)

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

  Log Message:
  ---
  nss: 3.30 -> 3.31


  Commit: 04e95882c0eadcfeaed91e1610e1d21921c02eba
  
https://github.com/NixOS/nixpkgs/commit/04e95882c0eadcfeaed91e1610e1d21921c02eba
  Author: taku0 
  Date:   2017-06-14 (Wed, 14 Jun 2017)

  Changed paths:
R pkgs/applications/networking/browsers/firefox/cargo-fix.patch
M pkgs/applications/networking/browsers/firefox/packages.nix

  Log Message:
  ---
  firefox: 53.0.3 -> 54.0


  Commit: 930a00bc923dbd49e42cdae080e363245a55665a
  
https://github.com/NixOS/nixpkgs/commit/930a00bc923dbd49e42cdae080e363245a55665a
  Author: taku0 
  Date:   2017-06-14 (Wed, 14 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox/packages.nix

  Log Message:
  ---
  firefox-esr: 52.1.2esr -> 52.2.0esr


  Commit: 952bb9a445f6af99d9c3509cbf606ca6319097a6
  
https://github.com/NixOS/nixpkgs/commit/952bb9a445f6af99d9c3509cbf606ca6319097a6
  Author: Vladimír Čunát 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
R pkgs/applications/networking/browsers/firefox/cargo-fix.patch
M pkgs/applications/networking/browsers/firefox/packages.nix
M pkgs/development/libraries/nspr/default.nix
M pkgs/development/libraries/nss/default.nix

  Log Message:
  ---
  Merge #26571: firefox* updates (critical security)


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


[Nix-commits] [NixOS/nixpkgs] 4ef831: aiccu: remove leftover from 3dcecf09fc1c

2017-06-14 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4ef8313bb65696b0a39739a799b8231e6b925a3d
  
https://github.com/NixOS/nixpkgs/commit/4ef8313bb65696b0a39739a799b8231e6b925a3d
  Author: Vladimír Čunát 
  Date:   2017-06-15 (Thu, 15 Jun 2017)

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

  Log Message:
  ---
  aiccu: remove leftover from 3dcecf09fc1c


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


[Nix-commits] [NixOS/nixpkgs] 90cf4c: rhash: extend meta.platforms

2017-06-13 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 90cf4cfabecad2b4e04d1c018f862868bb59b0ca
  
https://github.com/NixOS/nixpkgs/commit/90cf4cfabecad2b4e04d1c018f862868bb59b0ca
  Author: Vladimír Čunát 
  Date:   2017-06-13 (Tue, 13 Jun 2017)

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

  Log Message:
  ---
  rhash: extend meta.platforms

Now cmake evaluates on Darwin again.  Let's be optimistic about building.
Discussion: https://github.com/NixOS/nixpkgs/commit/d74d871f52


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


[Nix-commits] [NixOS/nixpkgs] 5ad7d3: kde4.kdepimlibs: fixup build by using older cmake

2017-06-13 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5ad7d3106e04f961d0c6fdf05b7a9e79c27c9d12
  
https://github.com/NixOS/nixpkgs/commit/5ad7d3106e04f961d0c6fdf05b7a9e79c27c9d12
  Author: Vladimír Čunát 
  Date:   2017-06-13 (Tue, 13 Jun 2017)

  Changed paths:
M pkgs/desktops/kde-4.14/kdepimlibs.nix

  Log Message:
  ---
  kde4.kdepimlibs: fixup build by using older cmake

I have no idea why, but apparently the last cmake update caused:
  kdepimlibs-4.14.3/akonadi/tests/../pastehelper.cpp:343:27:
fatal error: pastehelper.moc: No such file or directory


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


[Nix-commits] [NixOS/nixpkgs] 372924: mesa: add valgrind support

2017-06-13 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3729247acd2a7a1554e5b773b6e65614b566a1ae
  
https://github.com/NixOS/nixpkgs/commit/3729247acd2a7a1554e5b773b6e65614b566a1ae
  Author: Linus Heckemann 
  Date:   2017-06-06 (Tue, 06 Jun 2017)

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

  Log Message:
  ---
  mesa: add valgrind support


  Commit: 377e0d3bd39162c8588f298b26fab9757f46f670
  
https://github.com/NixOS/nixpkgs/commit/377e0d3bd39162c8588f298b26fab9757f46f670
  Author: Jörg Thalheim 
  Date:   2017-06-10 (Sat, 10 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26418 from lheckemann/mesa-valgrind

mesa: add valgrind support


  Commit: 149cb28312ccc30c0927c81c4d28726921486411
  
https://github.com/NixOS/nixpkgs/commit/149cb28312ccc30c0927c81c4d28726921486411
  Author: Tuomas Tynkkynen 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M doc/languages-frameworks/python.md
M lib/licenses.nix
M lib/tests/misc.nix
M nixos/modules/misc/locate.nix
M nixos/modules/services/misc/autorandr.nix
M nixos/modules/services/networking/bind.nix
M nixos/modules/system/boot/loader/grub/grub.nix
M nixos/modules/system/boot/loader/grub/install-grub.pl
M nixos/modules/system/boot/stage-1.nix
M nixos/modules/tasks/bcache.nix
M pkgs/applications/audio/bristol/default.nix
M pkgs/applications/editors/jetbrains/default.nix
M pkgs/applications/editors/vscode/default.nix
A pkgs/applications/kde/kdenlive-cmake-concurrent-module.patch
M pkgs/applications/kde/kdenlive.nix
M pkgs/applications/misc/ipmiview/default.nix
A pkgs/applications/misc/tilix/default.nix
M pkgs/applications/networking/instant-messengers/profanity/default.nix
M pkgs/applications/office/wpsoffice/default.nix
M pkgs/applications/virtualization/runc/default.nix
M pkgs/applications/window-managers/i3/blocks-gaps.nix
M pkgs/applications/window-managers/i3/blocks.nix
M pkgs/build-support/fetchsvn/builder.sh
M pkgs/build-support/fetchsvn/default.nix
A pkgs/data/fonts/arphic/default.nix
M pkgs/desktops/lxde/core/lxappearance/default.nix
A 
pkgs/desktops/lxde/core/lxappearance/lxappearance-0.6.3-xdg.system.data.dirs.patch
M pkgs/desktops/xfce/default.nix
M pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin.nix
A pkgs/desktops/xfce/panel-plugins/xfce4-namebar-plugin.nix
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml
M pkgs/development/haskell-modules/default.nix
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/hackage-packages.nix
M pkgs/development/haskell-modules/make-package-set.nix
M pkgs/development/interpreters/pixie/default.nix
M pkgs/development/libraries/botan/generic.nix
M pkgs/development/libraries/chmlib/default.nix
M pkgs/development/libraries/ffmpeg-full/default.nix
M pkgs/development/libraries/ffmpeg/3.3.nix
A pkgs/development/libraries/gtkd/default.nix
A pkgs/development/libraries/gtkd/paths.d
M pkgs/development/node-packages/composition-v4.nix
M pkgs/development/node-packages/composition-v6.nix
M pkgs/development/node-packages/node-env.nix
M pkgs/development/node-packages/node-packages-v4.nix
M pkgs/development/node-packages/node-packages-v6.json
M pkgs/development/node-packages/node-packages-v6.nix
A pkgs/development/python-modules/powerline/default.nix
M pkgs/development/tools/misc/gdb/default.nix
M pkgs/development/web/nodejs/v8.nix
M pkgs/misc/drivers/hplip/default.nix
M pkgs/misc/uboot/default.nix
M pkgs/servers/clickhouse/default.nix
R pkgs/servers/clickhouse/prefix.patch
M pkgs/tools/X11/xdg-utils/default.nix
M pkgs/tools/filesystems/bcache-tools/default.nix
M pkgs/tools/misc/autorandr/default.nix
M pkgs/tools/misc/qt5ct/default.nix
M pkgs/tools/networking/biosdevname/default.nix
M pkgs/tools/text/grin/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/perl-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge remote-tracking branch 'upstream/master' into staging


  Commit: a38b0d000c9001f6b9bc791c06ab8f5dc8595b44
  
https://github.com/NixOS/nixpkgs/commit/a38b0d000c9001f6b9bc791c06ab8f5dc8595b44
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  mesa: maintenance 17.1.1 -> 17.1.2


  Commit: 403b3c2dddceefac7d34af6cc69d63b759f2ed1a
  
https://github.com/NixOS/nixpkgs/commit/403b3c2dddceefac7d34af6cc69d63b759f2ed1a
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/servers/x11/xorg/default.nix
M pkgs/servers/x11/xorg/tarballs-7.7.list


[Nix-commits] [NixOS/nixpkgs] 7aca46: thunderbird: 45.8.0 -> 52.1.1

2017-06-13 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7aca46f9a94c06a49cbdcf25e95457d3d02541f7
  
https://github.com/NixOS/nixpkgs/commit/7aca46f9a94c06a49cbdcf25e95457d3d02541f7
  Author: Vladimír Čunát 
  Date:   2017-06-13 (Tue, 13 Jun 2017)

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

  Log Message:
  ---
  thunderbird: 45.8.0 -> 52.1.1

... via picking the state in nixpkgs master.  Fixes #26490.
I saw no reason to omit any of the changes we've done in master.
I'm testing it, though just briefly ATM.  It still uses gtk2 by default.


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


[Nix-commits] [NixOS/nixpkgs] 156a9a: knot-resolver: 1.2.6 -> 1.3.0

2017-06-13 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 156a9afb2b86444d5d3bc239db89c57d02cedb4f
  
https://github.com/NixOS/nixpkgs/commit/156a9afb2b86444d5d3bc239db89c57d02cedb4f
  Author: Vladimír Čunát 
  Date:   2017-06-13 (Tue, 13 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-resolver/default.nix

  Log Message:
  ---
  knot-resolver: 1.2.6 -> 1.3.0


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


Re: [Nix-dev] Hydra queue is in a weird state

2017-06-12 Thread Vladimír Čunát
On 06/12/2017 11:23 AM, Eelco Dolstra wrote:
> Can you be more specific (e.g. build IDs)? I don't see anything wrong at the 
> moment.

Hmm, me neither, not anymore.  The number of queued jobs on trunk* has
also dropped to the number I would expected right after the merge and I
see no particular problem anymore.  It's also possible I just got
confused by something.

Just to be sure, the binaries from staging are cached at least for a few
days, right?  Even if they don't belong to the latest evaluation anymore?

--Vladimir

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


[Nix-dev] Hydra queue is in a weird state

2017-06-11 Thread Vladimír Čunát
Hi,
around 24h ago I merged some older staging commit, and Hydra somehow
hasn't recovered since.

Most of jobs should've been cached from staging - mainly except for
Haskell stuff because that got updated on master in the meantime - but
apparently those jobs are stuck in the queue, not being processed in any
way.  The machines were reportedly idling a lot yesterday after that
(now they picked some subsequent jobs on staging).

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


[Nix-commits] [NixOS/nixpkgs] d3d036: harfbuzz: 1.4.5 -> 1.4.6

2017-06-11 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d3d036d8648956e1b9039d075890a221d4edaa28
  
https://github.com/NixOS/nixpkgs/commit/d3d036d8648956e1b9039d075890a221d4edaa28
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  harfbuzz: 1.4.5 -> 1.4.6


  Commit: cc67a41b4ac24bf3d992a0778207185569dfa8fa
  
https://github.com/NixOS/nixpkgs/commit/cc67a41b4ac24bf3d992a0778207185569dfa8fa
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/development/libraries/at-spi2-core/default.nix

  Log Message:
  ---
  at-spi2-core: 2.22.1 -> 2.24.1

at-spi2-* was lagging a bit behind in nixpkgs.


  Commit: c997a7feb5b4360c16d7f5417012f2ef86546c85
  
https://github.com/NixOS/nixpkgs/commit/c997a7feb5b4360c16d7f5417012f2ef86546c85
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/development/libraries/at-spi2-atk/default.nix

  Log Message:
  ---
  at-spi2-atk: 2.22.0 -> 2.24.1


  Commit: d95862bbdeac2e10b2cf684895eb8e88f9064bcc
  
https://github.com/NixOS/nixpkgs/commit/d95862bbdeac2e10b2cf684895eb8e88f9064bcc
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  pango: maintenance 1.40.5 -> 1.40.6


  Commit: 8779c108d4636367186ac6984ed88ed29bc40ad9
  
https://github.com/NixOS/nixpkgs/commit/8779c108d4636367186ac6984ed88ed29bc40ad9
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  gkt3: bugfix 3.22.12 -> 3.22.15


  Commit: d74d871f52512a1f827d2dc165db685f499ce5f0
  
https://github.com/NixOS/nixpkgs/commit/d74d871f52512a1f827d2dc165db685f499ce5f0
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  cmake: 3.7.2 -> 3.8.2

Tested several cmake-built packages, and all seems OK;
hopefully there won't be many problems.


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


[Nix-commits] [NixOS/nixpkgs] 86da6d: lyx: maintenance 2.2.2 -> 2.2.3

2017-06-11 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 86da6d441f7a248b02d545ac1b2c90ef27f42d0b
  
https://github.com/NixOS/nixpkgs/commit/86da6d441f7a248b02d545ac1b2c90ef27f42d0b
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  lyx: maintenance 2.2.2 -> 2.2.3

In particular, they claim some fixes related to Qt-5.8,
so I switched back to using the default Qt (=5.8 ATM).

Tested just briefly.


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


[Nix-commits] [NixOS/nixpkgs] 32916a: Merge older staging

2017-06-11 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 32916ab1de83642611ea900bdeb951ffb1859343
  
https://github.com/NixOS/nixpkgs/commit/32916ab1de83642611ea900bdeb951ffb1859343
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M nixos/modules/module-list.nix
A nixos/modules/services/misc/fstrim.nix
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/llvm.nix
M pkgs/development/libraries/gnutls/3.5.nix
M pkgs/development/libraries/icu/default.nix
M pkgs/development/libraries/libgcrypt/default.nix
M pkgs/development/libraries/libtiff/default.nix
M pkgs/development/libraries/openssl/default.nix
M pkgs/development/python-modules/bootstrapped-pip/default.nix
M pkgs/development/tools/build-managers/cmake/default.nix
M pkgs/os-specific/linux/nfs-utils/default.nix
M pkgs/os-specific/linux/shadow/default.nix
M pkgs/os-specific/linux/util-linux/default.nix
M pkgs/stdenv/darwin/default.nix
M pkgs/tools/networking/openssh/default.nix
M pkgs/tools/system/vboot_reference/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge older staging

Enough rebuilds have finished on Hydra now.


  Commit: a38b0d000c9001f6b9bc791c06ab8f5dc8595b44
  
https://github.com/NixOS/nixpkgs/commit/a38b0d000c9001f6b9bc791c06ab8f5dc8595b44
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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

  Log Message:
  ---
  mesa: maintenance 17.1.1 -> 17.1.2


  Commit: 403b3c2dddceefac7d34af6cc69d63b759f2ed1a
  
https://github.com/NixOS/nixpkgs/commit/403b3c2dddceefac7d34af6cc69d63b759f2ed1a
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

  Changed paths:
M pkgs/servers/x11/xorg/default.nix
M pkgs/servers/x11/xorg/tarballs-7.7.list

  Log Message:
  ---
  xkeyboard-config: 2.20 -> 2.21


  Commit: 8df1ed7d59d399639a5339da330ace2a738ac260
  
https://github.com/NixOS/nixpkgs/commit/8df1ed7d59d399639a5339da330ace2a738ac260
  Author: Vladimír Čunát 
  Date:   2017-06-11 (Sun, 11 Jun 2017)

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


Compare: https://github.com/NixOS/nixpkgs/compare/149cb28312cc...8df1ed7d59d3___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] a996fe: fstrim: Add service

2017-06-11 Thread Vladimír Čunát
s/scripts/update-python-libraries
M nixos/modules/services/x11/window-managers/qtile.nix
M nixos/release.nix
A nixos/tests/cloud-init.nix
M pkgs/applications/graphics/unigine-valley/default.nix
M pkgs/applications/misc/far2l/default.nix
M pkgs/applications/misc/hyper/default.nix
M pkgs/applications/misc/ipmiview/default.nix
A pkgs/applications/networking/feedreaders/rssguard/default.nix
M pkgs/applications/networking/instant-messengers/rambox/default.nix
M pkgs/applications/networking/syncthing/default.nix
M pkgs/applications/version-management/git-and-tools/git/default.nix
A pkgs/applications/video/kodi/commons.nix
M pkgs/applications/video/kodi/plugins.nix
M pkgs/applications/virtualization/virt-manager/default.nix
M pkgs/development/compilers/binaryen/default.nix
M pkgs/development/compilers/emscripten-fastcomp/default.nix
M pkgs/development/compilers/emscripten/default.nix
M pkgs/development/compilers/ghcjs/head.nix
M pkgs/development/libraries/libinput/default.nix
M pkgs/development/libraries/lmdb/default.nix
M pkgs/development/python-modules/Nikola/default.nix
M pkgs/development/python-modules/astroid/default.nix
M pkgs/development/python-modules/bootstrapped-pip/default.nix
M pkgs/development/python-modules/guessit/default.nix
M pkgs/development/python-modules/m2r/default.nix
M pkgs/development/python-modules/pandas/default.nix
A pkgs/development/python-modules/path.py/default.nix
M pkgs/development/python-modules/pyopencl/default.nix
A pkgs/development/python-modules/scikitlearn/default.nix
M pkgs/development/python-modules/simplejson/default.nix
A pkgs/development/python-modules/systemd/default.nix
M pkgs/development/tools/ammonite/default.nix
M pkgs/development/tools/continuous-integration/jenkins/default.nix
M pkgs/development/tools/git-series/default.nix
M pkgs/os-specific/linux/batman-adv/alfred.nix
M pkgs/os-specific/linux/batman-adv/batctl.nix
M pkgs/os-specific/linux/batman-adv/default.nix
M pkgs/os-specific/linux/drbd/default.nix
M pkgs/os-specific/linux/intel-ocl/default.nix
M pkgs/os-specific/linux/kernel/linux-testing.nix
M pkgs/servers/dns/knot-dns/default.nix
M pkgs/servers/emby/default.nix
M pkgs/servers/http/nginx/mainline.nix
M pkgs/servers/monitoring/grafana/default.nix
M pkgs/servers/radarr/default.nix
M pkgs/servers/sonarr/default.nix
M pkgs/servers/x11/xorg/overrides.nix
M pkgs/tools/misc/ckb/default.nix
M pkgs/tools/package-management/nix/default.nix
M pkgs/tools/security/hashcat/hashcat3/default.nix
M pkgs/tools/system/journalbeat/default.nix
M pkgs/tools/virtualization/cloud-init/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge remote-tracking branch 'upstream/master' into HEAD


  Commit: 8eddc20196230c78d440853614f58ebe18e38d05
  
https://github.com/NixOS/nixpkgs/commit/8eddc20196230c78d440853614f58ebe18e38d05
  Author: Franz Pletz 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26359 from lsix/update_libgcrypt_1_7_7

libgcrypt: 1.7.6 -> 1.7.7


  Commit: 67c1f0e65a541a321a1721a32dd83acfe90a1216
  
https://github.com/NixOS/nixpkgs/commit/67c1f0e65a541a321a1721a32dd83acfe90a1216
  Author: Tim Steinbach 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  openssl: 1.0.2k -> 1.0.2l

cc #26435


  Commit: 9135c9f73a4c34181d2bba1455d2f432b3c49065
  
https://github.com/NixOS/nixpkgs/commit/9135c9f73a4c34181d2bba1455d2f432b3c49065
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/development/libraries/gnutls/3.5.nix

  Log Message:
  ---
  gnutls: maintenance 3.5.12 -> 3.5.13

It contains a fix for DOS possibility in servers.
http://gnutls.org/security.html#GNUTLS-SA-2017-4


  Commit: 445b107d9399427f1df25437ff783160beed3fbb
  
https://github.com/NixOS/nixpkgs/commit/445b107d9399427f1df25437ff783160beed3fbb
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  openssh: fixup build on Hydra

http://hydra.nixos.org/build/53993444


  Commit: fad6fc3dae16b5161895165bf275e329e20860d6
  
https://github.com/NixOS/nixpkgs/commit/fad6fc3dae16b5161895165bf275e329e20860d6
  Author: Eelco Dolstra 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  icu: Trivial improvement


  Commit: 338cdea33244cca624793150102461827c01e8d2
  
https://github.com/NixOS/nixpkgs/commit/338cdea33244cca624793150102461827c01e8d2
  Author: Eelco 

Re: [Nix-dev] kdenlive fix build

2017-06-10 Thread Vladimír Čunát
On 06/10/2017 06:24 AM, Karn Kallio wrote:
> [...] The attached patch
> fixes the build by adding the Concurrent module to the find_package use.

Thanks!  Pushed to master as dc073726927.

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


[Nix-commits] [NixOS/nixpkgs] 3b24b1: cyrus_sasl: fix version

2017-06-10 Thread Vladimír Čunát
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  lbreakout2: init at 2.6.5


  Commit: 7badb92629191ea9d67ca855aa477d88272aeca9
  
https://github.com/NixOS/nixpkgs/commit/7badb92629191ea9d67ca855aa477d88272aeca9
  Author: Joachim F 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/editors/kdevelop5/kdevelop.nix
M pkgs/applications/editors/kdevelop5/kdevplatform.nix

  Log Message:
  ---
  Merge pull request #26404 from ambrop72/kdevelop-511

kdevelop: 5.0.4 -> 5.1.1


  Commit: f2e075a241bbf24a2d03c11c6516bac8d52cadf3
  
https://github.com/NixOS/nixpkgs/commit/f2e075a241bbf24a2d03c11c6516bac8d52cadf3
  Author: romildo 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  mkvtoolnix: 11.0.0 -> 12.0.0


  Commit: 184ab11fc9312eb03eb88b4881974e6ebe7c44df
  
https://github.com/NixOS/nixpkgs/commit/184ab11fc9312eb03eb88b4881974e6ebe7c44df
  Author: Frederik Rietdijk 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/virtualization/xen/generic.nix

  Log Message:
  ---
  Merge pull request #26484 from michalpalka/xen-python-fix

xen: fix pygrub by making sure it is wrapped


  Commit: b1f0af7ef67260724c914a823e87ea2b4516b7e9
  
https://github.com/NixOS/nixpkgs/commit/b1f0af7ef67260724c914a823e87ea2b4516b7e9
  Author: Joachim Fasting 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  linuxPackages.evdi: specify minimum kernel version, per upstream

Upstream says 3.16 is the oldest supported kernel.  No versions prior to
3.18 build on Hydra. See e.g., https://hydra.nixos.org/build/53599831.


  Commit: 39f7530e4715d1bf84b1ed8cabf6c196efe5e7ec
  
https://github.com/NixOS/nixpkgs/commit/39f7530e4715d1bf84b1ed8cabf6c196efe5e7ec
  Author: Joachim Fasting 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  tinycc: 0.9.27pre-20170527 -> 0.9.27pre-20170605

Contains further fix to x86_64 codegen (and some less relevant Windows
stuff).


  Commit: a78bf7df14f12bde2adde39ea5b41720933e7ba4
  
https://github.com/NixOS/nixpkgs/commit/a78bf7df14f12bde2adde39ea5b41720933e7ba4
  Author: Frederik Rietdijk 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26437 from vaibhavsagar/unbreak-thumbor

python.pkgs.thumbor: fix package


  Commit: cc9a72a286e83124abfbfc427bbdcb539341e138
  
https://github.com/NixOS/nixpkgs/commit/cc9a72a286e83124abfbfc427bbdcb539341e138
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/virtualization/virtualbox/guest-additions/default.nix

  Log Message:
  ---
  virtualboxGuestAdditions: don't install setuid/setgid


  Commit: fdf43ddf4a0d4a8d42cf32c2a623a2d35bbf158e
  
https://github.com/NixOS/nixpkgs/commit/fdf43ddf4a0d4a8d42cf32c2a623a2d35bbf158e
  Author: Jörg Thalheim 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26479 from jgertm/jgertm/buck

buck: build buckd as well


  Commit: 14eeae9d4e92b2c32ef78edb2310031fb4fe5b1e
  
https://github.com/NixOS/nixpkgs/commit/14eeae9d4e92b2c32ef78edb2310031fb4fe5b1e
  Author: Jörg Thalheim 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/build-support/cc-wrapper/default.nix
M pkgs/misc/vim-plugins/default.nix
M pkgs/misc/vim-plugins/vim2nix/additional-nix-code/clang_complete

  Log Message:
  ---
  Merge pull request #26474 from Mic92/cc-wrapper

cc-wrapper: externalize default_cxx_stdlib_compile


  Commit: 44681c53d68f212e7da33e0d27b6352a0103a863
  
https://github.com/NixOS/nixpkgs/commit/44681c53d68f212e7da33e0d27b6352a0103a863
  Author: romildo 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/window-managers/jwm/default.nix

  Log Message:
  ---
  jwm: 1582 -> 1594


  Commit: dd3dcceb239915f6929e09fcaf27e0b119f021c7
  
https://github.com/NixOS/nixpkgs/commit/dd3dcceb239915f6929e09fcaf27e0b119f021c7
  Author: Michał Pałka 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/virtualization/xen/4.5.nix

  Log Message:
  ---
  xen: patch for XSAs: 206, 211, 212, 213, 214 and 215

XSA-206 Issue Description:

> xenstored supports transactions, such that if writes which would
> invalidate assumptions of a transaction occur, the entire transaction
> fails.  Typical response on a failed transaction is

[Nix-commits] [NixOS/nixpkgs] 5bafc7: virtualboxGuestAdditions: don't install setuid/set...

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5bafc71b61301bac2233beee29985185ec95aa50
  
https://github.com/NixOS/nixpkgs/commit/5bafc71b61301bac2233beee29985185ec95aa50
  Author: Vladimír Čunát 
  Date:   2017-06-10 (Sat, 10 Jun 2017)

  Changed paths:
M pkgs/applications/virtualization/virtualbox/guest-additions/default.nix

  Log Message:
  ---
  virtualboxGuestAdditions: don't install setuid/setgid

(cherry picked from commit cc9a72a286e83124abfbfc427bbdcb539341e138)


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


[Nix-commits] [NixOS/nixpkgs] 458c44: pycairo: fix #26475 - another dead patch download

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 458c44a29d3437a04e674eb809d163465ec717c6
  
https://github.com/NixOS/nixpkgs/commit/458c44a29d3437a04e674eb809d163465ec717c6
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  pycairo: fix #26475 - another dead patch download

(cherry picked from commit d12497a23bf6d97c09631f50bc4712dffd37269f)


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


[Nix-commits] [NixOS/nixpkgs] d12497: pycairo: fix #26475 - another dead patch download

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d12497a23bf6d97c09631f50bc4712dffd37269f
  
https://github.com/NixOS/nixpkgs/commit/d12497a23bf6d97c09631f50bc4712dffd37269f
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  pycairo: fix #26475 - another dead patch download


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


[Nix-commits] [NixOS/nixpkgs] 97f300: pycairo: fix #26475 - a dead patch download

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 97f3009bf86c4db9188e7e6f6443e9ce7bf165b6
  
https://github.com/NixOS/nixpkgs/commit/97f3009bf86c4db9188e7e6f6443e9ce7bf165b6
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  pycairo: fix #26475 - a dead patch download


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


[Nix-commits] [NixOS/nixpkgs] 46a024: pycairo: fix #26475 - a dead patch download

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 46a0241ae26bdeac9ead3cf9b5b06fb5a53c80d8
  
https://github.com/NixOS/nixpkgs/commit/46a0241ae26bdeac9ead3cf9b5b06fb5a53c80d8
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

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

  Log Message:
  ---
  pycairo: fix #26475 - a dead patch download

(cherry picked from commit 97f3009bf86c4db9188e7e6f6443e9ce7bf165b6)


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


[Nix-commits] [NixOS/nixpkgs] cc9a72: virtualboxGuestAdditions: don't install setuid/set...

2017-06-09 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cc9a72a286e83124abfbfc427bbdcb539341e138
  
https://github.com/NixOS/nixpkgs/commit/cc9a72a286e83124abfbfc427bbdcb539341e138
  Author: Vladimír Čunát 
  Date:   2017-06-09 (Fri, 09 Jun 2017)

  Changed paths:
M pkgs/applications/virtualization/virtualbox/guest-additions/default.nix

  Log Message:
  ---
  virtualboxGuestAdditions: don't install setuid/setgid


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


Re: [Nix-dev] libpurple and PURPLE_PLUGIN_PATH

2017-06-08 Thread Vladimír Čunát
On 06/09/2017 02:17 AM, Bryan Richter wrote:
> I see that nixpkgs patches libpurple (pidgin) to look for plugins
> in paths specified by PURPLE_PLUGIN_PATH. Do I have to set that var
> manually?
> 
> I would hope that installing a plugin into my environment would update
> the variable automatically.

You want pidgin.override { plugins = [ . ]; }

> Are there other cases in the nixpkgs universe that match this pattern? [...]

Yes, plugin-style packaging is more complicated with nix.  Normally
packages assume there's one directory which collects all plugins of a
particular type, but we typically don't want that, so other ways are used.

--Vladimir



signature.asc
Description: OpenPGP digital signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 6718ab: shadow: fixup setuid/setgid build problems, hopefu...

2017-06-08 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6718abd71d06d5f7f5d9f7623d09d757c9fe934b
  
https://github.com/NixOS/nixpkgs/commit/6718abd71d06d5f7f5d9f7623d09d757c9fe934b
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  shadow: fixup setuid/setgid build problems, hopefully

(cherry picked from commit 833bc78dcf8fe8c00d0c8e835f49145be9b87523)


  Commit: 63e553a125cf2e260ecd8b337522d6efa071bd34
  
https://github.com/NixOS/nixpkgs/commit/63e553a125cf2e260ecd8b337522d6efa071bd34
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  util-linux: fixup setuid/setgid build problems

Taken from 1aac1fe5dd4676 on master but without refactoring.


  Commit: b8cc4590c847d89fb88647b4ed304a71a7ba16ce
  
https://github.com/NixOS/nixpkgs/commit/b8cc4590c847d89fb88647b4ed304a71a7ba16ce
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  nfs-utils: fixup setuid/setgid build problems, hopefully

(cherry picked from commit 10f9fb63f14fbe27dc9b516cca1eb2f72956f141)


  Commit: 80fc4f79764f985c2a4c96b27188932bc368aa0f
  
https://github.com/NixOS/nixpkgs/commit/80fc4f79764f985c2a4c96b27188932bc368aa0f
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  openssh: fixup build on Hydra

http://hydra.nixos.org/build/53993444
(cherry picked from commit 445b107d9399427f1df25437ff783160beed3fbb)


  Commit: ad413fdb584736e7db1dc7a17bd6d5384de95904
  
https://github.com/NixOS/nixpkgs/commit/ad413fdb584736e7db1dc7a17bd6d5384de95904
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

  Changed paths:
M pkgs/os-specific/linux/nfs-utils/default.nix
M pkgs/os-specific/linux/shadow/default.nix
M pkgs/os-specific/linux/util-linux/default.nix
M pkgs/tools/networking/openssh/default.nix

  Log Message:
  ---
  Merge: fixup setuid/setgid build problems

This should be enough for the small channel to succeed again.


  Commit: 52499b7a93d736daaba89144019d581e753f9515
  
https://github.com/NixOS/nixpkgs/commit/52499b7a93d736daaba89144019d581e753f9515
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  Merge #26452: libtiff: 4.0.7-6 -> 4.0.8-2

(cherry picked from commit bbec4f5af71100063b9bbe91e99d2495a50501ec)


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


[Nix-commits] [NixOS/nixpkgs] e9da05: zoom-us: init at 2.0.91373.0502

2017-06-08 Thread Vladimír Čunát
  Author: Yann Hodique 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/tools/misc/fzf/default.nix
M pkgs/tools/misc/fzf/deps.nix

  Log Message:
  ---
  fzf: 0.16.7 -> 0.16.8


  Commit: 4f4ba1186e05b95e452ef65ad73525dc83daefd9
  
https://github.com/NixOS/nixpkgs/commit/4f4ba1186e05b95e452ef65ad73525dc83daefd9
  Author: Eric Sagnes 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  pythonPackages.Fabric: 1.10.2 -> 1.13.2


  Commit: a8b9b9b0d8e1bc62e5aac164f55a69e6d08db4d2
  
https://github.com/NixOS/nixpkgs/commit/a8b9b9b0d8e1bc62e5aac164f55a69e6d08db4d2
  Author: Eric Sagnes 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

  Changed paths:
M pkgs/development/python-modules/Theano/theano-without-cuda/default.nix

  Log Message:
  ---
  pythonPackages.Theano: 0.8.1 -> 0.9.0


  Commit: 0d437af073ce6b55f337ba6a59141945b6070de2
  
https://github.com/NixOS/nixpkgs/commit/0d437af073ce6b55f337ba6a59141945b6070de2
  Author: Jörg Thalheim 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

  Changed paths:
M pkgs/tools/misc/fzf/default.nix
M pkgs/tools/misc/fzf/deps.nix

  Log Message:
  ---
  Merge pull request #26465 from sigma/pr/fzf-0.16.8

fzf: 0.16.7 -> 0.16.8


  Commit: 0576bda744c4d17eee26d8e056937529f7e04e04
  
https://github.com/NixOS/nixpkgs/commit/0576bda744c4d17eee26d8e056937529f7e04e04
  Author: Tim Jäger 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  vagrant: against libffi (#26440)

* Link vagrant against libffi

Vagrant requires libffi to run
with (vagrant-fsnotify)[https://github.com/adrienkohlbecker/vagrant-fsnotify].

* vagrant: nitpick


  Commit: a051c75e6f363f914b58bd8e86ce5b5fdd4d2f51
  
https://github.com/NixOS/nixpkgs/commit/a051c75e6f363f914b58bd8e86ce5b5fdd4d2f51
  Author: Frederik Rietdijk 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26466 from ericsagnes/pkg-update/Fab

pythonPackages.Fabric: 1.10.2 -> 1.13.2


  Commit: 340b3148c6fea8c5aedd1bd80d5d17f8aeca3d9e
  
https://github.com/NixOS/nixpkgs/commit/340b3148c6fea8c5aedd1bd80d5d17f8aeca3d9e
  Author: Jörg Thalheim 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26425 from uskudnik/idea-ultimate-minor-2017.1.3

idea.idea-ultimate: 2017.1.2 -> 2017.1.3


  Commit: a0afc4f0d19a0e5f18d2bb5729a40b4dd0d00da8
  
https://github.com/NixOS/nixpkgs/commit/a0afc4f0d19a0e5f18d2bb5729a40b4dd0d00da8
  Author: Rok Garbas 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

  Changed paths:
M pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
M pkgs/applications/networking/browsers/firefox-bin/default.nix
A pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
A pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
R pkgs/applications/networking/browsers/firefox-bin/sources.nix
M pkgs/applications/networking/browsers/firefox-bin/update.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  firefox-*-bin: updates (#26462)

* firefox-beta-bin: 51.0b8 -> 54.0b13

* firefox-devedition-bin: init at 54.0b14

Firefox DevEdition became a new product of Mozilla and is "repackaged"
Firefox Beta with its own release channel and six weeks release cycle as
other channels. It is no longer being built on nightly basis

* updated the update.nix script to facilitata firefox-devedition-bin

* disabling automatic updates by pointing to non existing channel

* f firefoxWrapper looks for gtk3 attribute to wrap the executable gtk3 to wrap 
the binary with needed ``XDG_DATA_DIRS``


  Commit: 50103e9c0874e66af13b8b7a76b6be588a215419
  
https://github.com/NixOS/nixpkgs/commit/50103e9c0874e66af13b8b7a76b6be588a215419
  Author: Frederik Rietdijk 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

  Changed paths:
M pkgs/development/python-modules/Theano/theano-without-cuda/default.nix

  Log Message:
  ---
  Merge pull request #26467 from ericsagnes/pkg-update/theano

pythonPackages.Theano: 0.8.1 -> 0.9.0


  Commit: 3cb5d52dacba10121f7a20dbbd18a856f849a3a7
  
https://github.com/NixOS/nixpkgs/commit/3cb5d52dacba10121f7a20dbbd18a856f849a3a7
  Author: James Kent 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  pkgs.python.astropy: init at 1.3.3


  Commit: 8b49936ad4db7499050aa6f57ce89d606c7382fe
  
https://github.com/NixOS/nixpkgs/commit/8b49936ad4db7499050aa6f57ce89d606c7382fe
  Author: Vladimír Čunát 
  Date:   2017-06-

[Nix-commits] [NixOS/nixpkgs] 10f9fb: nfs-utils: fixup setuid/setgid build problems, hop...

2017-06-08 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 10f9fb63f14fbe27dc9b516cca1eb2f72956f141
  
https://github.com/NixOS/nixpkgs/commit/10f9fb63f14fbe27dc9b516cca1eb2f72956f141
  Author: Vladimír Čunát 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  nfs-utils: fixup setuid/setgid build problems, hopefully


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


[Nix-commits] [NixOS/nixpkgs] 2ff56a: grib-api: Add grib-api to pythonPackages

2017-06-07 Thread Vladimír Čunát
64b27f2699f14b
  Author: Jan Malakhovski 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/build-support/fetchurl/mirrors.nix

  Log Message:
  ---
  fetchurl: add some https ImageMagick mirrors


  Commit: 66963789118f131deae8554a9b3e7ab527654e9d
  
https://github.com/NixOS/nixpkgs/commit/66963789118f131deae8554a9b3e7ab527654e9d
  Author: Jan Malakhovski 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  ImageMagick: 6.9.8-6 -> 6.9.8-9


  Commit: e249d6e8ce627e24ff2880350007a218fcf7b269
  
https://github.com/NixOS/nixpkgs/commit/e249d6e8ce627e24ff2880350007a218fcf7b269
  Author: Frederik Rietdijk 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  python.pkgs.characteristic: 14.1.0 -> 14.3.0


  Commit: db0235ce765df9741e9d99777e877a3100a30f1d
  
https://github.com/NixOS/nixpkgs/commit/db0235ce765df9741e9d99777e877a3100a30f1d
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-dns/default.nix

  Log Message:
  ---
  knot-dns: quick bugfix 2.5.0 -> 2.5.1


  Commit: ae6df000d0a5ea5a9b86709144a6878f15ede309
  
https://github.com/NixOS/nixpkgs/commit/ae6df000d0a5ea5a9b86709144a6878f15ede309
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M nixos/lib/test-driver/test-driver.pl
M pkgs/applications/graphics/ImageMagick/default.nix
M pkgs/applications/misc/synergy/default.nix
M pkgs/applications/misc/xterm/default.nix
M pkgs/applications/networking/irc/irssi/default.nix
M pkgs/applications/version-management/gitlab/Gemfile.lock
M pkgs/build-support/fetchurl/mirrors.nix
M pkgs/build-support/vm/windows/controller/default.nix
M pkgs/development/compilers/gcc/4.5/default.nix
M pkgs/development/compilers/gcc/4.8/default.nix
M pkgs/development/compilers/gcc/4.9/default.nix
M pkgs/development/compilers/gcc/5/default.nix
M pkgs/development/compilers/gcc/6/default.nix
M pkgs/development/compilers/gcc/snapshot/default.nix
M pkgs/development/libraries/grib-api/default.nix
M pkgs/development/libraries/openssl/default.nix
A pkgs/development/python-modules/characteristic/default.nix
M pkgs/development/tools/misc/binutils/default.nix
M pkgs/os-specific/linux/kernel/linux-4.11.nix
M pkgs/os-specific/linux/kernel/linux-4.4.nix
M pkgs/os-specific/linux/kernel/linux-4.9.nix
M pkgs/servers/dns/knot-dns/default.nix
M pkgs/tools/text/silver-searcher/default.nix
M pkgs/tools/text/xml/jing-trang/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/python-packages.nix

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


  Commit: bbec4f5af71100063b9bbe91e99d2495a50501ec
  
https://github.com/NixOS/nixpkgs/commit/bbec4f5af71100063b9bbe91e99d2495a50501ec
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  Merge #26452: libtiff: 4.0.7-6 -> 4.0.8-2


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


[Nix-commits] [NixOS/nixpkgs] db0235: knot-dns: quick bugfix 2.5.0 -> 2.5.1

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: db0235ce765df9741e9d99777e877a3100a30f1d
  
https://github.com/NixOS/nixpkgs/commit/db0235ce765df9741e9d99777e877a3100a30f1d
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/servers/dns/knot-dns/default.nix

  Log Message:
  ---
  knot-dns: quick bugfix 2.5.0 -> 2.5.1


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


[Nix-commits] [NixOS/nixpkgs] 1aac1f: util-linux: fixup setuid/setgid build problems

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1aac1fe5dd46767b81a62b9eb7169c2421bbe366
  
https://github.com/NixOS/nixpkgs/commit/1aac1fe5dd46767b81a62b9eb7169c2421bbe366
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  util-linux: fixup setuid/setgid build problems

... hopefully.  Also refactor some nix code a little.


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


[Nix-commits] [NixOS/nixpkgs] 833bc7: shadow: fixup setuid/setgid build problems, hopefu...

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 833bc78dcf8fe8c00d0c8e835f49145be9b87523
  
https://github.com/NixOS/nixpkgs/commit/833bc78dcf8fe8c00d0c8e835f49145be9b87523
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  shadow: fixup setuid/setgid build problems, hopefully


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


[Nix-commits] [NixOS/nixpkgs] 23ca0d: gnutls: maintenance 3.5.10 -> 3.5.13

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 23ca0dddec3e1e915b122c2fc555647611ca3c25
  
https://github.com/NixOS/nixpkgs/commit/23ca0dddec3e1e915b122c2fc555647611ca3c25
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/development/libraries/gnutls/3.5.nix

  Log Message:
  ---
  gnutls: maintenance 3.5.10 -> 3.5.13

It contains a fix for DOS possibility in servers.
http://gnutls.org/security.html#GNUTLS-SA-2017-4

(cherry picked from commit 9135c9f73a4c34181d2bba1455d2f432b3c49065)


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


[Nix-commits] [NixOS/nixpkgs] 445b10: openssh: fixup build on Hydra

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 445b107d9399427f1df25437ff783160beed3fbb
  
https://github.com/NixOS/nixpkgs/commit/445b107d9399427f1df25437ff783160beed3fbb
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

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

  Log Message:
  ---
  openssh: fixup build on Hydra

http://hydra.nixos.org/build/53993444


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


[Nix-commits] [NixOS/nixpkgs] 9135c9: gnutls: maintenance 3.5.12 -> 3.5.13

2017-06-07 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9135c9f73a4c34181d2bba1455d2f432b3c49065
  
https://github.com/NixOS/nixpkgs/commit/9135c9f73a4c34181d2bba1455d2f432b3c49065
  Author: Vladimír Čunát 
  Date:   2017-06-07 (Wed, 07 Jun 2017)

  Changed paths:
M pkgs/development/libraries/gnutls/3.5.nix

  Log Message:
  ---
  gnutls: maintenance 3.5.12 -> 3.5.13

It contains a fix for DOS possibility in servers.
http://gnutls.org/security.html#GNUTLS-SA-2017-4


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


[Nix-commits] [NixOS/nixpkgs] ed93e8: libressl: work around some problem with man pages

2017-06-02 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ed93e8e16b57578e37aaefca0da941de6e3026fe
  
https://github.com/NixOS/nixpkgs/commit/ed93e8e16b57578e37aaefca0da941de6e3026fe
  Author: Vladimír Čunát 
  Date:   2017-06-02 (Fri, 02 Jun 2017)

  Changed paths:
M pkgs/development/libraries/libressl/2.5.nix

  Log Message:
  ---
  libressl: work around some problem with man pages

https://github.com/NixOS/nixpkgs/commit/20ffc3cd73#commitcomment-22368612


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


[Nix-commits] [NixOS/nixpkgs] dfebb6: systemd: v232 -> v233

2017-06-02 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dfebb66f657240e5448a98d9efc90d4c66825274
  
https://github.com/NixOS/nixpkgs/commit/dfebb66f657240e5448a98d9efc90d4c66825274
  Author: Jörg Thalheim 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  systemd: v232 -> v233

Changelog: https://github.com/systemd/systemd/blob/v233/NEWS

Upgrade was pretty smooth. One notably change is the new hybrid cgroup
mode: https://github.com/systemd/systemd/blob/v233/NEWS#L5 It should
provide better compatibility with docker.


  Commit: 3a994fb57920c33e123605df62fe2ac238884695
  
https://github.com/NixOS/nixpkgs/commit/3a994fb57920c33e123605df62fe2ac238884695
  Author: Eelco Dolstra 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  Merge pull request #26231 from Mic92/systemd

systemd: v232 -> v233


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

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

  Log Message:
  ---
  libuv: 1.11.0 -> 1.12.0

The changelog seems safe; I tried some reverse dependencies, too.


  Commit: 983657087b739fd3fc735165e4f095f177218a6e
  
https://github.com/NixOS/nixpkgs/commit/983657087b739fd3fc735165e4f095f177218a6e
  Author: Vladimír Čunát 
  Date:   2017-05-30 (Tue, 30 May 2017)

  Changed paths:
M doc/cross-compilation.xml
M lib/maintainers.nix
M lib/strings.nix
M lib/systems/default.nix
A lib/systems/examples.nix
M lib/systems/platforms.nix
M nixos/modules/config/pulseaudio.nix
M nixos/modules/module-list.nix
A nixos/modules/programs/gnupg.nix
M nixos/modules/programs/ssh.nix
M nixos/modules/services/databases/mysql.nix
M nixos/modules/services/monitoring/arbtt.nix
M nixos/modules/services/networking/firewall.nix
M nixos/modules/services/x11/compton.nix
M nixos/modules/services/x11/display-managers/default.nix
M nixos/modules/services/x11/redshift.nix
M nixos/modules/services/x11/unclutter-xfixes.nix
M nixos/modules/services/x11/unclutter.nix
M nixos/modules/services/x11/urxvtd.nix
M nixos/modules/services/x11/xbanish.nix
M pkgs/applications/misc/gpxsee/default.nix
M pkgs/applications/networking/browsers/chromium/common.nix
A 
pkgs/applications/networking/browsers/chromium/patches/fix-bootstrap-gn.patch
M pkgs/applications/networking/browsers/chromium/upstream-info.nix
M pkgs/applications/networking/instant-messengers/scudcloud/default.nix
M pkgs/applications/networking/sync/unison/default.nix
M pkgs/applications/science/math/geogebra/default.nix
M pkgs/applications/virtualization/OVMF/default.nix
M pkgs/development/compilers/colm/default.nix
M pkgs/development/compilers/fstar/default.nix
A pkgs/development/compilers/llvm/4/lldb-libedit.patch
M pkgs/development/compilers/llvm/4/lldb.nix
M pkgs/development/interpreters/perl/default.nix
M pkgs/development/libraries/libfilezilla/default.nix
A pkgs/development/python-modules/alembic/default.nix
A pkgs/development/python-modules/argcomplete/default.nix
M pkgs/development/python-modules/django-compat/default.nix
A pkgs/development/python-modules/django-hijack/default.nix
A pkgs/development/python-modules/flask-migrate/default.nix
M pkgs/development/python-modules/pandas/default.nix
A pkgs/development/python-modules/pytest-localserver/default.nix
M pkgs/development/python-modules/scrapy/permissions-fix.patch
M pkgs/development/python-modules/tensorflow/default.nix
M pkgs/development/python-modules/txaio/default.nix
M pkgs/development/tools/build-managers/ninja/default.nix
M pkgs/development/tools/misc/global/default.nix
M pkgs/development/tools/parsing/ragel/default.nix
M pkgs/games/wesnoth/dev.nix
M pkgs/os-specific/linux/kernel/linux-testing.nix
M pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
M pkgs/tools/backup/restic/default.nix
M pkgs/tools/graphics/ditaa/default.nix
M pkgs/tools/misc/hdf5/default.nix
A pkgs/tools/misc/vimer/default.nix
M pkgs/tools/networking/i2pd/default.nix
M pkgs/tools/networking/imapsync/default.nix
A pkgs/tools/networking/mcrcon/default.nix
M pkgs/tools/networking/network-manager/default.nix
A pkgs/tools/networking/network-manager/openconnect_helper_path.patch
M pkgs/tools/typesetting/halibut/default.nix
A pkgs/tools/virtualization/cloudmonkey/default.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/perl-packages.nix
M pkgs/top-level/python-packages.nix
M pkgs/top-level/release-cross.nix

  Log Message:
  ---
  Merge branch 'master

[Nix-commits] [NixOS/nixpkgs] 6f5edd: mesa: maintenance 17.0.2 -> 17.0.7

2017-06-01 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6f5edd3bc2fff58cbad399b7e6158a80d7a35c36
  
https://github.com/NixOS/nixpkgs/commit/6f5edd3bc2fff58cbad399b7e6158a80d7a35c36
  Author: Vladimír Čunát 
  Date:   2017-06-01 (Thu, 01 Jun 2017)

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

  Log Message:
  ---
  mesa: maintenance 17.0.2 -> 17.0.7

Expected to be the last update of the branch.  I somehow neglected
maintenance updates on 17.03 after master got updated to mesa-17.1.x


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


[Nix-commits] [NixOS/nixpkgs] e67c1b: nvidia module: link proper output as OpenGL driver...

2017-05-31 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e67c1b7d9a6b051cd17aaa81255c600ef3830ba4
  
https://github.com/NixOS/nixpkgs/commit/e67c1b7d9a6b051cd17aaa81255c600ef3830ba4
  Author: Nikolay Amiantov 
  Date:   2017-05-31 (Wed, 31 May 2017)

  Changed paths:
M nixos/modules/hardware/video/nvidia.nix

  Log Message:
  ---
  nvidia module: link proper output as OpenGL drivers

(cherry picked from commit d09e3535f5263add321ef0607be8a75d76b2376c)


  Commit: 0dfad6720349edb5936ede74e368f74a234594b3
  
https://github.com/NixOS/nixpkgs/commit/0dfad6720349edb5936ede74e368f74a234594b3
  Author: Vladimír Čunát 
  Date:   2017-05-31 (Wed, 31 May 2017)

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

  Log Message:
  ---
  nvidia_x11_legacy304: 304.134 -> 304.135

(cherry picked from commit af58f8de55d836ddd266bc99be10251ae3703c99)


  Commit: 05126bc8503a37bfd2fe80867eb5b0bea287c633
  
https://github.com/NixOS/nixpkgs/commit/05126bc8503a37bfd2fe80867eb5b0bea287c633
  Author: Vladimír Čunát 
  Date:   2017-05-31 (Wed, 31 May 2017)

  Changed paths:
M pkgs/os-specific/linux/nvidia-x11/generic.nix

  Log Message:
  ---
  nvidia_x11_legacy304: apply patches from Debian

The drivers would build but probably wouldn't work without them.
See #26250.

(cherry picked from commit 0c4b91505ed6f5ec6475468cb07c3ef8018eed34)


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


[Nix-commits] [NixOS/nixpkgs] 7cbf7f: nvidia module: allow .persistenced == null

2017-05-30 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7cbf7f54c1796673fc49d17da2144e39a67e2513
  
https://github.com/NixOS/nixpkgs/commit/7cbf7f54c1796673fc49d17da2144e39a67e2513
  Author: Vladimír Čunát 
  Date:   2017-05-30 (Tue, 30 May 2017)

  Changed paths:
M nixos/modules/hardware/video/nvidia.nix

  Log Message:
  ---
  nvidia module: allow .persistenced == null

Fixes #26250.  This is fallout from PR #22304.
It's null for 304 and 173 legacy drivers.

(cherry picked from commit bc7b895aa57c52e30eb392ff2527dc850b72c87b)


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


[Nix-commits] [NixOS/nixpkgs] bc7b89: nvidia module: allow .persistenced == null

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

  Changed paths:
M nixos/modules/hardware/video/nvidia.nix

  Log Message:
  ---
  nvidia module: allow .persistenced == null

Fixes #26250.  This is fallout from PR #22304.
It's null for 304 and 173 legacy drivers.


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


[Nix-commits] [NixOS/nixpkgs] f469bd: mysql service: change default data directory for 1...

2017-05-30 Thread Vladimír Čunát
5627cb5bb387669957726c857e58f5fe2
  Author: Pascal Wittmann 
  Date:   2017-05-30 (Tue, 30 May 2017)

  Changed paths:
M pkgs/development/tools/misc/global/default.nix

  Log Message:
  ---
  global: 6.5.6 -> 6.5.7


  Commit: a1c15989aa8363a80f32123ea0030ecef68576a9
  
https://github.com/NixOS/nixpkgs/commit/a1c15989aa8363a80f32123ea0030ecef68576a9
  Author: Robert Scott 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  python.pkgs.flask_migrate: 1.7.0 -> 2.0.3

fixes build against new dependencies after some test tinkering, seems
we can remove the python3-patching as there exists a "python" symlink now


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

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

  Log Message:
  ---
  Merge pull request #26233 from risicle/flask-migrate-bump

python.pkgs.flask_migrate: 1.7.0 -> 2.0.3


  Commit: 538aa0f808479dcf04d1931e07a4e02c872a260a
  
https://github.com/NixOS/nixpkgs/commit/538aa0f808479dcf04d1931e07a4e02c872a260a
  Author: Vladimír Čunát 
  Date:   2017-05-30 (Tue, 30 May 2017)

  Changed paths:
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/libc++abi.nix
M pkgs/development/compilers/llvm/4/lld.nix
M pkgs/development/compilers/llvm/4/lldb.nix
M pkgs/development/compilers/llvm/4/llvm.nix
M pkgs/development/compilers/llvm/4/openmp.nix
M pkgs/development/libraries/libdrm/default.nix
M pkgs/development/libraries/libtasn1/default.nix
M pkgs/development/libraries/mesa/default.nix
M pkgs/development/libraries/mesa/symlink-drivers.patch
M pkgs/development/libraries/polkit/default.nix
M pkgs/development/python-modules/ldap.nix
M pkgs/development/tools/rtags/default.nix
R pkgs/os-specific/darwin/apple-source-releases/CF/add-cf-initialize.patch
M pkgs/os-specific/darwin/apple-source-releases/CF/default.nix
A pkgs/os-specific/darwin/apple-source-releases/CF/remove-xpc.patch
A pkgs/os-specific/darwin/apple-source-releases/ICU/default.nix
M pkgs/os-specific/darwin/apple-source-releases/Libsystem/default.nix
M pkgs/os-specific/darwin/apple-source-releases/default.nix
M pkgs/os-specific/darwin/apple-source-releases/libdispatch/default.nix
A pkgs/os-specific/darwin/apple-source-releases/libplatform/default.nix
M pkgs/stdenv/darwin/default.nix
M pkgs/tools/text/diffutils/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge branch 'staging' (early part)

The comparison looks nice on Hydra.


  Commit: 9f3c2bc8390b9e4f6f2b4cb37f08bb74fca83e27
  
https://github.com/NixOS/nixpkgs/commit/9f3c2bc8390b9e4f6f2b4cb37f08bb74fca83e27
  Author: Kranium Gikos Mendoza 
  Date:   2017-05-31 (Wed, 31 May 2017)

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

  Log Message:
  ---
  gpxsee: 4.3 -> 4.8


  Commit: 1e51fdc2cd77f3f68fe12406de002dd21bdcae01
  
https://github.com/NixOS/nixpkgs/commit/1e51fdc2cd77f3f68fe12406de002dd21bdcae01
  Author: Edward Tjörnhammar 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  i2pd: disable AVX instructions


  Commit: 53835c93cb4bc1c6228ee04d6788398a8ab36ab4
  
https://github.com/NixOS/nixpkgs/commit/53835c93cb4bc1c6228ee04d6788398a8ab36ab4
  Author: Edward Tjörnhammar 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  i2pd: homepage update


  Commit: 46bcd051858af15e2ee771bc46248b1d5e44bc8c
  
https://github.com/NixOS/nixpkgs/commit/46bcd051858af15e2ee771bc46248b1d5e44bc8c
  Author: Gabriel Ebner 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  Merge pull request #26241 from womfoo/bump/gpxsee-3.8

gpxsee: 4.3 -> 4.8


  Commit: 3c83ce30142426807dd7fdef02e2e404f6ad5d9e
  
https://github.com/NixOS/nixpkgs/commit/3c83ce30142426807dd7fdef02e2e404f6ad5d9e
  Author: Matthias Beyer 
  Date:   2017-05-30 (Tue, 30 May 2017)

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

  Log Message:
  ---
  pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7 (#26238)

* pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7

* pythonPackages.pytest-localserver: Change to use python packaging tools

* pythonPackages.pytest-localserver: Move to own file


  Commit: 13181204841f151a07d1e75155d24daa64

[Nix-commits] [NixOS/nixpkgs] 9aa354: llvm-4/clang-4: Build and install man pages

2017-05-30 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9aa3548931e90d3a853c0cbf7fe45efe7f3b6a5a
  
https://github.com/NixOS/nixpkgs/commit/9aa3548931e90d3a853c0cbf7fe45efe7f3b6a5a
  Author: Will Dietz 
  Date:   2017-05-19 (Fri, 19 May 2017)

  Changed paths:
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/llvm.nix

  Log Message:
  ---
  llvm-4/clang-4: Build and install man pages


  Commit: 3d1c1c5af3e1d97c2c6d0baf877817d09bb0c444
  
https://github.com/NixOS/nixpkgs/commit/3d1c1c5af3e1d97c2c6d0baf877817d09bb0c444
  Author: Will Dietz 
  Date:   2017-05-19 (Fri, 19 May 2017)

  Changed paths:
M pkgs/development/compilers/llvm/4/clang/default.nix
M pkgs/development/compilers/llvm/4/libc++abi.nix
M pkgs/development/compilers/llvm/4/lld.nix
M pkgs/development/compilers/llvm/4/lldb.nix
M pkgs/development/compilers/llvm/4/llvm.nix
M pkgs/development/compilers/llvm/4/openmp.nix

  Log Message:
  ---
  llvm-4/*: indicate which build inputs are nativeBuildInputs.


  Commit: 1e23b49f4652915a274781569abb21a07884e858
  
https://github.com/NixOS/nixpkgs/commit/1e23b49f4652915a274781569abb21a07884e858
  Author: Daiderd Jordan 
  Date:   2017-05-21 (Sun, 21 May 2017)

  Changed paths:
M pkgs/stdenv/darwin/default.nix

  Log Message:
  ---
  darwin-stdenv: allow clang-unwrapped.man


  Commit: bd500816f75d326720c096d78db3932e3fadd9ab
  
https://github.com/NixOS/nixpkgs/commit/bd500816f75d326720c096d78db3932e3fadd9ab
  Author: Armijn Hemel 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/tools/text/diffutils/default.nix

  Log Message:
  ---
  diffutils: 3.5 -> 3.6


  Commit: 105f51f151a1a1f446b86aea677ac23c0144abd8
  
https://github.com/NixOS/nixpkgs/commit/105f51f151a1a1f446b86aea677ac23c0144abd8
  Author: Eelco Dolstra 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/tools/text/diffutils/default.nix

  Log Message:
  ---
  Merge pull request #26057 from armijnhemel/diffutils-3.6

diffutils: 3.5 -> 3.6


  Commit: 5479f742e66e90b298353a8df858840d374e1515
  
https://github.com/NixOS/nixpkgs/commit/5479f742e66e90b298353a8df858840d374e1515
  Author: Franz Pletz 
  Date:   2017-05-25 (Thu, 25 May 2017)

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

  Log Message:
  ---
  libtasn1: apply patch to fix CVE-2017-6891


  Commit: e7fa6220d622bf352a06a4328da8679fbfffced3
  
https://github.com/NixOS/nixpkgs/commit/e7fa6220d622bf352a06a4328da8679fbfffced3
  Author: Nikolay Amiantov 
  Date:   2017-05-25 (Thu, 25 May 2017)

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

  Log Message:
  ---
  polkit: add patches from Fedora

This fixes few leaks and adds ITS description files which are needed for some
reverse dependencies.


  Commit: ae8aae1ee80e4dd10435159f35b9511a12df95eb
  
https://github.com/NixOS/nixpkgs/commit/ae8aae1ee80e4dd10435159f35b9511a12df95eb
  Author: Frederik Rietdijk 
  Date:   2017-05-26 (Fri, 26 May 2017)

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

  Log Message:
  ---
  python.pkgs.urllib3: disable tests

because there are transient failures too often.


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

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

  Log Message:
  ---
  libdrm: 2.4.79 -> 2.4.81


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

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

  Log Message:
  ---
  libdrm: support valgrind suppression via a lighter version

Fixes #25917.  It's all only about build-time dependency bloat and
consequent rebuild propagation.


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

  Changed paths:
M doc/cross-compilation.xml
M lib/types.nix
A maintainers/scripts/update-python-libraries
M nixos/doc/manual/development/option-types.xml
M nixos/doc/manual/release-notes/rl-1709.xml
A nixos/modules/hardware/nitrokey.nix
M nixos/modules/module-list.nix
M nixos/modules/programs/environment.nix
M nixos/modules/programs/zsh/oh-my-zsh.nix
M nixos/modules/rename.nix
A nixos/modules/service-managers/docker.nix
A nixos/modules/service-managers/trivial.nix
A nixos/modules/services/logging/SystemdJournal2Gelf.nix
M nixos/modules/services/mail/mlmmj.n

Re: [Nix-dev] hydra problems

2017-05-30 Thread Vladimír Čunát
On 05/30/2017 12:29 PM, Danylo Hlynskyi wrote:
> 1. https://hydra.nixos.org seems to have problems with HTTPS: in my
> Firefox.

I can't reproduce that.  Perhaps some transient problem?

> 2. no build results can be downloaded

They aren't stored on Hydra (for months, maybe a couple years now).  I
think the easiest way to get the results is to pass their paths to
`nix-store --realize` which will fetch them from the binary cache.

--Vladimir

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


[Nix-commits] [NixOS/nixpkgs] 2ff488: python.pkgs.django_hijack

2017-05-29 Thread Vladimír Čunát
ment/python-modules/pylint/default.nix

  Log Message:
  ---
  python.pkgs.pylint: add pytestrunner to buildInputs


  Commit: 03ba5ef6d3d45d140dbb233beabfbadc94da4283
  
https://github.com/NixOS/nixpkgs/commit/03ba5ef6d3d45d140dbb233beabfbadc94da4283
  Author: Frederik Rietdijk 
  Date:   2017-05-29 (Mon, 29 May 2017)

  Changed paths:
M pkgs/development/python-modules/hypothesis.nix
M pkgs/development/python-modules/ldap.nix
M pkgs/development/python-modules/pylibmc/default.nix
M pkgs/development/python-modules/pylint/default.nix

  Log Message:
  ---
  Merge pull request #26198 from risicle/varied-minor-python-pkgs-fixes

python.pkgs: hypothesis, pylibmc, ldap, pylint: minor build fixes


  Commit: 78b62836f5cd02626ffaff7f05071e19368f2ea8
  
https://github.com/NixOS/nixpkgs/commit/78b62836f5cd02626ffaff7f05071e19368f2ea8
  Author: Will Dietz 
  Date:   2017-05-29 (Mon, 29 May 2017)

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

  Log Message:
  ---
  lynx: Fix SSL, widec support (#26134)

* lynx: Fix SSL support by letting it use pkgconfig

lynx wants both the "include" and "lib/lib*.so" paths
to be children of the path given to "--with-ssl",
which is not provided by any of the current openssl outputs.

To fix lynx so it supports SSL (and https URLs),
let it use pkgconfig to figure out where openssl's bits are.

* lynx: Always enable widec support.


  Commit: b34f33665f225f34d279ac5a8b0f2d33b2990aec
  
https://github.com/NixOS/nixpkgs/commit/b34f33665f225f34d279ac5a8b0f2d33b2990aec
  Author: Jörg Thalheim 
  Date:   2017-05-29 (Mon, 29 May 2017)

  Changed paths:
A pkgs/development/libraries/physics/cernlib/default.nix
A pkgs/development/libraries/physics/cernlib/patch
A pkgs/development/libraries/physics/cernlib/setup-hook.sh
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #26179 from veprbl/cernlib

cernlib: init at 2006


  Commit: 46de05a3dd6975e5db4cf06eca49e579557a03d6
  
https://github.com/NixOS/nixpkgs/commit/46de05a3dd6975e5db4cf06eca49e579557a03d6
  Author: Pascal Wittmann 
  Date:   2017-05-29 (Mon, 29 May 2017)

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

  Log Message:
  ---
  dmenu: 4.6 -> 4.7


  Commit: f6ef5614a0f23d23c9494811bb1ac3b35d2a07c6
  
https://github.com/NixOS/nixpkgs/commit/f6ef5614a0f23d23c9494811bb1ac3b35d2a07c6
  Author: Pascal Wittmann 
  Date:   2017-05-29 (Mon, 29 May 2017)

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

  Log Message:
  ---
  radicale: 1.1.1 -> 1.1.2, fixes CVE-2017-8342


  Commit: 1c6abe0230087a9072812023d42ea32e8126bf87
  
https://github.com/NixOS/nixpkgs/commit/1c6abe0230087a9072812023d42ea32e8126bf87
  Author: romildo 
  Date:   2017-05-29 (Mon, 29 May 2017)

  Changed paths:
M pkgs/development/tools/ocaml/merlin/default.nix

  Log Message:
  ---
  merlin: 2.5.3 -> 2.5.4

- Update to version 2.5.4.
- Remove dependency on menhir, which seems not needed.


  Commit: 05a82a9fd0030288b1daea6eb374acdf58926f88
  
https://github.com/NixOS/nixpkgs/commit/05a82a9fd0030288b1daea6eb374acdf58926f88
  Author: Pascal Wittmann 
  Date:   2017-05-29 (Mon, 29 May 2017)

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

  Log Message:
  ---
  homebank: 5.1.4 -> 5.1.5


  Commit: 9b605ca04118d2ab1604f40906d925540cf392b0
  
https://github.com/NixOS/nixpkgs/commit/9b605ca04118d2ab1604f40906d925540cf392b0
  Author: Pascal Wittmann 
  Date:   2017-05-29 (Mon, 29 May 2017)

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

  Log Message:
  ---
  fsql: 0.1.0 -> 0.1.1


  Commit: 02032dbda4968c7ec65a6ead0e8619792d4a9145
      
https://github.com/NixOS/nixpkgs/commit/02032dbda4968c7ec65a6ead0e8619792d4a9145
  Author: Vladimír Čunát 
  Date:   2017-05-29 (Mon, 29 May 2017)

  Changed paths:
M lib/maintainers.nix
M nixos/modules/services/networking/tinc.nix
M pkgs/applications/misc/dmenu/default.nix
M pkgs/applications/networking/browsers/lynx/default.nix
M pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
M pkgs/applications/office/homebank/default.nix
M 
pkgs/applications/version-management/git-and-tools/git-annex-remote-rclone/default.nix
M pkgs/build-support/trivial-builders.nix
M pkgs/development/compilers/tinycc/default.nix
M pkgs/development/haskell-modules/generic-builder.nix
A pkgs/development/libraries/physics/cernlib/default.nix
A pkgs/development/libraries/physics/cernlib/patch
A pkgs/development/libraries/physics/cernlib/setup-hook.sh
M pkgs/development/ocaml-modules/cmdliner/default.nix
M pkgs/development/python-modules/hypothesis.nix
M pkgs/development/python-modules/ldap.nix
M pkgs/development/python-modules/pylibmc/default.nix
M pkgs/development/python-modules

[Nix-commits] [NixOS/nixpkgs] 1f407a: mesa: feature update 17.0.6 -> 17.1.1

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

  Changed paths:
M pkgs/development/libraries/mesa/default.nix
M pkgs/development/libraries/mesa/symlink-drivers.patch

  Log Message:
  ---
  mesa: feature update 17.0.6 -> 17.1.1

Main changes: https://www.mesa3d.org/relnotes/17.1.0.html
- two options got renamed
- "ilo" driver was removed upstream
- python is no longer needed for build

I tested nouveau for a bit.


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


[Nix-commits] [NixOS/nixpkgs] a3539a: openmpt123: don't build pulseaudio driver

2017-05-27 Thread Vladimír Čunát
s what the old code did.
This one should have the three distinct platform hashes.


  Commit: 8a07319e7fb086f9c6cbd47602773f10f3eb49fa
  
https://github.com/NixOS/nixpkgs/commit/8a07319e7fb086f9c6cbd47602773f10f3eb49fa
  Author: Eelco Dolstra 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  ixgbevf: 4.0.3 -> 4.1.2

This fixes

  error: assertion failed at 
/home/eelco/Dev/nixpkgs-stable/pkgs/os-specific/linux/ixgbevf/default.nix:3:1
  (use ‘--show-trace’ to show detailed location information)

deploying a >=4.10 kernel to EC2. (We could probably also drop the
ixgbevf package with recent kernels, since the ixgbevf module included
in the kernel source tree is recent enough according to Amazon's
recommendation.)


  Commit: ee4f8c2dc98f10b75242b526245229e24baa6010
  
https://github.com/NixOS/nixpkgs/commit/ee4f8c2dc98f10b75242b526245229e24baa6010
  Author: Nikolay Amiantov 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M lib/types.nix
M nixos/doc/manual/development/option-types.xml

  Log Message:
  ---
  nixos doc: document coercedTo type

Also mention about docs in types.nix and fix a small error in related
documentation.

Fixes #26055.


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

  Changed paths:
M nixos/tests/plasma5.nix

  Log Message:
  ---
  plasma5 tests: fix by using older fontconfig-penultimate

enable = false; didn't help, but downgrading did.  It's a mystery to me.
Discussion: https://github.com/NixOS/nixpkgs/commit/c9f8fb4d127a


  Commit: 812e8ed1b59aadfcac9f823bad29de82fd2564de
  
https://github.com/NixOS/nixpkgs/commit/812e8ed1b59aadfcac9f823bad29de82fd2564de
  Author: Jaka Hudoklin 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/applications/networking/cluster/helm/default.nix

  Log Message:
  ---
  Merge pull request #26006 from benley/helm-completion

kubernetes-helm: Enable bash and zsh completion


  Commit: 65477dcd341dcdcdc58b01e362e18a903bf94874
  
https://github.com/NixOS/nixpkgs/commit/65477dcd341dcdcdc58b01e362e18a903bf94874
  Author: Masayuki Takeda 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  Python fetchPypi: support an extension

Many source archives on PyPI are tar.gz archives.
Not all are, and therefore this commit adds the possibility
to set the extension of the archive.


  Commit: 5677ce200831a83a7b3d37f2cfc4ec00c1095bc5
  
https://github.com/NixOS/nixpkgs/commit/5677ce200831a83a7b3d37f2cfc4ec00c1095bc5
  Author: michael bishop 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/build-support/libredirect/libredirect.c

  Log Message:
  ---
  libredirect: allow null paths


  Commit: 028f259ce24a754824d135975392841f15c40946
  
https://github.com/NixOS/nixpkgs/commit/028f259ce24a754824d135975392841f15c40946
  Author: Bastian Köcher 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  Updates Yakuake to version 3.0.3 and exposes the .desktop


  Commit: 00572d595c2aaec1d8196fb913a018696326e824
  
https://github.com/NixOS/nixpkgs/commit/00572d595c2aaec1d8196fb913a018696326e824
  Author: Mateusz Naściszewski 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/applications/networking/ipfs/default.nix
M pkgs/build-support/fetchgx/default.nix

  Log Message:
  ---
  ipfs: 0.4.6 -> 0.4.9


  Commit: 4b4226ab4a8ccf2e631290d3c687ed344ef8d173
  
https://github.com/NixOS/nixpkgs/commit/4b4226ab4a8ccf2e631290d3c687ed344ef8d173
  Author: Mikael Brockman 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  ethabi: add cli feature

This flag makes the CLI binary do anything at all, and without it
the package is completely useless.


  Commit: 1a8779eb34a93c5c7e7f163ae435f18746302d4c
  
https://github.com/NixOS/nixpkgs/commit/1a8779eb34a93c5c7e7f163ae435f18746302d4c
  Author: Jamie Rolfs 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  yarn: 0.23.4 -> 0.24.6


  Commit: 47fa2a1ebbdcee3c552b0da1c081b94780dbdbf0
  
https://github.com/NixOS/nixpkgs/commit/47fa2a1ebbdcee3c552b0da1c081b94780dbdbf0
  Author: Peter Simons 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml

  Log Message:
  ---
  LTS Haskell 8.15


  Commit: 503ec213a2963c064001e209a1a2bf30713ca937
  
https://github.com/NixOS/nixpkgs/commit/503ec213a2963c064001e209a

[Nix-commits] [NixOS/nixpkgs] ab8bcd: pytestcov: 2.3.1 -> 2.4.0

2017-05-26 Thread Vladimír Čunát
 compiler arguments


  Commit: 2dd351114635c19e5ba6a62a7b201dee0d35e0f9
  
https://github.com/NixOS/nixpkgs/commit/2dd351114635c19e5ba6a62a7b201dee0d35e0f9
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-05-01 (Mon, 01 May 2017)

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

  Log Message:
  ---
  Merge pull request #24827 from johbo/trytond-dependencies

Trytond dependencies updates


  Commit: 1bcd56b6e659f22c89ac6ec0411c9dd30866f68f
  
https://github.com/NixOS/nixpkgs/commit/1bcd56b6e659f22c89ac6ec0411c9dd30866f68f
  Author: Vladimír Čunát 
  Date:   2017-05-02 (Tue, 02 May 2017)

  Changed paths:
M doc/languages-frameworks/haskell.md
M lib/customisation.nix
M lib/filesystem.nix
M lib/licenses.nix
M lib/maintainers.nix
M lib/meta.nix
M lib/systems/platforms.nix
M nixos/doc/manual/release-notes/rl-1709.xml
M nixos/modules/config/i18n.nix
M nixos/modules/installer/tools/nixos-prepare-root.sh
M nixos/modules/misc/ids.nix
M nixos/modules/module-list.nix
M nixos/modules/profiles/hardened.nix
A nixos/modules/programs/browserpass.nix
M nixos/modules/programs/environment.nix
A nixos/modules/programs/qt5ct.nix
M nixos/modules/programs/zsh/zsh-syntax-highlighting.nix
M nixos/modules/security/lock-kernel-modules.nix
M nixos/modules/services/backup/tarsnap.nix
M nixos/modules/services/backup/znapzend.nix
A nixos/modules/services/databases/clickhouse.nix
M nixos/modules/services/misc/gogs.nix
M nixos/modules/services/monitoring/cadvisor.nix
M nixos/modules/services/monitoring/longview.nix
M nixos/modules/services/monitoring/munin.nix
M nixos/modules/services/monitoring/ups.nix
M nixos/modules/services/networking/radicale.nix
A nixos/modules/services/networking/xrdp.nix
A nixos/modules/services/security/sshguard.nix
M nixos/modules/services/web-servers/apache-httpd/mediawiki.nix
M nixos/modules/services/x11/desktop-managers/plasma5.nix
M nixos/modules/services/x11/xserver.nix
M nixos/tests/hardened.nix
A nixos/tests/radicale.nix
A nixos/tests/xrdp.nix
M pkgs/applications/audio/abcde/default.nix
A pkgs/applications/audio/google-play-music-desktop-player/default.nix
M pkgs/applications/display-managers/sddm/default.nix
M pkgs/applications/editors/emacs-modes/elpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-generated.nix
M pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
M pkgs/applications/editors/jetbrains/default.nix
A pkgs/applications/graphics/displaycal/default.nix
M pkgs/applications/graphics/ocrad/default.nix
M pkgs/applications/misc/albert/default.nix
M pkgs/applications/misc/calibre/default.nix
A pkgs/applications/misc/deepin-terminal/default.nix
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/jekyll/Gemfile
M pkgs/applications/misc/jekyll/Gemfile.lock
M pkgs/applications/misc/jekyll/default.nix
M pkgs/applications/misc/jekyll/gemset.nix
M pkgs/applications/misc/osmctools/default.nix
M pkgs/applications/misc/robomongo/default.nix
A pkgs/applications/misc/termdown/default.nix
A pkgs/applications/misc/toot/default.nix
M pkgs/applications/networking/browsers/vivaldi/default.nix
M pkgs/applications/networking/cluster/openshift/default.nix
M pkgs/applications/networking/flexget/default.nix
M pkgs/applications/networking/instant-messengers/salut-a-toi/default.nix
M pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
M pkgs/applications/networking/mailreaders/thunderbird/default.nix
M pkgs/applications/networking/mumble/default.nix
M pkgs/applications/networking/owncloud-client/default.nix
M pkgs/applications/networking/p2p/qbittorrent/default.nix
A pkgs/applications/networking/remote/xrdp/default.nix
M pkgs/applications/office/planner/default.nix
M pkgs/applications/science/biology/ants/default.nix
M pkgs/applications/science/biology/ncbi-tools/default.nix
M pkgs/applications/science/logic/abc/default.nix
A pkgs/applications/science/logic/cubicle/default.nix
M pkgs/applications/science/math/csdp/default.nix
M pkgs/applications/version-management/git-and-tools/qgit/default.nix
M pkgs/applications/version-management/smartgithg/default.nix
M pkgs/applications/video/makemkv/default.nix
M pkgs/applications/video/mkvtoolnix/default.nix
M pkgs/applications/video/mpv/default.nix
M pkgs/applications/window-managers/dwm/default.nix
M pkgs/build-support/docker/default.nix
M pkgs/build-support/emacs/buffer.nix
M pkgs/build-support/kde/wrapper.nix
M pkgs/build-support/release/ant-build.nix
M pkgs/build-support/vm/windows/default.nix
M pkgs/desktops/enlightenment/efl.nix
M pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix
A pkgs/desktops/gnome-3/extensions/chrome-gnome-shell/default.nix
A p

Re: [Nix-dev] Hydra: no space on aarch64

2017-05-26 Thread Vladimír Čunát
Another problem: the "mac2" slave is killing all builds, with
download-from-binary-cache.pl getting "curl error 60" and consequently a
segfault. (if I interpret it right)

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


[Nix-dev] Hydra: no space on aarch64

2017-05-26 Thread Vladimír Čunát
Hi,
the aarch64 machine has been out of space for the past few days at
least, failing whatever builds it attempted.  It doesn't seem like it
will fix itself (this time).

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


Re: [Nix-dev] Installing manpages

2017-05-25 Thread Vladimír Čunát
On 05/25/2017 12:31 PM, Sergey Mironov wrote:
> Hi! Is there a possibility to install manpages for all packages I have
> in NixOS.  [...]

If it's about systemPackages of NixOS, there is `programs.man.enable`. 
For nix-env there's a bug to be solved
https://github.com/NixOS/nixpkgs/issues/24717

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


[Nix-commits] [NixOS/nixpkgs] bba5b1: plasma5 tests: fix by using older fontconfig-penul...

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

  Changed paths:
M nixos/tests/plasma5.nix

  Log Message:
  ---
  plasma5 tests: fix by using older fontconfig-penultimate

enable = false; didn't help, but downgrading did.  It's a mystery to me.
Discussion: https://github.com/NixOS/nixpkgs/commit/c9f8fb4d127a


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


[Nix-commits] [NixOS/nixpkgs] b7fed3: python-3.3: fixup evaluation after #25916

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

  Changed paths:
M pkgs/development/interpreters/python/cpython/3.3/default.nix

  Log Message:
  ---
  python-3.3: fixup evaluation after #25916


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


[Nix-commits] [NixOS/nixpkgs] da6f5e: gitlab-runner: add patch for shell from v1 to late...

2017-05-24 Thread Vladimír Čunát
igma/pr/go-1.8.2

go: 1.8.1 -> 1.8.2


  Commit: 78ea189a6b1c59e7c331fe57d1eb035b8977bdac
  
https://github.com/NixOS/nixpkgs/commit/78ea189a6b1c59e7c331fe57d1eb035b8977bdac
  Author: Vladimír Čunát 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/applications/video/kodi/default.nix
M pkgs/applications/video/vlc/default.nix
M pkgs/applications/virtualization/lkl/default.nix
M pkgs/development/compilers/go/1.7.nix
M pkgs/development/compilers/go/1.8.nix
M pkgs/development/libraries/ffmpeg-full/default.nix
M pkgs/development/libraries/ffmpeg/3.3.nix
A pkgs/development/python-modules/feedgenerator/default.nix
M pkgs/development/tools/build-managers/pants/default.nix
M pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
A 
pkgs/development/tools/continuous-integration/gitlab-runner/fix-shell-path.patch
R 
pkgs/development/tools/continuous-integration/gitlab-runner/v1-fix-shell-path.patch
M pkgs/development/tools/continuous-integration/gitlab-runner/v1.nix
M pkgs/misc/cups/filters.nix

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

... to fix *some* of the evaluation problems.


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


[Nix-commits] [NixOS/nixpkgs] 2e4d0f: cloud-init: 0.7.6 -> 0.7.9

2017-05-23 Thread Vladimír Čunát
   M pkgs/tools/package-management/nix/default.nix

  Log Message:
  ---
  Merge pull request #26034 from veprbl/nixpatches

nixStable: remove old patches


  Commit: bfc9420b7f3114ce595e978469497ae2a36229ef
  
https://github.com/NixOS/nixpkgs/commit/bfc9420b7f3114ce595e978469497ae2a36229ef
  Author: Jörg Thalheim 
  Date:   2017-05-23 (Tue, 23 May 2017)

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

  Log Message:
  ---
  feedgenerator: move to external file


  Commit: 7bb98bb02cd25fb4764aa120bd990d669f74d17f
  
https://github.com/NixOS/nixpkgs/commit/7bb98bb02cd25fb4764aa120bd990d669f74d17f
  Author: Jörg Thalheim 
  Date:   2017-05-23 (Tue, 23 May 2017)

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

  Log Message:
  ---
  Merge pull request #26030 from dtzWill/update/pelican

update pelican, feedgenerator


  Commit: 4fecdceec22779bb0789d1e5ffea341aead0941f
  
https://github.com/NixOS/nixpkgs/commit/4fecdceec22779bb0789d1e5ffea341aead0941f
  Author: Jörg Thalheim 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
A pkgs/development/compilers/llvm/3.4/fix-llvm-config.patch
M pkgs/development/compilers/llvm/3.4/llvm.nix

  Log Message:
  ---
  Merge pull request #26024 from Mic92/llvm-config-3.4

llvmPackages_34.llvm: fix output of llvm-config


  Commit: 118cbadb3162e33cfc08cf52baa17d1575c16d08
  
https://github.com/NixOS/nixpkgs/commit/118cbadb3162e33cfc08cf52baa17d1575c16d08
  Author: Jaka Hudoklin 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/applications/networking/cluster/kops/default.nix

  Log Message:
  ---
  Merge pull request #26005 from benley/kops-1.6.0

kops: 1.4.0 -> 1.6.0


  Commit: 95f321480fe5aa1a3c1b13f4a593ee91a95de800
  
https://github.com/NixOS/nixpkgs/commit/95f321480fe5aa1a3c1b13f4a593ee91a95de800
  Author: Nikolay Amiantov 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/misc/emulators/wine/base.nix
M pkgs/misc/emulators/wine/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  wine: add udev support


  Commit: bf230536e0b8a86ad1b48f6eefa76a7d0f47dbeb
  
https://github.com/NixOS/nixpkgs/commit/bf230536e0b8a86ad1b48f6eefa76a7d0f47dbeb
  Author: Nikolay Amiantov 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/misc/emulators/wine/staging.nix

  Log Message:
  ---
  wineStaging: fix patching in nix-shell


  Commit: 2d1e5e87db40eca5fc68ee8542e1fc38c7b03cad
  
https://github.com/NixOS/nixpkgs/commit/2d1e5e87db40eca5fc68ee8542e1fc38c7b03cad
  Author: Nikolay Amiantov 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/misc/emulators/wine/base.nix

  Log Message:
  ---
  wine: fix libva support


  Commit: 46a2da876637f2be699557571605c47bc9d2b62f
  
https://github.com/NixOS/nixpkgs/commit/46a2da876637f2be699557571605c47bc9d2b62f
  Author: Nikolay Amiantov 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M pkgs/misc/emulators/wine/base.nix

  Log Message:
  ---
  wine: use gstreamer-1.0


  Commit: b7290d3af5f9ea27ed4e60635bae469899e5e83e
  
https://github.com/NixOS/nixpkgs/commit/b7290d3af5f9ea27ed4e60635bae469899e5e83e
  Author: Thomas Tuegel 
  Date:   2017-05-23 (Tue, 23 May 2017)

  Changed paths:
M pkgs/applications/audio/spotify/default.nix

  Log Message:
  ---
  spotify: 1.0.53.758 -> 1.0.55.487


  Commit: ff15d0c41ed5ac0c8b987adff6724f91a88bc40c
  
https://github.com/NixOS/nixpkgs/commit/ff15d0c41ed5ac0c8b987adff6724f91a88bc40c
  Author: Tuomas Tynkkynen 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  esptool-ck: init at 0.4.11


  Commit: e6cb889faa1dead8e4320a294e53ea3000c4fd84
  
https://github.com/NixOS/nixpkgs/commit/e6cb889faa1dead8e4320a294e53ea3000c4fd84
  Author: Tuomas Tynkkynen 
  Date:   2017-05-24 (Wed, 24 May 2017)

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

  Log Message:
  ---
  esptool: init at 1.4


  Commit: 323f28d40e89dbd73722def277dcd31ea236a122
  
https://github.com/NixOS/nixpkgs/commit/323f28d40e89dbd73722def277dcd31ea236a122
  Author: Jörg Thalheim 
  Date:   2017-05-24 (Wed, 24 May 2017)

  Changed paths:
M nixos/modules/config/nsswitch.nix

  Log Message:
  ---
  nsswitch: use libnss_resolve if resolved is enabled


  Commit: 39e042fd64f41aa8610f35dcf4c4e9447ed59b3a
  
https://github.com/NixOS/nixpkgs/commit/39e042fd64f41aa8610f35dcf4c4e9447ed59b3a
  Author: Cray Elliott 
  Date:   2017-05-23 (Tue, 23 May 2017)

  Changed paths:
M pkgs/development/libraries/ffmpeg-full/default.nix
M pkgs/development/libraries/ffmpeg/3.3.nix

  Log Message:
  ---
  ffmpeg: 3.3 -> 3.3.1

ffmpeg-

[Nix-commits] [NixOS/nixpkgs] 0dbf5b: fltk: 1.3.3 -> 1.3.4

2017-05-19 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0dbf5b02b9fbfb34eb706da223dc5391a7ef0182
  
https://github.com/NixOS/nixpkgs/commit/0dbf5b02b9fbfb34eb706da223dc5391a7ef0182
  Author: Anthony Cowley 
  Date:   2017-05-11 (Thu, 11 May 2017)

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

  Log Message:
  ---
  fltk: 1.3.3 -> 1.3.4

This incidentally fixes the build on darwin.


  Commit: 9f6b1dca58375de995e8af4ae44ae76e3dd5f0f7
  
https://github.com/NixOS/nixpkgs/commit/9f6b1dca58375de995e8af4ae44ae76e3dd5f0f7
  Author: Vladimír Čunát 
  Date:   2017-05-19 (Fri, 19 May 2017)

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

  Log Message:
  ---
  Merge #25708: fltk: 1.3.3 -> 1.3.4


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


  1   2   3   4   5   6   7   8   9   10   >