Commit graph

290901 commits

Author SHA1 Message Date
Anderson Torres
de83b9baff
Merge pull request #122712 from AndersonTorres/adoption
Adoption of some packages from worldofpeace
2021-05-18 12:52:13 -03:00
sternenseemann
cbaa1c8a59 haskellPackages.hw-prim-bits: restrict to x86
Requires x86 assembler, so no luck building it anywhere else.
2021-05-18 17:48:31 +02:00
sternenseemann
a9a5465f84 haskellPackages.inline-asm: restrict to x86
Main executable uses x86 assembler, so we can't build it anywhere at
all.
2021-05-18 17:46:04 +02:00
Robert Schütz
d189df235a
Merge pull request #122241 from dotlambda/znc-harden
nixos/znc: harden systemd unit
2021-05-18 17:44:14 +02:00
Bruce Toll
e0e6ce7385 spice-vdagent: fix build error with glib > 2.68
The recent upgrade to glib 2.68.1 caused some deprecation errors in
spice-vdagent related to g_memdup, which is now deprecated in favor of
g_memdup2.

See: https://bugzilla.redhat.com/show_bug.cgi?id=1943059

The simplest workaround (until this gets fixed upstream) is to allow
deprecated declarations to be treated as warnings rather than fatal
errors.
2021-05-18 11:43:32 -04:00
Maciej Krüger
7409f9bab3
services.cjdns: add missing, optional login & peerName attribute 2021-05-18 17:39:04 +02:00
Ashlynn Anderson
903665f31c
nixos/self-deploy: init (#120940)
Add `self-deploy` service to facilitate continuous deployment of NixOS
configuration from a git repository.
2021-05-18 08:29:37 -07:00
Maximilian Bosch
6ca9ae4e06
Merge pull request #123528 from dasj19/gnome-podcasts-update
gnome-podcasts: 0.4.8 -> 0.4.9
2021-05-18 17:29:08 +02:00
Maciej Krüger
21ac35737e
bless: 0.6.2 -> 0.6.3 2021-05-18 17:29:00 +02:00
Maciej Krüger
c4a2f86ebe
Merge pull request #123521 from mkg20001/gtk-2-fix
gtk-sharp-2_0: fix with patch from arch
2021-05-18 17:27:30 +02:00
Maciej Krüger
362ca08510
Merge pull request #123448 from mweinelt/phosh-pam
nixos/phosh: Fix PAM configuration
2021-05-18 17:26:21 +02:00
Maximilian Bosch
6dcd2949f0
Merge pull request #123516 from r-ryantm/auto-update/find-cursor
find-cursor: 1.6 -> 1.7
2021-05-18 17:22:22 +02:00
sternenseemann
f95953424c haskellPackages: add some arm-related issues to unsupported-platforms
* charsetdetect: dependency library which is vendored fails with a cpp
  failure on aarch64. Could probably theoretically support aarch64, but
  doesn't in practice.
* persist-state: aarch64 (no UNALIGNED_MEMORY) and armv7l (32 bit) fail
  in cpp.
2021-05-18 17:08:42 +02:00
sternenseemann
84f49ed51f haskellPackages.iniline-asm: only test on x86
x86 assembler doesn't compile on aarch64 of course.
2021-05-18 17:08:42 +02:00
sternenseemann
d640ce886a haskellPackages.{blake3,seqalign,crc32c}: restrict platforms to x86
All of these packages use x86 intrinsics-related headers and don't
compile on non x86 platforms as a result.

These overrides should be refactored into the yaml configuration at some
point.

Resolves #122014.
2021-05-18 17:08:42 +02:00
sternenseemann
a3fd86a3ba haskellPackages: disable some more failing doctests on aarch64
This should conclude a pass of direct aarch64-linux failures related to
this issue on hydra. Subsequent evaluation may of course reveal more.
2021-05-18 17:08:42 +02:00
Martin Weinelt
27cc2b105f
home-assistant: enable tests for components with packaged dependencies 2021-05-18 17:07:32 +02:00
Martin Weinelt
c53ab92c04
python3Packages.pyflume: 0.6.4 -> 0.7.0 2021-05-18 17:07:32 +02:00
Martin Weinelt
344573771e
home-assistant: pin pylast at 4.2.0
The following test failure occurs with 4.2.1, due to `network` not being
allowed to be None after 6fe9aa632b.

_________________________ test_update_playing[pyloop] __________________________
[gw20] linux -- Python 3.8.9 /nix/store/hq6mrm0pc6xn6j8y6lm4qcgg9rwmqd8q-python3-3.8.9/bin/python3.8

hass = <homeassistant.core.HomeAssistant object at 0x7ffdcba15700>
lastfm_network = <MagicMock name='LastFMNetwork' id='140728019800752'>

    async def test_update_playing(hass, lastfm_network):
        """Test update when song playing."""

        lastfm_network.return_value.get_user.return_value = MockUser(
>           Track("artist", "title", None)
        )

hass       = <homeassistant.core.HomeAssistant object at 0x7ffdcba15700>
lastfm_network = <MagicMock name='LastFMNetwork' id='140728019800752'>

tests/components/lastfm/test_sensor.py:70:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/nix/store/f0ci60zk59rz5767l9lfy7q767zna6j5-python3.8-pylast-4.2.1/lib/python3.8/site-packages/pylast/__init__.py:2095: in __init__
    super().__init__(artist, title, network, "track", username, info)
        __class__  = <class 'pylast.Track'>
        artist     = 'artist'
        info       = None
        network    = None
        self       = pylast.Track('artist', 'title', None)
        title      = 'title'
        username   = None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = pylast.Track('artist', 'title', None), artist = 'artist', title = 'title'
network = None, ws_prefix = 'track', username = None, info = {}

    def __init__(self, artist, title, network, ws_prefix, username=None, info=None):
        """
        Create an opus instance.
        # Parameters:
            * artist: An artist name or an Artist object.
            * title: The album or track title.
            * ws_prefix: 'album' or 'track'
        """

        if info is None:
            info = {}

        super().__init__(network=network, ws_prefix=ws_prefix)

        if isinstance(artist, Artist):
            self.artist = artist
        else:
            self.artist = Artist(artist, self.network)

        self.title = title
        self.username = (
>           username if username else network.username
        )  # Default to current user
E       AttributeError: 'NoneType' object has no attribute 'username'

__class__  = <class 'pylast._Opus'>
artist     = 'artist'
info       = {}
network    = None
self       = pylast.Track('artist', 'title', None)
title      = 'title'
username   = None
ws_prefix  = 'track'

/nix/store/f0ci60zk59rz5767l9lfy7q767zna6j5-python3.8-pylast-4.2.1/lib/python3.8/site-packages/pylast/__init__.py:1520: AttributeError
2021-05-18 17:07:30 +02:00
Martin Weinelt
a1a1a6b1df
home-assistant: pin pyopenuv at 1.0.13 2021-05-18 17:06:54 +02:00
Daniel Șerbănescu
89631e4df2 gnome-podcasts: 0.4.8 -> 0.4.9 2021-05-18 17:03:43 +02:00
Martin Weinelt
f6b1fc2996
home-assistant: pin pyflunearyou at 1.0.7 2021-05-18 16:53:53 +02:00
Martin Weinelt
ec9cfba2d3
nixos/phosh: Fix unrestricted login because of insecure PAM config
The PAM config deployed would not check anything meaningful. Remove it
and rely on the defaults in the security.pam module to fix login with
arbitrary credentials.

Resolves: #123435
2021-05-18 16:39:03 +02:00
Stéphan Kochen
e097fa08c8
nss_wrapper: broken on darwin (#123462) 2021-05-18 10:38:38 -04:00
Stéphan Kochen
51eeb21486
powershell: fix darwin build (#123484) 2021-05-18 10:36:25 -04:00
Stéphan Kochen
fbf1525f01
probe-run: fix darwin build (#123494) 2021-05-18 10:35:37 -04:00
Stéphan Kochen
7e9451ffb3
rink: fix darwin build (#123501) 2021-05-18 10:34:25 -04:00
Stéphan Kochen
4bb1c4677d
rdesktop: fix darwin build (#123498) 2021-05-18 10:33:26 -04:00
Maciej Krüger
6e98a27ffa
gtk-sharp-2_0: fix with patch from arch 2021-05-18 16:26:25 +02:00
figsoda
1fd56f5487 macchina: 0.7.2 -> 0.8.1 2021-05-18 10:25:46 -04:00
Pavol Rusnak
aaaab99d8c
Merge pull request #123341 from dotlambda/vivaldi-ffmpeg
vivaldi: use ffmpeg instead of ffmpeg_3
2021-05-18 16:24:33 +02:00
Daniël de Kok
2206118886 python3Packages.spacy: 3.0.5 -> 3.0.6
Changelog:
https://github.com/explosion/spaCy/releases/tag/v3.0.6
2021-05-18 16:17:26 +02:00
Daniël de Kok
91b9bbe38c python3Packages.srsly: 2.4.0 -> 2.4.1
Changelog:
https://github.com/explosion/srsly/releases/tag/v2.4.1
2021-05-18 16:17:22 +02:00
AndersonTorres
8352b700e9 notejot: 1.6.3 -> 3.0.4 2021-05-18 11:12:32 -03:00
AndersonTorres
ac31cfa66b fondo: adoption 2021-05-18 11:12:32 -03:00
AndersonTorres
9cb3114a54 celluloid: 0.20 -> 0.21
Also, adopts from worldofpeace (in memoriam?).
2021-05-18 11:12:32 -03:00
AndersonTorres
284e715277 taxi: 0.0.1 -> 0.0.1-unstable=2020-09-03 2021-05-18 11:12:31 -03:00
Michael Weiss
1b114586e8
Merge pull request #123381 from primeos/nixos-tests-cagebreak
nixos/tests/cagebreak: Fix the test
2021-05-18 16:01:37 +02:00
R. RyanTM
92a7f5cb67 find-cursor: 1.6 -> 1.7 2021-05-18 13:41:32 +00:00
David Wood
23b30e11a0
webssh: init at 1.5.3 (#122559)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-05-18 15:29:19 +02:00
Maximilian Bosch
30d16a42df
Merge pull request #123497 from stephank/fix-prometheus-wireguard-exporter-darwin
prometheus-wireguard-exporter: fix darwin build
2021-05-18 15:18:31 +02:00
Fabian Affolter
655b7e57f5 home-assistant: update component-packages 2021-05-18 14:32:42 +02:00
Fabian Affolter
42036b5158 python3Packages.locationsharinglib: init at 4.1.6 2021-05-18 14:32:14 +02:00
Jan Tojnar
1b1faeb2db
Merge pull request #86288 from worldofpeace/gnome-doc
nixos/gnome3: add docs
2021-05-18 14:19:33 +02:00
Jan Tojnar
293d6a8c75
Merge pull request #122747 from maxeaubrey/modemmanager_1.14.12
modemmanager: 1.14.10 -> 1.14.12
2021-05-18 14:17:51 +02:00
Stéphan Kochen
70e199136e spacenavd: fix darwin build 2021-05-18 14:08:03 +02:00
Jan Tojnar
ed47351533
nixos/flatpak: Remove guiPackages internal option
It was basically just a `environment.systemPackages` synonym,
only GNOME used it, and it was stretching the responsibilities
of the flatpak module too far.

It also makes it cleaner to avoid installing the program
using GNOME module’s `excludePackages` option.

Partially reverts: https://github.com/NixOS/nixpkgs/pull/101516
Fixes: https://github.com/NixOS/nixpkgs/issues/110310
2021-05-18 14:06:23 +02:00
Michael Raskin
9f67421fe8
Merge pull request #123463 from ninjin/julia_10-bin-cve
julia: mark julia_10-bin as insecure
2021-05-18 12:03:25 +00:00
Sandro
614e22f8d2
Merge pull request #123443 from mweinelt/python/pulsectl
python3Packages.pulsectl: 21.5.0 -> 21.5.17
2021-05-18 13:59:51 +02:00
Stéphan Kochen
83c02160e5 spacenav-cube-example: fix darwin build 2021-05-18 13:56:08 +02:00