Commit Graph

382024 Commits

Author SHA1 Message Date
R. Ryantm
3ece45bc72 gnome.gnome-remote-desktop: 42.1.1 -> 42.2 2022-05-30 13:21:53 +02:00
R. Ryantm
cd21d43206 gnome.gnome-shell: 42.1 -> 42.2 2022-05-30 13:18:46 +02:00
R. Ryantm
d1b430ec3f gnome.mutter: 42.1 -> 42.2 2022-05-30 13:17:21 +02:00
Jan Tojnar
8407184d50
Merge pull request #173782 from ranfdev/blueprint
blueprint-compiler: init at 0.1.0
2022-05-30 12:46:04 +02:00
Janne Heß
563e5c46f5
Merge pull request #175445 from helsinki-systems/fix/vmware-mkoverride
nixos/vmware-guest: Remove the video driver
2022-05-30 12:30:46 +02:00
Thomas Boerger
daef7d854f
ansible-later: add to all packages 2022-05-30 12:15:49 +02:00
ajs124
30186896ee nixos/nginx: fix SystemCallFilter for openresty 2022-05-30 11:58:28 +02:00
ajs124
c26e3354a7 nginxQuic: update 2022-05-30 11:58:28 +02:00
ajs124
b484952330 nginx(Stable|Mainline|Quic): use pcre2 2022-05-30 11:58:28 +02:00
ajs124
893214cd0e nginxMainline: 1.21.6 -> 1.22.0 2022-05-30 11:58:28 +02:00
ajs124
14ef375cf0 nginxStable: 1.20.2 -> 1.22.0 2022-05-30 11:58:28 +02:00
Jörg Thalheim
c29b1d9aba
Merge pull request #175264 from Mic92/tts
tts: 0.6.1 -> 0.6.2
2022-05-30 10:58:05 +01:00
Janne Heß
5157246aa4
nixos/vmware-guest: Remove the video driver
This breaks isos since https://github.com/NixOS/nixpkgs/pull/172668
because vmware is enabled there. @K900 tested this and confirmed that
the GPU acceleration still works.
2022-05-30 11:56:21 +02:00
Jörg Thalheim
07fa14a338
Merge pull request #175452 from FlorianFranzen/hydra-passthru-nix
hydra_unstable: passthru pinned nix
2022-05-30 10:47:54 +01:00
Klemens Nanni
1a20dbc086 bpftrace: Rename *.8 to *.bt.8 to avoid bcc conflicts
bpftrace ships *.bt replacement scripts for the original bcc programs
but still installs their manual pages as *.8 rather than *.bt.8 which
conflicts with the original manual pages.

