Commit Graph

11017 Commits

Author SHA1 Message Date
github-actions[bot]
19e8f1b28f
Merge master into staging-next 2021-09-29 18:01:07 +00:00
Jan Tojnar
3d5fb8d473
Merge pull request #138963 from jtojnar/sharedown
sharedown: init at 2.0.0
2021-09-29 18:44:21 +02:00
Mario Rodas
a6cbe8893c pspg: install bash completions 2021-09-29 10:57:04 -05:00
Ryan Horiguchi
636a411069
neofetch: apply patch to fix neofetch returning wrong icon theme 2021-09-29 14:08:24 +02:00
github-actions[bot]
7b44c44972
Merge master into staging-next 2021-09-28 18:01:02 +00:00
Fabian Affolter
fd7f7bd0ca time-decode: init at 3.2.0 2021-09-28 16:56:14 +02:00
Sandro
ad2fec7cc0
Merge pull request #139740 from mweinelt/esphome 2021-09-28 14:14:21 +02:00
figsoda
7affc06dae
Merge pull request #137833 from j-hui/viddy
viddy: init at 0.2.1
2021-09-28 08:02:25 -04:00
Martin Weinelt
afe7bbe071
esphome: 2021.9.1 -> 2021.9.2 2021-09-28 12:54:23 +02:00
j-hui
50e10fe084 viddy: init at 0.3.1 2021-09-27 22:59:24 -04:00
github-actions[bot]
a70629a8e5
Merge master into staging-next 2021-09-27 18:01:07 +00:00
Profpatsch
843dca38b8 fdtools: pin to older skalibs version
fdtools hasn’t caught up with skalibs yet.

We also add a revdep test that alerts us in the future if a skalibs
bumb breaks fdtools again.
2021-09-27 14:28:43 +02:00
Profpatsch
bf33c0e62e skawarePackages: Fall 2021 release
Maintainers Notes below.

~~~

 Hello,

 New versions of all the skarnet.org packages are available.

 skalibs has undergone a major update, with a few APIs having disappeared,
and others having changed. Compatibility with previous versions is  *not*
assured.
 Consequently, all the rest of the skarnet.org software has undergone
at least a release bump, in order to build with the new skalibs. But
some packages also have new functionality added (hence, a minor bump),
and others also have their own incompatible changes (hence, a major bump).

 The new versions are the following:

skalibs-2.11.0.0          (major)
nsss-0.2.0.0              (major)
utmps-0.1.0.3             (release)
execline-2.8.1.0          (minor)
s6-2.11.0.0               (major)
s6-rc-0.5.2.3             (release)
s6-portable-utils-2.2.3.3 (release)
s6-linux-utils-2.5.1.6    (release)
s6-linux-init-1.0.6.4     (release)
s6-dns-2.3.5.2            (release)
s6-networking-2.5.0.0     (major)
mdevd-0.1.5.0             (minor)
bcnm-0.0.1.4              (release)
dnsfunnel-0.0.1.2         (release)

Additionally, a new package has been released:
smtpd-starttls-proxy-0.0.1.0

 Dependencies have all been updated to the latest versions. They are,
this time, partially strict: libraries and binaries may build with older
releases of their dependencies, but not across major version bumps. The
safest approach is to upgrade everything at the same time.

 You do not need to recompile your s6-rc service databases or recreate
your s6-linux-init run-images.
 You should restart your supervision tree after upgrading skalibs and s6,
as soon as is convenient for you.

 Details of major and minor package changes follow.

* skalibs-2.11.0.0
  ----------------

 - A lot of obsolete or useless functionality has been removed:
libbiguint, rc4, md5, iobuffer, skasigaction, environ.h and
getpeereid.h headers, various functions that have not proven their
value in a while.
 - Some functions changed signatures or changed names, or both.
 - All custom types ending in _t have been renamed, to avoid treading on
POSIX  namespace. (The same change has not been done yet in other
packages,  but skalibs was the biggest offender by far.)
 - Signal functions have been deeply reworked.
 - cdb has been reworked, the API is now more user-friendly.
 - New functions have been added.

 The deletion of significant portions of code has made skalibs leaner.
libskarnet.so has dropped under 190 kB on x86_64.
 The cdb rewrite on its own has helped reduce an important amount of
boilerplate in cdb-using code.
 All in all, code linked against the new  skalibs should be slightly
smaller and use a tiny bit less RAM.

 https://skarnet.org/software/skalibs/
 git://git.skarnet.org/skalibs

* nsss-0.2.0.0
  ------------

 - Bugfixes.
 - nsss-switch wire protocol slightly modified, which is enough to
