Commit Graph

40435 Commits

Author SHA1 Message Date
figsoda
e832f89518
Merge pull request #135831 from Alexnortung/session-desktop-appimage
session-desktop-appimage: init at 1.7.1
2021-09-15 16:33:07 -04:00
github-actions[bot]
1c625bf844
Merge staging-next into staging 2021-09-15 18:01:59 +00:00
Dmitry Kalinkin
d8ed39b309
Merge pull request #135525 from veprbl/pr/open_memstream_fmemopen_darwin_fix
Add implemetations of open_memstream/fmemopen to be used on BSDs
2021-09-15 11:49:55 -04:00
github-actions[bot]
636ebe3a72
Merge staging-next into staging 2021-09-15 06:01:54 +00:00
github-actions[bot]
5663f4625d
Merge master into staging-next 2021-09-15 06:01:20 +00:00
Mario Rodas
5ea11a23db protobuf: 3.17.3 -> 3.18.0 2021-09-15 04:20:00 +00:00
Mario Rodas
44c4f8c497 protobuf3_18: init at 3.18.0
https://github.com/protocolbuffers/protobuf/releases/tag/v3.18.0
2021-09-15 04:20:00 +00:00
figsoda
bef5fb44ab
Merge pull request #137708 from figsoda/nomino
nomino: init at 1.1.0
2021-09-14 22:47:38 -04:00
github-actions[bot]
0f78d9c4b7
Merge staging-next into staging 2021-09-15 00:02:12 +00:00
github-actions[bot]
728f30ca03
Merge master into staging-next 2021-09-15 00:01:33 +00:00
figsoda
cf0caf529c
Merge pull request #133616 from q60/master
profetch: init at 0.1.6
2021-09-14 17:38:45 -04:00
Benjamin Asbach
a5d5f32f90 csvs-to-sqlite: added override for click dependency to version 7 in order to fix build
The application is not capable to build with `click` greate than version `7`.
2021-09-14 14:05:49 -06:00
Benjamin Asbach
ac74b42351 csvs-to-sqlite: removed from python-package since it's an command line application 2021-09-14 09:14:33 -06:00
Harsh Shandilya
b2ec5cb0bd
fclones: add support for Darwin builds 2021-09-14 18:06:53 +05:30
github-actions[bot]
df9a7e8f43
Merge staging-next into staging 2021-09-14 12:01:39 +00:00
github-actions[bot]
6f038e8b11
Merge master into staging-next 2021-09-14 12:01:03 +00:00
happysalada
73f18436e7 meilisearch: enable flake usage 2021-09-14 18:23:03 +09:00
figsoda
09def9cc2f nomino: init at 1.1.0 2021-09-13 19:53:09 -04:00
github-actions[bot]
04e48fbe4f
Merge staging-next into staging 2021-09-13 18:01:51 +00:00
github-actions[bot]
ce44d09c85
Merge master into staging-next 2021-09-13 18:01:17 +00:00
adisbladis
fcf5397793
Merge pull request #135905 from dukc/secondDmd2097
D compiler update
2021-09-13 11:36:55 -05:00
github-actions[bot]
9e81e3af7f
Merge staging-next into staging 2021-09-13 12:01:47 +00:00
Pierre Bourdon
34d91e675b
ntttcp: init at 1.4.0 2021-09-13 13:57:04 +02:00
Vladimír Čunát
28b6a91047
libssh2: temporarily add separate 1.10.0
This is an attempt to side-step broken builtins.fetchurl and get
this tarball into cache, so that staging rebuild might proceed.
2021-09-13 11:27:50 +02:00
Ilan Joselevich
b417e6ec80 ristate: init at unstable-2021-09-10 2021-09-13 10:57:40 +03:00
Florian Klink
8019c95b55
Merge pull request #131618 from andir/systemdv249
systemd v249
2021-09-13 09:39:49 +02:00
Tom Fitzhenry
d4726d156e clapper: init at 0.4 2021-09-13 13:19:54 +10:00
github-actions[bot]
dfd1161f35
Merge staging-next into staging 2021-09-13 00:02:22 +00:00
github-actions[bot]
ac962ee61a
Merge master into staging-next 2021-09-13 00:01:41 +00:00
Sandro
a79648dd7f
Merge pull request #136109 from john-consumable/master 2021-09-13 00:42:54 +02:00
Andreas Rammhold
64556974b6
systemd: 247.6 -> 249.4
This updates systemd to version v249.4 from version v247.6.

Besides the many new features that can be found in the upstream
repository they also introduced a bunch of cleanup which ended up
requiring a few more patches on our side.

