149819 Commits

Author SHA1 Message Date
Pascal Wittmann
94d090ba8c
refind: add license
see issue #43716
2018-08-06 12:21:56 +02:00
Pascal Wittmann
21b81f41ae
renameutils: add license
see issue #43716
2018-08-06 12:20:53 +02:00
Pascal Wittmann
fec4795f00
rambox: inherit meta from bare derivation
see issue #43716
2018-08-06 12:19:13 +02:00
Pascal Wittmann
f6b1f03f34
psmisc: add license
see issue #43716
2018-08-06 12:15:43 +02:00
Pascal Wittmann
123e622466
phabricator: add license
see issue #43716
2018-08-06 12:14:05 +02:00
Pascal Wittmann
2a7f6d6960
pdfshuffler: add license
see issue #43716
2018-08-06 12:09:23 +02:00
Vladimír Čunát
f504af072b
Merge branch 'master' into staging-next
There's been some large rebuild on master.
I don't really have time ATM to find what it was.
2018-08-06 12:07:37 +02:00
Pascal Wittmann
9b16e0e594
pdfmod: add license
see issue #43716
2018-08-06 12:07:14 +02:00
Pascal Wittmann
f7be21f4c9
Merge branch 'master' into add-missing-licenses
Conflicts:
	pkgs/development/libraries/exiv2/default.nix
        Set license to gpl2Plus
2018-08-06 12:04:52 +02:00
Peter Hoeg
9823e4caa7 emacs-magit-annex: git was missing 2018-08-06 17:09:26 +08:00
Jörg Thalheim
05daf390b3 systemd: 238 -> 239 2018-08-06 11:03:09 +02:00
Uli Baum
6820e2f0dd mpd: don't use smbclient alias
didn't eval on Hydra as release.nix doesn't allow aliases, see #44299
Use samba instead.
2018-08-06 10:07:20 +02:00
Robert Schütz
c3b1a8178b duply: explicitly use python2 2018-08-06 09:36:55 +02:00
Robert Schütz
3b490c653c ddar: explicitly use python2 2018-08-06 09:28:20 +02:00
taku0
9f415e386b thunderbird-bin: 52.9.1 -> 60.0 2018-08-06 16:03:52 +09:00
Sarah Brofeldt
c6a4f9af60
Merge pull request #44528 from samueldr/fix/mention-bot
doc: Fixes mentions of mention-bot.
2018-08-06 08:59:10 +02:00
Izorkin
5fce5fadf5 tengine: init init at v2.2.2 2018-08-06 08:11:03 +03:00
Cray Elliott
4c45016c29 Revert "mariadb: 10.2.16 -> 10.3.8"
This reverts commit 00ab5c5b6af27850268e2cb29479fd54d67b5e02.

The commit listed broke darwin and held up Hydra. sorry about that!
2018-08-05 20:12:18 -07:00
Silvan Mosberger
66793d9284
Merge pull request #44058 from borisbabic/feature/choose-trackpoint-device
trackpoint: Make the device name configurable
2018-08-06 03:14:16 +02:00
Boris Babic
0ef3119c69 trackpoint: Make the device name configurable 2018-08-06 02:56:32 +02:00
Samuel Dionne-Riel
e97112bdc3 doc: Fixes mentions of mention-bot.
Its last mention was on 2017-09-25. Close to a year.

