Commit Graph

297480 Commits

Author SHA1 Message Date
Jan Tojnar
5efd65b2d9
inkscape-with-extension: make enabling all extensions easier
Previously, we needed something like

	inkscape-with-extensions.override { inkscapeExtensions = builtins.filter lib.isDerivation (builtins.attrValues inkscape-extensions); }

Now, we can just do

	inkscape-with-extensions.override { inkscapeExtensions = null; }
2021-06-25 12:41:11 +02:00
Jan Tojnar
75ea980211
inkscape-extensions.applytransforms: 0.0.0+unstable=2021-05-11 2021-06-25 12:41:11 +02:00
Jan Tojnar
1dea82ff05
python3.pkgs.inkex: init from inkscape
This is useful for testing Inkscape extensions.
2021-06-25 12:41:11 +02:00
Jan Tojnar
a5252d1f00
inkscape: Fix parsing paths by Python extensions 2021-06-25 01:20:07 +02:00
Sandro
1905f5f2e5
Merge pull request #127853 from IvarWithoutBones/fix/amidst-jre
amidst: use jre instead of jre8
2021-06-23 13:30:53 +02:00
Sandro
a0e8af4c1a
Merge pull request #127809 from rileyinman/koreader-fix
koreader: Add gnutar and sdvc dependencies
2021-06-23 13:30:25 +02:00
Sandro
e2e77dc3f1
Merge pull request #127819 from ymatsiuk/fluxcd
fluxcd: 0.13.4 -> 0.15.3
2021-06-23 13:27:47 +02:00
Sandro
6d4f69155b
Merge pull request #127838 from dotlambda/pg8000_1_12-drop 2021-06-23 13:27:32 +02:00
Sandro
ef0352a03b
Merge pull request #127841 from dotlambda/python-socketio_4-drop 2021-06-23 13:26:41 +02:00
Sandro
e35ddac464
Merge pull request #127797 from dotlambda/scli-0.6.3
scli: 0.6.1 -> 0.6.3
2021-06-23 13:24:28 +02:00
Sandro
439ea54d4d
Merge pull request #127866 from ethancedwards8/updog 2021-06-23 13:10:10 +02:00
Linus Heckemann
5c7023e5f0
Merge pull request #127860 from mweinelt/esphome
esphome: fix permissions on src file before modifying them
2021-06-23 13:08:46 +02:00
Sandro
e3ed4374a1
Merge pull request #127847 from dotlambda/vtk_789-drop 2021-06-23 13:07:15 +02:00
Sandro
8cb714d084
Merge pull request #127874 from fabaff/bump-exploitdb
exploitdb: 2021-06-19 -> 2021-06-23
2021-06-23 13:05:09 +02:00
Sandro
652966c881
Merge pull request #127836 from dotlambda/herepy-3.5.3
python3Packages.herepy: 3.5.2 -> 3.5.3
2021-06-23 12:55:39 +02:00
Sandro
1956a52857
Merge pull request #126656 from jwoudenberg/add-system76-power 2021-06-23 12:54:22 +02:00
Ethan Edwards
494ba50fc3
updog: init at 1.4 2021-06-23 06:42:09 -04:00
Sandro
b1662abccc
Merge pull request #127862 from est31/kimageformats-avif
kimageformats: enable AVIF support
2021-06-23 11:21:22 +02:00
Sandro
9e878c2a5d
Merge pull request #127808 from alarsyo/clang12Stdenv 2021-06-23 10:45:10 +02:00
Sandro
cab0b546a3
Merge pull request #127456 from musfay/multimc-fix 2021-06-23 10:44:50 +02:00
Sandro
0e0bd273de
Merge pull request #127825 from eraserhd/weechat-darwin-fix
weechat: fix build on darwin
2021-06-23 10:42:06 +02:00
Sandro
22bae36e74
Merge pull request #127826 from veprbl/pr/mcfm_init
mcfm: init at 10.0.1
2021-06-23 10:41:15 +02:00
Florian Klink
61b9f7d4ba
Merge pull request #127777 from flokli/arm-trusted-firmware-fix-hash
armTrustedFirmware*: fix hash
2021-06-23 10:17:47 +02:00
zowoq
4b0ca5e0cd fuse-overlayfs: 1.5.0 -> 1.6
https://github.com/containers/fuse-overlayfs/releases/tag/v1.6
2021-06-23 17:32:53 +10:00
Fabian Affolter
22001190c6
Merge pull request #127810 from DeeUnderscore/gdu-5.1.1
gdu: 5.1.0 -> 5.1.1
2021-06-23 09:16:42 +02:00
Fabian Affolter
7d1edb99ac
Merge pull request #127817 from charles-dyfis-net/nwipe-0.31
nwipe: 0.30 -> 0.31
2021-06-23 09:00:05 +02:00
Fabian Affolter
bbe1279459 exploitdb: 2021-06-19 -> 2021-06-23 2021-06-23 08:42:23 +02:00
Martin Weinelt
06d92ba195
esphome: fix permissions on src file before modifying them
We store esphome in the nix store, which results in its file permissions
being 0444. Esphome, when compiling a firmware image, will copy these
files from the nix store to a working directory. When updating between
versions it will notice these files changed and try to copy the new
version over, which would break, because the user had no write
permissions on the files.