Rename them to recover the original manuals and avoid conflict spam:
```
building '/nix/store/jspx13hyfi2m9vlnbj5iywk6rxpxp7y0-system-path.drv'...
warning: collision between `/nix/store/dv7x07rmd2m7596f38kl9d5bnv545qz7-bpftrace-0.14.1-man/share/man/man8/biolatency.8.gz' and `/nix/store/lw1kw7077wk3j6cnvjrm904rs2w7785p-bcc-0.24.0/share/man/man8/biolatency.8.gz'
[... 28 more duplicate manuals ...]
```
2022-05-30 11:39:15 +02:00
Artturi
cb2c4f77af
Merge pull request #175443 from loicreynier/fix-gh-cal
gh-cal: fix pkg-config
2022-05-30 12:24:25 +03:00
Florian Franzen
e0115c36ec hydra_unstable: passthru pinned nix 2022-05-30 11:17:16 +02:00
Nikolay Korotkiy
bb8a794957
tile38: 1.27.1 → 1.28.0 2022-05-30 11:59:15 +03:00
Florian Klink
f12a263b69
Merge pull request #172707 from klemensn/init-zfs-mount-options
nixos/stage-1: Fix library path in libraries, fix ZFS mount options
2022-05-30 10:51:17 +02:00
Erik Arvstedt
138a94228d
paperless-ngx: add maintainers 2022-05-30 10:49:52 +02:00
Erik Arvstedt
567e65136f
paperless-ngx: 1.6.0 -> 1.7.1 2022-05-30 10:44:37 +02:00
Robert Scott
ae0df5d38a lib.sourceTypes: simplify implementation
Co-authored-by: Alexander Foremny <aforemny@posteo.de>
2022-05-30 16:27:34 +08:00
Robert Scott
5bb9bf4774 meta.sourceProvenance: inline hasSourceProvenance
it may be what the license handling code does, but it's confusing and not very useful

Co-authored-by: Adam Joseph <54836058+a-m-joseph@users.noreply.github.com>
2022-05-30 16:27:34 +08:00
Robert Scott
7906ea6d9d allowNonSourcePredicate: use example of categorical permissivity
Co-authored-by: Adam Joseph <54836058+a-m-joseph@users.noreply.github.com>
2022-05-30 16:27:34 +08:00
Robert Scott
095eb91533 meta.sourceProvenance: disallow string values
strings complicate reasoning about values and may not be needed with `sourceProvenance`

Co-authored-by: Alexander Foremny <aforemny@posteo.de>
2022-05-30 16:27:34 +08:00
Adam Joseph
81bc106e08 meta.sourceProvenance documentation: clarify it is unaffected by changes to meta.license
This commit clarifies that the meaning of the `meta.sourceProvenance`
field is independent of and unaffected by the value of the
`meta.license` field.  This is based on the intent of the RFC author
as expressed here:

  https://github.com/NixOS/nixpkgs/pull/161098#issuecomment-1081270201

This clarification is added for two reasons:

1. If in the future there should be some disagreement about what
   `sourceProvenance` to assign to a package, this may help resolve
   the disagreement.  Any interpretation of `sourceProvenance` which
   is influenced by the `meta.license` is clearly an incorrect
   interpretation.

2. If it should turn out that it is impossible to disentangle
   `sourceProvenance` from `meta.license`, this would indicate the
   need for changes to the `sourceProvenance` scheme.  That change
   might be as simple as replacing the sentence added by this commit
   with some other sentence explaining how the two fields influence
   each other.

This commit implements the recommendation made in the paragraph of
this comments which begins with "Please say this explicitly...":

  https://github.com/NixOS/nixpkgs/pull/161098#issuecomment-1081309089
2022-05-30 16:27:34 +08:00
Robert Scott
9d0784829a add initial meta.sourceProvenance documentation 2022-05-30 16:27:34 +08:00
Robert Scott
da9162f667 add mechanism for handling meta.sourceProvenance attributes
heavily based on patterns used by licenses infrastructure, so may
appear overengineered for its initial level of use
2022-05-30 16:27:34 +08:00
Sergei Trofimovich
93e6a4b607
Merge pull request #175163 from athas/geomyidae
geomyidae: init at 0.50.1
2022-05-30 08:20:53 +00:00
Fabian Affolter
0ec13035f6 python310Packages.pynisher: add pythonImportsCheck 2022-05-30 10:10:41 +02:00
Loïc Reynier
4b3a039b60 gh-cal: fix pkg-config 2022-05-30 10:08:00 +02:00
Fabian Affolter
1c6360e333 python310Packages.whodap: disable on older Python releases 2022-05-30 10:07:32 +02:00
Troels Henriksen
90a741547e geomyidae: init at 0.50.1 2022-05-30 09:57:16 +02:00
R. Ryantm
f6facfe59d python310Packages.pims: 0.6.0 -> 0.6.1 2022-05-30 00:51:12 -07:00
Fabian Affolter
c78821e0fd python310Packages.wordcloud: switch to pytestCheckHook 2022-05-30 00:49:12 -07:00
Fabian Affolter
33c6d916c7
Merge pull request #175438 from jonringer/fix-transformers-pytorch
python3Packages.transformers: fix pytorch reference
2022-05-30 09:47:08 +02:00
R. Ryantm
c68d933481 python310Packages.flask-httpauth: 4.6.0 -> 4.7.0 2022-05-30 00:46:46 -07:00
R. Ryantm
4dc5ea5202 python310Packages.sphinxcontrib-spelling: 7.4.0 -> 7.4.1 2022-05-30 00:46:35 -07:00
Fabian Affolter
dfbb27127f
Merge pull request #175399 from SuperSandro2000/geoip2
python310Packages.geoip2: add missing dependency, description
2022-05-30 09:44:28 +02:00
Sandro Jäckel
30d5e6068a python310Packages.elasticsearch-dsl: remove ipaddress dependency 2022-05-30 00:37:36 -07:00
github-actions[bot]
049be08db3 terraform-providers: update 2022-05-30 2022-05-30 17:33:38 +10:00
zowoq
8bb4fac405 terraform-providers: update scripts
- skip updates that include alphabetic characters in version
2022-05-30 17:33:38 +10:00
Ben Siraphob
fd523bfe80
Merge pull request #175369 from dotlambda/libspotify-drop
libspotify: remove
2022-05-30 07:11:27 +00:00
Ben Siraphob
66c7d3ca6b
Merge pull request #175211 from risicle/ris-liblouis-darwin-fix
liblouis: fix darwin build with patch
2022-05-30 07:10:23 +00:00
R. Ryantm
5523be73f4 python310Packages.brother: 1.2.2 -> 1.2.3 2022-05-30 00:08:58 -07:00
Johannes Schleifenbaum
cbe5dca334
libreddit: 0.22.7 -> 0.22.9 2022-05-30 09:05:59 +02:00
Jonathan Ringer
d02116e319
python3Packages.transformers: fix pytorch reference 2022-05-30 00:02:51 -07:00
Sandro Jäckel
412ec27c16 python310Packages.pysaml2: add missing dependency on setuptools 2022-05-29 23:59:13 -07:00
Fabian Affolter
095219c30c natscli: 0.0.32 -> 0.0.33 2022-05-30 08:59:02 +02:00
Sandro Jäckel
b32b506ad0 python310Packages.gpsoauth: cleanup dependencies 2022-05-29 23:47:37 -07:00