warrant a major version bump.
 - _r functions are now entirely thread-safe.
 - Spawned nsssd programs are now persistent and only expire after a
timeout on non-enumeration queries. This saves a lot of forking with
applications that can call  primitives such as getpwnam() repeatedly, as
e.g. mdevd does when  initially parsing its configuration file.
 - New nsssd-switch program, implementing real nsswitch functionality
by dispatching queries to various backends according to a script.
It does not dlopen a single library or read a single config file.

 https://skarnet.org/software/nsss/
 git://git.skarnet.org/nsss

* execline-2.8.1.0
  ----------------

 - Bugfixes.
 - New binary: case. It compares a value against a series of regular
expressions, executing into another command line on the first match.

 https://skarnet.org/software/execline/
 git://git.skarnet.org/execline

* s6-2.11.0.0
  -----------

 - Bugfixes.
 - Some libs6 header names have been simplified.
 - s6-svwait now accepts -r and -R options.
 - s6-supervise now reads an optional lock-fd file in the service
directory; if it finds one, the first action of the service is to take
a blocking lock. This prevents confusion when a controller process dies
while still leaving workers holding resources; it also prevents log
spamming on user mistakes (autobackgrounding services, notably).
 - New binaries: s6-socklog, s6-svlink, s6-svunlink. The former is a
rewrite of smarden.org's socklog program, in order to implement a fully
functional syslogd with only s6 programs. The latter are tools that start
and stop services by symlinking/unlinking service directories from a
scan directory, in order to make it easier to integrate s6-style services
in boot scripts for sequential service managers such as OpenRC.

 https://skarnet.org/software/s6/
 git://git.skarnet.org/s6

* s6-networking-2.5.0.0
  ---------------------

 - Bugfixes.
 - minidentd has been removed. It was an old and somehow still buggy
piece of  code that was only hanging around for nostalgia reasons.
 - Full support for client certificates. Details of the client
certificate are transmitted to the application via environment
variables (or via an environment string in the case of opportunistic
TLS).
 - Full SNI support, including server-side. (That involved a deep dive
into the bearssl internals, which is why it took so long.) The filenames
containing secret keys and certificates for <domain> are read in the
environment variables KEYFILE:<domain> and CERTFILE:<domain>.

 Complete client certificate and SNI support now make the TLS part of
s6-networking a fully viable replacement of stunnel and other similar
TLS tunneling tools. This is most interesting when s6-networking is
built against bearssl, which uses about 1/9 of the resources that OpenSSL
needs.

 https://skarnet.org/software/s6-networking/
 git://git.skarnet.org/s6-networking

* mdevd-0.1.5.0
  -------------

 - A new option to mdevd is available: -O <nlgroups>.
This option makes mdevd rebroadcast uevents to a netlink group (or set
of netlink groups) once they have been handled. This allows applications
to read uevents from a netlink group *after* the device manager is done
with them. This is useful, for instance, when pairing mdevd with
libudev-zero for full udev emulation.
 - The * and & directives, which previously were only triggered by
"add" and "remove" actions, are now triggered by *all* action types.
This gives users full scripting access to any event, which can be
used to implement complex rules similar to udev ones.

 These two changes make it possible to now build a full-featured desktop
system based on mdevd + libudev-zero, without running systemd-udevd or
eudev.

 https://skarnet.org/software/mdevd/
 git://git.skarnet.org/mdevd

* smtpd-starttls-proxy-0.0.1.0
  ----------------------------

 This new package, in conjunction with the latest s6-networking,
implements the STARTTLS functionality for inetd-like mail servers that
do not already support it. (Currently only tested with qmail-smtpd.)
If you have noticed that sending mail to skarnet.org supports STARTTLS
now, it is thanks to this little piece of software.

 https://skarnet.org/software/smtpd-starttls-proxy/
 git://git.skarnet.org/smtpd-starttls-proxy

 Enjoy,
 Bug-reports welcome.

 Laurent