❯ esphome compile 01e4ac.yml
INFO Reading configuration 01e4ac.yml...
INFO Detected timezone 'CET' with UTC offset 1 and daylight saving time from 27 March 02:00:00 to 30 October 03:00:00
INFO Generating C++ source...
ERROR Error copying file /nix/store/lmzrgl1arqfd98jcss4rsmmy6dbffddn-esphome-1.19.2/lib/python3.8/site-packages/esphome/components/api/api_connection.cpp to 01e4ac/src/esphome/components/api/api_connection.cpp: [Errno 13] Permission denied: '01e4ac/src/esphome/components/api/api_connection.cpp'

To fix this we modify chmod to 0644 just before esphome tries a copy
operation, which will fix permissions on existing working directories
just in time.
2021-06-23 05:07:11 +02:00
Martin Weinelt
0ff9967dac python3Packages.pysbd: 0.3.3 -> 0.3.4
The upstream does not provide sdists on PyPi anymore, so switch to the
GitHub source instead.
2021-06-22 20:03:07 -07:00
R. RyanTM
f64fb8bd31 jmol: 14.31.39 -> 14.31.41 2021-06-22 19:47:51 -07:00
IvarWithoutBones
afb2e12ee9 amidst: use jre instead of jre8 2021-06-23 03:16:52 +02:00
R. RyanTM
5abe2cd1ac analog: 6.0.16 -> 6.0.17 2021-06-22 17:34:23 -07:00
R. RyanTM
f283f9411b liquibase: 4.3.5 -> 4.4.0 2021-06-22 17:34:11 -07:00
R. RyanTM
24b29d114e avocode: 4.14.1 -> 4.14.3 2021-06-22 17:34:03 -07:00
R. RyanTM
afb035ed9f gallery-dl: 1.17.5 -> 1.18.0 2021-06-22 17:33:52 -07:00
Aaron Andersen
b93c6338b2
Merge pull request #127173 from aanderse/kodi
kodi: updates
2021-06-22 20:24:06 -04:00
Niklas Hambüchen
959c4e82bc
Merge pull request #100255 from nh2/sshd-default-log-level-info
sshd service: Default to INFO logLevel (upstream default)
2021-06-23 02:06:54 +02:00
R. RyanTM
7e3d8fc66b byacc: 20210520 -> 20210619 2021-06-22 16:57:20 -07:00
Niklas Hambüchen
4bd5f1115f
Merge pull request #127166 from nh2/xserver-config-mkAfter-docs
services.xorg.config: Extend docs
2021-06-23 01:55:58 +02:00
Niklas Hambüchen
a48fea4c5e sshd service: Default to INFO logLevel (upstream default).
The previous justification for using "VERBOSE" is incorrect,
because OpenSSH does use level INFO to log "which key was used
to log in" for sccessful logins, see:
6247812c76/auth.c (L323-L328)

Also update description to the wording of the sshd_config man page.

`fail2ban` needs, sshd to be "VERBOSE" to work well, thus
the `fail2ban` module sets it to "VERBOSE" if enabled.

The docs are updated accordingly.
2021-06-23 01:49:11 +02:00
Niklas Hambüchen
e85693afde
Merge pull request #127157 from nh2/xserver-readable-config-indentation
xserver: Generate readable config indentation
2021-06-23 01:16:50 +02:00
Robert Schütz
1f072553b3 pythonPackages.vtk_{7,8,9}: drop
Versioned attributes in python-packages.nix should be avoided.
2021-06-23 01:15:26 +02:00
Michael Weiss
98984d2190
Merge pull request #127837 from primeos/chromiumDev
chromiumDev: 93.0.4542.2 -> 93.0.4549.3
2021-06-23 00:51:47 +02:00
Michael Weiss
3331ed5d1a
Merge pull request #127840 from primeos/signal-desktop
signal-desktop: 5.5.0 -> 5.6.1
2021-06-23 00:51:29 +02:00
Silvan Mosberger
b3e9073c48
Merge pull request #125991 from helsinki-systems/drop/mkStrict
lib/modules: Drop mkStrict and mkFixStrictness
2021-06-23 00:48:59 +02:00
Ryan Mulligan
a3d3ec2ec7
Merge pull request #127331 from r-ryantm/auto-update/atomicparsley
atomicparsley: 20210124.204813.840499f -> 20210617.200601.1ac7c08
2021-06-22 15:48:35 -07:00
Martin Weinelt
8db2252dc9
Merge pull request #127793 from mweinelt/ansible 2021-06-23 00:24:26 +02:00
Robert Schütz
58f452ecc2 pythonPackages.python-engineio_3: drop
Versioned attributes in python-packages.nix should be avoided.
2021-06-23 00:15:20 +02:00
Robert Schütz
c57fbd38c2 pythonPackages.python-socketio_4: drop
Versioned attributes in python-packages.nix should be avoided.
2021-06-23 00:14:56 +02:00
Michael Weiss
150a2f0b2e
signal-desktop: 5.5.0 -> 5.6.1 2021-06-23 00:12:20 +02:00