Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Domen Kožar
Note that this will fail if you'll nest the attributes, one will override the other. nix-repl> :p concatAttrs [ {x={a =3;};} {x={ b= 4;};} ] { x = { b = 4; }; } On Sun, May 28, 2017 at 5:23 PM, Sergiu Ivanov wrote: > Hey Leo, > > Thus quoth Leo Gaspard at 13:05 on Sun,

Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Volth
there is also lib.mkMerge to handle nested attrs On 5/29/17, Domen Kožar wrote: > Note that this will fail if you'll nest the attributes, one will override > the other. > > nix-repl> :p concatAttrs [ {x={a =3;};} {x={ b= 4;};} ] > { x = { b = 4; }; } > > > On Sun, May 28, 2017 at

Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Tomasz Czyż
https://github.com/NixOS/nixpkgs/blob/master/lib/attrsets.nix#L413 is also handy 2017-05-29 13:36 GMT+01:00 Domen Kožar : > mkMerge can be used only with NixOS modules. > > I do remember some recursive merge function, but can't find it now. > > On Mon, May 29, 2017 at 2:29 PM,

[Nix-commits] [NixOS/nixpkgs] 1e95e1: nixos/xsession: use graphical systemd user target

2017-05-29 Thread Franz Pletz
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 1e95e114e5eefdb0f792f9f7a620c9472e6d7da3 https://github.com/NixOS/nixpkgs/commit/1e95e114e5eefdb0f792f9f7a620c9472e6d7da3 Author: Franz Pletz Date: 2017-05-29 (Mon, 29 May 2017)

Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Domen Kožar
mkMerge can be used only with NixOS modules. I do remember some recursive merge function, but can't find it now. On Mon, May 29, 2017 at 2:29 PM, Volth wrote: > there is also lib.mkMerge to handle nested attrs > > On 5/29/17, Domen Kožar wrote: > > Note that

[Nix-commits] [NixOS/nixpkgs] a78af5: linux: 4.12-rc2 -> 4.12-rc3

2017-05-29 Thread Tim Steinbach
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: a78af5196c1b8229ac2311e38d41809249b47932 https://github.com/NixOS/nixpkgs/commit/a78af5196c1b8229ac2311e38d41809249b47932 Author: Tim Steinbach Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] 2c3992: pythonPackages.alembic: 0.8.3 -> 0.9.2

2017-05-29 Thread Frederik Rietdijk
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 2c39927c7aa0b80165e88c2300bce822110e6552 https://github.com/NixOS/nixpkgs/commit/2c39927c7aa0b80165e88c2300bce822110e6552 Author: Jörg Thalheim Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] 1d56c2: NetworkManager: fix openconnect for console tools

2017-05-29 Thread timor
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 1d56c2fa434b2cf875aab4eabcfd69fa89fe25eb https://github.com/NixOS/nixpkgs/commit/1d56c2fa434b2cf875aab4eabcfd69fa89fe25eb Author: timor Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nix] 63145b: Fix typo

2017-05-29 Thread Eelco Dolstra
Branch: refs/heads/master Home: https://github.com/NixOS/nix Commit: 63145be2a5ac46a283f85c835fa84bf54db59bbe https://github.com/NixOS/nix/commit/63145be2a5ac46a283f85c835fa84bf54db59bbe Author: Eelco Dolstra Date: 2017-05-29 (Mon, 29 May 2017) Changed

[Nix-commits] [NixOS/nixpkgs] a49c23: nixos/firewall: clean up rpfilter rules properly

2017-05-29 Thread Franz Pletz
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: a49c2366efad78d296375b7c17065cacee3c3975 https://github.com/NixOS/nixpkgs/commit/a49c2366efad78d296375b7c17065cacee3c3975 Author: Franz Pletz Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] f469bd: mysql service: change default data directory for 1...

