Artturin
a7946aa359
silenthound: dont use a alias
2022-09-26 18:24:30 +03:00
Artturin
0734f54ef2
treewide: move pkg-config, autoreconfHook, intltool to nativeBuildInputs
...
found with nixpkgs-lint
2022-09-26 17:53:26 +03:00
R. Ryantm
a04f64ee31
cdk-go: 1.4.1 -> 1.5.0
2022-09-26 11:36:44 +00:00
Frederik Rietdijk
63e480ba16
Merge staging-next into staging
2022-09-26 09:31:50 +02:00
Frederik Rietdijk
de57d754a0
Merge master into staging-next
2022-09-26 09:31:22 +02:00
github-actions[bot]
e0bea8e017
Merge staging-next into staging
2022-09-26 00:03:58 +00:00
Fabian Affolter
0a891d3648
Merge pull request #191802 from fabaff/gallia
...
gallia: init at 1.0.3
2022-09-25 22:52:54 +02:00
Martin Weinelt
68c0ca4416
Merge remote-tracking branch 'origin/master' into staging-next
2022-09-25 21:36:31 +02:00
Fabian Affolter
dca39dc861
exploitdb: 2022-09-22 -> 2022-09-24
2022-09-25 18:37:32 +02:00
Fabian Affolter
035cca50b7
gallia: mark as broken on darwin
2022-09-25 11:43:52 +02:00
Fabian Affolter
a9da0a7de2
gallia: init at 1.0.3
2022-09-25 11:43:52 +02:00
Fabian Affolter
4082476a6e
sigma-cli: relax constraints
2022-09-24 13:33:22 -07:00
Fabian Affolter
9f394aa97a
Merge pull request #192785 from fabaff/ldapnomnom-bump
...
ldapnomnom: 1.0.5 -> 1.0.6
2022-09-24 22:30:09 +02:00
R. Ryantm
60a8a582b8
passphrase2pgp: 1.2.0 -> 1.2.1
2022-09-24 18:55:04 +00:00
Mario Rodas
473b7e9a78
Merge pull request #192389 from LeSuisse/cosign-1.12.1
...
cosign: 1.12.0 -> 1.12.1
2022-09-24 12:15:11 -05:00
Fabian Affolter
f83c3790b3
ldapnomnom: 1.0.5 -> 1.0.6
2022-09-24 18:18:52 +02:00
Fabian Affolter
afa46d5e76
ldapnomnom: unstable-2022-09-18 -> 1.0.5
2022-09-24 18:17:52 +02:00
R. Ryantm
4ae2e3aec5
rekor-cli: 0.12.0 -> 0.12.1
2022-09-24 19:30:17 +08:00
Fabian Affolter
b6cc4c1d02
Merge pull request #192730 from r-ryantm/auto-update/exploitdb
...
exploitdb: 2022-09-21 -> 2022-09-22
2022-09-24 12:58:44 +02:00
R. Ryantm
93865404d4
exploitdb: 2022-09-21 -> 2022-09-22
2022-09-24 08:05:24 +00:00
Fabian Affolter
be978f2532
Merge pull request #192579 from r-ryantm/auto-update/cfripper
...
cfripper: 1.13.0 -> 1.13.1
2022-09-23 14:52:57 +02:00
github-actions[bot]
b23abdbc62
Merge staging-next into staging
2022-09-23 12:02:09 +00:00
github-actions[bot]
ef833a6fd2
Merge master into staging-next
2022-09-23 12:01:34 +00:00
Jonas Heinrich
c55b08ac54
Merge pull request #192468 from r-ryantm/auto-update/rnp
...
rnp: 0.16.1 -> 0.16.2
2022-09-23 10:52:06 +02:00
R. Ryantm
c60c8337a9
cfripper: 1.13.0 -> 1.13.1
2022-09-23 07:55:31 +00:00
github-actions[bot]
fafe628a8d
Merge staging-next into staging
2022-09-23 00:03:34 +00:00
github-actions[bot]
bdf7bb0f65
Merge master into staging-next
2022-09-23 00:02:56 +00:00
Graham Christensen
1379da1098
Merge pull request #192447 from DeterminateSystems/drop-l
...
treewide: drop -l$NIX_BUILD_CORES
2022-09-22 19:06:21 -04:00
figsoda
86c91dc1a4
keyscope: 1.2.2 -> 1.2.3
2022-09-22 17:33:45 -04:00
Fabian Affolter
69bef220ed
Merge pull request #192429 from r-ryantm/auto-update/gitleaks
...
gitleaks: 8.12.0 -> 8.13.0
2022-09-22 22:39:16 +02:00
Graham Christensen
c2b898da76
treewide: drop -l$NIX_BUILD_CORES
...
Passing `-l$NIX_BUILD_CORES` improperly limits the overall system load.
For a build machine which is configured to run `$B` builds where each
build gets `total cores / B` cores (`$C`), passing `-l $C` to make will
improperly limit the load to `$C` instead of `$B * $C`.
This effect becomes quite pronounced on machines with 80 cores, with
40 simultaneous builds and a cores limit of 2. On a machine with this
configuration, Nix will run 40 builds and make will limit the overall
system load to approximately 2. A build machine with this many cores
can happily run with a load approaching 80.
A non-solution is to oversubscribe the machine, by picking a larger
`$C`. However, there is no way to divide the number of cores in a way
which fairly subdivides the available cores when `$B` is greater than
1.
There has been exploration of passing a jobserver in to the sandbox,
or sharing a jobserver between all the builds. This is one option, but
relatively complicated and only supports make. Lots of other software
uses its own implementation of `-j` and doesn't support either `-l` or
the Make jobserver.
For the case of an interactive user machine, the user should limit
overall system load using `$B`, `$C`, and optionally systemd's
cpu/network/io limiting features.
Making this change should significantly improve the utilization of our
build farm, and improve the throughput of Hydra.
2022-09-22 16:01:23 -04:00
R. Ryantm
74f8cdc555
rnp: 0.16.1 -> 0.16.2
2022-09-22 18:28:47 +00:00
Vladimír Čunát
3671ea902a
Merge branch 'master' into staging-next
2022-09-22 19:06:26 +02:00
R. Ryantm
646d3c0a7c
gitleaks: 8.12.0 -> 8.13.0
2022-09-22 12:07:53 +00:00
Jonas Heinrich
9ba973fa7b
Merge pull request #192325 from r-ryantm/auto-update/modsecurity-crs
...
modsecurity-crs: 3.3.2 -> 3.3.4
2022-09-22 11:44:26 +02:00
Thomas Gerbet
a2784b942f
cosign: 1.12.0 -> 1.12.1
...
https://github.com/sigstore/cosign/releases/tag/v1.12.1
2022-09-22 08:42:43 +02:00
github-actions[bot]
6ded381b0e
Merge master into staging-next
2022-09-22 00:03:22 +00:00
R. Ryantm
e49d3e152f
modsecurity-crs: 3.3.2 -> 3.3.4
2022-09-21 22:58:01 +00:00
Fabian Affolter
f4b211eb91
Merge pull request #191806 from fabaff/ldapnomnom
...
ldapnomnom: init at unstable-2022-09-18
2022-09-22 00:46:12 +02:00
Fabian Affolter
ccc3fc3b52
exploitdb: 2022-09-16 -> 2022-09-21
2022-09-21 23:44:24 +02:00
Nikolay Korotkiy
b9cc26750d
Merge pull request #192191 from sikmir/gopass
...
gopass: 1.14.6 → 1.14.7
2022-09-21 22:15:53 +03:00
github-actions[bot]
15bbf4d3fc
Merge master into staging-next
2022-09-21 12:01:48 +00:00
Fabian Affolter
98d31c3eb9
Merge pull request #191758 from fabaff/crackql
...
crackql: init at unstable-20220821
2022-09-21 09:44:57 +02:00
Fabian Affolter
637944d186
Merge pull request #192011 from r-ryantm/auto-update/chain-bench
...
chain-bench: 0.1.3 -> 0.1.4
2022-09-21 09:38:19 +02:00
Fabian Affolter
ec89c502c7
Merge pull request #192023 from fabaff/coercer
...
coercer: init at 1.6
2022-09-21 09:35:43 +02:00
Fabian Affolter
c1ca27703d
Merge pull request #192049 from fabaff/silenthound
...
silenthound: init at unstable-2022-09-02
2022-09-21 09:31:32 +02:00
Fabian Affolter
a18e1bba42
coercer: init at 1.6
2022-09-21 09:16:16 +02:00
Fabian Affolter
b6d0414b22
ldapnomnom: init at unstable-2022-09-18
2022-09-21 09:12:39 +02:00
Fabian Affolter
dfa4a33001
dismember: init at 0.0.1
2022-09-21 09:11:47 +02:00
Fabian Affolter
9e4208c8c7
crackql: init at unstable-20220821
2022-09-21 09:08:07 +02:00
Fabian Affolter
8c63069284
Merge pull request #191749 from fabaff/graphinder
...
graphinder: init at 1.11.5
2022-09-21 09:05:23 +02:00
Nikolay Korotkiy
7b145aaf9b
gopass-summon-provider: 1.14.6 → 1.14.7
2022-09-21 09:27:05 +03:00
Nikolay Korotkiy
71392911b0
gopass-jsonapi: 1.14.6 → 1.14.7
2022-09-21 09:26:30 +03:00
Nikolay Korotkiy
0c94297c2b
gopass-hibp: 1.14.6 → 1.14.7
2022-09-21 07:24:02 +03:00
Nikolay Korotkiy
84df22f640
git-credential-gopass: 1.14.6 → 1.14.7
2022-09-21 07:23:23 +03:00
Nikolay Korotkiy
dd8c6e41d1
gopass: 1.14.6 → 1.14.7
2022-09-21 07:22:44 +03:00
github-actions[bot]
7da9ac9ae6
Merge master into staging-next
2022-09-21 00:03:46 +00:00
Fabian Affolter
f849f77fed
Merge pull request #192074 from r-ryantm/auto-update/cdk-go
...
cdk-go: 1.4.0 -> 1.4.1
2022-09-20 21:49:59 +02:00
github-actions[bot]
2f49e0bb89
Merge master into staging-next
2022-09-20 18:01:23 +00:00
Sandro
0d7222c92f
Merge pull request #188788 from SuperSandro2000/rng-tools
2022-09-20 16:42:26 +02:00
ajs124
49f07e866c
Merge pull request #191755 from NickCao/clevis
...
clevis: fix build with openssl_3
2022-09-20 16:01:59 +02:00
R. Ryantm
bfdba53e1e
cdk-go: 1.4.0 -> 1.4.1
2022-09-20 12:51:52 +00:00
Martin Weinelt
5d4267b0f2
Merge remote-tracking branch 'origin/master' into staging-next
2022-09-20 12:25:19 +02:00
Fabian Affolter
575d83db50
silenthound: init at unstable-2022-09-02
2022-09-20 10:59:34 +02:00
R. Ryantm
15d76ebacd
chain-bench: 0.1.3 -> 0.1.4
2022-09-20 06:16:36 +00:00
Fabian Affolter
263f1e2be3
Merge pull request #191772 from fabaff/dbmonster
...
dbmonster: init at unstable-2022-09-17
2022-09-20 08:16:19 +02:00
Martin Weinelt
532dc14743
pass2csv: add setuptools to nativeBuildInputs
2022-09-19 16:06:05 +02:00
Martin Weinelt
76c0169c6e
ioccheck: relax termcolor constraint
2022-09-19 16:06:00 +02:00
Martin Weinelt
b60e4d71d6
python3Packages.python-ldap: rename from ldap
2022-09-19 10:37:49 +02:00
figsoda
2b89580f58
rustscan: 2.0.1 -> 2.1.0, add figsoda as a maintainer
2022-09-18 14:43:04 -04:00
Fabian Affolter
76af739623
dbmonster: init at unstable-2022-09-17
2022-09-18 12:04:47 +02:00
Nick Cao
f9a31522df
clevis: fix build with openssl_3
2022-09-18 16:24:04 +08:00
Fabian Affolter
0aec1e9c1b
graphinder: init at 1.11.5
2022-09-18 09:05:13 +02:00
Vladimír Čunát
f8dcf25486
Merge branch 'master' into staging-next
2022-09-18 07:31:10 +02:00
figsoda
8eb4d4218f
Merge pull request #191692 from r-ryantm/auto-update/otpauth
...
otpauth: 0.4.3 -> 0.5.0
2022-09-17 21:29:04 -04:00
github-actions[bot]
5875423007
Merge master into staging-next
2022-09-18 00:02:44 +00:00
figsoda
1b995f13b9
Merge pull request #191661 from r-ryantm/auto-update/gitls
...
gitls: 1.0.3 -> 1.0.4
2022-09-17 15:01:42 -04:00
R. Ryantm
fc05358607
otpauth: 0.4.3 -> 0.5.0
2022-09-17 18:19:06 +00:00
github-actions[bot]
f2681f8bd1
Merge master into staging-next
2022-09-17 18:01:15 +00:00
Mario Rodas
8bcb6183cf
Merge pull request #191469 from NickCao/nsjail
...
nsjail: 3.0 -> 3.1
2022-09-17 09:16:44 -05:00
R. Ryantm
fb2a9c8fe4
gitls: 1.0.3 -> 1.0.4
2022-09-17 13:32:38 +00:00
R. Ryantm
681a8f27d3
rekor-cli: 0.11.0 -> 0.12.0
2022-09-17 20:28:01 +08:00
Fabian Affolter
7384ad9945
Merge pull request #191596 from viraptor/sx-go-fix-darwin
...
sx-go: fix darwin build
2022-09-17 14:22:00 +02:00
github-actions[bot]
568df7e30a
Merge master into staging-next
2022-09-17 12:01:34 +00:00
Fabian Affolter
f9edfd6df3
Merge pull request #191484 from r-ryantm/auto-update/dalfox
...
dalfox: 2.7.5 -> 2.8.1
2022-09-17 11:56:17 +02:00
Fabian Affolter
af69c8a3ad
sx-go: remove line break
2022-09-17 11:53:28 +02:00
Stanisław Pitucha
4d6eb52bb7
sx-go: fix darwin build
2022-09-17 13:00:41 +10:00
Lein Matsumaru
b61fd54089
exploitdb: 2022-09-02 -> 2022-09-16
2022-09-16 15:26:59 +00:00
github-actions[bot]
c9b3f8501c
Merge master into staging-next
2022-09-16 12:01:25 +00:00
R. Ryantm
ca89fa40f6
dalfox: 2.7.5 -> 2.8.1
2022-09-16 12:01:24 +00:00
Nick Cao
0016b76745
nsjail: 3.0 -> 3.1
2022-09-16 17:39:58 +08:00
R. Ryantm
f5357321ba
cosign: 1.11.1 -> 1.12.0
2022-09-16 16:53:43 +10:00
Dmitry Kalinkin
38077e4262
Merge branch 'master' into staging-next
2022-09-15 12:35:02 -04:00
Vladimír Čunát
6f93907d13
Merge branch 'staging' into staging-next
2022-09-15 15:20:31 +02:00
Fabian Affolter
206b2dc064
Merge pull request #191315 from r-ryantm/auto-update/faraday-cli
...
faraday-cli: 2.1.6 -> 2.1.7
2022-09-15 15:18:27 +02:00
R. Ryantm
01488adce8
faraday-cli: 2.1.6 -> 2.1.7
2022-09-15 11:07:44 +00:00
Luke Granger-Brown
e362b2a400
Merge pull request #191050 from r-ryantm/auto-update/solo2-cli
...
solo2-cli: 0.2.0 -> 0.2.1
2022-09-15 01:11:57 +01:00
Manuel Mendez
8303af8aac
semgrep: 0.108.0 -> 0.112.1 ( #190999 )
2022-09-14 21:52:30 +02:00
github-actions[bot]
0b07cb1528
Merge staging-next into staging
2022-09-13 12:02:05 +00:00
R. Ryantm
61af5d8083
rnp: 0.16.0 -> 0.16.1
2022-09-13 18:48:39 +08:00