lol

Merge remote-tracking branch 'origin/master' into stdenv-updates

+2868 -469
+2 -2
maintainers/scripts/eval-release.nix
··· 5 5 with import ../../pkgs/lib; 6 6 7 7 let 8 - trace = if (builtins.getEnv "VERBOSE") == "1" then builtins.trace else (x: y: y); 8 + trace = if builtins.getEnv "VERBOSE" == "1" then builtins.trace else (x: y: y); 9 9 10 10 rel = removeAttrs (import ../../pkgs/top-level/release.nix) [ "tarball" "xbursttools" ]; 11 11 ··· 13 13 14 14 strictAttrs = as: seqList (attrValues as) as; 15 15 16 - maybe = as: let y = builtins.tryEval (strictAttrs as); in if y.success then y.value else builtins.trace "FAIL" null; 16 + maybe = as: let y = builtins.tryEval (strictAttrs as); in if y.success then y.value else builtins.trace "FAIL" {}; 17 17 18 18 call = attrs: flip mapAttrs attrs 19 19 (n: v: trace n (
+2 -2
pkgs/applications/editors/emacs-modes/flymake-cursor/default.nix
··· 1 1 { stdenv, fetchurl, emacs }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "flymake-cursor-0.1.4"; 4 + name = "flymake-cursor-0.1.5"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.emacswiki.org/emacs/download/flymake-cursor.el"; 8 - sha256 = "1wxqqmn2fk2b778nksvgn1mi7ajarcpc5lla90xx9jwz47d9hx02"; 8 + sha256 = "1qqppd1786w8pl1avjb01n23lwihb7m0hr23abjklsxz03gmp4qz"; 9 9 }; 10 10 11 11 phases = [ "buildPhase" "installPhase"];
+2 -2
pkgs/applications/editors/emacs-modes/htmlize/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "htmlize-1.40"; 4 + name = "htmlize-1.43"; 5 5 6 6 builder = ./builder.sh; 7 7 8 8 src = fetchurl { 9 9 url = http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el.cgi; 10 - sha256 = "1v7pzif5b7dr6iyllqvzka8i6s23rsjdnmilnma054gv8d4shw6a"; 10 + sha256 = "0bdaxh3pjf4z55i7vz4yz3yz45720h8aalhmx13bgkrpijzn93bi"; 11 11 }; 12 12 13 13 meta = {
+1 -1
pkgs/applications/editors/jedit/default.nix
··· 4 4 name = "jedit-4.4.2"; 5 5 6 6 src = fetchurl { 7 - url = mirror://sf/jedit/jedit4.4.2source.tar.bz2; 7 + url = mirror://sourceforge/jedit/jedit4.4.2source.tar.bz2; 8 8 sha256 = "5e9ad9c32871b77ef0b9fe46dcfcea57ec52558d36113b7280194a33430b8ceb"; 9 9 }; 10 10
+5 -4
pkgs/applications/graphics/ImageMagick/default.nix
··· 3 3 , bzip2 4 4 , freetype 5 5 , graphviz 6 - , ghostscript 6 + , ghostscript ? null 7 7 , libjpeg 8 8 , libpng 9 9 , libtiff ··· 27 27 sha256 = "0m0sa4jxsvm8pf9nfvkzlbzq13d1lj15lfz6jif12l6ywyh2c1cs"; 28 28 }; 29 29 30 - configureFlags = '' 30 + configureFlags = "" + stdenv.lib.optionalString (ghostscript != null && stdenv.system != "x86_64-darwin") '' 31 31 --with-gs-font-dir=${ghostscript}/share/ghostscript/fonts 32 32 --with-gslib 33 + '' + '' 33 34 --with-frozenpaths 34 35 ${if librsvg != null then "--with-rsvg" else ""} 35 36 ''; 36 37 37 38 propagatedBuildInputs = 38 - [ bzip2 freetype ghostscript libjpeg libpng libtiff libxml2 zlib librsvg 39 - libtool jasper libX11 ]; 39 + [ bzip2 freetype libjpeg libpng libtiff libxml2 zlib librsvg 40 + libtool jasper libX11 ] ++ stdenv.lib.optional (ghostscript != null && stdenv.system != "x86_64-darwin") ghostscript; 40 41 41 42 buildInputs = [ tetex graphviz ]; 42 43
+1 -1
pkgs/applications/graphics/gocr/default.nix
··· 4 4 name = "gocr-0.49"; 5 5 6 6 src = fetchurl { 7 - url = "www-e.uni-magdeburg.de/jschulen/ocr/gocr-0.49.tar.gz"; 7 + url = http://www-e.uni-magdeburg.de/jschulen/ocr/gocr-0.49.tar.gz; 8 8 sha256 = "06hpzp7rkkwfr1fvmc8kcfz9v490i9yir7f7imh13gmka0fr6afc"; 9 9 }; 10 10
+19
pkgs/applications/graphics/qiv/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, gtk, imlib2, file } : 2 + 3 + stdenv.mkDerivation (rec { 4 + name = "qiv-2.2.4"; 5 + 6 + src = fetchurl { 7 + url = "http://spiegl.de/qiv/download/${name}.tgz"; 8 + sha256 = "ed6078dc550c1dc2fe35c1e0f46463c13589a24b83d4f7101b71a7485e51abb7"; 9 + }; 10 + 11 + buildInputs = [ pkgconfig gtk imlib2 file ]; 12 + 13 + preBuild=''substituteInPlace Makefile --replace /usr/local "$out"''; 14 + 15 + meta = { 16 + description = "qiv (quick image viewer)"; 17 + homepage = http://spiegl.de/qiv/; 18 + }; 19 + })
+2 -2
pkgs/applications/misc/rxvt_unicode/default.nix
··· 3 3 4 4 let 5 5 name = "rxvt-unicode"; 6 - version = "9.15"; 6 + version = "9.16"; 7 7 n = "${name}-${version}"; 8 8 in 9 9 ··· 13 13 14 14 src = fetchurl { 15 15 url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2"; 16 - sha256 = "ec1aa2932da844979ed8140bd92223defb12042aa5e877e05ac31139ca81f2b1"; 16 + sha256 = "0x28wyslqnhn2q11y4hncqdl07wgh5ypywl92fq0jxycr36ibfvn"; 17 17 }; 18 18 19 19 buildInputs =
+1 -1
pkgs/applications/misc/semnotes/default.nix
··· 3 3 name = "semnotes-0.4.0-1"; 4 4 5 5 src = fetchurl { 6 - url = "mirror://sf/semn/0.4.0/semnotes-0.4.0-1-src.tar.bz2"; 6 + url = "mirror://sourceforge/semn/0.4.0/semnotes-0.4.0-1-src.tar.bz2"; 7 7 sha256 = "1zh5jfh7pyhyz5fbzcgzyckdg0ny7sf8s16yy6rjw9n021zz5i7m"; 8 8 }; 9 9
+4 -1
pkgs/applications/networking/browsers/chromium/default.nix
··· 78 78 79 79 post23 = !versionOlder sourceInfo.version "24.0.0.0"; 80 80 post24 = !versionOlder sourceInfo.version "25.0.0.0"; 81 + only24 = post23 && !post24; 81 82 82 - maybeFixPulseAudioBuild = optional (post23 && pulseSupport) 83 + maybeFixPulseAudioBuild = optional (only24 && pulseSupport) 83 84 ./pulse_audio_fix.patch; 84 85 85 86 in stdenv.mkDerivation rec { ··· 120 121 121 122 postPatch = optionalString useOpenSSL '' 122 123 cat $opensslPatches | patch -p1 -d third_party/openssl/openssl 124 + '' + optionalString post24 '' 125 + sed -i -r -e "s/-f(stack-protector)(-all)?/-fno-\1/" build/common.gypi 123 126 ''; 124 127 125 128 gypFlags = mkGypFlags (gypFlagsUseSystemLibs // {
+9 -9
pkgs/applications/networking/browsers/chromium/sources.nix
··· 1 1 # This file is autogenerated from update.sh in the same directory. 2 2 { 3 3 dev = { 4 - version = "25.0.1323.1"; 5 - url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-25.0.1323.1.tar.bz2"; 6 - sha256 = "1i7ga1qhnjvnw2gynmpmsvvl5pxcb5z9sgldp87d9yalim5sra6s"; 4 + version = "25.0.1364.29"; 5 + url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-25.0.1364.29.tar.bz2"; 6 + sha256 = "0da3in98b65rb9wkj9jxb3n07d5k7s1xpqwpvk1jz9jbp0hw7ijp"; 7 7 }; 8 8 beta = { 9 - version = "24.0.1312.35"; 10 - url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.35.tar.bz2"; 11 - sha256 = "0mb6xz5lrnzjk1zqr83jyprsxv20svy3a7lyxv9iwdb2bh1i13ci"; 9 + version = "24.0.1312.52"; 10 + url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2"; 11 + sha256 = "04fp04591dszx07wwdsgxf0wb2sxm863z1qxn5dii6f9yjqgh3gk"; 12 12 }; 13 13 stable = { 14 - version = "23.0.1271.97"; 15 - url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-23.0.1271.97.tar.bz2"; 16 - sha256 = "1qf21n6msj1jmxhnlw8fapsz7q6dd851rxdqv4334v06ny4i5fip"; 14 + version = "24.0.1312.52"; 15 + url = "http://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2"; 16 + sha256 = "04fp04591dszx07wwdsgxf0wb2sxm863z1qxn5dii6f9yjqgh3gk"; 17 17 }; 18 18 }
+2 -2
pkgs/applications/networking/browsers/mozilla-plugins/gecko-mediaplayer/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, browser, x11 2 - , GConf, gnome_mplayer, MPlayer, gmtk 2 + , GConf, gnome_mplayer, mplayer, gmtk 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 23 23 # browser's $PATH. 24 24 postInstall = 25 25 '' 26 - echo "${gnome_mplayer}/bin:${MPlayer}/bin" > $out/${passthru.mozillaPlugin}/extra-bin-path 26 + echo "${gnome_mplayer}/bin:${mplayer}/bin" > $out/${passthru.mozillaPlugin}/extra-bin-path 27 27 ''; 28 28 29 29 passthru.mozillaPlugin = "/lib/mozilla/plugins";
+1
pkgs/applications/networking/instant-messengers/tkabber/default.nix
··· 36 36 37 37 postInstall = '' 38 38 wrapProgram $out/bin/tkabber \ 39 + --prefix PATH : "${tk}/bin" \ 39 40 --set TCLLIBPATH '"${tclLibPaths}"' \ 40 41 --set TKABBER_SITE_PLUGINS '$HOME/.nix-profile/share/tkabber-plugins' 41 42 '';
+2 -2
pkgs/applications/networking/irc/quassel/default.nix
··· 11 11 12 12 in with stdenv; mkDerivation rec { 13 13 14 - name = "quassel-0.7.1"; 14 + name = "quassel-0.7.4"; 15 15 16 16 src = fetchurl { 17 17 url = "http://quassel-irc.org/pub/${name}.tar.bz2"; 18 - sha256 = "1kby1yikiv5bpzkdri5dq39pxnsj9gjrcv1gigvy2jzy3g99qjli"; 18 + sha256 = "08f4m35bkmp9p1n560a3fg711s9izb25ddx2az03xzf1jl8qdrg7"; 19 19 }; 20 20 21 21 buildInputs = [ cmake qt4 ]
+1 -1
pkgs/applications/science/logic/iprover/default.nix
··· 13 13 baseName="iprover"; 14 14 version="0.8.1"; 15 15 name="${baseName}_v${version}"; 16 - url="${baseName}.googlecode.com/files/${name}.tar.gz"; 16 + url="http://${baseName}.googlecode.com/files/${name}.tar.gz"; 17 17 hash="15qn523w4l296np5rnkwi50a5x2xqz0kaza7bsh9bkazph7jma7w"; 18 18 }; 19 19 in
+1 -1
pkgs/applications/science/logic/opensmt/default.nix
··· 15 15 version="20101017"; 16 16 name="${baseName}-${version}"; 17 17 filename="${baseName}_src_${version}"; 18 - url="${baseName}.googlecode.com/files/${filename}.tgz"; 18 + url="http://${baseName}.googlecode.com/files/${filename}.tgz"; 19 19 hash="0xrky7ixjaby5x026v7hn72xh7d401w9jhccxjn0khhn1x87p2w1"; 20 20 }; 21 21 in
+2 -2
pkgs/applications/version-management/bazaar/default.nix
··· 1 1 { stdenv, fetchurl, pythonPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.3"; 4 + version = "2.5"; 5 5 release = ".1"; 6 6 name = "bazaar-${version}${release}"; 7 7 8 8 src = fetchurl { 9 9 url = "http://launchpad.net/bzr/${version}/${version}${release}/+download/bzr-${version}${release}.tar.gz"; 10 - sha256 = "07kx41w4gqv68bcykdflsg68wvpmcyqknzyb4vr1zqlf27hahp53"; 10 + sha256 = "10krjbzia2avn09p0cdlbx2wya0r5v11w5ymvyl72af5dkx4cwwn"; 11 11 }; 12 12 13 13 buildInputs = [ pythonPackages.python pythonPackages.wrapPython ];
+2 -2
pkgs/applications/version-management/subversion/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 24 - version = "1.7.7"; 24 + version = "1.7.8"; 25 25 26 26 name = "subversion-${version}"; 27 27 28 28 src = fetchurl { 29 29 url = "mirror://apache/subversion//${name}.tar.bz2"; 30 - sha1 = "c9fc0c5992eda36ba9affd93a15929e25958a951"; 30 + sha1 = "12c7d8d5414bba74c9777c4d1dae74f152df63c2"; 31 31 }; 32 32 33 33 buildInputs = [ zlib apr aprutil sqlite ]
+5 -5
pkgs/applications/video/MPlayer/default.nix pkgs/applications/video/mplayer/default.nix
··· 18 18 , pulseSupport ? false, pulseaudio ? null 19 19 # For screenshots 20 20 , libpngSupport ? true, libpng ? null 21 + , useUnfreeCodecs ? false 21 22 }: 22 23 23 24 assert x11Support -> (libX11 != null && libXext != null && mesa != null); ··· 66 67 cp -prv * $out 67 68 ''; 68 69 69 - meta = { 70 - license = "unfree"; 71 - }; 70 + meta.license = "unfree"; 72 71 } else null; 73 72 74 73 in ··· 140 139 ${if x264Support then "--enable-x264 --disable-x264-lavc" else "--disable-x264 --enable-x264-lavc"} 141 140 ${if jackaudioSupport then "--enable-jack" else "--disable-jack"} 142 141 ${if pulseSupport then "--enable-pulse" else "--disable-pulse"} 143 - 144 - ${optionalString (codecs != null) "--codecsdir=${codecs}"} 142 + ${optionalString (useUnfreeCodecs && codecs != null) "--codecsdir=${codecs}"} 145 143 ${optionalString (stdenv.isi686 || stdenv.isx86_64) "--enable-runtime-cpudetection"} 146 144 --enable-freetype 147 145 --disable-xanim ··· 153 151 ''; 154 152 155 153 NIX_LDFLAGS = stdenv.lib.optionalString x11Support "-lX11 -lXext"; 154 + 155 + enableParallelBuilding = true; 156 156 157 157 # Provide a reasonable standard font. Maybe we should symlink here. 158 158 postInstall =
+2 -2
pkgs/applications/video/vlc/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "vlc-${version}"; 13 - version = "2.0.4"; 13 + version = "2.0.5"; 14 14 15 15 src = fetchurl { 16 16 url = "http://download.videolan.org/pub/videolan/vlc/${version}/${name}.tar.xz"; 17 - sha256 = "1dixankckfxf8xixfc32rc9mfsv6mx2lk5h13ym8bp4dsk86w1jf"; 17 + sha256 = "0vkbv477a7z0v55sigz6c3abxljz7jyysp7z8s29zk8vhq0fpyfz"; 18 18 }; 19 19 20 20 buildInputs =
-2
pkgs/build-support/fetchurl/mirrors.nix
··· 20 20 http://kent.dl.sourceforge.net/sourceforge/ 21 21 ]; 22 22 23 - sf = sourceforge; 24 - 25 23 # GNU (http://www.gnu.org/prep/ftp.html). 26 24 gnu = [ 27 25 # This one redirects to a (supposedly) nearby and (supposedly) up-to-date
+1 -1
pkgs/build-support/release/source-tarball.nix
··· 9 9 , versionSuffix ? 10 10 if officialRelease 11 11 then "" 12 - else if src ? rev then "pre${toString src.rev}" else "" 12 + else "pre${toString (src.rev or src.revCount or "")}" 13 13 , src, stdenv, autoconf, automake, libtool 14 14 , ... } @ args: 15 15
+79
pkgs/build-support/replace-dependency.nix
··· 1 + { runCommand, nix, lib }: 2 + 3 + # Replace a single dependency in the requisites tree of drv, propagating 4 + # the change all the way up the tree, without a full rebuild. This can be 5 + # useful, for example, to patch a security hole in libc and still use your 6 + # system safely without rebuilding the world. This should be a short term 7 + # solution, as soon as a rebuild can be done the properly rebuild derivation 8 + # should be used. The old dependency and new dependency MUST have the same-length 9 + # name, and ideally should have close-to-identical directory layout. 10 + # 11 + # Example: safeFirefox = replaceDependency { 12 + # drv = firefox; 13 + # oldDependency = glibc; 14 + # newDependency = overrideDerivation glibc (attrs: { 15 + # patches = attrs.patches ++ [ ./fix-glibc-hole.patch ]; 16 + # }); 17 + # }; 18 + # This will rebuild glibc with your security patch, then copy over firefox 19 + # (and all of its dependencies) without rebuilding further. 20 + { drv, oldDependency, newDependency }: 21 + 22 + with lib; 23 + 24 + let 25 + references = import (runCommand "references.nix" { exportReferencesGraph = [ "graph" drv ]; } '' 26 + (echo { 27 + while read path 28 + do 29 + echo " \"$path\" = [" 30 + read count 31 + read count 32 + while [ "0" != "$count" ] 33 + do 34 + read ref_path 35 + if [ "$ref_path" != "$path" ] 36 + then 37 + echo " (builtins.storePath $ref_path)" 38 + fi 39 + count=$(($count - 1)) 40 + done 41 + echo " ];" 42 + done < graph 43 + echo }) > $out 44 + '').outPath; 45 + 46 + discard = builtins.unsafeDiscardStringContext; 47 + 48 + oldStorepath = builtins.storePath (discard (toString oldDependency)); 49 + 50 + referencesOf = drv: getAttr (discard (toString drv)) references; 51 + 52 + dependsOnOld = drv: elem oldStorepath (referencesOf drv) || 53 + any dependsOnOld (referencesOf drv); 54 + 55 + drvName = drv: 56 + discard (substring 33 (stringLength (builtins.baseNameOf drv)) (builtins.baseNameOf drv)); 57 + 58 + rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix}/bin/nix-store"; } '' 59 + $nixStore --dump ${drv} | sed 's|${baseNameOf drv}|'$(basename $out)'|g' | sed -e ${ 60 + concatStringsSep " -e " (mapAttrsToList (name: value: 61 + "'s|${baseNameOf name}|${baseNameOf value}|g'" 62 + ) hashes) 63 + } | $nixStore --restore $out 64 + ''; 65 + 66 + rewrittenDeps = listToAttrs [ {name = discard (toString oldDependency); value = newDependency;} ]; 67 + 68 + rewrittenDerivations = drv: 69 + if dependsOnOld drv 70 + then listToAttrs [ { 71 + name = discard (toString drv); 72 + 73 + value = rewriteHashes drv (rewrittenDeps // (fold (drv: acc: 74 + (rewrittenDerivations drv) // acc 75 + ) {} (referencesOf drv))); 76 + } ] 77 + else {}; 78 + in assert (stringLength (drvName (toString oldDependency)) == stringLength (drvName (toString newDependency))); 79 + getAttr (discard (toString drv)) (rewrittenDerivations drv)
+1 -1
pkgs/data/fonts/libertine/default.nix
··· 2 2 name = "linux-libertine-5.3.0"; 3 3 4 4 src = fetchurl { 5 - url = mirror://sf/linuxlibertine/5.3.0/LinLibertineSRC_5.3.0_2012_07_02.tgz; 5 + url = mirror://sourceforge/linuxlibertine/5.3.0/LinLibertineSRC_5.3.0_2012_07_02.tgz; 6 6 sha256 = "0x7cz6hvhpil1rh03rax9zsfzm54bh7r4bbrq8rz673gl9h47v0v"; 7 7 }; 8 8
+2 -2
pkgs/desktops/xfce-4.8/applications/terminal.nix
··· 7 7 8 8 stdenv.mkDerivation { 9 9 name = "xfce-terminal-0.4.8"; 10 - 10 + 11 11 src = fetchurl { 12 - url = http://archive.xfce.org/src/apps/terminal/0.4/Terminal-0.4.8.tar.bz2; 12 + url = http://archive.xfce.org/src/apps/xfce4-terminal/0.4/Terminal-0.4.8.tar.bz2; 13 13 sha1 = "2f12c3a0fffad18976d47e531d404ee308cb2f05"; 14 14 }; 15 15
+2
pkgs/development/interpreters/python/2.6/default.nix
··· 68 68 rm -rf "$out/lib/python${majorVersion}/test" 69 69 ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb 70 70 ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb${majorVersion} 71 + mv $out/share/man/man1/{python.1,python2.6.1} 72 + ln -s $out/share/man/man1/{python2.6.1,python.1} 71 73 ''; 72 74 73 75 passthru = {
+1
pkgs/development/interpreters/python/2.7/default.nix
··· 76 76 rm -rf "$out/lib/python${majorVersion}/test" 77 77 ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb 78 78 ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb${majorVersion} 79 + ln -s $out/share/man/man1/{python2.7.1.gz,python.1.gz} 79 80 ''; 80 81 81 82 passthru = {
+2 -2
pkgs/development/interpreters/python/wrapper.nix
··· 1 1 # Create a python that knows about additional python packages via 2 2 # PYTHONPATH 3 3 4 - {stdenv, python, makeWrapper, extraLibs ? []}: 4 + { stdenv, python, makeWrapper, recursivePthLoader, extraLibs ? [] }: 5 5 6 6 stdenv.mkDerivation { 7 7 name = "python-${python.version}-wrapper"; 8 8 9 - propagatedBuildInputs = [python makeWrapper] ++ extraLibs; 9 + propagatedBuildInputs = extraLibs ++ [ python makeWrapper recursivePthLoader ]; 10 10 11 11 unpackPhase = "true"; 12 12 installPhase = ''
+4 -2
pkgs/development/libraries/apr-util/default.nix
··· 9 9 assert ldapSupport -> openldap != null; 10 10 11 11 stdenv.mkDerivation rec { 12 - name = "apr-util-1.4.1"; 12 + name = "apr-util-1.5.1"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://apache/apr/${name}.tar.bz2"; 16 - md5 = "52b31b33fb1aa16e65ddaefc76e41151"; 16 + md5 = "9c1db8606e520f201c451ec9a0b095f6"; 17 17 }; 18 18 19 19 configureFlags = '' ··· 25 25 ''; 26 26 27 27 propagatedBuildInputs = stdenv.lib.optional ldapSupport openldap; 28 + 29 + enableParallelBuilding = true; 28 30 29 31 passthru = { 30 32 inherit sslSupport bdbSupport ldapSupport;
+1 -1
pkgs/development/libraries/clucene-core/default.nix
··· 4 4 name = "clucene-core-0.9.21b"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sf/clucene/${name}.tar.bz2"; 7 + url = "mirror://sourceforge/clucene/${name}.tar.bz2"; 8 8 sha256 = "202ee45af747f18642ae0a088d7c4553521714a511a1a9ec99b8144cf9928317"; 9 9 }; 10 10
+1 -1
pkgs/development/libraries/cppunit/default.nix
··· 4 4 name = "cppunit-1.12.0"; 5 5 6 6 src = fetchurl { 7 - url = mirror://sf/cppunit/cppunit-1.12.0.tar.gz; 7 + url = mirror://sourceforge/cppunit/cppunit-1.12.0.tar.gz; 8 8 sha256 = "07zyyx5dyai94y8r8va28971f5mw84mb93xx9pm6m4ddpj6c79cq"; 9 9 }; 10 10
+85
pkgs/development/libraries/ffmpeg/1.1.nix
··· 1 + { stdenv, fetchurl, pkgconfig, yasm, zlib, bzip2, alsaLib 2 + , mp3Support ? true, lame ? null 3 + , speexSupport ? true, speex ? null 4 + , theoraSupport ? true, libtheora ? null 5 + , vorbisSupport ? true, libvorbis ? null 6 + , vpxSupport ? false, libvpx ? null 7 + , x264Support ? true, x264 ? null 8 + , xvidSupport ? true, xvidcore ? null 9 + , vdpauSupport ? true, libvdpau ? null 10 + , faacSupport ? false, faac ? null 11 + , dc1394Support ? false, libdc1394 ? null 12 + , x11grabSupport ? false, libXext ? null, libXfixes ? null 13 + }: 14 + 15 + assert speexSupport -> speex != null; 16 + assert theoraSupport -> libtheora != null; 17 + assert vorbisSupport -> libvorbis != null; 18 + assert vpxSupport -> libvpx != null; 19 + assert x264Support -> x264 != null; 20 + assert xvidSupport -> xvidcore != null; 21 + assert vdpauSupport -> libvdpau != null; 22 + assert faacSupport -> faac != null; 23 + assert x11grabSupport -> libXext != null && libXfixes != null; 24 + 25 + stdenv.mkDerivation rec { 26 + name = "ffmpeg-1.1"; 27 + 28 + src = fetchurl { 29 + url = "http://www.ffmpeg.org/releases/${name}.tar.bz2"; 30 + sha256 = "03s1zsprz5p6gjgwwqcf7b6cvzwwid6l8k7bamx9i0f1iwkgdm0j"; 31 + }; 32 + 33 + # `--enable-gpl' (as well as the `postproc' and `swscale') mean that 34 + # the resulting library is GPL'ed, so it can only be used in GPL'ed 35 + # applications. 36 + configureFlags = [ 37 + "--enable-gpl" 38 + "--enable-postproc" 39 + "--enable-swscale" 40 + "--disable-ffplay" 41 + "--enable-shared" 42 + "--enable-runtime-cpudetect" 43 + ] 44 + ++ stdenv.lib.optional mp3Support "--enable-libmp3lame" 45 + ++ stdenv.lib.optional speexSupport "--enable-libspeex" 46 + ++ stdenv.lib.optional theoraSupport "--enable-libtheora" 47 + ++ stdenv.lib.optional vorbisSupport "--enable-libvorbis" 48 + ++ stdenv.lib.optional vpxSupport "--enable-libvpx" 49 + ++ stdenv.lib.optional x264Support "--enable-libx264" 50 + ++ stdenv.lib.optional xvidSupport "--enable-libxvid" 51 + ++ stdenv.lib.optional vdpauSupport "--enable-vdpau" 52 + ++ stdenv.lib.optional faacSupport "--enable-libfaac --enable-nonfree" 53 + ++ stdenv.lib.optional dc1394Support "--enable-libdc1394" 54 + ++ stdenv.lib.optional x11grabSupport "--enable-x11grab"; 55 + 56 + buildInputs = [ pkgconfig lame yasm zlib bzip2 alsaLib ] 57 + ++ stdenv.lib.optional mp3Support lame 58 + ++ stdenv.lib.optional speexSupport speex 59 + ++ stdenv.lib.optional theoraSupport libtheora 60 + ++ stdenv.lib.optional vorbisSupport libvorbis 61 + ++ stdenv.lib.optional vpxSupport libvpx 62 + ++ stdenv.lib.optional x264Support x264 63 + ++ stdenv.lib.optional xvidSupport xvidcore 64 + ++ stdenv.lib.optional vdpauSupport libvdpau 65 + ++ stdenv.lib.optional faacSupport faac 66 + ++ stdenv.lib.optional dc1394Support libdc1394 67 + ++ stdenv.lib.optionals x11grabSupport [ libXext libXfixes ]; 68 + 69 + enableParallelBuilding = true; 70 + 71 + crossAttrs = { 72 + dontSetConfigureCross = true; 73 + configureFlags = configureFlags ++ [ 74 + "--cross-prefix=${stdenv.cross.config}-" 75 + "--enable-cross-compile" 76 + "--target_os=linux" 77 + "--arch=${stdenv.cross.arch}" 78 + ]; 79 + }; 80 + 81 + meta = { 82 + homepage = http://www.ffmpeg.org/; 83 + description = "A complete, cross-platform solution to record, convert and stream audio and video"; 84 + }; 85 + }
+2 -2
pkgs/development/libraries/gts/default.nix
··· 1 - { fetchurl, stdenv, glib, pkgconfig }: 1 + { fetchurl, stdenv, glib, pkgconfig, gettext }: 2 2 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705"; 11 11 }; 12 12 13 - buildInputs = [ glib pkgconfig ]; 13 + buildInputs = [ glib pkgconfig ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; 14 14 15 15 meta = { 16 16 homepage = http://gts.sourceforge.net/;
+2 -2
pkgs/development/libraries/haskell/cipher-aes/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "cipher-aes"; 5 - version = "0.1.5"; 6 - sha256 = "0n0qbq2hwyksdbr6fn7yj5vwicmdrn58mfz0dprl8fj456r4j3kn"; 5 + version = "0.1.7"; 6 + sha256 = "1iai9c4rvxframylvc0xwx2nk6s0rsj4dc42wi334xyinilvfyng"; 7 7 meta = { 8 8 homepage = "http://github.com/vincenthz/hs-cipher-aes"; 9 9 description = "Fast AES cipher implementation with advanced mode of operations";
+13
pkgs/development/libraries/haskell/cipher-rc4/default.nix
··· 1 + { cabal }: 2 + 3 + cabal.mkDerivation (self: { 4 + pname = "cipher-rc4"; 5 + version = "0.1.2"; 6 + sha256 = "0nyrqms7h3hq236h03sjjjqdcxn3iz3fg4ifqj43f4nb8gv0ifb1"; 7 + meta = { 8 + homepage = "http://github.com/vincenthz/hs-cipher-rc4"; 9 + description = "Fast RC4 cipher implementation"; 10 + license = self.stdenv.lib.licenses.bsd3; 11 + platforms = self.ghc.meta.platforms; 12 + }; 13 + })
+6 -6
pkgs/development/libraries/haskell/clientsession/default.nix
··· 1 - { cabal, base64Bytestring, cereal, cprngAes, cryptoApi 2 - , cryptocipher, entropy, skein, tagged 1 + { cabal, base64Bytestring, cereal, cipherAes, cprngAes, cryptoApi 2 + , entropy, skein, tagged 3 3 }: 4 4 5 5 cabal.mkDerivation (self: { 6 6 pname = "clientsession"; 7 - version = "0.8.0.2"; 8 - sha256 = "189v030g23lvky4vccdaw3p0p6drn26zly80a8n9bbn7b8kbfh4r"; 7 + version = "0.8.1"; 8 + sha256 = "1x4qfm4hkvm3xmn7hnvcx1j900g97qhks66xzik1wvsjy3piwpgd"; 9 9 buildDepends = [ 10 - base64Bytestring cereal cprngAes cryptoApi cryptocipher entropy 11 - skein tagged 10 + base64Bytestring cereal cipherAes cprngAes cryptoApi entropy skein 11 + tagged 12 12 ]; 13 13 meta = { 14 14 homepage = "http://github.com/yesodweb/clientsession/tree/master";
+2 -2
pkgs/development/libraries/haskell/cprng-aes/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "cprng-aes"; 5 - version = "0.3.2"; 6 - sha256 = "1xwwhg83llf9fzfafxsky65biwk0sla9273rp4gqr7vg9p02k221"; 5 + version = "0.3.4"; 6 + sha256 = "0k1zh4nw30qgdrkgn6x6zfbpp129f9cparzyqsdqfbf44j0mf2rw"; 7 7 buildDepends = [ 8 8 cipherAes cryptoApi cryptoRandomApi entropy random 9 9 ];
+2 -2
pkgs/development/libraries/haskell/crypto-conduit/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "crypto-conduit"; 5 - version = "0.4.2"; 6 - sha256 = "0kg99kvpm5h8v28sylrp9z868ksz5737377akqy09y90xzb8pak3"; 5 + version = "0.4.3"; 6 + sha256 = "0h9dmr88hqmz2876mlnzz8s5kmi368zs9pljvvmb9vn7m44gpyrk"; 7 7 buildDepends = [ cereal conduit cryptoApi transformers ]; 8 8 meta = { 9 9 homepage = "https://github.com/meteficha/crypto-conduit";
+14
pkgs/development/libraries/haskell/crypto-numbers/default.nix
··· 1 + { cabal, cryptoRandomApi, vector }: 2 + 3 + cabal.mkDerivation (self: { 4 + pname = "crypto-numbers"; 5 + version = "0.1.3"; 6 + sha256 = "115lgnay3ly5r53flh3v5jygqks0rg1i8qmbvrqf9nkmnmw6a5x1"; 7 + buildDepends = [ cryptoRandomApi vector ]; 8 + meta = { 9 + homepage = "http://github.com/vincenthz/hs-crypto-numbers"; 10 + description = "Cryptographic numbers: functions and algorithms"; 11 + license = self.stdenv.lib.licenses.bsd3; 12 + platforms = self.ghc.meta.platforms; 13 + }; 14 + })
+18
pkgs/development/libraries/haskell/crypto-pubkey/default.nix
··· 1 + { cabal, cryptohash, cryptoNumbers, cryptoPubkeyTypes 2 + , cryptoRandomApi 3 + }: 4 + 5 + cabal.mkDerivation (self: { 6 + pname = "crypto-pubkey"; 7 + version = "0.1.2"; 8 + sha256 = "1law5l7j0r0v89dnibmaipjp0yshffq10xs4rvg2j247v29lhns5"; 9 + buildDepends = [ 10 + cryptohash cryptoNumbers cryptoPubkeyTypes cryptoRandomApi 11 + ]; 12 + meta = { 13 + homepage = "http://github.com/vincenthz/hs-crypto-pubkey"; 14 + description = "Public Key cryptography"; 15 + license = self.stdenv.lib.licenses.bsd3; 16 + platforms = self.ghc.meta.platforms; 17 + }; 18 + })
+7 -6
pkgs/development/libraries/haskell/cryptocipher/default.nix
··· 1 - { cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive 2 - , tagged, vector 1 + { cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi 2 + , cryptoPubkeyTypes, primitive, tagged, vector 3 3 }: 4 4 5 5 cabal.mkDerivation (self: { 6 6 pname = "cryptocipher"; 7 - version = "0.3.7"; 8 - sha256 = "14qhi3969q1h9n85flb7wwsr50gdn63q7pmcpm2npy5vkp34lkp5"; 7 + version = "0.4.0"; 8 + sha256 = "1qbnhzbzypin7h62sn2sibij7clsgmaiq24q3xhgbjrirb6bhqf0"; 9 9 isLibrary = true; 10 10 isExecutable = true; 11 11 buildDepends = [ 12 - cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector 12 + cereal cipherAes cipherRc4 cpu cryptoApi cryptoPubkeyTypes 13 + primitive tagged vector 13 14 ]; 14 15 meta = { 15 16 homepage = "http://github.com/vincenthz/hs-cryptocipher"; 16 - description = "Symmetrical Block, Stream and PubKey Ciphers"; 17 + description = "Symmetrical block and stream ciphers"; 17 18 license = self.stdenv.lib.licenses.bsd3; 18 19 platforms = self.ghc.meta.platforms; 19 20 maintainers = [ self.stdenv.lib.maintainers.andres ];
+2 -3
pkgs/development/libraries/haskell/gitit/default.nix
··· 7 7 8 8 cabal.mkDerivation (self: { 9 9 pname = "gitit"; 10 - version = "0.10.1.1"; 11 - sha256 = "1akrc362cf3fzfjyyf1g8bzna093kwsiyxdfpz0d9wd3z6jyc8cg"; 10 + version = "0.10.1.2"; 11 + sha256 = "1dy1wdnld6cxx5xqfszywi4f7xv143ar2dq4nb0dnd1dgd5hgmak"; 12 12 isLibrary = true; 13 13 isExecutable = true; 14 14 buildDepends = [ ··· 18 18 safe SHA syb tagsoup text time url utf8String xhtml xml xssSanitize 19 19 zlib 20 20 ]; 21 - jailbreak = true; 22 21 meta = { 23 22 homepage = "http://gitit.net"; 24 23 description = "Wiki using happstack, git or darcs, and pandoc";
+11 -8
pkgs/development/libraries/haskell/hakyll/default.nix
··· 1 - { cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash 2 - , filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase 3 - , regexTdfa, snapCore, snapServer, tagsoup, text, time 1 + { cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs 2 + , cryptohash, deepseq, filepath, httpConduit, httpTypes, lrucache 3 + , mtl, pandoc, parsec, random, regexBase, regexTdfa, snapCore 4 + , snapServer, tagsoup, text, time 4 5 }: 5 6 6 7 cabal.mkDerivation (self: { 7 8 pname = "hakyll"; 8 - version = "3.5.2.1"; 9 - sha256 = "1fp7jak2sfznvg3lfyjqy13m1iq9821mdq6n5qmqz5dh5b960iv4"; 9 + version = "4.0.0.0"; 10 + sha256 = "165r9x158nnnwzd1cxymskkxvfhxsnpam8bi3gjy8bql8arsibzr"; 11 + isLibrary = true; 12 + isExecutable = true; 10 13 buildDepends = [ 11 - binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet 12 - lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer 13 - tagsoup text time 14 + binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq 15 + filepath httpConduit httpTypes lrucache mtl pandoc parsec random 16 + regexBase regexTdfa snapCore snapServer tagsoup text time 14 17 ]; 15 18 meta = { 16 19 homepage = "http://jaspervdj.be/hakyll";
+2 -2
pkgs/development/libraries/haskell/hashable/1.2.0.3.nix pkgs/development/libraries/haskell/hashable/1.2.0.5.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "hashable"; 5 - version = "1.2.0.3"; 6 - sha256 = "0q4zl2mry6qfp9vln6pxmgqik7szv1sh7if55gydnxln1ybvvgmp"; 5 + version = "1.2.0.5"; 6 + sha256 = "0frqr294bsx4i21xxd5pw59xpaf0nww0dh4bqn0ywblsm9c7nyqh"; 7 7 buildDepends = [ text ]; 8 8 meta = { 9 9 homepage = "http://github.com/tibbe/hashable";
+2 -2
pkgs/development/libraries/haskell/http-conduit/default.nix
··· 8 8 9 9 cabal.mkDerivation (self: { 10 10 pname = "http-conduit"; 11 - version = "1.8.6.2"; 12 - sha256 = "0b9iw8gq0kyfmnpv1jba2dx8rik9136zx5q9xdyvy0lczdgb8i09"; 11 + version = "1.8.6.3"; 12 + sha256 = "0ykwfii3qcj77ai0jafgbf5017mckz51gmbk3m8kwm1z6dalb27r"; 13 13 buildDepends = [ 14 14 asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder 15 15 blazeBuilderConduit caseInsensitive certificate conduit cookie
+2 -2
pkgs/development/libraries/haskell/libmpd/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "libmpd"; 5 - version = "0.8.0.1"; 6 - sha256 = "16j2c0dnwllsb979gqf1cl4ylvpldcj8k32ddpp4wf62lbb1mqxm"; 5 + version = "0.8.0.2"; 6 + sha256 = "1phlbb5lsapw2hb0db7906ddlmvnpyk1xbgxvl9zp9zfd0sn40aj"; 7 7 buildDepends = [ filepath mtl network text time utf8String ]; 8 8 meta = { 9 9 homepage = "http://github.com/joachifm/libmpd-haskell";
+2 -2
pkgs/development/libraries/haskell/mime-types/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "mime-types"; 5 - version = "0.1.0.1"; 6 - sha256 = "1a34ckmv8qcyk38jydxwph59zcrhnwaah1h6pzn112kysjqjgcsl"; 5 + version = "0.1.0.2"; 6 + sha256 = "1pkhr8k23386qwa1wmlrcilz75di2l8n5kc4n8pnia05p49akfcs"; 7 7 buildDepends = [ text ]; 8 8 meta = { 9 9 homepage = "https://github.com/yesodweb/wai";
+2 -2
pkgs/development/libraries/haskell/network/2.4.0.1.nix pkgs/development/libraries/haskell/network/2.4.1.0.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "network"; 5 - version = "2.4.0.1"; 6 - sha256 = "00jj3pf2gchkx5wmipm2ijxcmhy37g86ggnp6pb92i5nmb93h1iw"; 5 + version = "2.4.1.0"; 6 + sha256 = "0m44iqlcnpsaa3iqxb4wbx2l1k2ycxzq8v07bwz7br7yyikv16y3"; 7 7 buildDepends = [ parsec ]; 8 8 meta = { 9 9 homepage = "https://github.com/haskell/network";
+2 -2
pkgs/development/libraries/haskell/persistent/default.nix
··· 6 6 7 7 cabal.mkDerivation (self: { 8 8 pname = "persistent"; 9 - version = "1.1.3.2"; 10 - sha256 = "1q8p5nxsf9fjhsyy1lha852f7vssp9mz6l24gg47mgv6y5mm9myv"; 9 + version = "1.1.4"; 10 + sha256 = "1frxhyyp8l5xvq5h9zf730c7kpnrryw2mw8mpnav2bs5g6rmmrgj"; 11 11 buildDepends = [ 12 12 aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit 13 13 liftedBase monadControl monadLogger pathPieces poolConduit
+2 -2
pkgs/development/libraries/haskell/reactive-banana/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "reactive-banana"; 5 - version = "0.7.1.0"; 6 - sha256 = "0diklfkc4fq05g5fhgcdkx8y0vmq26zfnmfkj95yvmwks8p9k22r"; 5 + version = "0.7.1.1"; 6 + sha256 = "0d4dqpzglzkygy2hhn1j1c7vk2782mk66f8aqaadkyhijn7kc6i5"; 7 7 buildDepends = [ hashable transformers unorderedContainers vault ]; 8 8 meta = { 9 9 homepage = "http://haskell.org/haskellwiki/Reactive-banana";
+2 -2
pkgs/development/libraries/haskell/system-fileio/default.nix
··· 2 2 3 3 cabal.mkDerivation (self: { 4 4 pname = "system-fileio"; 5 - version = "0.3.10"; 6 - sha256 = "1f8si6m62nxzj71jgyhxl38szmw8wr3frvgih596vfjxwdhqpkq4"; 5 + version = "0.3.11"; 6 + sha256 = "0hnjrzhzbqx9l93c8dnl5b54f72ki584cn3jh8m6z56x2lrs24zb"; 7 7 buildDepends = [ systemFilepath text time ]; 8 8 meta = { 9 9 homepage = "https://john-millikin.com/software/haskell-filesystem/";
+7 -6
pkgs/development/libraries/haskell/tls-extra/default.nix
··· 1 - { cabal, certificate, cipherAes, cryptoApi, cryptocipher 2 - , cryptohash, mtl, network, pem, text, time, tls, vector 1 + { cabal, certificate, cipherAes, cipherRc4, cryptohash 2 + , cryptoPubkey, cryptoRandomApi, mtl, network, pem, text, time, tls 3 + , vector 3 4 }: 4 5 5 6 cabal.mkDerivation (self: { 6 7 pname = "tls-extra"; 7 - version = "0.5.1"; 8 - sha256 = "0a977qy6ig4bhgsl6y5iw0xv52yswmcc2x37ypm1601wikjv38x3"; 8 + version = "0.6.0"; 9 + sha256 = "11cf91cgbyp4xzbr3n9h20rvbb6756r9dk74r5w158f3xmlgk5nx"; 9 10 isLibrary = true; 10 11 isExecutable = true; 11 12 buildDepends = [ 12 - certificate cipherAes cryptoApi cryptocipher cryptohash mtl network 13 - pem text time tls vector 13 + certificate cipherAes cipherRc4 cryptohash cryptoPubkey 14 + cryptoRandomApi mtl network pem text time tls vector 14 15 ]; 15 16 meta = { 16 17 homepage = "http://github.com/vincenthz/hs-tls";
+6 -8
pkgs/development/libraries/haskell/tls/default.nix
··· 1 - { cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash 2 - , mtl, network 1 + { cabal, cereal, certificate, cryptohash, cryptoPubkey 2 + , cryptoRandomApi, mtl, network 3 3 }: 4 4 5 5 cabal.mkDerivation (self: { 6 6 pname = "tls"; 7 - version = "1.0.3"; 8 - sha256 = "14wgwz032skkgkxg2lyh8kwg1fkapmlg2jh74czbacvnssc2iidb"; 9 - isLibrary = true; 10 - isExecutable = true; 7 + version = "1.1.1"; 8 + sha256 = "0ji83b5z3v6f6a6rgyj5xkjh9vvsqckr7ymzjnhb4zqf0mgymypq"; 11 9 buildDepends = [ 12 - cereal certificate cryptoApi cryptocipher cryptohash mtl network 10 + cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl 11 + network 13 12 ]; 14 - jailbreak = true; 15 13 meta = { 16 14 homepage = "http://github.com/vincenthz/hs-tls"; 17 15 description = "TLS/SSL protocol native implementation (Server and Client)";
+2 -2
pkgs/development/libraries/haskell/wai-extra/default.nix
··· 6 6 7 7 cabal.mkDerivation (self: { 8 8 pname = "wai-extra"; 9 - version = "1.3.1.1"; 10 - sha256 = "0590i9zs47fxqlz4l7zrk15x4s1rvzvp0fs1caygr5hw32v8h0by"; 9 + version = "1.3.2"; 10 + sha256 = "1089sfb4jyi17rw6nivpy96gbc90nyawr35jzwlzl41gzxxmv503"; 11 11 buildDepends = [ 12 12 ansiTerminal blazeBuilder blazeBuilderConduit caseInsensitive 13 13 conduit dataDefault dateCache fastLogger httpTypes network
+2 -2
pkgs/development/libraries/haskell/warp/default.nix
··· 5 5 6 6 cabal.mkDerivation (self: { 7 7 pname = "warp"; 8 - version = "1.3.7"; 9 - sha256 = "06648wqiwlcsvd41qdqdbgn1zcq890iq39zsxi24vf4s8q7jnzyf"; 8 + version = "1.3.7.1"; 9 + sha256 = "0kabcxzjc686iayhxln2cmnxm3vk3h0685n4d4ybprv5h1nc6ghl"; 10 10 buildDepends = [ 11 11 blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable 12 12 httpTypes liftedBase network networkConduit simpleSendfile
+1 -1
pkgs/development/libraries/hunspell/default.nix
··· 4 4 name = "hunspell-1.3.2"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sf/hunspell/${name}.tar.gz"; 7 + url = "mirror://sourceforge/hunspell/${name}.tar.gz"; 8 8 sha256 = "1gfxdajnqk2civkshkfjx5ldg7kjdgj76m5khpsbjk4lxsjd9vdl"; 9 9 }; 10 10
+1 -1
pkgs/development/libraries/indilib/default.nix
··· 4 4 name = "indilib-0.8"; 5 5 6 6 src = fetchurl { 7 - url = mirror://sf/indi/libindi_0.8.tar.gz; 7 + url = mirror://sourceforge/indi/libindi_0.8.tar.gz; 8 8 sha256 = "d5ed14a5de6fd6e5db15463ada96c2b15b53e84a1ffe199b76f70128493f2a65"; 9 9 }; 10 10
+5 -4
pkgs/development/libraries/iso-codes/default.nix
··· 1 - {stdenv, fetchurl, gettext, python}: 1 + {stdenv, fetchurl, gettext, python, xz}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "iso-codes-3.23"; 4 + name = "iso-codes-3.40"; 5 5 src = fetchurl { 6 - url = "ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${name}.tar.bz2"; 7 - sha256 = "0lf9phrdr10biihqswq1qmwk5cz954nwavgbnpm7a5r6vzfzkfbq"; 6 + url = "http://pkg-isocodes.alioth.debian.org/downloads/${name}.tar.xz"; 7 + sha256 = "0iph96n8vh4khidxg2zzhmcqnphfzg50agn0lv9cjhmnx0i712pr"; 8 8 }; 9 9 patchPhase = '' 10 10 for i in `find . -name \*.py` ··· 13 13 done 14 14 ''; 15 15 buildInputs = [ gettext ]; 16 + nativeBuildInputs = [ xz ]; 16 17 17 18 meta = { 18 19 homepage = http://pkg-isocodes.alioth.debian.org/;
+1 -1
pkgs/development/libraries/libnova/default.nix
··· 4 4 name = "libnova-0.12.1"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sf/libnova/${name}.tar.gz"; 7 + url = "mirror://sourceforge/libnova/${name}.tar.gz"; 8 8 sha256 = "0bs6c45q4qkrns36qndl8vns5gvhgpd90hi68bhah4r4hrg48lw0"; 9 9 }; 10 10
+1 -1
pkgs/development/libraries/libqalculate/default.nix
··· 4 4 name = "libqalculate-0.9.7"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sf/qalculate/${name}.tar.gz"; 7 + url = "mirror://sourceforge/qalculate/${name}.tar.gz"; 8 8 sha256 = "0mbrc021dk0ayyglk4qyf9328cayrlz2q94lh8sh9l9r6g79fvcs"; 9 9 }; 10 10
+1 -1
pkgs/development/libraries/libxklavier/default.nix
··· 5 5 name = "libxklavier-5.0"; 6 6 7 7 src = fetchurl { 8 - url = "mirror://sf/gswitchit/${name}.tar.bz2"; 8 + url = "mirror://sourceforge/gswitchit/${name}.tar.bz2"; 9 9 sha256 = "1c2dxinjfpq1lzxi0z46r0j80crbmwb0lkvnh6987cjjlwblpnfz"; 10 10 }; 11 11
+3 -2
pkgs/development/libraries/nss/default.nix
··· 13 13 secLoadPatch = fetchurl { 14 14 name = "security_load.patch"; 15 15 urls = [ 16 - "http://patch-tracker.debian.org/patch/series/dl/nss/2:3.13.6-1/85_security_load.patch" 17 - "http://anonscm.debian.org/gitweb/?p=pkg-mozilla/nss.git;a=blob_plain;f=debian/patches/85_security_load.patch;hb=HEAD" 16 + # "http://patch-tracker.debian.org/patch/series/dl/nss/2:3.13.6-1/85_security_load.patch" 17 + # "http://anonscm.debian.org/gitweb/?p=pkg-mozilla/nss.git;a=blob_plain;f=debian/patches/85_security_load.patch;hb=HEAD" 18 + "http://www.parsix.org/export/7797/pkg/security/raul/main/nss/trunk/debian/patches/85_security_load.patch" 18 19 ]; 19 20 sha256 = "8a8d0ae4ebbd7c389973fa5d26d8bc5f473046c6cb1d8283cb9a3c1f4c565c47"; 20 21 };
+1 -1
pkgs/development/libraries/qimageblitz/default.nix
··· 9 9 name = "${pn}-${v}"; 10 10 11 11 src = fetchurl { 12 - url = "mirror://sf/${pn}/${pn}-${v}.tar.bz2"; 12 + url = "mirror://sourceforge/${pn}/${pn}-${v}.tar.bz2"; 13 13 sha256 = "0pnaf3qi7rgkxzs2mssmslb3f9ya4cyx09wzwlis3ppyvf72j0p9"; 14 14 }; 15 15
+1 -1
pkgs/development/libraries/qjson/default.nix
··· 4 4 name = "qjson-0.7.1"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sf/qjson/${name}.tar.bz2"; 7 + url = "mirror://sourceforge/qjson/${name}.tar.bz2"; 8 8 sha256 = "155r7nypgnsvjc6w3q51zmjchpqxi4c3azad9cf1fip8bws993iv"; 9 9 }; 10 10
+1 -1
pkgs/development/libraries/science/math/atlas/default.nix
··· 8 8 name = "atlas-3.9.67"; 9 9 10 10 src = fetchurl { 11 - url = mirror://sf/math-atlas/atlas3.9.67.tar.bz2; 11 + url = mirror://sourceforge/math-atlas/atlas3.9.67.tar.bz2; 12 12 sha256 = "06xxlv440z8a3qmfrh17p28girv71c6awvpw5vhpspr0pcsgk1pa"; 13 13 }; 14 14
+22
pkgs/development/libraries/tsocks/default.nix
··· 1 + { stdenv, fetchurl }: 2 + stdenv.mkDerivation rec { 3 + name = "tsocks-${version}"; 4 + version = "1.8beta5"; 5 + 6 + src = fetchurl { 7 + url = "mirror://sourceforge/tsocks/${name}.tar.gz"; 8 + sha256 = "0ixkymiph771dcdzvssi9dr2pk1bzaw9zv85riv3xl40mzspx7c4"; 9 + }; 10 + 11 + preConfigure = '' 12 + export configureFlags="$configureFlags --libdir=$out/lib" 13 + ''; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Transparent SOCKS v4 proxying library"; 17 + homepage = http://tsocks.sourceforge.net/; 18 + license = "GPLv2"; 19 + maintainers = [ maintainers.phreedom ]; 20 + platforms = platforms.linux; 21 + }; 22 + }
+36 -5
pkgs/development/mobile/titaniumenv/build-app.nix
··· 1 1 {stdenv, androidsdk, titaniumsdk, xcodewrapper}: 2 2 { appId, name, src, target, androidPlatformVersions ? [ "8" ] 3 3 , release ? false, androidKeyStore ? null, androidKeyAlias ? null, androidKeyStorePassword ? null 4 - , iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null 4 + , iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null, iosDistribute ? false 5 5 }: 6 6 7 7 assert (release && target == "android") -> androidKeyStore != null && androidKeyAlias != null && androidKeyStorePassword != null; ··· 12 12 platformVersions = androidPlatformVersions; 13 13 useGoogleAPIs = true; 14 14 }; 15 + 16 + deleteKeychain = "security delete-keychain $keychainName"; 15 17 in 16 18 stdenv.mkDerivation { 17 19 inherit name src; ··· 30 32 "${titaniumsdk}/mobilesdk/*/*/android/builder.py build ${name} ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId}" 31 33 32 34 else if target == "iphone" then 33 - if release then 34 - '' 35 + if iosDistribute then '' 35 36 export HOME=/Users/$(whoami) 36 37 export keychainName=$(basename $out) 37 38 ··· 51 52 cp ${iosKeyFile} "$HOME/Library/MobileDevice/Provisioning Profiles/$provisioningId.mobileprovision" 52 53 fi 53 54 54 - ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py adhoc 6.0 $(pwd) ${appId} ${name} "$provisioningId" "${iosCertificateName}" universal "$HOME/Library/Keychains/$keychainName" 55 + ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py distribute 6.0 $(pwd) ${appId} ${name} "$provisioningId" "${iosCertificateName}" $out universal "$HOME/Library/Keychains/$keychainName" 55 56 56 57 # Remove our generated keychain 57 58 58 - security delete-keychain $keychainName 59 + ${deleteKeychain} 60 + '' 61 + else 62 + if release then 63 + '' 64 + export HOME=/Users/$(whoami) 65 + export keychainName=$(basename $out) 66 + 67 + # Create a keychain with the component hash name (should always be unique) 68 + security create-keychain -p "" $keychainName 69 + security default-keychain -s $keychainName 70 + security unlock-keychain -p "" $keychainName 71 + security import ${iosCertificate} -k $keychainName -P "${iosCertificatePassword}" -A 72 + 73 + provisioningId=$(grep UUID -A1 -a ${iosKeyFile} | grep -o "[-A-Z0-9]\{36\}") 74 + 75 + # Ensure that the requested provisioning profile can be found 76 + 77 + if [ ! -f "$HOME/Library/MobileDevice/Provisioning Profiles" ] 78 + then 79 + mkdir -p "$HOME/Library/MobileDevice/Provisioning Profiles" 80 + cp ${iosKeyFile} "$HOME/Library/MobileDevice/Provisioning Profiles/$provisioningId.mobileprovision" 81 + fi 82 + 83 + ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py adhoc 6.0 $(pwd) ${appId} ${name} "$provisioningId" "${iosCertificateName}" universal "$HOME/Library/Keychains/$keychainName" 84 + 85 + # Remove our generated keychain 86 + 87 + ${deleteKeychain} 59 88 '' 60 89 else 61 90 '' ··· 84 113 else if target == "iphone" then "" 85 114 else throw "Target: ${target} is not supported!"} 86 115 ''; 116 + 117 + failureHook = stdenv.lib.optionalString (release && target == "iphone") deleteKeychain; 87 118 }
+3
pkgs/development/mobile/titaniumenv/titaniumsdk.nix
··· 53 53 --prefix PYTHONPATH : ${python.modules.sqlite3}/lib/python*/site-packages \ 54 54 --prefix PATH : ${jdk}/bin \ 55 55 --prefix JAVA_HOME : ${jdk} 56 + '' + stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") '' 57 + # 'ditto' utility is needed to copy stuff to the Xcode organizer. Dirty, but this allows it to work. 58 + sed -i -e "s|ditto|/usr/bin/ditto|g" $out/mobilesdk/osx/*/iphone/builder.py 56 59 ''; 57 60 }
+12
pkgs/development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch
··· 1 + diff -Naur Google-ProtocolBuffers-0.08-orig/lib/Google/ProtocolBuffers/Compiler.pm Google-ProtocolBuffers-0.08/lib/Google/ProtocolBuffers/Compiler.pm 2 + --- Google-ProtocolBuffers-0.08-orig/lib/Google/ProtocolBuffers/Compiler.pm 2008-10-23 13:46:01.000000000 -0400 3 + +++ Google-ProtocolBuffers-0.08/lib/Google/ProtocolBuffers/Compiler.pm 2013-01-16 13:52:09.855063997 -0500 4 + @@ -16,7 +16,7 @@ 5 + 6 + my $grammar = <<'END_OF_GRAMMAR'; 7 + 8 + -proto : <skip: qr! (?: //.*\n | \s+ )* !x> 9 + +proto : <skip: qr! (?: //.*?\n | \s+ | /\*.*?\*/\s* )* !xs> 10 + ## list of top level declarations. 11 + ## Skip empty declarations and ";". 12 + (message | extend | enum | import | package | option | service | syntax | ";")(s) /\Z/
+6 -10
pkgs/development/python-modules/generic/default.nix
··· 3 3 (http://pypi.python.org/pypi/setuptools/), which represents a large 4 4 number of Python packages nowadays. */ 5 5 6 - { python, setuptools, wrapPython, lib, offlineDistutils, setuptoolsSite }: 6 + { python, setuptools, wrapPython, lib, offlineDistutils, recursivePthLoader }: 7 7 8 8 { name, namePrefix ? "python-" 9 9 ··· 23 23 '' 24 24 easy_install --always-unzip --prefix="$out" . 25 25 '' 26 - 26 + 27 27 , preConfigure ? "true" 28 28 29 29 , buildPhase ? "true" ··· 48 48 49 49 name = namePrefix + name; 50 50 51 + # checkPhase after installPhase to run tests on installed packages 51 52 phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase"; 52 53 53 54 buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath; 54 55 55 - # setuptoolsSite is responsible for loading pth files 56 - propagatedBuildInputs = propagatedBuildInputs ++ [ setuptoolsSite ]; 57 - 58 - buildInputStrings = map toString buildInputs; 56 + propagatedBuildInputs = propagatedBuildInputs ++ [ recursivePthLoader ]; 59 57 60 - pythonPath = [ setuptools] ++ pythonPath; 58 + pythonPath = [ setuptools ] ++ pythonPath; 61 59 62 60 preConfigure = '' 63 61 PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}/site-packages:$PYTHONPATH" ··· 83 81 # Remove any site.py files generated by easy_install as these 84 82 # cause collisions. If pth files are to be processed a 85 83 # corresponding site.py needs to be included in the PYTHONPATH. 86 - # 87 - # leave them until we have a better solution: see #209 88 - #rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py* 84 + rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py* 89 85 90 86 ${postInstall} 91 87 '';
+3
pkgs/development/python-modules/generic/wrap.sh
··· 51 51 local inputs="$2" 52 52 if [ foo"$inputs" != foo ]; then 53 53 for x in $inputs; do 54 + if $(echo -n $x |grep -q python-recursive-pth-loader); then 55 + continue 56 + fi 54 57 if test -d "$x"/lib/@libPrefix@/site-packages; then 55 58 echo $x/lib/@libPrefix@/site-packages \ 56 59 >> "$out"/lib/@libPrefix@/site-packages/${name}-nix-python-$category.pth
+2 -2
pkgs/development/python-modules/pycairo/default.nix
··· 1 - {stdenv, fetchurl, python, pkgconfig, cairo, x11}: 1 + { stdenv, fetchurl, python, pkgconfig, cairo, x11 }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "pycairo-1.8.8"; ··· 7 7 sha256 = "0q18hd4ai4raljlvd76ylgi30kxpr2qq83ka6gzwh0ya8fcmjlig"; 8 8 }; 9 9 10 - buildInputs = [python pkgconfig cairo x11]; 10 + buildInputs = [ python pkgconfig cairo x11 ]; 11 11 }
+5 -9
pkgs/development/python-modules/pygobject/default.nix
··· 12 12 13 13 buildInputs = [ python pkgconfig glib ]; 14 14 15 + # in a "normal" setup, pygobject and pygtk are installed into the 16 + # same site-packages: we need a pth file for both. pygtk.py would be 17 + # used to select a specific version, in our setup it should have no 18 + # effect, but we leave it in case somebody expects and calls it. 15 19 postInstall = '' 16 - # All python code is installed into a "gtk-2.0" sub-directory. That 17 - # sub-directory may be useful on systems which share several library 18 - # versions in the same prefix, i.e. /usr/local, but on Nix that directory 19 - # is useless. Furthermore, its existence makes it very hard to guess a 20 - # proper $PYTHONPATH that allows "import gtk" to succeed. 21 - cd $(toPythonPath $out)/gtk-2.0 22 - for n in *; do 23 - ln -s "gtk-2.0/$n" "../$n" 24 - done 20 + mv $out/lib/${python.libPrefix}/site-packages/{pygtk.pth,${name}.pth} 25 21 ''; 26 22 27 23 meta = {
+26 -17
pkgs/development/python-modules/pygtk/default.nix
··· 1 - { stdenv, fetchurl, makeWrapper, python, pkgconfig, glib, gtk, pygobject, pycairo 2 - , libglade ? null }: 1 + { stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo 2 + , buildPythonPackage, libglade ? null }: 3 3 4 - stdenv.mkDerivation rec { 4 + buildPythonPackage rec { 5 5 name = "pygtk-2.22.0"; 6 6 7 7 src = fetchurl { ··· 10 10 }; 11 11 12 12 buildInputs = 13 - [ makeWrapper python pkgconfig glib gtk ] 13 + [ pkgconfig glib gtk ] 14 14 ++ stdenv.lib.optional (libglade != null) libglade; 15 15 16 16 propagatedBuildInputs = [ pygobject pycairo ]; 17 17 18 + installCommand = "make install"; 19 + checkPhase = stdenv.lib.optionalString (libglade == null) 20 + '' 21 + sed -i -e "s/glade = importModule('gtk.glade', buildDir)//" \ 22 + tests/common.py 23 + sed -i -e "s/, glade$//" \ 24 + -e "s/.*testGlade.*//" \ 25 + -e "s/.*(glade.*//" \ 26 + tests/test_api.py 27 + '' + '' 28 + sed -i -e "s/sys.path.insert(0, os.path.join(buildDir, 'gtk'))//" \ 29 + -e "s/sys.path.insert(0, buildDir)//" \ 30 + tests/common.py 31 + make check 32 + ''; 33 + # XXX: TypeError: Unsupported type: <class 'gtk._gtk.WindowType'> 34 + # The check phase was not executed in the previous 35 + # non-buildPythonPackage setup - not sure why not. 36 + doCheck = false; 37 + 18 38 postInstall = '' 19 39 rm $out/bin/pygtk-codegen-2.0 20 40 ln -s ${pygobject}/bin/pygobject-codegen-2.0 $out/bin/pygtk-codegen-2.0 21 - 22 - # All python code is installed into a "gtk-2.0" sub-directory. That 23 - # sub-directory may be useful on systems which share several library 24 - # versions in the same prefix, i.e. /usr/local, but on Nix that directory 25 - # is useless. Furthermore, its existence makes it very hard to guess a 26 - # proper $PYTHONPATH that allows "import gtk" to succeed. 27 - cd $(toPythonPath $out)/gtk-2.0 28 - for n in *; do 29 - ln -s "gtk-2.0/$n" "../$n" 30 - done 31 - 32 - wrapProgram $out/bin/pygtk-demo --prefix PYTHONPATH ":" \ 33 - $(toPythonPath "${pygobject} ${pycairo} $out") 41 + ln -s ${pygobject}/lib/${python.libPrefix}/site-packages/${pygobject.name}.pth \ 42 + $out/lib/${python.libPrefix}/site-packages/${name}.pth 34 43 ''; 35 44 }
+1 -1
pkgs/development/python-modules/setuptools/default.nix
··· 1 1 { stdenv, fetchurl, python, wrapPython }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "setuptools-" + version; 4 + name = "python-setuptools-" + version; 5 5 6 6 version = "0.6c11"; 7 7
+15 -12
pkgs/development/python-modules/virtualenv-change-prefix.patch
··· 1 1 Without this patch `virtualenv --python=python2.7 .` fails with an error because it notices that the python readline.so is not in the same path as python2.7. I assume this is to avoid copying the wrong file on systems where it is possible to find incompatible libraries by accident. Adding "/nix/store" to the prefix fixes this problem. Unfortunately readline is still not available if you just run `virtualenv .`. 2 2 3 - 4 - --- virtualenv-1.6.4/virtualenv.py 2012-05-20 00:40:38.070649647 +0200 5 - +++ virtualenv-1.6.4/virtualenv.py 2012-05-20 00:45:10.596242604 +0200 6 - @@ -951,13 +951,7 @@ 3 + --- virtualenv-1.8.4/virtualenv.py 2013-01-16 23:43:37.583615220 +0100 4 + +++ virtualenv-1.8.4/virtualenv.py 2013-01-16 23:44:47.885973431 +0100 5 + @@ -1135,17 +1135,7 @@ 7 6 8 7 9 8 def change_prefix(filename, dst_prefix): 10 9 - prefixes = [sys.prefix] 11 10 - 12 - - if sys.platform == "darwin": 11 + - if is_darwin: 13 12 - prefixes.extend(( 14 13 - os.path.join("/Library/Python", sys.version[:3], "site-packages"), 15 14 - os.path.join(sys.prefix, "Extras", "lib", "python"), 16 - - os.path.join("~", "Library", "Python", sys.version[:3], "site-packages"))) 15 + - os.path.join("~", "Library", "Python", sys.version[:3], "site-packages"), 16 + - # Python 2.6 no-frameworks 17 + - os.path.join("~", ".local", "lib","python", sys.version[:3], "site-packages"), 18 + - # System Python 2.7 on OSX Mountain Lion 19 + - os.path.join("~", "Library", "Python", sys.version[:3], "lib", "python", "site-packages"))) 17 20 + prefixes = ["/nix/store", sys.prefix] 18 21 19 22 if hasattr(sys, 'real_prefix'): 20 23 prefixes.append(sys.real_prefix) 21 - @@ -968,6 +962,8 @@ 22 - _, relpath = filename.split(src_prefix, 1) 23 - assert relpath[0] == os.sep 24 - relpath = relpath[1:] 25 - + if src_prefix == "/nix/store": 26 - + relpath = "/".join(relpath.split("/")[1:]) 24 + @@ -1162,6 +1152,8 @@ 25 + if src_prefix != os.sep: # sys.prefix == "/" 26 + assert relpath[0] == os.sep 27 + relpath = relpath[1:] 28 + + if src_prefix == "/nix/store": 29 + + relpath = "/".join(relpath.split("/")[1:]) 27 30 return join(dst_prefix, relpath) 28 31 assert False, "Filename %s does not start with any of these prefixes: %s" % \ 29 32 (filename, prefixes)
+4 -4
pkgs/games/uqm/default.nix
··· 8 8 version = "0.7.0"; 9 9 10 10 src = fetchurl { 11 - url = "mirror://sf/sc2/uqm-${version}-source.tgz"; 11 + url = "mirror://sourceforge/sc2/uqm-${version}-source.tgz"; 12 12 sha256 = "a3695c5f7f0be7ec9c0f80ec569907b382023a1fee6e635532bd53b7b53bb221"; 13 13 }; 14 14 15 15 content = fetchurl { 16 - url = "mirror://sf/sc2/uqm-${version}-content.uqm"; 16 + url = "mirror://sourceforge/sc2/uqm-${version}-content.uqm"; 17 17 sha256 = "b8f6db8ba29f0628fb1d5c233830896b19f441aee3744bda671ea264b44da3bf"; 18 18 }; 19 19 20 20 voice = fetchurl { 21 - url = "mirror://sf/sc2/uqm-${version}-voice.uqm"; 21 + url = "mirror://sourceforge/sc2/uqm-${version}-voice.uqm"; 22 22 sha256 = "bcccf801b4ba37594ff6217b292744ea586ee2d447e927804842ccae8b73c979"; 23 23 }; 24 24 25 25 music = fetchurl { 26 - url = "mirror://sf/sc2/uqm-${version}-3domusic.uqm"; 26 + url = "mirror://sourceforge/sc2/uqm-${version}-3domusic.uqm"; 27 27 sha256 = "c57085e64dad4bddf8a679a9aa2adf63f2156d5f6cbabe63af80519033dbcb82"; 28 28 }; 29 29
-49
pkgs/misc/emulators/wine/wine-warcraft.nix
··· 1 - { stdenv, fetchgit, xlibs, flex, bison, mesa, alsaLib 2 - , ncurses, libpng, libjpeg, lcms, freetype, fontconfig, fontforge 3 - , libxml2, libxslt, openssl, gnutls 4 - }: 5 - 6 - assert stdenv.isLinux; 7 - assert stdenv.gcc.gcc != null; 8 - 9 - stdenv.mkDerivation rec { 10 - name = "wine-warcraft-${version}"; 11 - version = "1.1.19"; 12 - 13 - src = fetchgit { 14 - url = git://repo.or.cz/wine/warcraft3.git; 15 - rev = "38faaffd99331b71284d8da5f76f38625107ed6d"; 16 - }; 17 - 18 - buildInputs = [ 19 - xlibs.xlibs flex bison xlibs.libXi mesa 20 - xlibs.libXcursor xlibs.libXinerama xlibs.libXrandr 21 - xlibs.libXrender xlibs.libXxf86vm xlibs.libXcomposite 22 - xlibs.xf86vidmodeproto 23 - alsaLib ncurses libpng libjpeg lcms fontforge 24 - libxml2 libxslt openssl gnutls 25 - ]; 26 - 27 - # Wine locates a lot of libraries dynamically through dlopen(). Add 28 - # them to the RPATH so that the user doesn't have to set them in 29 - # LD_LIBRARY_PATH. 30 - NIX_LDFLAGS = map (path: "-rpath ${path}/lib ") [ 31 - freetype fontconfig stdenv.gcc.gcc mesa mesa.libdrm 32 - xlibs.libXinerama xlibs.libXrender xlibs.libXrandr 33 - xlibs.libXcursor xlibs.libXcomposite xlibs.libXxf86vm 34 - xlibs.xf86vidmodeproto 35 - openssl gnutls 36 - ]; 37 - 38 - # Don't shrink the ELF RPATHs in order to keep the extra RPATH 39 - # elements specified above. 40 - dontPatchELF = true; 41 - 42 - meta = with stdenv.lib; { 43 - homepage = "http://www.winehq.org/"; 44 - license = "LGPL"; 45 - description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix with patches for Warcraft 3"; 46 - maintainers = [ maintainers.phreedom ]; 47 - platforms = [ "i686-linux" ]; 48 - }; 49 - }
+6 -5
pkgs/os-specific/linux/acpi/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "acpi-1.5"; 5 - 4 + name = "acpi-${version}"; 5 + version = "1.6"; 6 + 6 7 src = fetchurl { 7 - url = "http://ftp.de.debian.org/debian/pool/main/a/acpi/acpi_1.5.orig.tar.gz"; 8 - sha256 = "1pb020j627ldjm1askqfzp6cjxrs79ail8svihanv7pgbg5r3zsp"; 8 + url = "mirror://sourceforge/acpiclient/${version}/${name}.tar.gz"; 9 + sha256 = "0cawznhkzb51yxa599d1xkw05nklmjrrmd79vmjkkzf4002d4qgd"; 9 10 }; 10 11 11 12 meta = { ··· 15 16 the "old" `apm' command on ACPI systems. It includes 16 17 battery and thermal information. 17 18 ''; 18 - homepage = http://grahame.angrygoats.net/acpi.shtml; 19 + homepage = http://sourceforge.net/projects/acpiclient/; 19 20 license = "GPLv2+"; 20 21 }; 21 22 }
+1 -1
pkgs/os-specific/linux/cpufrequtils/default.nix
··· 6 6 name = "cpufrequtils-008"; 7 7 8 8 src = fetchurl { 9 - url = "mirror://kernel/linux/utils/kernel/cpufreq/cpufrequtils-008.tar.gz"; 9 + url = http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-008.tar.gz; 10 10 md5 = "52d3e09e47ffef634833f7fab168eccf"; 11 11 }; 12 12
+3 -2
pkgs/os-specific/linux/firmware/iwlwifi-1000-ucode/default.nix
··· 4 4 name = "iwlwifi-1000-ucode-128.50.3.1"; 5 5 6 6 src = fetchurl { 7 - url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz"; 7 + url = "http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFile&do=get&target=${name}.tgz"; 8 + name = "${name}.tgz"; 8 9 sha256 = "7e81ddad18acec19364c9df22496e8afae99a2e1490b2b178e420b52d443728d"; 9 10 }; 10 11 ··· 26 27 driver found in recent kernels. 27 28 ''; 28 29 29 - homepage = http://intellinuxwireless.org/; 30 + homepage = http://wireless.kernel.org/en/users/Drivers/iwlwifi; 30 31 }; 31 32 }
+3 -2
pkgs/os-specific/linux/firmware/iwlwifi-5150-ucode/default.nix
··· 4 4 name = "iwlwifi-5150-ucode-8.24.2.2"; 5 5 6 6 src = fetchurl { 7 - url = "http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5150-ucode-8.24.2.2.tgz"; 7 + url = "http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFile&do=get&target=${name}.tgz"; 8 + name = "${name}.tgz"; 8 9 sha256 = "d253e6ff6624639aded67c82df98b2bc4a66eb66400848d5614921d513540cf9"; 9 10 }; 10 11 ··· 24 25 firmware. It contains the `iwlwifi-5150-2.ucode' file. 25 26 ''; 26 27 27 - homepage = http://intellinuxwireless.org/; 28 + homepage = http://wireless.kernel.org/en/users/Drivers/iwlwifi; 28 29 }; 29 30 }
+3 -2
pkgs/os-specific/linux/firmware/iwlwifi-6000-ucode/default.nix
··· 4 4 name = "iwlwifi-6000-ucode-9.221.4.1"; 5 5 6 6 src = fetchurl { 7 - url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz"; 7 + url = "http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFile&do=get&target=${name}.tgz"; 8 + name = "${name}.tgz"; 8 9 sha256 = "7f04623231663dc4ee63df32fd890bfa9514dce1fab9dc7a25fda90350da836b"; 9 10 }; 10 11 ··· 24 25 firmware. It contains the `iwlwifi-6000-4.ucode' file. 25 26 ''; 26 27 27 - homepage = http://intellinuxwireless.org/; 28 + homepage = http://wireless.kernel.org/en/users/Drivers/iwlwifi; 28 29 }; 29 30 }
+3 -2
pkgs/os-specific/linux/firmware/iwlwifi-6000g2a-ucode/default.nix
··· 4 4 name = "iwlwifi-6000g2a-ucode-18.168.6.1"; 5 5 6 6 src = fetchurl { 7 - url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz"; 7 + url = "http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFile&do=get&target=${name}.tgz"; 8 + name = "${name}.tgz"; 8 9 sha256 = "a7f2615756addafbf3e6912cb0265f9650b2807d1ccdf54b620735772725bbe9"; 9 10 }; 10 11 ··· 17 18 ''; 18 19 19 20 meta = { 20 - homepage = "http://intellinuxwireless.org/"; 21 + homepage = http://wireless.kernel.org/en/users/Drivers/iwlwifi; 21 22 description = "Firmware for the Intel 6000 Series Gen2 wireless card"; 22 23 23 24 longDescription = ''
+3 -2
pkgs/os-specific/linux/firmware/iwlwifi-6000g2b-ucode/default.nix
··· 4 4 name = "iwlwifi-6000g2b-ucode-17.168.5.2"; 5 5 6 6 src = fetchurl { 7 - url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz"; 7 + url = "http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFile&do=get&target=${name}.tgz"; 8 + name = "${name}.tgz"; 8 9 sha256 = "5e4afdf070bfef549e50e62187f22dc2e40f5d9fe8b9a77561f8f3efb0d1d052"; 9 10 }; 10 11 ··· 24 25 firmware. It contains the `iwlwifi-6000g2b-4.ucode' file. 25 26 ''; 26 27 27 - homepage = http://intellinuxwireless.org/; 28 + homepage = http://wireless.kernel.org/en/users/Drivers/iwlwifi; 28 29 }; 29 30 }
+2 -2
pkgs/os-specific/linux/kernel/linux-3.0.nix
··· 230 230 import ./generic.nix ( 231 231 232 232 rec { 233 - version = "3.0.57"; 233 + version = "3.0.58"; 234 234 235 235 preConfigure = '' 236 236 substituteInPlace scripts/depmod.sh --replace '-b "$INSTALL_MOD_PATH"' "" ··· 238 238 239 239 src = fetchurl { 240 240 url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; 241 - sha256 = "12rf48ymwsgr133d6cydsajjxb3zihrcrfhpdv185x07dbri9nbl"; 241 + sha256 = "10ahi60ass970vjlhnzcf0y5fk3g7ck1a1lnwzy0kkywp6nb2c10"; 242 242 }; 243 243 244 244 config = configWithPlatform stdenv.platform;
+2 -2
pkgs/os-specific/linux/kernel/linux-3.4.nix
··· 239 239 import ./generic.nix ( 240 240 241 241 rec { 242 - version = "3.4.24"; 242 + version = "3.4.25"; 243 243 testing = false; 244 244 245 245 preConfigure = '' ··· 248 248 249 249 src = fetchurl { 250 250 url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; 251 - sha256 = "1vxyb68ckzgm88jj7xzmwr2hmj5vdry5irvfr89klgqr95mmhkd1"; 251 + sha256 = "0jlnrjxyyfw2f87mr9y8c4337yfbnrj5jp3vhm33dwy7i3vdpfs6"; 252 252 }; 253 253 254 254 config = configWithPlatform stdenv.platform;
+2 -2
pkgs/os-specific/linux/kernel/linux-3.7.nix
··· 245 245 import ./generic.nix ( 246 246 247 247 rec { 248 - version = "3.7.1"; 248 + version = "3.7.2"; 249 249 testing = false; 250 250 251 251 preConfigure = '' ··· 254 254 255 255 src = fetchurl { 256 256 url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; 257 - sha256 = "0mbjvrr0658gg052hbf32vfcmlzfsr777wgmaxrpkpzbfs1qpjp1"; 257 + sha256 = "09s1z2z15xnnqm2syr76l7s3s14zzsalifnnfmry52ibizllzh04"; 258 258 }; 259 259 260 260 config = configWithPlatform stdenv.platform;
+1 -1
pkgs/os-specific/linux/module-init-tools/default.nix
··· 5 5 6 6 src = [ 7 7 (fetchurl { 8 - url = mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.16.tar.bz2; 8 + url = http://ftp.be.debian.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-3.16.tar.bz2; 9 9 sha256 = "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"; 10 10 }) 11 11
-27
pkgs/os-specific/linux/nvidia-x11/acpixf.patch
··· 1 - diff -pur 96.43.20/conftest.sh 96.43.20-3.4/conftest.sh 2 - --- 96.43.20/conftest.sh 2011-07-18 10:51:11.000000000 +0400 3 - +++ 96.43.20-3.4/conftest.sh 2012-06-16 00:04:22.870746239 +0400 4 - @@ -908,6 +908,7 @@ compile_test() { 5 - # 6 - echo "$CONFTEST_PREAMBLE 7 - #include <acpi/acpi.h> 8 - + #include <acpi/acpixf.h> 9 - void conftest_acpi_walk_namespace(void) { 10 - acpi_walk_namespace(); 11 - }" > conftest$$.c 12 - @@ -923,6 +924,7 @@ compile_test() { 13 - 14 - echo "$CONFTEST_PREAMBLE 15 - #include <acpi/acpi.h> 16 - + #include <acpi/acpixf.h> 17 - void conftest_acpi_walk_namespace(void) { 18 - acpi_walk_namespace(0, NULL, 0, NULL, NULL, NULL, NULL); 19 - }" > conftest$$.c 20 - @@ -939,6 +941,7 @@ compile_test() { 21 - 22 - echo "$CONFTEST_PREAMBLE 23 - #include <acpi/acpi.h> 24 - + #include <acpi/acpixf.h> 25 - void conftest_acpi_walk_namespace(void) { 26 - acpi_walk_namespace(0, NULL, 0, NULL, NULL, NULL); 27 - }" > conftest$$.c
+101
pkgs/os-specific/linux/nvidia-x11/builder-legacy304.sh
··· 1 + source $stdenv/setup 2 + 3 + dontPatchELF=1 # must keep libXv, $out in RPATH 4 + 5 + 6 + unpackFile() { 7 + sh $src -x 8 + } 9 + 10 + 11 + buildPhase() { 12 + if test -z "$libsOnly"; then 13 + # Create the module. 14 + echo "Building linux driver against kernel: $kernel"; 15 + cd kernel 16 + kernelVersion=$(cd $kernel/lib/modules && ls) 17 + sysSrc=$(echo $kernel/lib/modules/$kernelVersion/build/) 18 + unset src # used by the nv makefile 19 + # Hack necessary to compile on 2.6.28. 20 + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$sysSrc/include/asm/mach-default -I$sysSrc/include/generated" 21 + make SYSSRC=$sysSrc module 22 + cd .. 23 + fi 24 + } 25 + 26 + 27 + installPhase() { 28 + 29 + # Install libGL and friends. 30 + mkdir -p $out/lib/vendors 31 + 32 + for f in \ 33 + libcuda libGL libnvcuvid libnvidia-cfg libnvidia-compiler \ 34 + libnvidia-glcore libnvidia-ml libnvidia-opencl \ 35 + libnvidia-tls libOpenCL libnvidia-tls libvdpau_nvidia 36 + do 37 + cp -prd $f.* $out/lib/ 38 + ln -snf $f.so.$versionNumber $out/lib/$f.so 39 + ln -snf $f.so.$versionNumber $out/lib/$f.so.1 40 + done 41 + 42 + cp -p nvidia.icd $out/lib/vendors/ 43 + cp -prd tls $out/lib/ 44 + cp -prd libOpenCL.so.1.0.0 $out/lib/ 45 + ln -snf libOpenCL.so.1.0.0 $out/lib/libOpenCL.so 46 + ln -snf libOpenCL.so.1.0.0 $out/lib/libOpenCL.so.1 47 + 48 + patchelf --set-rpath $out/lib:$glPath $out/lib/libGL.so.*.* 49 + patchelf --set-rpath $out/lib:$glPath $out/lib/libvdpau_nvidia.so.*.* 50 + patchelf --set-rpath $cudaPath $out/lib/libcuda.so.*.* 51 + 52 + if test -z "$libsOnly"; then 53 + 54 + # Install the kernel module. 55 + mkdir -p $out/lib/modules/$kernelVersion/misc 56 + cp kernel/nvidia.ko $out/lib/modules/$kernelVersion/misc 57 + 58 + # Install the X driver. 59 + mkdir -p $out/lib/xorg/modules 60 + cp -p libnvidia-wfb.* $out/lib/xorg/modules/ 61 + mkdir -p $out/lib/xorg/modules/drivers 62 + cp -p nvidia_drv.so $out/lib/xorg/modules/drivers 63 + mkdir -p $out/lib/xorg/modules/extensions 64 + cp -p libglx.so.* $out/lib/xorg/modules/extensions 65 + 66 + ln -snf libnvidia-wfb.so.$versionNumber $out/lib/xorg/modules/libnvidia-wfb.so.1 67 + ln -snf libglx.so.$versionNumber $out/lib/xorg/modules/extensions/libglx.so 68 + 69 + patchelf --set-rpath $out/lib $out/lib/xorg/modules/extensions/libglx.so.*.* 70 + 71 + # Install the programs. 72 + mkdir -p $out/bin 73 + 74 + for i in nvidia-settings nvidia-xconfig; do 75 + cp $i $out/bin/$i 76 + patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \ 77 + --set-rpath $out/lib:$programPath:$glPath $out/bin/$i 78 + done 79 + 80 + # Header files etc. 81 + mkdir -p $out/include/nvidia 82 + cp -p *.h $out/include/nvidia 83 + 84 + mkdir -p $out/share/man/man1 85 + cp -p *.1.gz $out/share/man/man1 86 + 87 + mkdir -p $out/share/applications 88 + cp -p *.desktop $out/share/applications 89 + 90 + mkdir -p $out/share/pixmaps 91 + cp -p nvidia-settings.png $out/share/pixmaps 92 + 93 + # Patch the `nvidia-settings.desktop' file. 94 + substituteInPlace $out/share/applications/nvidia-settings.desktop \ 95 + --replace '__UTILS_PATH__' $out/bin \ 96 + --replace '__PIXMAP_PATH__' $out/share/pixmaps 97 + fi 98 + } 99 + 100 + 101 + genericBuild
-12
pkgs/os-specific/linux/nvidia-x11/generated.patch
··· 1 - diff -pur 173.14.31/conftest.sh 173.14.31-3.3/conftest.sh 2 - --- 173.14.31/conftest.sh 2011-07-18 09:49:58.000000000 +0400 3 - +++ 173.14.31-3.3/conftest.sh 2012-04-09 19:33:34.407928432 +0400 4 - @@ -123,7 +123,7 @@ build_cflags() { 5 - CFLAGS="$BASE_CFLAGS $MACH_CFLAGS $OUTPUT_CFLAGS -I$HEADERS $AUTOCONF_CFLAGS" 6 - 7 - if [ "$ARCH" = "i386" -o "$ARCH" = "x86_64" ]; then 8 - - CFLAGS="$CFLAGS -I$SOURCES/arch/x86/include" 9 - + CFLAGS="$CFLAGS -I$SOURCES/arch/x86/include -I$SOURCES/arch/x86/include/generated" 10 - fi 11 - if [ -n "$BUILD_PARAMS" ]; then 12 - CFLAGS="$CFLAGS -D$BUILD_PARAMS"
+1 -1
pkgs/os-specific/linux/nvidia-x11/legacy304.nix
··· 13 13 stdenv.mkDerivation { 14 14 name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}"; 15 15 16 - builder = ./builder.sh; 16 + builder = ./builder-legacy304.sh; 17 17 18 18 src = 19 19 if stdenv.system == "i686-linux" then
+3 -13
pkgs/os-specific/linux/nvidia-x11/legacy96.nix
··· 2 2 3 3 let 4 4 5 - versionNumber = "96.43.20"; 5 + versionNumber = "96.43.23"; 6 6 7 7 in 8 8 ··· 15 15 if stdenv.system == "i686-linux" then 16 16 fetchurl { 17 17 url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run"; 18 - sha256 = "05vm36jnydp4cfdkfvrvxczd64i3f0pp0yp7dn8y8pklrxi80xxw"; 18 + sha256 = "0hi10h26l51mknr57zsdg0zaxcqdz1lp3hsz0hi1c1vkpbsavrji"; 19 19 } 20 20 else if stdenv.system == "x86_64-linux" then 21 21 fetchurl { 22 22 url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run"; 23 - sha256 = "0a8ninp4wyql3xh6z93dzhbacvz7g0h8gs4pg5279a0i6h05wb1w"; 23 + sha256 = "09vynha40rsxpklj1m0qjfg853ckdpi9g87h06irikh405x57kzp"; 24 24 } 25 25 else throw "nvidia-x11 does not support platform ${stdenv.system}"; 26 26 27 27 inherit versionNumber kernel; 28 - 29 - # Only for kernels 3.4 and over 30 - # Patches taken from arch linux AUR 31 - # https://aur.archlinux.org/packages.php?ID=57698 32 - kpatches = stdenv.lib.optionals (stdenv.lib.strings.versionOlder "3.4" kernel.version) 33 - [ ./acpixf.patch 34 - ./generated.patch 35 - ./patchlevel.patch 36 - ./switch_to.patch 37 - ]; 38 28 39 29 dontStrip = true; 40 30
-59
pkgs/os-specific/linux/nvidia-x11/patchlevel.patch
··· 1 - diff -pur 96.43.20-t1/conftest.sh 96.43.20-t2/conftest.sh 2 - --- 96.43.20-t1/conftest.sh 2012-06-16 17:14:47.206589267 +0400 3 - +++ 96.43.20-t2/conftest.sh 2012-06-16 15:35:45.049203248 +0400 4 - @@ -1303,10 +1303,14 @@ case "$5" in 5 - MAKEFILE=$HEADERS/../Makefile 6 - 7 - if [ -f $MAKEFILE ]; then 8 - + VERSION=$(grep "^VERSION =" $MAKEFILE | cut -d " " -f 3) 9 - PATCHLEVEL=$(grep "^PATCHLEVEL =" $MAKEFILE | cut -d " " -f 3) 10 - 11 - - if [ -z "$PATCHLEVEL" ]; then 12 - + if [ -z "$PATCHLEVEL" -o -z "$VERSION" ]; then 13 - exit 1 14 - + elif [ "$VERSION" = '3' ]; then 15 - + echo 6 16 - + exit 0 17 - else 18 - echo $PATCHLEVEL 19 - exit 0 20 - @@ -1426,10 +1430,11 @@ case "$5" in 21 - # kernel older than 2.6.6, that's all we require to 22 - # build the module. 23 - # 24 - + VERSION=$(grep "^VERSION =" $MAKEFILE | cut -d " " -f 3) 25 - PATCHLEVEL=$(grep "^PATCHLEVEL =" $MAKEFILE | cut -d " " -f 3) 26 - SUBLEVEL=$(grep "^SUBLEVEL =" $MAKEFILE | cut -d " " -f 3) 27 - 28 - - if [ -n "$PATCHLEVEL" -a $PATCHLEVEL -ge 6 \ 29 - + if [ "$VERSION" = '2' -a -n "$PATCHLEVEL" -a $PATCHLEVEL -ge 6 \ 30 - -a -n "$SUBLEVEL" -a $SUBLEVEL -le 5 ]; then 31 - SELECTED_MAKEFILE=Makefile.kbuild 32 - RET=0 33 - @@ -1525,11 +1530,12 @@ case "$5" in 34 - # This source tree is not configured, but includes 35 - # the top-level Makefile. 36 - # 37 - + VERSION=$(grep "^VERSION =" $MAKEFILE | cut -d " " -f 3) 38 - PATCHLEVEL=$(grep "^PATCHLEVEL =" $MAKEFILE | cut -d " " -f 3) 39 - SUBLEVEL=$(grep "^SUBLEVEL =" $MAKEFILE | cut -d " " -f 3) 40 - 41 - - if [ -n "$PATCHLEVEL" -a -n "$SUBLEVEL" ]; then 42 - - echo 2.$PATCHLEVEL.$SUBLEVEL 43 - + if [ -n "$VERSION" -a -n "$PATCHLEVEL" -a -n "$SUBLEVEL" ]; then 44 - + echo $VERSION.$PATCHLEVEL.$SUBLEVEL 45 - RET=0 46 - fi 47 - fi 48 - diff -pur 96.43.20-t1/Makefile.kbuild 96.43.20-t2/Makefile.kbuild 49 - --- 96.43.20-t1/Makefile.kbuild 2011-07-18 10:51:11.000000000 +0400 50 - +++ 96.43.20-t2/Makefile.kbuild 2012-06-16 17:08:11.694605133 +0400 51 - @@ -132,7 +132,7 @@ MODULE_ROOT := /lib/modules/$(KERNEL_UNA 52 - # 53 - 54 - TOPDIR ?= $(KERNEL_SOURCES) 55 - -PATCHLEVEL ?= $(shell $(CONFTEST) kernel_patch_level) 56 - +PATCHLEVEL := $(shell $(CONFTEST) kernel_patch_level) 57 - 58 - # 59 - # Linux 2.4 uses the .o module extension. Linux 2.6, however, uses the .ko
-24
pkgs/os-specific/linux/nvidia-x11/switch_to.patch
··· 1 - diff -pur 173.14.31-3.3/conftest.sh 173.14.31-3.4/conftest.sh 2 - --- 173.14.31-3.3/conftest.sh 2012-04-09 19:33:34.407928432 +0400 3 - +++ 173.14.31-3.4/conftest.sh 2012-04-10 19:50:36.052346728 +0400 4 - @@ -465,7 +465,7 @@ compile_test() { 5 - # and if it as an 'event' member. 6 - # 7 - echo "$CONFTEST_PREAMBLE 8 - - #include <asm/system.h> 9 - + #include <asm/switch_to.h> 10 - #include <linux/pm.h> 11 - void conftest_pm_message_t(pm_message_t state) { 12 - pm_message_t *p = &state; 13 - diff -pur 173.14.31-3.3/nv-linux.h 173.14.31-3.4/nv-linux.h 14 - --- 173.14.31-3.3/nv-linux.h 2011-07-18 09:49:58.000000000 +0400 15 - +++ 173.14.31-3.4/nv-linux.h 2012-04-10 19:53:04.853776013 +0400 16 - @@ -92,7 +92,7 @@ 17 - #include <linux/timer.h> 18 - 19 - #include <asm/div64.h> /* do_div() */ 20 - -#include <asm/system.h> /* cli, sli, save_flags */ 21 - +#include <asm/switch_to.h> /* cli, sli, save_flags */ 22 - #include <asm/io.h> /* ioremap, virt_to_phys */ 23 - #include <asm/uaccess.h> /* access_ok */ 24 - #include <asm/page.h> /* PAGE_OFFSET */
+2 -2
pkgs/os-specific/linux/pmtools/default.nix
··· 4 4 name = "pmtools-20071116"; 5 5 6 6 src = fetchurl { 7 - url = "www.lesswatts.org/patches/linux_acpi/${name}.tar.gz"; 7 + url = "http://www.lesswatts.org/patches/linux_acpi/${name}.tar.gz"; 8 8 sha256 = "91751774976e39f6237efd0326eb35196a9346220b92ad35894a33283e872748"; 9 9 }; 10 10 ··· 15 15 ''; 16 16 17 17 meta = { 18 - homepage = "http://www.lesswatts.org/projects/acpi/utilities.php"; 18 + homepage = http://www.lesswatts.org/projects/acpi/utilities.php; 19 19 description = "Linux ACPI utilities"; 20 20 license = "GPLv2"; 21 21
+1
pkgs/os-specific/linux/powertop/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "powertop-2.1"; 5 + 5 6 src = fetchurl { 6 7 url = "https://01.org/powertop/sites/default/files/downloads/${name}.tar.gz"; 7 8 sha256 = "16161nlah4i4hq8vyx7ds1vq7icdzwm7gmyjg0xhcrs1r9n83m1x";
+3 -2
pkgs/os-specific/linux/v86d/default.nix
··· 1 1 {stdenv, fetchurl, klibc, kernel, withKlibc ? true}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "v86d-0.1.10-${kernel.version}"; 4 + name = "v86d-${version}-${kernel.version}"; 5 + version = "0.1.10"; 5 6 6 7 src = fetchurl { 7 - url = "http://dev.gentoo.org/~spock/projects/uvesafb/archive/${name}.tar.bz2"; 8 + url = "mirror://gentoo/distfiles//v86d-${version}.tar.bz2"; 8 9 sha256 = "0p3kwqjis941pns9948dxfnjnl5lwd8f2b6x794whs7g32p68jb3"; 9 10 }; 10 11
+33
pkgs/os-specific/linux/x86info/default.nix
··· 1 + {stdenv, fetchurl, pciutils, python}: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "1.30"; 5 + name = "x86info-${version}"; 6 + 7 + src = fetchurl { 8 + url = "http://codemonkey.org.uk/projects/x86info/${name}.tgz"; 9 + sha256 = "0a4lzka46nabpsrg3n7akwr46q38f96zfszd73xcback1s2hjc7y"; 10 + }; 11 + 12 + buildInputs = [ pciutils python ]; 13 + 14 + installPhase = '' 15 + ensureDir $out/bin 16 + cp x86info lsmsr $out/bin 17 + ''; 18 + 19 + meta = { 20 + description = "An identification utility for the x86 series of processors."; 21 + longDescription = 22 + '' 23 + x86info will identify all Intel/AMD/Centaur/Cyrix/VIA CPUs. It leverages 24 + the cpuid kernel module where possible. it supports parsing model specific 25 + registers (MSRs) via the msr kernel module. it will approximate processor 26 + frequency, and identify the cache sizes and layout. 27 + ''; 28 + platforms = stdenv.lib.platforms.linux; 29 + license = stdenv.lib.licenses.gpl2; 30 + homepage = http://codemonkey.org.uk/projects/x86info/; 31 + maintainers = with stdenv.lib.maintainers; [jcumming]; 32 + }; 33 + }
+1 -1
pkgs/servers/mail/freepops/default.nix
··· 3 3 stdenv.mkDerivation { 4 4 name = "freepops-0.2.9"; 5 5 src = fetchurl { 6 - url = mirror://sf/freepops/0.2.9/freepops-0.2.9.tar.gz; 6 + url = mirror://sourceforge/freepops/0.2.9/freepops-0.2.9.tar.gz; 7 7 sha256 = "3a065e30cafed03d9b6fdb28251ae5bf0d8aeb62181746154beecd25dc0c9cae"; 8 8 }; 9 9 buildInputs = [pkgconfig openssl lua5 curl readline bison expat];
+2 -2
pkgs/tools/filesystems/jfsutils/default.nix
··· 1 1 { stdenv, fetchurl, libuuid }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "jfsutils-1.1.12"; 4 + name = "jfsutils-1.1.15"; 5 5 6 6 src = fetchurl { 7 7 url = "http://jfs.sourceforge.net/project/pub/${name}.tar.gz"; 8 - sha256 = "04vqdlg90j0mk5jkxpfg9fp6ss4gs1g5pappgns6183q3i6j02hd"; 8 + sha1 = "291e8bd9d615cf3d27e4000117c81a3602484a50"; 9 9 }; 10 10 11 11 buildInputs = [ libuuid ];
+1 -1
pkgs/tools/filesystems/reiserfsprogs/default.nix
··· 4 4 name = "reiserfsprogs-3.6.21"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://kernel/linux/utils/fs/reiserfs/${name}.tar.bz2"; 7 + url = "http://ftp.be.debian.org/pub/linux/utils/fs/reiserfs/${name}.tar.bz2"; 8 8 sha256 = "19mqzhh6jsf2gh8zr5scqi9pyk1fwivrxncd11rqnp2148c58jam"; 9 9 }; 10 10
+3 -3
pkgs/tools/graphics/cuneiform/default.nix
··· 2 2 let 3 3 fetchurl = a.fetchurl; 4 4 5 - version = a.lib.attrByPath ["version"] "1.0" a; 5 + version = "1.1.0"; 6 6 buildInputs = with a; [ 7 7 cmake imagemagick patchelf 8 8 ]; 9 9 in 10 10 rec { 11 11 src = fetchurl { 12 - url = "http://launchpad.net/cuneiform-linux/${version}/${version}/+download/cuneiform-linux-${version}.0.tar.bz2"; 13 - sha256 = "bfa7acc6aade966ab62bc0f19e0ac1a843b659a70202229570c087ca8b15f39e"; 12 + url = "https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2"; 13 + sha256 = "1bdvppyfx2184zmzcylskd87cxv56d8f32jf7g1qc8779l2hszjp"; 14 14 }; 15 15 16 16 inherit buildInputs;
+8
pkgs/tools/graphics/cuneiform/default.upstream
··· 1 + url https://launchpad.net/cuneiform-linux/+download 2 + 3 + do_overwrite () { 4 + ensure_hash 5 + set_var_value version "$CURRENT_VERSION" 6 + set_var_value sha256 "$CURRENT_HASH" 7 + set_var_value ' url' "$CURRENT_URL" 8 + }
+3 -2
pkgs/tools/graphics/graphviz/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw 2 - , yacc, libtool, fontconfig, pango, gd, xlibs, gts 2 + , yacc, libtool, fontconfig, pango, gd, xlibs, gts, gettext 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 buildInputs = 14 14 [ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig 15 15 pango gd gts 16 - ] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ]; 16 + ] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ] 17 + ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; 17 18 18 19 patches = [ ./fix-broken-memcp-signature.patch ]; 19 20
+19
pkgs/tools/graphics/jbig2enc/default.nix
··· 1 + {stdenv, fetchurl, leptonica, zlib, libwebp, giflib, libjpeg, libpng, libtiff }: stdenv.mkDerivation { 2 + name = "jbig2enc-0.28"; 3 + 4 + src = fetchurl { 5 + url = http://github.com/agl/jbig2enc/archive/0.28-dist.tar.gz; 6 + sha256 = "1wc0lmqz4jag3rhhk1xczlqpfv2qqp3fz7wzic2lba3vsbi1rrw3"; 7 + }; 8 + 9 + propagatedBuildInputs = [ leptonica zlib libwebp giflib libjpeg libpng libtiff ]; 10 + 11 + # This is necessary, because the resulting library has 12 + # /tmp/nix-build-jbig2enc/src/.libs before /nix/store/jbig2enc/lib 13 + # in its rpath, which means that patchelf --shrink-rpath removes 14 + # the /nix/store one. By cleaning up before fixup, we ensure that 15 + # the /tmp/nix-build-jbig2enc/src/.libs directory is gone. 16 + preFixup = '' 17 + make clean 18 + ''; 19 + }
+3 -3
pkgs/tools/graphics/mscgen/default.nix
··· 7 7 name = "mscgen-${version}"; 8 8 9 9 src = fetchurl { 10 - url = "www.mcternan.me.uk/mscgen/software/mscgen-src-${version}.tar.gz"; 10 + url = "http://www.mcternan.me.uk/mscgen/software/mscgen-src-${version}.tar.gz"; 11 11 sha256 = "3c3481ae0599e1c2d30b7ed54ab45249127533ab2f20e768a0ae58d8551ddc23"; 12 12 }; 13 13 ··· 19 19 ''; 20 20 21 21 meta = { 22 - homepage = "http://www.mcternan.me.uk/mscgen/"; 23 - description = "convert Message Sequence Chart descriptions into PNG, SVG, or EPS images"; 22 + homepage = http://www.mcternan.me.uk/mscgen/; 23 + description = "Convert Message Sequence Chart descriptions into PNG, SVG, or EPS images"; 24 24 license = "GPLv2"; 25 25 26 26 longDescription = ''
+1 -1
pkgs/tools/misc/ised/default.nix
··· 12 12 baseName="ised"; 13 13 version="2.2.2"; 14 14 name="${baseName}-${version}"; 15 - url="mirror://sf/project/ised/${name}.tar.bz2"; 15 + url="mirror://sourceforge/project/ised/${name}.tar.bz2"; 16 16 hash="1nb1cnsbs2k3j9cy2kc2kg01rd7wf3jwxm62rwn1rjlc46nwdlmn"; 17 17 }; 18 18 in
+2 -2
pkgs/tools/security/tor/torsocks.nix
··· 2 2 stdenv.mkDerivation rec { 3 3 pname = "torsocks"; 4 4 name = "${pname}-${version}"; 5 - version = "1.0-epsilon"; 5 + version = "1.2"; 6 6 7 7 src = fetchurl { 8 8 url = "http://${pname}.googlecode.com/files/${name}.tar.gz"; 9 - sha256 = "0508i4q9gm0rrav018z1jn4as5if3qrfdng6dmmzgs324hvdgap5"; 9 + sha256 = "1m0is5q24sf7jjlkl0icfkdc0m53nbkg0q72s57p48yp4hv7v9dy"; 10 10 }; 11 11 12 12 preConfigure = ''
+3 -3
pkgs/tools/security/vidalia/default.nix
··· 2 2 stdenv.mkDerivation rec { 3 3 4 4 name = "vidalia-${version}"; 5 - version = "0.2.17"; 5 + version = "0.2.21"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.torproject.org/dist/vidalia/${name}.tar.gz"; 9 - sha256 = "0x0vb37h2d5njxmqkss03ybv7b7jw25682xb793mix1m8l0hs44r"; 9 + sha256 = "1rqvvhdqgk6jqrd15invvc4r7p4nckd3b93hhr5dzpc1fxz8w064"; 10 10 }; 11 11 12 12 buildInputs = [ cmake qt4 ]; ··· 18 18 maintainers = [ maintainers.phreedom ]; 19 19 platforms = platforms.all; 20 20 }; 21 - } 21 + }
+1 -1
pkgs/tools/system/hardlink/default.nix
··· 7 7 name = "hardlink-2012.9.${rev}"; 8 8 9 9 src = fetchurl { 10 - url = "pkgs.fedoraproject.org/cgit/hardlink.git/snapshot/hardlink-${rev}.zip"; 10 + url = "http://pkgs.fedoraproject.org/cgit/hardlink.git/snapshot/hardlink-${rev}.zip"; 11 11 sha256 = "fea1803170b538d5fecf6a8d312ded1d25d516e9386a3797441a247487551647"; 12 12 name = "hardlink-${rev}.zip"; 13 13 };
+7 -7
pkgs/tools/system/logrotate/default.nix
··· 1 - {stdenv, fetchurl, gzip, popt}: 1 + { stdenv, fetchurl, gzip, popt }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "logrotate-3.7.8"; 4 + name = "logrotate-3.8.3"; 5 5 6 6 src = fetchurl { 7 - url = https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.7.8.tar.gz; 8 - sha256 = "1p9nqmznqvzn03saw3jxa8xwsdqym8jr778rwig8kk786343vai1"; 7 + url = "https://fedorahosted.org/releases/l/o/logrotate/${name}.tar.gz"; 8 + sha256 = "0xqrz8xzs2c1vx8l5h9lp2ciwwifj7y52xsppb1vrvbi254vyxh7"; 9 9 }; 10 10 11 11 # Logrotate wants to access the 'mail' program; to be done. ··· 21 21 buildInputs = [ popt ]; 22 22 23 23 meta = { 24 - homepage = "https://fedorahosted.org/releases/l/o/logrotate/"; 24 + homepage = https://fedorahosted.org/releases/l/o/logrotate/; 25 25 description = "Rotates and compresses system logs"; 26 26 license = "GPLv2+"; 27 - maintainers = with stdenv.lib.maintainers; [viric]; 28 - platforms = with stdenv.lib.platforms; all; 27 + maintainers = [ stdenv.lib.maintainers.viric ]; 28 + platforms = stdenv.lib.platforms.all; 29 29 }; 30 30 31 31 }
+2 -2
pkgs/tools/system/smartmontools/default.nix
··· 2 2 3 3 let 4 4 driverdb = fetchurl { 5 - url = "http://smartmontools.svn.sourceforge.net/viewvc/smartmontools/trunk/smartmontools/drivedb.h?revision=3685"; 6 - sha256 = "11zczy03asfpj4wwip5bf3fpingdc7biz1cs3cykg4vnlxiwjxkx"; 5 + url = "http://smartmontools.svn.sourceforge.net/viewvc/smartmontools/trunk/smartmontools/drivedb.h?revision=3742"; 6 + sha256 = "04xsgxzc1mqn9szazyr6v3xcpw0pszi8vz7xcsb661rww5482rw0"; 7 7 name = "smartmontools-drivedb.h"; 8 8 }; 9 9 in
+35 -21
pkgs/top-level/all-packages.nix
··· 344 344 inherit stdenv; 345 345 }; 346 346 347 + replaceDependency = import ../build-support/replace-dependency.nix { 348 + inherit runCommand nix lib; 349 + }; 350 + 347 351 nukeReferences = callPackage ../build-support/nuke-references/default.nix { }; 348 352 349 353 vmTools = import ../build-support/vm/default.nix { ··· 415 419 inherit pkgs; 416 420 pkgs_i686 = pkgsi686Linux; 417 421 }; 418 - 422 + 419 423 xcodeenv = callPackage ../development/mobile/xcodeenv { }; 420 - 424 + 421 425 titaniumenv = import ../development/mobile/titaniumenv { 422 426 inherit pkgs; 423 427 pkgs_i686 = pkgsi686Linux; ··· 541 545 542 546 cfdg = builderDefsPackage ../tools/graphics/cfdg { 543 547 inherit libpng bison flex; 544 - ffmpeg = ffmpeg_1_0; 548 + ffmpeg = ffmpeg_1_1; 545 549 }; 546 550 547 551 checkinstall = callPackage ../tools/package-management/checkinstall { }; ··· 1318 1322 1319 1323 pdfjam = callPackage ../tools/typesetting/pdfjam { }; 1320 1324 1325 + jbig2enc = callPackage ../tools/graphics/jbig2enc { }; 1326 + 1321 1327 pdfread = callPackage ../tools/graphics/pdfread { }; 1322 1328 1323 1329 briss = callPackage ../tools/graphics/briss { }; ··· 1752 1758 wv = callPackage ../tools/misc/wv { }; 1753 1759 1754 1760 wv2 = callPackage ../tools/misc/wv2 { }; 1761 + 1762 + x86info = callPackage ../os-specific/linux/x86info { }; 1755 1763 1756 1764 x11_ssh_askpass = callPackage ../tools/networking/x11-ssh-askpass { }; 1757 1765 ··· 2833 2841 2834 2842 pure = callPackage ../development/interpreters/pure {}; 2835 2843 2836 - python = python27; 2837 2844 python3 = python32; 2845 + python32 = callPackage ../development/interpreters/python/3.2 { }; 2838 2846 2847 + python = python27; 2839 2848 python26 = callPackage ../development/interpreters/python/2.6 { }; 2840 - 2841 2849 python27 = callPackage ../development/interpreters/python/2.7 { }; 2842 2850 2843 - python32 = callPackage ../development/interpreters/python/3.2 { }; 2844 - 2845 2851 pythonFull = python27Full; 2846 - 2847 2852 python26Full = callPackage ../development/interpreters/python/wrapper.nix { 2848 2853 extraLibs = lib.attrValues python26.modules; 2849 2854 python = python26; 2855 + inherit (python26Packages) recursivePthLoader; 2850 2856 }; 2851 - 2852 2857 python27Full = callPackage ../development/interpreters/python/wrapper.nix { 2853 2858 extraLibs = lib.attrValues python27.modules; 2854 2859 python = python27; 2860 + inherit (python27Packages) recursivePthLoader; 2855 2861 }; 2856 2862 2857 2863 pythonhomeWrapper = callPackage ../development/interpreters/python/pythonhome-wrapper.nix { }; ··· 3587 3593 }; 3588 3594 3589 3595 ffmpeg_1_0 = callPackage ../development/libraries/ffmpeg/1.0.nix { 3596 + vpxSupport = !stdenv.isMips; 3597 + }; 3598 + 3599 + ffmpeg_1_1 = callPackage ../development/libraries/ffmpeg/1.1.nix { 3590 3600 vpxSupport = !stdenv.isMips; 3591 3601 }; 3592 3602 ··· 4972 4982 4973 4983 unicap = callPackage ../development/libraries/unicap {}; 4974 4984 4985 + tsocks = callPackage ../development/libraries/tsocks { }; 4986 + 4975 4987 unixODBC = callPackage ../development/libraries/unixODBC { }; 4976 4988 4977 4989 unixODBCDrivers = recurseIntoAttrs (import ../development/libraries/unixODBCDrivers { ··· 5230 5242 5231 5243 pythonPackages = python27Packages; 5232 5244 5245 + # `nix-env -i python-nose` installs for 2.7, the default python. 5246 + # Therefore we do not recurse into attributes here, in contrast to 5247 + # python27Packages. `nix-env -iA python26Packages.nose` works 5248 + # regardless. 5233 5249 python26Packages = import ./python-packages.nix { 5234 5250 inherit pkgs; 5235 5251 python = python26; ··· 5246 5262 5247 5263 numeric = callPackage ../development/python-modules/numeric { }; 5248 5264 5249 - pil = python27Packages.pil; 5265 + pil = pythonPackages.pil; 5250 5266 5251 5267 psyco = callPackage ../development/python-modules/psyco { }; 5252 5268 5253 - pycairo = callPackage ../development/python-modules/pycairo { }; 5269 + pycairo = pythonPackages.pycairo; 5254 5270 5255 - pycrypto = python27Packages.pycrypto; 5271 + pycrypto = pythonPackages.pycrypto; 5256 5272 5257 5273 pycups = callPackage ../development/python-modules/pycups { }; 5258 5274 ··· 5260 5276 5261 5277 pygame = callPackage ../development/python-modules/pygame { }; 5262 5278 5263 - pygobject = callPackage ../development/python-modules/pygobject { }; 5279 + pygobject = pythonPackages.pygobject; 5264 5280 5265 - pygtk = callPackage ../development/python-modules/pygtk { }; 5281 + pygtk = pythonPackages.pygtk; 5266 5282 5267 - pyGtkGlade = callPackage ../development/python-modules/pygtk { 5268 - inherit (gnome) libglade; 5269 - }; 5283 + pyGtkGlade = pythonPackages.pyGtkGlade; 5270 5284 5271 5285 pyopenssl = builderDefsPackage (import ../development/python-modules/pyopenssl) { 5272 5286 inherit python openssl; ··· 7487 7501 7488 7502 ncmpcpp = callPackage ../applications/audio/ncmpcpp { }; 7489 7503 7490 - MPlayer = callPackage ../applications/video/MPlayer { 7504 + mplayer = callPackage ../applications/video/mplayer { 7491 7505 pulseSupport = config.pulseaudio or false; 7492 7506 }; 7493 7507 ··· 7640 7654 }; 7641 7655 7642 7656 pqiv = callPackage ../applications/graphics/pqiv { }; 7657 + 7658 + qiv = callPackage ../applications/graphics/qiv { }; 7643 7659 7644 7660 # perhaps there are better apps for this task? It's how I had configured my preivous system. 7645 7661 # And I don't want to rewrite all rules ··· 7948 7964 }; 7949 7965 7950 7966 vlc = callPackage ../applications/video/vlc { 7951 - ffmpeg = ffmpeg_1_0; 7967 + ffmpeg = ffmpeg_1_1; 7952 7968 }; 7953 7969 7954 7970 vnstat = callPackage ../applications/networking/vnstat { }; ··· 9098 9114 9099 9115 # Wine cannot be built in 64-bit; use a 32-bit build instead. 9100 9116 wine = callPackage_i686 ../misc/emulators/wine { }; 9101 - 9102 - wineWarcraft = callPackage_i686 ../misc/emulators/wine/wine-warcraft.nix { }; 9103 9117 9104 9118 x2x = callPackage ../tools/X11/x2x { }; 9105 9119
+10 -4
pkgs/top-level/haskell-packages.nix
··· 129 129 HTTP = self.HTTP_4000_2_6; # 7.6 ok 130 130 HUnit = self.HUnit_1_2_5_1; # 7.6 ok 131 131 mtl = self.mtl_2_1_2; # 7.6 ok 132 - network = self.network_2_4_0_1; # 7.6 ok 132 + network = self.network_2_4_1_0; # 7.6 ok 133 133 OpenGL = self.OpenGL_2_6_0_1; # 7.6 ok 134 134 parallel = self.parallel_3_2_0_3; # 7.6 ok 135 135 parsec = self.parsec_3_1_3; # 7.6 ok ··· 582 582 583 583 cipherAes = callPackage ../development/libraries/haskell/cipher-aes {}; 584 584 585 + cipherRc4 = callPackage ../development/libraries/haskell/cipher-rc4 {}; 586 + 585 587 classyPrelude = callPackage ../development/libraries/haskell/classy-prelude {}; 586 588 587 589 classyPreludeConduit = callPackage ../development/libraries/haskell/classy-prelude-conduit {}; ··· 634 636 635 637 cryptohash = callPackage ../development/libraries/haskell/cryptohash {}; 636 638 639 + cryptoNumbers = callPackage ../development/libraries/haskell/crypto-numbers {}; 640 + 637 641 cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {}; 638 642 643 + cryptoPubkey = callPackage ../development/libraries/haskell/crypto-pubkey {}; 644 + 639 645 cryptoRandomApi = callPackage ../development/libraries/haskell/crypto-random-api {}; 640 646 641 647 cuda = callPackage ../development/libraries/haskell/cuda { ··· 913 919 happstackHamlet = callPackage ../development/libraries/haskell/happstack/happstack-hamlet.nix {}; 914 920 915 921 hashable_1_1_2_5 = callPackage ../development/libraries/haskell/hashable/1.1.2.5.nix {}; 916 - hashable_1_2_0_3 = callPackage ../development/libraries/haskell/hashable/1.2.0.3.nix {}; 922 + hashable_1_2_0_5 = callPackage ../development/libraries/haskell/hashable/1.2.0.5.nix {}; 917 923 hashable = self.hashable_1_1_2_5; 918 924 919 925 hashedStorage = callPackage ../development/libraries/haskell/hashed-storage {}; ··· 1260 1266 network_2_3_0_5 = callPackage ../development/libraries/haskell/network/2.3.0.5.nix {}; 1261 1267 network_2_3_0_13 = callPackage ../development/libraries/haskell/network/2.3.0.13.nix {}; 1262 1268 network_2_3_1_0 = callPackage ../development/libraries/haskell/network/2.3.1.0.nix {}; 1263 - network_2_4_0_1 = callPackage ../development/libraries/haskell/network/2.4.0.1.nix {}; 1264 - network = self.network_2_4_0_1; 1269 + network_2_4_1_0 = callPackage ../development/libraries/haskell/network/2.4.1.0.nix {}; 1270 + network = self.network_2_4_1_0; 1265 1271 1266 1272 networkConduit = callPackage ../development/libraries/haskell/network-conduit {}; 1267 1273
+1 -1
pkgs/top-level/node-packages.nix
··· 128 128 name = "bson-0.1.5"; 129 129 src = fetchurl { 130 130 url = "http://registry.npmjs.org/bson/-/${name}.tgz"; 131 - sha256 = "3fad2209466740ea81d0bc285b92d940efe5104a6314946ea40180c431a19692"; 131 + sha256 = "58af4a1697b015190b40c2a7e5743f9d4494887ef98dfe2f58f24c70f2d31150"; 132 132 }; 133 133 deps = [ 134 134
+12
pkgs/top-level/perl-packages.nix
··· 1774 1774 propagatedBuildInputs = [ ParamsValidate SubExporter ]; 1775 1775 }; 1776 1776 1777 + GoogleProtocolBuffers = buildPerlPackage rec { 1778 + name = "Google-ProtocolBuffers-0.08"; 1779 + src = fetchurl { 1780 + url = "mirror://cpan/authors/id/G/GA/GARIEV/${name}.tar.gz"; 1781 + sha256 = "0pxfphg671wh56h59pf0zrj7m1cr0yga95hf3w54563pzcw2vqv3"; 1782 + }; 1783 + propagatedBuildInputs = [ ClassAccessor ParseRecDescent ]; 1784 + patches = [ 1785 + ../development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch 1786 + ]; 1787 + }; 1788 + 1777 1789 Graph = buildPerlPackage rec { 1778 1790 name = "Graph-0.94"; 1779 1791 src = fetchurl {
+58 -10
pkgs/top-level/python-packages.nix
··· 3 3 let pythonPackages = python.modules // rec { 4 4 5 5 inherit python; 6 - 7 6 inherit (pkgs) fetchurl fetchsvn fetchgit stdenv; 8 7 8 + # helpers 9 9 10 10 buildPythonPackage = import ../development/python-modules/generic { 11 11 inherit (pkgs) lib; 12 - inherit python wrapPython setuptools setuptoolsSite offlineDistutils; 12 + inherit python wrapPython setuptools recursivePthLoader offlineDistutils; 13 13 }; 14 14 15 + wrapPython = pkgs.makeSetupHook 16 + { deps = pkgs.makeWrapper; 17 + substitutions.libPrefix = python.libPrefix; 18 + } 19 + ../development/python-modules/generic/wrap.sh; 20 + 21 + # specials 15 22 16 23 recursivePthLoader = import ../development/python-modules/recursive-pth-loader { 17 24 inherit (pkgs) stdenv; 18 25 inherit python; 19 26 }; 20 27 21 - 22 28 setuptools = import ../development/python-modules/setuptools { 23 29 inherit (pkgs) stdenv fetchurl; 24 30 inherit python wrapPython; ··· 34 40 inherit python; 35 41 }; 36 42 43 + # packages defined elsewhere 44 + 37 45 ipython = import ../shells/ipython { 38 46 inherit (pkgs) stdenv fetchurl; 39 47 inherit buildPythonPackage pythonPackages; ··· 44 52 inherit python buildPythonPackage; 45 53 }; 46 54 55 + pycairo = import ../development/python-modules/pycairo { 56 + inherit (pkgs) stdenv fetchurl pkgconfig cairo x11; 57 + inherit python; 58 + }; 59 + 47 60 pycrypto = import ../development/python-modules/pycrypto { 48 61 inherit (pkgs) fetchurl stdenv gmp; 49 62 inherit python buildPythonPackage; 50 63 }; 51 64 52 - wrapPython = pkgs.makeSetupHook 53 - { deps = pkgs.makeWrapper; 54 - substitutions.libPrefix = python.libPrefix; 55 - } 56 - ../development/python-modules/generic/wrap.sh; 65 + pygobject = import ../development/python-modules/pygobject { 66 + inherit (pkgs) stdenv fetchurl pkgconfig glib; 67 + inherit python; 68 + }; 69 + 70 + pygtk = import ../development/python-modules/pygtk { 71 + inherit (pkgs) fetchurl stdenv pkgconfig glib gtk; 72 + inherit python buildPythonPackage pygobject pycairo; 73 + }; 57 74 75 + # XXX: how can we get an override here? 76 + #pyGtkGlade = pygtk.override { 77 + # inherit (pkgs.gnome) libglade; 78 + #}; 79 + pyGtkGlade = import ../development/python-modules/pygtk { 80 + inherit (pkgs) fetchurl stdenv pkgconfig glib gtk; 81 + inherit (pkgs.gnome) libglade; 82 + inherit python buildPythonPackage pygobject pycairo; 83 + }; 84 + 85 + # packages defined here 58 86 59 87 afew = buildPythonPackage rec { 60 88 rev = "6bb3915636aaf86f046a017ffffd9a4ef395e199"; ··· 456 484 maintainers = [ stdenv.lib.maintainers.shlevy ]; 457 485 platforms = python.meta.platforms; 458 486 }; 487 + }; 488 + 489 + cssselect = buildPythonPackage rec { 490 + name = "cssselect-0.7.1"; 491 + src = fetchurl { 492 + url = "http://pypi.python.org/packages/source/c/cssselect/cssselect-0.7.1.tar.gz"; 493 + md5 = "c6c5e9a2e7ca226ce03f6f67a771379c"; 494 + }; 495 + # AttributeError: 'module' object has no attribute 'tests' 496 + doCheck = false; 459 497 }; 460 498 461 499 cssutils = buildPythonPackage (rec { ··· 2171 2209 }; 2172 2210 2173 2211 2212 + pyquery = buildPythonPackage rec { 2213 + name = "pyquery-1.2.4"; 2214 + src = fetchurl { 2215 + url = "http://pypi.python.org/packages/source/p/pyquery/pyquery-1.2.4.tar.gz"; 2216 + md5 = "268f08258738d21bc1920d7522f2a63b"; 2217 + }; 2218 + buildInputs = [ cssselect lxml ]; 2219 + }; 2220 + 2221 + 2174 2222 pyreport = buildPythonPackage (rec { 2175 2223 name = "pyreport-0.3.4c"; 2176 2224 ··· 3028 3076 }); 3029 3077 3030 3078 virtualenv = buildPythonPackage rec { 3031 - name = "virtualenv-1.6.4"; 3079 + name = "virtualenv-1.8.4"; 3032 3080 src = fetchurl { 3033 3081 url = "http://pypi.python.org/packages/source/v/virtualenv/${name}.tar.gz"; 3034 - md5 = "1072b66d53c24e019a8f1304ac9d9fc5"; 3082 + md5 = "1c7e56a7f895b2e71558f96e365ee7a7"; 3035 3083 }; 3036 3084 3037 3085 patches = [ ../development/python-modules/virtualenv-change-prefix.patch ];
+2015
pkgs/top-level/release-python.nix
··· 1 + /* 2 + This file will be evaluated by hydra with a call like this: 3 + hydra_eval_jobs --gc-roots-dir \ 4 + /nix/var/nix/gcroots/per-user/hydra/hydra-roots --argstr \ 5 + system i686-linux --argstr system x86_64-linux --arg \ 6 + nixpkgs "{outPath = ./}" .... release.nix 7 + 8 + Hydra can be installed with "nix-env -i hydra". 9 + */ 10 + with (import ./release-lib.nix); 11 + 12 + let 13 + jobsForDerivations = attrset: pkgs.lib.attrsets.listToAttrs 14 + (map 15 + (name: { inherit name; 16 + value = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };}) 17 + (builtins.attrNames 18 + (pkgs.lib.attrsets.filterAttrs 19 + (n: v: (v.type or null) == "derivation") 20 + attrset))); 21 + 22 + in 23 + { 24 + 25 + tarball = import ./make-tarball.nix; 26 + 27 + } // (mapTestOn rec { 28 + 29 + a2jmidid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 30 + aacskeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 31 + aangifte2005 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 32 + aangifte2006 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 33 + aangifte2007 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 34 + aangifte2008 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 35 + aangifte2009 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 36 + aangifte2010 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 37 + aangifte2011 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 38 + abc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 39 + abcde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 40 + abiword = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 41 + acl2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 42 + adobeReader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 43 + agg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 44 + alienarena = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 45 + allegro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 46 + allegro5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 47 + alliance = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 48 + alsaPlugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 49 + alsaPluginWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 50 + amsn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 51 + amule = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 52 + amuleDaemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 53 + amuleGui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 54 + androidsdk_4_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 55 + andyetitmoves = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 56 + ant = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 57 + antlr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 58 + antlr3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 59 + apacheAntGcj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 60 + apacheAntOpenJDK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 61 + apacheAntOracleJDK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 62 + apparmor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 63 + aqbanking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 64 + arb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 65 + ardour3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 66 + arora = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 67 + asc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 68 + asciidoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 69 + asio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 70 + aspectj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 71 + asymptote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 72 + atanks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 73 + atari800 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 74 + ataripp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 75 + atermjava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 76 + atk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 77 + atkmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 78 + attica = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 79 + aubio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 80 + auctex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 81 + audacious = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 82 + audacity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 83 + autojump = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 84 + automoc4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 85 + avahi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 86 + avidemux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 87 + avogadro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 88 + awesome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 89 + aws_mturk_clt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 90 + axis2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 91 + azureus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 92 + ballAndPaddle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 93 + bam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 94 + baresip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 95 + bazaar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 96 + beast = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 97 + beret = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 98 + ber_metaocaml_003 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 99 + bibletime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 100 + bibtextools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 101 + binutils_gold = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 102 + biolib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 103 + bitcoin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 104 + bitlbee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 105 + bitsnbots = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 106 + bittornado = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 107 + bittorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 108 + blackshades = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 109 + blackshadeselite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 110 + blender = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 111 + blobby = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 112 + blueman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 113 + bluez = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 114 + boinc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 115 + boomerang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 116 + boost = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 117 + boost144 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 118 + boost146 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 119 + boost147 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 120 + boost149 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 121 + boost151 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 122 + botan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 123 + box2d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 124 + box2d_2_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 125 + briss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 126 + bsddb3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 127 + btanks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 128 + btrfsProgs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 129 + buildbot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 130 + bumblebee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 131 + bup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 132 + bzflag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 133 + caelum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 134 + cairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 135 + cairomm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 136 + calf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 137 + calibre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 138 + caneda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 139 + carrier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 140 + castle_combat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 141 + cbrowser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 142 + cc1394 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 143 + cdrdao = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 144 + cflow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 145 + cgal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 146 + cgui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 147 + chatzilla = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 148 + cheetahTemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 149 + chipmunk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 150 + chromiumWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 151 + chromium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 152 + cil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 153 + cilaterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 154 + cinelerra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 155 + cinepaint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 156 + ciopfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 157 + clang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 158 + clangUnwrapped = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 159 + clanlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 160 + classpath = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 161 + clearsilver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 162 + clisp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 163 + clisp_2_44_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 164 + clojure = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 165 + clojure_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 166 + clooj_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 167 + clucene_core_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 168 + clutter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 169 + clutter_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 170 + clutter_gtk_0_10 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 171 + cmakeWithGui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 172 + cmus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 173 + coccinelle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 174 + cogl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 175 + coin3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 176 + comical = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 177 + compiz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 178 + compton = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 179 + conkeror = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 180 + conky = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 181 + consolekit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 182 + construo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 183 + construoBase = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 184 + coq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 185 + coq_8_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 186 + coriander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 187 + couchdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 188 + crack_attack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 189 + crrcsim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 190 + cryptsetup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 191 + cscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 192 + csound = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 193 + csslint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 194 + cudatoolkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 195 + cuneiform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 196 + cups_pdf_filter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 197 + curlftpfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 198 + cvs2svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 199 + cython = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 200 + d4x = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 201 + darktable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 202 + dbench = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 203 + dblatex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 204 + dbus_cplusplus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 205 + dbus_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 206 + dbus_java = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 207 + dbus_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 208 + ddd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 209 + debian_devscripts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 210 + dejagnu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 211 + desktop_file_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 212 + devicemapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 213 + dia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 214 + dico = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 215 + directfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 216 + directvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 217 + disnix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 218 + disnixos = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 219 + DisnixWebService = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 220 + disper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 221 + distcc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 222 + distrho = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 223 + djview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 224 + dmenu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 225 + dmraid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 226 + dmtcp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 227 + dmtx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 228 + docutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 229 + dosbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 230 + doxygen_gui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 231 + dragonegg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 232 + drbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 233 + drgeo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 234 + dropbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 235 + dssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 236 + dstat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 237 + duplicity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 238 + dvdauthor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 239 + dvswitch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 240 + dwarf_fortress = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 241 + dwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 242 + eaglemode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 243 + easytag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 244 + ec2_api_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 245 + ecj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 246 + eclipses = { 247 + eclipse_cpp_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 248 + eclipse_cpp_37 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 249 + eclipse_modeling_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 250 + eclipse_sdk_35 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 251 + eclipse_sdk_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 252 + eclipse_sdk_37 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 253 + eclipse_sdk_42 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 254 + }; 255 + ecryptfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 256 + edk2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 257 + eduke32 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 258 + eggdbus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 259 + egoboo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 260 + ekiga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 261 + elasticmq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 262 + electricsheep = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 263 + elinks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 264 + emacs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 265 + emacs22 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 266 + emacs23 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 267 + emacs24Packages = { 268 + autoComplete = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 269 + bbdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 270 + calfw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 271 + cedet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 272 + coffee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 273 + colorTheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 274 + ecb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 275 + emacsSessionManagement = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 276 + emacsw3m = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 277 + emms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 278 + flymakeCursor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 279 + gh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 280 + gist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 281 + graphvizDot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 282 + haskellMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 283 + jabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 284 + jade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 285 + jdee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 286 + js2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 287 + logito = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 288 + loremIpsum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 289 + magit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 290 + maudeMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 291 + notmuch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 292 + ocamlMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 293 + org = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 294 + org2blog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 295 + pcache = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 296 + proofgeneral = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 297 + quack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 298 + rectMark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 299 + remember = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 300 + scalaMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 301 + sunriseCommander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 302 + xmlRpc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 303 + }; 304 + emboss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 305 + enblendenfuse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 306 + encfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 307 + enchant = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 308 + enlightenment = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 309 + epdfview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 310 + epm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 311 + eprover = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 312 + eql = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 313 + esdl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 314 + espeakedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 315 + etherape = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 316 + euca2ools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 317 + eukleides = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 318 + evince = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 319 + evolution_data_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 320 + evopedia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 321 + expect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 322 + exrdisplay = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 323 + extremetuxracer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 324 + exult = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 325 + facile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 326 + fail2ban = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 327 + fakenes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 328 + fam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 329 + farsight2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 330 + farstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 331 + fbida = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 332 + fbpanel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 333 + fdisk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 334 + feh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 335 + ffado = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 336 + ffmpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 337 + ffmpeg_0_6_90 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 338 + ffmpeg_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 339 + fileschanged = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 340 + fio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 341 + firefox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 342 + firefox13Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 343 + firefox17Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 344 + firefox36Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 345 + flann = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 346 + flashplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 347 + flightgear = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 348 + fltk13 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 349 + fltk20 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 350 + fluidsynth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 351 + fontforgeX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 352 + foo2zjs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 353 + foursuite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 354 + framac = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 355 + freecad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 356 + freeciv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 357 + freedink = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 358 + freeglut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 359 + freemind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 360 + freepv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 361 + freerdp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 362 + freerdpUnstable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 363 + freestyle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 364 + freetalk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 365 + freetts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 366 + fsg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 367 + fsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 368 + fspot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 369 + ftgl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 370 + ftgl212 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 371 + fuppes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 372 + fusesmb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 373 + gajim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 374 + gav = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 375 + gcj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 376 + gcj44 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 377 + gcj46 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 378 + gcl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 379 + GConf3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 380 + gdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 381 + gdbCross = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 382 + gdk_pixbuf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 383 + gdmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 384 + gdome2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 385 + gecko_mediaplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 386 + geeqie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 387 + gegl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 388 + gegl_0_0_22 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 389 + gemrb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 390 + gensgs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 391 + geoclue = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 392 + geoipjava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 393 + get_iplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 394 + getmail = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 395 + gftp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 396 + ghostOne = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 397 + ghostscriptX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 398 + giblib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 399 + gifsicle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 400 + gigedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 401 + gimp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 402 + gimp_2_8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 403 + gimpPlugins = { 404 + fourier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 405 + gap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 406 + gimplensfun = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 407 + gmic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 408 + lqrPlugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 409 + resynthesizer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 410 + texturize = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 411 + ufraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 412 + waveletSharpen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 413 + }; 414 + girara = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 415 + git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 416 + gitAndTools = { 417 + darcsToGit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 418 + git2cl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 419 + gitAnnex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 420 + gitBz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 421 + gitFastExport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 422 + gitFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 423 + gitSubtree = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 424 + gitSVN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 425 + qgit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 426 + qgitGit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 427 + stgit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 428 + svn2git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 429 + svn2git_kde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 430 + tig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 431 + }; 432 + giv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 433 + gkrellm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 434 + gl117 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 435 + glestae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 436 + glew = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 437 + glfw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 438 + glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 439 + glibmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 440 + glib_networking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 441 + globulation2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 442 + gltron = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 443 + glxinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 444 + gmime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 445 + gmtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 446 + gmu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 447 + gnash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 448 + gnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 449 + gnokii = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 450 + gnome = { 451 + at_spi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 452 + GConf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 453 + gconfmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 454 + gnome_control_center = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 455 + gnome_desktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 456 + gnome_doc_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 457 + gnome_icon_theme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 458 + gnome_keyring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 459 + gnome_menus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 460 + gnome_panel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 461 + gnome_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 462 + gnome_session = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 463 + gnome_settings_daemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 464 + gnome_vfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 465 + gnome_vfs_monikers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 466 + gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 467 + gtk_doc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 468 + gtkglext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 469 + gtkglextmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 470 + gtkhtml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 471 + gtkmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 472 + gtksourceview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 473 + gvfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 474 + libbonobo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 475 + libbonoboui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 476 + libglade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 477 + libglademm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 478 + libgnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 479 + libgnomecanvas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 480 + libgnomecanvasmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 481 + libgnomecups = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 482 + libgnomekbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 483 + libgnomeprint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 484 + libgnomeprintui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 485 + libgnomeui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 486 + libgtkhtml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 487 + libgweather = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 488 + libIDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 489 + libsoup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 490 + libunique = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 491 + libwnck = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 492 + metacity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 493 + nautilus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 494 + ORBit2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 495 + pango = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 496 + pangomm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 497 + python_rsvg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 498 + startup_notification = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 499 + vte = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 500 + zenity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 501 + }; 502 + gnome_mplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 503 + gnome_terminator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 504 + gnome_user_docs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 505 + gnonlin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 506 + gnucash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 507 + gnu = { 508 + hurdHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 509 + libpthreadHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 510 + mach = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 511 + machHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 512 + mig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 513 + mig_raw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 514 + }; 515 + gnumeric = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 516 + gnunet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 517 + gnunet08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 518 + gnupg2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 519 + gnuplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 520 + gob2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 521 + gobby5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 522 + gobjectIntrospection = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 523 + goffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 524 + goffice_0_9 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 525 + goldendict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 526 + golly = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 527 + goocanvas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 528 + googleearth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 529 + google_talk_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 530 + gosmore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 531 + gource = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 532 + gparted = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 533 + gpgme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 534 + gphoto2fs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 535 + gpscorrelate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 536 + gpsd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 537 + gqview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 538 + grantlee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 539 + graphicsmagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 540 + graphicsmagick137 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 541 + graphviz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 542 + graphviz_2_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 543 + grass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 544 + gravit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 545 + grip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 546 + grive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 547 + grub2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 548 + grub2_efi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 549 + gsettings_desktop_schemas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 550 + gsmartcontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 551 + gssdp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 552 + gst_ffmpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 553 + gst_plugins_bad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 554 + gst_plugins_base = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 555 + gst_plugins_good = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 556 + gst_plugins_ugly = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 557 + gst_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 558 + gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 559 + gtk3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 560 + gtkdatabox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 561 + gtkdialog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 562 + gtkgnutella = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 563 + gtkimageview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 564 + gtkmathview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 565 + gtkmm3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 566 + gtkmozembedsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 567 + gtkpod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 568 + gtksharp1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 569 + gtksharp2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 570 + gtksourceviewsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 571 + gtkspell = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 572 + gtkvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 573 + gtkwave = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 574 + gtmess = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 575 + gts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 576 + guileCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 577 + guileGnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 578 + guitone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 579 + gupnp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 580 + gupnp_igd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 581 + gupnptools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 582 + gutenprint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 583 + gutenprintBin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 584 + gv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 585 + gwenhywfar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 586 + gwrap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 587 + gwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 588 + gxneur = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 589 + hadoop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 590 + harfbuzz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 591 + haskellPackages = { 592 + accelerateCuda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 593 + accelerateExamples = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 594 + cairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 595 + Chart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 596 + cuda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 597 + diagrams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 598 + diagramsCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 599 + ghcMod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 600 + gio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 601 + glade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 602 + GLFW = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 603 + glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 604 + gloss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 605 + GLURaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 606 + GLUT = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 607 + GLUT_2_1_1_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 608 + GLUT_2_1_2_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 609 + GLUT_2_2_2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 610 + GLUT_2_3_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 611 + gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 612 + gtksourceview2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 613 + haskellPlatform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 614 + haskellPlatform_2009_2_0_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 615 + haskellPlatform_2010_1_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 616 + haskellPlatform_2010_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 617 + haskellPlatform_2011_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 618 + haskellPlatform_2011_2_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 619 + haskellPlatform_2011_4_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 620 + haskellPlatform_2012_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 621 + HGL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 622 + hmatrix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 623 + hp2anyGraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 624 + lambdacubeEngine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 625 + LambdaHack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 626 + leksah = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 627 + leksahServer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 628 + lhs2tex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 629 + ltk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 630 + OpenGL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 631 + OpenGL_2_2_1_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 632 + OpenGL_2_2_3_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 633 + OpenGL_2_4_0_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 634 + OpenGL_2_6_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 635 + OpenGLRaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 636 + pakcs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 637 + pango = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 638 + reactiveBananaWx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 639 + repaAlgorithms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 640 + repaExamples = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 641 + SDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 642 + SDLImage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 643 + SDLMixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 644 + SDLTtf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 645 + splot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 646 + svgcairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 647 + threadscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 648 + timeplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 649 + uhc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 650 + vacuumCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 651 + wx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 652 + wxc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 653 + wxcore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 654 + X11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 655 + X11Xft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 656 + xmobar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 657 + xmonad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 658 + xmonadContrib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 659 + xmonadExtras = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 660 + }; 661 + haxe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 662 + heimdall = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 663 + herqq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 664 + hevea = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 665 + hexen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 666 + highlight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 667 + hol_light = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 668 + homebank = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 669 + hplip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 670 + htmldoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 671 + httpfs2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 672 + hugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 673 + hwloc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 674 + hydraAntLogger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 675 + hydrogen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 676 + i3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 677 + i3lock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 678 + i7z = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 679 + icbm3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 680 + icecat3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 681 + icecat3Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 682 + icecat3Xul = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 683 + icecatXulrunner3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 684 + icedtea = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 685 + icewm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 686 + idutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 687 + ikiwiki = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 688 + imagemagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 689 + imagemagickBig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 690 + imlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 691 + imlib2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 692 + impressive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 693 + indilib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 694 + inkscape = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 695 + instead = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 696 + intelgen4asm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 697 + io = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 698 + ion3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 699 + iotop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 700 + iprover = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 701 + irrlicht3843 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 702 + irssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 703 + isabelle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 704 + isocodes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 705 + itk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 706 + itstool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 707 + jackaudio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 708 + jack_capture = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 709 + jackmeter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 710 + jags = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 711 + jamp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 712 + javaCup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 713 + jbidwatcher = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 714 + jboss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 715 + jboss_mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 716 + jbrout = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 717 + jclasslib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 718 + jdiskreport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 719 + jdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 720 + jedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 721 + jfsrec = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 722 + jigdo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 723 + jing_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 724 + jjtraveler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 725 + jnettop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 726 + jre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 727 + jrePlugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 728 + jruby165 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 729 + jscoverage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 730 + json_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 731 + julia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 732 + jwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 733 + k3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 734 + kaffe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 735 + kde3 = { 736 + arts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 737 + kdelibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 738 + }; 739 + kde4 = { 740 + akonadi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 741 + akunambol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 742 + amarok = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 743 + amor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 744 + ark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 745 + aurorae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 746 + bangarang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 747 + basket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 748 + blinken = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 749 + bluedevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 750 + calligra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 751 + cantor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 752 + cervisia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 753 + ColorSchemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 754 + desktopthemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 755 + digikam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 756 + dolphin_plugins_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 757 + dolphin_plugins_svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 758 + emoticons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 759 + filelight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 760 + filesharing = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 761 + gwenview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 762 + HighResolutionWallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 763 + IconThemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 764 + jovie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 765 + k3b = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 766 + kaccessible = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 767 + kadu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 768 + kalgebra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 769 + kalzium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 770 + kamera = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 771 + kanagram = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 772 + kapptemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 773 + kate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 774 + kbibtex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 775 + kbluetooth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 776 + kbruch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 777 + kcachegrind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 778 + kcalc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 779 + kcharselect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 780 + kcolorchooser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 781 + kcron = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 782 + kdeaccessibility = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 783 + kdeaccounts_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 784 + kdeadmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 785 + kdeartwork = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 786 + kde_baseapps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 787 + kdebindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 788 + kdeedu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 789 + kdegames = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 790 + kdegraphics = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 791 + kdegraphics_strigi_analyzer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 792 + kdegraphics_thumbnailers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 793 + kdelibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 794 + kdemultimedia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 795 + kdenetwork = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 796 + kdenlive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 797 + kdepim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 798 + kdepimlibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 799 + kdepim_runtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 800 + kdeplasma_addons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 801 + kde_runtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 802 + kdesdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 803 + kdesvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 804 + kdetoys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 805 + kdeutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 806 + kdevelop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 807 + kdevplatform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 808 + kde_wacomtablet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 809 + kdewebdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 810 + kde_workspace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 811 + kdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 812 + kdiff3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 813 + kdnssd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 814 + kfile_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 815 + kfilereplace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 816 + kfloppy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 817 + kgamma = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 818 + kgeography = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 819 + kget = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 820 + kgpg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 821 + khangman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 822 + kig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 823 + kile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 824 + kimagemapeditor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 825 + kioslave_perldoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 826 + kioslave_svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 827 + kipi_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 828 + kiten = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 829 + klettres = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 830 + klinkstatus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 831 + kmag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 832 + kmousetool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 833 + kmouth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 834 + kmplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 835 + kmplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 836 + kmtrace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 837 + kmymoney = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 838 + koffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 839 + kolourpaint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 840 + kommander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 841 + kompare = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 842 + konq_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 843 + konsole = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 844 + konversation = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 845 + kopete = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 846 + kpartloader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 847 + kppp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 848 + kprofilemethod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 849 + krdc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 850 + kremotecontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 851 + krename = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 852 + krfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 853 + kruler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 854 + krusader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 855 + ksaneplugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 856 + kscreensaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 857 + ksnapshot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 858 + ksshaskpass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 859 + kstars = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 860 + kstartperf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 861 + ksystemlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 862 + kteatime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 863 + ktimer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 864 + ktorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 865 + ktouch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 866 + kturtle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 867 + ktux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 868 + kuickshow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 869 + kuiviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 870 + kuser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 871 + kwallet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 872 + kwin_styles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 873 + kwooty = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 874 + kwordquiz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 875 + l10n.ar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 876 + l10n.bg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 877 + l10n.bs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 878 + l10n.ca = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 879 + l10n.ca_valencia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 880 + l10n.cs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 881 + l10n.da = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 882 + l10n.de = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 883 + l10n.el = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 884 + l10n.en_GB = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 885 + l10n.es = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 886 + l10n.et = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 887 + l10n.eu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 888 + l10n.fi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 889 + l10n.fr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 890 + l10n.ga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 891 + l10n.gl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 892 + l10n.he = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 893 + l10n.hr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 894 + l10n.hu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 895 + l10n.ia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 896 + l10n.id = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 897 + l10n.is = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 898 + l10n.it = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 899 + l10n.ja = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 900 + l10n.kk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 901 + l10n.km = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 902 + l10n.kn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 903 + l10n.ko = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 904 + l10n.lt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 905 + l10n.lv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 906 + l10n.nb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 907 + l10n.nds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 908 + l10n.nl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 909 + l10n.nn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 910 + l10n.pa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 911 + l10n.pl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 912 + l10n.pt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 913 + l10n.pt_BR = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 914 + l10n.ro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 915 + l10n.ru = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 916 + l10n.si = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 917 + l10n.sk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 918 + l10n.sl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 919 + l10n.sr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 920 + l10n.sv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 921 + l10n.th = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 922 + l10n.tr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 923 + l10n.ug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 924 + l10n.uk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 925 + l10n.wa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 926 + l10n.zh_CN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 927 + l10n.zh_TW = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 928 + libalkimia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 929 + libkdcraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 930 + libkdeedu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 931 + libkexiv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 932 + libkipi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 933 + libksane = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 934 + libktorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 935 + libkvkontakte = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 936 + liblikeback = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 937 + lokalize = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 938 + marble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 939 + mobipocket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 940 + networkmanagement = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 941 + okteta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 942 + okular = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 943 + parley = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 944 + partitionManager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 945 + polkit_kde_agent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 946 + poxml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 947 + printer_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 948 + psi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 949 + pykde4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 950 + qt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 951 + quassel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 952 + quasselClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 953 + quasselDaemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 954 + rekonq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 955 + rocs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 956 + rsibreak = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 957 + scripts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 958 + semnotes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 959 + skrooge = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 960 + smokegen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 961 + smokeqt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 962 + sounds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 963 + step = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 964 + strigi_analyzer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 965 + styles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 966 + superkaramba = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 967 + svgpart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 968 + sweeper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 969 + system_config_printer_kde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 970 + telepathy.accounts_kcm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 971 + telepathy.approver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 972 + telepathy.auth_handler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 973 + telepathy.call_ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 974 + telepathy.common_internals = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 975 + telepathy.contact_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 976 + telepathy.contact_list = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 977 + telepathy.contact_runner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 978 + telepathy.filetransfer_handler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 979 + telepathy.kded_integration_module = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 980 + telepathy.presence_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 981 + telepathy.send_file = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 982 + telepathy.telepathy_logger_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 983 + telepathy.text_ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 984 + umbrello = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 985 + wallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 986 + WeatherWallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 987 + yakuake = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 988 + zanshin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 989 + }; 990 + keen4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 991 + keepassx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 992 + keepnote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 993 + keymon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 994 + keynav = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 995 + kicad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 996 + kino = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 997 + klavaro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 998 + kobodeluxe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 999 + kona = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1000 + kvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1001 + larswm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1002 + lash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1003 + lastwatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1004 + latencytop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1005 + lazarus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1006 + ldcpp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1007 + ledger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1008 + ledger3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1009 + leiningen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1010 + lensfun = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1011 + leo2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1012 + lesstif = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1013 + lesstif93 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1014 + libao = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1015 + libassuan2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1016 + libatasmart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1017 + libbluedevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1018 + libbluray = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1019 + libcanberra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1020 + libcdr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1021 + libchamplain = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1022 + libchamplain_0_6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1023 + libcm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1024 + libcroco = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1025 + libcxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1026 + libdbusmenu_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1027 + libdevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1028 + libdmtx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1029 + libdrm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1030 + libextractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1031 + libfixposix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1032 + libgdata = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1033 + libgdata_0_6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1034 + libgdiplus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1035 + libgnome_keyring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1036 + libgnome_keyring3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1037 + libgpod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1038 + libgsf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1039 + libgtop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1040 + libgweather = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1041 + libimobiledevice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1042 + libinfinity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1043 + liblapack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1044 + liblastfm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1045 + liblqr1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1046 + libmatchbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1047 + libmatthew_java = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1048 + libmms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1049 + libmusclecard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1050 + libnice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1051 + libnotify = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1052 + liboil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1053 + libopensc_dnie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1054 + libplist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1055 + libpseudo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1056 + libqalculate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1057 + libQGLViewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1058 + librecad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1059 + libreoffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1060 + librsvg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1061 + libsexy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1062 + libstartup_notification = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1063 + libtiger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1064 + libtorrentRasterbar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1065 + libva = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1066 + libvdpau = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1067 + libviper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1068 + libvirt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1069 + libvisio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1070 + libvncserver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1071 + libvterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1072 + libwmf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1073 + libwnck3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1074 + libwpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1075 + libwpd_08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1076 + libwpg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1077 + libxklavier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1078 + libxml2Python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1079 + libxmlxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1080 + lilv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1081 + lilypond = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1082 + lincity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1083 + lingot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1084 + links2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1085 + linphone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1086 + linux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1087 + linuxConsoleTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1088 + linuxPackages = { 1089 + acpi_call = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1090 + atheros = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1091 + ati_drivers_x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1092 + aufs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1093 + aufs_util = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1094 + bbswitch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1095 + broadcom_sta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1096 + cryptodev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1097 + e1000e = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1098 + exmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1099 + frandom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1100 + iscsitarget = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1101 + iwlwifi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1102 + klibc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1103 + kqemu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1104 + ndiswrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1105 + nvidia_x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1106 + nvidia_x11_legacy173 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1107 + nvidia_x11_legacy96 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1108 + openafsClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1109 + openiscsi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1110 + ov511 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1111 + perf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1112 + spl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1113 + sysprof = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1114 + systemtap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1115 + tp_smapi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1116 + v86d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1117 + virtualbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1118 + virtualboxGuestAdditions = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1119 + wis_go7007 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1120 + zfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1121 + }; 1122 + linuxsampler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1123 + liquidwar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1124 + llvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1125 + lmms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1126 + log4cxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1127 + logstalgica = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1128 + loudmouth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1129 + love = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1130 + lv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1131 + lyx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1132 + mailutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1133 + mars = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1134 + martyr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1135 + matchbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1136 + matita = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1137 + matita_130312 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1138 + maven = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1139 + maxima = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1140 + mc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1141 + mcabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1142 + mcelog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1143 + mcomix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1144 + mcrl2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1145 + mdbtools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1146 + mdbtools_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1147 + mediastreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1148 + mediatomb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1149 + meld = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1150 + mercurial = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1151 + mercurialFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1152 + merkaartor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1153 + mesa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1154 + meshlab = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1155 + mess = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1156 + metaocaml_3_09 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1157 + mhwaveedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1158 + micropolis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1159 + midori = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1160 + midoriWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1161 + minecraft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1162 + miniHttpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1163 + mirage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1164 + mitscheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1165 + mjpegtools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1166 + mkvtoolnix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1167 + mlt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1168 + mmex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1169 + modemmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1170 + mod_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1171 + mod_wsgi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1172 + mongodb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1173 + mono = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1174 + monodevelop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1175 + monodoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1176 + monotone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1177 + monotoneViz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1178 + mountall = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1179 + mozart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1180 + mozilla = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1181 + mozplugger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1182 + mp3info = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1183 + mpc123 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1184 + mpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1185 + mpg321 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1186 + mpich2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1187 + MPlayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1188 + mrxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1189 + msilbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1190 + mtdutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1191 + multipath_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1192 + multisync = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1193 + mumble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1194 + mupdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1195 + mupen64plus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1196 + muscleframework = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1197 + muscletool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1198 + mutt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1199 + mygui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1200 + myguiSvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1201 + mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1202 + mysqlWorkbench = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1203 + mythtv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1204 + naev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1205 + navipowm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1206 + navit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1207 + nbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1208 + ncbiCTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1209 + netbeans = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1210 + netboot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1211 + netsurf.browser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1212 + networkmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1213 + networkmanagerapplet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1214 + networkmanager_pptp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1215 + networkmanager_pptp_gnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1216 + neverball = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1217 + nfsUtils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1218 + ngspice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1219 + ninka = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1220 + njam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1221 + nmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1222 + nodejs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1223 + nodePackages = { 1224 + abbrev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1225 + ansi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1226 + async = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1227 + backbone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1228 + bindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1229 + browserchannel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1230 + bson = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1231 + buffertools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1232 + bytes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1233 + commander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1234 + connect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1235 + cookie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1236 + crc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1237 + cssmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1238 + datetime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1239 + debug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1240 + diff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1241 + eyes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1242 + formidable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1243 + fresh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1244 + fstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1245 + glob = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1246 + hat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1247 + hiredis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1248 + inherits = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1249 + knox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1250 + less = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1251 + mime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1252 + minimatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1253 + mkdirp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1254 + mongodb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1255 + mrclean = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1256 + nopt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1257 + npm2nix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1258 + npmlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1259 + optimist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1260 + options = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1261 + osenv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1262 + pause = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1263 + policyfile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1264 + qs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1265 + rbytes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1266 + redis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1267 + request = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1268 + requirejs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1269 + rimraf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1270 + semver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1271 + send = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1272 + showdown = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1273 + sockjs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1274 + swig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1275 + tar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1276 + temp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1277 + timerstub = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1278 + tinycolor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1279 + underscore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1280 + vows = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1281 + which = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1282 + wordwrap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1283 + ws = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1284 + wu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1285 + xmlhttprequest = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1286 + zeparser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1287 + }; 1288 + notmuch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1289 + nova = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1290 + novaclient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1291 + nspluginwrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1292 + nss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1293 + nss_pam_ldapd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1294 + nssTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1295 + ntop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1296 + ntrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1297 + numeric = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1298 + nut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1299 + nut_2_6_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1300 + obexd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1301 + obex_data_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1302 + obexfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1303 + obexftp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1304 + obnam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1305 + ocaml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1306 + ocaml_3_08_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1307 + ocaml_3_10_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1308 + ocaml_3_11_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1309 + ocaml_4_00_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1310 + ocamlnat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1311 + ocamlPackages = { 1312 + camlidl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1313 + camlp5_5_strict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1314 + camlp5_5_transitional = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1315 + camlp5_6_strict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1316 + camlp5_6_transitional = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1317 + camlzip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1318 + camomile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1319 + camomile_0_8_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1320 + cryptokit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1321 + findlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1322 + gmetadom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1323 + lablgtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1324 + lablgtkmathview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1325 + menhir = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1326 + mldonkey = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1327 + ocaml_batteries = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1328 + ocaml_cryptgps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1329 + ocaml_expat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1330 + ocaml_extlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1331 + ocamlgraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1332 + ocaml_http = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1333 + ocaml_lwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1334 + ocaml_mysql = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1335 + ocamlnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1336 + ocaml_pcre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1337 + ocaml_react = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1338 + ocaml_sexplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1339 + ocaml_sqlite3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1340 + ocaml_ssl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1341 + ocaml_typeconv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1342 + ounit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1343 + pycaml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1344 + ulex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1345 + ulex08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1346 + }; 1347 + octave = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1348 + octaveHG = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1349 + offlineimap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1350 + ogre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1351 + ogrepaged = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1352 + ois = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1353 + omake = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1354 + oneteam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1355 + opa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1356 + opal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1357 + openbabel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1358 + openbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1359 + opencascade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1360 + opencsg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1361 + openct = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1362 + opencv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1363 + opencv_2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1364 + openfire = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1365 + openlierox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1366 + openobex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1367 + openoffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1368 + opensc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1369 + openscad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1370 + opensc_dnie_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1371 + openscenegraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1372 + openttd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1373 + opentyrian = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1374 + opera = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1375 + opkg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1376 + opusTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1377 + oraclejdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1378 + oraclejre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1379 + OVMF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1380 + oxygen_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1381 + pal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1382 + pam_console = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1383 + pam_usb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1384 + pan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1385 + pangoxsl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1386 + panomatic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1387 + paraview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1388 + parted = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1389 + parted_2_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1390 + path64 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1391 + pavucontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1392 + pcmciaUtils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1393 + pcsclite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1394 + pdf2djvu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1395 + pdfread = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1396 + pdftk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1397 + perlPackages = { 1398 + Autodia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1399 + GD = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1400 + GraphViz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1401 + InlineJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1402 + PerlMagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1403 + SQLTranslator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1404 + TextRecordParser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1405 + X11GUITest = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1406 + }; 1407 + petrifoo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1408 + pfstools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1409 + pgadmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1410 + philter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1411 + phonon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1412 + phonon_backend_gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1413 + phonon_backend_vlc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1414 + pianobooster = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1415 + picard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1416 + picolisp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1417 + pidgin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1418 + pidginlatex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1419 + pidginlatexSF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1420 + pidginmsnpecan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1421 + pidginotr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1422 + pidginsipe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1423 + pil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1424 + pinentry = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1425 + pinta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1426 + pioneers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1427 + pius = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1428 + plan9port = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1429 + plib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1430 + ploticus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1431 + pltScheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1432 + pmutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1433 + policykit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1434 + polkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1435 + polkit_gnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1436 + polkit_qt_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1437 + pommed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1438 + pong3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1439 + poppler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1440 + popplerQt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1441 + postgresql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1442 + pqiv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1443 + praat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1444 + prboom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1445 + prison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1446 + privateer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1447 + proxychains = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1448 + pstack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1449 + ptlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1450 + pulseaudio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1451 + pure = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1452 + puredata = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1453 + putty = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1454 + pycairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1455 + pycrypto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1456 + pycups = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1457 + pydb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1458 + pyexiv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1459 + pygame = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1460 + pygobject = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1461 + pygtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1462 + pyGtkGlade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1463 + pyIRCt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1464 + pyMAILt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1465 + pyopenssl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1466 + pyqt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1467 + pyrex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1468 + pyrex096 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1469 + pyside = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1470 + pysideApiextractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1471 + pysideGeneratorrunner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1472 + pysideShiboken = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1473 + pysideTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1474 + pystringtemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1475 + python26 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1476 + python27 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1477 + python26Full = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1478 + python27Full = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1479 + python26Packages = jobsForDerivations pkgs.python26Packages; 1480 + python27Packages = jobsForDerivations pkgs.python27Packages; 1481 + python3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1482 + pythonDBus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1483 + pythonIRClib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1484 + pythonmagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1485 + pythonSexy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1486 + pyx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1487 + pyxml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1488 + qca2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1489 + qca2_ossl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1490 + qcmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1491 + qemu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1492 + qemu_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1493 + qfsm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1494 + qgis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1495 + qi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1496 + qimageblitz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1497 + qjackctl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1498 + qjoypad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1499 + qjson = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1500 + qoauth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1501 + qrdecode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1502 + qrupdate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1503 + qsampler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1504 + qshowdiff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1505 + qsynth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1506 + qt3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1507 + qt47 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1508 + qt_gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1509 + qtpfsgui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1510 + qtractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1511 + qtscriptgenerator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1512 + quake3demo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1513 + quake3game = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1514 + qucs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1515 + quesoglc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1516 + qwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1517 + rabbitmq_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1518 + racer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1519 + racket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1520 + rakarrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1521 + rapcad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1522 + rapidsvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1523 + ratpoison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1524 + rawtherapee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1525 + rdesktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1526 + rdf4store = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1527 + rdiff_backup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1528 + RealPlayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1529 + recutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1530 + redshift = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1531 + relfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1532 + remmina = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1533 + reptyr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1534 + rhino = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1535 + rhpl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1536 + rigsofrods = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1537 + rili = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1538 + rLang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1539 + rockbox_utility = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1540 + rpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1541 + rrdtool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1542 + rssglx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1543 + rtmpdump = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1544 + rubber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1545 + rubyLibs.buildr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1546 + rubyLibs.rjb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1547 + rxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1548 + rxvt_unicode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1549 + s3cmd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1550 + sabnzbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1551 + sakura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1552 + salut_a_toi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1553 + samba = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1554 + saneFrontends = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1555 + satallax = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1556 + sauerbraten = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1557 + saxonb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1558 + sbcl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1559 + schroedinger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1560 + scilab = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1561 + scons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1562 + scorched3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1563 + scribus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1564 + scrot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1565 + scummvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1566 + SDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1567 + SDL_gfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1568 + SDL_image = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1569 + SDL_mixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1570 + SDL_net = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1571 + SDL_sound = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1572 + SDL_ttf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1573 + seeks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1574 + seg3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1575 + seleniumRCBin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1576 + seq24 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1577 + serd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1578 + sfml_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1579 + sgtpuzzles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1580 + shared_mime_info = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1581 + sharedobjects = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1582 + silgraphite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1583 + simgear = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1584 + simutrans = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1585 + sip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1586 + six = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1587 + skype = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1588 + slim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1589 + slock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1590 + smatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1591 + smbnetfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1592 + smpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1593 + snack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1594 + snd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1595 + sndBase = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1596 + sofia_sip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1597 + soi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1598 + sonic_visualiser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1599 + soprano = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1600 + soqt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1601 + sord = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1602 + sourceHighlight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1603 + spaceOrbit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1604 + speechd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1605 + speed_dreams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1606 + spice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1607 + spidermonkey_185 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1608 + spin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1609 + spotify = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1610 + spring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1611 + springLobby = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1612 + sratom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1613 + sshfsFuse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1614 + ssreflect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1615 + st = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1616 + stalin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1617 + stalonetray = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1618 + stardict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1619 + stardust = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1620 + stellarium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1621 + strigi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1622 + stumpwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1623 + stuntrally = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1624 + sublime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1625 + subversionClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1626 + suil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1627 + suitesparse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1628 + superTux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1629 + superTuxKart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1630 + surf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1631 + swh_lv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1632 + swiProlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1633 + swt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1634 + sylpheed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1635 + synergy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1636 + syslogng = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1637 + system_config_printer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1638 + systemd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1639 + t1lib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1640 + tabbed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1641 + tahoelafs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1642 + tailor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1643 + tangogps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1644 + taskjuggler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1645 + tbe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1646 + teamspeak_client = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1647 + teetertorture = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1648 + teeworlds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1649 + telepathy_farstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1650 + telepathy_gabble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1651 + telepathy_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1652 + telepathy_haze = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1653 + telepathy_logger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1654 + telepathy_mission_control = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1655 + telepathy_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1656 + telepathy_rakia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1657 + telepathy_salut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1658 + tennix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1659 + texDisser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1660 + texLive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1661 + texLiveBeamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1662 + texLiveCMSuper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1663 + texLiveContext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1664 + texLiveExtra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1665 + texLiveFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1666 + texLiveLatexXColor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1667 + texLiveModerncv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1668 + texLivePGF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1669 + texmacs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1670 + thunderbird = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1671 + tigervnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1672 + tightvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1673 + timidity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1674 + tk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1675 + tkabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1676 + tkcvs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1677 + tkgate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1678 + tkgate2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1679 + tomcat5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1680 + tomcat_connectors = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1681 + tomcat_mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1682 + torchat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1683 + torcs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1684 + tpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1685 + trackballs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1686 + trang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1687 + transmission = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1688 + transmission_remote_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1689 + trayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1690 + tremulous = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1691 + tribler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1692 + trigger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1693 + truecrypt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1694 + tulip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1695 + tvtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1696 + twinkle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1697 + uae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1698 + ubootGuruplug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1699 + ubootNanonote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1700 + udev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1701 + udev145 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1702 + udisks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1703 + ufoai = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1704 + ufraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1705 + ultimatestunts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1706 + ultrastardx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1707 + unclutter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1708 + unetbootin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1709 + unison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1710 + upower = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1711 + uqm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1712 + urbanterror = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1713 + usbmuxd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1714 + uzbl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1715 + v4l_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1716 + v8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1717 + vacuum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1718 + vala = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1719 + vala15 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1720 + vala16 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1721 + valgrind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1722 + valkyrie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1723 + vde2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1724 + vdpauinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1725 + vdrift = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1726 + vectoroids = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1727 + veracity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1728 + vfdecrypt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1729 + vice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1730 + vidalia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1731 + viewMtn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1732 + vigra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1733 + viking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1734 + vimHugeX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1735 + vimprobable2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1736 + vimprobable2Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1737 + virtinst = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1738 + virtmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1739 + virtualgl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1740 + virtviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1741 + vite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1742 + vkeybd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1743 + vlc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1744 + vncrec = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1745 + vorbisTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1746 + vrpn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1747 + vtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1748 + vue = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1749 + vwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1750 + w3cCSSValidator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1751 + warmux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1752 + warsow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1753 + warzone2100 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1754 + wavesurfer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1755 + wdfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1756 + webkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1757 + webkit_gtk2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1758 + webkitSVN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1759 + weechat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1760 + welkin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1761 + wesnoth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1762 + wicd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1763 + widelands = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1764 + wine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1765 + wineWarcraft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1766 + wings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1767 + wireshark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1768 + wkhtmltopdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1769 + wmiimenu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1770 + wmiiSnap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1771 + wmname = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1772 + wordnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1773 + wpa_supplicant_gui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1774 + wv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1775 + wv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1776 + wvdial = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1777 + wvstreams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1778 + wxGTK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1779 + wxGTK29 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1780 + wxmaxima = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1781 + x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1782 + x11_ssh_askpass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1783 + x11vnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1784 + x2vnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1785 + x2x = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1786 + xalanJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1787 + xaos = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1788 + xapianBindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1789 + xapianBindings10 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1790 + xara = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1791 + xautolock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1792 + Xaw3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1793 + xawtv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1794 + xbindkeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1795 + xboard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1796 + xbursttools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1797 + xchat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1798 + xchm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1799 + xclip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1800 + xcompmgr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1801 + xconq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1802 + xdaliclock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1803 + xdotool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1804 + xen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1805 + xercesJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1806 + xf86_input_mtrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1807 + xf86_input_multitouch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1808 + xf86_input_wacom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1809 + xf86_video_nested = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1810 + xf86_video_nouveau = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1811 + xfce = { 1812 + exo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1813 + garcon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1814 + gigolo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1815 + gtk_xfce_engine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1816 + gvfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1817 + libgdu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1818 + libxfce4ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1819 + libxfce4util = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1820 + libxfcegui4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1821 + mousepad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1822 + ristretto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1823 + terminal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1824 + thunar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1825 + thunar_volman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1826 + xfce4_appfinder = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1827 + xfce4_cpufreq_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1828 + xfce4icontheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1829 + xfce4mixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1830 + xfce4panel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1831 + xfce4_power_manager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1832 + xfce4session = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1833 + xfce4settings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1834 + xfce4_systemload_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1835 + xfce4_taskmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1836 + xfceutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1837 + xfconf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1838 + xfdesktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1839 + xfwm4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1840 + }; 1841 + xfig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1842 + xfontsel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1843 + xineLib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1844 + xineUI = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1845 + xkeyboard_config = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1846 + xlaunch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1847 + xlibs = { 1848 + libAppleWM = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1849 + libdmx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1850 + libWindowsWM = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1851 + libX11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1852 + libXaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1853 + libxcb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1854 + libXcomposite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1855 + libXcursor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1856 + libXdamage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1857 + libXext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1858 + libXfixes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1859 + libXft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1860 + libXi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1861 + libXinerama = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1862 + libxkbfile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1863 + libXmu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1864 + libXp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1865 + libXpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1866 + libXrandr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1867 + libXrender = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1868 + libXres = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1869 + libXScrnSaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1870 + libXt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1871 + libXtst = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1872 + libXv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1873 + libXvMC = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1874 + libXxf86dga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1875 + libXxf86misc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1876 + libXxf86vm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1877 + setxkbmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1878 + smproxy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1879 + twm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1880 + x11perf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1881 + xauth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1882 + xbacklight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1883 + xcbproto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1884 + xcbutil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1885 + xcbutilimage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1886 + xcbutilkeysyms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1887 + xcbutilrenderutil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1888 + xcbutilwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1889 + xclock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1890 + xcmsdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1891 + xcursorgen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1892 + xcursorthemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1893 + xdm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1894 + xdpyinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1895 + xdriinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1896 + xev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1897 + xeyes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1898 + xf86inputevdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1899 + xf86inputjoystick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1900 + xf86inputkeyboard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1901 + xf86inputmouse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1902 + xf86inputsynaptics = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1903 + xf86inputvmmouse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1904 + xf86inputvoid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1905 + xf86videoark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1906 + xf86videoast = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1907 + xf86videoati = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1908 + xf86videocirrus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1909 + xf86videodummy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1910 + xf86videofbdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1911 + xf86videogeode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1912 + xf86videoglide = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1913 + xf86videoglint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1914 + xf86videoi128 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1915 + xf86videointel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1916 + xf86videointel_2_14_901 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1917 + xf86videointel_2_17_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1918 + xf86videomach64 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1919 + xf86videomga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1920 + xf86videoneomagic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1921 + xf86videonewport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1922 + xf86videonv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1923 + xf86videoopenchrome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1924 + xf86videor128 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1925 + xf86videosavage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1926 + xf86videosiliconmotion = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1927 + xf86videosis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1928 + xf86videosuncg6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1929 + xf86videosunffb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1930 + xf86videotdfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1931 + xf86videotga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1932 + xf86videotrident = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1933 + xf86videov4l = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1934 + xf86videovesa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1935 + xf86videovmware = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1936 + xf86videovoodoo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1937 + xf86videowsfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1938 + xgamma = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1939 + xhost = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1940 + xinit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1941 + xinput = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1942 + xkbcomp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1943 + xkbevd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1944 + xkbutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1945 + xkill = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1946 + xlsatoms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1947 + xlsclients = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1948 + xmessage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1949 + xmodmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1950 + xorgserver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1951 + xorgserver_1_13_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1952 + xpr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1953 + xprop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1954 + xrandr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1955 + xrdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1956 + xrefresh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1957 + xset = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1958 + xsetroot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1959 + xvinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1960 + xwd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1961 + xwininfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1962 + xwud = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1963 + }; 1964 + xlockmore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1965 + xlsfonts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1966 + xmacro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1967 + xmlroff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1968 + xmoto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1969 + xmove = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1970 + xmpppy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1971 + xnee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1972 + xneur = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1973 + xneur_0_8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1974 + xonotic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1975 + xorg_sys_opengl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1976 + xorgVideoUnichrome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1977 + xoscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1978 + xosd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1979 + xournal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1980 + xpdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1981 + xpf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1982 + xplanet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1983 + xpra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1984 + xsane = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1985 + xscreensaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1986 + xsel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1987 + xsokoban = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1988 + xsynth_dssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1989 + xterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1990 + xtrace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1991 + xtreemfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1992 + xulrunner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1993 + xvfb_run = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1994 + xvidcap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1995 + xxdiff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1996 + yate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1997 + yoshimi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1998 + youtubeDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1999 + zathura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2000 + zathuraCollection = { 2001 + zathura_core = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2002 + zathura_djvu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2003 + zathura_pdf_poppler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2004 + zathura_ps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2005 + }; 2006 + zbar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2007 + zdoom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2008 + zgrviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2009 + zod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2010 + zoom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2011 + ZopeInterface = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2012 + zsnes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2013 + zynaddsubfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2014 + zziplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 2015 + })