diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index f1a906f9250..97b7cb51097 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -21,8 +21,8 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.4.0"; - sha256 = "93933d95cce5956ed99342fa342d01ce2bde8d2e4339afb97f23e0c0ec98875e"; + version = "1.4.21"; + sha256 = "94073842f4a81feee80bca590e1df73fc3cab47ba879407ceba2de48f30d84e2"; # relative location where the dropbox libraries are stored appdir = "opt/dropbox"; diff --git a/pkgs/applications/version-management/bazaar/default.nix b/pkgs/applications/version-management/bazaar/default.nix index 856320f0168..1eb114ecd8c 100644 --- a/pkgs/applications/version-management/bazaar/default.nix +++ b/pkgs/applications/version-management/bazaar/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pythonPackages }: stdenv.mkDerivation rec { - version = "2.3"; + version = "2.5"; release = ".1"; name = "bazaar-${version}${release}"; src = fetchurl { url = "http://launchpad.net/bzr/${version}/${version}${release}/+download/bzr-${version}${release}.tar.gz"; - sha256 = "07kx41w4gqv68bcykdflsg68wvpmcyqknzyb4vr1zqlf27hahp53"; + sha256 = "10krjbzia2avn09p0cdlbx2wya0r5v11w5ymvyl72af5dkx4cwwn"; }; buildInputs = [ pythonPackages.python pythonPackages.wrapPython ]; diff --git a/pkgs/build-support/release/source-tarball.nix b/pkgs/build-support/release/source-tarball.nix index 85d0b29f5b7..887bfb3125c 100644 --- a/pkgs/build-support/release/source-tarball.nix +++ b/pkgs/build-support/release/source-tarball.nix @@ -9,7 +9,7 @@ , versionSuffix ? if officialRelease then "" - else if src ? rev then "pre${toString src.rev}" else "" + else "pre${toString (src.rev or src.revCount or "")}" , src, stdenv, autoconf, automake, libtool , ... } @ args: diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index e2a9fd128e9..a2863663bea 100644 --- a/pkgs/development/compilers/fpc/lazarus.nix +++ b/pkgs/development/compilers/fpc/lazarus.nix @@ -38,8 +38,8 @@ rec { name = "lazarus-${version}"; meta = { description = "Lazarus graphical IDE for FreePascal language"; - homepage = http://www.lazarus.freepascal.org ; + homepage = http://www.lazarus.freepascal.org; maintainers = [args.lib.maintainers.raskin]; - platforms = args.lib.platforms.linux; + #platforms = args.lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/opa/default.nix b/pkgs/development/compilers/opa/default.nix index 2a54b90dda9..68413e3e25d 100644 --- a/pkgs/development/compilers/opa/default.nix +++ b/pkgs/development/compilers/opa/default.nix @@ -48,13 +48,12 @@ stdenv.mkDerivation rec { ''; meta = { - description = "Opa is a concise and elegant language for writing distributed web applications. Both client and server sides."; + description = "A concise and elegant language for writing distributed web applications"; longDescription = '' - Opa is a new generation of web development platform that lets you write distributed - web applications using a single technology. Among the the many features of Opa are these: - Opa is concise, simple, concurrent, dynamically distributed, and secure. + Opa is a new generation of web development platform that lets you write distributed + web applications using a single technology. Among the the many features of Opa are these: + Opa is concise, simple, concurrent, dynamically distributed, and secure. ''; - homepage = http://opalang.org/; license = stdenv.lib.licenses.gpl3; maintainers = [ stdenv.lib.maintainers.kkallio ]; diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 3fe753a5a6f..f264e4179e7 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -68,6 +68,8 @@ let rm -rf "$out/lib/python${majorVersion}/test" ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb${majorVersion} + mv $out/share/man/man1/{python.1,python2.6.1} + ln -s $out/share/man/man1/{python2.6.1,python.1} ''; passthru = { diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index 7e28cdc1db7..9fb2ab377df 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -76,6 +76,7 @@ let rm -rf "$out/lib/python${majorVersion}/test" ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb${majorVersion} + ln -s $out/share/man/man1/{python2.7.1.gz,python.1.gz} ''; passthru = { diff --git a/pkgs/development/interpreters/python/wrapper.nix b/pkgs/development/interpreters/python/wrapper.nix index f4892f92b41..0f2f46cd568 100644 --- a/pkgs/development/interpreters/python/wrapper.nix +++ b/pkgs/development/interpreters/python/wrapper.nix @@ -1,12 +1,12 @@ # Create a python that knows about additional python packages via # PYTHONPATH -{stdenv, python, makeWrapper, extraLibs ? []}: +{ stdenv, python, makeWrapper, recursivePthLoader, extraLibs ? [] }: stdenv.mkDerivation { name = "python-${python.version}-wrapper"; - propagatedBuildInputs = [python makeWrapper] ++ extraLibs; + propagatedBuildInputs = extraLibs ++ [ python makeWrapper recursivePthLoader ]; unpackPhase = "true"; installPhase = '' diff --git a/pkgs/development/libraries/haskell/cipher-rc4/default.nix b/pkgs/development/libraries/haskell/cipher-rc4/default.nix new file mode 100644 index 00000000000..234491cde36 --- /dev/null +++ b/pkgs/development/libraries/haskell/cipher-rc4/default.nix @@ -0,0 +1,13 @@ +{ cabal }: + +cabal.mkDerivation (self: { + pname = "cipher-rc4"; + version = "0.1.2"; + sha256 = "0nyrqms7h3hq236h03sjjjqdcxn3iz3fg4ifqj43f4nb8gv0ifb1"; + meta = { + homepage = "http://github.com/vincenthz/hs-cipher-rc4"; + description = "Fast RC4 cipher implementation"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/development/libraries/haskell/clientsession/default.nix b/pkgs/development/libraries/haskell/clientsession/default.nix index 82c735b731f..81ae5ebddb0 100644 --- a/pkgs/development/libraries/haskell/clientsession/default.nix +++ b/pkgs/development/libraries/haskell/clientsession/default.nix @@ -1,14 +1,14 @@ -{ cabal, base64Bytestring, cereal, cprngAes, cryptoApi -, cryptocipher, entropy, skein, tagged +{ cabal, base64Bytestring, cereal, cipherAes, cprngAes, cryptoApi +, entropy, skein, tagged }: cabal.mkDerivation (self: { pname = "clientsession"; - version = "0.8.0.2"; - sha256 = "189v030g23lvky4vccdaw3p0p6drn26zly80a8n9bbn7b8kbfh4r"; + version = "0.8.1"; + sha256 = "1x4qfm4hkvm3xmn7hnvcx1j900g97qhks66xzik1wvsjy3piwpgd"; buildDepends = [ - base64Bytestring cereal cprngAes cryptoApi cryptocipher entropy - skein tagged + base64Bytestring cereal cipherAes cprngAes cryptoApi entropy skein + tagged ]; meta = { homepage = "http://github.com/yesodweb/clientsession/tree/master"; diff --git a/pkgs/development/libraries/haskell/crypto-conduit/default.nix b/pkgs/development/libraries/haskell/crypto-conduit/default.nix index 9d7ad082530..d22bfa840e7 100644 --- a/pkgs/development/libraries/haskell/crypto-conduit/default.nix +++ b/pkgs/development/libraries/haskell/crypto-conduit/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "crypto-conduit"; - version = "0.4.2"; - sha256 = "0kg99kvpm5h8v28sylrp9z868ksz5737377akqy09y90xzb8pak3"; + version = "0.4.3"; + sha256 = "0h9dmr88hqmz2876mlnzz8s5kmi368zs9pljvvmb9vn7m44gpyrk"; buildDepends = [ cereal conduit cryptoApi transformers ]; meta = { homepage = "https://github.com/meteficha/crypto-conduit"; diff --git a/pkgs/development/libraries/haskell/crypto-numbers/default.nix b/pkgs/development/libraries/haskell/crypto-numbers/default.nix new file mode 100644 index 00000000000..70cd3f44252 --- /dev/null +++ b/pkgs/development/libraries/haskell/crypto-numbers/default.nix @@ -0,0 +1,14 @@ +{ cabal, cryptoRandomApi, vector }: + +cabal.mkDerivation (self: { + pname = "crypto-numbers"; + version = "0.1.3"; + sha256 = "115lgnay3ly5r53flh3v5jygqks0rg1i8qmbvrqf9nkmnmw6a5x1"; + buildDepends = [ cryptoRandomApi vector ]; + meta = { + homepage = "http://github.com/vincenthz/hs-crypto-numbers"; + description = "Cryptographic numbers: functions and algorithms"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/development/libraries/haskell/crypto-pubkey/default.nix b/pkgs/development/libraries/haskell/crypto-pubkey/default.nix new file mode 100644 index 00000000000..dc6d83a765d --- /dev/null +++ b/pkgs/development/libraries/haskell/crypto-pubkey/default.nix @@ -0,0 +1,18 @@ +{ cabal, cryptohash, cryptoNumbers, cryptoPubkeyTypes +, cryptoRandomApi +}: + +cabal.mkDerivation (self: { + pname = "crypto-pubkey"; + version = "0.1.2"; + sha256 = "1law5l7j0r0v89dnibmaipjp0yshffq10xs4rvg2j247v29lhns5"; + buildDepends = [ + cryptohash cryptoNumbers cryptoPubkeyTypes cryptoRandomApi + ]; + meta = { + homepage = "http://github.com/vincenthz/hs-crypto-pubkey"; + description = "Public Key cryptography"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/development/libraries/haskell/cryptocipher/default.nix b/pkgs/development/libraries/haskell/cryptocipher/default.nix index 89b098173ec..275622d3cad 100644 --- a/pkgs/development/libraries/haskell/cryptocipher/default.nix +++ b/pkgs/development/libraries/haskell/cryptocipher/default.nix @@ -1,19 +1,20 @@ -{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive -, tagged, vector +{ cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi +, cryptoPubkeyTypes, primitive, tagged, vector }: cabal.mkDerivation (self: { pname = "cryptocipher"; - version = "0.3.7"; - sha256 = "14qhi3969q1h9n85flb7wwsr50gdn63q7pmcpm2npy5vkp34lkp5"; + version = "0.4.0"; + sha256 = "1qbnhzbzypin7h62sn2sibij7clsgmaiq24q3xhgbjrirb6bhqf0"; isLibrary = true; isExecutable = true; buildDepends = [ - cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector + cereal cipherAes cipherRc4 cpu cryptoApi cryptoPubkeyTypes + primitive tagged vector ]; meta = { homepage = "http://github.com/vincenthz/hs-cryptocipher"; - description = "Symmetrical Block, Stream and PubKey Ciphers"; + description = "Symmetrical block and stream ciphers"; license = self.stdenv.lib.licenses.bsd3; platforms = self.ghc.meta.platforms; maintainers = [ self.stdenv.lib.maintainers.andres ]; diff --git a/pkgs/development/libraries/haskell/hakyll/default.nix b/pkgs/development/libraries/haskell/hakyll/default.nix index 50ff535d874..9b708eff020 100644 --- a/pkgs/development/libraries/haskell/hakyll/default.nix +++ b/pkgs/development/libraries/haskell/hakyll/default.nix @@ -1,16 +1,19 @@ -{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash -, filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase -, regexTdfa, snapCore, snapServer, tagsoup, text, time +{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs +, cryptohash, deepseq, filepath, httpConduit, httpTypes, lrucache +, mtl, pandoc, parsec, random, regexBase, regexTdfa, snapCore +, snapServer, tagsoup, text, time }: cabal.mkDerivation (self: { pname = "hakyll"; - version = "3.5.2.1"; - sha256 = "1fp7jak2sfznvg3lfyjqy13m1iq9821mdq6n5qmqz5dh5b960iv4"; + version = "4.0.0.0"; + sha256 = "165r9x158nnnwzd1cxymskkxvfhxsnpam8bi3gjy8bql8arsibzr"; + isLibrary = true; + isExecutable = true; buildDepends = [ - binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet - lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer - tagsoup text time + binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq + filepath httpConduit httpTypes lrucache mtl pandoc parsec random + regexBase regexTdfa snapCore snapServer tagsoup text time ]; meta = { homepage = "http://jaspervdj.be/hakyll"; diff --git a/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix b/pkgs/development/libraries/haskell/hashable/1.2.0.5.nix similarity index 81% rename from pkgs/development/libraries/haskell/hashable/1.2.0.3.nix rename to pkgs/development/libraries/haskell/hashable/1.2.0.5.nix index 43d99b63d5a..0547fd67b1f 100644 --- a/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix +++ b/pkgs/development/libraries/haskell/hashable/1.2.0.5.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "hashable"; - version = "1.2.0.3"; - sha256 = "0q4zl2mry6qfp9vln6pxmgqik7szv1sh7if55gydnxln1ybvvgmp"; + version = "1.2.0.5"; + sha256 = "0frqr294bsx4i21xxd5pw59xpaf0nww0dh4bqn0ywblsm9c7nyqh"; buildDepends = [ text ]; meta = { homepage = "http://github.com/tibbe/hashable"; diff --git a/pkgs/development/libraries/haskell/hs-bibutils/default.nix b/pkgs/development/libraries/haskell/hs-bibutils/default.nix index 8acb621fe3f..b9f3eb3cb8e 100644 --- a/pkgs/development/libraries/haskell/hs-bibutils/default.nix +++ b/pkgs/development/libraries/haskell/hs-bibutils/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "hs-bibutils"; - version = "4.15"; - sha256 = "1h2vqi6ymhx9wpfv5qzvq4fhc4iand93shsncp8nszk64acmz9z9"; + version = "4.16"; + sha256 = "0501fqv0xlwdmpg65s3rr0fns6gqq15x2zq2a8915n3dvipfkixb"; buildDepends = [ syb ]; meta = { homepage = "http://gorgias.mine.nu/repos/hs-bibutils/"; diff --git a/pkgs/development/libraries/haskell/http-conduit/default.nix b/pkgs/development/libraries/haskell/http-conduit/default.nix index 5009d4132de..b9f47b44006 100644 --- a/pkgs/development/libraries/haskell/http-conduit/default.nix +++ b/pkgs/development/libraries/haskell/http-conduit/default.nix @@ -1,21 +1,23 @@ { cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring , blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate , conduit, cookie, cprngAes, dataDefault, deepseq, failure -, httpTypes, liftedBase, monadControl, mtl, network, regexCompat -, resourcet, socks, text, time, tls, tlsExtra, transformers -, transformersBase, utf8String, void, zlibConduit +, filepath, httpTypes, liftedBase, mimeTypes, monadControl, mtl +, network, random, regexCompat, resourcet, socks, text, time, tls +, tlsExtra, transformers, transformersBase, utf8String, void +, zlibConduit }: cabal.mkDerivation (self: { pname = "http-conduit"; - version = "1.8.6.3"; - sha256 = "0ykwfii3qcj77ai0jafgbf5017mckz51gmbk3m8kwm1z6dalb27r"; + version = "1.8.7"; + sha256 = "12v5rxp4dx6glyijygpp7r7b5b6mscclgfp2cbii78m3hgld097i"; buildDepends = [ asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder blazeBuilderConduit caseInsensitive certificate conduit cookie - cprngAes dataDefault deepseq failure httpTypes liftedBase - monadControl mtl network regexCompat resourcet socks text time tls - tlsExtra transformers transformersBase utf8String void zlibConduit + cprngAes dataDefault deepseq failure filepath httpTypes liftedBase + mimeTypes monadControl mtl network random regexCompat resourcet + socks text time tls tlsExtra transformers transformersBase + utf8String void zlibConduit ]; meta = { homepage = "http://www.yesodweb.com/book/http-conduit"; diff --git a/pkgs/development/libraries/haskell/mime-types/default.nix b/pkgs/development/libraries/haskell/mime-types/default.nix index 75eb11e6a12..1bde4861b3a 100644 --- a/pkgs/development/libraries/haskell/mime-types/default.nix +++ b/pkgs/development/libraries/haskell/mime-types/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "mime-types"; - version = "0.1.0.1"; - sha256 = "1a34ckmv8qcyk38jydxwph59zcrhnwaah1h6pzn112kysjqjgcsl"; + version = "0.1.0.2"; + sha256 = "1pkhr8k23386qwa1wmlrcilz75di2l8n5kc4n8pnia05p49akfcs"; buildDepends = [ text ]; meta = { homepage = "https://github.com/yesodweb/wai"; diff --git a/pkgs/development/libraries/haskell/network/2.4.0.1.nix b/pkgs/development/libraries/haskell/network/2.4.1.0.nix similarity index 80% rename from pkgs/development/libraries/haskell/network/2.4.0.1.nix rename to pkgs/development/libraries/haskell/network/2.4.1.0.nix index e0aa44c38bd..9d5ac3abe78 100644 --- a/pkgs/development/libraries/haskell/network/2.4.0.1.nix +++ b/pkgs/development/libraries/haskell/network/2.4.1.0.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "network"; - version = "2.4.0.1"; - sha256 = "00jj3pf2gchkx5wmipm2ijxcmhy37g86ggnp6pb92i5nmb93h1iw"; + version = "2.4.1.0"; + sha256 = "0m44iqlcnpsaa3iqxb4wbx2l1k2ycxzq8v07bwz7br7yyikv16y3"; buildDepends = [ parsec ]; meta = { homepage = "https://github.com/haskell/network"; diff --git a/pkgs/development/libraries/haskell/persistent/default.nix b/pkgs/development/libraries/haskell/persistent/default.nix index a45dbea57ae..83bc9f53951 100644 --- a/pkgs/development/libraries/haskell/persistent/default.nix +++ b/pkgs/development/libraries/haskell/persistent/default.nix @@ -6,8 +6,8 @@ cabal.mkDerivation (self: { pname = "persistent"; - version = "1.1.3.2"; - sha256 = "1q8p5nxsf9fjhsyy1lha852f7vssp9mz6l24gg47mgv6y5mm9myv"; + version = "1.1.4"; + sha256 = "1frxhyyp8l5xvq5h9zf730c7kpnrryw2mw8mpnav2bs5g6rmmrgj"; buildDepends = [ aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit liftedBase monadControl monadLogger pathPieces poolConduit diff --git a/pkgs/development/libraries/haskell/smallcheck/default.nix b/pkgs/development/libraries/haskell/smallcheck/default.nix index 1086a1929a8..a11eb501a86 100644 --- a/pkgs/development/libraries/haskell/smallcheck/default.nix +++ b/pkgs/development/libraries/haskell/smallcheck/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "smallcheck"; - version = "0.6.1"; - sha256 = "1p2bsc08lcyzmqdjc5qsr60dr03kvc8xw7kk4lbi9cnn9s9w90vb"; + version = "0.6.2"; + sha256 = "0yz7an3k71ia7sgs8xpkh37xz9ipsnbf13680185cij8llq8zbyr"; buildDepends = [ dlist ]; meta = { homepage = "https://github.com/feuerbach/smallcheck"; diff --git a/pkgs/development/libraries/haskell/system-fileio/default.nix b/pkgs/development/libraries/haskell/system-fileio/default.nix index 7b1f7d7bcfd..f61dedb7b8c 100644 --- a/pkgs/development/libraries/haskell/system-fileio/default.nix +++ b/pkgs/development/libraries/haskell/system-fileio/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "system-fileio"; - version = "0.3.10"; - sha256 = "1f8si6m62nxzj71jgyhxl38szmw8wr3frvgih596vfjxwdhqpkq4"; + version = "0.3.11"; + sha256 = "0hnjrzhzbqx9l93c8dnl5b54f72ki584cn3jh8m6z56x2lrs24zb"; buildDepends = [ systemFilepath text time ]; meta = { homepage = "https://john-millikin.com/software/haskell-filesystem/"; diff --git a/pkgs/development/libraries/haskell/tls-extra/default.nix b/pkgs/development/libraries/haskell/tls-extra/default.nix index f2017af8f80..5bcce9df16b 100644 --- a/pkgs/development/libraries/haskell/tls-extra/default.nix +++ b/pkgs/development/libraries/haskell/tls-extra/default.nix @@ -1,16 +1,17 @@ -{ cabal, certificate, cipherAes, cryptoApi, cryptocipher -, cryptohash, mtl, network, pem, text, time, tls, vector +{ cabal, certificate, cipherAes, cipherRc4, cryptohash +, cryptoPubkey, cryptoRandomApi, mtl, network, pem, text, time, tls +, vector }: cabal.mkDerivation (self: { pname = "tls-extra"; - version = "0.5.1"; - sha256 = "0a977qy6ig4bhgsl6y5iw0xv52yswmcc2x37ypm1601wikjv38x3"; + version = "0.6.0"; + sha256 = "11cf91cgbyp4xzbr3n9h20rvbb6756r9dk74r5w158f3xmlgk5nx"; isLibrary = true; isExecutable = true; buildDepends = [ - certificate cipherAes cryptoApi cryptocipher cryptohash mtl network - pem text time tls vector + certificate cipherAes cipherRc4 cryptohash cryptoPubkey + cryptoRandomApi mtl network pem text time tls vector ]; meta = { homepage = "http://github.com/vincenthz/hs-tls"; diff --git a/pkgs/development/libraries/haskell/tls/default.nix b/pkgs/development/libraries/haskell/tls/default.nix index fbd20bebdf1..29b6b11d791 100644 --- a/pkgs/development/libraries/haskell/tls/default.nix +++ b/pkgs/development/libraries/haskell/tls/default.nix @@ -1,17 +1,15 @@ -{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash -, mtl, network +{ cabal, cereal, certificate, cryptohash, cryptoPubkey +, cryptoRandomApi, mtl, network }: cabal.mkDerivation (self: { pname = "tls"; - version = "1.0.3"; - sha256 = "14wgwz032skkgkxg2lyh8kwg1fkapmlg2jh74czbacvnssc2iidb"; - isLibrary = true; - isExecutable = true; + version = "1.1.1"; + sha256 = "0ji83b5z3v6f6a6rgyj5xkjh9vvsqckr7ymzjnhb4zqf0mgymypq"; buildDepends = [ - cereal certificate cryptoApi cryptocipher cryptohash mtl network + cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl + network ]; - jailbreak = true; meta = { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS/SSL protocol native implementation (Server and Client)"; diff --git a/pkgs/development/libraries/haskell/warp/default.nix b/pkgs/development/libraries/haskell/warp/default.nix index edd1dfd1992..6a36e873ca6 100644 --- a/pkgs/development/libraries/haskell/warp/default.nix +++ b/pkgs/development/libraries/haskell/warp/default.nix @@ -5,8 +5,8 @@ cabal.mkDerivation (self: { pname = "warp"; - version = "1.3.7"; - sha256 = "06648wqiwlcsvd41qdqdbgn1zcq890iq39zsxi24vf4s8q7jnzyf"; + version = "1.3.7.1"; + sha256 = "0kabcxzjc686iayhxln2cmnxm3vk3h0685n4d4ybprv5h1nc6ghl"; buildDepends = [ blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable httpTypes liftedBase network networkConduit simpleSendfile diff --git a/pkgs/development/libraries/libnatspec/default.nix b/pkgs/development/libraries/libnatspec/default.nix index fbab569e38c..985745c3898 100644 --- a/pkgs/development/libraries/libnatspec/default.nix +++ b/pkgs/development/libraries/libnatspec/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, popt }: +{ stdenv, fetchurl, popt, libiconv }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (rec { name = "libnatspec-0.2.6"; src = fetchurl { @@ -16,4 +16,8 @@ stdenv.mkDerivation rec { platforms = stdenv.lib.platforms.unix; maintainers = [ stdenv.lib.maintainers.urkud ]; }; -} +} // stdenv.lib.optionalAttrs (!stdenv.isLinux) { + NIX_CFLAGS_COMPILE = "-I${libiconv}/include"; + + NIX_CFLAGS_LINK = "-L${libiconv}/lib -liconv"; +}) diff --git a/pkgs/development/libraries/ncbi/default.nix b/pkgs/development/libraries/ncbi/default.nix index 0b795e78ad5..a74cd81854e 100644 --- a/pkgs/development/libraries/ncbi/default.nix +++ b/pkgs/development/libraries/ncbi/default.nix @@ -49,6 +49,6 @@ rec { maintainers = [ a.lib.maintainers.raskin ]; - platforms = a.lib.platforms.linux ; + #platforms = a.lib.platforms.linux ; }; } diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix index 0fd4929bda7..c675116f88a 100644 --- a/pkgs/development/mobile/titaniumenv/build-app.nix +++ b/pkgs/development/mobile/titaniumenv/build-app.nix @@ -1,7 +1,7 @@ {stdenv, androidsdk, titaniumsdk, xcodewrapper}: { appId, name, src, target, androidPlatformVersions ? [ "8" ] , release ? false, androidKeyStore ? null, androidKeyAlias ? null, androidKeyStorePassword ? null -, iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null +, iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null, iosDistribute ? false }: assert (release && target == "android") -> androidKeyStore != null && androidKeyAlias != null && androidKeyStorePassword != null; @@ -12,9 +12,12 @@ let platformVersions = androidPlatformVersions; useGoogleAPIs = true; }; + + deleteKeychain = "security delete-keychain $keychainName"; in stdenv.mkDerivation { - inherit name src; + name = stdenv.lib.replaceChars [" "] [""] name; + inherit src; buildInputs = [] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") xcodewrapper; @@ -25,13 +28,12 @@ stdenv.mkDerivation { ${if target == "android" then if release then - "${titaniumsdk}/mobilesdk/*/*/android/builder.py distribute ${name} ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId} ${androidKeyStore} ${androidKeyStorePassword} ${androidKeyAlias} $out" + ''${titaniumsdk}/mobilesdk/*/*/android/builder.py distribute "${name}" ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId} ${androidKeyStore} ${androidKeyStorePassword} ${androidKeyAlias} $out'' else - "${titaniumsdk}/mobilesdk/*/*/android/builder.py build ${name} ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId}" + ''${titaniumsdk}/mobilesdk/*/*/android/builder.py build "${name}" ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId}'' else if target == "iphone" then - if release then - '' + if iosDistribute then '' export HOME=/Users/$(whoami) export keychainName=$(basename $out) @@ -51,11 +53,39 @@ stdenv.mkDerivation { cp ${iosKeyFile} "$HOME/Library/MobileDevice/Provisioning Profiles/$provisioningId.mobileprovision" fi - ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py adhoc 6.0 $(pwd) ${appId} ${name} "$provisioningId" "${iosCertificateName}" universal "$HOME/Library/Keychains/$keychainName" + ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py distribute 6.0 $(pwd) ${appId} "${name}" "$provisioningId" "${iosCertificateName}" $out universal "$HOME/Library/Keychains/$keychainName" # Remove our generated keychain - security delete-keychain $keychainName + ${deleteKeychain} + '' + else + if release then + '' + export HOME=/Users/$(whoami) + export keychainName=$(basename $out) + + # Create a keychain with the component hash name (should always be unique) + security create-keychain -p "" $keychainName + security default-keychain -s $keychainName + security unlock-keychain -p "" $keychainName + security import ${iosCertificate} -k $keychainName -P "${iosCertificatePassword}" -A + + provisioningId=$(grep UUID -A1 -a ${iosKeyFile} | grep -o "[-A-Z0-9]\{36\}") + + # Ensure that the requested provisioning profile can be found + + if [ ! -f "$HOME/Library/MobileDevice/Provisioning Profiles" ] + then + mkdir -p "$HOME/Library/MobileDevice/Provisioning Profiles" + cp ${iosKeyFile} "$HOME/Library/MobileDevice/Provisioning Profiles/$provisioningId.mobileprovision" + fi + + ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py adhoc 6.0 $(pwd) ${appId} "${name}" "$provisioningId" "${iosCertificateName}" universal "$HOME/Library/Keychains/$keychainName" + + # Remove our generated keychain + + ${deleteKeychain} '' else '' @@ -66,7 +96,7 @@ stdenv.mkDerivation { cp -av * $out cd $out - ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py build 6.0 $(pwd) ${appId} ${name} + ${titaniumsdk}/mobilesdk/*/*/iphone/builder.py build 6.0 $(pwd) ${appId} "${name}" '' else throw "Target: ${target} is not supported!"} @@ -84,4 +114,6 @@ stdenv.mkDerivation { else if target == "iphone" then "" else throw "Target: ${target} is not supported!"} ''; + + failureHook = stdenv.lib.optionalString (release && target == "iphone") deleteKeychain; } diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk.nix index 5e1943b1bdc..d3831a9c2be 100644 --- a/pkgs/development/mobile/titaniumenv/titaniumsdk.nix +++ b/pkgs/development/mobile/titaniumenv/titaniumsdk.nix @@ -53,5 +53,8 @@ stdenv.mkDerivation { --prefix PYTHONPATH : ${python.modules.sqlite3}/lib/python*/site-packages \ --prefix PATH : ${jdk}/bin \ --prefix JAVA_HOME : ${jdk} + '' + stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") '' + # 'ditto' utility is needed to copy stuff to the Xcode organizer. Dirty, but this allows it to work. + sed -i -e "s|ditto|/usr/bin/ditto|g" $out/mobilesdk/osx/*/iphone/builder.py ''; } diff --git a/pkgs/development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch b/pkgs/development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch new file mode 100644 index 00000000000..6b634d0d242 --- /dev/null +++ b/pkgs/development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch @@ -0,0 +1,12 @@ +diff -Naur Google-ProtocolBuffers-0.08-orig/lib/Google/ProtocolBuffers/Compiler.pm Google-ProtocolBuffers-0.08/lib/Google/ProtocolBuffers/Compiler.pm +--- Google-ProtocolBuffers-0.08-orig/lib/Google/ProtocolBuffers/Compiler.pm 2008-10-23 13:46:01.000000000 -0400 ++++ Google-ProtocolBuffers-0.08/lib/Google/ProtocolBuffers/Compiler.pm 2013-01-16 13:52:09.855063997 -0500 +@@ -16,7 +16,7 @@ + + my $grammar = <<'END_OF_GRAMMAR'; + +-proto : ++proto : + ## list of top level declarations. + ## Skip empty declarations and ";". + (message | extend | enum | import | package | option | service | syntax | ";")(s) /\Z/ diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index e007795105f..8a70741c36b 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -3,7 +3,7 @@ (http://pypi.python.org/pypi/setuptools/), which represents a large number of Python packages nowadays. */ -{ python, setuptools, wrapPython, lib, offlineDistutils, setuptoolsSite }: +{ python, setuptools, wrapPython, lib, offlineDistutils, recursivePthLoader }: { name, namePrefix ? "python-" @@ -48,16 +48,14 @@ python.stdenv.mkDerivation (attrs // { name = namePrefix + name; + # checkPhase after installPhase to run tests on installed packages phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase"; buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath; - # setuptoolsSite is responsible for loading pth files - propagatedBuildInputs = propagatedBuildInputs ++ [ setuptoolsSite ]; + propagatedBuildInputs = propagatedBuildInputs ++ [ recursivePthLoader ]; - buildInputStrings = map toString buildInputs; - - pythonPath = [ setuptools] ++ pythonPath; + pythonPath = [ setuptools ] ++ pythonPath; preConfigure = '' PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}/site-packages:$PYTHONPATH" @@ -83,9 +81,7 @@ python.stdenv.mkDerivation (attrs // { # Remove any site.py files generated by easy_install as these # cause collisions. If pth files are to be processed a # corresponding site.py needs to be included in the PYTHONPATH. - # - # leave them until we have a better solution: see #209 - #rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py* + rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py* ${postInstall} ''; @@ -94,15 +90,6 @@ python.stdenv.mkDerivation (attrs // { '' wrapPythonPrograms - # If a user installs a Python package, she probably also wants its - # dependencies in the user environment (since Python modules don't - # have something like an RPATH, so the only way to find the - # dependencies is to have them in the PYTHONPATH variable). - if test -e $out/nix-support/propagated-build-inputs; then - ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages - fi - - createBuildInputsPth build-inputs "$buildInputStrings" for inputsfile in propagated-build-inputs propagated-build-native-inputs; do if test -e $out/nix-support/$inputsfile; then createBuildInputsPth $inputsfile "$(cat $out/nix-support/$inputsfile)" diff --git a/pkgs/development/python-modules/generic/wrap.sh b/pkgs/development/python-modules/generic/wrap.sh index 71269945d6f..d42be146955 100644 --- a/pkgs/development/python-modules/generic/wrap.sh +++ b/pkgs/development/python-modules/generic/wrap.sh @@ -51,6 +51,9 @@ createBuildInputsPth() { local inputs="$2" if [ foo"$inputs" != foo ]; then for x in $inputs; do + if $(echo -n $x |grep -q python-recursive-pth-loader); then + continue + fi if test -d "$x"/lib/@libPrefix@/site-packages; then echo $x/lib/@libPrefix@/site-packages \ >> "$out"/lib/@libPrefix@/site-packages/${name}-nix-python-$category.pth diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index 8aebf1d7829..1e8ceed6878 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, python, pkgconfig, cairo, x11}: +{ stdenv, fetchurl, python, pkgconfig, cairo, x11 }: stdenv.mkDerivation { name = "pycairo-1.8.8"; @@ -7,5 +7,5 @@ stdenv.mkDerivation { sha256 = "0q18hd4ai4raljlvd76ylgi30kxpr2qq83ka6gzwh0ya8fcmjlig"; }; - buildInputs = [python pkgconfig cairo x11]; + buildInputs = [ python pkgconfig cairo x11 ]; } diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix index 4ef851f5b3e..5575243bd9f 100644 --- a/pkgs/development/python-modules/pygobject/default.nix +++ b/pkgs/development/python-modules/pygobject/default.nix @@ -12,16 +12,12 @@ stdenv.mkDerivation rec { buildInputs = [ python pkgconfig glib ]; + # in a "normal" setup, pygobject and pygtk are installed into the + # same site-packages: we need a pth file for both. pygtk.py would be + # used to select a specific version, in our setup it should have no + # effect, but we leave it in case somebody expects and calls it. postInstall = '' - # All python code is installed into a "gtk-2.0" sub-directory. That - # sub-directory may be useful on systems which share several library - # versions in the same prefix, i.e. /usr/local, but on Nix that directory - # is useless. Furthermore, its existence makes it very hard to guess a - # proper $PYTHONPATH that allows "import gtk" to succeed. - cd $(toPythonPath $out)/gtk-2.0 - for n in *; do - ln -s "gtk-2.0/$n" "../$n" - done + mv $out/lib/${python.libPrefix}/site-packages/{pygtk.pth,${name}.pth} ''; meta = { diff --git a/pkgs/development/python-modules/pygtk/default.nix b/pkgs/development/python-modules/pygtk/default.nix index 81147fff17d..07d57591f1a 100644 --- a/pkgs/development/python-modules/pygtk/default.nix +++ b/pkgs/development/python-modules/pygtk/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, makeWrapper, python, pkgconfig, glib, gtk, pygobject, pycairo -, libglade ? null }: +{ stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo +, buildPythonPackage, libglade ? null }: -stdenv.mkDerivation rec { +buildPythonPackage rec { name = "pygtk-2.22.0"; src = fetchurl { @@ -10,26 +10,35 @@ stdenv.mkDerivation rec { }; buildInputs = - [ makeWrapper python pkgconfig glib gtk ] + [ pkgconfig glib gtk ] ++ stdenv.lib.optional (libglade != null) libglade; propagatedBuildInputs = [ pygobject pycairo ]; + installCommand = "make install"; + checkPhase = stdenv.lib.optionalString (libglade == null) + '' + sed -i -e "s/glade = importModule('gtk.glade', buildDir)//" \ + tests/common.py + sed -i -e "s/, glade$//" \ + -e "s/.*testGlade.*//" \ + -e "s/.*(glade.*//" \ + tests/test_api.py + '' + '' + sed -i -e "s/sys.path.insert(0, os.path.join(buildDir, 'gtk'))//" \ + -e "s/sys.path.insert(0, buildDir)//" \ + tests/common.py + make check + ''; + # XXX: TypeError: Unsupported type: + # The check phase was not executed in the previous + # non-buildPythonPackage setup - not sure why not. + doCheck = false; + postInstall = '' rm $out/bin/pygtk-codegen-2.0 ln -s ${pygobject}/bin/pygobject-codegen-2.0 $out/bin/pygtk-codegen-2.0 - - # All python code is installed into a "gtk-2.0" sub-directory. That - # sub-directory may be useful on systems which share several library - # versions in the same prefix, i.e. /usr/local, but on Nix that directory - # is useless. Furthermore, its existence makes it very hard to guess a - # proper $PYTHONPATH that allows "import gtk" to succeed. - cd $(toPythonPath $out)/gtk-2.0 - for n in *; do - ln -s "gtk-2.0/$n" "../$n" - done - - wrapProgram $out/bin/pygtk-demo --prefix PYTHONPATH ":" \ - $(toPythonPath "${pygobject} ${pycairo} $out") + ln -s ${pygobject}/lib/${python.libPrefix}/site-packages/${pygobject.name}.pth \ + $out/lib/${python.libPrefix}/site-packages/${name}.pth ''; } diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 879f6aed8de..468ea50c924 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, python, wrapPython }: stdenv.mkDerivation rec { - name = "setuptools-" + version; + name = "python-setuptools-" + version; version = "0.6c11"; diff --git a/pkgs/development/python-modules/virtualenv-change-prefix.patch b/pkgs/development/python-modules/virtualenv-change-prefix.patch index 5093fdbead9..d3e588bd1cd 100644 --- a/pkgs/development/python-modules/virtualenv-change-prefix.patch +++ b/pkgs/development/python-modules/virtualenv-change-prefix.patch @@ -1,29 +1,32 @@ 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 .`. - ---- virtualenv-1.6.4/virtualenv.py 2012-05-20 00:40:38.070649647 +0200 -+++ virtualenv-1.6.4/virtualenv.py 2012-05-20 00:45:10.596242604 +0200 -@@ -951,13 +951,7 @@ +--- virtualenv-1.8.4/virtualenv.py 2013-01-16 23:43:37.583615220 +0100 ++++ virtualenv-1.8.4/virtualenv.py 2013-01-16 23:44:47.885973431 +0100 +@@ -1135,17 +1135,7 @@ def change_prefix(filename, dst_prefix): - prefixes = [sys.prefix] - -- if sys.platform == "darwin": +- if is_darwin: - prefixes.extend(( - os.path.join("/Library/Python", sys.version[:3], "site-packages"), - os.path.join(sys.prefix, "Extras", "lib", "python"), -- os.path.join("~", "Library", "Python", sys.version[:3], "site-packages"))) +- os.path.join("~", "Library", "Python", sys.version[:3], "site-packages"), +- # Python 2.6 no-frameworks +- os.path.join("~", ".local", "lib","python", sys.version[:3], "site-packages"), +- # System Python 2.7 on OSX Mountain Lion +- os.path.join("~", "Library", "Python", sys.version[:3], "lib", "python", "site-packages"))) + prefixes = ["/nix/store", sys.prefix] if hasattr(sys, 'real_prefix'): prefixes.append(sys.real_prefix) -@@ -968,6 +962,8 @@ - _, relpath = filename.split(src_prefix, 1) - assert relpath[0] == os.sep - relpath = relpath[1:] -+ if src_prefix == "/nix/store": -+ relpath = "/".join(relpath.split("/")[1:]) +@@ -1162,6 +1152,8 @@ + if src_prefix != os.sep: # sys.prefix == "/" + assert relpath[0] == os.sep + relpath = relpath[1:] ++ if src_prefix == "/nix/store": ++ relpath = "/".join(relpath.split("/")[1:]) return join(dst_prefix, relpath) assert False, "Filename %s does not start with any of these prefixes: %s" % \ (filename, prefixes) diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix index 3281f07335b..a72223543aa 100644 --- a/pkgs/games/minecraft/default.nix +++ b/pkgs/games/minecraft/default.nix @@ -2,11 +2,11 @@ , mesa, openal}: stdenv.mkDerivation { - name = "minecraft-1.3.1"; + name = "minecraft-1.4.7"; src = fetchurl { url = "https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft.jar"; - sha256 = "0j8a889w174vwgcxl4yqgp2kbqqha3x505fn7izz38srlx59gnwj"; + sha256 = "92db974aa759a3f17f3cd61550fa5010e335c57dd813dad9e39b9cc013420a49"; }; phases = "installPhase"; diff --git a/pkgs/games/naev/default.nix b/pkgs/games/naev/default.nix index 36ccbf98274..2e25cf4afb6 100644 --- a/pkgs/games/naev/default.nix +++ b/pkgs/games/naev/default.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation { homepage = http://www.naev.org; license = "GPLv3+"; maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; + #platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/games/torcs/default.nix b/pkgs/games/torcs/default.nix index cf740def511..da4fd01d3a9 100644 --- a/pkgs/games/torcs/default.nix +++ b/pkgs/games/torcs/default.nix @@ -26,6 +26,6 @@ stdenv.mkDerivation rec { homepage = http://torcs.sourceforge.net/; license = "GPLv2+"; maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; + #platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/games/ufoai/default.nix b/pkgs/games/ufoai/default.nix index 85440f88901..e642e6f9124 100644 --- a/pkgs/games/ufoai/default.nix +++ b/pkgs/games/ufoai/default.nix @@ -48,6 +48,6 @@ stdenv.mkDerivation rec { description = "Squad-based tactical strategy game in the tradition of X-Com"; license = "GPLv2+"; maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; + #platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/games/urbanterror/default.nix b/pkgs/games/urbanterror/default.nix index 875dfc93bb1..bffc5ad90d1 100644 --- a/pkgs/games/urbanterror/default.nix +++ b/pkgs/games/urbanterror/default.nix @@ -82,6 +82,6 @@ stdenv.mkDerivation rec { homepage = http://www.urbanterror.net; license = [ "unfree-redistributable" ]; maintainers = with stdenv.lib.maintainers; [ astsmtl ]; - platforms = with stdenv.lib.platforms; linux; + #platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/games/widelands/default.nix b/pkgs/games/widelands/default.nix index 45538acdca3..e20adc8faa7 100644 --- a/pkgs/games/widelands/default.nix +++ b/pkgs/games/widelands/default.nix @@ -64,8 +64,7 @@ rec { raskin jcumming ]; - platforms = with a.lib.platforms; - linux; + #platforms = a.lib.platforms.linux; license = a.lib.licenses.gpl2Plus; }; passthru = { diff --git a/pkgs/os-specific/linux/ati-drivers/default.nix b/pkgs/os-specific/linux/ati-drivers/default.nix index 49efcc1e76e..c30d18fe75b 100644 --- a/pkgs/os-specific/linux/ati-drivers/default.nix +++ b/pkgs/os-specific/linux/ati-drivers/default.nix @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { patchelf unzip ]; - + inherit kernel glibc /* glibc only used for setting interpreter */; - + LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" [ "${xorg.libXrandr}/lib" "${xorg.libXrender}/lib" @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { inherit mesa; # only required to build examples meta = { - description = "ati drivers"; + description = "ATI drivers"; homepage = http://support.amd.com/us/gpudownload/Pages/index.aspx; license = "unfree"; maintainers = [stdenv.lib.maintainers.marcweber]; - platforms = [ "x86_64-linux" ]; + #platforms = [ "x86_64-linux" ]; }; # moved assertions here because the name is evaluated when the NixOS manual is generated diff --git a/pkgs/os-specific/linux/aufs/3.nix b/pkgs/os-specific/linux/aufs/3.nix index 130fd5075cd..255804a31de 100644 --- a/pkgs/os-specific/linux/aufs/3.nix +++ b/pkgs/os-specific/linux/aufs/3.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation { ''; passthru = { inherit patch; }; + meta = { description = "Another Unionfs implementation for Linux (third generation)"; homepage = http://aufs.sourceforge.net/; diff --git a/pkgs/os-specific/linux/cpufrequtils/default.nix b/pkgs/os-specific/linux/cpufrequtils/default.nix index 35bf57c269e..e9e0a36f156 100644 --- a/pkgs/os-specific/linux/cpufrequtils/default.nix +++ b/pkgs/os-specific/linux/cpufrequtils/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { name = "cpufrequtils-008"; src = fetchurl { - url = "mirror://kernel/linux/utils/kernel/cpufreq/cpufrequtils-008.tar.gz"; + url = http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-008.tar.gz; md5 = "52d3e09e47ffef634833f7fab168eccf"; }; diff --git a/pkgs/os-specific/linux/kernel/linux-3.0.nix b/pkgs/os-specific/linux/kernel/linux-3.0.nix index 97b3a6bfd0d..557ee6b52c6 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.0.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.0.nix @@ -230,7 +230,7 @@ in import ./generic.nix ( rec { - version = "3.0.58"; + version = "3.0.59"; preConfigure = '' substituteInPlace scripts/depmod.sh --replace '-b "$INSTALL_MOD_PATH"' "" @@ -238,7 +238,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "10ahi60ass970vjlhnzcf0y5fk3g7ck1a1lnwzy0kkywp6nb2c10"; + sha256 = "0w0l0vsky921j6wvhydl8ggzwkwkhr0lk2lkd7lshhmv9c6bdg86"; }; config = configWithPlatform stdenv.platform; diff --git a/pkgs/os-specific/linux/kernel/linux-3.2.nix b/pkgs/os-specific/linux/kernel/linux-3.2.nix index 212a86f36a3..f843f8b057a 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.2.nix @@ -237,7 +237,7 @@ in import ./generic.nix ( rec { - version = "3.2.36"; + version = "3.2.37"; testing = false; modDirVersion = version; @@ -248,7 +248,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.0/${if testing then "testing/" else ""}linux-${version}.tar.xz"; - sha256 = "0jyla0mjh1jjk84jywyvd7n6ax27xarkllfjf991rqj32zinlnzn"; + sha256 = "1h8lx0gvb1q962lghjpixa6q89k4yrgvpiw8hplb3w2jicqs4948"; }; config = configWithPlatform stdenv.platform; diff --git a/pkgs/os-specific/linux/kernel/linux-3.4.nix b/pkgs/os-specific/linux/kernel/linux-3.4.nix index eef4847e5b2..8d8c56daab0 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.4.nix @@ -239,7 +239,7 @@ in import ./generic.nix ( rec { - version = "3.4.25"; + version = "3.4.26"; testing = false; preConfigure = '' @@ -248,7 +248,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; - sha256 = "0jlnrjxyyfw2f87mr9y8c4337yfbnrj5jp3vhm33dwy7i3vdpfs6"; + sha256 = "1zmv1g90fgqrabc0qb5ip551mh12ps1zin3hbygysc89j684rbk1"; }; config = configWithPlatform stdenv.platform; diff --git a/pkgs/os-specific/linux/kernel/linux-3.7.nix b/pkgs/os-specific/linux/kernel/linux-3.7.nix index 4a092fe6b3a..2822c33c828 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.7.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.7.nix @@ -245,7 +245,7 @@ in import ./generic.nix ( rec { - version = "3.7.2"; + version = "3.7.3"; testing = false; preConfigure = '' @@ -254,7 +254,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; - sha256 = "09s1z2z15xnnqm2syr76l7s3s14zzsalifnnfmry52ibizllzh04"; + sha256 = "05421g78kx01ia0pq3d3y3gkrzqb5grfhhy7vy1ixlq8a23kc6b7"; }; config = configWithPlatform stdenv.platform; diff --git a/pkgs/os-specific/linux/module-init-tools/default.nix b/pkgs/os-specific/linux/module-init-tools/default.nix index 077d08f899d..240150b09dd 100644 --- a/pkgs/os-specific/linux/module-init-tools/default.nix +++ b/pkgs/os-specific/linux/module-init-tools/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { src = [ (fetchurl { - url = mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.16.tar.bz2; + url = http://ftp.be.debian.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-3.16.tar.bz2; sha256 = "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"; }) diff --git a/pkgs/os-specific/linux/pam/default.nix b/pkgs/os-specific/linux/pam/default.nix index c18ea2b1f2b..7da03cf9cad 100644 --- a/pkgs/os-specific/linux/pam/default.nix +++ b/pkgs/os-specific/linux/pam/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "linux-pam-1.1.1"; src = fetchurl { - url = mirror://kernel/linux/libs/pam/library/Linux-PAM-1.1.1.tar.bz2; + url = http://www.linux-pam.org/library/Linux-PAM-1.1.1.tar.bz2; sha256 = "015r3xdkjpqwcv4lvxavq0nybdpxhfjycqpzbx8agqd5sywkx3b0"; }; diff --git a/pkgs/os-specific/linux/powertop/default.nix b/pkgs/os-specific/linux/powertop/default.nix index 68075d115a4..2fb852acc31 100644 --- a/pkgs/os-specific/linux/powertop/default.nix +++ b/pkgs/os-specific/linux/powertop/default.nix @@ -2,6 +2,7 @@ stdenv.mkDerivation rec { name = "powertop-2.1"; + src = fetchurl { url = "https://01.org/powertop/sites/default/files/downloads/${name}.tar.gz"; sha256 = "16161nlah4i4hq8vyx7ds1vq7icdzwm7gmyjg0xhcrs1r9n83m1x"; diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 5943a231a85..94e3573b70e 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -3,7 +3,7 @@ stdenv.mkDerivation { name = "spl-0.6.0-rc13-${kernel.version}"; src = fetchurl { - url = http://zfsonlinux.org/downloads/0.6.0-rc13/spl-0.6.0-rc13.tar.gz; + url = http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.0-rc13.tar.gz; sha256 = "1frbifj1yd7pznlhsqsiksip5amx4ljvasg8h80haaxk0yvvkr9b"; }; diff --git a/pkgs/os-specific/linux/v86d/default.nix b/pkgs/os-specific/linux/v86d/default.nix index aedfe9ac686..f0f7fcbb9ce 100644 --- a/pkgs/os-specific/linux/v86d/default.nix +++ b/pkgs/os-specific/linux/v86d/default.nix @@ -1,10 +1,11 @@ {stdenv, fetchurl, klibc, kernel, withKlibc ? true}: stdenv.mkDerivation rec { - name = "v86d-0.1.10-${kernel.version}"; + name = "v86d-${version}-${kernel.version}"; + version = "0.1.10"; src = fetchurl { - url = "http://dev.gentoo.org/~spock/projects/uvesafb/archive/${name}.tar.bz2"; + url = "mirror://gentoo/distfiles//v86d-${version}.tar.bz2"; sha256 = "0p3kwqjis941pns9948dxfnjnl5lwd8f2b6x794whs7g32p68jb3"; }; diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix index b83019ea87a..17c7d3824d7 100644 --- a/pkgs/os-specific/linux/zfs/default.nix +++ b/pkgs/os-specific/linux/zfs/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "zfs-0.6.0-rc13-${kernel.version}"; src = fetchurl { - url = http://zfsonlinux.org/downloads/0.6.0-rc13/zfs-0.6.0-rc13.tar.gz; + url = http://archive.zfsonlinux.org/downloads/zfsonlinux/zfs/zfs-0.6.0-rc13.tar.gz; sha256 = "1kpx7sa49ir93kmlrjwjzd6v4kzmda4j9cf6bv2p4s3yrmiz3cjv"; }; diff --git a/pkgs/servers/mpd/default.nix b/pkgs/servers/mpd/default.nix index a5cc810ada8..54c9d160565 100644 --- a/pkgs/servers/mpd/default.nix +++ b/pkgs/servers/mpd/default.nix @@ -1,39 +1,85 @@ -{ stdenv, fetchurl, pkgconfig, glib, alsaSupport ? true, alsaLib -, flacSupport ? true, flac, vorbisSupport ? true, libvorbis -, madSupport ? true, libmad, id3tagSupport ? true, libid3tag -, mikmodSupport ? true, libmikmod, cueSupport ? true, libcue +{ stdenv, fetchurl, pkgconfig, glib, systemd +, alsaSupport ? true, alsaLib +, flacSupport ? true, flac +, vorbisSupport ? true, libvorbis +, madSupport ? true, libmad +, id3tagSupport ? true, libid3tag +, mikmodSupport ? true, libmikmod , shoutSupport ? true, libshout +, sqliteSupport ? true, sqlite +, curlSupport ? true, curl +, soupSupport ? true, libsoup +, audiofileSupport ? true, audiofile +, bzip2Support ? true, bzip2 +, ffadoSupport ? true, ffado +, ffmpegSupport ? true, ffmpeg +, fluidsynthSupport ? true, fluidsynth +, zipSupport ? true, zziplib +, samplerateSupport ? true, libsamplerate +, mmsSupport ? true, libmms +, mpg123Support ? true, mpg123 +, aacSupport ? true, faad2 }: + let + opt = stdenv.lib.optional; -in -stdenv.mkDerivation rec { - name = "mpd-0.16.8"; + + mkFlag = c: f: if c then "--enable-${f}" else "--disable-${f}"; + +in stdenv.mkDerivation rec { + name = "mpd-0.17.3"; src = fetchurl { url = "mirror://sourceforge/musicpd/${name}.tar.bz2"; - sha256 = "35183ae4a706391f5d739e4378b74f516952adda09a260fecfd531a58b0fff17"; + sha256 = "1iilimlyhw22lpbqiab4qprznxg9c4d68fkrr9jww765b4c7x1ip"; }; - buildInputs = [ pkgconfig glib ] + buildInputs = [ pkgconfig glib systemd ] ++ opt alsaSupport alsaLib ++ opt flacSupport flac ++ opt vorbisSupport libvorbis ++ opt madSupport libmad ++ opt id3tagSupport libid3tag ++ opt mikmodSupport libmikmod - ++ opt cueSupport libcue - ++ opt shoutSupport libshout; + ++ opt shoutSupport libshout + ++ opt sqliteSupport sqlite + ++ opt curlSupport curl + ++ opt soupSupport libsoup + ++ opt bzip2Support bzip2 + ++ opt audiofileSupport audiofile + ++ opt ffadoSupport ffado + ++ opt ffmpegSupport ffmpeg + ++ opt fluidsynthSupport fluidsynth + ++ opt samplerateSupport libsamplerate + ++ opt mmsSupport libmms + ++ opt mpg123Support mpg123 + ++ opt aacSupport faad2 + ++ opt zipSupport zziplib; - configureFlags = '' - ${if alsaSupport then "--enable-alsa" else "--disable-alsa"} - ${if flacSupport then "--enable-flac" else "--disable-flac"} - ${if vorbisSupport then "--enable-vorbis" else "--disable-vorbis"} - ${if madSupport then "--enable-mad" else "--disable-mad"} - ${if mikmodSupport then "--enable-mikmod" else "--disable-mikmod"} - ${if id3tagSupport then "--enable-id3" else "--disable-id3"} - ${if cueSupport then "--enable-cue" else "--disable-cue"} - ${if shoutSupport then "--enable-shout" else "--disable-shout"} - ''; + configureFlags = [ + "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + (mkFlag alsaSupport "alsa") + (mkFlag flacSupport "flac") + (mkFlag vorbisSupport "vorbis") + (mkFlag vorbisSupport "vorbis-encoder") + (mkFlag madSupport "mad") + (mkFlag mikmodSupport "mikmod") + (mkFlag id3tagSupport "id3") + (mkFlag shoutSupport "shout") + (mkFlag sqliteSupport "sqlite") + (mkFlag curlSupport "curl") + (mkFlag soupSupport "soup") + (mkFlag audiofileSupport "audiofile") + (mkFlag bzip2Support "bzip2") + (mkFlag ffadoSupport "ffado") + (mkFlag ffmpegSupport "ffmpeg") + (mkFlag fluidsynthSupport "fluidsynth") + (mkFlag zipSupport "zzip") + (mkFlag samplerateSupport "lsr") + (mkFlag mmsSupport "mms") + (mkFlag mpg123Support "mpg123") + (mkFlag aacSupport "aac") + ]; NIX_LDFLAGS = '' ${if shoutSupport then "-lshout" else ""} diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix index 8e0da288eec..67000670cd1 100644 --- a/pkgs/stdenv/default.nix +++ b/pkgs/stdenv/default.nix @@ -10,7 +10,7 @@ # system, e.g., cygwin and mingw builds on i686-cygwin. Most people # can ignore it. -{system, stdenvType ? system, allPackages ? import ../.., platform}: +{ system, stdenvType ? system, allPackages ? import ../.., platform, config }: assert system != "i686-cygwin" -> system == stdenvType; @@ -24,7 +24,7 @@ rec { # be used with care, since many Nix packages will not build properly # with it (e.g., because they require GNU Make). stdenvNative = (import ./native { - inherit system allPackages; + inherit system allPackages config; }).stdenv; stdenvNativePkgs = allPackages { @@ -35,13 +35,14 @@ rec { # The Nix build environment. stdenvNix = import ./nix { + inherit config; stdenv = stdenvNative; pkgs = stdenvNativePkgs; }; # Linux standard environment. - stdenvLinux = (import ./linux {inherit system allPackages platform;}).stdenvLinux; + stdenvLinux = (import ./linux { inherit system allPackages platform config;}).stdenvLinux; # MinGW/MSYS standard environment. diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index bed6ad2f90e..b6836ca8d79 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -1,5 +1,5 @@ { system, name ? "stdenv", preHook ? "", initialPath, gcc, shell -, extraAttrs ? {}, overrides ? (pkgs: {}) +, extraAttrs ? {}, overrides ? (pkgs: {}), config , # The `fetchurl' to use for downloading curl and its dependencies # (see all-packages.nix). @@ -10,7 +10,7 @@ let lib = import ../../lib; - disallowUnfree = builtins.getEnv "HYDRA_DISALLOW_UNFREE" == "1"; + allowUnfree = config.allowUnfree or true && builtins.getEnv "HYDRA_DISALLOW_UNFREE" != "1"; stdenvGenerator = setupScript: rec { @@ -41,7 +41,7 @@ let # Add a utility function to produce derivations that use this # stdenv and its shell. mkDerivation = attrs: - if disallowUnfree && attrs.meta.license or "" == "unfree" then + if !allowUnfree && attrs.meta.license or "" == "unfree" then throw "package ‘${attrs.name}’ has an unfree license, refusing to evaluate" else (derivation ( diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 3105e76f817..777b2cf6a32 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -7,7 +7,7 @@ # The function defaults are for easy testing. { system ? builtins.currentSystem , allPackages ? import ../../top-level/all-packages.nix -, platform ? null }: +, platform ? null, config }: rec { @@ -81,7 +81,7 @@ rec { {gcc, extraAttrs ? {}, overrides ? (pkgs: {}), extraPath ? [], fetchurl}: import ../generic { - inherit system; + inherit system config; name = "stdenv-linux-boot"; preHook = '' @@ -261,7 +261,7 @@ rec { # dependency (`nix-store -qR') on bootstrapTools or the # first binutils built. stdenvLinux = import ../generic rec { - inherit system; + inherit system config; preHook = commonPreHook; diff --git a/pkgs/stdenv/native/default.nix b/pkgs/stdenv/native/default.nix index a33a46c8512..524b2a53337 100644 --- a/pkgs/stdenv/native/default.nix +++ b/pkgs/stdenv/native/default.nix @@ -1,4 +1,4 @@ -{ system, allPackages ? import ../../.. }: +{ system, allPackages ? import ../../.., config }: rec { @@ -98,7 +98,7 @@ rec { fetchurlBoot = fetchurl; - inherit system shell gcc overrides; + inherit system shell gcc overrides config; }; diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix index 5e242b6e3a1..668bac5f0ae 100644 --- a/pkgs/stdenv/nix/default.nix +++ b/pkgs/stdenv/nix/default.nix @@ -1,6 +1,8 @@ -{ stdenv, pkgs }: +{ stdenv, pkgs, config }: import ../generic rec { + inherit config; + preHook = '' export NIX_ENFORCE_PURITY=1 diff --git a/pkgs/tools/filesystems/reiserfsprogs/default.nix b/pkgs/tools/filesystems/reiserfsprogs/default.nix index 2283a0c1746..2c14bc624ae 100644 --- a/pkgs/tools/filesystems/reiserfsprogs/default.nix +++ b/pkgs/tools/filesystems/reiserfsprogs/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "reiserfsprogs-3.6.21"; src = fetchurl { - url = "mirror://kernel/linux/utils/fs/reiserfs/${name}.tar.bz2"; + url = "http://ftp.be.debian.org/pub/linux/utils/fs/reiserfs/${name}.tar.bz2"; sha256 = "19mqzhh6jsf2gh8zr5scqi9pyk1fwivrxncd11rqnp2148c58jam"; }; diff --git a/pkgs/tools/graphics/cuneiform/default.nix b/pkgs/tools/graphics/cuneiform/default.nix index 13f7d4b7f6f..3c75af4bcf3 100644 --- a/pkgs/tools/graphics/cuneiform/default.nix +++ b/pkgs/tools/graphics/cuneiform/default.nix @@ -2,15 +2,15 @@ a : let fetchurl = a.fetchurl; - version = a.lib.attrByPath ["version"] "1.0" a; + version = "1.1.0"; buildInputs = with a; [ cmake imagemagick patchelf ]; in rec { src = fetchurl { - url = "http://launchpad.net/cuneiform-linux/${version}/${version}/+download/cuneiform-linux-${version}.0.tar.bz2"; - sha256 = "bfa7acc6aade966ab62bc0f19e0ac1a843b659a70202229570c087ca8b15f39e"; + url = "https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2"; + sha256 = "1bdvppyfx2184zmzcylskd87cxv56d8f32jf7g1qc8779l2hszjp"; }; inherit buildInputs; diff --git a/pkgs/tools/graphics/cuneiform/default.upstream b/pkgs/tools/graphics/cuneiform/default.upstream new file mode 100644 index 00000000000..4fb85a2a1e8 --- /dev/null +++ b/pkgs/tools/graphics/cuneiform/default.upstream @@ -0,0 +1,8 @@ +url https://launchpad.net/cuneiform-linux/+download + +do_overwrite () { + ensure_hash + set_var_value version "$CURRENT_VERSION" + set_var_value sha256 "$CURRENT_HASH" + set_var_value ' url' "$CURRENT_URL" +} diff --git a/pkgs/tools/graphics/jbig2enc/default.nix b/pkgs/tools/graphics/jbig2enc/default.nix new file mode 100644 index 00000000000..60704d6300c --- /dev/null +++ b/pkgs/tools/graphics/jbig2enc/default.nix @@ -0,0 +1,19 @@ +{stdenv, fetchurl, leptonica, zlib, libwebp, giflib, libjpeg, libpng, libtiff }: stdenv.mkDerivation { + name = "jbig2enc-0.28"; + + src = fetchurl { + url = http://github.com/agl/jbig2enc/archive/0.28-dist.tar.gz; + sha256 = "1wc0lmqz4jag3rhhk1xczlqpfv2qqp3fz7wzic2lba3vsbi1rrw3"; + }; + + propagatedBuildInputs = [ leptonica zlib libwebp giflib libjpeg libpng libtiff ]; + + # This is necessary, because the resulting library has + # /tmp/nix-build-jbig2enc/src/.libs before /nix/store/jbig2enc/lib + # in its rpath, which means that patchelf --shrink-rpath removes + # the /nix/store one. By cleaning up before fixup, we ensure that + # the /tmp/nix-build-jbig2enc/src/.libs directory is gone. + preFixup = '' + make clean + ''; +} diff --git a/pkgs/tools/system/logrotate/default.nix b/pkgs/tools/system/logrotate/default.nix index a9994f14b57..784c8e75e76 100644 --- a/pkgs/tools/system/logrotate/default.nix +++ b/pkgs/tools/system/logrotate/default.nix @@ -1,11 +1,11 @@ -{stdenv, fetchurl, gzip, popt}: +{ stdenv, fetchurl, gzip, popt }: stdenv.mkDerivation rec { - name = "logrotate-3.7.8"; + name = "logrotate-3.8.3"; src = fetchurl { - url = https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.7.8.tar.gz; - sha256 = "1p9nqmznqvzn03saw3jxa8xwsdqym8jr778rwig8kk786343vai1"; + url = "https://fedorahosted.org/releases/l/o/logrotate/${name}.tar.gz"; + sha256 = "0xqrz8xzs2c1vx8l5h9lp2ciwwifj7y52xsppb1vrvbi254vyxh7"; }; # Logrotate wants to access the 'mail' program; to be done. @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { buildInputs = [ popt ]; meta = { - homepage = "https://fedorahosted.org/releases/l/o/logrotate/"; + homepage = https://fedorahosted.org/releases/l/o/logrotate/; description = "Rotates and compresses system logs"; license = "GPLv2+"; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; all; + maintainers = [ stdenv.lib.maintainers.viric ]; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3df7e5743ac..173f080f652 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -196,7 +196,7 @@ let allStdenvs = import ../stdenv { - inherit system stdenvType platform; + inherit system stdenvType platform config; allPackages = args: import ./all-packages.nix ({ inherit config system; } // args); }; @@ -419,9 +419,9 @@ let inherit pkgs; pkgs_i686 = pkgsi686Linux; }; - + xcodeenv = callPackage ../development/mobile/xcodeenv { }; - + titaniumenv = import ../development/mobile/titaniumenv { inherit pkgs; pkgs_i686 = pkgsi686Linux; @@ -1318,6 +1318,8 @@ let pdfjam = callPackage ../tools/typesetting/pdfjam { }; + jbig2enc = callPackage ../tools/graphics/jbig2enc { }; + pdfread = callPackage ../tools/graphics/pdfread { }; briss = callPackage ../tools/graphics/briss { }; @@ -2834,25 +2836,23 @@ let pure = callPackage ../development/interpreters/pure {}; - python = python27; python3 = python32; - - python26 = callPackage ../development/interpreters/python/2.6 { }; - - python27 = callPackage ../development/interpreters/python/2.7 { }; - python32 = callPackage ../development/interpreters/python/3.2 { }; - pythonFull = python27Full; + python = python27; + python26 = callPackage ../development/interpreters/python/2.6 { }; + python27 = callPackage ../development/interpreters/python/2.7 { }; + pythonFull = python27Full; python26Full = callPackage ../development/interpreters/python/wrapper.nix { extraLibs = lib.attrValues python26.modules; python = python26; + inherit (python26Packages) recursivePthLoader; }; - python27Full = callPackage ../development/interpreters/python/wrapper.nix { extraLibs = lib.attrValues python27.modules; python = python27; + inherit (python27Packages) recursivePthLoader; }; pythonhomeWrapper = callPackage ../development/interpreters/python/pythonhome-wrapper.nix { }; @@ -5291,6 +5291,10 @@ let pythonPackages = python27Packages; + # `nix-env -i python-nose` installs for 2.7, the default python. + # Therefore we do not recurse into attributes here, in contrast to + # python27Packages. `nix-env -iA python26Packages.nose` works + # regardless. python26Packages = import ./python-packages.nix { inherit pkgs; python = python26; @@ -5307,13 +5311,13 @@ let numeric = callPackage ../development/python-modules/numeric { }; - pil = python27Packages.pil; + pil = pythonPackages.pil; psyco = callPackage ../development/python-modules/psyco { }; - pycairo = callPackage ../development/python-modules/pycairo { }; + pycairo = pythonPackages.pycairo; - pycrypto = python27Packages.pycrypto; + pycrypto = pythonPackages.pycrypto; pycups = callPackage ../development/python-modules/pycups { }; @@ -5321,13 +5325,11 @@ let pygame = callPackage ../development/python-modules/pygame { }; - pygobject = callPackage ../development/python-modules/pygobject { }; + pygobject = pythonPackages.pygobject; - pygtk = callPackage ../development/python-modules/pygtk { }; + pygtk = pythonPackages.pygtk; - pyGtkGlade = callPackage ../development/python-modules/pygtk { - inherit (gnome) libglade; - }; + pyGtkGlade = pythonPackages.pyGtkGlade; pyopenssl = builderDefsPackage (import ../development/python-modules/pyopenssl) { inherit python openssl; diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 6f2db83c194..19df77300b6 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -129,7 +129,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); HTTP = self.HTTP_4000_2_6; # 7.6 ok HUnit = self.HUnit_1_2_5_1; # 7.6 ok mtl = self.mtl_2_1_2; # 7.6 ok - network = self.network_2_4_0_1; # 7.6 ok + network = self.network_2_4_1_0; # 7.6 ok OpenGL = self.OpenGL_2_6_0_1; # 7.6 ok parallel = self.parallel_3_2_0_3; # 7.6 ok parsec = self.parsec_3_1_3; # 7.6 ok @@ -582,6 +582,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); cipherAes = callPackage ../development/libraries/haskell/cipher-aes {}; + cipherRc4 = callPackage ../development/libraries/haskell/cipher-rc4 {}; + classyPrelude = callPackage ../development/libraries/haskell/classy-prelude {}; classyPreludeConduit = callPackage ../development/libraries/haskell/classy-prelude-conduit {}; @@ -634,8 +636,12 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); cryptohash = callPackage ../development/libraries/haskell/cryptohash {}; + cryptoNumbers = callPackage ../development/libraries/haskell/crypto-numbers {}; + cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {}; + cryptoPubkey = callPackage ../development/libraries/haskell/crypto-pubkey {}; + cryptoRandomApi = callPackage ../development/libraries/haskell/crypto-random-api {}; cuda = callPackage ../development/libraries/haskell/cuda { @@ -913,7 +919,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); happstackHamlet = callPackage ../development/libraries/haskell/happstack/happstack-hamlet.nix {}; hashable_1_1_2_5 = callPackage ../development/libraries/haskell/hashable/1.1.2.5.nix {}; - hashable_1_2_0_3 = callPackage ../development/libraries/haskell/hashable/1.2.0.3.nix {}; + hashable_1_2_0_5 = callPackage ../development/libraries/haskell/hashable/1.2.0.5.nix {}; hashable = self.hashable_1_1_2_5; hashedStorage = callPackage ../development/libraries/haskell/hashed-storage {}; @@ -1260,8 +1266,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); network_2_3_0_5 = callPackage ../development/libraries/haskell/network/2.3.0.5.nix {}; network_2_3_0_13 = callPackage ../development/libraries/haskell/network/2.3.0.13.nix {}; network_2_3_1_0 = callPackage ../development/libraries/haskell/network/2.3.1.0.nix {}; - network_2_4_0_1 = callPackage ../development/libraries/haskell/network/2.4.0.1.nix {}; - network = self.network_2_4_0_1; + network_2_4_1_0 = callPackage ../development/libraries/haskell/network/2.4.1.0.nix {}; + network = self.network_2_4_1_0; networkConduit = callPackage ../development/libraries/haskell/network-conduit {}; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index f08553993c0..8315553d57c 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2039,6 +2039,21 @@ rec { }; }; + GoogleProtocolBuffers = buildPerlPackage rec { + name = "Google-ProtocolBuffers-0.08"; + src = fetchurl { + url = "mirror://cpan/authors/id/G/GA/GARIEV/${name}.tar.gz"; + sha256 = "0pxfphg671wh56h59pf0zrj7m1cr0yga95hf3w54563pzcw2vqv3"; + }; + propagatedBuildInputs = [ ClassAccessor ParseRecDescent ]; + patches = + [ ../development/perl-modules/Google-ProtocolBuffers-multiline-comments.patch ]; + meta = { + description = "Simple interface to Google Protocol Buffers"; + license = "perl"; + }; + }; + Graph = buildPerlPackage rec { name = "Graph-0.94"; src = fetchurl { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 41b545a6862..971c4194533 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3,22 +3,28 @@ let pythonPackages = python.modules // rec { inherit python; - inherit (pkgs) fetchurl fetchsvn fetchgit stdenv; + # helpers buildPythonPackage = import ../development/python-modules/generic { inherit (pkgs) lib; - inherit python wrapPython setuptools setuptoolsSite offlineDistutils; + inherit python wrapPython setuptools recursivePthLoader offlineDistutils; }; + wrapPython = pkgs.makeSetupHook + { deps = pkgs.makeWrapper; + substitutions.libPrefix = python.libPrefix; + } + ../development/python-modules/generic/wrap.sh; + + # specials recursivePthLoader = import ../development/python-modules/recursive-pth-loader { inherit (pkgs) stdenv; inherit python; }; - setuptools = import ../development/python-modules/setuptools { inherit (pkgs) stdenv fetchurl; inherit python wrapPython; @@ -34,6 +40,8 @@ let pythonPackages = python.modules // rec { inherit python; }; + # packages defined elsewhere + ipython = import ../shells/ipython { inherit (pkgs) stdenv fetchurl; inherit buildPythonPackage pythonPackages; @@ -44,17 +52,37 @@ let pythonPackages = python.modules // rec { inherit python buildPythonPackage; }; + pycairo = import ../development/python-modules/pycairo { + inherit (pkgs) stdenv fetchurl pkgconfig cairo x11; + inherit python; + }; + pycrypto = import ../development/python-modules/pycrypto { inherit (pkgs) fetchurl stdenv gmp; inherit python buildPythonPackage; }; - wrapPython = pkgs.makeSetupHook - { deps = pkgs.makeWrapper; - substitutions.libPrefix = python.libPrefix; - } - ../development/python-modules/generic/wrap.sh; + pygobject = import ../development/python-modules/pygobject { + inherit (pkgs) stdenv fetchurl pkgconfig glib; + inherit python; + }; + pygtk = import ../development/python-modules/pygtk { + inherit (pkgs) fetchurl stdenv pkgconfig glib gtk; + inherit python buildPythonPackage pygobject pycairo; + }; + + # XXX: how can we get an override here? + #pyGtkGlade = pygtk.override { + # inherit (pkgs.gnome) libglade; + #}; + pyGtkGlade = import ../development/python-modules/pygtk { + inherit (pkgs) fetchurl stdenv pkgconfig glib gtk; + inherit (pkgs.gnome) libglade; + inherit python buildPythonPackage pygobject pycairo; + }; + + # packages defined here afew = buildPythonPackage rec { rev = "6bb3915636aaf86f046a017ffffd9a4ef395e199"; @@ -324,6 +352,22 @@ let pythonPackages = python.modules // rec { # }); + buildout = buildPythonPackage rec { + name = "buildout-${version}"; + version = "1.7.0"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.buildout/zc.${name}.tar.gz"; + md5 = "4e3b521600e475c56a0a66459a5fc7bb"; + }; + + meta = { + homepage = http://www.buildout.org/; + description = "A software build and configuration system"; + }; + }; + + carrot = buildPythonPackage rec { name = "carrot-0.10.7"; @@ -458,6 +502,16 @@ let pythonPackages = python.modules // rec { }; }; + cssselect = buildPythonPackage rec { + name = "cssselect-0.7.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/c/cssselect/cssselect-0.7.1.tar.gz"; + md5 = "c6c5e9a2e7ca226ce03f6f67a771379c"; + }; + # AttributeError: 'module' object has no attribute 'tests' + doCheck = false; + }; + cssutils = buildPythonPackage (rec { name = "cssutils-0.9.9"; @@ -1217,6 +1271,23 @@ let pythonPackages = python.modules // rec { }; }; + manuel = buildPythonPackage rec { + name = "manuel-${version}"; + version = "1.6.0"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/manuel/${name}.tar.gz"; + md5 = "53d6a6905301a20f6095e41d11968fff"; + }; + + propagatedBuildInputs = [ six zope_testing ]; + + meta = { + description = "A documentation builder"; + homepage = http://pypi.python.org/pypi/manuel; + license = "ZPL"; + }; + }; markdown = buildPythonPackage rec { version = "2.0.3"; @@ -1330,6 +1401,26 @@ let pythonPackages = python.modules // rec { }; + mrbob = buildPythonPackage rec { + name = "mrbob-${version}"; + version = "0.1a6"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/mr.bob/mr.bob-${version}.zip"; + md5 = "361c8ac7a31953ab94a95cf34d9a0b2b"; + }; + + buildInputs = [ pkgs.unzip ]; + + propagatedBuildInputs = [ argparse jinja2 ]; + + meta = { + homepage = https://github.com/iElectric/mr.bob.git; + description = "A tool to generate code skeletons from templates"; + }; + }; + + mutagen = buildPythonPackage (rec { name = "mutagen-1.20"; @@ -1800,6 +1891,21 @@ let pythonPackages = python.modules // rec { }; + psutil = buildPythonPackage rec { + name = "psutil-0.6.1"; + + src = fetchurl { + url = "http://psutil.googlecode.com/files/${name}.tar.gz"; + sha256 = "0vqarv63jqzghr4fi1fqdbvg847fq2gqdj8dzc3x59f9b36a8rfn"; + }; + + meta = { + description = "Process and system utilization information interface for python"; + homepage = http://code.google.com/p/psutil/; + }; + }; + + psycopg2 = buildPythonPackage rec { name = "psycopg2-2.0.13"; @@ -2171,6 +2277,16 @@ let pythonPackages = python.modules // rec { }; + pyquery = buildPythonPackage rec { + name = "pyquery-1.2.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/pyquery/pyquery-1.2.4.tar.gz"; + md5 = "268f08258738d21bc1920d7522f2a63b"; + }; + buildInputs = [ cssselect lxml ]; + }; + + pyreport = buildPythonPackage (rec { name = "pyreport-0.3.4c"; @@ -2811,6 +2927,24 @@ let pythonPackages = python.modules // rec { }); + subunit = buildPythonPackage rec { + name = "subunit-${version}"; + version = "0.0.9"; + + src = fetchurl { + url = "https://launchpad.net/subunit/trunk/0.0.9/+download/python-${name}.tar.gz"; + sha256 = "0g3bk8lfd52zjzg43h47h2kckchm3xyv1gcr85nca2i50rcrpj56"; + }; + + propagatedBuildInputs = [ testtools ]; + + meta = { + description = "A streaming protocol for test results"; + homepage = https://launchpad.net/subunit; + license = pkgs.lib.licenses.asl20; + }; + }; + # XXX: ValueError: ZIP does not support timestamps before 1980 # svneverever = buildPythonPackage rec { # name = "svneverever-778489a8"; @@ -2872,6 +3006,23 @@ let pythonPackages = python.modules // rec { }; + testtools = buildPythonPackage rec { + name = "testtools-${version}"; + version = "0.9.24"; + + src = fetchurl { + url = "https://launchpad.net/testtools/0.9/0.9.24/+download/${name}.tar.gz"; + sha256 = "0mgkvd7c1aw34nlnz2nmll5k01aqhixxiikbs2nfyk3xfa4221x7"; + }; + + meta = { + description = "A set of extensions to the Python standard library's unit testing framework"; + homepage = http://pypi.python.org/pypi/testtools; + license = pkgs.lib.licenses.mit; + }; + }; + + trac = buildPythonPackage { name = "trac-0.12.2"; @@ -2894,6 +3045,26 @@ let pythonPackages = python.modules // rec { }; }; + + transaction = buildPythonPackage rec { + name = "transaction-${version}"; + version = "1.4.0"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; + md5 = "b7c2ff135939f605a8c54e1c13cd5d66"; + }; + + propagatedBuildInputs = [ zopeInterface ]; + + meta = { + description = "Transaction management"; + homepage = http://pypi.python.org/pypi/transaction; + license = "ZPL"; + }; + }; + + turses = buildPythonPackage (rec { name = "turses-0.2.9"; @@ -3028,10 +3199,10 @@ let pythonPackages = python.modules // rec { }); virtualenv = buildPythonPackage rec { - name = "virtualenv-1.6.4"; + name = "virtualenv-1.8.4"; src = fetchurl { url = "http://pypi.python.org/packages/source/v/virtualenv/${name}.tar.gz"; - md5 = "1072b66d53c24e019a8f1304ac9d9fc5"; + md5 = "1c7e56a7f895b2e71558f96e365ee7a7"; }; patches = [ ../development/python-modules/virtualenv-change-prefix.patch ]; @@ -3212,6 +3383,62 @@ let pythonPackages = python.modules // rec { }; }); + + zconfig = buildPythonPackage rec { + name = "zconfig-${version}"; + version = "2.9.3"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-${version}.tar.gz"; + md5 = "2c5f73c216140a705be3d9c44b988722"; + }; + + propagatedBuildInputs = [ zope_testrunner ]; + + meta = { + description = "Structured Configuration Library"; + homepage = http://pypi.python.org/pypi/ZConfig; + license = "ZPL"; + }; + }; + + + zc_lockfile = buildPythonPackage rec { + name = "zc_lockfile-${version}"; + version = "1.0.2"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.lockfile/zc.lockfile-${version}.tar.gz"; + md5 = "f099d4cf2583a0c7bea0146a44dc4d59"; + }; + + meta = { + description = "Inter-process locks"; + homepage = http://www.python.org/pypi/zc.lockfile; + license = "ZPL"; + }; + }; + + + zdaemon = buildPythonPackage rec { + name = "zdaemon-${version}"; + version = "3.0.5"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; + md5 = "975f770544bb4352c5cf32fec22e63c9"; + }; + + propagatedBuildInputs = [ zconfig ]; + + meta = { + description = "A daemon process control library and tools for Unix-based systems"; + homepage = http://pypi.python.org/pypi/zdaemon; + license = "ZPL"; + }; + }; + + zfec = buildPythonPackage (rec { name = "zfec-1.4.7"; @@ -3241,6 +3468,102 @@ let pythonPackages = python.modules // rec { }; }); + + zodb3 = buildPythonPackage rec { + name = "zodb3-${version}"; + version = "3.10.5"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-${version}.tar.gz"; + md5 = "6f180c6897a1820948fee2a6290503cd"; + }; + + propagatedBuildInputs = [ manuel transaction zc_lockfile zconfig zdaemon zopeInterface zope_event ]; + + meta = { + description = "An object-oriented database for Python"; + homepage = http://pypi.python.org/pypi/ZODB3; + license = "ZPL"; + }; + }; + + + zope_event = buildPythonPackage rec { + name = "zope_event-${version}"; + version = "4.0.2"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.event/zope.event-${version}.tar.gz"; + md5 = "e08dd299d428d77a1cfcbfe841b81872"; + }; + + meta = { + description = "An event publishing system"; + homepage = http://pypi.python.org/pypi/zope.event; + license = "ZPL"; + }; + }; + + + zope_exceptions = buildPythonPackage rec { + name = "zopeexceptions-${version}"; + version = "4.0.5"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.exceptions/zope.exceptions-${version}.tar.gz"; + md5 = "c95569fcb444ae541777de7ae5297492"; + }; + + propagatedBuildInputs = [ zopeInterface ]; + + meta = { + description = "Exception interfaces and implementations"; + homepage = http://pypi.python.org/pypi/zope.exceptions; + license = "ZPL"; + }; + }; + + + zope_testing = buildPythonPackage rec { + name = "zope_testing-${version}"; + version = "4.1.1"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testing/zope.testing-${version}.tar.gz"; + md5 = "2e3829841090d6adff718b8b73c87b6b"; + }; + + propagatedBuildInputs = [ zopeInterface zope_exceptions ]; + + meta = { + description = "Zope testing helpers"; + homepage = http://pypi.python.org/pypi/zope.testing; + license = "ZPL"; + }; + }; + + + zope_testrunner = buildPythonPackage rec { + name = "zope_testrunner-${version}"; + version = "4.0.4"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testrunner/zope.testrunner-${version}.zip"; + md5 = "cd648fc865a79aa0950e73342836dd4c"; + }; + + buildInputs = [ pkgs.unzip ]; + + propagatedBuildInputs = [ subunit zopeInterface zope_exceptions zope_testing ]; + + meta = { + description = "A flexible test runner with layer support"; + homepage = http://pypi.python.org/pypi/zope.testrunner; + license = "ZPL"; + }; + }; + + zopeInterface = buildPythonPackage { name = "zope-interface-3.6.1"; src = fetchurl { diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index 4a5f7602d02..d03f2724e1f 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,7 +1,11 @@ rec { - allPackages = import ./all-packages.nix; - pkgs = allPackages {}; + # Ensure that we don't build packages marked as unfree. + allPackages = args: import ./all-packages.nix (args // { + config.allowUnfree = false; + }); + + pkgs = allPackages { }; /* !!! Hack: poor man's memoisation function. Necessary for prevent Nixpkgs from being evaluated again and again for every diff --git a/pkgs/top-level/release-python.nix b/pkgs/top-level/release-python.nix new file mode 100644 index 00000000000..e21b4fa5964 --- /dev/null +++ b/pkgs/top-level/release-python.nix @@ -0,0 +1,2015 @@ +/* + This file will be evaluated by hydra with a call like this: + hydra_eval_jobs --gc-roots-dir \ + /nix/var/nix/gcroots/per-user/hydra/hydra-roots --argstr \ + system i686-linux --argstr system x86_64-linux --arg \ + nixpkgs "{outPath = ./}" .... release.nix + + Hydra can be installed with "nix-env -i hydra". +*/ +with (import ./release-lib.nix); + +let + jobsForDerivations = attrset: pkgs.lib.attrsets.listToAttrs + (map + (name: { inherit name; + value = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };}) + (builtins.attrNames + (pkgs.lib.attrsets.filterAttrs + (n: v: (v.type or null) == "derivation") + attrset))); + +in +{ + + tarball = import ./make-tarball.nix; + +} // (mapTestOn rec { + + a2jmidid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aacskeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2005 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2006 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2007 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2008 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2009 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2010 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aangifte2011 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + abc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + abcde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + abiword = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + acl2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + adobeReader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + agg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + alienarena = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + allegro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + allegro5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + alliance = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + alsaPlugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + alsaPluginWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amsn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amule = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amuleDaemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amuleGui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + androidsdk_4_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + andyetitmoves = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ant = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + antlr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + antlr3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + apacheAntGcj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + apacheAntOpenJDK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + apacheAntOracleJDK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + apparmor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aqbanking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + arb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ardour3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + arora = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + asc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + asciidoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + asio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aspectj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + asymptote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atanks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atari800 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ataripp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atermjava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atkmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + attica = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aubio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + auctex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + audacious = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + audacity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + autojump = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + automoc4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + avahi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + avidemux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + avogadro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + awesome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aws_mturk_clt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + axis2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + azureus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ballAndPaddle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + baresip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bazaar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + beast = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + beret = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ber_metaocaml_003 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bibletime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bibtextools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + binutils_gold = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + biolib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bitcoin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bitlbee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bitsnbots = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bittornado = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bittorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blackshades = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blackshadeselite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blender = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blobby = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blueman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bluez = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boinc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boomerang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost144 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost146 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost147 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost149 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + boost151 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + botan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + box2d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + box2d_2_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + briss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bsddb3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + btanks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + btrfsProgs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + buildbot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bumblebee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bzflag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + caelum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cairomm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + calf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + calibre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + caneda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + carrier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + castle_combat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cbrowser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cc1394 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cdrdao = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cflow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cgal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cgui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + chatzilla = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cheetahTemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + chipmunk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + chromiumWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + chromium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cilaterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cinelerra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cinepaint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ciopfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clangUnwrapped = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clanlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + classpath = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clearsilver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clisp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clisp_2_44_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clojure = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clojure_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clooj_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clucene_core_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clutter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clutter_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + clutter_gtk_0_10 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cmakeWithGui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cmus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coccinelle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cogl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coin3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + comical = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + compiz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + compton = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + conkeror = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + conky = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + consolekit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + construo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + construoBase = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coq_8_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coriander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + couchdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + crack_attack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + crrcsim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cryptsetup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + csound = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + csslint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cudatoolkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cuneiform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cups_pdf_filter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + curlftpfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cvs2svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cython = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + d4x = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + darktable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dbench = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dblatex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dbus_cplusplus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dbus_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dbus_java = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dbus_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ddd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + debian_devscripts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dejagnu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + desktop_file_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + devicemapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dico = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + directfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + directvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + disnix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + disnixos = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + DisnixWebService = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + disper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + distcc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + distrho = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + djview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dmenu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dmraid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dmtcp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dmtx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + docutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dosbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + doxygen_gui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dragonegg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + drbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + drgeo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dropbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dstat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + duplicity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dvdauthor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dvswitch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dwarf_fortress = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eaglemode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + easytag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ec2_api_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ecj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipses = { + eclipse_cpp_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_cpp_37 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_modeling_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_sdk_35 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_sdk_36 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_sdk_37 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eclipse_sdk_42 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + ecryptfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + edk2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eduke32 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eggdbus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + egoboo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ekiga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + elasticmq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + electricsheep = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + elinks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacs22 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacs23 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacs24Packages = { + autoComplete = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bbdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + calfw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cedet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + coffee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + colorTheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ecb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacsSessionManagement = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emacsw3m = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + flymakeCursor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + graphvizDot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jdee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + js2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + logito = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + loremIpsum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + magit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + maudeMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + notmuch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocamlMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + org = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + org2blog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pcache = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + proofgeneral = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rectMark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + remember = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scalaMode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sunriseCommander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmlRpc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + emboss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + enblendenfuse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + encfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + enchant = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + enlightenment = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + epdfview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + epm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eprover = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eql = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + esdl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + espeakedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + etherape = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + euca2ools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eukleides = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + evince = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + evolution_data_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + evopedia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + expect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + exrdisplay = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + extremetuxracer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + exult = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + facile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fail2ban = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fakenes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + farsight2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + farstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fbida = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fbpanel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fdisk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + feh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ffado = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ffmpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ffmpeg_0_6_90 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ffmpeg_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fileschanged = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + firefox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + firefox13Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + firefox17Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + firefox36Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + flann = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + flashplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + flightgear = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fltk13 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fltk20 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fluidsynth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fontforgeX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + foo2zjs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + foursuite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + framac = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freecad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freeciv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freedink = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freeglut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freemind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freepv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freerdp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freerdpUnstable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freestyle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freetalk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + freetts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fsg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fspot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ftgl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ftgl212 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fuppes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fusesmb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gajim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gav = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gcj = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gcj44 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gcj46 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gcl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GConf3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gdbCross = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gdk_pixbuf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gdmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gdome2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gecko_mediaplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + geeqie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gegl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gegl_0_0_22 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gemrb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gensgs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + geoclue = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + geoipjava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + get_iplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + getmail = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gftp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ghostOne = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ghostscriptX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + giblib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gifsicle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gigedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gimp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gimp_2_8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gimpPlugins = { + fourier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gimplensfun = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gmic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lqrPlugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + resynthesizer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texturize = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ufraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + waveletSharpen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + girara = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitAndTools = { + darcsToGit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + git2cl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitAnnex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitBz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitFastExport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitSubtree = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gitSVN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qgit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qgitGit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stgit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + svn2git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + svn2git_kde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + giv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gkrellm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gl117 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glestae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glew = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glfw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glibmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glib_networking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + globulation2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gltron = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glxinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gmime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gmtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gmu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnokii = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome = { + at_spi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GConf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gconfmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_control_center = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_desktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_doc_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_icon_theme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_keyring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_menus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_panel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_session = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_settings_daemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_vfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_vfs_monikers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtk_doc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkglext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkglextmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkhtml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtksourceview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gvfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libbonobo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libbonoboui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libglade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libglademm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomecanvas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomecanvasmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomecups = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomekbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomeprint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomeprintui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnomeui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgtkhtml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgweather = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libIDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libsoup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libunique = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwnck = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + metacity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nautilus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ORBit2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pango = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pangomm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python_rsvg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + startup_notification = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vte = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zenity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + gnome_mplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_terminator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnome_user_docs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnonlin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnucash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnu = { + hurdHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libpthreadHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mach = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + machHeaders = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mig_raw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + gnumeric = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnunet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnunet08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnupg2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gnuplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gob2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gobby5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gobjectIntrospection = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + goffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + goffice_0_9 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + goldendict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + golly = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + goocanvas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + googleearth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + google_talk_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gosmore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gource = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gparted = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gpgme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gphoto2fs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gpscorrelate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gpsd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gqview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grantlee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + graphicsmagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + graphicsmagick137 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + graphviz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + graphviz_2_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gravit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grub2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + grub2_efi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gsettings_desktop_schemas = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gsmartcontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gssdp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_ffmpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_plugins_bad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_plugins_base = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_plugins_good = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_plugins_ugly = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gst_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtk3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkdatabox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkdialog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkgnutella = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkimageview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkmathview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkmm3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkmozembedsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkpod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtksharp1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtksharp2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtksourceviewsharp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkspell = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtkwave = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtmess = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + guileCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + guileGnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + guitone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gupnp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gupnp_igd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gupnptools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gutenprint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gutenprintBin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gwenhywfar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gwrap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gxneur = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hadoop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + harfbuzz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPackages = { + accelerateCuda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + accelerateExamples = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + Chart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cuda = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + diagrams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + diagramsCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ghcMod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLFW = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gloss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLURaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLUT = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLUT_2_1_1_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLUT_2_1_2_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLUT_2_2_2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GLUT_2_3_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtksourceview2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2009_2_0_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2010_1_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2010_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2011_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2011_2_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2011_4_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + haskellPlatform_2012_2_0_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + HGL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hmatrix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hp2anyGraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lambdacubeEngine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + LambdaHack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + leksah = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + leksahServer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lhs2tex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ltk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGL_2_2_1_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGL_2_2_3_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGL_2_4_0_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGL_2_6_0_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OpenGLRaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pakcs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pango = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + reactiveBananaWx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + repaAlgorithms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + repaExamples = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDLImage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDLMixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDLTtf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + splot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + svgcairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + threadscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + timeplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + uhc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vacuumCairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wxc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wxcore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + X11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + X11Xft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmobar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmonad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmonadContrib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmonadExtras = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + haxe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + heimdall = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + herqq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hevea = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hexen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + highlight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hol_light = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + homebank = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hplip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + htmldoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + httpfs2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hwloc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hydraAntLogger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hydrogen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + i3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + i3lock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + i7z = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icbm3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icecat3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icecat3Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icecat3Xul = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icecatXulrunner3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icedtea = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + icewm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + idutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ikiwiki = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + imagemagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + imagemagickBig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + imlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + imlib2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + impressive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + indilib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + inkscape = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + instead = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + intelgen4asm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + io = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ion3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + iotop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + iprover = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + irrlicht3843 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + irssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + isabelle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + isocodes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + itk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + itstool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jackaudio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jack_capture = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jackmeter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jags = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jamp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + javaCup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jbidwatcher = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jboss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jboss_mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jbrout = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jclasslib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jdiskreport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jfsrec = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jigdo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jing_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jjtraveler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jnettop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jrePlugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jruby165 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jscoverage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + json_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + julia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + k3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kaffe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kde3 = { + arts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdelibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + kde4 = { + akonadi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + akunambol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amarok = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + amor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aurorae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bangarang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + basket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + blinken = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bluedevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + calligra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cantor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cervisia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ColorSchemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + desktopthemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + digikam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dolphin_plugins_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + dolphin_plugins_svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + emoticons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + filelight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + filesharing = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gwenview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + HighResolutionWallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + IconThemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + jovie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + k3b = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kaccessible = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kadu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kalgebra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kalzium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kamera = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kanagram = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kapptemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kbibtex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kbluetooth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kbruch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kcachegrind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kcalc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kcharselect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kcolorchooser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kcron = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeaccessibility = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeaccounts_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeadmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeartwork = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kde_baseapps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdebindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeedu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdegames = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdegraphics = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdegraphics_strigi_analyzer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdegraphics_thumbnailers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdelibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdemultimedia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdenetwork = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdenlive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdepim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdepimlibs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdepim_runtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeplasma_addons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kde_runtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdesdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdesvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdetoys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdeutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdevelop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdevplatform = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kde_wacomtablet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdewebdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kde_workspace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdiff3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kdnssd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kfile_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kfilereplace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kfloppy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kgamma = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kgeography = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kget = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kgpg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + khangman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kimagemapeditor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kioslave_perldoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kioslave_svn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kipi_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kiten = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + klettres = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + klinkstatus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmag = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmousetool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmouth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmplayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmplot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmtrace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kmymoney = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + koffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kolourpaint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kommander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kompare = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + konq_plugins = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + konsole = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + konversation = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kopete = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kpartloader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kppp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kprofilemethod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + krdc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kremotecontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + krename = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + krfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kruler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + krusader = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ksaneplugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kscreensaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ksnapshot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ksshaskpass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kstars = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kstartperf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ksystemlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kteatime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ktimer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ktorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ktouch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kturtle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ktux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kuickshow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kuiviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kuser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kwallet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kwin_styles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kwooty = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kwordquiz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.bg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.bs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ca = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ca_valencia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.cs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.da = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.de = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.el = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.en_GB = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.es = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.et = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.eu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.fi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.fr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.gl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.he = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.hr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.hu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.id = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.is = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.it = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ja = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.kk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.km = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.kn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ko = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.lt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.lv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.nb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.nds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.nl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.nn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.pa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.pl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.pt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.pt_BR = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ru = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.si = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.sk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.sl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.sr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.sv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.th = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.tr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.ug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.uk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.wa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.zh_CN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + l10n.zh_TW = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libalkimia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libkdcraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libkdeedu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libkexiv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libkipi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libksane = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libktorrent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libkvkontakte = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liblikeback = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lokalize = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + marble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mobipocket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + networkmanagement = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + okteta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + okular = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + parley = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + partitionManager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + polkit_kde_agent = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + poxml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + printer_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + psi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pykde4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quassel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quasselClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quasselDaemon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rekonq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rocs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rsibreak = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scripts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + semnotes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + skrooge = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smokegen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smokeqt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sounds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + step = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + strigi_analyzer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + styles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + superkaramba = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + svgpart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sweeper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + system_config_printer_kde = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.accounts_kcm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.approver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.auth_handler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.call_ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.common_internals = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.contact_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.contact_list = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.contact_runner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.filetransfer_handler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.kded_integration_module = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.presence_applet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.send_file = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.telepathy_logger_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy.text_ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + umbrello = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + WeatherWallpapers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + yakuake = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zanshin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + keen4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + keepassx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + keepnote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + keymon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + keynav = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kicad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kino = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + klavaro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kobodeluxe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kona = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + larswm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lash = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lastwatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + latencytop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lazarus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ldcpp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ledger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ledger3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + leiningen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lensfun = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + leo2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lesstif = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lesstif93 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libao = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libassuan2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libatasmart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libbluedevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libbluray = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libcanberra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libcdr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libchamplain = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libchamplain_0_6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libcm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libcroco = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libcxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libdbusmenu_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libdevil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libdmtx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libdrm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libextractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libfixposix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgdata = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgdata_0_6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgdiplus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnome_keyring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgnome_keyring3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgpod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgsf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgtop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgweather = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libimobiledevice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libinfinity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liblapack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liblastfm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liblqr1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libmatchbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libmatthew_java = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libmms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libmusclecard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libnice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libnotify = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liboil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libopensc_dnie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libplist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libpseudo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libqalculate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libQGLViewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + librecad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libreoffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + librsvg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libsexy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libstartup_notification = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libtiger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libtorrentRasterbar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libva = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libvdpau = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libviper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libvirt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libvisio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libvncserver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libvterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwmf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwnck3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwpd_08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libwpg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxklavier = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxml2Python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxmlxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lilv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lilypond = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lincity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lingot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + links2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + linphone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + linux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + linuxConsoleTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + linuxPackages = { + acpi_call = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + atheros = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ati_drivers_x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aufs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + aufs_util = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bbswitch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + broadcom_sta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cryptodev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + e1000e = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + exmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + frandom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + iscsitarget = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + iwlwifi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + klibc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + kqemu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ndiswrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nvidia_x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nvidia_x11_legacy173 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nvidia_x11_legacy96 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openafsClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openiscsi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ov511 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + perf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sysprof = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + systemtap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tp_smapi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + v86d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtualbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtualboxGuestAdditions = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wis_go7007 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + linuxsampler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + liquidwar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + llvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lmms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + log4cxx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + logstalgica = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + loudmouth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + love = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lyx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mailutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mars = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + martyr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + matchbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + matita = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + matita_130312 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + maven = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + maxima = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mcabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mcelog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mcomix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mcrl2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mdbtools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mdbtools_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mediastreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mediatomb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + meld = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mercurial = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mercurialFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + merkaartor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mesa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + meshlab = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mess = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + metaocaml_3_09 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mhwaveedit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + micropolis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + midori = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + midoriWrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + minecraft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + miniHttpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mirage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mitscheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mjpegtools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mkvtoolnix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mlt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mmex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + modemmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mod_python = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mod_wsgi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mongodb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mono = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + monodevelop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + monodoc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + monotone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + monotoneViz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mountall = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mozart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mozilla = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mozplugger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mp3info = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mpc123 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mpd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mpg321 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mpich2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + MPlayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mrxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + msilbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mtdutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + multipath_tools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + multisync = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mumble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mupdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mupen64plus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + muscleframework = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + muscletool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mutt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mygui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + myguiSvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mysqlWorkbench = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mythtv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + naev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + navipowm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + navit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ncbiCTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + netbeans = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + netboot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + netsurf.browser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + networkmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + networkmanagerapplet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + networkmanager_pptp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + networkmanager_pptp_gnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + neverball = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nfsUtils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ngspice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ninka = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + njam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nodejs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nodePackages = { + abbrev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ansi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + async = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + backbone = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + browserchannel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bson = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + buffertools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + bytes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + commander = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + connect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cookie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + crc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cssmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + datetime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + debug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + diff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + eyes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + formidable = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fresh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + fstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + glob = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + hiredis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + inherits = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + knox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + less = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + minimatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mkdirp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mongodb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mrclean = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nopt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + npm2nix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + npmlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + optimist = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + options = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + osenv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pause = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + policyfile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rbytes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + redis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + request = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + requirejs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rimraf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + semver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + send = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + showdown = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sockjs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + swig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + temp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + timerstub = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tinycolor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + underscore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vows = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + which = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wordwrap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ws = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmlhttprequest = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zeparser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + notmuch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nova = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + novaclient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nspluginwrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nss = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nss_pam_ldapd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nssTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ntop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ntrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + numeric = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + nut_2_6_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + obexd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + obex_data_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + obexfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + obexftp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + obnam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_3_08_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_3_10_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_3_11_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_4_00_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocamlnat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocamlPackages = { + camlidl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camlp5_5_strict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camlp5_5_transitional = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camlp5_6_strict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camlp5_6_transitional = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camlzip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camomile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + camomile_0_8_2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + cryptokit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + findlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gmetadom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lablgtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + lablgtkmathview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + menhir = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mldonkey = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_batteries = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_cryptgps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_expat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_extlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocamlgraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_http = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_lwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_mysql = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocamlnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_pcre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_react = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_sexplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_sqlite3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_ssl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ocaml_typeconv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ounit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pycaml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ulex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ulex08 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + octave = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + octaveHG = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + offlineimap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ogre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ogrepaged = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ois = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + omake = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + oneteam = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openbabel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openbox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opencascade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opencsg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openct = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opencv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opencv_2_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openfire = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openlierox = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openobex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openoffice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opensc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openscad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opensc_dnie_wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openscenegraph = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + openttd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opentyrian = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opera = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opkg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + opusTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + oraclejdk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + oraclejre = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + OVMF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + oxygen_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pam_console = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pam_usb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pangoxsl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + panomatic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + paraview = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + parted = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + parted_2_3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + path64 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pavucontrol = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pcmciaUtils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pcsclite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pdf2djvu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pdfread = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pdftk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + perlPackages = { + Autodia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GD = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + GraphViz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + InlineJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + PerlMagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SQLTranslator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + TextRecordParser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + X11GUITest = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + petrifoo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pfstools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pgadmin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + philter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + phonon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + phonon_backend_gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + phonon_backend_vlc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pianobooster = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + picard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + picolisp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidgin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidginlatex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidginlatexSF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidginmsnpecan = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidginotr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pidginsipe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pinentry = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pinta = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pioneers = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pius = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + plan9port = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + plib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ploticus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pltScheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pmutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + policykit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + polkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + polkit_gnome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + polkit_qt_1 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pommed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pong3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + poppler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + popplerQt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + postgresql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pqiv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + praat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + prboom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + prison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + privateer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + proxychains = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pstack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ptlib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pulseaudio = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pure = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + puredata = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + putty = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pycairo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pycrypto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pycups = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pydb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyexiv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pygame = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pygobject = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pygtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyGtkGlade = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyIRCt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyMAILt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyopenssl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyqt4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyrex = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyrex096 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyside = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pysideApiextractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pysideGeneratorrunner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pysideShiboken = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pysideTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pystringtemplate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python26 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python27 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python26Full = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python27Full = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + python26Packages = jobsForDerivations pkgs.python26Packages; + python27Packages = jobsForDerivations pkgs.python27Packages; + python3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pythonDBus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pythonIRClib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pythonmagick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pythonSexy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + pyxml = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qca2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qca2_ossl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qcmm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qemu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qemu_1_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qfsm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qgis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qimageblitz = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qjackctl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qjoypad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qjson = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qoauth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qrdecode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qrupdate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qsampler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qshowdiff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qsynth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qt3 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qt47 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qt_gstreamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qtpfsgui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qtractor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qtscriptgenerator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quake3demo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quake3game = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qucs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + quesoglc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + qwt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rabbitmq_server = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + racer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + racket = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rakarrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rapcad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rapidsvn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ratpoison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rawtherapee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rdesktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rdf4store = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rdiff_backup = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + RealPlayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + recutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + redshift = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + relfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + remmina = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + reptyr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rhino = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rhpl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rigsofrods = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rili = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rLang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rockbox_utility = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rrdtool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rssglx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rtmpdump = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rubber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rubyLibs.buildr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rubyLibs.rjb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + rxvt_unicode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + s3cmd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sabnzbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sakura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + salut_a_toi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + samba = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + saneFrontends = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + satallax = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sauerbraten = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + saxonb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sbcl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + schroedinger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scilab = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scons = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scorched3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scribus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scrot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + scummvm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_gfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_image = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_mixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_net = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_sound = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + SDL_ttf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + seeks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + seg3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + seleniumRCBin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + seq24 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + serd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sfml_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sgtpuzzles = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + shared_mime_info = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sharedobjects = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + silgraphite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + simgear = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + simutrans = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + six = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + skype = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + slim = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + slock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smatch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smbnetfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smpeg = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + snack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + snd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sndBase = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sofia_sip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + soi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sonic_visualiser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + soprano = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + soqt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sord = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sourceHighlight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spaceOrbit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + speechd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + speed_dreams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spidermonkey_185 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spotify = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + spring = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + springLobby = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sratom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sshfsFuse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ssreflect = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + st = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stalin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stalonetray = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stardict = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stardust = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stellarium = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + strigi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stumpwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + stuntrally = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sublime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + subversionClient = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + suil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + suitesparse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + superTux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + superTuxKart = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + surf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + swh_lv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + swiProlog = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + swt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + sylpheed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + synergy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + syslogng = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + system_config_printer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + systemd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + t1lib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tabbed = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tahoelafs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tailor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tangogps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + taskjuggler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tbe = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + teamspeak_client = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + teetertorture = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + teeworlds = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_farstream = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_gabble = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_glib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_haze = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_logger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_mission_control = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_qt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_rakia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + telepathy_salut = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tennix = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texDisser = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLive = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveBeamer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveCMSuper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveContext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveExtra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveFull = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveLatexXColor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLiveModerncv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texLivePGF = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + texmacs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + thunderbird = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tigervnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tightvnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + timidity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tkabber = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tkcvs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tkgate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tkgate2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tomcat5 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tomcat_connectors = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tomcat_mysql_jdbc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + torchat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + torcs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + trackballs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + trang = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + transmission = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + transmission_remote_gtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + trayer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tremulous = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tribler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + trigger = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + truecrypt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tulip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + tvtime = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + twinkle = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + uae = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ubootGuruplug = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ubootNanonote = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + udev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + udev145 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + udisks = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ufoai = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ufraw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ultimatestunts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ultrastardx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + unclutter = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + unetbootin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + unison = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + upower = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + uqm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + urbanterror = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + usbmuxd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + uzbl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + v4l_utils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + v8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vacuum = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vala = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vala15 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vala16 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + valgrind = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + valkyrie = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vde2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vdpauinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vdrift = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vectoroids = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + veracity = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vfdecrypt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vice = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vidalia = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + viewMtn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vigra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + viking = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vimHugeX = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vimprobable2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vimprobable2Wrapper = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtinst = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtualgl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + virtviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vkeybd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vlc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vncrec = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vorbisTools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vrpn = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vtk = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vue = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + vwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + w3cCSSValidator = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + warmux = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + warsow = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + warzone2100 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wavesurfer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wdfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + webkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + webkit_gtk2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + webkitSVN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + weechat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + welkin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wesnoth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wicd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + widelands = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wineWarcraft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wireshark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wkhtmltopdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wmiimenu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wmiiSnap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wmname = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wordnet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wpa_supplicant_gui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wv2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wvdial = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wvstreams = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wxGTK = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wxGTK29 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + wxmaxima = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x11_ssh_askpass = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x11vnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x2vnc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x2x = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xalanJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xaos = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xapianBindings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xapianBindings10 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xara = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xautolock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + Xaw3d = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xawtv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xbindkeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xboard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xbursttools = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xchat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xchm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xclip = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcompmgr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xconq = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xdaliclock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xdotool = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xercesJava = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86_input_mtrack = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86_input_multitouch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86_input_wacom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86_video_nested = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86_video_nouveau = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce = { + exo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + garcon = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gigolo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gtk_xfce_engine = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + gvfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libgdu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxfce4ui = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxfce4util = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxfcegui4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + mousepad = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ristretto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + terminal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + thunar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + thunar_volman = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4_appfinder = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4_cpufreq_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4icontheme = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4mixer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4panel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4_power_manager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4session = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4settings = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4_systemload_plugin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfce4_taskmanager = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfceutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfconf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfdesktop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfwm4 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + xfig = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xfontsel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xineLib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xineUI = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xkeyboard_config = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xlaunch = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xlibs = { + libAppleWM = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libdmx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libWindowsWM = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libX11 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXaw = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxcb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXcomposite = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXcursor = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXdamage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXext = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXfixes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXft = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXinerama = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libxkbfile = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXmu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXpm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXrandr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXrender = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXres = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXScrnSaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXtst = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXvMC = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXxf86dga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXxf86misc = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + libXxf86vm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + setxkbmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + smproxy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + twm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + x11perf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xauth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xbacklight = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbproto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbutil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbutilimage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbutilkeysyms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbutilrenderutil = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcbutilwm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xclock = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcmsdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcursorgen = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xcursorthemes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xdm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xdpyinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xdriinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xeyes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputevdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputjoystick = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputkeyboard = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputmouse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputsynaptics = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputvmmouse = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86inputvoid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoark = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoast = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoati = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videocirrus = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videodummy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videofbdev = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videogeode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoglide = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoglint = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoi128 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videointel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videointel_2_14_901 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videointel_2_17_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videomach64 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videomga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoneomagic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videonewport = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videonv = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videoopenchrome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videor128 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videosavage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videosiliconmotion = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videosis = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videosuncg6 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videosunffb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videotdfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videotga = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videotrident = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videov4l = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videovesa = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videovmware = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videovoodoo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xf86videowsfb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xgamma = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xhost = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xinit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xinput = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xkbcomp = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xkbevd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xkbutils = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xkill = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xlsatoms = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xlsclients = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmessage = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmodmap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xorgserver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xorgserver_1_13_0 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xpr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xprop = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xrandr = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xrdb = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xrefresh = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xset = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xsetroot = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xvinfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xwd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xwininfo = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xwud = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + xlockmore = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xlsfonts = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmacro = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmlroff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmoto = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmove = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xmpppy = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xnee = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xneur = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xneur_0_8 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xonotic = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xorg_sys_opengl = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xorgVideoUnichrome = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xoscope = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xosd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xournal = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xpdf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xpf = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xplanet = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xpra = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xsane = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xscreensaver = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xsel = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xsokoban = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xsynth_dssi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xterm = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xtrace = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xtreemfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xulrunner = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xvfb_run = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xvidcap = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + xxdiff = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + yate = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + yoshimi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + youtubeDL = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zathura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zathuraCollection = { + zathura_core = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zathura_djvu = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zathura_pdf_poppler = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zathura_ps = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + }; + zbar = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zdoom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zgrviewer = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zod = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zoom = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + ZopeInterface = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zsnes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zynaddsubfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; + zziplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; +})