nixos tested: only build on supportedSystems

This commit is contained in:
Luca Bruno 2014-09-03 12:51:10 +02:00
parent 0f6d45f6b4
commit e5b7b97a67

@ -34,7 +34,7 @@ in rec {
maintainers = [ pkgs.lib.maintainers.eelco pkgs.lib.maintainers.shlevy ];
};
constituents =
let all = x: [ x.x86_64-linux x.i686-linux ]; in
let all = x: map (p: x.${p}) supportedSystems; in
[ nixos.channel
(all nixos.manual)