Commit graph

137071 commits

Author SHA1 Message Date
Jörg Thalheim
28cf1a7a65
Merge pull request #38572 from tadfisher/enyo-doom
enyo-doom: init at 1.05
2018-04-08 12:49:25 +01:00
Jörg Thalheim
820594175e
Merge pull request #38575 from joncfoo/update-psc-package
psc-package v0.3.2-pre -> v0.3.2
2018-04-08 12:44:16 +01:00
Jörg Thalheim
610e3853fe
Merge pull request #38229 from matklad/update-jetbrains
Major update of various JetBrains IDEs
2018-04-08 12:32:51 +01:00
Daiderd Jordan
6b0ff4e95e
Merge pull request #38511 from bkchr/rust_1_25
rustc: 1.24.0 -> 1.25.0
2018-04-08 13:32:20 +02:00
Jörg Thalheim
9ac7fa77df
Merge pull request #38555 from r-ryantm/auto-update/harfbuzz
harfbuzz: 1.7.5 -> 1.7.6
2018-04-08 12:23:53 +01:00
Jörg Thalheim
63378bd603
Merge pull request #38558 from concatime/patch-2
zulu8: 8.21.0.1 -> 8.28.0.1 & openjdk: 8.0.131 -> 8.0.163
2018-04-08 12:21:30 +01:00
Jörg Thalheim
251ad7ff01
Merge pull request #38556 from r-ryantm/auto-update/iproute2
iproute: 4.15.0 -> 4.16.0
2018-04-08 12:20:32 +01:00
Jörg Thalheim
8d05ae484d
Merge pull request #38563 from r-ryantm/auto-update/gdbm
gdbm: 1.14 -> 1.14.1
2018-04-08 12:15:32 +01:00
Aleksey Kladov
1a870dfe99 jetbrains.webstorm: 2017.3.5 -> 2018.1 2018-04-08 14:14:35 +03:00
Aleksey Kladov
89a16a152c jetbrains.pycharm-professional: 2017.3.4 -> 2018.1 2018-04-08 14:14:35 +03:00
Aleksey Kladov
a55f0e65c7 jetbrains.pycharm-community: 2017.3.4 -> 2018.1 2018-04-08 14:14:35 +03:00
Aleksey Kladov
62d0a0685d jetbrains.phpstorm: 2017.3.5 -> 2017.3.6 2018-04-08 14:14:35 +03:00
Aleksey Kladov
672c98ded0 jetbrains.idea-ultimate: 2017.3.5 -> 2018.1 2018-04-08 14:14:35 +03:00
Aleksey Kladov
0215ae062d jetbrains.idea-community: 2017.3.5 -> 2018.1 2018-04-08 14:14:35 +03:00
Aleksey Kladov
2bddfb16d5 jetbrains.goland: 2017.3.3 -> 2018.1 2018-04-08 14:14:34 +03:00
Jörg Thalheim
467886b761
Merge pull request #38594 from endgame/crip
crip: init at 3.9; perlPackages.CDDB_get: init at 2.28
2018-04-08 12:13:12 +01:00
Jörg Thalheim
692e0b5f3a zfsLegacyCrypto: set incompatibleKernelVersion to 4.16 2018-04-08 12:07:23 +01:00
Frederik Rietdijk
6961f7a654
Merge pull request #38483 from NixOS/python-unstable
Python package set: major updates
2018-04-08 13:06:04 +02:00
Jörg Thalheim
e50c5382eb
Merge pull request #38567 from winniequinn/vscode-1.22.1
vscode: 1.21.1 -> 1.22.1
2018-04-08 12:01:57 +01:00
Jörg Thalheim
8f5cd6e6dd
Merge pull request #38585 from r-ryantm/auto-update/cmark
cmark: 0.27.1 -> 0.28.3
2018-04-08 12:01:15 +01:00
Jörg Thalheim
6366951310
Merge pull request #38568 from samueldr/fix/nixpkgs-rebase-callout
doc: Fixes repeated callout in nixpkgs manual 15.1
2018-04-08 11:59:28 +01:00
Jörg Thalheim
56ef92e46d
Merge pull request #38569 from samueldr/fix/callouts
doc: Fixes in-text callouts and screen callouts.
2018-04-08 11:58:09 +01:00
Jörg Thalheim
f7a0e69cb8
Merge pull request #38584 from r-ryantm/auto-update/confclerk
confclerk: 0.6.1 -> 0.6.4
2018-04-08 11:57:37 +01:00
Jörg Thalheim
9165371a8f
Merge pull request #38579 from r-ryantm/auto-update/dcraw
dcraw: 9.26.0 -> 9.27.0
2018-04-08 11:55:34 +01:00
aszlig
99ba1cb424
Increase max group name length to 32 characters
With #36556, a check was introduced to make sure the user and group
names do not exceed their respective maximum length. This is in part
because systemd also enforces that length, but only at runtime.

