Add an "unstable" aggregate to replace the "unstable" view
Views are obsolete, aggregates are the declarative replacement.
This commit is contained in:
parent
993fc7206d
commit
bcc14c4d3c
@ -2185,7 +2185,7 @@ let
|
|||||||
stdenv = overrideGCC stdenv (wrapGCCWith (import ../build-support/gcc-wrapper) glibc_multi gcc.gcc);
|
stdenv = overrideGCC stdenv (wrapGCCWith (import ../build-support/gcc-wrapper) glibc_multi gcc.gcc);
|
||||||
profiledCompiler = false;
|
profiledCompiler = false;
|
||||||
enableMultilib = true;
|
enableMultilib = true;
|
||||||
})) else throw "Multilib gcc not supported on this system";
|
})) else throw "Multilib gcc not supported on ‘${system}’";
|
||||||
|
|
||||||
gcc47_real = lowPrio (wrapGCC (callPackage ../development/compilers/gcc/4.7 {
|
gcc47_real = lowPrio (wrapGCC (callPackage ../development/compilers/gcc/4.7 {
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
|
@ -2,9 +2,7 @@
|
|||||||
also builds the documentation and tests whether the Nix expressions
|
also builds the documentation and tests whether the Nix expressions
|
||||||
evaluate correctly. */
|
evaluate correctly. */
|
||||||
|
|
||||||
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
{ nixpkgs, officialRelease }:
|
||||||
, officialRelease ? false
|
|
||||||
}:
|
|
||||||
|
|
||||||
with import nixpkgs.outPath {};
|
with import nixpkgs.outPath {};
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ rec {
|
|||||||
config.allowUnfree = false;
|
config.allowUnfree = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
pkgs = allPackages { };
|
pkgs = allPackages { system = "x86_64-linux"; };
|
||||||
|
|
||||||
|
|
||||||
# The platforms for which we build Nixpkgs.
|
# The platforms for which we build Nixpkgs.
|
||||||
|
@ -9,428 +9,451 @@
|
|||||||
$ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux
|
$ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
||||||
|
, officialRelease ? false
|
||||||
|
}:
|
||||||
|
|
||||||
with import ./release-lib.nix;
|
with import ./release-lib.nix;
|
||||||
|
|
||||||
{
|
let
|
||||||
|
|
||||||
tarball = import ./make-tarball.nix;
|
jobs =
|
||||||
|
{ tarball = import ./make-tarball.nix { inherit nixpkgs officialRelease; };
|
||||||
|
|
||||||
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
unstable = pkgs.releaseTools.aggregate
|
||||||
|
{ name = "nixpkgs-${jobs.tarball.version}";
|
||||||
|
meta.description = "Release-critical builds for the Nixpkgs unstable channel";
|
||||||
|
members =
|
||||||
|
[ jobs.tarball
|
||||||
|
jobs.stdenv.x86_64-linux
|
||||||
|
jobs.stdenv.i686-linux
|
||||||
|
jobs.stdenv.x86_64-darwin
|
||||||
|
jobs.linux.x86_64-linux
|
||||||
|
jobs.linux.i686-linux
|
||||||
|
# Ensure that X11/GTK+ are in order.
|
||||||
|
jobs.thunderbird.x86_64-linux
|
||||||
|
jobs.thunderbird.i686-linux
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
abcde = linux;
|
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
||||||
alsaUtils = linux;
|
|
||||||
apacheHttpd = linux;
|
|
||||||
aspell = all;
|
|
||||||
at = linux;
|
|
||||||
audacious = linux;
|
|
||||||
autoconf = all;
|
|
||||||
automake110x = all;
|
|
||||||
automake111x = all;
|
|
||||||
avahi = allBut "i686-cygwin"; # Cygwin builds fail
|
|
||||||
bash = all;
|
|
||||||
bashInteractive = all;
|
|
||||||
bazaar = linux; # first let sqlite3 work on darwin
|
|
||||||
bc = all;
|
|
||||||
binutils = linux;
|
|
||||||
bind = linux;
|
|
||||||
bitlbee = linux;
|
|
||||||
bittorrent = linux;
|
|
||||||
blender = linux;
|
|
||||||
bsdiff = all;
|
|
||||||
btrfsProgs = linux;
|
|
||||||
bvi = all;
|
|
||||||
bzip2 = all;
|
|
||||||
cabextract = all;
|
|
||||||
castle_combat = linux;
|
|
||||||
cdrkit = linux;
|
|
||||||
chatzilla = linux;
|
|
||||||
cksfv = all;
|
|
||||||
classpath = linux;
|
|
||||||
coreutils = all;
|
|
||||||
cpio = all;
|
|
||||||
cron = linux;
|
|
||||||
cvs = linux;
|
|
||||||
db4 = all;
|
|
||||||
ddrescue = linux;
|
|
||||||
dhcp = linux;
|
|
||||||
dico = linux;
|
|
||||||
dietlibc = linux;
|
|
||||||
diffutils = all;
|
|
||||||
disnix = all;
|
|
||||||
disnixos = linux;
|
|
||||||
DisnixWebService = linux;
|
|
||||||
docbook5 = all;
|
|
||||||
docbook5_xsl = all;
|
|
||||||
docbook_xml_dtd_42 = all;
|
|
||||||
docbook_xml_dtd_43 = all;
|
|
||||||
docbook_xsl = all;
|
|
||||||
dosbox = linux;
|
|
||||||
dovecot = linux;
|
|
||||||
doxygen = linux;
|
|
||||||
dpkg = linux;
|
|
||||||
drgeo = linux;
|
|
||||||
e2fsprogs = linux;
|
|
||||||
ejabberd = linux;
|
|
||||||
elinks = linux;
|
|
||||||
emacs23 = gtkSupported;
|
|
||||||
enscript = all;
|
|
||||||
eprover = linux;
|
|
||||||
evince = linux;
|
|
||||||
expect = linux;
|
|
||||||
exult = linux;
|
|
||||||
fbterm = linux;
|
|
||||||
feh = linux;
|
|
||||||
file = all;
|
|
||||||
findutils = all;
|
|
||||||
flex = all;
|
|
||||||
flex2535 = all;
|
|
||||||
fontforge = linux;
|
|
||||||
fuse = linux;
|
|
||||||
gajim = linux;
|
|
||||||
gawk = all;
|
|
||||||
gcc = linux;
|
|
||||||
gcc33 = linux;
|
|
||||||
gcc34 = linux;
|
|
||||||
gcc42 = linux;
|
|
||||||
gcc43_multi = ["x86_64-linux"];
|
|
||||||
gcc44 = linux;
|
|
||||||
gcj44 = linux;
|
|
||||||
ghdl = linux;
|
|
||||||
ghostscript = linux;
|
|
||||||
ghostscriptX = linux;
|
|
||||||
gimp_2_8 = linux;
|
|
||||||
git = linux;
|
|
||||||
gitFull = linux;
|
|
||||||
glibc = linux;
|
|
||||||
glibcLocales = linux;
|
|
||||||
glxinfo = linux;
|
|
||||||
gnash = linux;
|
|
||||||
gnat44 = linux;
|
|
||||||
gnugrep = all;
|
|
||||||
gnum4 = all;
|
|
||||||
gnumake = all;
|
|
||||||
gnupatch = all;
|
|
||||||
gnupg = linux;
|
|
||||||
gnuplot = allBut "i686-cygwin";
|
|
||||||
gnused = all;
|
|
||||||
gnutar = all;
|
|
||||||
gnutls = linux;
|
|
||||||
gogoclient = linux;
|
|
||||||
gphoto2 = linux;
|
|
||||||
gpm = linux;
|
|
||||||
gprolog = linux;
|
|
||||||
gpsbabel = all;
|
|
||||||
gpscorrelate = linux;
|
|
||||||
gpsd = linux;
|
|
||||||
gqview = gtkSupported;
|
|
||||||
graphviz = all;
|
|
||||||
grub = linux;
|
|
||||||
grub2 = linux;
|
|
||||||
gsl = linux;
|
|
||||||
guile = linux; # tests fail on Cygwin
|
|
||||||
gv = linux;
|
|
||||||
gzip = all;
|
|
||||||
hddtemp = linux;
|
|
||||||
hello = all;
|
|
||||||
host = linux;
|
|
||||||
htmlTidy = all;
|
|
||||||
hugin = linux;
|
|
||||||
iana_etc = linux;
|
|
||||||
icecat3Xul = linux;
|
|
||||||
icewm = linux;
|
|
||||||
idutils = all;
|
|
||||||
ifplugd = linux;
|
|
||||||
impressive = linux;
|
|
||||||
inetutils = linux;
|
|
||||||
inkscape = linux;
|
|
||||||
iputils = linux;
|
|
||||||
irssi = linux;
|
|
||||||
jfsutils = linux;
|
|
||||||
jfsrec = linux;
|
|
||||||
jnettop = linux;
|
|
||||||
jwhois = linux;
|
|
||||||
kbd = linux;
|
|
||||||
keen4 = ["i686-linux"];
|
|
||||||
# klibc = linux;
|
|
||||||
kvm = linux;
|
|
||||||
qemu = linux;
|
|
||||||
qemu_kvm = linux;
|
|
||||||
less = all;
|
|
||||||
lftp = all;
|
|
||||||
libarchive = linux;
|
|
||||||
libsmbios = linux;
|
|
||||||
libtool = all;
|
|
||||||
libtool_2 = all;
|
|
||||||
lout = linux;
|
|
||||||
lsh = linux;
|
|
||||||
lsof = linux;
|
|
||||||
ltrace = linux;
|
|
||||||
lvm2 = linux;
|
|
||||||
lynx = linux;
|
|
||||||
lzma = linux;
|
|
||||||
man = linux;
|
|
||||||
manpages = linux;
|
|
||||||
maxima = linux;
|
|
||||||
mc = linux;
|
|
||||||
mcabber = linux;
|
|
||||||
mcron = linux;
|
|
||||||
mdadm = linux;
|
|
||||||
mercurial = allBut "i686-cygwin";
|
|
||||||
mercurialFull = allBut "i686-cygwin";
|
|
||||||
mesa = mesaPlatforms;
|
|
||||||
midori = linux;
|
|
||||||
mingetty = linux;
|
|
||||||
mk = linux;
|
|
||||||
mktemp = all;
|
|
||||||
mod_python = linux;
|
|
||||||
module_init_tools = linux;
|
|
||||||
mono = linux;
|
|
||||||
mpg321 = linux;
|
|
||||||
mupen64plus = linux;
|
|
||||||
mutt = linux;
|
|
||||||
mysql = linux;
|
|
||||||
mysql51 = linux;
|
|
||||||
mysql55 = linux;
|
|
||||||
namazu = all;
|
|
||||||
nano = allBut "i686-cygwin";
|
|
||||||
ncat = linux;
|
|
||||||
netcat = all;
|
|
||||||
nfsUtils = linux;
|
|
||||||
nix = all;
|
|
||||||
nixUnstable = all;
|
|
||||||
nmap = linux;
|
|
||||||
nss_ldap = linux;
|
|
||||||
nssmdns = linux;
|
|
||||||
ntfs3g = linux;
|
|
||||||
ntp = linux;
|
|
||||||
ocaml = linux;
|
|
||||||
octave = linux;
|
|
||||||
openssh = linux;
|
|
||||||
openssl = all;
|
|
||||||
pam_console = linux;
|
|
||||||
pam_login = linux;
|
|
||||||
pan = gtkSupported;
|
|
||||||
par2cmdline = all;
|
|
||||||
pavucontrol = linux;
|
|
||||||
pciutils = linux;
|
|
||||||
pdf2xml = all;
|
|
||||||
perl = all;
|
|
||||||
php = linux;
|
|
||||||
pidgin = linux;
|
|
||||||
pinentry = linux;
|
|
||||||
pltScheme = linux;
|
|
||||||
pmccabe = linux;
|
|
||||||
portmap = linux;
|
|
||||||
postgresql = all;
|
|
||||||
postfix = linux;
|
|
||||||
ppl = all;
|
|
||||||
procps = linux;
|
|
||||||
pthreadmanpages = linux;
|
|
||||||
pygtk = linux;
|
|
||||||
pyqt4 = linux;
|
|
||||||
python = allBut "i686-cygwin";
|
|
||||||
pythonFull = linux;
|
|
||||||
sbcl = linux;
|
|
||||||
qt3 = linux;
|
|
||||||
quake3demo = linux;
|
|
||||||
readline = all;
|
|
||||||
reiserfsprogs = linux;
|
|
||||||
rlwrap = all;
|
|
||||||
rogue = all;
|
|
||||||
rpm = linux;
|
|
||||||
rsync = linux;
|
|
||||||
rubber = allBut "i686-cygwin";
|
|
||||||
ruby = all;
|
|
||||||
rxvt_unicode = linux;
|
|
||||||
screen = linux ++ darwin;
|
|
||||||
scrot = linux;
|
|
||||||
sdparm = linux;
|
|
||||||
seccure = linux;
|
|
||||||
sgtpuzzles = linux;
|
|
||||||
sharutils = all;
|
|
||||||
slim = linux;
|
|
||||||
sloccount = allBut "i686-cygwin";
|
|
||||||
smartmontools = linux;
|
|
||||||
socat = linux;
|
|
||||||
spidermonkey = linux;
|
|
||||||
splashutils = linux;
|
|
||||||
sqlite = allBut "i686-cygwin";
|
|
||||||
squid = linux;
|
|
||||||
ssmtp = linux;
|
|
||||||
stdenv = prio 175 all;
|
|
||||||
stlport = linux;
|
|
||||||
strace = linux;
|
|
||||||
su = linux;
|
|
||||||
sudo = linux;
|
|
||||||
superTuxKart = linux;
|
|
||||||
swig = linux;
|
|
||||||
sylpheed = linux;
|
|
||||||
sysklogd = linux;
|
|
||||||
syslinux = ["i686-linux"];
|
|
||||||
sysvinit = linux;
|
|
||||||
sysvtools = linux;
|
|
||||||
tahoelafs = linux;
|
|
||||||
tangogps = linux;
|
|
||||||
tcl = linux;
|
|
||||||
tcpdump = linux;
|
|
||||||
teeworlds = linux;
|
|
||||||
tetex = linux;
|
|
||||||
texLive = linux;
|
|
||||||
texLiveBeamer = linux;
|
|
||||||
texLiveExtra = linux;
|
|
||||||
texinfo = all;
|
|
||||||
tightvnc = linux;
|
|
||||||
time = linux;
|
|
||||||
tinycc = ["i686-linux"];
|
|
||||||
uae = linux;
|
|
||||||
udev = linux;
|
|
||||||
unrar = linux;
|
|
||||||
upstart = linux;
|
|
||||||
usbutils = linux;
|
|
||||||
utillinux = linux;
|
|
||||||
utillinuxCurses = linux;
|
|
||||||
uzbl = linux;
|
|
||||||
viking = linux;
|
|
||||||
vice = linux;
|
|
||||||
vim = linux;
|
|
||||||
vimHugeX = linux;
|
|
||||||
VisualBoyAdvance = linux;
|
|
||||||
vlc = linux;
|
|
||||||
vncrec = linux;
|
|
||||||
vorbisTools = linux;
|
|
||||||
vpnc = linux;
|
|
||||||
vsftpd = linux;
|
|
||||||
w3m = all;
|
|
||||||
webkit = linux;
|
|
||||||
weechat = linux;
|
|
||||||
wget = all;
|
|
||||||
which = all;
|
|
||||||
wicd = linux;
|
|
||||||
wine = ["i686-linux"];
|
|
||||||
wireshark = linux;
|
|
||||||
wirelesstools = linux;
|
|
||||||
wxGTK = linux;
|
|
||||||
x11_ssh_askpass = linux;
|
|
||||||
xchm = linux;
|
|
||||||
xfig = x11Supported;
|
|
||||||
xfsprogs = linux;
|
|
||||||
xineUI = linux;
|
|
||||||
xkeyboard_config = linux;
|
|
||||||
xlockmore = linux;
|
|
||||||
xmltv = linux;
|
|
||||||
xpdf = linux;
|
|
||||||
xscreensaver = linux;
|
|
||||||
xsel = linux;
|
|
||||||
xterm = linux;
|
|
||||||
xxdiff = linux;
|
|
||||||
zdelta = linux;
|
|
||||||
zile = linux;
|
|
||||||
zip = all;
|
|
||||||
zsh = linux;
|
|
||||||
zsnes = ["i686-linux"];
|
|
||||||
|
|
||||||
emacs23Packages = {
|
abcde = linux;
|
||||||
bbdb = linux;
|
alsaUtils = linux;
|
||||||
cedet = linux;
|
apacheHttpd = linux;
|
||||||
ecb = linux;
|
aspell = all;
|
||||||
emacsw3m = linux;
|
at = linux;
|
||||||
emms = linux;
|
audacious = linux;
|
||||||
jdee = linux;
|
autoconf = all;
|
||||||
};
|
automake110x = all;
|
||||||
|
automake111x = all;
|
||||||
|
avahi = allBut "i686-cygwin"; # Cygwin builds fail
|
||||||
|
bash = all;
|
||||||
|
bashInteractive = all;
|
||||||
|
bazaar = linux; # first let sqlite3 work on darwin
|
||||||
|
bc = all;
|
||||||
|
binutils = linux;
|
||||||
|
bind = linux;
|
||||||
|
bitlbee = linux;
|
||||||
|
bittorrent = linux;
|
||||||
|
blender = linux;
|
||||||
|
bsdiff = all;
|
||||||
|
btrfsProgs = linux;
|
||||||
|
bvi = all;
|
||||||
|
bzip2 = all;
|
||||||
|
cabextract = all;
|
||||||
|
castle_combat = linux;
|
||||||
|
cdrkit = linux;
|
||||||
|
chatzilla = linux;
|
||||||
|
cksfv = all;
|
||||||
|
classpath = linux;
|
||||||
|
coreutils = all;
|
||||||
|
cpio = all;
|
||||||
|
cron = linux;
|
||||||
|
cvs = linux;
|
||||||
|
db4 = all;
|
||||||
|
ddrescue = linux;
|
||||||
|
dhcp = linux;
|
||||||
|
dico = linux;
|
||||||
|
dietlibc = linux;
|
||||||
|
diffutils = all;
|
||||||
|
disnix = all;
|
||||||
|
disnixos = linux;
|
||||||
|
DisnixWebService = linux;
|
||||||
|
docbook5 = all;
|
||||||
|
docbook5_xsl = all;
|
||||||
|
docbook_xml_dtd_42 = all;
|
||||||
|
docbook_xml_dtd_43 = all;
|
||||||
|
docbook_xsl = all;
|
||||||
|
dosbox = linux;
|
||||||
|
dovecot = linux;
|
||||||
|
doxygen = linux;
|
||||||
|
dpkg = linux;
|
||||||
|
drgeo = linux;
|
||||||
|
e2fsprogs = linux;
|
||||||
|
ejabberd = linux;
|
||||||
|
elinks = linux;
|
||||||
|
emacs23 = gtkSupported;
|
||||||
|
enscript = all;
|
||||||
|
eprover = linux;
|
||||||
|
evince = linux;
|
||||||
|
expect = linux;
|
||||||
|
exult = linux;
|
||||||
|
fbterm = linux;
|
||||||
|
feh = linux;
|
||||||
|
file = all;
|
||||||
|
findutils = all;
|
||||||
|
flex = all;
|
||||||
|
flex2535 = all;
|
||||||
|
fontforge = linux;
|
||||||
|
fuse = linux;
|
||||||
|
gajim = linux;
|
||||||
|
gawk = all;
|
||||||
|
gcc = linux;
|
||||||
|
gcc33 = linux;
|
||||||
|
gcc34 = linux;
|
||||||
|
gcc42 = linux;
|
||||||
|
gcc43_multi = ["x86_64-linux"];
|
||||||
|
gcc44 = linux;
|
||||||
|
gcj44 = linux;
|
||||||
|
ghdl = linux;
|
||||||
|
ghostscript = linux;
|
||||||
|
ghostscriptX = linux;
|
||||||
|
gimp_2_8 = linux;
|
||||||
|
git = linux;
|
||||||
|
gitFull = linux;
|
||||||
|
glibc = linux;
|
||||||
|
glibcLocales = linux;
|
||||||
|
glxinfo = linux;
|
||||||
|
gnash = linux;
|
||||||
|
gnat44 = linux;
|
||||||
|
gnugrep = all;
|
||||||
|
gnum4 = all;
|
||||||
|
gnumake = all;
|
||||||
|
gnupatch = all;
|
||||||
|
gnupg = linux;
|
||||||
|
gnuplot = allBut "i686-cygwin";
|
||||||
|
gnused = all;
|
||||||
|
gnutar = all;
|
||||||
|
gnutls = linux;
|
||||||
|
gogoclient = linux;
|
||||||
|
gphoto2 = linux;
|
||||||
|
gpm = linux;
|
||||||
|
gprolog = linux;
|
||||||
|
gpsbabel = all;
|
||||||
|
gpscorrelate = linux;
|
||||||
|
gpsd = linux;
|
||||||
|
gqview = gtkSupported;
|
||||||
|
graphviz = all;
|
||||||
|
grub = linux;
|
||||||
|
grub2 = linux;
|
||||||
|
gsl = linux;
|
||||||
|
guile = linux; # tests fail on Cygwin
|
||||||
|
gv = linux;
|
||||||
|
gzip = all;
|
||||||
|
hddtemp = linux;
|
||||||
|
hello = all;
|
||||||
|
host = linux;
|
||||||
|
htmlTidy = all;
|
||||||
|
hugin = linux;
|
||||||
|
iana_etc = linux;
|
||||||
|
icecat3Xul = linux;
|
||||||
|
icewm = linux;
|
||||||
|
idutils = all;
|
||||||
|
ifplugd = linux;
|
||||||
|
impressive = linux;
|
||||||
|
inetutils = linux;
|
||||||
|
inkscape = linux;
|
||||||
|
iputils = linux;
|
||||||
|
irssi = linux;
|
||||||
|
jfsutils = linux;
|
||||||
|
jfsrec = linux;
|
||||||
|
jnettop = linux;
|
||||||
|
jwhois = linux;
|
||||||
|
kbd = linux;
|
||||||
|
keen4 = ["i686-linux"];
|
||||||
|
# klibc = linux;
|
||||||
|
kvm = linux;
|
||||||
|
qemu = linux;
|
||||||
|
qemu_kvm = linux;
|
||||||
|
less = all;
|
||||||
|
lftp = all;
|
||||||
|
libarchive = linux;
|
||||||
|
libsmbios = linux;
|
||||||
|
libtool = all;
|
||||||
|
libtool_2 = all;
|
||||||
|
lout = linux;
|
||||||
|
lsh = linux;
|
||||||
|
lsof = linux;
|
||||||
|
ltrace = linux;
|
||||||
|
lvm2 = linux;
|
||||||
|
lynx = linux;
|
||||||
|
lzma = linux;
|
||||||
|
man = linux;
|
||||||
|
manpages = linux;
|
||||||
|
maxima = linux;
|
||||||
|
mc = linux;
|
||||||
|
mcabber = linux;
|
||||||
|
mcron = linux;
|
||||||
|
mdadm = linux;
|
||||||
|
mercurial = allBut "i686-cygwin";
|
||||||
|
mercurialFull = allBut "i686-cygwin";
|
||||||
|
mesa = mesaPlatforms;
|
||||||
|
midori = linux;
|
||||||
|
mingetty = linux;
|
||||||
|
mk = linux;
|
||||||
|
mktemp = all;
|
||||||
|
mod_python = linux;
|
||||||
|
module_init_tools = linux;
|
||||||
|
mono = linux;
|
||||||
|
mpg321 = linux;
|
||||||
|
mupen64plus = linux;
|
||||||
|
mutt = linux;
|
||||||
|
mysql = linux;
|
||||||
|
mysql51 = linux;
|
||||||
|
mysql55 = linux;
|
||||||
|
namazu = all;
|
||||||
|
nano = allBut "i686-cygwin";
|
||||||
|
ncat = linux;
|
||||||
|
netcat = all;
|
||||||
|
nfsUtils = linux;
|
||||||
|
nix = all;
|
||||||
|
nixUnstable = all;
|
||||||
|
nmap = linux;
|
||||||
|
nss_ldap = linux;
|
||||||
|
nssmdns = linux;
|
||||||
|
ntfs3g = linux;
|
||||||
|
ntp = linux;
|
||||||
|
ocaml = linux;
|
||||||
|
octave = linux;
|
||||||
|
openssh = linux;
|
||||||
|
openssl = all;
|
||||||
|
pam_console = linux;
|
||||||
|
pam_login = linux;
|
||||||
|
pan = gtkSupported;
|
||||||
|
par2cmdline = all;
|
||||||
|
pavucontrol = linux;
|
||||||
|
pciutils = linux;
|
||||||
|
pdf2xml = all;
|
||||||
|
perl = all;
|
||||||
|
php = linux;
|
||||||
|
pidgin = linux;
|
||||||
|
pinentry = linux;
|
||||||
|
pltScheme = linux;
|
||||||
|
pmccabe = linux;
|
||||||
|
portmap = linux;
|
||||||
|
postgresql = all;
|
||||||
|
postfix = linux;
|
||||||
|
ppl = all;
|
||||||
|
procps = linux;
|
||||||
|
pthreadmanpages = linux;
|
||||||
|
pygtk = linux;
|
||||||
|
pyqt4 = linux;
|
||||||
|
python = allBut "i686-cygwin";
|
||||||
|
pythonFull = linux;
|
||||||
|
sbcl = linux;
|
||||||
|
qt3 = linux;
|
||||||
|
quake3demo = linux;
|
||||||
|
readline = all;
|
||||||
|
reiserfsprogs = linux;
|
||||||
|
rlwrap = all;
|
||||||
|
rogue = all;
|
||||||
|
rpm = linux;
|
||||||
|
rsync = linux;
|
||||||
|
rubber = allBut "i686-cygwin";
|
||||||
|
ruby = all;
|
||||||
|
rxvt_unicode = linux;
|
||||||
|
screen = linux ++ darwin;
|
||||||
|
scrot = linux;
|
||||||
|
sdparm = linux;
|
||||||
|
seccure = linux;
|
||||||
|
sgtpuzzles = linux;
|
||||||
|
sharutils = all;
|
||||||
|
slim = linux;
|
||||||
|
sloccount = allBut "i686-cygwin";
|
||||||
|
smartmontools = linux;
|
||||||
|
socat = linux;
|
||||||
|
spidermonkey = linux;
|
||||||
|
splashutils = linux;
|
||||||
|
sqlite = allBut "i686-cygwin";
|
||||||
|
squid = linux;
|
||||||
|
ssmtp = linux;
|
||||||
|
stdenv = prio 175 all;
|
||||||
|
stlport = linux;
|
||||||
|
strace = linux;
|
||||||
|
su = linux;
|
||||||
|
sudo = linux;
|
||||||
|
superTuxKart = linux;
|
||||||
|
swig = linux;
|
||||||
|
sylpheed = linux;
|
||||||
|
sysklogd = linux;
|
||||||
|
syslinux = ["i686-linux"];
|
||||||
|
sysvinit = linux;
|
||||||
|
sysvtools = linux;
|
||||||
|
tahoelafs = linux;
|
||||||
|
tangogps = linux;
|
||||||
|
tcl = linux;
|
||||||
|
tcpdump = linux;
|
||||||
|
teeworlds = linux;
|
||||||
|
tetex = linux;
|
||||||
|
texLive = linux;
|
||||||
|
texLiveBeamer = linux;
|
||||||
|
texLiveExtra = linux;
|
||||||
|
texinfo = all;
|
||||||
|
tightvnc = linux;
|
||||||
|
time = linux;
|
||||||
|
tinycc = ["i686-linux"];
|
||||||
|
uae = linux;
|
||||||
|
udev = linux;
|
||||||
|
unrar = linux;
|
||||||
|
upstart = linux;
|
||||||
|
usbutils = linux;
|
||||||
|
utillinux = linux;
|
||||||
|
utillinuxCurses = linux;
|
||||||
|
uzbl = linux;
|
||||||
|
viking = linux;
|
||||||
|
vice = linux;
|
||||||
|
vim = linux;
|
||||||
|
vimHugeX = linux;
|
||||||
|
VisualBoyAdvance = linux;
|
||||||
|
vlc = linux;
|
||||||
|
vncrec = linux;
|
||||||
|
vorbisTools = linux;
|
||||||
|
vpnc = linux;
|
||||||
|
vsftpd = linux;
|
||||||
|
w3m = all;
|
||||||
|
webkit = linux;
|
||||||
|
weechat = linux;
|
||||||
|
wget = all;
|
||||||
|
which = all;
|
||||||
|
wicd = linux;
|
||||||
|
wine = ["i686-linux"];
|
||||||
|
wireshark = linux;
|
||||||
|
wirelesstools = linux;
|
||||||
|
wxGTK = linux;
|
||||||
|
x11_ssh_askpass = linux;
|
||||||
|
xchm = linux;
|
||||||
|
xfig = x11Supported;
|
||||||
|
xfsprogs = linux;
|
||||||
|
xineUI = linux;
|
||||||
|
xkeyboard_config = linux;
|
||||||
|
xlockmore = linux;
|
||||||
|
xmltv = linux;
|
||||||
|
xpdf = linux;
|
||||||
|
xscreensaver = linux;
|
||||||
|
xsel = linux;
|
||||||
|
xterm = linux;
|
||||||
|
xxdiff = linux;
|
||||||
|
zdelta = linux;
|
||||||
|
zile = linux;
|
||||||
|
zip = all;
|
||||||
|
zsh = linux;
|
||||||
|
zsnes = ["i686-linux"];
|
||||||
|
|
||||||
firefox36Pkgs.firefox = linux;
|
emacs23Packages = {
|
||||||
firefox19Pkgs.firefox = linux;
|
bbdb = linux;
|
||||||
|
cedet = linux;
|
||||||
|
ecb = linux;
|
||||||
|
emacsw3m = linux;
|
||||||
|
emms = linux;
|
||||||
|
jdee = linux;
|
||||||
|
};
|
||||||
|
|
||||||
gnome = {
|
firefox36Pkgs.firefox = linux;
|
||||||
gnome_panel = linux;
|
firefox19Pkgs.firefox = linux;
|
||||||
metacity = linux;
|
|
||||||
gnome_vfs = linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
haskellPackages_ghc6104 = {
|
gnome = {
|
||||||
ghc = ghcSupported;
|
gnome_panel = linux;
|
||||||
};
|
metacity = linux;
|
||||||
|
gnome_vfs = linux;
|
||||||
|
};
|
||||||
|
|
||||||
haskellPackages_ghc6123 = {
|
haskellPackages_ghc6104 = {
|
||||||
ghc = ghcSupported;
|
ghc = ghcSupported;
|
||||||
};
|
};
|
||||||
|
|
||||||
haskellPackages_ghc704 = {
|
haskellPackages_ghc6123 = {
|
||||||
ghc = ghcSupported;
|
ghc = ghcSupported;
|
||||||
};
|
};
|
||||||
|
|
||||||
haskellPackages_ghc742 = {
|
haskellPackages_ghc704 = {
|
||||||
ghc = ghcSupported;
|
ghc = ghcSupported;
|
||||||
};
|
};
|
||||||
|
|
||||||
haskellPackages_ghc762 = {
|
haskellPackages_ghc742 = {
|
||||||
ghc = ghcSupported;
|
ghc = ghcSupported;
|
||||||
};
|
};
|
||||||
|
|
||||||
strategoPackages = {
|
haskellPackages_ghc762 = {
|
||||||
sdf = linux;
|
ghc = ghcSupported;
|
||||||
strategoxt = linux;
|
};
|
||||||
javafront = linux;
|
|
||||||
strategoShell = linux ++ darwin;
|
|
||||||
dryad = linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
pythonPackages = {
|
strategoPackages = {
|
||||||
zfec = linux;
|
sdf = linux;
|
||||||
};
|
strategoxt = linux;
|
||||||
|
javafront = linux;
|
||||||
|
strategoShell = linux ++ darwin;
|
||||||
|
dryad = linux;
|
||||||
|
};
|
||||||
|
|
||||||
xorg = {
|
pythonPackages = {
|
||||||
fontadobe100dpi = linux;
|
zfec = linux;
|
||||||
fontadobe75dpi = linux;
|
};
|
||||||
fontbh100dpi = linux;
|
|
||||||
fontbhlucidatypewriter100dpi = linux;
|
|
||||||
fontbhlucidatypewriter75dpi = linux;
|
|
||||||
fontbhttf = linux;
|
|
||||||
fontcursormisc = linux;
|
|
||||||
fontmiscmisc = linux;
|
|
||||||
iceauth = linux;
|
|
||||||
libX11 = linux;
|
|
||||||
lndir = all;
|
|
||||||
setxkbmap = linux;
|
|
||||||
xauth = linux;
|
|
||||||
xbitmaps = linux;
|
|
||||||
xev = linux;
|
|
||||||
xf86inputevdev = linux;
|
|
||||||
xf86inputkeyboard = linux;
|
|
||||||
xf86inputmouse = linux;
|
|
||||||
xf86inputsynaptics = linux;
|
|
||||||
xf86videoati = linux;
|
|
||||||
xf86videocirrus = linux;
|
|
||||||
xf86videointel = linux;
|
|
||||||
xf86videonv = linux;
|
|
||||||
xf86videovesa = linux;
|
|
||||||
xfs = linux;
|
|
||||||
xkbcomp = linux;
|
|
||||||
xlsclients = linux;
|
|
||||||
xmessage = linux;
|
|
||||||
xorgserver = linux;
|
|
||||||
xprop = linux;
|
|
||||||
xrandr = linux;
|
|
||||||
xrdb = linux;
|
|
||||||
xset = linux;
|
|
||||||
xsetroot = linux;
|
|
||||||
xwininfo = linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
xfce = {
|
xorg = {
|
||||||
gtk_xfce_engine = linux;
|
fontadobe100dpi = linux;
|
||||||
mousepad = linux;
|
fontadobe75dpi = linux;
|
||||||
ristretto = linux;
|
fontbh100dpi = linux;
|
||||||
terminal = linux;
|
fontbhlucidatypewriter100dpi = linux;
|
||||||
thunar = linux;
|
fontbhlucidatypewriter75dpi = linux;
|
||||||
xfce4_power_manager = linux;
|
fontbhttf = linux;
|
||||||
xfce4icontheme = linux;
|
fontcursormisc = linux;
|
||||||
xfce4mixer = linux;
|
fontmiscmisc = linux;
|
||||||
xfce4panel = linux;
|
iceauth = linux;
|
||||||
xfce4session = linux;
|
libX11 = linux;
|
||||||
xfce4settings = linux;
|
lndir = all;
|
||||||
xfdesktop = linux;
|
setxkbmap = linux;
|
||||||
xfwm4 = linux;
|
xauth = linux;
|
||||||
};
|
xbitmaps = linux;
|
||||||
|
xev = linux;
|
||||||
|
xf86inputevdev = linux;
|
||||||
|
xf86inputkeyboard = linux;
|
||||||
|
xf86inputmouse = linux;
|
||||||
|
xf86inputsynaptics = linux;
|
||||||
|
xf86videoati = linux;
|
||||||
|
xf86videocirrus = linux;
|
||||||
|
xf86videointel = linux;
|
||||||
|
xf86videonv = linux;
|
||||||
|
xf86videovesa = linux;
|
||||||
|
xfs = linux;
|
||||||
|
xkbcomp = linux;
|
||||||
|
xlsclients = linux;
|
||||||
|
xmessage = linux;
|
||||||
|
xorgserver = linux;
|
||||||
|
xprop = linux;
|
||||||
|
xrandr = linux;
|
||||||
|
xrdb = linux;
|
||||||
|
xset = linux;
|
||||||
|
xsetroot = linux;
|
||||||
|
xwininfo = linux;
|
||||||
|
};
|
||||||
|
|
||||||
} ))
|
xfce = {
|
||||||
|
gtk_xfce_engine = linux;
|
||||||
|
mousepad = linux;
|
||||||
|
ristretto = linux;
|
||||||
|
terminal = linux;
|
||||||
|
thunar = linux;
|
||||||
|
xfce4_power_manager = linux;
|
||||||
|
xfce4icontheme = linux;
|
||||||
|
xfce4mixer = linux;
|
||||||
|
xfce4panel = linux;
|
||||||
|
xfce4session = linux;
|
||||||
|
xfce4settings = linux;
|
||||||
|
xfdesktop = linux;
|
||||||
|
xfwm4 = linux;
|
||||||
|
};
|
||||||
|
|
||||||
|
} ));
|
||||||
|
|
||||||
|
in jobs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user