2017-05-29 Thread Graham Christensen
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: f469bd83bb9390807f1cdbe2de8d56bb8a710eb5 https://github.com/NixOS/nixpkgs/commit/f469bd83bb9390807f1cdbe2de8d56bb8a710eb5 Author: Pascal Bach Date: 2017-05-20 (Sat, 20 May 2017)

Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Sergiu Ivanov
Hello Domen, Thus quoth Domen Kožar at 12:16 on Mon, May 29 2017: > > Note that this will fail if you'll nest the attributes, one will override > the other. > > nix-repl> :p concatAttrs [ {x={a =3;};} {x={ b= 4;};} ] > { x = { b = 4; }; } Sure, that seems to follow naturally from the semantics

Re: [Nix-dev] concatAttrs :: [attrSet] -> attrSet ?

2017-05-29 Thread Sergiu Ivanov
Hello Tomasz, Domen, and Volth, Thus quoth Tomasz Czyż at 13:26 on Mon, May 29 2017: > > https://github.com/NixOS/nixpkgs/blob/master/lib/attrsets.nix#L413 is also > handy > > 2017-05-29 13:36 GMT+01:00 Domen Kožar : > >> mkMerge can be used only with NixOS modules. >> >> I do

[Nix-commits] [NixOS/nixpkgs] 3d2cfa: hdf5: add comment about multiple outputs

2017-05-29 Thread Frederik Rietdijk
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 3d2cfabad6b79dd1a3c6ddd75cdc2959d16b476e https://github.com/NixOS/nixpkgs/commit/3d2cfabad6b79dd1a3c6ddd75cdc2959d16b476e Author: Frederik Rietdijk Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] 97eddf: vimer: init at 0.2.0

2017-05-29 Thread Matthias Beyer
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 97eddf0907edfbb2e80258b1104034dbff90bd53 https://github.com/NixOS/nixpkgs/commit/97eddf0907edfbb2e80258b1104034dbff90bd53 Author: Matthias Beyer Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] f6ef56: radicale: 1.1.1 -> 1.1.2, fixes CVE-2017-8342

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: f6ef5614a0f23d23c9494811bb1ac3b35d2a07c6 https://github.com/NixOS/nixpkgs/commit/f6ef5614a0f23d23c9494811bb1ac3b35d2a07c6 Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 5a0b2d: radicale: 1.1.1 -> 1.1.2, fixes CVE-2017-8342

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/release-17.03 Home: https://github.com/NixOS/nixpkgs Commit: 5a0b2d7d960e3f09de04e4977690edb5baad26dd https://github.com/NixOS/nixpkgs/commit/5a0b2d7d960e3f09de04e4977690edb5baad26dd Author: Pascal Wittmann Date: 2017-05-29 (Mon,

[Nix-commits] [NixOS/nixpkgs] 1c6abe: merlin: 2.5.3 -> 2.5.4

2017-05-29 Thread romildo
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 1c6abe0230087a9072812023d42ea32e8126bf87 https://github.com/NixOS/nixpkgs/commit/1c6abe0230087a9072812023d42ea32e8126bf87 Author: romildo Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] 05a82a: homebank: 5.1.4 -> 5.1.5

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 05a82a9fd0030288b1daea6eb374acdf58926f88 https://github.com/NixOS/nixpkgs/commit/05a82a9fd0030288b1daea6eb374acdf58926f88 Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 804c3a: python-ldap: Fix src url broken by pname refactor

2017-05-29 Thread Frederik Rietdijk
Branch: refs/heads/staging Home: https://github.com/NixOS/nixpkgs Commit: 804c3ab48a598620199a1fdf7b7cabf29c36e6fb https://github.com/NixOS/nixpkgs/commit/804c3ab48a598620199a1fdf7b7cabf29c36e6fb Author: Guillaume Maudoux Date: 2017-05-29 (Mon,

[Nix-commits] [NixOS/nixpkgs] 58e507: ragelDev: 7.0.0.9 -> 7.0.0.10

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 58e5078487fcebbdfb77567fe348d0f8c3a39278 https://github.com/NixOS/nixpkgs/commit/58e5078487fcebbdfb77567fe348d0f8c3a39278 Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 2ff488: python.pkgs.django_hijack

2017-05-29 Thread Vladimír Čunát
Branch: refs/heads/staging Home: https://github.com/NixOS/nixpkgs Commit: 2ff488c267a873ba583d0bafbb27b166eea53893 https://github.com/NixOS/nixpkgs/commit/2ff488c267a873ba583d0bafbb27b166eea53893 Author: Frederik Rietdijk Date: 2017-05-27 (Sat, 27 May 2017)

