Commit Graph

263906 Commits

Author SHA1 Message Date
github-actions[bot]
3269d4d3a3
Merge master into staging-next 2021-01-15 18:52:54 +00:00
R. RyanTM
eba1653194 python37Packages.breathe: 4.25.1 -> 4.26.0 2021-01-15 10:31:36 -08:00
Emery Hemingway
df69951fc4 CODEOWNERS: add ehmry to Dhall packages 2021-01-15 19:14:58 +01:00
Gabriel Gonzalez
135742a845 Incorporate revision in name for Dhall GitHub packages
This is a small quality-of-life improvement so that
the package version/revision can be inferred from the
/nix/store path (which is the convention for most of the
Nixpkgs ecosystem).
2021-01-15 19:14:58 +01:00
Austin Seipp
7996fb0d4e
picat: 3.0p3 -> 3.0p4
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-15 12:03:57 -06:00
Sandro
1917c21d2e
Merge pull request #109462 from cpcloud/update-nomad
nomad: 1.0.1 -> 1.0.2
2021-01-15 18:45:41 +01:00
Sandro
36ff80b7c8
Merge pull request #109445 from iAmMrinal0/update/google-cloud-sdk
google-cloud-sdk: 322.0.0 -> 323.0.0
2021-01-15 18:34:14 +01:00
Sandro
57526b9c74
Merge pull request #109458 from cust0dian/navi-2.13.1
navi: 2.13.0 -> 2.13.1
2021-01-15 18:33:59 +01:00
Sandro
cbad8a642b
Merge pull request #109442 from ymatsiuk/bumpflux2
fluxcd: 0.5.9 -> 0.6.0
2021-01-15 18:33:41 +01:00
Sandro
a74cffad44
Merge pull request #109453 from Mindavi/remmina/1.4.10
remmina: 1.4.7 -> 1.4.10
2021-01-15 18:33:23 +01:00
Sandro
0eb69dab67
Merge pull request #109446 from jojosch/mycli-1.23.0
mycli: 1.22.2 -> 1.23.0
2021-01-15 18:33:03 +01:00
Sandro
94f62de347
Merge pull request #109437 from fabaff/upnpy
python3Packages.upnpy: init at 1.1.8
2021-01-15 18:28:05 +01:00
Sandro
14d1126756
Merge pull request #109038 from 0x4A6F/master-coturn
coturn: 4.5.1.3 -> 4.5.2
2021-01-15 18:27:07 +01:00
Jack Kelly
e87245d87d
usbguard: 0.7.8 -> 1.0.0 (#109296) 2021-01-15 18:26:47 +01:00
Sandro
51e3b19fc6
Merge pull request #109329 from tu-maurice/beefi-0.1.1 2021-01-15 18:26:24 +01:00
Martin Weinelt
7314c0eee7
home-assistant: 2021.1.2 -> 2021.1.3 2021-01-15 18:14:15 +01:00
Phillip Cloud
f7f73b2c8d nomad: 1.0.1 -> 1.0.2 2021-01-15 12:04:42 -05:00
Fabian Affolter
04af07c659 python3Packages.pyelftools: unstable-0.27 -> 0.27 2021-01-15 08:57:47 -08:00
Jan Tojnar
e03806bc45
Merge branch 'staging-next' into staging 2021-01-15 17:47:43 +01:00
Jan Tojnar
c0d2951fa6
Merge branch 'master' into staging-next 2021-01-15 17:46:46 +01:00
Kevin Cox
bb96017198
Merge pull request #108932 from Atemu/iso-image-compress-filter
iso-image: enable XZ compress filter
2021-01-15 11:32:21 -05:00
R. RyanTM
1497071f23 python37Packages.ansi: 0.1.5 -> 0.2.0 2021-01-15 08:27:35 -08:00
Fabian Affolter
f03c38bb8f home-assistant: update component-packages 2021-01-15 08:26:59 -08:00
Fabian Affolter
893f641504 python3Packages.pysoma: init at 0.0.10 2021-01-15 08:26:59 -08:00
Atemu
2fcab516c4 iso-image: enable XZ compress filter
Minimal ISO:
1m21 -> 2m25
625M -> 617M

Plasma5 ISO:
2m45 -> 5m18
1.4G -> 1.3G

Decompression speed stays about the same. It's just a few seconds for the whole
image anyways and, with that kind of speed, you're going to be bottlenecked by
IO long before the CPU.
2021-01-15 17:17:52 +01:00
Austin Seipp
2660037f8c
yosys: enable loading "out of band" plugins
By default, when yosys looks for plugins with the `-m` flag or `plugin`
command, it always looks in `YOSYS_PREFIX/share/yosys/plugins` for a
`.so` file, and loads that.

By design, this is intended to be a single, global, mutable location
such as `/usr/share/yosys/...` on disk, and plugins are supposed to
install their `.so` files here after yosys is installed, and they all
coexist together. Obviously, this won't work for us, but users might
expect these plugins to still work. More importantly, they won't want to
add special cases to their build systems.

Instead, to allow Nix users to use yosys plugins with the same UX (e.g.
natively call `plugin bluespec` or `-m ghdl`), we add a patch to yosys
that allows it to search a new `NIX_YOSYS_PLUGIN_DIRS` search path
environment variable. In tandem, we add a setup hook that adds to this
search path if a package has a `$out/share/yosys/plugins` directory.

Thus, it's enough to just include `yosys`, and any package that has a
yosys plugin in `$out/share/yosys/plugins`, and you can load it with
`-m` or the `plugin` command.

We could use a style like the haskellPackages set, where the set of
packages are "encased" in a lambda, and we pass packages that are
compatible with that version of the compiler:

    haskell.packages.ghc8102.ghcWithPackages (p: with p; [ ... ])

but, realistically, there will probably only ever be one version of
yosys and one set of compatible plugins, so this seems overdone.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-15 10:13:56 -06:00
Austin Seipp
51d1125f24
ghdl: 0.37 -> unstable-2021.01.14
This unreleased version of GHDL fixes a bunch of bugs. It also contains
a few internal API changes for synthesis support -- required by the GHDL
yosys plugin.

Ideally, we can just remove this when 0.38 comes out.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-15 10:13:46 -06:00
Câju Mihai-Drosi
5ffd4e1c2c
maintainers: add mcaju 2021-01-15 10:13:45 -06:00
Austin Seipp
ca27105b04
Revert "Merge pull request #105709 from CajuM/symbiflow"
This reverts commit 02828f91f1, reversing
changes made to f0a7fce6ee.
2021-01-15 10:13:27 -06:00
Sandro
f6a9596c4a
Merge pull request #109450 from msteen/patch-2
nix-prefetch: 0.3.1 -> 0.4.0
2021-01-15 16:55:33 +01:00
Sandro
9faf1581d8
Merge pull request #109339 from OmnipotentEntity/katago-1.8.0
katago 1.6.1 -> 1.8.0
2021-01-15 16:51:44 +01:00
Tim Steinbach
10e0e8251c
scala_2_12: 2.12.12 → 2.12.13 2021-01-15 10:39:11 -05:00
Tim Steinbach
518a0c1901
minecraft-server: 1.16.4 → 1.16.5 2021-01-15 10:39:11 -05:00
Tim Steinbach
4a521fb5e9
jenkins: 2.263.1 → 2.263.2 2021-01-15 10:39:10 -05:00
Tim Steinbach
3d39348aac
oh-my-zsh: 2021-01-07 → 2021-01-14 2021-01-15 10:39:10 -05:00
Tim Steinbach
7bead9b8fa
awscli: 1.18.211 -> 1.18.215 2021-01-15 10:39:10 -05:00
Tim Steinbach
13a904eda3
python3Packages.boto3: 1.16.51 -> 1.16.55 2021-01-15 10:39:10 -05:00
Tim Steinbach
b5ea656f1b
python3Packages.botocore: 1.19.51 -> 1.19.55 2021-01-15 10:39:06 -05:00
Serg Nesterov
9bc43c785f
navi: 2.13.0 -> 2.13.1 2021-01-15 18:35:26 +03:00
msteen
a4e13d2a1a nix-prefetch: 0.3.1 -> 0.4.0 2021-01-15 16:21:08 +01:00
Sandro
78970e62f6
Merge pull request #109378 from arcz/uthenticode
uthenticode: init at 1.0.4
2021-01-15 16:18:36 +01:00
Rick van Schijndel
9571b57a64 remmina: 1.4.7 -> 1.4.10 2021-01-15 15:30:19 +01:00
Robert Hensing
95e1ba302d
Merge pull request #109447 from mikroskeem/docker-20.10-fixes
Docker 20.10 fixes
2021-01-15 15:25:24 +01:00
Milan Pässler
4000091123
nixos/docker: change misleading error message
The socketActivation option was removed, but later on socket activation
was added back without the option to disable it. The description now reflects
that socket activation is used unconditionally in the current setup.
2021-01-15 15:00:11 +01:00
Elis Hirwing
17631db07c
Merge pull request #109443 from jojosch/php8-protobuf
phpExtensions.protobuf: fix build with PHP 8
2021-01-15 14:57:34 +01:00
Mark Vainomaa
f53cf9a65c
Revert "nixos/tests/docker: wait for docker service"
This reverts commit c14bafd6c7db3b0c03574e28831821adda22a6f1.
2021-01-15 15:53:43 +02:00
Mark Vainomaa
a81c27cd54
docker: fix systemd socket activation 2021-01-15 15:53:31 +02:00
Mrinal Purohit
7370d2346b google-cloud-sdk: 322.0.0 -> 323.0.0 2021-01-15 19:21:14 +05:30
Johannes Schleifenbaum
be9bda4fa0
mycli: 1.22.2 -> 1.23.0 2021-01-15 14:50:31 +01:00
Robert Hensing
9797139cbb dockerTools: typo
Italian.
2021-01-15 14:23:51 +01:00