about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Merge pull request #46335 from bkchr/plasma_5_13_5Thomas Tuegel2018-09-08
|\ | | | | plasma5: 5.13.4 -> 5.13.5
| * plasma5: 5.13.4 -> 5.13.5Bastian Köcher2018-09-07
| |
* | Merge pull request #46366 from markuskowa/license-14Timo Kaufmann2018-09-08
|\ \ | | | | | | Add licenses
| * | fbpanel: add licenseMarkus Kowalewski2018-09-08
| | |
| * | xine-ui: add licenseMarkus Kowalewski2018-09-08
| | |
| * | tivodecode: add licenseMarkus Kowalewski2018-09-08
| | |
| * | vcprompt: add licenseMarkus Kowalewski2018-09-08
| | |
| * | monotone: add licenseMarkus Kowalewski2018-09-08
| | |
| * | guitone: add licenseMarkus Kowalewski2018-09-08
| | |
| * | cvs2svn: add licenseMarkus Kowalewski2018-09-08
| | |
| * | bzr-tools: add licenseMarkus Kowalewski2018-09-08
| | |
| * | bazaar: add licenseMarkus Kowalewski2018-09-08
| | |
| * | root: add licenseMarkus Kowalewski2018-09-08
| | |
| * | pynac: add licenseMarkus Kowalewski2018-09-08
| | |
| * | prooftree: add licenseMarkus Kowalewski2018-09-08
| | |
| * | drgeo: add license + homepageMarkus Kowalewski2018-09-08
| | |
* | | Merge pull request #46348 from YorikSar/update-chromiumMichael Raskin2018-09-08
|\ \ \ | | | | | | | | chromium: 68.0.3440.106 -> 69.0.3497.81
| * | | chromium: 68.0.3440.106 -> 69.0.3497.81Yuriy Taraday2018-09-07
| | | | | | | | | | | | | | | | Also update to build with external gn.
* | | | jbake: fix sandbox build (#46363)Maximilian Bosch2018-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://hydra.nixos.org/build/80999410 Without a sandbox the `checkPhase` breaks with the following error: ``` /nix/store/i6vl5lwlz5jbkg4r6p340dwmj6fha3xq-stdenv-linux/setup: bin/jbake: /usr/bin/env: bad interpreter: No such file or directory jbake did not return correct version ``` Running `patchShebangs` before fixes the issue. Addresses #45960
* | | | Merge pull request #46341 from obsidiansystems/fix-46320Graham Christensen2018-09-08
|\ \ \ \ | | | | | | | | | | nixpkgs module: Fix defaulting of `localSystem` and `system`
| * | | | nixpkgs module: Fix defaulting of `localSystem` and `system`John Ericson2018-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Take two of #40708 (4fe289860888668956b7e79e24efeb101c2f51d1). That PR attempted to bidirectionally default `config.nixpkgs.system` and `config.nixpkgs.localSystem.system` to each be updated by the other. But this is not possible with the way the module system works. Divergence in certain cases in inevitable. This PR is more conservative and just has `system` default `localSystem` and `localSystem` make the final call as-is. This solves a number of issues. - `localSystem` completely overrides `system`, just like with nixpkgs proper. There is no need to specify `localSystem.system` to clobber the old system. - `config.nixpkgs.localSystem` is exactly what is passed to nixpkgs. No spooky steps. - `config.nixpkgs.localSystem` is elaborated just as nixpkgs would so that all attributes are available, not just the ones the user specified. The remaining issue is just that `config.nixpkgs.system` doesn't update based on `config.nixpkgs.localSystem.system`. It should never be referred to lest it is a bogus stale value because `config.nixpkgs.localSystem` overwrites it. Fixes #46320
* | | | | perl-packages: remove rycee from maintainersRobert Helgesson2018-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | I no longer use or develop Perl regularly so cannot vouch for these packages anymore.
* | | | | ripgrep: 0.9.0 -> 0.10.0 (#46331)Vladyslav M2018-09-08
| | | | |
* | | | | chessx: fix build (#46359)Maximilian Bosch2018-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://hydra.nixos.org/build/80998335. Upstream doesn't support QT 5.11 ATM which broke compilation: ``` src/dialogs/savedialog.cpp: In constructor ‘SaveDialog::SaveDialog(QWidget*, Qt::WindowFlags)’: src/dialogs/savedialog.cpp:37:34: error: invalid use of incomplete type ‘class QButtonGroup’ group = new QButtonGroup(this); ``` The Arch community recommends to use an older QT version to fix this (https://aur.archlinux.org/packages/chessx/). Furthermore the `QT_PLUGIN_PATH` wasn't set properly which broke the runtime since QT coudln't find the `xcb` plugin: ``` qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. ``` Finally, some minor style fixes were made for consistent indentation. Addresses #45960
* | | | | Merge pull request #46361 from primeos/nixos-sksMichael Weiss2018-09-08
|\ \ \ \ \ | | | | | | | | | | | | nixos/sks: Minor improvements
| * | | | | nixos/sks: Update the descriptions and add meta.maintainersMichael Weiss2018-09-08
| | | | | | | | | | | | | | | | | | | | | | | | TODO: Merge this module with https://github.com/NixOS/nixpkgs/pull/24516
| * | | | | nixos/sks: Add a dataDir optionMichael Weiss2018-09-08
| | | | | |
* | | | | | nixos/networkmanager: fix VPN plugin service definition targets (#46201)Tad Fisher2018-09-08
| | | | | |
* | | | | | yabause: 0.9.14 -> 0.9.15 (#46353)Samuel Dionne-Riel2018-09-08
| | | | | | | | | | | | | | | | | | + fixes for Qt 5.11 build.
* | | | | | josm: 14066 -> 14178R. RyanTM2018-09-08
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from josm
* | | | | pythonPackages.pycaption: fix build (#46356)Maximilian Bosch2018-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `beaitufulsoup4` package distributed by `nixpkgs` is now at `4.6.3`. Additionally it fixes `gnomecaption` which depends on the broken `pycaption` package. See https://hydra.nixos.org/build/81000247 See https://hydra.nixos.org/build/80723223 Addresses #45960
* | | | | vim-plugins: remove .git extension from specJörg Thalheim2018-09-08
| |_|/ / |/| | |
* | | | mono-addins: fix build (#46354)worldofpeace2018-09-08
| | | |
* | | | swift-corelibs.corefoundation: update and modernizeDan Peebles2018-09-08
| | | | | | | | | | | | | | | | This actually makes it useful to the Darwin stdenv, which I'll soon be adjusting to use this library
* | | | Merge pull request #45045 from jtojnar/rygelJan Tojnar2018-09-08
|\ \ \ \ | | | | | | | | | | Rygel
| * | | | nixos/rygel: initJan Tojnar2018-09-08
| | | | |
| * | | | gnome3.rygel: init at 0.36.2Jan Tojnar2018-09-08
| | | | |
| * | | | gupnp-igd: 0.2.4 → 0.2.5Jan Tojnar2018-09-08
| | | | |
| * | | | gupnp-av: enable docs, gir, tests and split outputsJan Tojnar2018-09-08
| | | | |
| * | | | gupnp: 1.0.2 → 1.0.3Jan Tojnar2018-09-08
| | | | |
| * | | | gupnp-dlna: enable docs, tests and split outputsJan Tojnar2018-09-08
| | | | |
| * | | | gupnp: enable docs, gir and split outputsJan Tojnar2018-09-08
| | | | |
| * | | | gssdp: enable docs, tests, gir and split outputsJan Tojnar2018-09-08
| | | | |
* | | | | nanorc: Init at 2018-09-05Tim Steinbach2018-09-07
| | | | |
* | | | | Merge pull request #45757 from bkchr/androidndk_standalone_toolchainMatthew Bauer2018-09-07
|\ \ \ \ \ | | | | | | | | | | | | Androidndk standalone toolchain support
| * | | | | androidndk: Add `makeStandaloneToolchain` supportBastian Köcher2018-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: ``` let toolchain = (androidenv.androidndk.makeStandaloneToolchain 24 "arm64"); in ... ```
| * | | | | androidndk: Fix `make_standalone_toolchain.py`Bastian Köcher2018-09-07
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | Python path needs to be absolute and the generated scripts will use also an absolute path to `bash`.
* | | | | Merge pull request #46264 from r-ryantm/auto-update/kipi-pluginsThomas Tuegel2018-09-07
|\ \ \ \ \ | | | | | | | | | | | | kipi-plugins: 5.2.0 -> 5.9.0
| * | | | | kipi-plugins: 5.2.0 -> 5.9.0R. RyanTM2018-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from kipi-plugins
* | | | | | kdecoration-viewer: Fixes build (#46339)Bastian Köcher2018-09-08
| | | | | |