a) 0022-core-Handle-lookup-paths-being-symlinks.patch:
  The way symlinked units were handled was changed in such that the last
  name of a unit file within one of the unit directories
  (/run/systemd/system, /etc/systemd/system, ...) is used as the name
  for the unit. Unfortunately that code didn't take into account that
  the unit directories themselves could already be symlinks and thus
  caused all our units to be recognized slightly different.

  There is an upstream PR for this new patch:
    https://github.com/systemd/systemd/pull/20479

b) The way the APIVFS is setup has been changed in such a way that we
   now always have /run. This required a few changes to the
   confinement tests which did assert that they didn't exist. Instead of
   adding another patch we can just adopt the upstream behavior. An
   empty /run doesn't seem harmful.

   As part of this work I refactored the confinement test just a little
   bit to allow better debugging of test failures. Previously it would
   just fail at some point and it wasn't obvious which of the many
   commands failed or what the unexpected string was. This should now be
   more obvious.

c) Again related to the confinement tests the way a file was tested for
   being accessible was optimized. Previously systemd would in some
   situations open a file twice during that check. This was reduced to
   one operation but required the procfs to be mounted in a units
   namespace.

   An upstream bug was filed and fixed. We are now carrying the
   essential patch to fix that issue until it is backported to a new
   release (likely only version 250). The good part about this story is
   that upstream systemd now has a test case that looks very similar to
   one of our confinement tests. Hopefully that will lead to less
   friction in the long run.

   https://github.com/systemd/systemd/issues/20514
   https://github.com/systemd/systemd/pull/20515

d) Previously we could grep for dlopen( somewhat reliably but now
   upstream started using a wrapper around dlopen that is most of the
   time used with linebreaks. This makes using grep not ergonomic
   anymore.

   With this bump we are grepping for anything that looks like a
   dynamic library name (in contrast to a dlopen(3) call) and replace
   those instead. That seems more robust. Time will tell if this holds.

   I tried using coccinelle to patch all those call sites using its
   tooling but unfornately it does stumble upon the _cleanup_
   annotations that are very common in the systemd code.

e) We now have some machinery for libbpf support in our systemd build.
   That being said it doesn't actually work as generating some skeletons
   doesn't work just yet. It fails with the below error message and is
   disabled by default (in both minimal and the regular build).

   > FAILED: src/core/bpf/socket_bind/socket-bind.skel.h
   > /build/source/tools/build-bpf-skel.py --clang_exec /nix/store/x1bi2mkapk1m0zq2g02nr018qyjkdn7a-clang-wrapper-12.0.1/bin/clang --llvm_strip_exec /nix/store/zm0kqan9qc77x219yihmmisi9g3sg8ns-llvm-12.0.1/bin/llvm-strip --bpftool_exec /nix/store/l6dg8jlbh8qnqa58mshh3d8r6999dk0p-bpftools-5.13.11/bin/bpftool --arch x86_64 ../src/core/bpf/socket_bind/socket-bind.bpf.c src/core/bpf/socket_bind/socket-bind.skel.h
   > libbpf: elf: socket_bind_bpf is not a valid eBPF object file
   > Error: failed to open BPF object file: BPF object format invalid
   > Traceback (most recent call last):
   >   File "/build/source/tools/build-bpf-skel.py", line 128, in <module>
   >     bpf_build(args)
   >   File "/build/source/tools/build-bpf-skel.py", line 92, in bpf_build
   >     gen_bpf_skeleton(bpftool_exec=args.bpftool_exec,
   >   File "/build/source/tools/build-bpf-skel.py", line 63, in gen_bpf_skeleton
   >     skel = subprocess.check_output(bpftool_args, universal_newlines=True)
   >   File "/nix/store/81lwy2hfqj4c1943b1x8a0qsivjhdhw9-python3-3.9.6/lib/python3.9/subprocess.py", line 424, in check_output
   >     return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
   >   File "/nix/store/81lwy2hfqj4c1943b1x8a0qsivjhdhw9-python3-3.9.6/lib/python3.9/subprocess.py", line 528, in run
   >     raise CalledProcessError(retcode, process.args,
   > subprocess.CalledProcessError: Command '['/nix/store/l6dg8jlbh8qnqa58mshh3d8r6999dk0p-bpftools-5.13.11/bin/bpftool', 'g', 's', '../src/core/bpf/socket_bind/socket-bind.bpf.o']' returned non-zero exit status 255.
   > [102/1457] Compiling C object src/journal/libjournal-core.a.p/journald-server.c.oapture output)put)ut)
   > ninja: build stopped: subcommand failed.

  f) We do now have support for TPM2 based disk encryption in our
     systemd build. The actual bits and pieces to make use of that are
     missing but there are various ongoing efforts in that direction.
     There is also the story about systemd in our initrd to enable this
     being used for root volumes. None of this will yet work out of the
     box but we can start improving on that front.

  g) FIDO2 support was added systemd and consequently we can now use
     that. Just with TPM2 there hasn't been any integration work with
     NixOS and instead this just adds that capability to work on that.

