Commit graph

164210 commits

Author SHA1 Message Date
Milan Svoboda c65e727236 remove icons folder 2018-12-30 15:47:32 +01:00
Milan Svoboda 70a05bcfaa wings3d: 1.5.4 -> 2.2.1 2018-12-30 15:32:40 +01:00
Jörg Thalheim c485a491db
Merge pull request #52642 from freepotion/ivan-054-to-055
ivan: 054 -> 055
2018-12-22 07:04:08 +01:00
Jörg Thalheim 907e88c1d1
Merge pull request #52607 from lopsided98/python-sh-disable-tests
pythonPackages.sh: fix tests on Python 3.7
2018-12-22 06:53:08 +01:00
Franz Pletz 12e57cbb61
gitea: fix version in app 2018-12-22 04:33:16 +01:00
Dmitry Kalinkin 0d7546c0c2
Merge pull request #52623 from erictapen/pdfjs
qutebrowser: fix pdfjs
2018-12-21 22:18:47 -05:00
Franz Pletz b35d93731d
Merge pull request #52646 from etu/update-gitea
gitea: 1.6.0 -> 1.6.2
2018-12-22 02:24:38 +00:00
Herwig Hochleitner 48d08bea5a emacsPackages: update elpa and org generated
cc @ttuegel
2018-12-22 02:46:43 +01:00
Herwig Hochleitner f097a16992 clojure: add $out/bin to wrapper PATH
without this, the `clj` command calls into system path, instead of its
own `clojure` command

cc @the-kenny
2018-12-22 02:41:42 +01:00
Ben Wolsieffer d08254f7ff pythonPackages.sh: disable failing tests on Darwin 2018-12-21 17:58:43 -05:00
Dmitry Kalinkin 62aea9510c
Merge pull request #51796 from bachp/dsview-0.99
dsview: init at 0.99
2018-12-21 17:40:40 -05:00
Tor Hedin Brønner 8ed71e836a
Merge pull request #51712 from dtzWill/fix/mercurial-zsh-completions
mercurial: install zsh completions
2018-12-21 23:23:39 +01:00
Elis Hirwing a87fd222c8
gitea: 1.6.0 -> 1.6.2
Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.6.1
Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.6.2
2018-12-21 23:07:47 +01:00
Will Dietz 3ce8b3cb3b mercurial: fix bash completion, correct comment 2018-12-21 16:04:15 -06:00
Dmitry Kalinkin 284df60986
Merge pull request #51841 from veprbl/pr/pyjet_fix
pythonPackages.pyjet: fix for python37
2018-12-21 16:57:54 -05:00
Jörg Thalheim c0611717dc
Merge pull request #52641 from lopsided98/uritemplate-merge
pythonPackages.uritemplate_py: remove
2018-12-21 21:24:52 +01:00
Free Potion 2b0699b2c4
ivan: 054 -> 055 2018-12-21 23:02:12 +03:00
Ben Wolsieffer 26869e7b31 pythonPackages.uritemplate_py: remove
This package is the same as uritemplate.
2018-12-21 14:41:39 -05:00
Jörg Thalheim 435ba2ba3a
Merge pull request #52631 from jlesquembre/clojure
clojure: 1.9.0.391 -> 1.10.0.403
2018-12-21 20:37:59 +01:00
Ben Wolsieffer 26fb110d81 pythonPackages.sh: fix tests on Python 3.7 2018-12-21 14:00:06 -05:00
Austin Seipp 814319f1ae nixpkgs/firecracker: init at 0.12.0
This currently uses a binary-only package, since building
jailer/firecracker all on their own is somewhat complex from my
attempts.

This will later be changed into a source-only build, ideally.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-21 11:17:01 -06:00
Florian Klink 9c86e8faf5
Merge pull request #52488 from flokli/pam_account_unix_required
security.pam: make pam_unix.so required, not sufficient
2018-12-21 17:49:19 +01:00
Alyssa Ross a2eed09a8c
Merge pull request #52416 from alyssais/icu
icu63: init at 63.1
2018-12-21 16:07:40 +00:00
José Luis Lafuente 5d9d164c77
clojure: 1.9.0.391 -> 1.10.0.403 2018-12-21 17:03:48 +01:00
Mario Rodas 485bf85407
pyre: fix watchman references 2018-12-21 16:20:44 +01:00
Jörg Thalheim 594fd0ff6e
Merge pull request #52627 from vdemeester/52469-localtime-to-buildgopackage
localtime: migrate to using buildGoPackage
2018-12-21 15:32:49 +01:00
Florian Klink d180bf3862 security.pam: make pam_unix.so required, not sufficient
Having pam_unix set to "sufficient" means early-succeeding account
management group, as soon as pam_unix.so is succeeding.

This is not sufficient. For example, nixos modules might install nss
modules for user lookup, so pam_unix.so succeeds, and we end the stack
successfully, even though other pam account modules might want to do
more extensive checks.

