summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* qgis: 2.16.1 -> 2.16.2Lancelot SIX2016-08-30
|
* pythonPackages.sphinxcontrib-spelling: fix maintainer and licenseFrederik Rietdijk2016-08-30
|
* pythonPackages.sphinxcontrib-blockdiag: fix maintainer and licenseFrederik Rietdijk2016-08-30
|
* Merge pull request #18110 from holidaycheck/nodejs-6.4.0Daiderd Jordan2016-08-30
|\ | | | | nodejs-6_x: 6.3.1 -> 6.4.0
| * nodejs-6_x: 6.3.1 -> 6.4.0Tobias Pflug2016-08-30
| |
* | Revert "duply: add pythonPackages.cryptography"Frederik Rietdijk2016-08-30
| | | | | | | | | | | | This reverts commit 400d1d5c89741c2d6e94aa5c60b13f03fdc53e1c. Didn't fix https://github.com/NixOS/nixpkgs/issues/18112
* | add maintainersFrederik Rietdijk2016-08-30
| | | | | | | | @nand0p @ryansydnor
* | pythonPackages.cryptography_vectors: 1.4 -> 1.5Frederik Rietdijk2016-08-30
| |
* | pythonPackages.cryptography: 1.4 -> 1.5Frederik Rietdijk2016-08-30
| |
* | duply: add pythonPackages.cryptographyFrederik Rietdijk2016-08-30
| |
* | pythonPackages.cmdline: init at 0.1.6Frederik Rietdijk2016-08-30
| |
* | pythonPackages.process-tests: init at 1.2.1Frederik Rietdijk2016-08-30
| |
* | pythonPackages.helper: init at 2.4.1Frederik Rietdijk2016-08-30
| |
* | pythonPackages.pytestcov: 2.2.0 -> 2.3.1Frederik Rietdijk2016-08-30
| |
* | pythonPackages.pytest-fixture-config: init at 1.0.1Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | pythonPackages.pytest-shutil: init at 1.1.1Fernando J Pando2016-08-30
| | | | | | | | Tested on Linux
* | pythonPackages.pytest-server-fixtures: init at 1.1.0Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | pythonPackages.pytest-mock: init at 1.2Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | pythonPackages.jsonref: init at 0.1Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | pythonPackages.ramlfications: init at 0.1.9Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | pythonPackages.sphinxcontrib-spelling: init at 2.2.0Fernando J Pando2016-08-30
| | | | | | | | Tested on Linux
* | pythonPackages.funcparserlib: build on Python 3.xFrederik Rietdijk2016-08-30
| |
* | pythonPackages.sphinx-testing: init at 0.7.1Frederik Rietdijk2016-08-30
| |
* | pythonPackages.sphinxcontrib-blockdiag: init at 1.5.5Fernando J Pando2016-08-30
| | | | | | | | Tested on linux
* | pythonPackages.autobahn: init at 0.16.0Fernando J Pando2016-08-30
| | | | | | | | Tested on linux
* | pythonPackages.txaio: init at 2.5.1Fernando J Pando2016-08-30
| | | | | | | | | | Tested on Linux Tested on Darwin
* | rust{Beta,Unstable}: Remove outdated comment.Moritz Ulrich2016-08-30
| |
* | rust{Beta,Unstable}: Remove lowPrio callsShea Levy2016-08-30
| | | | | | | | | | These are sets of derivations and there is no recurseIntoAttrs, so the packages aren't exposed to nix-env by name at all.
* | Merge pull request #18096 from leenaars/wavrsocvtLuca Bruno2016-08-30
|\ \ | | | | | | wavrsocvt: init at 1.0.2.0
| * | wavrsocvt: init at 1.0.2.0Michiel Leenaars2016-08-29
| | |
* | | Merge pull request #18095 from Mic92/valauncherLuca Bruno2016-08-30
|\ \ \ | | | | | | | | valauncher: init at 1.2
| * | | valauncher: init at 1.2Jörg Thalheim2016-08-30
| | | |
* | | | Updating OCE to 0.17.2Lluís Batlle i Rossell2016-08-30
| | | |
* | | | Merge pull request #18104 from ericsagnes/feat/nixos-manual-gen-cleanupEelco Dolstra2016-08-30
|\ \ \ \ | | | | | | | | | | nixos manual: cleanup generation
| * | | | nixos manual: cleanup generationEric Sagnes2016-08-30
| | | | |
* | | | | linux-testing: Fix arg list too long in modinstaszlig2016-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the default kernel and thus with the build I have tested in 74ec94bfa2e57e2c0beeee0e469de58391d04a7b, we get an error during modules_install: make[2]: execvp: /nix/store/.../bin/bash: Argument list too long I haven't noticed this build until I actually tried booting using this kernel because make didn't fail here. The reason this happens within Nix and probably didn't yet surface in other distros is that programs only have a limited amount of memory available for storing the environment and the arguments. Environment variables however are quite common on Nix and thus we stumble on problems like this way earlier - in this case Linux 4.8 - but I have noticed this in 4.7-next as well already. The fix is far from perfect and suffers performance overhead because we now run grep for every *.mod file instead of passing all *.mod files into one single invocation of grep. But comparing the performance overhead (around 1s on my machine) with the overall build time of the kernel I think the overhead really is neglicible. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | Merge commit '6389f9b' (was in staging)obadz2016-08-30
|\ \ \ \ \
| * | | | | Revert "make-bootstrap-tools.darwin: upgrade to llvm 3.8"obadz2016-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit bddf4e21801d0629b608a8a0a46830c795e35ba4. Trying to fix stdenvBootstrapTools.x86_64-darwin.stdenv cc @copumpkin @domenkozar
* | | | | | opensmtpd nixos module: chmod & chown until the daemon's heart's contentobadz2016-08-30
| |/ / / / |/| | | |
* | | | | nixos manual: move chapter on grsecurity to auto-generated module docsJoachim Fasting2016-08-29
| | | | |
* | | | | dnscrypt-proxy module: move detailed info to module documentationJoachim Fasting2016-08-29
| | | | |
* | | | | dnscrypt-proxy module: serviceConfig.Group is redundantJoachim Fasting2016-08-29
| | | | | | | | | | | | | | | | | | | | Same as user's primary group if left unspecified
* | | | | dnscrypt-proxy module: formattingJoachim Fasting2016-08-29
| | | | |
* | | | | build-rebar3: Append postPatch to original hookaszlig2016-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The postPatch attribute is already in the function argument but is unused elsewhere in the code, so setting postPatch with buildRebar3 is going to end up in a no-op. This now allows to use postPatch within buildRebar3 by simply appending to the existing postPatch hook that removes the rebar and rebar3 escripts. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @ericbmerritt
* | | | | nix: maintenance 1.11.2 -> 1.11.3Vladimír Čunát2016-08-29
| | | | | | | | | | | | | | | | | | | | Fixes #17804.
* | | | | Merge pull request #18080 from vbgl/qarte-3Frederik Rietdijk2016-08-29
|\ \ \ \ \ | | | | | | | | | | | | qarte: 2.4.0 -> 3.2.0
| * | | | | qarte: create python envFrederik Rietdijk2016-08-29
| | | | | |
| * | | | | qarte: 2.4.0 -> 3.2.0Vincent Laporte2016-08-29
| | |/ / / | |/| | |
* | | | | linux/kernel/testing: 4.8-rc3 -> 4.8-rc4aszlig2016-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested by only building the linux_testing attribute, but haven't yet tested it in production. I've also fixed the extraMeta.branch attribute. Verified-with-PGP: ABAF 11C6 5A29 70B1 30AB E3C4 79BE 3E43 0041 1886 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | linux/kernel: Remove MLX4_EN_VXLAN for 4.8aszlig2016-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option is no longer needed and has been removed in upstream commit torvalds/linux@a831274a1346913c145797ddee6f39e30e061318. Signed-off-by: aszlig <aszlig@redmoonstudios.org>