Robert Hensing
bef62e8c81
Merge pull request #114752 from hercules-ci/lazy-offline-acme
...
acme: Determine offline whether renewal is due
2021-03-22 16:04:33 +01:00
Jason Felice
3ed996727f
gambit: fix compiler paths
...
Prior to the recent merge, the full paths were specified here, so
gambit would get the full paths and not need to propagate the compiler
inputs.
2021-03-22 10:58:48 -04:00
Ben Siraphob
ebb6205c7a
sccache: remove platforms and fix darwin build
2021-03-22 21:55:32 +07:00
Robert Schütz
f4068932bf
python39Packages.rope: fix tests
2021-03-22 15:54:35 +01:00
Anderson Torres
9007023a70
Merge pull request #116932 from AndersonTorres/new-scimark
...
scimark: init at 4c
2021-03-22 11:28:22 -03:00
sternenseemann
76d9fe7629
!fixup add myself as maintainer for the module
2021-03-22 15:19:49 +01:00
sternenseemann
19225b8690
!fixup add nixos tests to passthru.tests
2021-03-22 15:12:27 +01:00
Pamplemousse
bf1beb93c5
ipmitool: fix security vulnerability
...
Relates to #90825 .
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
2021-03-22 07:10:30 -07:00
R. RyanTM
84a5115918
osu-lazer: 2021.312.0 -> 2021.320.0
2021-03-22 14:06:37 +00:00
Martin Weinelt
9a0519f080
firefox-esr: 78.8.0esr -> 78.9.0esr
2021-03-22 15:05:56 +01:00
Martin Weinelt
e9dbf1a586
firefox: 86.0.1 -> 87.0
2021-03-22 15:05:37 +01:00
adisbladis
04a37553f2
Merge pull request #114821 from erosennin/catatonit
...
catatonit: init at 0.1.5, fix podman --init
2021-03-22 16:04:06 +02:00
R. RyanTM
03f9e1979d
openethereum: 3.1.1 -> 3.2.1
2021-03-22 13:52:42 +00:00
sternenseemann
726db56d68
!fixup simplify zipListsWith call
2021-03-22 14:52:13 +01:00
sternenseemann
66454f0e5a
!fixup get rid of trailing comment hack
2021-03-22 14:48:38 +01:00
sternenseemann
4048b39fc1
nixos/modules/inspircd: add simplistic module and nixos test
2021-03-22 14:38:57 +01:00
Mario Rodas
2af47fc86a
Merge pull request #117179 from r-ryantm/auto-update/flow
...
flow: 0.146.0 -> 0.147.0
2021-03-22 08:36:02 -05:00
R. RyanTM
9cbd510c21
coursier: 2.0.14 -> 2.0.15
2021-03-22 09:30:26 -04:00
Stig
d78cb9fc18
Merge pull request #117139 from stigtsp/package/perl-5.33.8
...
perldevel: 5.33.6 -> 5.33.8, perl-cross: 1.3.5 -> e53999d
2021-03-22 14:06:10 +01:00
Stig
0fb737d19b
Merge pull request #116234 from r-ryantm/auto-update/zef
...
zef: 0.11.4 -> 0.11.5
2021-03-22 14:03:09 +01:00
Robert Schütz
d8646daef1
python3Packages.tatsu: 5.5.0 -> 5.6.0
2021-03-22 13:57:56 +01:00
Robert Schütz
db2ca9b10c
pythonPackages.easygui: fix build
2021-03-22 13:30:16 +01:00
R. RyanTM
971b497a47
minizinc: 2.5.4 -> 2.5.5
2021-03-22 12:14:15 +00:00
Fabian Affolter
f2b936edf5
Merge pull request #117173 from r-ryantm/auto-update/disfetch
...
disfetch: 1.20 -> 1.21
2021-03-22 13:13:51 +01:00
taku0
d7bba3e5da
firefox-bin: 86.0.1 -> 87.0
2021-03-22 21:12:24 +09:00
Sandro
7a6961b69c
Merge pull request #117203 from OPNA2608/fix/rtmidi-cmake-pr-patch/21.05
...
rtmidi: Add patch for header location
2021-03-22 13:10:46 +01:00
Robert Schütz
4e51f855e5
pythonPackages.colorlog: 4.7.2 -> 4.8.0
2021-03-22 13:03:56 +01:00
R. RyanTM
126e8843f2
miller: 5.10.0 -> 5.10.1
2021-03-22 11:59:05 +00:00
Aaron Andersen
f875d996fb
kodi.packages.a4ksubtitles: init at 2.3.0
2021-03-22 07:58:08 -04:00
Ben Siraphob
5b8a0c92fe
openjdk/darwin: move version out of name
2021-03-22 18:53:04 +07:00
nixbitcoin
5c221a5e0b
btcpayserver: 1.0.6.8 -> 1.0.7.0
2021-03-22 11:44:07 +00:00
bb2020
ebbf8bcbe2
gimx: update configs
2021-03-22 14:40:50 +03:00
R. RyanTM
eed487494f
libplctag: 2.3.5 -> 2.3.6
2021-03-22 11:28:09 +00:00
Arnout Engelen
078c2a7341
bash 5.1: don't rely on patch timestamps in build
...
When, after patching, `configure.ac` is newer than `configure`, the
Makefile will try to regenerate `configure` from `configure.ac`.
While that might usually be desirable, in this case we want to keep
bootstrapping simple and directly use the `configure` from the package
so we can avoid a dependency on automake.
Previously, we used the `-T` parameter to automake to make sure the
timestamps were okay. However, this is brittle when we update: when the
timestamp of the original file changes, and no longer matches the
timestamp of the original file in the patch, `patch` will show a warning
but otherwise continue without updating the timestamp.
This PR changes things so we only patch `configure`, so that will always
have a newer timestamp.
We will update bash-4.4 in a separate PR (but that one has a bigger rebuild
impact so will have to target staging)
Refs #115177
2021-03-22 12:27:10 +01:00
Sandro
64ed9a9a99
Merge pull request #116247 from tfmoraes/meshlab-20.12
...
meshlab: 2020.07 -> 2020.12
2021-03-22 12:25:30 +01:00
Sandro
66955e1f41
Merge pull request #117186 from 06kellyjac/nerdctl
...
nerdctl: 0.7.1 -> 0.7.2
2021-03-22 12:23:42 +01:00
Sandro
6f9ac9eb8a
Merge pull request #117184 from siraben/fet-sh-update
...
fet-sh: 1.8 -> 1.9
2021-03-22 12:23:17 +01:00
mtreca
ff64acacba
sumo: init at 1.8.0
2021-03-22 12:17:15 +01:00
Sandro
e3cc60dfe7
Merge pull request #117153 from 06kellyjac/deno
...
deno: 1.8.1 -> 1.8.2
2021-03-22 12:12:54 +01:00
Doron Behar
d3e65f1a42
Merge pull request #117197 from dotlambda/newsboat-2.23
...
newsboat: 2.22.1 -> 2.23
2021-03-22 11:11:35 +00:00
Sandro
d41fc7b442
Merge pull request #117152 from mweinelt/bird2
...
bird2: 2.0.7 -> 2.0.8
2021-03-22 12:07:24 +01:00
Sandro
e905e228ef
Merge pull request #117190 from siraben/darwin-mass-fix-buildInputs=0
2021-03-22 12:04:15 +01:00
R. RyanTM
418ab6338e
libcint: 4.1.0 -> 4.1.1
2021-03-22 10:44:40 +00:00
Cyril Cohen
6c5ca9c3eb
coqPackages.coq-elpi: 1.6.0 -> 1.6.1
2021-03-22 11:40:34 +01:00
R. RyanTM
d51760a074
kubie: 0.12.1 -> 0.13.4
2021-03-22 10:38:44 +00:00
OPNA2608
e1bb6ce4ea
rtmidi: Add patch for header location
2021-03-22 11:28:36 +01:00
R. RyanTM
2fc0c3ea3b
k9s: 0.24.2 -> 0.24.3
2021-03-22 10:14:27 +00:00
R. RyanTM
934c84bee3
jbang: 0.67.3 -> 0.68.0
2021-03-22 10:00:54 +00:00
Robert Schütz
f373e17810
newsboat: 2.22.1 -> 2.23
2021-03-22 10:49:33 +01:00
Matthieu Coudron
810d22fb35
Merge pull request #111975 from teto/bazel-execlog
...
bazel: add execlog parser
2021-03-22 10:43:17 +01:00