[Nix-commits] [NixOS/nixpkgs] 363976: bdf2psf: 1.147 -> 1.148

2016-09-18 Thread Alexey Shmalko
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 363976941b290636488447a3977f2e46b1c18123
  
https://github.com/NixOS/nixpkgs/commit/363976941b290636488447a3977f2e46b1c18123
  Author: rnhmjoj 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  bdf2psf: 1.147 -> 1.148


  Commit: 930c682c535ef4ab2d1c85755668188de590c815
  
https://github.com/NixOS/nixpkgs/commit/930c682c535ef4ab2d1c85755668188de590c815
  Author: Alexey Shmalko 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18752 from rnhmjoj/bdf2psf

bdf2psf: 1.147 -> 1.148


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


[Nix-dev] cabal-install 1.24's Nix-style builds, and a new style of Nix + language package manager integration

2016-09-18 Thread John Ericson
After much pondering, I've decided the best way to work with
language-specific build managers is for them to come up with the end-to-end
build plan, and us to build each package in that build plan.

Our current method with Haskell of trying to replicate each package and all
the possible ways it can be configured just doesn't scale very well with
respect to configuaration options. Things like `if impl(ghcjs):` have long
remained unimplemented, and implementing them bakes more and more
build-plan resolution machinery into machine until we approach
re-implementing cabal-install. [Peti has discussed this in depth in
https://github.com/NixOS/cabal2nix/blob/master/doc/03-map-cabal-files-to-nix-without-information-loss.md
.]

