about summary refs log tree commit diff
path: root/pkgs/top-level
Commit message (Collapse)AuthorAge
* Merge pull request #84457 from vbgl/ocaml-gettext-0.4.1Timo Kaufmann2020-04-06
|\ | | | | ocamlPackages.ocaml_gettext: 0.3.8 → 0.4.1
| * ocamlPackages.ocaml_gettext: 0.3.8 → 0.4.1Vincent Laporte2020-04-06
| |
* | Merge pull request #83447 from drewrisinger/dr-pr-python-qiskit-aquaTimo Kaufmann2020-04-06
|\ \ | | | | | | python3Packages.qiskit-aqua: init at 0.6.5
| * | python3Packages.qiskit-aqua: init at 0.6.5Drew Risinger2020-04-06
| | | | | | | | | | | | | | | | | | | | | | | | Qiskit Aqua: An extensible library of quantum computing algorithms. This commit follows the new Qiskit scheme of breaking one large package into smaller packages (terra, aer, etc), and then having a single meta-package "qiskit" that comprises them.
* | | bazel-gazelle: init at 0.20.0 (#84222)Wael Nasreddine2020-04-06
| |/ |/|
* | Merge pull request #84218 from equirosa/tutMarek Mahut2020-04-06
|\ \ | | | | | | tut: init at 0.0.2
| * | tut: init at 0.0.2Eduardo Quiros2020-04-04
| |/
* | Merge pull request #84230 from romildo/upd.gnome-icon-themeJosé Romildo Malaquias2020-04-05
|\ \ | | | | | | gnome2.gnome_icon_theme: 2.91.93 -> 3.12.0
| * | gnome2.gnome-icon-theme: move to pkgs/data/iconsJosé Romildo Malaquias2020-04-05
| | |
* | | Merge pull request #83896 from etu/slim-down-default-php-v3Elis Hirwing2020-04-05
|\ \ \ | | | | | | | | PHP: Make the default package more sane [v3]
| * | | php.extensions.pthreads: Reintroduce pthreads for php72 and php73Elis Hirwing2020-04-05
| | | |
| * | | php.extensions.pinba: Reintroduce pinba for php72, php73 and php74Elis Hirwing2020-04-05
| | | |
| * | | php: Document withExtensions + general improvementstalyz2020-04-05
| | | |
| * | | php: split php.packages to php.packages and php.extensionsElis Hirwing2020-04-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So now we have only packages for human interaction in php.packages and only extensions in php.extensions. With this php.packages.exts have been merged into the same attribute set as all the other extensions to make it flat and nice. The nextcloud module have been updated to reflect this change as well as the documentation.
| * | | php.packages: Fix and clean up external extensionstalyz2020-04-05
| | | | | | | | | | | | | | | | | | | | | | | | Fix extensions that were broken by the extension refactoring and remove pthreads and pinba, which had asserts which broke evaluation, were in need of refactoring and of dubious value.
| * | | php.packages: Use derivations for internalDeps in mkExtensiontalyz2020-04-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make mkExtension put headers in the dev output and use them, instead of a different part of the current source tree, when referring to another extension by using internalDeps. This means external extensions can be built against the internal ones.
| * | | phpPackages: Move phpPackages to php.packagestalyz2020-04-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This means php packages can now refer to other php packages by looking them up in the php.packages attribute and gets rid of the internal recursive set previously defined in php-packages.nix. This also means that in applications where previously both the php package and the corresponding version of the phpPackages package set had to be specified, the php package will now suffice. This also adds the phpWithExtensions parameter to the php-packages.nix, which can be used by extensions that need a fully featured PHP executable.
| * | | php: Make mkExtension pass on additional args to mkDerivationtalyz2020-04-05
| | | |
| * | | php: Make buildEnv recursive + take extension deps into accounttalyz2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A slight rewrite of buildEnv which: 1. Makes buildEnv recursively add itself to its output, so that it can be accessed from any php derivation. 2. Orders the extension text strings according to their internalDeps attribute - dependencies have to be put before dependants in the php.ini or they will fail to load due to missing symbols.
| * | | phpPackages.exts: Run tests by defaulttalyz2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | The tests for many of the extensions run just fine, for some a small portion fail. This runs the tests by default and disables the tests extensions with any failing tests.
| * | | php: Build an even slimmer basetalyz2020-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This moves yet more extensions from the base build to phpPackages.ext. Some of the extensions are a bit quirky and need patching for this to work, most notably mysqlnd and opcache. Two new parameters are introduced for mkExtension - internalDeps and postPhpize. internalDeps is used to specify which other internal extensions the current extension depends on, in order to provide them at build time. postPhpize is for when patches and quirks need to be applied after running phpize. Patch notes: - For opcache, older versions of PHP have a bug where header files are included in the wrong order. - For mysqlnd, the config.h is never included, so we include it in the main header file, mysqlnd.h. Also, the configure script doesn't add the necessary library link flags, so we add them to the variable configure should have added them to.
| * | | phpPackages.exts.gmp: Enable on darwinElis Hirwing2020-04-03
| | | |
| * | | php-unit: Drop the declaration of the php-unit attributes since they aren't usedElis Hirwing2020-04-03
| | | |
| * | | php-embed: Drop the declaration of the php-embed attributesElis Hirwing2020-04-03
| | | |
| * | | php: init phpXYbase packages and make the default php extended by defaultElis Hirwing2020-03-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, add opcache to default extensions since it significantly increases PHP's performance and is by default enabled on Debian based distributions. Not having it enabled by default results in a puzzling performance loss for anyone attempting to migrate from Debian/Ubuntu to NixOS who is unaware of this. Therefore, enable it by default. /talyz
| * | | phpPackages.exts: Drop uneeded extensionsElis Hirwing2020-03-29
| | | |
* | | | Merge pull request #84281 from misuzu/kmon-initBenjamin Hipple2020-04-05
|\ \ \ \ | | | | | | | | | | kmon: init at 1.0.0
| * | | | kmon: init at 1.0.0misuzu2020-04-05
| | | | |
* | | | | k3s: init at 1.17.3+k3s1Euan Kemp2020-04-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This packages k3s as a single self-contained binary (as upstream k3s does), but without having to download any impure already-built binaries. The upstream packaging scripts are used. Due to k3s's rather complicated packaging arrangement, this ends up being a rather long derivation.
* | | | | coq_8_11: 8.11.0 → 8.11.1Vincent Laporte2020-04-05
| | | | |
* | | | | Merge pull request #83618 from NixOS/staging-nextFrederik Rietdijk2020-04-05
|\ \ \ \ \ | | | | | | | | | | | | Staging next
| * \ \ \ \ Merge master into staging-nextFrederik Rietdijk2020-04-05
| |\ \ \ \ \
| * \ \ \ \ \ Merge master into staging-nextFrederik Rietdijk2020-04-03
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| * | | | | | Merge branch 'staging-next' into stagingJan Tojnar2020-03-31
| |\ \ \ \ \ \
| | * \ \ \ \ \ Merge branch 'master' into staging-nextJan Tojnar2020-03-31
| | |\ \ \ \ \ \
| | * \ \ \ \ \ \ Merge branch 'master' into staging-nextJan Tojnar2020-03-29
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix eval of nixos/nginx
| * | \ \ \ \ \ \ \ Merge pull request #83795 from risicle/ris-nghttp2-pythonTimo Kaufmann2020-03-31
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | nghttp2: add python bindings as pythonPackages.nghttp2
| | * | | | | | | | | nghttp2: add python bindings as pythonPackages.nghttp2Robert Scott2020-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it's tricky to enable in nghttp2's default build, however, because it needs to be usable by curl, a very core nix package, and we get cyclical dependencies if we add python to its requirements. having it available as a separate build is better than nothing, though.
| * | | | | | | | | | buildPython*: use pnameFrederik Rietdijk2020-03-30
| |/ / / / / / / / /
| * | | | | | | | | Merge remote-tracking branch 'upstream/master' into HEADJörg Thalheim2020-03-29
| |\ \ \ \ \ \ \ \ \ | | |/ / / / / / / / | |/| | | | | | | |
| * | | | | | | | | Merge staging-next into stagingFrederik Rietdijk2020-03-28
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | weston: use pipewire_0_2Tor Hedin Brønner2020-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still haven't migrated to pipewire-0.3.
| * | | | | | | | | | libcroco: remove as it's no longer usedTor Hedin Brønner2020-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | librsvg and gnome-shell was the only derivations needing libcroco. Both of them have now dropped it as a dependency, so we can stop carrying it.
| * | | | | | | | | | vala_0_48: init at 0.48.1Tor Hedin Brønner2020-03-24
| | | | | | | | | | |
| * | | | | | | | | | pipewire: Add back 0.2.7Tor Hedin Brønner2020-03-24
| | | | | | | | | | |
| * | | | | | | | | | spidermonkey_68: init at 68.4.2Tor Hedin Brønner2020-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mostly copied over - now uses python3 https://mail.gnome.org/archives/distributor-list/2020-February/msg00000.html
| * | | | | | | | | | Merge branch 'staging-next' into stagingJan Tojnar2020-03-24
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into stagingOrivej Desh2020-03-23
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | python: add pythonNamespacesHookJonathan Ringer2020-03-18
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #82511 from alyssais/rustJörg Thalheim2020-03-15
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | rust_1_38, rust_1_42: drop patch version from attr