Re: [Nix-dev] gnome3 attribute not searchable

2013-07-28 Thread Vladimír Čunát

On 07/22/2013 05:45 PM, Bjørn Forsman wrote:

On 22 July 2013 17:11, Moritz Ulrich mor...@tarn-vedra.de wrote:

Likely a `recurseIntoAttrs' missing.


Yup, that seems correct. Thanks!

Should I commit this change? Does it have any other side effects? Will
it cause hydra to start building gnome3.* attributes?


Yes, do so, please. Thanks for noticing.

There's almost no platforms set in gnome3 subdirectory, so I doubt this 
will have any significant effect by itself. But we could set platforms, 
e.g. for some apps like evince. There isn't much more useful than that, 
for an end-user AFAIK.



Vlada




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


Re: [Nix-dev] gnome3 attribute not searchable

2013-07-28 Thread Bjørn Forsman
On 28 July 2013 21:55, Vladimír Čunát vcu...@gmail.com wrote:
 On 07/22/2013 05:45 PM, Bjørn Forsman wrote:

 On 22 July 2013 17:11, Moritz Ulrich mor...@tarn-vedra.de wrote:

 Likely a `recurseIntoAttrs' missing.


 Yup, that seems correct. Thanks!

 Should I commit this change? Does it have any other side effects? Will
 it cause hydra to start building gnome3.* attributes?


 Yes, do so, please. Thanks for noticing.

Done.

 There's almost no platforms set in gnome3 subdirectory, so I doubt this will
 have any significant effect by itself. But we could set platforms, e.g. for
 some apps like evince. There isn't much more useful than that, for an
 end-user AFAIK.

Ok.

Best regards,
Bjørn Forsman
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] gnome3 attribute not searchable

2013-07-22 Thread Bjørn Forsman
On 22 July 2013 17:11, Moritz Ulrich mor...@tarn-vedra.de wrote:
 Likely a `recurseIntoAttrs' missing.

Yup, that seems correct. Thanks!

I changed

  gnome3 = callPackage ../desktops/gnome-3 {
callPackage = pkgs.newScope pkgs.gnome3;
self = pkgs.gnome3;
  };

into

  gnome3 = recurseIntoAttrs (callPackage ../desktops/gnome-3 {
callPackage = pkgs.newScope pkgs.gnome3;
self = pkgs.gnome3;
  });

And now nix-env -f. -qaP \* | grep gnome3 yields some results.

Should I commit this change? Does it have any other side effects? Will
it cause hydra to start building gnome3.* attributes?

Best regards,
Bjørn Forsman
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev