Re: [Nix-dev] nixos-rebuild without Internet

2017-06-24 Thread Danylo Hlynskyi
In general, no, there isn't "partial" rebuild, because Nix itself doesn't
support "partial" builds (and NixOS is
just another derivation)

There are workarounds, however:
- don't setup network via NixOS modules, do it with direct imperative
commands
- often some commands are hidden. For example, when network-manager is
enabled, dhcpcd is disabled.
  And the only way to run dhcpcd is to find the binary in /nix/store/...
hoping GC didn't remove it.
- don't do channel updates and GCs, if you know you may experience internet
problems.
- if you do channel updates, don't GC channel profiles at least (so you can
nix-channel --rollback)
  I've done this several times, updated a channel to setup some package,
but didn't do nixos-rebuild...
- if you do know, what possible NixOS configurations may help you in
future, use the `nesting.clone` option.
  Let me show you an example.

  # configuration.nix
  { lib, ...}: {

 networking.networkmanager.enable = true;

 nesting.clone = [
   {
   networking.networkmanager.enable = lib.mkForce false;
   networking.dhcpcd.enable = lib.mkForce true;
   }
 ];

  }

  This defines a default configuration with NM enabled, and alternative
with NM disabled and DHCPcd enabled
  You can activate the alternative configuration with
  $ sudo /run/current-system/fine-tune/child-1/bin/switch-to-configuration
test

  To revert back either reboot, or
  $ sudo /run/booted-system/bin/switch-to-configuration test

  By using nesting.clone, you can declaratively control which parts of
configuration should
  be retained by GC collector without polluting your current environment.
  The activation of configuration shouldn't require internet connection.

2017-06-25 1:52 GMT+03:00 Maximilian Bosch :

> Hey guys,
>
> I'm using a NixOS setup on my developer machine. For WLAN networks I use
> the `networking.wireless` option as it allows me a declarative/reproducible
> setup of the networks I use on a daily basis.
>
> Unfortunately I'm facing from time to time the following issue: whenever I
> try to add a new network (and no connection is available ATM) I have a
> problem running `nixos-rebuild` as the rebuild usually causes a lot of
> other operations and some of them require a connection to the internet
> (e.g. for [re]downloads).
>
> However this is quite bad when I need a new network, but the rebuild
> fails. I currently solve it using several tricks, but in the end I'd like
> to now if there's some kind of tool to do a "partial-rebuild" on a NixOS
> machine (although it might break the reproducability as the expressions
> wouln'dt be 100%-deterministic anymore) or if I have to live with this
> issue.
>
> Thanks and have a nice Sunday,
>
> Maximilian
>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> https://mailman.science.uu.nl/mailman/listinfo/nix-dev
>
>
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] nixos-rebuild without Internet

2017-06-24 Thread James Cook
On 24 June 2017 at 22:52, Maximilian Bosch  wrote:
> Hey guys,
>
> I'm using a NixOS setup on my developer machine. For WLAN networks I use the
> `networking.wireless` option as it allows me a declarative/reproducible
> setup of the networks I use on a daily basis.
>
> Unfortunately I'm facing from time to time the following issue: whenever I
> try to add a new network (and no connection is available ATM) I have a
> problem running `nixos-rebuild` as the rebuild usually causes a lot of other
> operations and some of them require a connection to the internet (e.g. for
> [re]downloads).
>
> However this is quite bad when I need a new network, but the rebuild fails.
> I currently solve it using several tricks, but in the end I'd like to now if
> there's some kind of tool to do a "partial-rebuild" on a NixOS machine
> (although it might break the reproducability as the expressions wouln'dt be
> 100%-deterministic anymore) or if I have to live with this issue.
>
> Thanks and have a nice Sunday,
>
> Maximilian

Hi Maximilian,

If you only make a configuration change like reconfiguring a network
interface, I'd expect nixos-rebuild to work without a network.

If you update your nixpkgs version (e.g. nix-channel --update or git
pull or passing --upgrade to nixos-rebuild) that could mean the next
build requires a network connection. Could that be it?

Or is it trying to access the binary cache? If so, there's surely some
way to disable that so it builds everything locally.

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


[Nix-dev] nixos-rebuild without Internet

2017-06-24 Thread Maximilian Bosch
Hey guys,

I'm using a NixOS setup on my developer machine. For WLAN networks I use
the `networking.wireless` option as it allows me a declarative/reproducible
setup of the networks I use on a daily basis.

Unfortunately I'm facing from time to time the following issue: whenever I
try to add a new network (and no connection is available ATM) I have a
problem running `nixos-rebuild` as the rebuild usually causes a lot of
other operations and some of them require a connection to the internet
(e.g. for [re]downloads).

However this is quite bad when I need a new network, but the rebuild fails.
I currently solve it using several tricks, but in the end I'd like to now
if there's some kind of tool to do a "partial-rebuild" on a NixOS machine
(although it might break the reproducability as the expressions wouln'dt be
100%-deterministic anymore) or if I have to live with this issue.