[Nix-commits] [NixOS/nix] 370428: Remove stray `>` in builtins doc

2017-05-29 Thread Eelco Dolstra
Branch: refs/heads/master Home: https://github.com/NixOS/nix Commit: 370428f86d03488756cfb27cb9126bf29767e848 https://github.com/NixOS/nix/commit/370428f86d03488756cfb27cb9126bf29767e848 Author: Pyry Jahkola Date: 2017-05-28 (Sun, 28 May 2017) Changed

[Nix-commits] [NixOS/nix] 86ea7d: Fix variable name typo in derivations doc

2017-05-29 Thread Eelco Dolstra
Branch: refs/heads/master Home: https://github.com/NixOS/nix Commit: 86ea7d15665b7bf2bc018c3bfd91d0a948c8f3be https://github.com/NixOS/nix/commit/86ea7d15665b7bf2bc018c3bfd91d0a948c8f3be Author: Pyry Jahkola Date: 2017-05-28 (Sun, 28 May 2017) Changed

[Nix-commits] [NixOS/nixpkgs] dc955a: halibut: 1.1 -> 1.2

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: dc955ad2d7a392757ed845caa332fda565211b6e https://github.com/NixOS/nixpkgs/commit/dc955ad2d7a392757ed845caa332fda565211b6e Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 46de05: dmenu: 4.6 -> 4.7

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 46de05a3dd6975e5db4cf06eca49e579557a03d6 https://github.com/NixOS/nixpkgs/commit/46de05a3dd6975e5db4cf06eca49e579557a03d6 Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 7bbb98: python.pkgs.hypothesis: add pytest_xdist as a chec...

2017-05-29 Thread Frederik Rietdijk
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 7bbb9824ac0cb002a35114417f5175e5434424da https://github.com/NixOS/nixpkgs/commit/7bbb9824ac0cb002a35114417f5175e5434424da Author: Robert Scott Date: 2017-05-29 (Mon, 29 May 2017)

Re: [Nix-dev] Python 3.6 as default Python 3 interpreter

2017-05-29 Thread Freddy Rietdijk
You may have already noticed that 3.6 is now the default 3.x interpreter on Nixpkgs Unstable. Freddy On Thu, Apr 20, 2017 at 11:04 AM, Lancelot SIX wrote: > Hi Freddy, > > This sounds good to me ! > > Lancelot. > > On 20/04/2017 10:58, Freddy Rietdijk wrote: > > Hi, >

