summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
| * | | | accountsservice: convert patch to default formatAlexander Ried2016-09-01
| | | | |
* | | | | unstable is now 17.03Domen Kožar2016-09-02
| | | | |
* | | | | cpulimit: 2.2 -> 2.3Robert Helgesson2016-09-02
| | | | |
* | | | | glu dev in mesa attributeKarn Kallio2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After making multiple outputs in the mesa_glu package the headers are not included in the mesa attribute. The attached patch puts them in it. From ced24208a300bea8234e7898ae6fec34fbd67289 Mon Sep 17 00:00:00 2001 From: Karn Kallio <kkallio@skami.org> Date: Thu, 1 Sep 2016 16:18:23 -0400 Subject: [PATCH] mesa: Add the mesa glu headers to the mesa attribute.
* | | | | wring: use node2nix generated packageSander van der Burg2016-09-01
| | | | |
* | | | | php: 5.6 -> 7.0Domen Kožar2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | I'll probably regret this in testing period, but let's bump php since 5.6 support expires in December.
* | | | | azure-cli: remove, because it has been supersed by a version generated by ↵Sander van der Burg2016-09-01
| | | | | | | | | | | | | | | | | | | | node2nix
* | | | | pythonPackages.jinja2: no testsFrederik Rietdijk2016-09-01
| | | | |
* | | | | pythonPackages.hypothesis1: remove itFrederik Rietdijk2016-09-01
| | | | | | | | | | | | | | | | | | | | and let dependents use the latest version
* | | | | Merge pull request #18197 from nand0p/sphinx-1-3-6-test-fixFrederik Rietdijk2016-09-01
|\ \ \ \ \ | | | | | | | | | | | | sphinx: sphinx-1.3.6 test fixup
| * | | | | sphinx: sphinx-1.3.6 test fixupFernando J Pando2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes this error: ``` FAIL: test_setup_command.test_build_sphinx_return_nonzero_status ---------------------------------------------------------------------- Traceback (most recent call last): File "/nix/store/zfmk6mqmr1046bh0cnh06frd0bb0nr20-python2.7-nose-1.3.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest self.test(*self.arg) File "/tmp/nix-build-python2.7-Sphinx-1.3.6.drv-0/Sphinx-1.3.6/tests/test_setup_command.py", line 55, in deco func(pkgrootdir, proc) File "/tmp/nix-build-python2.7-Sphinx-1.3.6.drv-0/Sphinx-1.3.6/tests/test_setup_command.py", line 110, in test_build_sphinx_return_nonzero_status assert proc.returncode != 0, 'expect non-zero status for setup.py' AssertionError: expect non-zero status for setup.py ``` Tested on Linux - python 2.7 - python 3.5
* | | | | | openjdk: Keep {include,man} in $out/lib/opendjk. (#18140)reltuk2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * openjdk: Keep {include,man} in $out/lib/opendjk. This is a standard layout that some JDK consumers expect. * openjdk/8: Improve clarity of some symlink commands with terminating slash.
* | | | | | Fixes #18124: atomically replace /var/setuid-wrappers/ (#18186)Domen Kožar2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this commit updating /var/setuid-wrappers/ folder introduced a small window where NixOS activation scripts could be terminated and resulted into empty /var/setuid-wrappers/ folder. That's very unfortunate because one might lose sudo binary. Instead we use two atomic operations mv and ln (as described in https://axialcorps.com/2013/07/03/atomically-replacing-files-and-directories/) to achieve atomicity. Since /var/setuid-wrappers is not a directory anymore, tmpfs mountpoints were removed in installation scripts and in boot process. Tested: - upgrade /var/setuid-wrappers/ from folder to a symlink - make sure /run/setuid-wrappers-dirs/ legacy symlink is really deleted
* | | | | | virtualbox: add headless build (without Qt dependency) (#18026)Данило Глинський (Danylo Hlynskyi)2016-09-01
| | | | | |
* | | | | | openjdk: Fix #17603Tim Steinbach2016-09-01
| | | | | |
* | | | | | Merge pull request #18172 from Profpatsch/startAt-typeDomen Kožar2016-09-01
|\ \ \ \ \ \ | | | | | | | | | | | | | | systemd-unit-options: startAt can be a list
| * | | | | | systemd-unit-options: startAt can be a listProfpatsch2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OnCalendar entrys can be specified multiple times in a systemd timer, to make more complex scheduling possible. Tested by manually checking the timer generated by the following: systemd = { services.huhu = { description = "meh"; wantedBy = [ "default.target" ]; serviceConfig.ExecStart = "/bin/sh -c 'printf HUHU!'"; startAt = [ "*:*:0/30" "*:0/1:15" ]; }; }; It prints HUHU to the log at seconds 0, 15 and 30 of each minute.
* | | | | | | Merge pull request #18196 from ttuegel/ghc-madv-freePeter Simons2016-09-01
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ghc801: disable MADV_FREE
| * | | | | | | ghc801: disable MADV_FREEThomas Tuegel2016-09-01
| | | | | | | |
* | | | | | | | pythonPackages.natsort: brokenFrederik Rietdijk2016-09-01
| | | | | | | |
* | | | | | | | pythonPackages.pathlib: fix testsFrederik Rietdijk2016-09-01
| | | | | | | |
* | | | | | | | pythonPackages.attrs: fix testsFrederik Rietdijk2016-09-01
| | | | | | | |
* | | | | | | | pythonPackages.hypothesis: remove optional dependenciesFrederik Rietdijk2016-09-01
| | | | | | | |
* | | | | | | | xfstests: 2016-08-06 -> 2016-08-26Tuomas Tynkkynen2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes build.
* | | | | | | | xfstests: Autodetect what to link in the wrapperTuomas Tynkkynen2016-09-01
| | | | | | | |
* | | | | | | | pythonPackages.cryptography: add missing dependencyFrederik Rietdijk2016-09-01
| | | | | | | |
* | | | | | | | gtk-gnutella: disable bindnow/fortify/pic/relro hardening (#18195)Kranium Gikos Mendoza2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | based on debian's settings at https://lintian.debian.org/full/lucab@debian.org.html#gtk-gnutella_1.1.8-2
* | | | | | | | vim_configurable: vimNoX broken on Darwin, but bring back vimHugeX worksTuomas Tynkkynen2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | D'oh, I was careless.
* | | | | | | | Disable bunch of non-compiling packages on DarwinTuomas Tynkkynen2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These ones have a "Last successful build" timestamp in the 2014s or 2015s. Presumably no one will notice if we now stop building them. softether_4_18 2015-09-20 http://hydra.nixos.org/build/39418483 lensfun 2014-09-30 http://hydra.nixos.org/build/39394104 net_snmp 2015-09-20 http://hydra.nixos.org/build/39410553 djview 2015-08-11 http://hydra.nixos.org/build/39413233 libmusicbrainz2 2015-09-20 http://hydra.nixos.org/build/39410106 fox_1_6 2014-05-07 http://hydra.nixos.org/build/39410858 libofx 2015-09-24 http://hydra.nixos.org/build/39423507 yacas 2014-09-30 http://hydra.nixos.org/build/39393150 iomelt 2014-09-30 http://hydra.nixos.org/build/39408486 softether 2015-09-20 http://hydra.nixos.org/build/39425800 mp4v2 2014-09-30 http://hydra.nixos.org/build/39421899 virtuoso7 2014-09-21 http://hydra.nixos.org/build/39415206 man_db 2015-04-23 http://hydra.nixos.org/build/39404236 libdiscid 2014-09-30 http://hydra.nixos.org/build/39412202 zabbix22.agent 2014-09-21 http://hydra.nixos.org/build/39412149 vidalia 2015-08-06 http://hydra.nixos.org/build/39411500 libmtp 2015-09-20 http://hydra.nixos.org/build/39419199 wxGTK29 2015-09-20 http://hydra.nixos.org/build/39415296 ncmpcpp 2015-11-06 http://hydra.nixos.org/build/39404455 libtorrent 2014-09-21 http://hydra.nixos.org/build/39394646 shishi 2014-03-21 http://hydra.nixos.org/build/39418874 ocaml_3_12_1 2014-09-30 http://hydra.nixos.org/build/39392996 djview4 2015-08-11 http://hydra.nixos.org/build/39427799 vimNox 2014-05-23 http://hydra.nixos.org/build/39397012 ttfautohint 2015-08-06 http://hydra.nixos.org/build/39398330 libraw 2015-09-24 http://hydra.nixos.org/build/39402271 wxGTK30 2015-09-20 http://hydra.nixos.org/build/39401871 sbcl_1_2_5 2015-09-20 http://hydra.nixos.org/build/39426091 prover9 2014-09-30 http://hydra.nixos.org/build/39406476 rcs 2015-08-25 http://hydra.nixos.org/build/39392037 gpac 2015-09-24 http://hydra.nixos.org/build/39399470 virtuoso6 2014-09-30 http://hydra.nixos.org/build/39398651 xlslib 2015-09-24 http://hydra.nixos.org/build/39410387 ucommon 2015-03-27 http://hydra.nixos.org/build/39414040 commoncpp2 2014-09-30 http://hydra.nixos.org/build/39420117 virtuoso 2014-09-21 http://hydra.nixos.org/build/39399978 miniHttpd 2014-09-30 http://hydra.nixos.org/build/39392925 mpack 2014-09-26 http://hydra.nixos.org/build/39399535 nbd 2014-09-26 http://hydra.nixos.org/build/39401367 newsbeuter-dev 2014-07-29 http://hydra.nixos.org/build/39406259 gimp_2_8 2015-09-20 http://hydra.nixos.org/build/39436271 gimp 2015-09-20 http://hydra.nixos.org/build/39435976 zabbix20.agent 2014-09-30 http://hydra.nixos.org/build/39393242 gst_all_1.gst-plugins-good 2015-09-20 http://hydra.nixos.org/build/39408506 ocaml_4_00_1 2014-09-30 http://hydra.nixos.org/build/39399526 inadyn 2014-09-30 http://hydra.nixos.org/build/39426389 gst_all_1.gst-plugins-bad 2015-09-20 http://hydra.nixos.org/build/39392970 zabbix.agent 2014-09-30 http://hydra.nixos.org/build/39421412 cmake-2_8 2015-09-24 http://hydra.nixos.org/build/39399443 liblastfm 2015-08-06 http://hydra.nixos.org/build/39421812 newsbeuter 2014-07-29 http://hydra.nixos.org/build/39396605 sdcv 2014-09-26 http://hydra.nixos.org/build/39412928
* | | | | | | | pythonPackages.keystoneclient: Fix bogus 'doCheck' valueTuomas Tynkkynen2016-09-01
| | | | | | | |
* | | | | | | | opencolorio: Use separate outputsEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, make the package name match the attribute (and upstream) name.
* | | | | | | | openimageio: Use separate outputsEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | ilmbase: Use separate outputsEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | opensubdiv: Use separate outputsEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | libapparmor: Move python stuff to a separate outputEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents systemd and by extension a zillion other packages from having Python 2.7 in their closure. For example, the closure of systemd dropped from 133 MiB to 85 MiB.
* | | | | | | | glew: Use separate outputs and don't install static librariesEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | mesa-glu: Use separate outputsEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | opensubdiv: Don't install static librariesEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | opensubdiv: Prevent runtime dependency on mesa_noglu.devEelco Dolstra2016-09-01
| | | | | | | |
* | | | | | | | x265: Don't install static libraryEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following our general policy to only install dynamic libraries. If the static library turns out to be needed, it could be moved to a separate output.
* | | | | | | | python-3.5: Drop dependency on Berkeley DBEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous commit revealed that Python wasn't actually using Berkeley DB; it only had it in its closure due to the build-time flag dump in Makefile and _sysconfigdata.py. When Python detects both GNU gdbm and Berkeley DB at build time, it will use the former.
* | | | | | | | python-3.5: Also remove -L flagsEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces the Python closure size by another 10 MiB.
* | | | | | | | tcl: Don't install a copy of tzdataEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This cuts about 3 MiB from the installed size. On Linux, the configure script is supposed to detect that installing tzdata is unnecessary, but it looks in locations like /usr/share/zoneinfo.
* | | | | | | | python-3.5: Eliminate -dev paths from the runtime closureEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces Python's closure size from 200 MiB to 129 MiB. Even better would be to get move tkinter to a separate output or package (since that would get rid of all X11 stuff), but that's a bit harder.
* | | | | | | | tk: Use a dev outputEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ensures that the propagated build inputs don't end up in tcl/tk's runtime closure, which is reduced by about 5 MiB.
* | | | | | | | tk: Separate man outputEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces the size of the main output by half a megabyte.
* | | | | | | | tcl: Separate man output and use symlinksEelco Dolstra2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces tcl's total size from 25.0 MiB to 8.6 MiB. Admittedly this is also because putting the manpages in the right place causes all man3 pages to be deleted by the multiple outputs setup hook. Not sure if that's desirable behaviour...
* | | | | | | | nerdfonts: Don't build on HydraTuomas Tynkkynen2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://hydra.nixos.org/build/39383371
* | | | | | | | nodePackage: replace azure-cli by node2nix generated expression + add eslint ↵Sander van der Burg2016-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to fix casperjs
* | | | | | | | pythonPackages.isodate: fix testsFrederik Rietdijk2016-09-01
| | | | | | | |