Thanks and have a nice Sunday,

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


[Nix-commits] [NixOS/nixpkgs] 6916f2: treewide: enableParallelBuild -> enableParallelBui...

2017-06-24 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6916f24e84ea4233f671ebc75de0ba10187c86b6
  
https://github.com/NixOS/nixpkgs/commit/6916f24e84ea4233f671ebc75de0ba10187c86b6
  Author: Bjørn Forsman 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/desktops/plasma-5/khotkeys.nix
M pkgs/development/libraries/qt-5/5.9/qtlocation.nix

  Log Message:
  ---
  treewide: enableParallelBuild -> enableParallelBuilding


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


[Nix-commits] [NixOS/nixpkgs] 0d1a1a: plasma-workspace: no propagatedBuildInputs

2017-06-24 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0d1a1a49547215ccc36197a53e49d14edf193faa
  
https://github.com/NixOS/nixpkgs/commit/0d1a1a49547215ccc36197a53e49d14edf193faa
  Author: Thomas Tuegel 
  Date:   2017-06-23 (Fri, 23 Jun 2017)

  Changed paths:
M pkgs/desktops/plasma-5/plasma-workspace/default.nix

  Log Message:
  ---
  plasma-workspace: no propagatedBuildInputs

Only libraries may have propagatedBuildInputs.


  Commit: 22b10bac78eb2b27e45248015d30e5e658174ca6
  
https://github.com/NixOS/nixpkgs/commit/22b10bac78eb2b27e45248015d30e5e658174ca6
  Author: Thomas Tuegel 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/development/libraries/kde-frameworks/kjs.nix
R pkgs/development/libraries/qt-5/5.8/default.nix
R pkgs/development/libraries/qt-5/5.8/fetch.sh
R pkgs/development/libraries/qt-5/5.8/qtbase/cmake-paths.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/compose-search-path.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/default.nix
R pkgs/development/libraries/qt-5/5.8/qtbase/dlopen-gl.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/dlopen-gtkstyle.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/dlopen-libXcursor.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/dlopen-resolv.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/library-paths.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/libressl.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/qgtk-env.patch
R 
pkgs/development/libraries/qt-5/5.8/qtbase/qnativesocketengine-type-pun.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/series
R pkgs/development/libraries/qt-5/5.8/qtbase/tzdir.patch
R pkgs/development/libraries/qt-5/5.8/qtbase/xdg-config-dirs.patch
R pkgs/development/libraries/qt-5/5.8/qtconnectivity.nix
R pkgs/development/libraries/qt-5/5.8/qtdeclarative/default.nix
R pkgs/development/libraries/qt-5/5.8/qtdeclarative/import-paths.patch
R pkgs/development/libraries/qt-5/5.8/qtdeclarative/series
R pkgs/development/libraries/qt-5/5.8/qtdoc.nix
R pkgs/development/libraries/qt-5/5.8/qtgraphicaleffects.nix
R pkgs/development/libraries/qt-5/5.8/qtimageformats.nix
R pkgs/development/libraries/qt-5/5.8/qtlocation.nix
R pkgs/development/libraries/qt-5/5.8/qtmacextras.nix
R pkgs/development/libraries/qt-5/5.8/qtmultimedia.nix
R pkgs/development/libraries/qt-5/5.8/qtquickcontrols.nix
R pkgs/development/libraries/qt-5/5.8/qtquickcontrols2.nix
R pkgs/development/libraries/qt-5/5.8/qtscript/0001-glib-2.32.patch
R pkgs/development/libraries/qt-5/5.8/qtscript/default.nix
R pkgs/development/libraries/qt-5/5.8/qtsensors.nix
R pkgs/development/libraries/qt-5/5.8/qtserialport/default.nix
R 
pkgs/development/libraries/qt-5/5.8/qtserialport/qtserialport-dlopen-udev.patch
R pkgs/development/libraries/qt-5/5.8/qtserialport/series
R pkgs/development/libraries/qt-5/5.8/qtsvg.nix
R pkgs/development/libraries/qt-5/5.8/qttools/cmake-paths.patch
R pkgs/development/libraries/qt-5/5.8/qttools/default.nix
R pkgs/development/libraries/qt-5/5.8/qttools/series
R pkgs/development/libraries/qt-5/5.8/qttranslations.nix
R pkgs/development/libraries/qt-5/5.8/qtwayland.nix
R pkgs/development/libraries/qt-5/5.8/qtwebchannel.nix
R pkgs/development/libraries/qt-5/5.8/qtwebengine/default.nix
R 
pkgs/development/libraries/qt-5/5.8/qtwebengine/qtwebengine-paxmark-mksnapshot.patch
R pkgs/development/libraries/qt-5/5.8/qtwebkit/default.nix
R pkgs/development/libraries/qt-5/5.8/qtwebkit/qtwebkit-dlopen-gtk.patch
R pkgs/development/libraries/qt-5/5.8/qtwebkit/qtwebkit-dlopen-udev.patch
R pkgs/development/libraries/qt-5/5.8/qtwebkit/qtwebkit-icucore-darwin.patch
R pkgs/development/libraries/qt-5/5.8/qtwebkit/series
R pkgs/development/libraries/qt-5/5.8/qtwebsockets.nix
R pkgs/development/libraries/qt-5/5.8/qtx11extras.nix
R pkgs/development/libraries/qt-5/5.8/qtxmlpatterns.nix
R pkgs/development/libraries/qt-5/5.8/srcs.nix
A pkgs/development/libraries/qt-5/5.9/default.nix
A pkgs/development/libraries/qt-5/5.9/fetch.sh
A pkgs/development/libraries/qt-5/5.9/qtbase/cmake-paths.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/compose-search-path.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/default.nix
A pkgs/development/libraries/qt-5/5.9/qtbase/dlopen-gl.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/dlopen-gtkstyle.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/dlopen-libXcursor.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/dlopen-resolv.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/library-paths.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/libressl.patch
A pkgs/development/libraries/qt-5/5.9/qtbase/qgtk-env.patch
A 

