3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

227174 commits

Author SHA1 Message Date
R. RyanTM 27fbd43843 gexiv2: 0.12.0 -> 0.12.1 2020-05-25 17:03:39 +00:00
Lassulus ab3f7b62ad
Merge pull request #85898 from NickHu/rmapi
rmapi: init at 0.0.11
2020-05-25 19:00:20 +02:00
Markus Schmidl 7915115ae8
pythonPackages.lazy_import: init at 0.2.2 (#70921) 2020-05-25 17:37:52 +01:00
Michael Weiss 993baa587c
nixos: Require networking.hostName to be a valid DNS label
This also means that the hostname must not contain the domain name part
anymore (i.e. must not be a FQDN).
See RFC 1035 [0], "man 5 hostname", or the kernel documentation [1].
Note: For legacy reasons we also allow underscores inside of the label
but this is not recommended and intentionally left undocumented.

[0]: https://tools.ietf.org/html/rfc1035
[1]: https://www.kernel.org/doc/html/latest/admin-guide/sysctl/kernel.html#domainname-hostname

Co-authored-by: zimbatm <zimbatm@zimbatm.com>
2020-05-25 18:13:39 +02:00
Julian Stecklina 837ec31493
nixos/tests/hostname: init (check system's host name)
NixOS currently has issues with setting the FQDN of a system in a way
where standard tools work. In order to help with experimentation and
avoid regressions, add a test that checks that the hostname is
reported as the user wanted it to be.

Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
2020-05-25 18:13:14 +02:00
R. RyanTM 3e7543a74e flexget: 3.1.30 -> 3.1.56 2020-05-25 15:42:51 +00:00
Michael Weiss 6d923b36cd
tdesktop: 2.1.6 -> 2.1.7 2020-05-25 17:28:59 +02:00
oxalica fe3e52c291
earlyoom: patch absolute dbus path and make nixos module up to date (#88443)
* earlyoom: patch absolute path of dbus-send

* nixos/earlyoom: replace `notificationsCommand` with `enableNotification`

* nixos/earlyoom: setup `systembus-notify` when `enableNotification`
2020-05-25 10:13:55 -05:00
Ryan Mulligan f1d9510c99
Merge pull request #88761 from r-ryantm/auto-update/rakudo
rakudo: 2020.05 -> 2020.05.1
2020-05-25 07:50:52 -07:00
Timo Kaufmann 9da092d147
Merge pull request #80610 from xavierzwirtz/azuredatastudio
azuredatastudio: init at 1.17.1
2020-05-25 14:15:31 +00:00
Jan Tojnar 46a135217e
gmic: 2.7.5 -> 2.9.0
* https://discuss.pixls.us/t/release-of-gmic-2-8/14644
* https://discuss.pixls.us/t/release-of-gmic-2-9/16755
2020-05-25 16:11:30 +02:00
Anderson Torres c51d8d6134
Merge pull request #88620 from doronbehar/wrapMpv
mpv: Move all wrapping logic to a single wrapper function
2020-05-25 10:56:04 -03:00
Corban Raun c640f7efd1
_1password: do not strip binary on darwin(OSX) (#88091)
Stripping the binary on OSX causes op(1password) to fail immediately.
Setting dontStrip = true; fixes the issue.
Additionally, adding a very simple installCheck section for testing
purposes.

Co-authored-by: Corban Raun <craun@instructure.com>
2020-05-25 08:46:14 -05:00
Mario Rodas 28667152aa
Merge pull request #88869 from marsam/update-git-absorb
gitAndTools.git-absorb: 0.6.0 -> 0.6.2
2020-05-25 08:45:10 -05:00
Ryan Mulligan 1af2ab78b7
Merge pull request #88849 from r-ryantm/auto-update/signal-cli
signal-cli: 0.6.7 -> 0.6.8
2020-05-25 06:24:08 -07:00
Jan Tojnar f8ac6112b5
Merge pull request #84994 from r-ryantm/auto-update/spidermonkey 2020-05-25 15:22:42 +02:00
Ryan Mulligan 630b4de319
Merge pull request #88857 from r-ryantm/auto-update/uhubctl
uhubctl: 2.1.0 -> 2.2.0
2020-05-25 06:18:35 -07:00
Ryan Mulligan ff19714674
Merge pull request #88774 from r-ryantm/auto-update/supertux
superTux: 0.6.1.1 -> 0.6.2
2020-05-25 06:18:04 -07:00
Ryan Mulligan 85898181b0
Merge pull request #88844 from r-ryantm/auto-update/picard-tools
picard-tools: 2.22.7 -> 2.22.8
2020-05-25 06:09:11 -07:00
Nick Hu d5c52dbcce
rmapi: init at 0.0.11 2020-05-25 13:53:35 +01:00
Jan Tojnar 8208f85cb4
Merge pull request #88862 from r-ryantm/auto-update/calls 2020-05-25 14:33:00 +02:00
Michael Weiss 234d95a6fc
nixos/networking: Add the FQDN and hostname to /etc/hosts
This fixes the output of "hostname --fqdn" (previously the domain name
was not appended). Additionally it's now possible to use the FQDN.

This works by unconditionally adding two entries to /etc/hosts:
127.0.0.1 localhost
::1 localhost

These are the first two entries and therefore gethostbyaddr() will
always resolve "127.0.0.1" and "::1" back to "localhost" [0].
This works because nscd (or rather the nss-files module) returns the
first matching row from /etc/hosts (and ignores the rest).

The FQDN and hostname entries are appended later to /etc/hosts, e.g.:
127.0.0.2 nixos-unstable.test.tld nixos-unstable
::1 nixos-unstable.test.tld nixos-unstable
Note: We use 127.0.0.2 here to follow nss-myhostname (systemd) as close
as possible. This has the advantage that 127.0.0.2 can be resolved back
to the FQDN but also the drawback that applications that only listen to
127.0.0.1 (and not additionally ::1) cannot be reached via the FQDN.
If you would like this to work you can use the following configuration:
```nix
networking.hosts."127.0.0.1" = [
  "${config.networking.hostName}.${config.networking.domain}"
  config.networking.hostName
];
```

Therefore gethostbyname() resolves "nixos-unstable" to the FQDN
(canonical name): "nixos-unstable.test.tld".

Advantages over the previous behaviour:
- The FQDN will now also be resolved correctly (the entry was missing).
- E.g. the command "hostname --fqdn" will now work as expected.
Drawbacks:
- Overrides entries form the DNS (an issue if e.g. $FQDN should resolve
  to the public IP address instead of 127.0.0.1)
  - Note: This was already partly an issue as there's an entry for
    $HOSTNAME (without the domain part) that resolves to
    127.0.1.1 (!= 127.0.0.1).
- Unknown (could potentially cause other unexpected issues, but special
  care was taken).

[0]: Some applications do apparently depend on this behaviour (see
c578924) and this is typically the expected behaviour.

Co-authored-by: Florian Klink <flokli@flokli.de>
2020-05-25 14:06:25 +02:00
Mario Rodas bfdb43f1c3
Merge pull request #88832 from r-ryantm/auto-update/lyra
lyra: 1.3 -> 1.4
2020-05-25 07:01:06 -05:00
Mario Rodas e61b2b165c
Merge pull request #88860 from r-ryantm/auto-update/biblesync
biblesync: 2.0.1 -> 2.1.0
2020-05-25 07:00:13 -05:00
Mario Rodas 1a4e8a10a7
Merge pull request #88865 from r-ryantm/auto-update/bup
bup: 0.30 -> 0.30.1
2020-05-25 06:43:48 -05:00
Jan Tojnar 27e0dff5ac
Merge pull request #87531 from r-ryantm/auto-update/uchardet 2020-05-25 13:35:00 +02:00
Mario Rodas 66daaaf7e8
Merge pull request #88818 from r-ryantm/auto-update/imgurbash2
imgurbash2: 3.1 -> 3.2
2020-05-25 06:28:08 -05:00
Jan Tojnar 7318f93c84
Merge pull request #86926 from r-ryantm/auto-update/gnome-latex 2020-05-25 13:27:14 +02:00
Mario Rodas e9ea9b2aee
Merge pull request #88868 from davidtwco/grafana-loki-1.5.0
grafana-loki: 1.4.0 -> 1.5.0
2020-05-25 06:25:35 -05:00
Mario Rodas 3daaf6636d
Merge pull request #88850 from r-ryantm/auto-update/sngrep
sngrep: 1.4.6 -> 1.4.7
2020-05-25 06:24:19 -05:00
Mario Rodas be1b02cbd1
Merge pull request #88830 from r-ryantm/auto-update/libxsmm
libxsmm: 1.13 -> 1.15
2020-05-25 06:21:53 -05:00
leo60228 c49c8a7d6b
vimPlugins.vim-graphql: init at 2020-03-30 (#88840) 2020-05-25 13:18:44 +02:00
Jörg Thalheim fbc9515e66
Merge pull request #88855 from r-ryantm/auto-update/telegraf 2020-05-25 12:15:11 +01:00
Mario Rodas 246b93a81b
Merge pull request #88838 from r-ryantm/auto-update/monolith
monolith: 2.2.5 -> 2.2.6
2020-05-25 06:07:11 -05:00
Jan Tojnar 9005d43d3e
Merge pull request #88236 from r-ryantm/auto-update/tpm2-tools 2020-05-25 12:53:16 +02:00
Jan Tojnar ab0ad802e2
Merge pull request #88535 from r-ryantm/auto-update/gnumeric 2020-05-25 12:52:27 +02:00
Jan Tojnar 09410b58d4
Merge pull request #88215 from r-ryantm/auto-update/qgnomeplatform 2020-05-25 12:47:08 +02:00
Jan Tojnar 4d9de2d85d
Merge pull request #83534 from mmilata/libosinfo-bump
osinfo-db-tools: 1.6.0 -> 1.7.0, osinfo-db: 20200214 -> 20200515, libosinfo: fix test
2020-05-25 12:38:04 +02:00
David Wood 2f0955e722
grafana-loki: 1.4.0 -> 1.5.0 2020-05-25 11:35:16 +01:00
zowoq 37a87c343c podman: update comments in wrapper 2020-05-25 12:27:49 +02:00
zowoq dd67a7eacb buildah: add wrapper 2020-05-25 12:27:49 +02:00
zowoq 2689dfaa08 nixos/cri-o: default to upstream pause 2020-05-25 12:27:49 +02:00
zowoq eeff166faa nixos/cri-o: add runtime option 2020-05-25 12:27:49 +02:00
zowoq 9e7fbc6f2c nixos/cri-o, cri-o: add wrapper 2020-05-25 12:27:49 +02:00
José Romildo Malaquias 4b0d5ecee8
Merge pull request #88678 from maxeaubrey/yaru_20.04.7
yaru-theme: 20.04.6 -> 20.04.7
2020-05-25 07:24:10 -03:00
Jan Tojnar 0af23b05ab
Merge pull request #75435 from Elyhaka/fprintd 2020-05-25 12:22:48 +02:00
R. RyanTM 33b881f334 bup: 0.30 -> 0.30.1 2020-05-25 09:59:49 +00:00
Mario Rodas 3b9ebb8b8c
gitAndTools.git-absorb: 0.6.0 -> 0.6.2 2020-05-25 04:20:00 -05:00
Mario Rodas 074ab51316
biblesync: update homepage 2020-05-25 04:20:00 -05:00
R. RyanTM a7232067e7 btfs: 2.20 -> 2.21 2020-05-25 09:13:22 +00:00