2021-09-27 14:28:43 +02:00
github-actions[bot]
7bb1bfbf29
Merge master into staging-next 2021-09-27 06:01:12 +00:00
Harsh Shandilya
5bd537ccef
fclones: 0.15.0 -> 0.16.0 2021-09-27 04:10:00 +05:30
Vladimír Čunát
a641e599a8
Merge branch 'staging-next' into staging 2021-09-26 15:03:03 +02:00
Robert Schütz
e6cc081a42 github-backup: 0.40.0 -> 0.40.1 2021-09-25 12:43:43 -07:00
github-actions[bot]
5dd6e3a959
Merge staging-next into staging 2021-09-25 18:01:44 +00:00
R. RyanTM
99b632b220 python38Packages.yt-dlp: 2021.9.2 -> 2021.9.25 2021-09-25 15:49:57 +00:00
sterni
a5dd5aaf9d
Merge pull request #138560 from sternenseemann/mandoc-1.14.6
mandoc: 1.14.5 -> 1.14.6
2021-09-24 18:53:53 +02:00
Ryan Burns
40299257cc Merge branch 'master' into staging-next 2021-09-23 18:43:00 -07:00
Martin Weinelt
ab485b4d98
Merge pull request #138640 from mweinelt/esphome 2021-09-23 23:54:22 +02:00
sternenseemann
03480209d9 mandoc: set SBINDIR instead of relying on fixupPhase 2021-09-23 21:24:10 +02:00
sternenseemann
c138683757 mandoc: use symlinks for executables and man pages
Symlinks are quite heavily used in nixpkgs and easier to reason about
than hardlinks, so using them seems good for consistency.
2021-09-23 21:24:10 +02:00
sternenseemann
ad02b5c89e mandoc: set MANPATH_BASE additionally to MANPATH_DEFAULT
MANPATH_BASE is used by mandoc -T lint to check if man pages that are
referenced exist on the system. While this feature is a bit problematic
for us (e. g. it will never work correctly in the nix sandbox), it
hasn't even worked in an impure context before since MANPATH_BASE
defaults to /usr/share/man:/usr/X11R6/man.
2021-09-23 21:24:10 +02:00
sternenseemann
a43f48b710 mandoc: support cross as far as possible
mandoc can't be cross compiled easily since all configure checks rely on
executing a binary built using $CC. We can however still do “native”
cross compilation like pkgsStatic and pkgsLLVM. To facilitate this, the
following changes are required:

* Set the correct AR to use in configure.local

* Inform users that cross compilation will fail via a throw if the build
  platform can't execute the host platform's binaries.
2021-09-23 21:24:10 +02:00
sternenseemann
35e8d91d92 mandoc: fix UTF-8-support detection and make more robust at runtime
locale(1) is not available in pkgsMusl.stdenv, but it is also not really
necessary. We just need to tell mandoc about *any* UTF-8 locale that is
also available at runtime.

For macOS C.UTF-8 is not available sadly, so we need to use
en_US.UTF-8. Using locale(1) for this is out of the question as NetBSD's
locale(1) depends on mandoc.
2021-09-23 21:24:10 +02:00
sternenseemann
342cabea95 mandoc: run regression test suite 2021-09-23 21:24:10 +02:00
Sandro
0dd7492ca0
Merge pull request #138080 from abathur/resholve_0.6.0 2021-09-23 21:09:25 +02:00
sternenseemann
a0a2b5f788 mandoc: use printf instead of echo for writing configure.local
This should be a bit more robust and portable.
2021-09-23 20:55:22 +02:00
sternenseemann
71fae710cc mandoc: add myself as maintainer 2021-09-23 20:55:22 +02:00
sternenseemann
02abcd6b3b mandoc: 1.14.5 -> 1.14.6 2021-09-23 20:55:20 +02:00
Sandro
29d3066ca1
Merge pull request #136751 from zakame/contrib/ruby-taoup
taoup: init at 1.1.14
2021-09-23 13:07:52 +02:00
github-actions[bot]
796a5df129
Merge master into staging-next 2021-09-23 00:01:50 +00:00
Jan Tojnar
63c3676fcf sharedown: init at 2.0.0 2021-09-23 00:31:02 +02:00
Finn Behrens
5d6761be60 kalker: use system gmp to fix aarch64-darwin
Signed-off-by: Finn Behrens <me@kloenk.dev>
2021-09-22 21:25:52 +02:00
github-actions[bot]
09a7436fcc
Merge master into staging-next 2021-09-22 18:01:01 +00:00
Travis A. Everett
08b791a01b resholve: 0.5.1 -> 0.6.0, refactor, +binlore
A bit going on here.
- Updating resholve from 0.5.1 -> 0.6.0
  - adding a depdendency, `binlore`, to supply ~intel on executables
    that supports new functionality in resholve
  - adding a package, `yallback`, which provides rule-based callbacks
    for YARA rule matches (depdency of `binlore`).
  - automatically generating "lore" for each `input` to a solution in
    `resholvePackage`.
  - update README