[Nix-commits] [NixOS/nixpkgs] 39cd4c: bitlbee-facebook: 1.1.0 -> 1.1.1

2017-06-24 Thread tv
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 39cd4cf25da9e252cec2ca0a9d04651a6e215771
  
https://github.com/NixOS/nixpkgs/commit/39cd4cf25da9e252cec2ca0a9d04651a6e215771
  Author: tv 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  bitlbee-facebook: 1.1.0 -> 1.1.1

(cherry picked from commit 267ea506043a5645fea9e7c8cef6cdd43bd32991)


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


[Nix-commits] [NixOS/nixpkgs] 267ea5: bitlbee-facebook: 1.1.0 -> 1.1.1

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 267ea506043a5645fea9e7c8cef6cdd43bd32991
  
https://github.com/NixOS/nixpkgs/commit/267ea506043a5645fea9e7c8cef6cdd43bd32991
  Author: tv 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  bitlbee-facebook: 1.1.0 -> 1.1.1


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

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

  Log Message:
  ---
  Merge pull request #26822 from 4z3/bitlbee-facebook

bitlbee-facebook: 1.1.0 -> 1.1.1


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


[Nix-commits] [NixOS/nixpkgs] 916970: spotify: 1.0.55.487.g256699aa-16 -> 1.0.57.474.gca...

2017-06-24 Thread Der Pfirsich
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 916970f68d4699d1c0450d79038bf5a8f351ce49
  