So in general it's a good idea to catch as much as we can during
evaluation time, however the maximum length of the group name was set to
16 characters according groupadd(8).

The maximum length of the group names however is a compile-time option
and even systemd allows more than 16 characters. In the mentioned pull
request (#36556) there was already a report that this has broken
evaluation for people out there.

I have also checked what other distributions are doing and they set the
length to either 31 characters or 32 characters, the latter being more
common.

Unfortunately there is a difference between the maximum length enforced
by the shadow package and systemd, both for user name lengths and group
name lengths. However, systemd enforces both length to have a maximum of
31 characters and I'm not sure if this is intended or just a off-by-one
error in systemd.

Nevertheless, I choose 32 characters simply to bring it in par with the
maximum user name length.

For the NixOS assertion however, I use a maximum length of 31 to make
sure that nobody accidentally creates services that contain group names
that systemd considers invalid because of a length of 32 characters.

Signed-off-by: aszlig <aszlig@nix.build>
Closes: #38548
Cc: @vcunat, @fpletz, @qknight
2018-04-08 12:51:33 +02:00
Jack Kelly
e1f6778e11 crip: init at 3.9 2018-04-08 20:44:05 +10:00
Jack Kelly
babbf2ac5c perlPackages.CDDB_get: init at 2.28 2018-04-08 20:43:57 +10:00
Jörg Thalheim
811ff3f131
Merge pull request #38576 from ahmedtd/nomacs-3.8.1
nomacs: 3.6.1 -> 3.8.1
2018-04-08 11:36:22 +01:00
Jörg Thalheim
5484a90490
Merge pull request #33688 from concatime/patch-1
jetbrainsjdk: 1036.1 ~> 1136.20 (based on build #181.4203)
2018-04-08 11:33:37 +01:00
Jörg Thalheim
857bf71655
Merge pull request #38581 from r-ryantm/auto-update/dbus
dbus: 1.10.24 -> 1.12.6
2018-04-08 11:31:10 +01:00
Jörg Thalheim
5d332cf758
Merge pull request #38580 from r-ryantm/auto-update/containerd
containerd: 1.0.2 -> 1.0.3
2018-04-08 11:26:48 +01:00
Jörg Thalheim
86e5f2286c
Merge pull request #38582 from r-ryantm/auto-update/dbus-glib
dbus-glib: 0.108 -> 0.110
2018-04-08 11:13:35 +01:00
Jörg Thalheim
217bba3d3c
Merge pull request #38591 from r-ryantm/auto-update/alsa-lib
alsaLib: 1.1.5 -> 1.1.6
2018-04-08 11:00:33 +01:00
Jörg Thalheim
66181e94a2
Merge pull request #38609 from yrashk/sit-0.2.1
sit: 0.1.3 -> 0.2.1
2018-04-08 10:58:37 +01:00
Jörg Thalheim
66ff520362
Merge pull request #38592 from r-ryantm/auto-update/automake
automake: 1.16 -> 1.16.1
2018-04-08 10:54:50 +01:00
Jörg Thalheim
bcd04ee034
Merge pull request #38583 from r-ryantm/auto-update/cppcheck
cppcheck: 1.82 -> 1.83
2018-04-08 10:46:30 +01:00
Jörg Thalheim
0aeabd0fde
Merge pull request #38587 from r-ryantm/auto-update/clipgrab
clipgrab: 3.6.2 -> 3.6.8
2018-04-08 10:45:53 +01:00
Jörg Thalheim
5869f4da13
Merge pull request #38596 from r-ryantm/auto-update/ceres-solver
ceres-solver: 1.12.0 -> 1.14.0
2018-04-08 10:43:06 +01:00
Jörg Thalheim
1e9e19b2aa openmvs-unstable: 2017-05-01 -> 2018-05-26
fix build
2018-04-08 10:36:25 +01:00
Robert Schütz
94f8800b67 python.pkgs.cairosvg: 2.1.2 -> 2.1.3 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
e450ce6b7f python.pkgs.bootstrapped-pip: pip 9.0.1 -> 9.0.3 , setuptools 38.4.1 -> 39.0.1 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
58cdabf9cf python.pkgs.setuptools: 38.4.1 -> 39.0.1 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
1ab32ba441 python: pip: 9.0.1 -> 9.0.3 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
4421dbc217 python.pkgs.pip: move expression 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
d775b0350a python: diceware: 0.9.4 -> 0.9.5 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
a799c45192 python: buildbot-pkg: 1.1.0 -> 1.1.1 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
6ea152f184 python: tqdm: 4.20.0 -> 4.21.0 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
86c805fa2e python: tornado: 5.0.1 -> 5.0.2 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
438355f99e python: robotframework: 3.0.2 -> 3.0.3 2018-04-08 11:36:07 +02:00
Frederik Rietdijk
fae0aa6fbf python: pylint: 1.8.3 -> 1.8.4 2018-04-08 11:36:07 +02:00