- restructuring some nix components to better support
  my local dev and CI workflows.
  - moved package tests into passthru/tests.nix (cuts `bats` out of
    resholve's immediate dependencies, makes it possible to add my
    existing Nix API test).
  - move my oil-dev patches out of resholve into a separate repo (no
    oil rebuild every time resholve's source changes). Also moving
    oil-dev into its own Nix file here, to ~track the default.nix in
    its own repo.
2021-09-22 09:54:04 -05:00
figsoda
59a43b900a
Merge pull request #138905 from r-ryantm/auto-update/svtplay-dl
svtplay-dl: 4.3 -> 4.5
2021-09-22 08:12:12 -04:00
figsoda
8fbc60ded9
Merge pull request #138896 from r-ryantm/auto-update/du-dust
du-dust: 0.6.2 -> 0.7.5
2021-09-22 08:08:14 -04:00
Alyssa Ross
b898e958da
Merge remote-tracking branch 'nixpkgs/master' into staging-next
Conflicts:
	pkgs/os-specific/linux/libfabric/default.nix
	pkgs/tools/filesystems/btrfs-progs/default.nix
2021-09-22 10:07:27 +00:00
R. RyanTM
137a4f7b43 svtplay-dl: 4.3 -> 4.5 2021-09-22 06:04:54 +00:00
R. RyanTM
add1980208 du-dust: 0.6.2 -> 0.7.5 2021-09-22 05:18:53 +00:00
Sandro
377600cefd
Merge pull request #138064 from x3rAx/ksnip-1.9.1
ksnip: init at 1.9.1
2021-09-21 23:20:06 +02:00
github-actions[bot]
611b805c53
Merge master into staging-next 2021-09-21 18:01:16 +00:00
Bruno Bigras
fde5e30809 starship: 0.57.0 -> 0.58.0 2021-09-22 00:14:36 +09:00
figsoda
b6e2f5391f
Merge pull request #138507 from thbkrshw/add-sysz
sysz: init at 1.2.2
2021-09-21 08:10:02 -04:00
github-actions[bot]
fd3d37414d
Merge master into staging-next 2021-09-21 12:01:29 +00:00
figsoda
9daeb99fe6
Merge pull request #138763 from figsoda/pipe-rename
pipe-rename: init at 1.4.0
2021-09-21 07:26:29 -04:00
Harold Leboulanger
35b3dce8f5 sysz: init at 1.3.0 2021-09-21 11:09:15 +02:00
github-actions[bot]
fa2601f3b2
Merge master into staging-next 2021-09-21 06:01:04 +00:00
Artturi
dff57db3be
Merge pull request #137894 from r-ryantm/auto-update/pspg
pspg: 5.3.4 -> 5.3.5
2021-09-21 04:23:24 +03:00
figsoda
17b89a82df pipe-rename: init at 1.4.0 2021-09-20 19:13:44 -04:00
Martin Weinelt
dd97523efe esphome: 2021.9.0 -> 2021.9.1 2021-09-20 14:32:50 +02:00
github-actions[bot]
9e5021eef4
Merge master into staging-next 2021-09-20 12:01:15 +00:00
Maciej Krüger
accf14a29b
Merge pull request #138626 from Atemu/yt-dlp-ytdl-alias 2021-09-20 13:30:42 +02:00
Zak B. Elep
6c64350905 taoup: init at 1.1.14 2021-09-20 18:08:16 +08:00
Atemu
bac5fde048 yt-dlp: add option to install a youtube-dl alias
youtube-dl development seems to have stalled and yt-dlp is the de-facto upstream
nowadays. This provides an easy way to use yt-dlp as a drop-in replacement:

    youtube-dl = yt-dlp.override { withAlias = true; };
2021-09-20 11:46:30 +02:00
github-actions[bot]
f666c4d10f
Merge master into staging-next 2021-09-20 06:01:17 +00:00
Artturi
aaa19a3696
Merge pull request #138354 from r-ryantm/auto-update/calamares
calamares: 3.2.42 -> 3.2.43
2021-09-20 07:09:20 +03:00
github-actions[bot]
20062d8491
Merge master into staging-next 2021-09-20 00:01:41 +00:00
Sandro
c47481db1c
Merge pull request #137623 from Kranzes/ristate 2021-09-20 00:08:08 +02:00
^x3ro
53c4bea509 ksnip: Change license to gpl2Plus 2021-09-19 22:39:34 +02:00
figsoda
471475b872
Merge pull request #138497 from dotlambda/github-backup-0.40.0
github-backup: 0.39.0 -> 0.40.0
2021-09-19 14:23:20 -04:00
Alyssa Ross
f0bc4d95b8 pkgsStatic.toybox: fix build 2021-09-19 18:05:17 +00:00
Alyssa Ross
e2bb7997c4
Merge remote-tracking branch 'nixpkgs/master' into staging-next
Conflicts:
	nixos/doc/manual/release-notes/rl-2111.section.md
2021-09-19 17:08:00 +00:00
Felix Buehler
11d9481a9e xtitle: switch to fetchFromGitHub 2021-09-19 18:57:57 +02:00
Felix Buehler
dfc987cd7c txt2man: switch to fetchFromGitHub 2021-09-19 18:57:42 +02:00
Felix Buehler
8ee398d016 tio: switch to fetchFromGitHub 2021-09-19 18:57:27 +02:00
Felix Buehler
85c54d59eb sdate: switch to fetchFromGitHub 2021-09-19 18:57:09 +02:00
Felix Buehler
4d0269b8ce profile-sync-daemon: switch to fetchFromGitHub 2021-09-19 18:56:50 +02:00
Felix Buehler
c1429659c7 contacts: switch to fetchFromGitHub 2021-09-19 18:56:31 +02:00
Felix Buehler
f4431f535c ccze: switch to fetchFromGitHub 2021-09-19 18:56:10 +02:00
Felix Buehler
b6d6778447 aspcud: switch to fetchFromGitHub 2021-09-19 18:55:55 +02:00
R. RyanTM
ca67994224 dua: 2.14.6 -> 2.14.7 2021-09-19 22:13:05 +09:00
Robert Scott
1837100096 tremor-rs: 0.11.5 -> 0.11.6 2021-09-19 12:42:20 +01:00
Bobby Rong
f21f2b07d7
Merge pull request #138486 from r-ryantm/auto-update/cicero-tui
cicero-tui: 0.2.2 -> 0.3.0
2021-09-19 18:55:17 +08:00
Robert Schütz
2e44a72b8f github-backup: 0.39.0 -> 0.40.0 2021-09-18 22:31:06 -07:00
R. RyanTM
e67bd161e0 cicero-tui: 0.2.2 -> 0.3.0 2021-09-19 03:00:04 +00:00
davidak
3841fc3c88
Merge pull request #138444 from bjornfor/phoronix-test-suite-add-missing-hooks
phoronix-test-suite: run missing hooks: preInstall, postInstall
2021-09-19 03:00:35 +02:00
davidak
dfa2dd95c2
Merge pull request #138434 from bobby285271/pantheon-team
treewide: switch from pantheon.maintainers to lib.teams.pantheon
2021-09-19 02:58:11 +02:00
happysalada
cdd4d1ceec vector: disable flaky test 2021-09-19 09:46:09 +09:00
zowoq
ed55c1a444 mmv-go: 0.1.3 -> 0.1.4
https://github.com/itchyny/mmv/releases/tag/v0.1.4
2021-09-19 08:58:22 +10:00
Bjørn Forsman
ef44879599 phoronix-test-suite: run missing hooks: preInstall, postInstall 2021-09-18 18:32:31 +02:00
Bobby Rong
0fd8cc3908
treewide: switch from pantheon.maintainers to lib.teams.pantheon 2021-09-18 23:07:00 +08:00
Raphael Megzari
62468d6ff7
Merge branch 'master' into staging-next 2021-09-18 22:46:18 +09:00
R. RyanTM
70e69cb1c2 macchina: 1.1.5 -> 1.1.6 2021-09-18 09:40:02 +00:00
github-actions[bot]
263bdbdad4
Merge master into staging-next 2021-09-18 06:01:19 +00:00
R. RyanTM
a4b769cb8b calamares: 3.2.42 -> 3.2.43 2021-09-18 02:05:17 +00:00
Kid
560ce8d15c
yt-dlp: remove obsolete postPatch 2021-09-18 09:18:59 +08:00
github-actions[bot]
c4fd2a8f99
Merge master into staging-next 2021-09-18 00:01:33 +00:00
figsoda
f3f5bbffb9
Merge pull request #138192 from andreyk0/master
cloud-sql-proxy: 1.13 -> 1.25.0
2021-09-17 17:34:34 -04:00
Sandro
25746859c0
Merge pull request #138323 from arcnmx/vimpager-cross 2021-09-17 23:31:03 +02:00
arcnmx
66e311ad69 vimpager: fix cross build 2021-09-17 12:50:37 -07:00
github-actions[bot]
a21275cdae
Merge master into staging-next 2021-09-17 18:01:14 +00:00
Andrey Kartashov
3c4fe82a3d
cloud-sql-proxy: 1.13 -> 1.25.0 2021-09-17 12:54:37 -04:00
Silvan Mosberger
d46295c60d
Merge pull request #99403 from woffs/uudeview-format
uudeview: don't hardeningDisable format
2021-09-17 16:47:39 +02:00
Luke Granger-Brown
65b8408ce8 Merge remote-tracking branch 'upstream/staging' into staging-next 2021-09-17 12:18:44 +00:00
R. RyanTM
076bb67140 macchina: 1.1.4 -> 1.1.5 2021-09-17 09:54:54 +00:00
^x3ro
d687093e66 ksnip: Use existing packages for dependencies 2021-09-17 08:11:09 +02:00
Frank Doepper
60f8a42d3a uudeview: don't hardeningDisable format
- adopt a patch which several other distributions use
- name -> pname + version
- license: gpl2Plus
2021-09-17 08:05:25 +02:00
github-actions[bot]
2ad7b248e6
Merge staging-next into staging 2021-09-17 00:02:15 +00:00
^x3ro
9ac0b84887 ksnip: Move dependencies from nativeBuildInputs to buildInputs 2021-09-17 00:43:40 +02:00
figsoda
cffdbf0290
Merge pull request #138050 from r-ryantm/auto-update/profetch
profetch: 0.1.6 -> 0.1.7
2021-09-16 14:23:10 -04:00
github-actions[bot]
9905c2647a
Merge staging-next into staging 2021-09-16 18:01:40 +00:00
figsoda
d650c9a0f6
Merge pull request #137626 from msfjarvis/hs/2021-09-12/fclones-darwin
fclones: add Darwin support, bump 0.14.0 -> 0.15.0
2021-09-16 09:15:33 -04:00
github-actions[bot]
85bd312fb6
Merge staging-next into staging 2021-09-16 12:02:04 +00:00
^x3ro
4f1e2dbc73 ksnip: Build from source 2021-09-16 12:59:21 +02:00
Sandro
0ecf2a99dd
Merge pull request #138120 from r-ryantm/auto-update/grex
grex: 1.2.0 -> 1.3.0
2021-09-16 12:55:36 +02:00
R. RyanTM
8c8ed6554d grex: 1.2.0 -> 1.3.0 2021-09-16 10:12:48 +00:00
0x4A6F
47bbde4a54 zellij: 0.16.0 -> 0.17.0 2021-09-16 16:04:10 +09:00
R. RyanTM
70b65c281d dua: 2.14.4 -> 2.14.6 2021-09-16 15:43:11 +09:00
github-actions[bot]
52ebc93c96
Merge staging-next into staging 2021-09-16 06:01:54 +00:00
github-actions[bot]
6a10b23c61
Merge staging-next into staging 2021-09-16 00:02:05 +00:00
Martin Weinelt
7566d3679a
esphome: 2021.8.2 -> 2021.9.0 2021-09-16 00:03:57 +02:00
^x3ro
5f54cb62e1 ksnip: init at 1.9.1 2021-09-15 23:42:35 +02:00
R. RyanTM
bb47ec4d4c profetch: 0.1.6 -> 0.1.7 2021-09-15 20:18:44 +00:00
zowoq
ca831be54c miniserve: 0.15.0 -> 0.17.0
https://github.com/svenstaro/miniserve/releases/tag/v0.16.0
https://github.com/svenstaro/miniserve/releases/tag/v0.17.0
2021-09-16 06:08:40 +10:00
Fabian Affolter
5fe7b30633
Merge pull request #138032 from r-ryantm/auto-update/macchina
macchina: 1.1.3 -> 1.1.4
2021-09-15 20:37:27 +02:00
github-actions[bot]
1c625bf844
Merge staging-next into staging 2021-09-15 18:01:59 +00:00
R. RyanTM
93d5531b29 macchina: 1.1.3 -> 1.1.4 2021-09-15 17:35:16 +00:00
R. RyanTM
52e9be9ada goreleaser: 0.176.0 -> 0.179.0 2021-09-15 12:54:35 +00: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
figsoda
bef5fb44ab
Merge pull request #137708 from figsoda/nomino
nomino: init at 1.1.0
2021-09-14 22:47:38 -04:00
tomberek
f744f0a800
Merge pull request #137922 from r-ryantm/auto-update/slop
slop: 7.5 -> 7.6
2021-09-14 20:28:24 -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
R. RyanTM
dc03eeaab1 slop: 7.5 -> 7.6 2021-09-14 23:23:39 +00:00
Robert Schütz
b2488e1c17
Merge pull request #137442 from asbachb/fixup/csvs-to-sqlite
csvs-to-sqlite: linking `click` version `7` explicitly to pass build
2021-09-14 16:08:12 -07:00
figsoda
cf0caf529c
Merge pull request #133616 from q60/master
profetch: init at 0.1.6
2021-09-14 17:38:45 -04:00
R. RyanTM
c73efd4266 pspg: 5.3.4 -> 5.3.5 2021-09-14 20:55:28 +00: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
github-actions[bot]
95f24a8a57
Merge staging-next into staging 2021-09-14 18:01:40 +00:00
github-actions[bot]
91c89490cc
Merge master into staging-next 2021-09-14 18:01:05 +00: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
figsoda
b3d047de5c
Merge pull request #135812 from r-ryantm/auto-update/unclutter-xfixes
unclutter-xfixes: 1.5 -> 1.6
2021-09-14 10:36:33 -04:00
Bobby Rong
c50a3bfc4d
Merge pull request #135947 from r-ryantm/auto-update/apt-offline
apt-offline: unstable-2021-04-11 -> unstable-2021-07-25
2021-09-14 22:28:03 +08:00
Artturi
374fb5a7eb
Merge pull request #137813 from r-ryantm/auto-update/qt5ct 2021-09-14 16:46:57 +03:00
Harsh Shandilya
eeae23051f
fclones: add msfjarvis as maintainer 2021-09-14 18:06:54 +05:30
Harsh Shandilya
b2ec5cb0bd
fclones: add support for Darwin builds 2021-09-14 18:06:53 +05:30
Harsh Shandilya
b6d412f102
fclones: 0.14.0 -> 0.15.0 2021-09-14 18:06:52 +05:30
R. RyanTM
a05c3143e3 qt5ct: 1.1 -> 1.3 2021-09-14 12:25:03 +00:00
Sandro
cb29dfad98
Merge pull request #137740 from r-ryantm/auto-update/convbin
convbin: 3.4 -> 3.7
2021-09-14 14:17:09 +02:00
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
Thomas Gerbet
b9608ec767 opentsdb: fix CVE-2020-35476
This contribution pulls in the patch fixing CVE-2020-35476.
The fix is also included in the 2.4.1 version but the upgrade requires
more work: a tarball with all the third party tools is no more provided.
The build process attempts to get them during the build which fail.

https://github.com/advisories/GHSA-hv53-q76c-7f8c
2021-09-14 10:15:08 +02:00
R. RyanTM
4748cc258a convbin: 3.4 -> 3.7 2021-09-14 04:17:54 +00: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
Jonathan Ringer
ca1731455d
Merge remote-tracking branch 'origin/master' into staging-next 2021-09-13 08:09:52 -07:00
Domen Kožar
7a36468853
Merge pull request #137605 from emilazy/aarch64-darwin-fixes
{pv,mosh}: fix on aarch64-darwin
2021-09-13 13:52:51 +02:00
Ilan Joselevich
b417e6ec80 ristate: init at unstable-2021-09-10 2021-09-13 10:57:40 +03:00
Arthur Gautier
3a7e5f6c25 ipxe: allow to pass options with values
For example BANNER_TIMEOUT can be overriden like:
```
ipxe.overrideArgs(old: {
    enableOptions = old.enableOptions ++ [ "BANNER_TIMEOUT 100" ];
});
```

Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
2021-09-13 08:47:00 +02:00
Emily
a48dff9412 pv: fix on aarch64-darwin
Homebrew carries a patch that has been sent upstream. Since it's
designed to be suitable for inclusion as-is and strictly improves
correctness, we just apply it unconditionally on all platforms.
2021-09-13 05:41:45 +01:00
Emily
765dd20a6c pv: 1.6.6 -> 1.6.20 2021-09-13 05:41:45 +01: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
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
Daniël de Kok
6af98ae669
Merge pull request #137539 from danieldk/remove-maintainership
treewide: remove danieldk as maintainer from a set of packages
2021-09-12 17:06:53 +02:00
Daniël de Kok
6f2ce2a65e treewide: remove danieldk as maintainer from a set of packages
I currently do not have much time to work on nixpkgs. Remove
myself as a maintainer from a bunch of packages to avoid that
people are waiting on me for a review.
2021-09-12 14:42:12 +00:00
Robert Helgesson
d94bd5c599 svtplay-dl: 4.2 -> 4.3 2021-09-12 16:41:33 +02:00
Sandro
eef7dc681b
Merge pull request #137490 from r-ryantm/auto-update/nncp 2021-09-12 16:40:12 +02:00
Sandro
5da2746c8d
Merge pull request #134487 from r-ryantm/auto-update/quich 2021-09-12 15:15:11 +02:00
R. RyanTM
365a8fb5f9 nncp: 7.6.0 -> 7.7.0 2021-09-12 07:08:48 +00: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
8bf70d5620
Merge pull request #137154 from r-burns/bandwidth
bandwidth: 1.9.4 -> 1.10.1, enable on arm
2021-09-12 01:05:39 +02:00
Sandro
a4156f2b86
Merge pull request #136806 from cyounkins/maintainers_cyounkins 2021-09-11 22:45:19 +02:00
Ryan Burns
a45c76d73d bandwidth: 1.9.4 -> 1.10.1, enable on arm
add make flags needed for cross-compilation
tested on pkgsCross.{aarch64-multiplatform,armv7l-hf-multiplatform}
2021-09-11 13:14:58 -07:00
Sandro
7deb88260c
Merge pull request #137430 from SuperSandro2000/zoxide 2021-09-11 21:52:15 +02:00
Sandro Jäckel
b6416616b2
zoxide: 0.7.4 -> 0.7.5 2021-09-11 21:16:26 +02: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
Sandro
9c31db4f2d
Merge pull request #137371 from trofi/fix-trustedGrub
trustedGrub, trustedGrub-for-HP: apply upstream fix for fresh glibc
2021-09-11 15:22:54 +02:00
Sergei Trofimovich
1d7917e64e trustedGrub, trustedGrub-for-HP: apply upstream fix for fresh glibc 2021-09-11 13:19:47 +01:00
Sandro
797d66f4e6
Merge pull request #133911 from r-ryantm/auto-update/yad
yad: 9.0 -> 10.1
2021-09-11 14:09:48 +02:00
Sandro
688b6a50d1
Merge pull request #135855 from r-ryantm/auto-update/dupd
dupd: 1.7 -> 1.7.1
2021-09-11 14:07:51 +02:00
github-actions[bot]
6188f2aeeb
Merge staging-next into staging 2021-09-11 06:01:28 +00:00
Martin Weinelt
bae10ead99 Merge remote-tracking branch 'origin/master' into staging-next 2021-09-11 02:29:58 +02:00
Guillaume Girol
31112e9854
Merge pull request #136332 from woffs/nncp-7.6.0
nncp: 6.5.0 -> 7.6.0
2021-09-10 19:42:41 +00:00
github-actions[bot]
fa42e187e1
Merge staging-next into staging 2021-09-10 18:01:52 +00:00
Martin Weinelt
d9341eafa2
Merge branch 'master' into staging-next 2021-09-10 15:04:01 +02:00
Yureka
36304fc89d yubikey-manager: patch path of pkill binary 2021-09-10 13:50:09 +02:00
github-actions[bot]
43f3e1bcc6
Merge staging-next into staging 2021-09-10 00:02:06 +00:00
github-actions[bot]
912b8082df
Merge master into staging-next 2021-09-10 00:01:31 +00:00
zowoq
9fe2e640cc youtube-dl: remove maintainer 2021-09-10 09:12:09 +10:00
github-actions[bot]
0f89cfc988
Merge staging-next into staging 2021-09-09 12:02:00 +00:00
github-actions[bot]
fc5d1c0828
Merge master into staging-next 2021-09-09 12:01:24 +00:00
Bastien Riviere
d4ff22bee8 qmk: 0.0.52 -> 1.0.0 2021-09-09 20:37:56 +09:00
github-actions[bot]
a646151837
Merge staging-next into staging 2021-09-09 06:01:37 +00:00
github-actions[bot]
77893d86c2
Merge master into staging-next 2021-09-09 06:01:04 +00:00
Mario Rodas
71b7b77cbe mcfly: replace executable path in init scripts 2021-09-09 04:20:00 +00:00
Mario Rodas
7e18c9102a
Merge pull request #137076 from uri-canva/remove-fluentd-scribe
fluentd: remove fluent-plugin-scribe
2021-09-08 22:44:25 -05:00
github-actions[bot]
b56a4e5e6e
Merge staging-next into staging 2021-09-09 00:02:15 +00:00
github-actions[bot]
8cd1da2362
Merge master into staging-next 2021-09-09 00:01:35 +00:00
Craig Younkins
e5880bd760 fclones: init at 0.14.0 2021-09-08 17:14:49 -04:00
Maximilian Bosch
0e02dd4f10
diffoscope: 182 -> 183
ChangeLog: https://diffoscope.org/news/diffoscope-183-released/
2021-09-08 18:08:27 +02:00
markuskowa
13bd2afb65
Merge pull request #136571 from markuskowa/fix-gfortran
treewide: move gfortran to nativeBuildInputs
2021-09-08 14:48:28 +02:00