https://github.com/NixOS/nixpkgs/commit/916970f68d4699d1c0450d79038bf5a8f351ce49
  Author: Der Pfirsich 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  spotify: 1.0.55.487.g256699aa-16 -> 1.0.57.474.gca9c9538-30 (#26794)

(cherry picked from commit 2c6fbc737f84186f4bce5458e820dcff393da4f0)


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


[Nix-commits] [NixOS/nixpkgs] 2c6fbc: spotify: 1.0.55.487.g256699aa-16 -> 1.0.57.474.gca...

2017-06-24 Thread Der Pfirsich
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2c6fbc737f84186f4bce5458e820dcff393da4f0
  
https://github.com/NixOS/nixpkgs/commit/2c6fbc737f84186f4bce5458e820dcff393da4f0
  Author: Der Pfirsich 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  spotify: 1.0.55.487.g256699aa-16 -> 1.0.57.474.gca9c9538-30 (#26794)


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


[Nix-commits] [NixOS/nixpkgs] 9929e8: systemd-boot-builder.py: add support for profiles ...

2017-06-24 Thread Kai
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 9929e83607ddf6f71a54281955a34ad7505c3a75
  
https://github.com/NixOS/nixpkgs/commit/9929e83607ddf6f71a54281955a34ad7505c3a75
  Author: Kai 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py

  Log Message:
  ---
  systemd-boot-builder.py: add support for profiles (#26318)

* systemd-boot-builder.py: add support for profiles

This will also list the generations of other profiles than `system` in
the boot menu. See the documentation of the `--profile-name` option of
nixos-rebuild for more information on profiles.

* Fix errors introduced by previous commit


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


Re: [Nix-dev] 5 somewhat related questions

2017-06-24 Thread Matt McHenry
I had some of the same thoughts as Klass about nix-env vs.
/etc/nixos/configuration.nix when I started using NixOS about a year
ago.  Since all the machines I run it on are single-user, I've found
it simplest to never run nix-env, and just 'sudo emacs
/etc/nixos/pkgs-configuration.nix && sudo nixos-rebuild switch' to
install new packages.  (I've modularized my
/etc/nixos/configuration.nix.)

I keep /etc/nixos under git version control, so that I can move
between versions of the machine config independently of versions of
nixpkgs.  This also has the benefit of making in very easy to keep
configuration changes in sync between my different NixOS machines
(they all push/pull to/from each other as remote repos).

Rather than using nix-channel to manage my channels, I've instead just
relied on a clone of the nixpkgs repo.  If you do 'git remote add
channels git://github.com/NixOS/nixpkgs-channels.git', then 'git fetch
--all' will pull down channels/nixos-unstable etc. branch pointers,
and you can track them locally very easily.  'nixos-version
--revision' will report the commit hash that your currently-running
system was build from -- very handy for bisects etc.  It's also part
of the system derivation name.

Having a local nixpkgs repo lowers the barrier to contributing fixes
back into it, too.  :)

I also use the 'nox' tool to preview nixpkgs updates before applying
them.  Following is a short script that I wrote to handle it.  It
fetches the latest nixos-unstable, checks whether there's anything new
in it, and if so, uses 'nixos-rebuild build' to build (but not swtich
to) it.  Then if that succeeds, it uses 'nox-update' to generate a
summary report of the differences between the current system and the
newly-built system.  This lets me know what to keep an eye on WRT
possible breakages.

The only major downside of this approach is that I have to always
remember to give '-I nixpkgs=...' arguments to all the usual nix
commands.  But that's become pretty second nature to me by now.  :)


#!/usr/bin/env bash

set -o errexit
set -o nounset

git fetch --all

current=$(nixos-version --revision);

if git merge-base --is-ancestor channels/nixos-unstable $current; then
echo "current version ($current) already contains latest nixos-unstable";
exit 0;
fi;

d=$(date +%Y-%m-%d-%H-%M)

wt=/home/matt/git/nixos/nixpkgs-update-$d

git worktree add -b update-$d $wt $current

pushd $wt

git merge channels/nixos-unstable -m "Merge remote-tracking branch
'channels/nixos-unstable'";

nixos-rebuild build -I nixpkgs=$wt

echo;
echo "rebuild complete, computing changes";
echo;

nox-update --quiet /run/current-system result | \
grep -v '\.drv : $' | \
sed 's|^ */nix/store/[a-z0-9]*-||' | \
sort -u > \
 update-${d}.txt

popd;

mv $wt/update-$d.txt .;

rm -rf $wt;
git worktree prune;

echo;
echo "to review changes:";
echo;
echo "less update-$d.txt";
echo;
echo "to switch to new system:";
echo;
echo "git merge --ff-only update-$d";
echo "sudo nixos-rebuild boot -I nixpkgs=$(pwd)";
echo;
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 1e9a9b: creduce: 2.6.0 -> 2.7.0, now uses LLVM 4

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1e9a9ba149fe941d9f489cb1e794aa3fc3b519b2
  
https://github.com/NixOS/nixpkgs/commit/1e9a9ba149fe941d9f489cb1e794aa3fc3b519b2
  Author: Will Dietz 
  Date:   2017-06-22 (Thu, 22 Jun 2017)

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

  Log Message:
  ---
  creduce: 2.6.0 -> 2.7.0, now uses LLVM 4


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

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

  Log Message:
  ---
  Merge pull request #26762 from dtzWill/update/creduce

creduce: 2.6.0 -> 2.7.0, now uses LLVM 4


Compare: https://github.com/NixOS/nixpkgs/compare/6741b3ac7cc2...09704d35f292___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 76e019: crashplan: 4.8.2 -> 4.8.3

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 76e019ad9f0cbf459fdb85fda0c79a960dfe1998
  
https://github.com/NixOS/nixpkgs/commit/76e019ad9f0cbf459fdb85fda0c79a960dfe1998
  Author: ajevans 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  crashplan: 4.8.2 -> 4.8.3


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

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

  Log Message:
  ---
  Merge pull request #26807 from ajevans85/crashplan-4-8-3

crashplan: 4.8.2 -> 4.8.3


Compare: https://github.com/NixOS/nixpkgs/compare/03aed4cfcf55...6741b3ac7cc2___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] ea440e: antlr4_7: init at 4.7

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ea440eae21fe79fe325566562b91936909a6d483
  
https://github.com/NixOS/nixpkgs/commit/ea440eae21fe79fe325566562b91936909a6d483
  Author: John Children 
  Date:   2017-06-20 (Tue, 20 Jun 2017)

  Changed paths:
A pkgs/development/tools/parsing/antlr/4.7.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  antlr4_7: init at 4.7

Includes a more recent version of antlr to nixpkgs. Previous
versions exist already, but version 4 brings many changes
to the generated code and runtime targets.

The install location has been changed from previous versions
of antlr to make use of the set-java-classpath hook, which
is required to make use of both the runtime and the binary.

Also includes the testing rig as a script to allow graphical
inspection of parse trees.


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

  Changed paths:
A pkgs/development/tools/parsing/antlr/4.7.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #26594 from jchildren/master

antlr4_7: init at 4.7


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


[Nix-commits] [NixOS/nixpkgs] 80ace7: libopus: 1.1.5 -> 1.2

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 80ace7383d2c2eb1a54598b09872a5ffef424d32
  
https://github.com/NixOS/nixpkgs/commit/80ace7383d2c2eb1a54598b09872a5ffef424d32
  Author: Martin Wohlert 
  Date:   2017-06-21 (Wed, 21 Jun 2017)

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

  Log Message:
  ---
  libopus: 1.1.5 -> 1.2

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

Changes since 1.1.x include:

- Speech quality improvements especially in the 12-20 kbit/s range
- Improved VBR encoding for hybrid mode
- More aggressive use of wider speech bandwidth, including fullband speech 
starting at 14 kbit/s
- Music quality improvements in the 32-48 kb/s range
- Generic and SSE CELT optimizations
- Support for directly encoding packets up to 120 ms
- DTX support for CELT mode
- SILK CBR improvements
- Support for all of the fixes in draft-ietf-codec-opus-update-06 (the mono 
downmix and the folding fixes need --enable-update-draft)
- Many bug fixes, including integer wrap-arounds discovered through fuzzing (no 
security implications)


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

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

  Log Message:
  ---
  Merge pull request #26749 from gentoofreak/libopus-1.2

libopus: 1.1.5 -> 1.2


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


[Nix-commits] [NixOS/nixpkgs] d7d6ba: rust-bindgen: 0.24.0 -> 0.25.5

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d7d6bacfbb377de21fa4c56d34526ab7a4c9496f
  
https://github.com/NixOS/nixpkgs/commit/d7d6bacfbb377de21fa4c56d34526ab7a4c9496f
  Author: dywedir 
  Date:   2017-06-19 (Mon, 19 Jun 2017)

  Changed paths:
M pkgs/development/tools/rust/bindgen/default.nix

  Log Message:
  ---
  rust-bindgen: 0.24.0 -> 0.25.5


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

  Changed paths:
M pkgs/development/tools/rust/bindgen/default.nix

  Log Message:
  ---
  Merge pull request #26707 from dywedir/rust-bindgen

rust-bindgen: 0.24.0 -> 0.25.5


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


[Nix-commits] [NixOS/nixpkgs] 8506fc: languagetool: fix arguments passing

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8506fc3653ecf83c56da5e8993a40174c25b9d32
  
https://github.com/NixOS/nixpkgs/commit/8506fc3653ecf83c56da5e8993a40174c25b9d32
  Author: Igor Sharonov 
  Date:   2017-06-17 (Sat, 17 Jun 2017)

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

  Log Message:
  ---
  languagetool: fix arguments passing


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

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

  Log Message:
  ---
  Merge pull request #26729 from igsha/languagetool

languagetool: fix arguments passing


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


[Nix-commits] [NixOS/nixpkgs] 2fe0cd: statifier: 1.7.3 -> 1.7.4

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2fe0cd548cc184dd7ebaccc09c6e1069cb4b1b04
  
https://github.com/NixOS/nixpkgs/commit/2fe0cd548cc184dd7ebaccc09c6e1069cb4b1b04
  Author: Niklas Hambüchen 
  Date:   2017-06-21 (Wed, 21 Jun 2017)

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

  Log Message:
  ---
  statifier: 1.7.3 -> 1.7.4


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

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

  Log Message:
  ---
  Merge pull request #26734 from nh2/statifier-1.7.4

statifier: 1.7.3 -> 1.7.4


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


[Nix-commits] [NixOS/nixpkgs] a3b2cc: upx: 3.93 -> 3.94

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a3b2ccb7b4c9d88a3a130ca5016ca9bb92094a90
  
https://github.com/NixOS/nixpkgs/commit/a3b2ccb7b4c9d88a3a130ca5016ca9bb92094a90
  Author: Will Dietz 
  Date:   2017-06-21 (Wed, 21 Jun 2017)

  Changed paths:
M pkgs/tools/compression/upx/default.nix

  Log Message:
  ---
  upx: 3.93 -> 3.94

* Use release tarball
* Cleanup a bit


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

  Changed paths:
M pkgs/tools/compression/upx/default.nix

  Log Message:
  ---
  Merge pull request #26757 from dtzWill/update/upx-3.94

upx: 3.93 -> 3.94


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


[Nix-commits] [NixOS/nixpkgs] 09c176: plex: 1.5.5 -> 1.5.7

2017-06-24 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 09c1768afdfe49d8916ce616dd553c5434b54b78
  
https://github.com/NixOS/nixpkgs/commit/09c1768afdfe49d8916ce616dd553c5434b54b78
  Author: Daiderd Jordan 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  plex: 1.5.5 -> 1.5.7


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


[Nix-commits] [NixOS/nixpkgs] c0cdf5: plex: fix preStart permissions

2017-06-24 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c0cdf58807f11bf112e8ebbbf2e1088caf6de5f2
  
https://github.com/NixOS/nixpkgs/commit/c0cdf58807f11bf112e8ebbbf2e1088caf6de5f2
  Author: Daiderd Jordan 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M nixos/modules/services/misc/plex.nix

  Log Message:
  ---
  plex: fix preStart permissions


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


[Nix-commits] [NixOS/nixpkgs] c84112: plex: fix preStart permissions

2017-06-24 Thread Daiderd Jordan
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c841128b8619354f97125fc008a542b9b0476a05
  
https://github.com/NixOS/nixpkgs/commit/c841128b8619354f97125fc008a542b9b0476a05
  Author: Daiderd Jordan 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M nixos/modules/services/misc/plex.nix

  Log Message:
  ---
  plex: fix preStart permissions

(cherry picked from commit c0cdf58807f11bf112e8ebbbf2e1088caf6de5f2)


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


[Nix-commits] [NixOS/nixpkgs] 5d7fd7: mailhog: init at 1.0.0 (#26821)

2017-06-24 Thread Samuel Leathers
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5d7fd7e7fa2a488d6df92da30933c27aad7530b6
  
https://github.com/NixOS/nixpkgs/commit/5d7fd7e7fa2a488d6df92da30933c27aad7530b6
  Author: Samuel Leathers 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M lib/maintainers.nix
M nixos/modules/module-list.nix
A nixos/modules/services/mail/mailhog.nix
A pkgs/servers/mail/mailhog/default.nix
A pkgs/servers/mail/mailhog/deps.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  mailhog: init at 1.0.0 (#26821)

* mailhog: init at 1.0.0

* formatting nitpicks


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


[Nix-commits] [NixOS/nixpkgs] 1be732: hugo: 0.24 -> 0.24.1

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1be7323f5a14acf9c3be258af36cd00bb07677b1
  
https://github.com/NixOS/nixpkgs/commit/1be7323f5a14acf9c3be258af36cd00bb07677b1
  Author: Yann Hodique 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/hugo/deps.nix

  Log Message:
  ---
  hugo: 0.24 -> 0.24.1


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

  Changed paths:
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/hugo/deps.nix

  Log Message:
  ---
  Merge pull request #26820 from sigma/pr/hugo-0.24

hugo: 0.24 -> 0.24.1


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


[Nix-commits] [NixOS/nixpkgs] 85b9ff: rrdtool: apply upstream patch to fix file permissi...

2017-06-24 Thread Volth
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 85b9ff29e998f3462dd053c27f147de35779e1f1
  
https://github.com/NixOS/nixpkgs/commit/85b9ff29e998f3462dd053c27f147de35779e1f1
  Author: Volth 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  rrdtool: apply upstream patch to fix file permission

fixes #26780 #26782


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


[Nix-commits] [NixOS/nixpkgs] 89aadc: kernel: enable audio jack reconfiguration

2017-06-24 Thread Tim Steinbach
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 89aadc39c81854dd010f716433faee18d8c477cd
  
https://github.com/NixOS/nixpkgs/commit/89aadc39c81854dd010f716433faee18d8c477cd
  Author: timor 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  kernel: enable audio jack reconfiguration

Change kernel config to allow for changing the functions of the audio
jacks at run-time as well as at boot time.

(cherry picked from commit d74f8351a525c604d85289119de4e65199365b58)


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

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

  Log Message:
  ---
  linux_4_11: renable CONFIG_UPROBE_EVENTS

CONFIG_UPROBE_EVENT was renamed to CONFIG_UPROBE_EVENTS.

(cherry picked from commit e89e96a7551e4213f50e0f44467546a26d42ea5f)


  Commit: 274bc995fee54bb720a3a0397dd6c41d8843252e
  
https://github.com/NixOS/nixpkgs/commit/274bc995fee54bb720a3a0397dd6c41d8843252e
  Author: Tuomas Tynkkynen 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

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

(cherry picked from commit 370ace4cf03b31eedcf1e635ed5d52272b774526)


  Commit: 48b9d227177f564dac8b6c5622be6a50fac3a24b
  
https://github.com/NixOS/nixpkgs/commit/48b9d227177f564dac8b6c5622be6a50fac3a24b
  Author: Tim Steinbach 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  linux: 4.11.6 -> 4.11.7

(cherry picked from commit 3a68f0bb78b2653c3b9fa945864cc690270f260e)


  Commit: e74d2b42c838c17b32545196d7911105456e3782
  
https://github.com/NixOS/nixpkgs/commit/e74d2b42c838c17b32545196d7911105456e3782
  Author: Tim Steinbach 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  linux: 4.9.33 -> 4.9.34

(cherry picked from commit b06cb59fc1f623e21722dc34aa20108db97afaba)


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


[Nix-commits] [NixOS/nixpkgs] 6bb5e9: perl-packages: fix typo in comment (#26819)

2017-06-24 Thread Hector Jusforgues
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6bb5e991abe012fb401936daf800df869f16e29b
  
https://github.com/NixOS/nixpkgs/commit/6bb5e991abe012fb401936daf800df869f16e29b
  Author: Hector Jusforgues 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  perl-packages: fix typo in comment (#26819)


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


[Nix-commits] [NixOS/nixpkgs] 66a5e0: hugo: 0.23 -> 0.24

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 66a5e0c8e04ca5bbfa0e7eb86cc1289fa655ab1c
  
https://github.com/NixOS/nixpkgs/commit/66a5e0c8e04ca5bbfa0e7eb86cc1289fa655ab1c
  Author: Yann Hodique 
  Date:   2017-06-21 (Wed, 21 Jun 2017)

  Changed paths:
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/hugo/deps.nix

  Log Message:
  ---
  hugo: 0.23 -> 0.24


  Commit: 0d72dfdcdf3180835d744750c5fff9b997afad19
  
https://github.com/NixOS/nixpkgs/commit/0d72dfdcdf3180835d744750c5fff9b997afad19
  Author: Yann Hodique 
  Date:   2017-06-21 (Wed, 21 Jun 2017)

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

  Log Message:
  ---
  hugo: fix github repo owner


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

  Changed paths:
M pkgs/applications/misc/hugo/default.nix
M pkgs/applications/misc/hugo/deps.nix

  Log Message:
  ---
  Merge pull request #26743 from sigma/pr/hugo-0.24

hugo: 0.23 -> 0.24


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


[Nix-commits] [NixOS/nixpkgs] 3a68f0: linux: 4.11.6 -> 4.11.7

2017-06-24 Thread Tim Steinbach
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3a68f0bb78b2653c3b9fa945864cc690270f260e
  
https://github.com/NixOS/nixpkgs/commit/3a68f0bb78b2653c3b9fa945864cc690270f260e
  Author: Tim Steinbach 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  linux: 4.11.6 -> 4.11.7


  Commit: b06cb59fc1f623e21722dc34aa20108db97afaba
  
https://github.com/NixOS/nixpkgs/commit/b06cb59fc1f623e21722dc34aa20108db97afaba
  Author: Tim Steinbach 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  linux: 4.9.33 -> 4.9.34


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


[Nix-commits] [NixOS/nixpkgs] 69153f: networkmanager: fix arping path

2017-06-24 Thread Masayuki Takeda
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 69153f12e4706898588716d752351d0e887c789a
  
https://github.com/NixOS/nixpkgs/commit/69153f12e4706898588716d752351d0e887c789a
  Author: Masayuki Takeda 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/tools/networking/network-manager/default.nix

  Log Message:
  ---
  networkmanager: fix arping path


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


[Nix-commits] [NixOS/nixpkgs] b8658f: fetchgit: support "git@server:repo" URLs

2017-06-24 Thread Bjørn Forsman
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b8658f629b598d9a5bb0acba2421e0ad99f67847
  
https://github.com/NixOS/nixpkgs/commit/b8658f629b598d9a5bb0acba2421e0ad99f67847
  Author: Bjørn Forsman 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/build-support/fetchgit/default.nix
M pkgs/build-support/fetchgit/nix-prefetch-git

  Log Message:
  ---
  fetchgit: support "git@server:repo" URLs

Update the code that extracts the base name from a git repo URL so that
it can deal with URLs like "git@server:repo".


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


[Nix-commits] [NixOS/nixpkgs] 621a11: openmpi: 1.10.1 -> 1.10.7

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 621a1146d66beb6f7db9fd5c111b3a80e41cf154
  
https://github.com/NixOS/nixpkgs/commit/621a1146d66beb6f7db9fd5c111b3a80e41cf154
  Author: Bruno Bzeznik 
  Date:   2017-06-23 (Fri, 23 Jun 2017)

  Changed paths:
M pkgs/development/libraries/openmpi/default.nix
R pkgs/development/libraries/openmpi/nbc_copy.patch

  Log Message:
  ---
  openmpi: 1.10.1 -> 1.10.7

- No more need for the nbc patch
- Cpusets support fixed


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

  Changed paths:
M pkgs/development/libraries/openmpi/default.nix
R pkgs/development/libraries/openmpi/nbc_copy.patch

  Log Message:
  ---
  Merge pull request #26783 from Gricad/openmpi

openmpi: 1.10.1 -> 1.10.7


Compare: https://github.com/NixOS/nixpkgs/compare/961d42d80f33...909fb246fdec___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] e62013: fish: 2.5.0 -> 2.6.0

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e620135a8768aea503f7ba3933f3dc97c9ffaf31
  
https://github.com/NixOS/nixpkgs/commit/e620135a8768aea503f7ba3933f3dc97c9ffaf31
  Author: Patrick Callahan 
  Date:   2017-06-22 (Thu, 22 Jun 2017)

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

  Log Message:
  ---
  fish: 2.5.0 -> 2.6.0


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

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

  Log Message:
  ---
  Merge pull request #26778 from therealpxc/fish

fish: 2.5.0 -> 2.6.0


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


[Nix-commits] [NixOS/nixpkgs] de0e9e: erlang: refactor: switch to lib.makeExtensible

2017-06-24 Thread Daiderd Jordan
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: de0e9e7a86c2603d0f978b0a6e51040a3adf01ea
  
https://github.com/NixOS/nixpkgs/commit/de0e9e7a86c2603d0f978b0a6e51040a3adf01ea
  Author: Gleb Peregud 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  erlang: refactor: switch to lib.makeExtensible

Use standardized implementation of attribute set extensibility mechanism
instead of manually re-implementing it.

Suggested by @cstrahan at https://github.com/NixOS/nixpkgs/pull/26668.


  Commit: 961d42d80f338e8155649b10635d52560c4b3b7d
  
https://github.com/NixOS/nixpkgs/commit/961d42d80f338e8155649b10635d52560c4b3b7d
  Author: Daiderd Jordan 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  Merge pull request #26811 from gleber/erlang-makeExtensible

erlang: use makeExtensible


Compare: https://github.com/NixOS/nixpkgs/compare/8810a69adb5b...961d42d80f33___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 012320: stdenv: add stawman docs for `makeOverridable`

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0123200dee6bd3f94dbf6fed376b3208dcefe309
  
https://github.com/NixOS/nixpkgs/commit/0123200dee6bd3f94dbf6fed376b3208dcefe309
  Author: Gleb Peregud 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M lib/customisation.nix
M pkgs/development/haskell-modules/make-package-set.nix

  Log Message:
  ---
  stdenv: add stawman docs for `makeOverridable`

Also fix a typo in docs in haskell-modules.


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

  Changed paths:
M lib/customisation.nix
M pkgs/development/haskell-modules/make-package-set.nix

  Log Message:
  ---
  Merge pull request #26813 from gleber/stdenv-add-docs-makeOverridable

stdenv: add stawman docs for `makeOverridable`


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


Re: [Nix-dev] How to downgrade or patch freetype-2.7 ?

2017-06-24 Thread Linus Heckemann
On 24/06/17 01:52, Volth wrote:
> There are still at least one place where
> "environment.sessionVariables.LD_LIBRARY_PATH = ..." does not replace
> freetype with a custom-built version: in cgi-scripts run under
> lighttpd service:
> 
> RRD rendered with stock freetype-2.7.1 http://i.imgur.com/HVZ5iPa.png
> RRD rendered with freetype-2.7.1 compiled without subpixel rendering
> (#define TT_CONFIG_OPTION_SUBPIXEL_HINTING 0):
> http://i.imgur.com/Qj4W0Lx.png

That is pretty terrible! Depending on what lighttpd does with the
environment of the scripts, one or more of the following might help (in
order of how nice I think they are as solutions):

0. Link against a working freetype in the first place
1. Set LD_LIBRARY_PATH in environment.variables instead of
environment.sessionVariables so that it affects not only interactive
sessions
2. Set systemd.services.lighttpd.environment.LD_LIBRARY_PATH
3. Use mod_setenv to set LD_LIBRARY_PATH for the CGI scripts.
4. (as an unfortunate last resort) wrap the CGI scripts.


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


[Nix-commits] [NixOS/nixpkgs] e67dd4: glusterfs: do not set setuid in install

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e67dd4ac419ad15d746dd7b8c834a77cd7ecb3d7
  
https://github.com/NixOS/nixpkgs/commit/e67dd4ac419ad15d746dd7b8c834a77cd7ecb3d7
  Author: Jörg Thalheim 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

  Changed paths:
M pkgs/tools/filesystems/glusterfs/default.nix

  Log Message:
  ---
  glusterfs: do not set setuid in install

related to #26600

(cherry picked from commit ecc34cbdb3f04855f7140b96d3631f0f2a4bd9ae)


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


[Nix-commits] [NixOS/nixpkgs] 5e2de6: iwd: 2017-04-21 -> 2017-06-02

2017-06-24 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5e2de6d846e7e7f88378b730936b07f2fb410e0a
  
https://github.com/NixOS/nixpkgs/commit/5e2de6d846e7e7f88378b730936b07f2fb410e0a
  Author: Jörg Thalheim 
  Date:   2017-06-24 (Sat, 24 Jun 2017)

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

  Log Message:
  ---
  iwd: 2017-04-21 -> 2017-06-02


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


[Nix-commits] [NixOS/nixpkgs] a087e5: lttng-modules: 2.9.1 -> 2.9.3

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

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

  Log Message:
  ---
  lttng-modules: 2.9.1 -> 2.9.3


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

  Changed paths:
M pkgs/development/tools/misc/lttng-ust/default.nix

  Log Message:
  ---
  lttng-ust: 2.9.0 -> 2.9.1


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

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

  Log Message:
  ---
  lttng-tools: 2.9.3 -> 2.9.5


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