[Nix-commits] [NixOS/nixpkgs] 78b628: lynx: Fix SSL, widec support (#26134)

2017-05-29 Thread Will Dietz
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 78b62836f5cd02626ffaff7f05071e19368f2ea8 https://github.com/NixOS/nixpkgs/commit/78b62836f5cd02626ffaff7f05071e19368f2ea8 Author: Will Dietz Date: 2017-05-29 (Mon, 29 May 2017)

[Nix-commits] [NixOS/nixpkgs] 6e95e2: cernlib: init at 2006

2017-05-29 Thread Jörg Thalheim
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 6e95e2a1613389dd0c5ec24fc046942834670ade https://github.com/NixOS/nixpkgs/commit/6e95e2a1613389dd0c5ec24fc046942834670ade Author: Dmitry Kalinkin Date: 2017-05-28 (Sun, 28 May

[Nix-commits] [NixOS/nixpkgs] d0be06: perlPackagrs.NTLM: init at 1.09

2017-05-29 Thread Pascal Wittmann
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: d0be062d10871acb71dde761f43680201fc23f16 https://github.com/NixOS/nixpkgs/commit/d0be062d10871acb71dde761f43680201fc23f16 Author: Pascal Wittmann Date: 2017-05-29 (Mon, 29 May

[Nix-commits] [NixOS/nixpkgs] 13f2f8: OVMF: fix build

2017-05-29 Thread Robin Gloster
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 13f2f8673b184599e7a65df422c968730554820f https://github.com/NixOS/nixpkgs/commit/13f2f8673b184599e7a65df422c968730554820f Author: Robin Gloster Date: 2017-05-29 (Mon, 29 May 2017)

Re: [Nix-dev] Disappearing X session on some systems

2017-05-29 Thread Evan Rowley
The issue on the ThinkPad E465 seems to have been fixed. No longer have I experienced a locked X session. The problem may have been related to GDM. It was some error messages received during nixos-rebuild switch which led me down this path. The fix was achieved after applying a workaround supplied

[Nix-commits] [NixOS/nixpkgs] dd5d63: python-ldap: fixup tests for 2.4.38 update

2017-05-29 Thread Frederik Rietdijk
Branch: refs/heads/staging Home: https://github.com/NixOS/nixpkgs Commit: dd5d63d428b3adfe4ee76ef2b411b71e31ae13ff https://github.com/NixOS/nixpkgs/commit/dd5d63d428b3adfe4ee76ef2b411b71e31ae13ff Author: Guillaume Maudoux Date: 2017-05-29 (Mon,

[Nix-commits] [NixOS/nixpkgs] 6509ba: ninja: 1.7.1 -> 1.7.2

2017-05-29 Thread Joachim F
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 6509ba66a804390191e4bcf2f068686946e6fc56 https://github.com/NixOS/nixpkgs/commit/6509ba66a804390191e4bcf2f068686946e6fc56 Author: Herwig Hochleitner Date: 2017-05-20 (Sat, 20 May

[Nix-commits] [NixOS/nixpkgs] 2b0a84: lib/string: make `isStorePath` total (#26216)

2017-05-29 Thread Profpatsch
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 2b0a8427e6995eefddf09919ad48a7887e65 https://github.com/NixOS/nixpkgs/commit/2b0a8427e6995eefddf09919ad48a7887e65 Author: Profpatsch Date: 2017-05-30 (Tue, 30 May 2017)

Re: [Nix-dev] Is it possible to limit nix access to sudoers and/or a group?

2017-05-29 Thread Peter Simons
> I'd like to build a system where regular users cannot access nix > commands, daemon, etc. Look for the 'allowed-users' option in the nix.conf(5) man page. That should do what you want. Best regards, Peter ___ nix-dev mailing list

[Nix-commits] [NixOS/nixpkgs] 5e659e: lldb-4: Patch to fix libedit usage on Linux

2017-05-29 Thread Daiderd Jordan
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 5e659e94a6061c9acd983ad0b5c26206b83f5735 https://github.com/NixOS/nixpkgs/commit/5e659e94a6061c9acd983ad0b5c26206b83f5735 Author: Will Dietz Date: 2017-05-27 (Sat, 27 May 2017) Changed

[Nix-commits] [NixOS/nixpkgs] 3005d2: tinycc: 0.9.27pre-20170225 -> 0.9.27pre-20170527

2017-05-29 Thread Joachim Fasting
Branch: refs/heads/release-17.03 Home: https://github.com/NixOS/nixpkgs Commit: 3005d250e27ed943aa5194383c33d6a1fc0253d4 https://github.com/NixOS/nixpkgs/commit/3005d250e27ed943aa5194383c33d6a1fc0253d4 Author: Joachim Fasting Date: 2017-05-29 (Mon, 29

Re: [Nix-dev] Replace default gcc through overlays?

2017-05-29 Thread Mateusz Czaplinski
Hi, Thanks for the response! Though I must admit it's quite... dense for me still, being a Nix noob... thus I'll let myself follow up with some more questions, as I'm desperately trying to wrap my head around the stuff... So, first of all, regarding bootstrapping: I'm afraid I'm not yet really

[Nix-commits] [NixOS/nixpkgs] 20e756: lib: Consolidate platform configurations (used for...

2017-05-29 Thread John Ericson
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: 20e756a0936fb75ce8f9d9ef0b7a511198bf7eea https://github.com/NixOS/nixpkgs/commit/20e756a0936fb75ce8f9d9ef0b7a511198bf7eea Author: John Ericson Date: 2017-05-29 (Mon, 29 May 2017)