The CODEOWNERS feature of github, though, fills in the gap in a more
appropriate manner (IMHO).
2018-08-05 20:22:32 -04:00
Sander van der Burg
9748d7c60b nixos/disnix: undo dysnomia rename to fix disnix and retain compatibility with previous release 2018-08-06 01:25:38 +02:00
John Ericson
86865392e0
Merge pull request #44516 from oxij/pkg/fix-cc-wrapper-doc
cc-wrapper: propagate man and info to propagated-build-inputs
2018-08-05 18:32:37 -04:00
Tim Steinbach
99fb65fb11
libxml2: Fix CVE-2018-9251 2018-08-05 18:20:33 -04:00
Tim Steinbach
e4138804da
openldap: 2.4.45 -> 2.4.46
LibreSSL patch no longer needed
2018-08-05 18:04:38 -04:00
Silvan Mosberger
56ac23a19c
Merge pull request #44398 from dotlambda/blueman-python3
bluez: use python3
2018-08-05 23:50:39 +02:00
Silvan Mosberger
373d727793
Merge pull request #44412 from dotlambda/ams-lv2-python3
ams-lv2: use python3
2018-08-05 23:46:44 +02:00
rnhmjoj
413d7f4425 bluez: use python3 2018-08-05 23:46:42 +02:00
Silvan Mosberger
e10db2f676
Merge pull request #44435 from aanderse/pecl-oci8
php*Packages.oci8: init at 2.1.8
2018-08-05 23:29:19 +02:00
Vincent Bernat
48f7778d99 dhcpcd service: order before network target
This reverts a change applied in PR #18491. When interfaces are
configured by DHCP (typical in a cloud environment), ordering after
network.target cause trouble to applications expecting some network to
be present on boot (for example, cloud-init is quite brittle when
network hasn't been configured for `cloud-init.service`) and on
shutdown (for example, collectd needs to flush metrics on shutdown).

When ordering after network.target, we ensure applications relying on
network.target won't have any network reachability on boot and
potentially on shutdown.

Therefore, I think ordering before network.target is better.
2018-08-05 23:07:54 +02:00
xeji
b49b03a8c6
Merge pull request #44483 from imuli/idris-quantities
idrisPackages: add quantities library
2018-08-05 23:03:59 +02:00
Maximilian Bosch
39b85451de
nixos/oh-my-zsh: add customPkgs option to allow multiple derivations for ZSH_CUSTOM
If multiple third-party modules shall be used for `oh-my-zsh` it has to
be possible to create another env which composes all the packages.

Now it can be done like this:

```
{ pkgs, ... }:
{
  programs.zsh.enable = true;
  programs.zsh.ohMyZsh = {
    enable = true;
    customPkgs = with pkgs; [
      lambda-mod-zsh-theme
      nix-zsh-completions
    ];
    theme = "lambda-mod";
    plugins = [ "nix" ];
  };
}
```

Please keep in mind that this is not compatible with
`programs.zsh.ohMyZsh.custom`, only one of these options can be used
ATM.

Each package should store its outputs into
`$out/share/zsh/<output-name>`. Completions (and ZSH-only) extensions
should live in the `fpath` (`$out/share/zsh/site-functions`), plugins in
`.../plugins` and themes in `.../themes` (please refer to
fdb6bf6ed68c2f089ae6c729dfeaa3eddea2ce6a and 406d64aad162b3a4881747be4e24705fb5182573).

All scripts in `customPkgs` will be linked together using `linkFarm` to
provide a single directory for all scripts from all derivations in
`customPkgs` as suggested in https://github.com/NixOS/nixpkgs/pull/43282#issuecomment-410396365.
2018-08-05 23:01:18 +02:00
Maximilian Bosch
efc9511c16
lambda-mod-zsh-theme: add hooks and patch shebangs
This ensures that no impurity exists due to implicitly depending
on`/usr/bin/env`.

It stores the theme into `$out/share/zsh/themes` to make it possible to
find theme using `buildEnv` and remain consistent with other ZSH
extensions.
2018-08-05 23:01:18 +02:00
Maximilian Bosch
1922b43b7e
nix-zsh-completions: install nix.plugin.zsh and init.zsh as well
These files feature simple aliases and a nix-shell detector when using
`nix-shell --run zsh`. The package itself contains the completion scripts in
`$out/share/zsh/site-functions` (to keep it compatible with ZSH-only
setups) and the plugins in `$out/share/zsh/plugins` for oh-my-zsh.
2018-08-05 23:01:18 +02:00
Silvan Mosberger
47b3cdf9be
Merge pull request #44108 from bennofs/gen-config-extlinux
nixos-generate-config: detect extlinux bootloader
2018-08-05 22:59:46 +02:00
Thomas Tuegel
4460f727b9
Merge pull request #44513 from ttuegel/bugfix/tex-gyre/displayName
tex-gyre: remove unused displayName argument
2018-08-05 15:56:39 -05:00
Daiderd Jordan
22adc5e294
elixir: 1.7.0 -> 1.7.2 2018-08-05 22:35:03 +02:00
Francesco Gazzetta
26e939e22c pybitmessage: use pname instead of name 2018-08-05 22:32:32 +02:00
Francesco Gazzetta
3bddc85171 pybitmessage: specify python version 2
pybitmessage does not support python3 yet
2018-08-05 22:29:57 +02:00
Francesco Gazzetta
28fe9047ef pybitmessage: 0.6.2 -> 0.6.3.2 2018-08-05 22:26:47 +02:00
Silvan Mosberger
08c82ad24c
Merge pull request #44519 from oxij/pkg/biber-cleanup
biber: cleanup
2018-08-05 22:21:29 +02:00
xeji
176891c0ad
Merge pull request #44467 from Izorkin/nginx-modules
Nginx modules
2018-08-05 22:20:05 +02:00
Richard Marko
97ca78687a logrotate: make mailutils overridable (#44504) 2018-08-05 22:19:35 +02:00
Robert Schütz
8dc20dce0a
home-assistant: 0.74.2 -> 0.75.1 (#44500) 2018-08-05 22:13:16 +02:00
Tim Steinbach
f0814ec049
patch: Fix CVE-2018-1000156 2018-08-05 16:02:57 -04:00
Jan Malakhovski
1e3c993286 appimagekit: init at 20180727 2018-08-05 19:49:52 +00:00
Jan Malakhovski
66742ff495 biber: cleanup 2018-08-05 19:45:51 +00:00
xeji
b909d807b1
Merge pull request #44466 from vcunat/p/exiv2-cve
exiv2: bugfix updates
2018-08-05 21:32:33 +02:00
Janne Heß
2da02088f7 prototypejs: Init at 1.7.3.0 (#44428) 2018-08-05 21:24:56 +02:00
Jan Malakhovski
eb5b313b16 stdenv: shadow outputs 2018-08-05 19:24:46 +00:00