Co-Authored-By: Jörg Thalheim <joerg@thalheim.io>
2021-09-12 23:45:49 +02:00
Sandro
283a9f5ff9
Merge pull request #137552 from dotlambda/watson-packageOverrides
watson: use packageOverrides
2021-09-12 23:10:24 +02:00
Sandro
b3e4cd40a8
Merge pull request #137562 from OPNA2608/fix/corrscope-ffmpeg/21.11 2021-09-12 22:23:32 +02:00
Sandro
e4b50b4821
Merge pull request #66415 from ToxicFrog/crossfire 2021-09-12 22:13:02 +02:00
OPNA2608
271b6edba2 corrscope: Fix ffmpeg package to ffmpeg-full
Otherwise it complains about missing ffplay.
2021-09-12 21:39:47 +02:00
github-actions[bot]
fef6f602e6
Merge staging-next into staging 2021-09-12 18:01:50 +00:00
github-actions[bot]
a13bf1828b
Merge master into staging-next 2021-09-12 18:01:21 +00:00
Robert Schütz
55130d56aa watson: use packageOverrides 2021-09-12 10:29:38 -07:00
Matthieu Coudron
ab9c7819fe
Merge pull request #136615 from teto/lua-flat
Various lua changes/cleanup
2021-09-12 18:08:53 +02:00
Sandro
c80b1155c9
Merge pull request #137528 from humancalico/hubble
hubble: init at 0.8.2
2021-09-12 16:14:50 +02:00
Sandro
d63f340344
Merge pull request #128669 from mikroskeem/quakespasm-darwin 2021-09-12 16:12:36 +02:00
Pavol Rusnak
a51701e3f3
android-backup-extractor: init at 20210909062443-4c55371 (#137516)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-09-12 16:02:56 +02:00
Sandro
da7fd2fdad
Merge pull request #137449 from mattchrist/init-stuntman
stuntman: init at 1.2.16
2021-09-12 16:01:37 +02:00
Sandro
4a56ed7a78
Merge pull request #137447 from mikroskeem/eduke32-macos 2021-09-12 15:58:08 +02:00
Akshat Agarwal
688b9b65cb hubble: init at 0.8.2 2021-09-12 19:00:42 +05:30
Matt Christ
1d8bdf5389 stuntman: init at 1.2.16 2021-09-12 08:22:04 -05:00
Sandro
0d40f713be
Merge pull request #137521 from SuperSandro2000/openems
openems: fix eval
2021-09-12 15:06:31 +02:00
Mark Vainomaa
1dc56f1dc8
quakespasm: add SDL2 support; add Darwin support 2021-09-12 15:48:58 +03:00
Sandro Jäckel
e4a49641ae
openems: fix eval 2021-09-12 14:45:44 +02:00
Mark Vainomaa
8112bb92f9
eduke32: implement proper macOS support 2021-09-12 15:16:20 +03:00
github-actions[bot]
7267016c66
Merge staging-next into staging 2021-09-12 12:01:42 +00:00
github-actions[bot]
acd45cb351
Merge master into staging-next 2021-09-12 12:01:10 +00:00
Sandro
e26b155274
Merge pull request #137444 from SuperSandro2000/wicd
treewide: yank wicd as it is abandoned
2021-09-12 12:56:10 +02:00
markuskowa
b4114db313
Merge pull request #137133 from x3rAx/linux-router-0.6.2
linux-router: init at 0.6.2
2021-09-12 12:46:29 +02:00
Maximilian Bosch
13d9d33375
Merge pull request #135206 from feijoas/zfs_autobackup
zfs-autobackup: init at 3.1
2021-09-12 12:27:07 +02:00
^x3ro
f6211582a1 linux-router: init at 0.6.2
Squashed commits:

- Give wrapped executable a nicer name

  The filename of the wrapped binary is used to generate usage examples in
  `--help`. The `wrapProgram` command renames the executable to a hidden
  file and appends `-wrapped` this is then shown in the usage example:

  ```
  Usage: .lnxrouter-wrapped <options>
  ```

- Using `makeWrapper` the executable can be moved to another directory but
  can keep it's oroginal name.

- Replace alias with real package name

- Fix variable name

- Import `makeWrapper` directly instead of importing `pkgs`

  Co-authored-by: markuskowa <markus.kowalewski@gmail.com>

- Move `let` to where it is actually used

- Do not set optional packages `null`

- Remove `name` property

  Co-authored-by: markuskowa <markus.kowalewski@gmail.com>

- Quote url

  Co-authored-by: markuskowa <markus.kowalewski@gmail.com>

- Remove additional link in long description

- Remove unnecessary comment

  Co-authored-by: markuskowa <markus.kowalewski@gmail.com>

- Place optional packages below their respective `use*`

- Shorten description

  See discussion:
  https://github.com/NixOS/nixpkgs/pull/137133#discussion_r705230260

- FIX: Remove duplicate description

- Remove empty line

  Co-authored-by: markuskowa <markus.kowalewski@gmail.com>

- Make packages section more compact

- Make wifi dependencies optional

- Add package without wifi dependencies

- Fix indentation

  Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

- Use `with lib` only where it is needed

  Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-09-12 10:13:27 +02:00
github-actions[bot]
3d192af340
Merge staging-next into staging 2021-09-12 06:01:33 +00:00
github-actions[bot]
45de5d0c9a
Merge master into staging-next 2021-09-12 06:01:00 +00:00
zowoq
a8bd9dcd7c cni-plugin-flannel: move to flannel directory 2021-09-12 12:47:45 +10:00
Matthieu Coudron
0b6d33c2ed prosody: simplify lua aspects 2021-09-12 03:02:55 +02:00
happysalada
bdda9a2ed5 bash: 4.4 -> 5.1 2021-09-12 09:48:54 +09:00
Matthieu Coudron
823d0d835c vis: simplify thanks to lua update 2021-09-12 02:21:57 +02:00
github-actions[bot]
8bc930ca39
Merge staging-next into staging 2021-09-12 00:02:23 +00:00
github-actions[bot]
3f2255106a
Merge master into staging-next 2021-09-12 00:01:45 +00:00
Sandro
c86990a7ce
Merge pull request #137183 from figsoda/oha
oha: init at 0.4.6
2021-09-12 01:03:30 +02:00
John Soo
818cabf53b datadog-agent: Don't use invoke during build. 2021-09-11 15:32:14 -07:00
Sandro
3020eb851a
Merge pull request #137440 from figsoda/textplots 2021-09-12 00:29:56 +02:00
Sandro
5d73513422
Merge pull request #137089 from rnhmjoj/scc-python3
sc-controller: switch to python3 fork
2021-09-11 23:53:43 +02:00
Sandro Jäckel
781766e30c
treewide: yank wicd as it is abandoned 2021-09-11 23:46:52 +02:00
rnhmjoj
f74154a4b9
sc-controller: switch to python3 fork
The original sc-controller is being rewritten in C, while the current
version is stuck in maintenance mode and python 2. This fork is based
entirely on the original kozec's sc-controller and introduces python 3
support while staying backward-compatible (including versioning up to
the patch number).
2021-09-11 23:31:24 +02:00
Timothy DeHerrera
9f761047cc
Merge pull request #137425 from SuperSandro2000/typora
typora: remove
2021-09-11 15:28:20 -06:00
Timothy DeHerrera
0171610faa
Merge pull request #73712 from virusdave/dnicponski/scratch/add_substitute_nix_support
substitute: init at 0
2021-09-11 15:21:40 -06:00
Sandro
5c112b96ef
Merge pull request #130824 from k4leg/ventoy-bin-init-at-1.0.47
ventoy-bin: init at 1.0.51
2021-09-11 22:57:12 +02:00
wahjava
62cc1f90e5
cni-plugin-flannel: init at 20210910 (#137412)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-09-11 22:55:55 +02:00
figsoda
3dde4fd38b textplots: init at 0.8.0 2021-09-11 16:55:35 -04:00
Sandro
a4156f2b86
Merge pull request #136806 from cyounkins/maintainers_cyounkins 2021-09-11 22:45:19 +02:00
Sandro
a05ed53b2c
Merge pull request #137254 from samalws/master
wike: init at 1.5.6
2021-09-11 21:55:21 +02:00
Sandro
eb8003fcea
Merge pull request #137315 from yusdacra/add-airshipper
airshipper: init at 0.6.0
2021-09-11 21:51:14 +02:00
Sandro
b8347941fe
Merge pull request #137201 from figsoda/joshuto
joshuto: init at 0.9.0
2021-09-11 21:27:44 +02:00
Sandro
71d1c64931
Merge pull request #137368 from SuperSandro2000/openstack 2021-09-11 21:12:01 +02:00
Sandro
475bc9b75c
Merge pull request #136961 from Izorkin/init-termdbms
termdbms: init at 2021-09-04
2021-09-11 21:08:14 +02:00
Sandro
c175458f3c
Merge pull request #137145 from figsoda/texture-synthesis 2021-09-11 21:06:29 +02:00
Sandro
61d2ef558d
Merge pull request #137319 from CameronNemo/loksh 2021-09-11 20:59:08 +02:00
Sandro Jäckel
bd763298ed
typora: remove 2021-09-11 20:55:40 +02:00
Sandro
c78df44cfb
Merge pull request #137407 from SuperSandro2000/gofu 2021-09-11 20:36:29 +02:00
figsoda
ebc030ce75 joshuto: init at 0.9.0 2021-09-11 14:23:31 -04:00
github-actions[bot]
d370d9ee99
Merge staging-next into staging 2021-09-11 18:01:51 +00:00
github-actions[bot]
c435b0e35f
Merge master into staging-next 2021-09-11 18:01:16 +00:00
Sam Alws
7fad7281d8 wike: init at 1.5.6 2021-09-11 13:51:43 -04:00
Sandro
f6e9e908cc
Merge pull request #136737 from SuperSandro2000/tauon 2021-09-11 19:33:16 +02:00
Yusuf Bera Ertan
3935d8a9d2
airshipper: init at 0.6.0 2021-09-11 20:21:05 +03:00
Sandro Jäckel
50d04198ca
gofu: init at unstable-2021-09-11 2021-09-11 19:03:48 +02:00
Sandro Jäckel
7b4c9f880f
python39Packages.python-openstackclient: init at 5.6.0 2021-09-11 19:02:32 +02:00
Sandro
1b6e16479b
Merge pull request #137218 from figsoda/verco
verco: init at 6.4.0
2021-09-11 18:12:15 +02:00
Artturi
0f05da42d6
Merge pull request #136897 from pshirshov/br9020cdw 2021-09-11 19:10:12 +03:00
Cameron Nemo
3303ff68f2 loksh: init at 6.9 2021-09-11 09:09:47 -07:00
Pavel Shirshov
bc4d8649d9 dcp9020cdw{lpr,-cupswrapper}: init at 1.1.2 2021-09-11 16:52:10 +01:00
Sandro
7c27cd6b3f
Merge pull request #137031 from fabaff/python-gvm 2021-09-11 17:19:01 +02:00
Sandro
ddd436dac7
Merge pull request #137230 from figsoda/menyoki 2021-09-11 16:56:25 +02:00
David
98bfb51d00 erlang: make systemd optional, add pkgs.beam_minimal 2021-09-11 23:11:17 +09:00
github-actions[bot]
ff5297bcd3
Merge staging-next into staging 2021-09-11 12:01:45 +00:00
github-actions[bot]
4170ee273c
Merge master into staging-next 2021-09-11 12:01:12 +00:00
Kevin Cox
fff9593c7a
Merge pull request #136716 from kevincox/mautrix-facebook
mautrix-facebook: init at 0.3.1
2021-09-11 07:43:17 -04:00
Sandro
201d7f6aaf
Merge pull request #137309 from colemickens/master
nix-direnv-flakes: add alias to flake-enabled nix-direnv
2021-09-11 13:25:35 +02:00
Sandro
9d464af4c1
Merge pull request #136103 from vale981/init_build2 2021-09-11 13:00:23 +02:00
Alyssa Ross
56314db098
Merge remote-tracking branch 'nixpkgs/master' into staging-next
Conflicts:
	pkgs/development/compilers/ghc/8.10.7.nix
	pkgs/development/compilers/ghc/8.8.4.nix

I've removed the isWindows check from useLdGold in ghc, since that should
be covered by the new hasGold check.
2021-09-11 10:49:13 +00:00
Jörg Thalheim
f2f8e28220
Merge pull request #137348 from lukegb/staging-next-crev
cargo-crev: 0.19.4 -> 0.20.1
2021-09-11 10:10:37 +01:00
Jan Tojnar
c02f17c64b
Merge pull request #134007 from angustrau/fragments
fragments: init at 1.5
2021-09-11 11:06:25 +02:00
Valentin Boettcher
b3fd09e93b build2: init at 0.13.0
Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: figsoda <figsoda@pm.me>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: figsoda <figsoda@pm.me>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: Bobby Rong <rjl931189261@126.com>

fix mac build and skip phases properly

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>

Update pkgs/development/tools/build-managers/build2/default.nix

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
2021-09-11 10:34:10 +02:00
Fabian Affolter
88b74221f8
Merge pull request #137134 from fabaff/gvm-libs
gvm-libs: init at 21.4.1
2021-09-11 08:48:07 +02:00
Jörg Thalheim
d5bdbc676a
Merge pull request #137198 from alyssais/rust_1_55
rust: 1.54.0 -> 1.55.0
2021-09-11 07:15:23 +01:00
github-actions[bot]
6188f2aeeb
Merge staging-next into staging 2021-09-11 06:01:28 +00:00
Luke Granger-Brown
2ff702e937 cargo-crev: 0.19.4 -> 0.20.1
Fixes build: https://hydra.nixos.org/build/152282553
2021-09-11 05:27:14 +01:00
Mario Rodas
144b3d064e
Merge pull request #137251 from marsam/init-sqls
sqls: init at 0.2.19
2021-09-10 23:02:35 -05:00
zowoq
9675a865c9 buildGo117{Module,Package}: disable, go_1_17: disable on x86_64-darwin 2021-09-11 10:44:23 +10:00
zowoq
273ff5cf17 go_1_17: init at 1.17.1 2021-09-11 10:44:23 +10:00
Martin Weinelt
bae10ead99 Merge remote-tracking branch 'origin/master' into staging-next 2021-09-11 02:29:58 +02:00
Kevin Cox
2f1631a603
mautrix-facebook: init at 0.3.1 2021-09-10 19:54:47 -04:00
Guillaume Girol
330090f6c8
Merge pull request #136052 from r-burns/fossil
fossil: 2.15.1 -> 2.16
2021-09-10 19:57:48 +00:00
Guillaume Girol
1065a41d8d
Merge pull request #136369 from veprbl/pr/root5_gcc10_fix
root5: fix for gcc10
2021-09-10 19:54:29 +00:00
Guillaume Girol
1d745e3faa
Merge pull request #136012 from r-burns/srtp-meson
[staging] srtp: 2.3.0 -> 2.4.0, switch to meson
2021-09-10 19:52:08 +00:00
Cole Mickens
462070bddf
nix-direnv-flakes: alias flake-enabled nix-direnv 2021-09-10 12:23:50 -07:00
github-actions[bot]
36ce45efae
Merge master into staging-next 2021-09-10 18:01:17 +00:00
Sandro
f063d163d6
Merge pull request #137285 from figsoda/cargo-sort 2021-09-10 19:48:49 +02:00
Sandro
cc3184940f
Merge pull request #136091 from TravisDavis-ops/nhentai 2021-09-10 19:07:15 +02:00
figsoda
7417fada6b cargo-sort: init at 1.0.5 2021-09-10 10:40:51 -04:00
Martin Weinelt
d9341eafa2
Merge branch 'master' into staging-next 2021-09-10 15:04:01 +02:00
Michael Raskin
0a87ed8170
Merge pull request #137110 from sternenseemann/sbcl-2.1.8
sbcl_2_1_8: init at 2.1.8
2021-09-10 12:42:41 +00:00
figsoda
712f00a9a1 menyoki: init at 1.5.3 2021-09-10 08:23:39 -04:00
Alyssa Ross
28a97eab19
rust: 1.54.0 -> 1.55.0 2021-09-10 09:26:43 +00:00
Fabian Affolter
c678e050c1
Merge pull request #136617 from fabaff/checkip
checkip: init at 0.2.2
2021-09-10 10:55:14 +02:00
Fabian Affolter
de58215164
Merge pull request #136613 from fabaff/kubescape
kubescape: init at 1.0.64
2021-09-10 10:54:26 +02:00
Fabian Affolter
decc15443e
Merge pull request #136611 from fabaff/oshka
oshka: init at 0.4.0
2021-09-10 10:50:51 +02:00
Fabian Affolter
ce2188492f
Merge pull request #136813 from fabaff/dorkscout
dorkscout: init at 1.0
2021-09-10 10:49:00 +02:00
Fabian Affolter
47caf58b2c python3Packages.gvm-tools: init at 21.6.1 2021-09-10 10:46:17 +02:00
github-actions[bot]
3f7ad651c7
Merge master into staging-next 2021-09-10 06:01:06 +00:00
Anderson Torres
45d44fb1a1
Merge pull request #137142 from AndersonTorres/new-asm
Assemblers for 8-bit chips
2021-09-09 22:36:47 -03:00
AndersonTorres
8d06eef655 atasm: init at 1.09 2021-09-09 17:48:34 -03:00
Sandro Jäckel
9141083ab1
python39Packages.python-swiftclient: 3.11.0 -> 3.12.0, convert to python packages 2021-09-09 22:35:16 +02:00
figsoda
0ec70102dd verco: init at 6.4.0 2021-09-09 15:37:33 -04:00
figsoda
7c14722201 oha: init at 0.4.6 2021-09-09 10:03:45 -04:00
github-actions[bot]
fc5d1c0828
Merge master into staging-next 2021-09-09 12:01:24 +00:00
Pamplemousse
d61ba9863c nodePackages.prisma: init at 2.30.2 2021-09-09 20:42:53 +09:00
Fabian Affolter
68590abf42
Merge pull request #137148 from figsoda/tv
tv: init at 0.5.1
2021-09-09 13:42:16 +02:00
Fabian Affolter
793a106992
Merge pull request #137143 from figsoda/csview
csview: init at 0.3.8
2021-09-09 13:22:02 +02:00
Fabian Affolter
2ec7f7bde3
Merge pull request #137150 from figsoda/mask
mask: init at 0.11.0
2021-09-09 10:09:27 +02:00
github-actions[bot]
77893d86c2
Merge master into staging-next 2021-09-09 06:01:04 +00:00
figsoda
5c002b979b mask: init at 0.11.0 2021-09-08 22:50:15 -04:00
figsoda
52731e1d01 tv: init at 0.5.1 2021-09-08 21:35:11 -04:00
figsoda
2972c7a670 texture-synthesis: init at 0.8.2 2021-09-08 21:13:18 -04:00
figsoda
90ec05be8f csview: init at 0.3.8 2021-09-08 20:56:13 -04:00
Ben Siraphob
4b775423a7
Merge pull request #137115 from siraben/all-packages-redundant-pkgs 2021-09-08 19:21:18 -05:00
Luke Granger-Brown
b913568092 linux_5_13_hardened: port to linux-kernels.nix
See c62f911507 aka #128134.
2021-09-08 22:53:09 +00:00
Fabian Affolter
f80b0fd0a8 gvm-libs: init at 21.4.1 2021-09-08 23:36:28 +02:00
Craig Younkins
e5880bd760 fclones: init at 0.14.0 2021-09-08 17:14:49 -04:00
Ben Siraphob
889fb37036 top-level/all-packages: remove redundant pkgs 2021-09-08 13:27:57 -05:00
github-actions[bot]
31efc58eb0
Merge master into staging-next 2021-09-08 18:01:03 +00:00
Bernardo Meurer
739c25621f
Merge pull request #136445 from lovesegfault/rocm-hip
hip: init at 4.3.1
2021-09-08 10:45:57 -07:00
Ben Siraphob
09cd65b33c
Merge pull request #137071 from siraben/spoof-mac-init 2021-09-08 11:21:07 -05:00
sternenseemann
05020744fb sbcl_2_1_8: init at 2.1.8 2021-09-08 16:38:09 +02:00
Nikita Uvarov
05e3b77afc
puppet-bolt: init at 3.17.0 2021-09-08 14:41:01 +02:00
github-actions[bot]
5ed67a849a
Merge master into staging-next 2021-09-08 12:01:27 +00:00
ryneeverett
3e9f6d7e99
exaile: init at 4.1.1 (#120761) 2021-09-08 06:07:28 -04:00
John Soo
f2d81d2484 datadog-agent: 6.11.2 -> 7.30.2
datadog-agent is now built as a go module.  However, the build process
is now to be driven by the python invoke tool.  While datadog-agent
builds with buildGoModule, some investigation should be done to ensure
we are not missing any integrations or features from the invoke build
system.

This also updates datadog-agent from python 2.7 to 3.x.

One other issue of note: most of the invoke tasks seem to use some git
parsing to get version numbers and the like. This package may need to
be checked for reproducibility issues now.
2021-09-07 23:52:22 -07:00
github-actions[bot]
ad1de317ad
Merge master into staging-next 2021-09-08 06:01:19 +00:00
Ben Siraphob
21cb9e808d spoof-mac: init at unstable-2018-01-27 2021-09-08 00:51:17 -05:00
Ben Siraphob
2d6b693907
Merge pull request #137064 from siraben/htmlq-init 2021-09-08 00:42:09 -05:00
Ben Siraphob
29d262cf7f htmlq: init at 0.2.0 2021-09-08 00:30:13 -05:00
Akshat Agarwal
7f08484820 libspng: init at 0.7.0-rc3 2021-09-08 12:50:47 +09:00
figsoda
7caefdd073 luaformatter: fix darwin build 2021-09-08 10:22:39 +09:00
Sandro Jäckel
76a0ad1833
tauon: init at 6.7.1 2021-09-08 02:27:00 +02:00
Tim Steinbach
8bb040b34c linux_5_13_hardened: Init 2021-09-07 20:15:06 -04:00
github-actions[bot]
58f8f1f058
Merge master into staging-next 2021-09-08 00:01:42 +00:00
Ryan Mulligan
a83b9d3a58
Merge pull request #136500 from ryantm/dev/ryantm/mylvmbackup
mylvmbackup: init at 0.16
2021-09-07 14:06:10 -07:00
Izorkin
4f665d9f4f
termdbms: init at 2021-09-04 2021-09-07 17:26:48 +03:00
Ryan Burns
42155910a0 pkgsStatic.curl: fix build
904625852d removed the overlay which
disables gss and brotli for static curl. Although we can now build them
statically, attempting to build curl against them results in 'undefined
reference' linker errors.
2021-09-07 16:48:03 +09:00
Vladimír Čunát
09f5763784
Merge branch 'master' into staging-next
Conflicts:
 - pkgs/development/python-modules/pathspec/default.nix
   The hashes are equivalent, so it's not a real conflict.
 - pkgs/top-level/static.nix
   I can't see a solution, deffered redoing this to the later PR:
   https://github.com/NixOS/nixpkgs/pull/136849
2021-09-07 08:43:26 +02:00
midchildan
21a7695b8a mirakurun: build with yarn2nix 2021-09-07 12:22:59 +09:00
Jörg Thalheim
c3bf66eeaa
Merge pull request #136910 from kira-bruneau/protontricks
protontricks: 1.5.2 → 1.6.0
2021-09-07 03:27:09 +01:00
Anderson Torres
674586d428
Merge pull request #136744 from AndersonTorres/new-st
A plethora of ST forks
2021-09-06 23:00:17 -03:00
github-actions[bot]
2f5ea43e02
Merge master into staging-next 2021-09-07 00:01:32 +00:00
Artturi
03021c522f
Merge pull request #136929 from Artturin/calamaresupdate
calamares: 3.2.39 -> 3.2.42
2021-09-07 02:08:16 +03:00
Izorkin
5df4645b39
gitty: init at 0.3.0 2021-09-07 01:02:24 +03:00
Artturin
6ea3694fd0 calamares: 3.2.39 -> 3.2.42 2021-09-06 23:26:17 +03:00
Bernardo Meurer
d9de842f58
Merge pull request #136372 from cpcloud/poetry2conda
poetry2conda: init at 0.3.0
2021-09-06 12:23:31 -07:00
Bernardo Meurer
75125b85d0
hip: init at 4.3.1
Co-Authored-By: acowley <acowley@users.noreply.github.com>
2021-09-06 12:01:57 -07:00
Sandro
84bf8623f7
Merge pull request #136735 from SuperSandro2000/libopenmtp 2021-09-06 20:07:11 +02:00
Kira Bruneau
2df0c2aae5 protontricks: 1.5.2 → 1.6.0 2021-09-06 11:43:54 -04:00
Fabian Affolter
38116932f7 dorkscout: init at 1.0 2021-09-06 09:05:36 +02:00
AndersonTorres
2312cef179 lukesmithxyz-st: init at 0.0.0+unstable=2021-08-10 2021-09-06 00:18:26 -03:00
AndersonTorres
ae19d5c68b as31: init at 2.3.1 2021-09-05 23:22:37 -03:00
github-actions[bot]
79667a59e7
Merge master into staging-next 2021-09-06 00:01:28 +00:00
Phillip Cloud
b27bd16bd9
poetry2conda: init at 0.3.0 2021-09-05 19:06:50 -04:00
Ben Siraphob
6b30660ee1
Merge pull request #136814 from siraben/git-cliff-init
git-cliff: init at 0.2.6
2021-09-05 17:50:37 -05:00
Fabian Affolter
1a83596928
Merge pull request #136663 from fabaff/sad
sad: init at 0.4.14
2021-09-06 00:04:52 +02:00
Ben Siraphob
f1312d514d git-cliff: init at 0.2.6 2021-09-05 16:16:35 -05:00
Ben Darwin
4c3d4d963b intensity-normalization: init at 2.0.1 2021-09-05 14:06:28 -04:00
github-actions[bot]
75dc00dbd8
Merge master into staging-next 2021-09-05 18:00:57 +00:00
Vladimír Čunát
1c866bd1ae
Merge #135672: LuaJIT: bump, fix issue with pcall 2021-09-05 16:43:30 +02:00
Sandro Jäckel
fe734dd3bb kupfer: no longer use python36Packages 2021-09-05 15:01:19 +02:00