Other distros seem to set pam_unix.so to 'required', so if there are
other pam modules in that management group, they get a chance to do some
validation too.

For SSSD, @PsyanticY already added a workaround knob in
https://github.com/NixOS/nixpkgs/pull/31969, while stating this should
be the default anyway.

I did some thinking in what could break - after this commit, we require
pam_unix to succeed, means we require `getent passwd $username` to
return something.
This is the case for all local users due to the passwd nss module, and
also the case for all modules installing their nss module to
nsswitch.conf - true for ldap (if not explicitly disabled) and sssd.

I'm not so sure about krb5, cc @eqyiel for opinions. Is there some nss
module loaded? Should the pam account module be placed before pam_unix?

We don't drop the `security.pam.services.<name?>.sssdStrictAccess`
option, as it's also used some lines below to tweak error behaviour
inside the pam sssd module itself (by changing it's 'control' field).

This is also required to get admin login for Google OS Login working
(#51566), as their pam_oslogin_admin accounts module takes care of sudo
configuration.
2018-12-21 15:31:07 +01:00
Timo Kaufmann bfca7082d4
Merge pull request #52613 from nyanloutre/pyqt5-fix
pythonPackages.pyqt5: fix sip dependency
2018-12-21 15:28:50 +01:00
Vincent Demeester ed473e6615
localtime: migrate to using buildGoPackage
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-12-21 15:24:02 +01:00
Orivej Desh 8eccf9e284 bento4: fix license
The documentation says GPL2, and the source files also say "or any later version".
https://www.bento4.com/about/
https://github.com/axiomatic-systems/Bento4/blob/v1.5.1-624/Source/C++/CApi/Bento4C.h
2018-12-21 14:12:24 +00:00
Tim Steinbach af6c117fac
linux: 4.19.11 -> 4.19.12 2018-12-21 09:11:02 -05:00
Tim Steinbach dea57f15e9
linux: 4.14.89 -> 4.14.90 2018-12-21 09:10:54 -05:00
Tim Steinbach a5f447e16a
linux: 4.9.146 -> 4.9.147 2018-12-21 09:10:45 -05:00
Tim Steinbach 54ce2e016b
linux: 4.4.168 -> 4.4.169 2018-12-21 09:10:24 -05:00
Tim Steinbach 98ac5710bd
kernel-config: CIFS_POSIX no longer exists 2018-12-21 09:10:17 -05:00
Michael Raskin 35efbedce4 matrix-synapse: 0.33.9 -> 0.34.0 2018-12-21 15:01:45 +01:00
Michael Raskin 13d5941d50 matrix-synapse: fix build by local dependency downgrade 2018-12-21 15:01:45 +01:00
Justin Humm 0be7bfe1bf
qutebrowser: fix pdfjs
Pdfjs was downloaded in two derivations, where one is sufficient.

Also there was allegedly a typo in the download URL.
2018-12-21 14:12:02 +01:00
nyanloutre 05cf0e1107 pythonPackages.pyqt5: link sip module 2018-12-21 14:06:44 +01:00
nyanloutre b569b87d4a pythonPackages.sip: change module name
See https://github.com/NixOS/nixpkgs/pull/49400
2018-12-21 14:06:03 +01:00
Peter Simons 195f8ac5ac haskell-JuicyPixels: update overrides for the new version 2018-12-21 14:02:57 +01:00
Peter Simons a220b2f370 haskell-appar: drop obsolete override 2018-12-21 14:02:57 +01:00
Peter Simons e6d726e5aa hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.12-11-gaf7cf68 from Hackage revision
6694c4746f.
2018-12-21 14:02:57 +01:00
Peter Simons 7f85bfd70d hackage2nix: prefer alsa-mixer 0.2.x by default
Fixes https://github.com/NixOS/nixpkgs/issues/52516.
2018-12-21 14:02:56 +01:00
Peter Simons 2018654322 LTS Haskell 12.23 2018-12-21 14:02:56 +01:00
Jörg Thalheim a647b1218b
Merge pull request #52620 from Mic92/collectd-fix-2
collectd: fix build (take 2)
2018-12-21 14:02:22 +01:00
Alex Branham a5fc513079 R: 3.5.1 -> 3.5.2
Closes https://github.com/NixOS/nixpkgs/pull/52571.
2018-12-21 13:59:36 +01:00
Jörg Thalheim ce2cea80bf
collectd: add comment regarding propagated libraries 2018-12-21 13:43:10 +01:00
Jörg Thalheim 92343831c8
Merge pull request #52618 from hedning/ad-hoc-fix-strongswan
strongswan: ad-hoc fix build
2018-12-21 13:41:58 +01:00
Jörg Thalheim 652248e0e5
libcollectdclient: fix evaluation 2018-12-21 13:40:40 +01:00