At the same time, or current method isn't great for developing multiple
packages simultaneously. The default thing to do is make a package set with
each one, but if one doesn't handle the source very carefully, a change to
any of them will cause them all to be rebuilt. Furthermore, one needs
switch shells per each package---which is a pain in itself---and that
prevents the use of neat things like `stack repl` which interprets multiple
packages at once for seamless concurrent development. [I discussed part of
this in https://github.com/NixOS/nixpkgs/issues/10902 a bit.]

`stack --nix` at first glance seems to solve both of these areas, but in
fact comes with it's own set of downsides. Yes, since Stack manages the
build plan less knowledge is needed on the nix side, but stack also
*executes* the build plan. This means that both Nix's superior caching is
not utilized, and per-package patches (like foreign dependencies) are
unavailable. [See https://github.com/NixOS/nixpkgs/issues/15995.]

What I'm proposing should give us the best of both worlds in that language
package manager makes most of the decisions, but we still have an
opportunity to cache and patch, and development and deployment workflows
overlap as much as possible. This methodology could in principle work with
any language and its package manager, but I single out Cabal+Haskell
because the new Nix-style workflow (
http://cabal.readthedocs.io/en/latest/nix-local-build.html) makes it the
most ready.

For both deployment and development, the idea is we first run cabal-install
to compute a build plan. During this stage it in principle only needs
access to .cabal files / the Hackage index and a project config---certainly
not any already built binaries like today. Next we instruct cabal-install
to decompose the plan into "sub plans" for each dependency/would-be system
package---this is the biggest change needed for cabal-install, but one that
any system package manager could leverage, not just us. After that, using a
reworked cabal2nix, we convert each of those plans to a Nix
derivation---this may include turning hackage deps into local deps with
their source fetched by nix. Finally, each of those derivations can use
`cabal new-install` to install their root package, and the caches/package
DBs can be passed downstream and combined just like today.

There are two important concepts to note here: First, naively, the use of
entire sub plans in each Nix derivation would cause cabal-install to
rebuild each dependency for package in the plan that depends that needs it,
but since the Nix derivations will also depend on each other, `cabal
new-build`'s own caching should kick in so each Nix derivation does in fact
correspond to each Haskell package being built. Second, while cabal-install
can be instructed to build any package in a plan, the decomposition of
build plans is necessary so build plans that differ in ways that don't
affect common dependencies still end up sharing nix-executed builds. In
both cases, we rely on cabal-install's imitation of our methodology.

For development, we leverage the new nix-style build's preexisting notion
of a local vs external package. For convenience, it's probably best to let
cabal-install devise the build plan impurely (this is analogous to
non-restricted mode for Nix expr evaluation), and not copy any local
sources to the Nix store. Then, only external packages (and only those
which are dependencies of the current goal) should be built by Nix in
accordance with the plan above. In a shell with those built, cabal-install
can be run again building local packages normally and locally using its
more fine-grained per-file hashing and enabling tricks analogous to
`stack-repl`. While the default shell derivation will need tweaking if any
local packages have special requirements like foreign dependencies, this is
better than with `stack --nix` where the shell needs tweaking if *any*
dependency has such special requirements.
like today.

For deployment we don't need to worry about local vs external packages, and
on the cabal-install side `cabal new-install` should treat them all the
same IIUC. However, we do need to make sure that the build plan resolution
can be done in a pure environment: this means making sure all 

[Nix-commits] [NixOS/nixpkgs] e62a5e: pktgen: disable parallel building

2016-09-18 Thread Kirill Boltaev
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e62a5e1b3277a195ff93a3097ac061bdd2ae08df
  
https://github.com/NixOS/nixpkgs/commit/e62a5e1b3277a195ff93a3097ac061bdd2ae08df
  Author: Kirill Boltaev 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  pktgen: disable parallel building

(cherry picked from commit d2bbc631ffb1e3a8bacdd4d678eae074380928c3)


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


[Nix-commits] [NixOS/nixpkgs] d2bbc6: pktgen: disable parallel building

2016-09-18 Thread Nikolay Amiantov
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d2bbc631ffb1e3a8bacdd4d678eae074380928c3
  
https://github.com/NixOS/nixpkgs/commit/d2bbc631ffb1e3a8bacdd4d678eae074380928c3
  Author: Kirill Boltaev 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  pktgen: disable parallel building


  Commit: e9f2c781dca27a23910206027281c8fff93268a6
  
https://github.com/NixOS/nixpkgs/commit/e9f2c781dca27a23910206027281c8fff93268a6
  Author: Nikolay Amiantov 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18754 from aske/pktgen-build

pktgen: disable parallel building


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


[Nix-commits] [NixOS/nixpkgs] 268d8d: blink: works with recent gnutls versions

2016-09-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 268d8dbf1b90fe68f6c7af2078794bc0674aead2
  
https://github.com/NixOS/nixpkgs/commit/268d8dbf1b90fe68f6c7af2078794bc0674aead2
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

  Changed paths:
M pkgs/applications/networking/instant-messengers/blink/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  blink: works with recent gnutls versions


  Commit: 501f9096f61388bcc1d0779f057523cd19f34602
  
https://github.com/NixOS/nixpkgs/commit/501f9096f61388bcc1d0779f057523cd19f34602
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  gnutls: 3.4.14 -> 3.4.15


  Commit: e3107dc45d402a3c13e3866c1ad73b25b9ca14b3
  
https://github.com/NixOS/nixpkgs/commit/e3107dc45d402a3c13e3866c1ad73b25b9ca14b3
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  gnutls: 3.5.3 -> 3.5.4


  Commit: 7038fca9dafbc1347bb128264bece595cb8cfdef
  
https://github.com/NixOS/nixpkgs/commit/7038fca9dafbc1347bb128264bece595cb8cfdef
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  libconfuse: 2.8 -> 3.0


  Commit: fa3fb19445020419048a309dd9a64e5e40889cb2
  
https://github.com/NixOS/nixpkgs/commit/fa3fb19445020419048a309dd9a64e5e40889cb2
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  libite: init at 1.8.2


  Commit: 1234aaf47b93f6f3810ec4479b6ab529ec6dbae0
  
https://github.com/NixOS/nixpkgs/commit/1234aaf47b93f6f3810ec4479b6ab529ec6dbae0
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  inadyn: 1.99.15 -> 2.0


  Commit: 01f8b65e48553a4777a9ada3660780855bef3123
  
https://github.com/NixOS/nixpkgs/commit/01f8b65e48553a4777a9ada3660780855bef3123
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  freewheeling: cleanup


  Commit: db51e9074c23e956ddfe800a1f63eaeeb56563ca
  
https://github.com/NixOS/nixpkgs/commit/db51e9074c23e956ddfe800a1f63eaeeb56563ca
  Author: Franz Pletz 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

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

  Log Message:
  ---
  pythonPackages.gnutls: works with recent gnutls versions


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


[Nix-commits] [NixOS/nixpkgs] 5650c9: systemd-journal2gelf: init at 20160414

2016-09-18 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5650c92b019fa8ecc1dd37ecfd77cdd72f406da7
  
https://github.com/NixOS/nixpkgs/commit/5650c92b019fa8ecc1dd37ecfd77cdd72f406da7
  Author: Robin Gloster 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

  Changed paths:
A pkgs/tools/system/systemd-journal2gelf/default.nix
A pkgs/tools/system/systemd-journal2gelf/deps.json
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  systemd-journal2gelf: init at 20160414


  Commit: 4ec5e729c470bdad498777cd399e84cd461902eb
  
https://github.com/NixOS/nixpkgs/commit/4ec5e729c470bdad498777cd399e84cd461902eb
  Author: Robin Gloster 
  Date:   2016-09-19 (Mon, 19 Sep 2016)

  Changed paths:
M pkgs/tools/system/systemd-journal2gelf/default.nix
R pkgs/tools/system/systemd-journal2gelf/deps.json
A pkgs/tools/system/systemd-journal2gelf/deps.nix

  Log Message:
  ---
  systemd-journal2gelf: fix after godeps changes


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


[Nix-commits] [NixOS/nixpkgs] f1f856: errbot: use buildPythonApplication

2016-09-18 Thread Franz Pletz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f1f856ada76cbbebf85f7e546d4d43020f7f9a32
  
https://github.com/NixOS/nixpkgs/commit/f1f856ada76cbbebf85f7e546d4d43020f7f9a32
  Author: Robin Gloster 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  errbot: use buildPythonApplication


  Commit: 6e60359c74bea0ad4e4260612cb65a048bbea607
  
https://github.com/NixOS/nixpkgs/commit/6e60359c74bea0ad4e4260612cb65a048bbea607
  Author: Franz Pletz 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  errbot: the text interface needs pytest at runtime


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


[Nix-commits] [NixOS/nixpkgs] 03f7d9: krb5: 1.14.2 -> 1.14.3

2016-09-18 Thread Robin Gloster
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 03f7d949c8069152aa8a4294960dc64fe86c8e66
  
https://github.com/NixOS/nixpkgs/commit/03f7d949c8069152aa8a4294960dc64fe86c8e66
  Author: Robin Gloster 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/libraries/kerberos/krb5.nix

  Log Message:
  ---
  krb5: 1.14.2 -> 1.14.3

fixes CVE-2016-3120

(cherry picked from commit 452f182356245eafd397665217039ff22a348b10)


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


[Nix-commits] [NixOS/nixpkgs] 452f18: krb5: 1.14.2 -> 1.14.3

2016-09-18 Thread Robin Gloster
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 452f182356245eafd397665217039ff22a348b10
  
https://github.com/NixOS/nixpkgs/commit/452f182356245eafd397665217039ff22a348b10
  Author: Robin Gloster 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/libraries/kerberos/krb5.nix

  Log Message:
  ---
  krb5: 1.14.2 -> 1.14.3

fixes CVE-2016-3120


  Commit: b6f7a02d65c0a96eee47da2035e18c0bfd29c445
  
https://github.com/NixOS/nixpkgs/commit/b6f7a02d65c0a96eee47da2035e18c0bfd29c445
  Author: Robin Gloster 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  consul: 0.6.4 -> 0.7.0


  Commit: 55de97e02065b80ad2b0f2496398bcc6afd296d7
  
https://github.com/NixOS/nixpkgs/commit/55de97e02065b80ad2b0f2496398bcc6afd296d7
  Author: Robin Gloster 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  byobu: 5.98 -> 5.112


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


[Nix-commits] [NixOS/nixpkgs] 1a40bd: firefox*: fix notifications

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1a40bd0d32d3551c80d09f3d211f9f0f49a8a940
  
https://github.com/NixOS/nixpkgs/commit/1a40bd0d32d3551c80d09f3d211f9f0f49a8a940
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  firefox*: fix notifications

Fixes #18712. Now firefox uses the notification daemon, if available.

Unfortunately, the same approach didn't work for thunderbird; I don't
know why.

(cherry picked from commit f27a970f2d7231243dbf1f6ad7c4fe56258b)


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


[Nix-commits] [NixOS/nixpkgs] f27a97: firefox*: fix notifications

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f27a970f2d7231243dbf1f6ad7c4fe56258b
  
https://github.com/NixOS/nixpkgs/commit/f27a970f2d7231243dbf1f6ad7c4fe56258b
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  firefox*: fix notifications

Fixes #18712. Now firefox uses the notification daemon, if available.

Unfortunately, the same approach didn't work for thunderbird; I don't
know why.


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


[Nix-commits] [NixOS/nixpkgs] 2c8b57: Bump Falcon to 1.0.0, make the test dependencies o...

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2c8b578191820e07b343fe597876fc33285bc630
  
https://github.com/NixOS/nixpkgs/commit/2c8b578191820e07b343fe597876fc33285bc630
  Author: Dario Bertini 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Bump Falcon to 1.0.0, make the test dependencies optional, add the Hug
framework

falcon: 0.3.0 -> 1.0.0
hug: init at 2.1.2


  Commit: 6286f7723300ec919a25182bbade1ce1bfd39944
  
https://github.com/NixOS/nixpkgs/commit/6286f7723300ec919a25182bbade1ce1bfd39944
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18743 from berdario/hug-falcon

Bump Falcon to 1.0.0, make the test dependencies optional, add the Hug framework


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


Re: [Nix-dev] systemd + sshfs

2016-09-18 Thread Rickard Nilsson

Hi Bjørn,

I remember struggling with this too. The following works for me:

fileSystems."/target" =
  fsType = "fuse";
  device = "${pkgs.sshfsFuse}/bin/sshfs#user@host:/path";
  options = [
"noauto" "comment=systemd.automount"
"ssh_command=${sshAsUser}"
  ];
};

where

  sshAsUser = user:
writeScript "ssh_as_${user}" ''
  exec ${pkgs.sudo}/bin/sudo -i -u ${user} \
${pkgs.openssh}/bin/ssh $@
'';

The "sshAsUser" command makes systemd use my gpg-agent session correctly 
when auto-mounting. But I guess you could use it to set any ssh options 
you'd like.


  / Rickard

On 09/18/2016 06:10 PM, Bjørn Forsman wrote:

Hi all,

I cannot get systemd to find the 'sshfs' binary needed to make this
configuration work:

  systemd.mounts = [
{ what = "bfo@whitetip.local:/";
  where = "/home/bfo/mnt/whitetip.local";
  type = "fuse.sshfs";
  options =
"_netdev,users,idmap=user,IdentityFile=/home/user/.ssh/id_rsa,allow_other,reconnect";
  unitConfig.Environment = "PATH=${pkgs.sshfsFuse}/bin";
}
  ];

The result is "/bin/sh: sshfs: command not found", as can be seen
below my signature.

Any suggestions?



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


[Nix-commits] [NixOS/nixpkgs]

2016-09-18 Thread FRidh
  Branch: refs/heads/python-wip
  Home:   https://github.com/NixOS/nixpkgs
___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 3aff5a: python.buildenv: don't filter non-python packages

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/python-wip
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3aff5aba9569d45f701db8146b1343f1d464ce81
  
https://github.com/NixOS/nixpkgs/commit/3aff5aba9569d45f701db8146b1343f1d464ce81
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/interpreters/python/wrapper.nix

  Log Message:
  ---
  python.buildenv: don't filter non-python packages

python.buildenv is used to build an env that provides binaries that can
import all modules that were passed in to the env.

Before this change it filtered the propagatedBuildInputs to remove all
non-Python packages, thereby possibly reducing the amount of packages
that were referenced. However, Python packages often don't have non-
Python packages as propagatedBuildInputs. And occasionally, we do want
to be able to add other packages to the env.


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


[Nix-commits] [NixOS/nixpkgs] 55deb1: pythonPackages.beautifulsoup4: 4.4.1 -> 4.5.1

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 55deb148f5cbe1a2438288b7f0f3e250abbe31a0
  
https://github.com/NixOS/nixpkgs/commit/55deb148f5cbe1a2438288b7f0f3e250abbe31a0
  Author: Michiel Leenaars 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

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

  Log Message:
  ---
  pythonPackages.beautifulsoup4: 4.4.1 -> 4.5.1


  Commit: cc22b5f2adc8eaf83b874847ef10e2bbd579f4b8
  
https://github.com/NixOS/nixpkgs/commit/cc22b5f2adc8eaf83b874847ef10e2bbd579f4b8
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18709 from leenaars/bs

pythonPackages.beautifulsoup4: 4.4.1 -> 4.5.1


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


[Nix-commits] [NixOS/nixpkgs] cd7d7f: libchamplain: 0.12.13 -> 0.12.14

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cd7d7f8a4ababc0e0589c800daa920e971bc12d0
  
https://github.com/NixOS/nixpkgs/commit/cd7d7f8a4ababc0e0589c800daa920e971bc12d0
  Author: Alexander Ried 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  libchamplain: 0.12.13 -> 0.12.14


  Commit: ae1faabdcda3a8c38efe982663f94651a8eacc05
  
https://github.com/NixOS/nixpkgs/commit/ae1faabdcda3a8c38efe982663f94651a8eacc05
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18742 from groxxda/libchamplain

libchamplain: 0.12.13 -> 0.12.14


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


[Nix-commits] [NixOS/nixpkgs] e06754: elixir: 1.3.2 -> 1.3.3

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e067546765e06a50393a9521a38f3204d75372e4
  
https://github.com/NixOS/nixpkgs/commit/e067546765e06a50393a9521a38f3204d75372e4
  Author: Aaron Bull Schaefer 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  elixir: 1.3.2 -> 1.3.3


  Commit: 06fd89dcffa7f5a3f69e4cd2ab87fd702b0ea126
  
https://github.com/NixOS/nixpkgs/commit/06fd89dcffa7f5a3f69e4cd2ab87fd702b0ea126
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18738 from elasticdog/elixir

elixir: 1.3.2 -> 1.3.3


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


[Nix-commits] [NixOS/nixpkgs] 88e15b: mkvtoolnix: 9.4.0 -> 9.4.2

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 88e15b19eff1ad43b1b78d806671b1ffcafc4fd1
  
https://github.com/NixOS/nixpkgs/commit/88e15b19eff1ad43b1b78d806671b1ffcafc4fd1
  Author: José Romildo Malaquias 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  mkvtoolnix: 9.4.0 -> 9.4.2


  Commit: 79995e91de6fa05e276cf1d19beb52d5c39988df
  
https://github.com/NixOS/nixpkgs/commit/79995e91de6fa05e276cf1d19beb52d5c39988df
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18719 from romildo/upd.mkvtoolnix

mkvtoolnix: 9.4.0 -> 9.4.2


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


[Nix-commits] [NixOS/nixpkgs] 5ea039: parsel: init at 1.0.3

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5ea03904936294e6e08fcf86c33f9a01361634b2
  
https://github.com/NixOS/nixpkgs/commit/5ea03904936294e6e08fcf86c33f9a01361634b2
  Author: Dario Bertini 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  parsel: init at 1.0.3


  Commit: 288bb906fe14f2292c0877b5a7c3f86aeff308b1
  
https://github.com/NixOS/nixpkgs/commit/288bb906fe14f2292c0877b5a7c3f86aeff308b1
  Author: Dario Bertini 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  pydispatcher: re-enable on Python3.5


  Commit: 3e0e70ead759128eed89dfa7ddfbbdea2b676b29
  
https://github.com/NixOS/nixpkgs/commit/3e0e70ead759128eed89dfa7ddfbbdea2b676b29
  Author: Dario Bertini 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Twisted: 16.4.0 -> 16.4.1


  Commit: 22e38701a09ad58802758661fda40fca9b8efdac
  
https://github.com/NixOS/nixpkgs/commit/22e38701a09ad58802758661fda40fca9b8efdac
  Author: Dario Bertini 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Scrapy: 1.0.5 -> 1.1.2


  Commit: e25cbdd9d2db5a6aaa21e22c8e63076a257894c8
  
https://github.com/NixOS/nixpkgs/commit/e25cbdd9d2db5a6aaa21e22c8e63076a257894c8
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18745 from berdario/scrapy-py3

Upgrade to latest Scrapy with Python3 support. Upgrade/add dependencies:


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


[Nix-commits] [NixOS/nixpkgs] 164036: buildbot: 0.9.0rc2 -> 0.9.0rc3

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 164036d728eea2ee487500816ccfc95d3042992b
  
https://github.com/NixOS/nixpkgs/commit/164036d728eea2ee487500816ccfc95d3042992b
  Author: Fernando J Pando 
  Date:   2016-09-16 (Fri, 16 Sep 2016)

  Changed paths:
R pkgs/development/tools/build-managers/buildbot/9.nix
A pkgs/development/tools/build-managers/buildbot/default.nix
M pkgs/development/tools/build-managers/buildbot/plugins.nix
M pkgs/development/tools/build-managers/buildbot/worker.nix

  Log Message:
  ---
  buildbot: 0.9.0rc2 -> 0.9.0rc3

Tested on Linux
Tested Binary Execution


  Commit: 57726b54aff392d9bc88387bcd4b36d34a934d1d
  
https://github.com/NixOS/nixpkgs/commit/57726b54aff392d9bc88387bcd4b36d34a934d1d
  Author: Fernando J Pando 
  Date:   2016-09-16 (Fri, 16 Sep 2016)

  Changed paths:
R pkgs/development/tools/build-managers/buildbot-slave/default.nix
M pkgs/top-level/aliases.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Remove obsolete buildbot slave

buildbot-slave has been replaced with buildbot-worker.


  Commit: b31b26262360c67332f60c4f6caef9a51a12b4c8
  
https://github.com/NixOS/nixpkgs/commit/b31b26262360c67332f60c4f6caef9a51a12b4c8
  Author: Fernando J Pando 
  Date:   2016-09-16 (Fri, 16 Sep 2016)

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

  Log Message:
  ---
  buildbot: 0.9.0rc3 wrapper fix

- Tested on Linux
- Tested binary execution
- Fixes missing PYTHONPATH


  Commit: 5a1d3be81c87abc0ceea04cebc00365826ed5cb8
  
https://github.com/NixOS/nixpkgs/commit/5a1d3be81c87abc0ceea04cebc00365826ed5cb8
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
R pkgs/development/tools/build-managers/buildbot-slave/default.nix
R pkgs/development/tools/build-managers/buildbot/9.nix
A pkgs/development/tools/build-managers/buildbot/default.nix
M pkgs/development/tools/build-managers/buildbot/plugins.nix
M pkgs/development/tools/build-managers/buildbot/worker.nix
M pkgs/top-level/aliases.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #18647 from nand0p/buildbot-9rc3

buildbot: 0.9.0rc2 -> 0.9.0rc3


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


[Nix-commits] [NixOS/nixpkgs] 7b9dea: root: add setup-hook

2016-09-18 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7b9deaba8161703ddf960f6ea80f140a5f24a289
  
https://github.com/NixOS/nixpkgs/commit/7b9deaba8161703ddf960f6ea80f140a5f24a289
  Author: Dmitry Kalinkin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/science/misc/root/default.nix
A pkgs/applications/science/misc/root/setup-hook.sh

  Log Message:
  ---
  root: add setup-hook


  Commit: 6f4718bb324494c95cbe9dc8151962e1b0c4abb9
  
https://github.com/NixOS/nixpkgs/commit/6f4718bb324494c95cbe9dc8151962e1b0c4abb9
  Author: Dmitry Kalinkin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  rootpy: init at 0.8.3


  Commit: 7a09eb7fbd0616357cedd606db9f4576c28828a9
  
https://github.com/NixOS/nixpkgs/commit/7a09eb7fbd0616357cedd606db9f4576c28828a9
  Author: Frederik Rietdijk 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/science/misc/root/default.nix
A pkgs/applications/science/misc/root/setup-hook.sh
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  Merge pull request #18276 from veprbl/rootpy

rootpy: init at 0.8.3


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


[Nix-commits] [NixOS/nixpkgs] 4007e5: hunspellWithDicts: fix bad `meta.outputsToInstall`

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4007e5b8070417df1c3b394c59ba440bf7fe9b5e
  
https://github.com/NixOS/nixpkgs/commit/4007e5b8070417df1c3b394c59ba440bf7fe9b5e
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/libraries/hunspell/wrapper.nix

  Log Message:
  ---
  hunspellWithDicts: fix bad `meta.outputsToInstall`

https://github.com/NixOS/nixpkgs/issues/15036#issuecomment-247874297


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


[Nix-commits] [NixOS/nixpkgs] c9d921: runc: init at 2016-06-15

2016-09-18 Thread Jaka Hudoklin
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c9d9212d29be6219ecd173b765681cb8fb373035
  
https://github.com/NixOS/nixpkgs/commit/c9d9212d29be6219ecd173b765681cb8fb373035
  Author: Jaka Hudoklin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  runc: init at 2016-06-15

(cherry picked from commit 71782da1036a0c5d9dd9a5ebf445fd13381a5dee)


  Commit: 2954930c7fc8aa9e96a064ccf252491b3b08fb68
  
https://github.com/NixOS/nixpkgs/commit/2954930c7fc8aa9e96a064ccf252491b3b08fb68
  Author: Jaka Hudoklin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  containerd: init at 0.2.3

(cherry picked from commit e927620885d404725ca3331a10431417a7255f94)


  Commit: fab129299623e0c0dea6f4f62311100d42f96cc6
  
https://github.com/NixOS/nixpkgs/commit/fab129299623e0c0dea6f4f62311100d42f96cc6
  Author: Jaka Hudoklin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/virtualization/docker/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  docker: 1.10.3 -> 1.12.1

(cherry picked from commit 0a518618a2760ec1c7635f62603172194df81577)


  Commit: 69451eb662f3619de5d594f1c97afee5d6d3c999
  
https://github.com/NixOS/nixpkgs/commit/69451eb662f3619de5d594f1c97afee5d6d3c999
  Author: Jaka Hudoklin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M nixos/modules/virtualisation/docker.nix
M nixos/tests/docker.nix

  Log Message:
  ---
  docker module: updates

- logDriver option, use journald for logging by default
- keep storage driver intact by default, as docker has sane defaults
- do not choose storage driver in tests, docker will choose by itself
- use dockerd binary as "docker daemon" command is deprecated and will be
  removed
- add overlay2 to list of storage drivers

(cherry picked from commit 5d9c62541a3524fd2c035b75058a0cb412b61f95)


  Commit: d677be61e16c13dc46649bdb0a1f355f5ab8f08f
  
https://github.com/NixOS/nixpkgs/commit/d677be61e16c13dc46649bdb0a1f355f5ab8f08f
  Author: Jaka Hudoklin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  go-md2man: init at 1.0.6

(cherry picked from commit ea2270aa7cd60e426481ab3b76ff70a36af5)


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


[Nix-commits] [NixOS/nixpkgs] 19dab2: hunspellWithDicts: fix bad `meta.outputsToInstall`

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 19dab295f03cdec2a6afb5a46daf80f111c698aa
  
https://github.com/NixOS/nixpkgs/commit/19dab295f03cdec2a6afb5a46daf80f111c698aa
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/libraries/hunspell/wrapper.nix

  Log Message:
  ---
  hunspellWithDicts: fix bad `meta.outputsToInstall`

https://github.com/NixOS/nixpkgs/issues/15036#issuecomment-247874297
(cherry picked from commit 4007e5b8070417df1c3b394c59ba440bf7fe9b5e)


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


[Nix-commits] [NixOS/nixpkgs] c640fb: xf86-video-intel: 2016-05-22 -> 2016-09-08

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c640fbfdc3ec7894fb232ba54aa0b4d2e5f8029b
  
https://github.com/NixOS/nixpkgs/commit/c640fbfdc3ec7894fb232ba54aa0b4d2e5f8029b
  Author: Benjamin Saunders 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

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

  Log Message:
  ---
  xf86-video-intel: 2016-05-22 -> 2016-09-08

Enable DRI3 by default while we're at it.


  Commit: 73f59a794db4b4a4cf93a92fa5244400b73745ba
  
https://github.com/NixOS/nixpkgs/commit/73f59a794db4b4a4cf93a92fa5244400b73745ba
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge #18717: xf86-video-intel: update and use DRI3

... by default


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


[Nix-commits] [NixOS/nixpkgs] 363088: libinput: 1.3.3 -> 1.5.0

2016-09-18 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 363088f8e8491a55cebc938f4e874a312ad26b8e
  
https://github.com/NixOS/nixpkgs/commit/363088f8e8491a55cebc938f4e874a312ad26b8e
  Author: Alexander Ried 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  libinput: 1.3.3 -> 1.5.0


  Commit: dbc40d3fdc707c78ea9a9d9422132316a7d5eff8
  
https://github.com/NixOS/nixpkgs/commit/dbc40d3fdc707c78ea9a9d9422132316a7d5eff8
  Author: Vladimír Čunát 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge #18736: libinput: 1.3.3 -> 1.5.0


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


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

2016-09-18 Thread Hydra Build Daemon
Hi,

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

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

This may be due to 26 commits by Alexey Shmalko , Herwig 
Hochleitner , Joachim F 
, Joachim Fasting , 
John Ericson , José Romildo Malaquias 
, Moritz Ulrich , Ram Kromberg 
, Thomas Tuegel , Tristan Helmich 
 or Viktor Stanchev .

Yay!

Regards,

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


[Nix-commits] [NixOS/nixpkgs] b01e7f: elpaPackages 2016-09-18

2016-09-18 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b01e7f26c72b5db6d93e78de0556ae415c9b784b
  
https://github.com/NixOS/nixpkgs/commit/b01e7f26c72b5db6d93e78de0556ae415c9b784b
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/editors/emacs-modes/elpa-generated.nix

  Log Message:
  ---
  elpaPackages 2016-09-18


  Commit: 93adad3ba4675b5ab428d48fc4e006870d416133
  
https://github.com/NixOS/nixpkgs/commit/93adad3ba4675b5ab428d48fc4e006870d416133
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/editors/emacs-modes/melpa-generated.nix

  Log Message:
  ---
  melpaPackages 2016-09-18


  Commit: 42f63a54022d18b5a20656a2b77f4afff5e4e01a
  
https://github.com/NixOS/nixpkgs/commit/42f63a54022d18b5a20656a2b77f4afff5e4e01a
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix

  Log Message:
  ---
  melpaStablePackages 2016-09-18


  Commit: c31e3cf65bf8882863b4b821be8d5ec0f51aaf2d
  
https://github.com/NixOS/nixpkgs/commit/c31e3cf65bf8882863b4b821be8d5ec0f51aaf2d
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/editors/emacs-modes/org-generated.nix

  Log Message:
  ---
  orgPackages 2016-09-18


  Commit: 3afe2061a2fada629c315c11947f419aaf895548
  
https://github.com/NixOS/nixpkgs/commit/3afe2061a2fada629c315c11947f419aaf895548
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
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

  Log Message:
  ---
  Merge branch 'emacs-packages'


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


[Nix-commits] [NixOS/nixpkgs] 760941: sonarr: 2.0.0.4323 -> 2.0.0.4326 (#18732)

2016-09-18 Thread Tristan Helmich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 76094163ae00803ee30ca8c8e850edbd3da502ae
  
https://github.com/NixOS/nixpkgs/commit/76094163ae00803ee30ca8c8e850edbd3da502ae
  Author: Tristan Helmich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  sonarr: 2.0.0.4323 -> 2.0.0.4326 (#18732)


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


[Nix-dev] systemd + sshfs

2016-09-18 Thread Bjørn Forsman
Hi all,

I cannot get systemd to find the 'sshfs' binary needed to make this
configuration work:

  systemd.mounts = [
{ what = "bfo@whitetip.local:/";
  where = "/home/bfo/mnt/whitetip.local";
  type = "fuse.sshfs";
  options =
"_netdev,users,idmap=user,IdentityFile=/home/user/.ssh/id_rsa,allow_other,reconnect";
  unitConfig.Environment = "PATH=${pkgs.sshfsFuse}/bin";
}
  ];

The result is "/bin/sh: sshfs: command not found", as can be seen
below my signature.

Any suggestions?

-- 
Best regards,
Bjørn Forsman



$ systemctl status home-bfo-mnt-whitetip.local.mount
● home-bfo-mnt-whitetip.local.mount - /home/bfo/mnt/whitetip.local
   Loaded: loaded
(/nix/store/9skv7lzma7gh7cc74jmf9r3jy2rw8l32-unit-home-bfo-mnt-whitetip.local.mount/home-bfo-mnt-whitetip.local.mount;
bad; vendor preset: enabled)
   Active: failed (Result: exit-code) since sø. 2016-09-18 18:02:09 CEST; 7s ago
Where: /home/bfo/mnt/whitetip.local
 What: bfo@whitetip.local:/
  Process: 28267
ExecMount=/nix/store/42fysnk7hsi5hkyk133w3qk0rc7mmi92-util-linux-2.28.1-bin/bin/mount
bfo@whitetip.local:/ /home/bfo/mnt/whitetip.local -t fuse.sshfs -o
_netdev,users,idmap=user,IdentityFile=/home/user/.ssh/id_rsa,allow_other,reconnect

sep. 18 18:02:09 mini systemd[1]: Mounting /home/bfo/mnt/whitetip.local...
sep. 18 18:02:09 mini mount[28267]: /bin/sh: sshfs: command not found
sep. 18 18:02:09 mini systemd[1]: home-bfo-mnt-whitetip.local.mount:
Mount process exited, code=exited status=127
sep. 18 18:02:09 mini systemd[1]: Failed to mount /home/bfo/mnt/whitetip.local.
sep. 18 18:02:09 mini systemd[1]: home-bfo-mnt-whitetip.local.mount:
Unit entered failed state.



$ systemctl cat home-bfo-mnt-whitetip.local.mount
# 
/nix/store/9skv7lzma7gh7cc74jmf9r3jy2rw8l32-unit-home-bfo-mnt-whitetip.local.mount/home-bfo-mnt-whitetip.local.mount
[Unit]
Environment=PATH=/nix/store/6rwfz93iiax88a7x9nk9wm0lqzca6gjq-sshfs-fuse-2.7/bin

[Mount]
Options=_netdev,users,idmap=user,IdentityFile=/home/user/.ssh/id_rsa,allow_other,reconnect
Type=fuse.sshfs
What=bfo@whitetip.local:/
Where=/home/bfo/mnt/whitetip.local
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 5e867f: longview: unstable-2015-09-10 -> 1.1.5

2016-09-18 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5e867f00af5509b98a67d3605e613276b57f4f5f
  
https://github.com/NixOS/nixpkgs/commit/5e867f00af5509b98a67d3605e613276b57f4f5f
  Author: Rodney Lorrimar 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  longview: unstable-2015-09-10 -> 1.1.5


  Commit: 8175461df383c104770bcaf6cdc566221682731b
  
https://github.com/NixOS/nixpkgs/commit/8175461df383c104770bcaf6cdc566221682731b
  Author: zimbatm 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18711 from rvl/longview-1.1.5

longview: unstable-2015-09-10 -> 1.1.5


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


[Nix-commits] [NixOS/nixpkgs] 36cf24: sshfs-fuse: align attrname with pkgname

2016-09-18 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 36cf2405bd61aaca5edebdedb927914a55088a14
  
https://github.com/NixOS/nixpkgs/commit/36cf2405bd61aaca5edebdedb927914a55088a14
  Author: Bjørn Forsman 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  sshfs-fuse: align attrname with pkgname


  Commit: 32efdb712813682e5ac2c204e911ddd48d11074a
  
https://github.com/NixOS/nixpkgs/commit/32efdb712813682e5ac2c204e911ddd48d11074a
  Author: Bjørn Forsman 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix
M nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
M nixos/modules/profiles/base.nix
M pkgs/applications/networking/sync/backintime/common.nix

  Log Message:
  ---
  treewide: sshfsFuse -> sshfs-fuse


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


[Nix-commits] [NixOS/nixpkgs] a115cd: digikam5: Add tools for panorama/stacking to PATH

2016-09-18 Thread Moritz Ulrich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a115cd5dbf9bed02cadb6cabeff7fd0d2fa303c7
  
https://github.com/NixOS/nixpkgs/commit/a115cd5dbf9bed02cadb6cabeff7fd0d2fa303c7
  Author: Moritz Ulrich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/applications/graphics/digikam/5.1.nix

  Log Message:
  ---
  digikam5: Add tools for panorama/stacking to PATH


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


[Nix-commits] [NixOS/nixpkgs] 15708f: emby: 3.0.7100 -> 3.0.7200

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 15708fe204c41c9df7b465cce903067c20df9d55
  
https://github.com/NixOS/nixpkgs/commit/15708fe204c41c9df7b465cce903067c20df9d55
  Author: Tristan Helmich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  emby: 3.0.7100 -> 3.0.7200


  Commit: 9f2f523a59125864da2644a6127567b4cb509be0
  
https://github.com/NixOS/nixpkgs/commit/9f2f523a59125864da2644a6127567b4cb509be0
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18725 from mayflower/emby_3.0.7200

emby: 3.0.7100 -> 3.0.7200


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


[Nix-commits] [NixOS/nixpkgs] bb1ac3: kde5.marble: Init at 16.08.0

2016-09-18 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bb1ac34264a11b25a0f00f97550fe43ce00be8b0
  
https://github.com/NixOS/nixpkgs/commit/bb1ac34264a11b25a0f00f97550fe43ce00be8b0
  Author: Moritz Ulrich 
  Date:   2016-09-09 (Fri, 09 Sep 2016)

  Changed paths:
M pkgs/desktops/kde-5/applications/default.nix
A pkgs/desktops/kde-5/applications/marble.nix

  Log Message:
  ---
  kde5.marble: Init at 16.08.0


  Commit: bbd82656bba0ac9b104a00671284daf36e62234f
  
https://github.com/NixOS/nixpkgs/commit/bbd82656bba0ac9b104a00671284daf36e62234f
  Author: Moritz Ulrich 
  Date:   2016-09-09 (Fri, 09 Sep 2016)

  Changed paths:
A pkgs/applications/graphics/digikam/5.1.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  digikam5: Init at 5.1.0


  Commit: 8d3644d7b2ae8f0911e3cfac759a1c14f74621cb
  
https://github.com/NixOS/nixpkgs/commit/8d3644d7b2ae8f0911e3cfac759a1c14f74621cb
  Author: Thomas Tuegel 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
A pkgs/applications/graphics/digikam/5.1.nix
M pkgs/desktops/kde-5/applications/default.nix
A pkgs/desktops/kde-5/applications/marble.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #18303 from the-kenny/digikam-51

Digikam 5.1


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


[Nix-commits] [NixOS/nixpkgs] 634824: ccache: fix references to stdenv.cc.cc.isClang

2016-09-18 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 634824d50be0fbccd30359366db8a150eb25dabd
  
https://github.com/NixOS/nixpkgs/commit/634824d50be0fbccd30359366db8a150eb25dabd
  Author: Joachim Fasting 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  ccache: fix references to stdenv.cc.cc.isClang

afa64a60bc73a5b5b1340f9ec9daae198d49e5d2 breaks the
tarball job https://hydra.nixos.org/build/40817224/nixlog/1/raw

The problem is that there is a stdenv.cc.cc.isGNU but no corresponding
stdenv.cc.cc.isClang. The "correct" fix would be to add
stdenv.cc.cc.isClang but this is simpler.


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


[Nix-commits] [NixOS/nixpkgs] 7617e7: grub: add boot.loader.grub.efiInstallAsRemovable

2016-09-18 Thread obadz
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7617e7eb74e038724efc39e3ca46a63b9edb3d44
  
https://github.com/NixOS/nixpkgs/commit/7617e7eb74e038724efc39e3ca46a63b9edb3d44
  Author: obadz 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M nixos/modules/installer/tools/nixos-generate-config.pl
M nixos/modules/system/boot/loader/grub/grub.nix
M nixos/modules/system/boot/loader/grub/install-grub.pl

  Log Message:
  ---
  grub: add boot.loader.grub.efiInstallAsRemovable

Closes #16374

(cherry picked from commit 1c9ac8aabc3105b14c762459bd14a5d53f691449)

grub: clarify efiInstallAsRemovable docstring

(cherry picked from commit eda4f5d409360c961010a3666b35cc5d61f64a36)

grub: fix manual build

(cherry picked from commit 93974eb98b8b8bab5feae11a1a449c98c2d1a8c8)


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


[Nix-commits] [NixOS/nixpkgs] e2659d: kernelPatches: remove legacy grsecurity attrs

2016-09-18 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e2659de1b253c2948d7c2f5501f0e0246fc483e1
  
https://github.com/NixOS/nixpkgs/commit/e2659de1b253c2948d7c2f5501f0e0246fc483e1
  Author: Joachim Fasting 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  kernelPatches: remove legacy grsecurity attrs


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


[Nix-commits] [NixOS/nixpkgs] d9cdbc: libcaca: Enable support for png/jpeg/gif

2016-09-18 Thread Moritz Ulrich
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d9cdbcc34ef342c13170e8f53d4416ffdd6f057f
  
https://github.com/NixOS/nixpkgs/commit/d9cdbcc34ef342c13170e8f53d4416ffdd6f057f
  Author: Moritz Ulrich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  libcaca: Enable support for png/jpeg/gif

Fixes #18683


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


[Nix-commits] [NixOS/nixpkgs] c8d4f4: Revert "libcaca: Enable support for png/jpeg/gif"

2016-09-18 Thread Moritz Ulrich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c8d4f40dc6411fe68c3f5108ccf351386db0e1f0
  
https://github.com/NixOS/nixpkgs/commit/c8d4f40dc6411fe68c3f5108ccf351386db0e1f0
  Author: Moritz Ulrich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Revert "libcaca: Enable support for png/jpeg/gif"

I didn't notice this was a mass-rebuild change. Pushing it to
staging instead.

This reverts commit 6b8bd7c7d51d133ae5fca6aa7268a937e37de4c8.


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


[Nix-commits] [NixOS/nixpkgs] 6b8bd7: libcaca: Enable support for png/jpeg/gif

2016-09-18 Thread Moritz Ulrich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6b8bd7c7d51d133ae5fca6aa7268a937e37de4c8
  
https://github.com/NixOS/nixpkgs/commit/6b8bd7c7d51d133ae5fca6aa7268a937e37de4c8
  Author: Moritz Ulrich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  libcaca: Enable support for png/jpeg/gif

Fixes #18683


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


[Nix-commits] [NixOS/nixpkgs] 5f961d: linux_4_7: 4.7.3 -> 4.7.4

2016-09-18 Thread Joachim Fasting
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5f961da65e7933a74734ca33ee1ead02004c0954
  
https://github.com/NixOS/nixpkgs/commit/5f961da65e7933a74734ca33ee1ead02004c0954
  Author: Joachim Fasting 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  linux_4_7: 4.7.3 -> 4.7.4

(cherry picked from commit 2050f12f4ef473a009f8939befdbab87c9781959)


  Commit: b59a9daf6358afd0b7ba4b04aadd3a20d1b44b7e
  
https://github.com/NixOS/nixpkgs/commit/b59a9daf6358afd0b7ba4b04aadd3a20d1b44b7e
  Author: Joachim Fasting 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-grsecurity.nix
M pkgs/os-specific/linux/kernel/patches.nix

  Log Message:
  ---
  grsecurity: 4.7.3-201609072139 -> 4.7.4-201609152234

(cherry picked from commit d082a7c0fd04ed1f3e44323450112041b45495de)


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


[Nix-commits] [NixOS/nixpkgs] cc60ee: connman: 1.32 -> 1.33

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cc60ee187a7d55fbd6010a99e5fb88e41e8da5dd
  
https://github.com/NixOS/nixpkgs/commit/cc60ee187a7d55fbd6010a99e5fb88e41e8da5dd
  Author: Herwig Hochleitner 
  Date:   2016-09-14 (Wed, 14 Sep 2016)

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

  Log Message:
  ---
  connman: 1.32 -> 1.33


  Commit: bb27f062e6575d8f075d24181b977596f6888279
  
https://github.com/NixOS/nixpkgs/commit/bb27f062e6575d8f075d24181b977596f6888279
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18592 from bendlas/update-connman

connman: 1.32 -> 1.33


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


[Nix-commits] [NixOS/nixpkgs] 8e89e4: efl: 1.18.0 -> 1.18.1

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8e89e44dd45a16609d4ffbfe7c3f9d9e74f437d1
  
https://github.com/NixOS/nixpkgs/commit/8e89e44dd45a16609d4ffbfe7c3f9d9e74f437d1
  Author: José Romildo Malaquias 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

  Changed paths:
M pkgs/desktops/enlightenment/efl.nix

  Log Message:
  ---
  efl: 1.18.0 -> 1.18.1


  Commit: 085395d18ec0e3ee9b28a95b5e1e8088b267bee7
  
https://github.com/NixOS/nixpkgs/commit/085395d18ec0e3ee9b28a95b5e1e8088b267bee7
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/desktops/enlightenment/efl.nix

  Log Message:
  ---
  Merge pull request #18690 from romildo/upd.efl

efl: 1.18.0 -> 1.18.1


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


[Nix-commits] [NixOS/nixpkgs] 355eb4: xfce4-sensors-plugin: init at 1.2.6

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 355eb44e941a16c2f76bee2612a9fef63a0d3156
  
https://github.com/NixOS/nixpkgs/commit/355eb44e941a16c2f76bee2612a9fef63a0d3156
  Author: José Romildo Malaquias 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

  Changed paths:
M pkgs/desktops/xfce/default.nix
A pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix

  Log Message:
  ---
  xfce4-sensors-plugin: init at 1.2.6


  Commit: 445e50af639af8e2b6eb852e2928b1a0157b6934
  
https://github.com/NixOS/nixpkgs/commit/445e50af639af8e2b6eb852e2928b1a0157b6934
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/desktops/xfce/default.nix
A pkgs/desktops/xfce/panel-plugins/xfce4-sensors-plugin.nix

  Log Message:
  ---
  Merge pull request #18699 from romildo/new.xfce4-sensors-plugin

xfce4-sensors-plugin: init at 1.2.6


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


[Nix-commits] [NixOS/nixpkgs] 4ed934: factorio: 0.13.13 -> 0.13.20

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4ed934313fa8ff5ab56b26d9a2fd418bf16950da
  
https://github.com/NixOS/nixpkgs/commit/4ed934313fa8ff5ab56b26d9a2fd418bf16950da
  Author: Viktor Stanchev 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

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

  Log Message:
  ---
  factorio: 0.13.13 -> 0.13.20


  Commit: b20d9861baf2707226259efcadedba1fc14d4813
  
https://github.com/NixOS/nixpkgs/commit/b20d9861baf2707226259efcadedba1fc14d4813
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

  Log Message:
  ---
  Merge pull request #18713 from vikstrous/factorio-update

factorio: 0.13.13 -> 0.13.20


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


[Nix-commits] [NixOS/nixpkgs] 61554b: xfce4-settings: 4.12.0 -> 4.12.1

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 61554b15f5ba56b7e25f97eefe6ff1c9ccc7e8cb
  
https://github.com/NixOS/nixpkgs/commit/61554b15f5ba56b7e25f97eefe6ff1c9ccc7e8cb
  Author: José Romildo Malaquias 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

  Changed paths:
M pkgs/desktops/xfce/core/xfce4-settings.nix

  Log Message:
  ---
  xfce4-settings: 4.12.0 -> 4.12.1


  Commit: beeaba58fc23f7413724181b3a22064d04777bcf
  
https://github.com/NixOS/nixpkgs/commit/beeaba58fc23f7413724181b3a22064d04777bcf
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/desktops/xfce/core/xfce4-settings.nix

  Log Message:
  ---
  Merge pull request #18698 from romildo/upd.xfce4-settings

xfce4-settings: 4.12.0 -> 4.12.1


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


[Nix-commits] [NixOS/nixpkgs] 59730d: vis: 2016-07-15 -> 2016-08-24

2016-09-18 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 59730d32dacc4f03e83fcc1f62ddf38382faff1f
  
https://github.com/NixOS/nixpkgs/commit/59730d32dacc4f03e83fcc1f62ddf38382faff1f
  Author: Ram Kromberg 
  Date:   2016-09-17 (Sat, 17 Sep 2016)

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

  Log Message:
  ---
  vis: 2016-07-15 -> 2016-08-24


  Commit: 39405311b8ec7ab386cf2a5da46d6d276bea0eee
  
https://github.com/NixOS/nixpkgs/commit/39405311b8ec7ab386cf2a5da46d6d276bea0eee
  Author: Joachim F 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

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

vis: 2016-07-15 -> 2016-08-24


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


[Nix-commits] [NixOS/nixpkgs] ed02a7: pkcs11-helper: ??? git rev -> 1.11

2016-09-18 Thread Alexey Shmalko
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ed02a770aef844fd4782e21685334d889e5ceffd
  
https://github.com/NixOS/nixpkgs/commit/ed02a770aef844fd4782e21685334d889e5ceffd
  Author: John Ericson 
  Date:   2016-09-16 (Fri, 16 Sep 2016)

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

  Log Message:
  ---
  pkcs11-helper: ??? git rev -> 1.11


  Commit: ea1caf92725f72c8cb1a0f68c54fe7e6a6f41e8f
  
https://github.com/NixOS/nixpkgs/commit/ea1caf92725f72c8cb1a0f68c54fe7e6a6f41e8f
  Author: John Ericson 
  Date:   2016-09-16 (Fri, 16 Sep 2016)

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

  Log Message:
  ---
  openvpn: Optional pkcs11 support


  Commit: 19898d8284399fc9e297ad58eedba3f3abac8d9c
  
https://github.com/NixOS/nixpkgs/commit/19898d8284399fc9e297ad58eedba3f3abac8d9c
  Author: Alexey Shmalko 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/libraries/pkcs11helper/default.nix
M pkgs/tools/networking/openvpn/default.nix

  Log Message:
  ---
  Merge pull request #18650 from Ericson2314/openvpn-pkcs11

pkcs11-helper: git rev -> 1.11, openvpn w/ pkcs11-helper support


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


[Nix-commits] [NixOS/nixpkgs] 01e44a: emacs: 24.5 -> 25.1

2016-09-18 Thread Moritz Ulrich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 01e44ac1f9af1d42ee9b5000426b780f2a03c948
  
https://github.com/NixOS/nixpkgs/commit/01e44ac1f9af1d42ee9b5000426b780f2a03c948
  Author: Moritz Ulrich 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M nixos/modules/services/editors/emacs.xml
R pkgs/applications/editors/emacs-24/at-fdcwd.patch
R pkgs/applications/editors/emacs-24/builder.sh
R pkgs/applications/editors/emacs-24/default.nix
R pkgs/applications/editors/emacs-24/macport-24.5.nix
R pkgs/applications/editors/emacs-24/site-start.el
R pkgs/applications/editors/emacs-24/tty-true-color.patch
R pkgs/applications/editors/emacs-25/at-fdcwd.patch
R pkgs/applications/editors/emacs-25/builder.sh
R pkgs/applications/editors/emacs-25/default.nix
R pkgs/applications/editors/emacs-25/site-start.el
A pkgs/applications/editors/emacs/at-fdcwd.patch
A pkgs/applications/editors/emacs/builder.sh
A pkgs/applications/editors/emacs/default.nix
A pkgs/applications/editors/emacs/macport-24.5.nix
A pkgs/applications/editors/emacs/site-start.el
M pkgs/development/haskell-modules/configuration-common.nix
M pkgs/top-level/all-packages.nix
M pkgs/top-level/release-small.nix
M pkgs/top-level/release.nix

  Log Message:
  ---
  emacs: 24.5 -> 25.1

This commit removes all references to emacs24 with the exception of
emacs24-macports. The two folders in `pkgs/applications/editors` named
`emacs-24` and `emacs-24` are consolidated to a new `emacs` folder.

Various parts in nixpkgs also referenced `emacs24Packages` (pinned to
`emacs24`) explicitly where `emacsPackages` (non-pinned) is more
appropriate. These references get fixed by this commit too.


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


[Nix-commits] [NixOS/nixpkgs] 20fb07: fira-code: 1.201 -> 1.203

2016-09-18 Thread Robert Helgesson
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 20fb07dc4ae8a4dc186779f01f3a65e6cc6eed33
  
https://github.com/NixOS/nixpkgs/commit/20fb07dc4ae8a4dc186779f01f3a65e6cc6eed33
  Author: Robert Helgesson 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

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

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


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


[Nix-commits] [NixOS/nixpkgs] b7aad2: hackage-packages.nix: automatic Haskell package se...

2016-09-18 Thread Peter Simons
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b7aad298068acb1f55b0c848cfaf838ddb55b4fa
  
https://github.com/NixOS/nixpkgs/commit/b7aad298068acb1f55b0c848cfaf838ddb55b4fa
  Author: Peter Simons 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  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.0.2-3-g78b650c from Hackage revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/74dd7d3698b4875d97cdd175d32260dd528a26ae.


  Commit: 59e0dff09fd11fce65ec9b75be7fa0d16b1ea006
  
https://github.com/NixOS/nixpkgs/commit/59e0dff09fd11fce65ec9b75be7fa0d16b1ea006
  Author: Peter Simons 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/haskell-modules/configuration-common.nix

  Log Message:
  ---
  hoogle: remove obsolete override


  Commit: 806d96b6a3c6036940494a27c7d91b7cf0ea1337
  
https://github.com/NixOS/nixpkgs/commit/806d96b6a3c6036940494a27c7d91b7cf0ea1337
  Author: Peter Simons 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/haskell-modules/configuration-common.nix

  Log Message:
  ---
  git-annex: test suite fails, reported upstream


  Commit: 2b1fea120c11dfcfd1e2b27ae0278fc5938c1041
  
https://github.com/NixOS/nixpkgs/commit/2b1fea120c11dfcfd1e2b27ae0278fc5938c1041
  Author: Peter Simons 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/development/haskell-modules/configuration-common.nix

  Log Message:
  ---
  idris: disable failing test suite


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


[Nix-commits] [NixOS/nixpkgs] 10f2be: stdenv.mkDerivation: add comments w/ manual links ...

2016-09-18 Thread Chris Martin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 10f2befa5875469c39a63049f5c47269d669d4d8
  
https://github.com/NixOS/nixpkgs/commit/10f2befa5875469c39a63049f5c47269d669d4d8
  Author: Chris Martin 
  Date:   2016-09-18 (Sun, 18 Sep 2016)

  Changed paths:
M pkgs/stdenv/generic/default.nix

  Log Message:
  ---
  stdenv.mkDerivation: add comments w/ manual links (#18707)


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