Alyssa Ross
3893d6c6d7
gitAndTools: move everything to the top level
...
The comment at the top of git-and-tools/default.nix said:
/* All git-relates tools live here, in a separate attribute set so that users
* can get a fast overview over what's available.
but unfortunately that hasn't actually held up in practice.
Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing. In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c3490196
).
So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix. This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.
The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before. I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Bruno Bigras
94f8a6994e
wrangler: 1.12.3 -> 1.13.0
2021-01-14 15:36:32 -05:00
Sandro
7cb3bffc34
Merge pull request #103030 from tadfisher/remarkable-2-toolchain
...
remarkable2-toolchain: init at 2.5.2
2021-01-14 21:03:32 +01:00
github-actions[bot]
183b673b64
Merge master into staging-next
2021-01-14 18:54:05 +00:00
Le Anh Duc
a0a4feb0de
checkov: init at 1.0.674
2021-01-15 03:26:38 +09:00
Sandro
97259d0e38
Merge pull request #109353 from alyssais/ydiff
...
ydiff,gitAndTools.ydiff: unify
2021-01-14 15:30:55 +01:00
github-actions[bot]
730ff71234
Merge master into staging-next
2021-01-14 12:42:20 +00:00
Sandro
487c6c5e68
Merge pull request #109321 from rvolosatovs/update/gofumpt
...
gofumpt: 2020-10-27 -> 0.1.0
2021-01-14 13:27:16 +01:00
Sandro
67343245f9
Merge pull request #109314 from rvolosatovs/update/gotools
...
gotools: 2020-10-27 -> 2021-01-13
2021-01-14 13:22:46 +01:00
Alyssa Ross
98c3490196
ydiff,gitAndTools.ydiff: unify
...
We were packaging ydiff twice!
In this patch, I've merged the two expressions into one, trying to
take the best of each. ydiff (top-level) didn't support being used as
a Python library, which is required by one other package (patroni), so
I chose gitAndTools.ydiff as the starting point, then moved in the
longDescription from the top-level one, as well as the code used to
run the tests.
While I was there, I fixed the tests, which were intended to be run by
the top-level ydiff but actually were not, because unlike mkDerivation
buildPythonApplication will not run `make test' by default.
Also, top-level ydiff previously propagated less and patchutils,
meaning they'd have been installed globally instead of just referenced
by ydiff. gitAndTools.ydiff just did nothing. Both also expected to
find git, hg, and svn in the environment, which was impure. So now
all these programs are referenced by store path from ydiff, for
purity.
2021-01-14 10:38:16 +00:00
Sandro
8fcb5db84c
Merge pull request #109306 from flokli/dbmate-remove-deps
...
dbmate: remove deps.nix
2021-01-14 07:48:28 +01:00
github-actions[bot]
d247d74ff9
Merge master into staging-next
2021-01-14 06:44:24 +00:00
Sandro
67744a8a40
Merge pull request #109290 from TredwellGit/electron_11
...
electron_11: 11.1.0 -> 11.2.0
2021-01-14 07:34:05 +01:00
Jörg Thalheim
ff22087bd0
Merge pull request #109304 from Pamplemousse/radare2
...
radare2: Minor cleaning in expression
2021-01-14 05:47:00 +00:00
Jan Tojnar
b813710c04
Merge branch 'master' into staging-next
2021-01-14 02:24:17 +01:00
Tad Fisher
cf20c83c41
remarkable2-toolchain: init at 2.5.2
2021-01-13 15:39:31 -08:00
Roman Volosatovs
ebd91a3fb3
gofumpt: 2020-10-27 -> 0.1.0
2021-01-13 22:17:38 +01:00
Roman Volosatovs
4124b7f68e
gotools: 2020-10-27 -> 2021-01-13
2021-01-13 21:41:01 +01:00
Florian Klink
3dcd713d19
dbmate: remove deps.nix
...
This file wasn't removed when switching to buildGoModule, but is unused.
2021-01-13 20:21:26 +01:00
Pamplemousse
25d3912133
radare2: Minor cleaning in expression
...
Upstream is fixed: Removing this line does not break the build.
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
2021-01-13 11:46:17 -07:00
adisbladis
4003f8cbc7
treewide: emacsPackages -> emacs.pkgs & emacsWithPackages -> emacs.pkgs.withPackages
...
The previous names are now aliases and shouldn't be used anywhere inside nixpkgs.
2021-01-13 17:13:10 +01:00
TredwellGit
e6b1439ac2
electron_11: 11.1.0 -> 11.2.0
...
https://github.com/electron/electron/releases/tag/v11.2.0
2021-01-13 16:00:15 +00:00
06kellyjac
859a64428d
tokei: 12.1.1 -> 12.1.2
2021-01-13 11:26:09 +00:00
sternenseemann
c955b30d4c
dune-release: fix tests for newer git versions
...
Newer git versions show a hint when calling `git init` to set the
default initial branch to something like 'main'. This obviously is
printed to stderr and thus not hidden by `> /dev/null`. We fix the
ensuing test failure by setting a branch in the invocation.
2021-01-13 09:54:56 +01:00
Jonathan Ringer
bb243b19e8
aws-sam-cli: fix build
2021-01-12 23:20:45 -08:00
Christian Kampka
0fd3afc1b2
texi2html: Fix cross-platform build
2021-01-12 20:45:24 +01:00
github-actions[bot]
f47a1ddfe4
Merge master into staging-next
2021-01-12 18:47:24 +00:00
Sandro
af87855d6b
Merge pull request #109119 from Mic92/radare2
...
radare2: 4.5.1 -> 5.0.0
2021-01-12 19:15:15 +01:00
Sandro
6071c0b71d
Merge pull request #108908 from moaxcp/jbang
...
jbang: init at 0.58.0
2021-01-12 17:03:09 +01:00
Jörg Thalheim
23da8a6f50
radare2: 4.5.1 -> 5.0.0
2021-01-12 16:04:16 +01:00
Jörg Thalheim
3364d09e4c
strace: mpers check always
...
this fix pkgsStatic on x86 build where we don't support 32bit yet.
2021-01-12 13:10:38 +01:00
github-actions[bot]
bfcc20a149
Merge master into staging-next
2021-01-12 06:34:30 +00:00
John Mercier
1288812ae0
jbang: init at 0.58.0
2021-01-11 21:52:55 -05:00
Benjamin Hipple
dc04eb3eeb
Merge pull request #109044 from zowoq/skopeo
...
skopeo: 1.2.0 -> 1.2.1
2021-01-11 21:46:18 -05:00
github-actions[bot]
32a46d68f3
Merge master into staging-next
2021-01-12 01:04:47 +00:00
Petter S. Storvik
c7d8d75e8e
clpm: init at 0.3.5 ( #108849 )
2021-01-11 23:08:42 +01:00
zowoq
a5c8741dd9
skopeo: 1.2.0 -> 1.2.1
...
https://github.com/containers/skopeo/releases/tag/v1.2.1
2021-01-12 05:40:55 +10:00
Jan Tojnar
2b9372b2ca
Merge branch 'master' into staging-next
2021-01-11 13:36:42 +01:00
Profpatsch
4a7f99d55d
treewide: with stdenv.lib; in meta -> with lib;
...
Part of: https://github.com/NixOS/nixpkgs/issues/108938
meta = with stdenv.lib;
is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.
This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.
The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
github-actions[bot]
75bb36a66f
Merge staging-next into staging
2021-01-11 06:33:34 +00:00
github-actions[bot]
db7b9735f9
Merge master into staging-next
2021-01-11 06:33:30 +00:00
Mario Rodas
bd4c31411e
Merge pull request #108971 from marsam/update-tflint
...
tflint: 0.23.0 -> 0.23.1
2021-01-10 20:35:37 -05:00
Sandro
e9bebb34e8
Merge pull request #108093 from mjlbach/init_sumneko_lua
2021-01-11 02:19:52 +01:00
Jan Tojnar
88c998fb21
Merge branch 'staging-next' into staging
2021-01-10 23:24:57 +01:00
Jan Tojnar
dd72357155
Merge branch 'master' into staging-next
2021-01-10 23:24:33 +01:00
Doron Behar
d68b34650f
Merge pull request #108965 from MetaDark/texlab
2021-01-10 23:56:03 +02:00
Sandro
d085417683
Merge pull request #108970 from xaverdh/pkgs-stdenv-lib
...
treewide: simplify pkgs.stdenv.lib -> pkgs.lib
2021-01-10 22:47:38 +01:00
zowoq
59db4d32df
gotools: drop unnecessary optional excludedPackages
2021-01-11 06:00:38 +10:00
Michael Lingelbach
a57ba9ea13
sumneko-lua-language-server: init at 1.11.2
2021-01-10 11:43:55 -08:00
Dominik Xaver Hörl
25bef2d8f9
treewide: simplify pkgs.stdenv.lib -> pkgs.lib
...
The library does not depend on stdenv, that `stdenv` exposes `lib` is
an artifact of the ancient origins of nixpkgs.
2021-01-10 20:12:06 +01:00
Kira Bruneau
f0e9d7e658
texlab: 2.2.1 -> 2.2.2
2021-01-10 11:55:02 -05:00
Mario Rodas
629b34fe2c
tflint: 0.23.0 -> 0.23.1
...
https://github.com/terraform-linters/tflint/releases/tag/v0.23.1
2021-01-10 11:53:00 -05:00
Bernardo Meurer
306aefd9fc
binutils: 2.34 -> 2.35.1
2021-01-10 16:09:25 +01:00
Frederik Rietdijk
0c42bb5027
Merge master into staging-next
2021-01-10 15:50:49 +01:00
Sandro
14081f6a78
Merge pull request #108845 from 06kellyjac/conftest
...
conftest: 0.22.0 -> 0.23.0
2021-01-10 08:12:36 +01:00
Sandro
eeee857ef8
Merge pull request #108875 from dbueno/fix/cflow-darwin-update
...
cflow: include darwin
2021-01-10 08:11:16 +01:00
github-actions[bot]
add2d89082
Merge master into staging-next
2021-01-10 06:32:12 +00:00
Mario Rodas
3eb5fb31ac
Merge pull request #108896 from onsails/terraform-ls
...
terraform-ls: 0.11.0 -> 0.12.0
2021-01-09 20:19:37 -05:00
github-actions[bot]
433c7b069c
Merge master into staging-next
2021-01-10 01:03:35 +00:00
Andrey Kuznetsov
823848a6d6
terraform-ls: 0.11.0 -> 0.12.0
2021-01-09 23:52:38 +00:00
Mario Rodas
6de3017330
Merge pull request #108886 from zowoq/ecc
...
editorconfig-checker: 2.2.0 -> 2.3.1
2021-01-09 18:28:21 -05:00
zowoq
54d89e7ffc
buildah: 1.18.0 -> 1.19.0
...
https://github.com/containers/buildah/releases/tag/v1.19.0
2021-01-10 06:51:26 +10:00
zowoq
e39dd05e66
editorconfig-checker: 2.2.0 -> 2.3.1
...
https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/2.3.0
https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/2.3.1
2021-01-10 06:45:55 +10:00
github-actions[bot]
fcbe48c797
Merge master into staging-next
2021-01-09 18:41:27 +00:00
Denis Bueno
d5eb22ffe3
cflow: include darwin
...
cflow no longer errors out on darwin
2021-01-09 10:24:46 -07:00
Vincent Laporte
b3351951b0
ocamlPackages.camlp5: 7.13 → 7.14
2021-01-09 14:00:53 +01:00
06kellyjac
473ead7488
conftest: 0.22.0 -> 0.23.0
2021-01-09 10:49:30 +00:00
github-actions[bot]
e251591528
Merge master into staging-next
2021-01-09 01:00:25 +00:00
Peter Simons
c25fc73a81
Merge pull request #108252 from NixOS/haskell-updates
...
Update Haskell package set to Stackage Nightly 2021-01-02 (plus other fixes)
2021-01-08 21:36:14 +01:00
Malte Brandy
7829f94244
haskelPackages.haskell-language-server: 0.7.1 -> 0.8.0
2021-01-08 20:57:02 +01:00
github-actions[bot]
f89e74dbcc
Merge master into staging-next
2021-01-08 18:37:56 +00:00
github-actions[bot]
ecebf82121
Merge master into staging-next
2021-01-08 12:29:36 +00:00
Alvar Penning
757889019b
golangci-lint: 1.33.0 -> 1.35.0
2021-01-08 11:12:07 +01:00
Mario Rodas
0946f962f4
nimlsp: init at 0.2.6
...
Co-authored-by: nbonfils <nbonfils@users.noreply.github.com>
2021-01-08 11:04:25 +01:00
Sandro
aaee60c696
Merge pull request #108706 from ruuda/fcct090
...
fedora-coreos-config-transpiler: 0.8.0 -> 0.9.0
2021-01-08 09:39:37 +01:00
Jan Tojnar
e6c0c98940
Merge branch 'master' into staging-next
...
zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
2021-01-08 02:07:34 +01:00
Sandro
4e56648708
Merge pull request #108682 from NobbZ/lttng-ust-python3
2021-01-07 23:00:00 +01:00
Peter Simons
b6ba72e0e0
Merge remote-tracking branch 'origin/master' into haskell-updates.
2021-01-07 21:50:50 +01:00
Sandro
fe9d3a4f26
Merge pull request #108683 from marsam/update-rubocop
...
rubocop: 1.1.0 -> 1.8.0
2021-01-07 21:35:25 +01:00
github-actions[bot]
5c072a088d
Merge master into staging-next
2021-01-07 18:40:50 +00:00
asymmetric
d80ba82f2e
gopls: 0.5.3 -> 0.6.2 ( #108702 )
2021-01-07 18:38:46 +00:00
Ruud van Asseldonk
dd6810066a
fedora-coreos-config-transpiler: 0.8.0 -> 0.9.0
2021-01-07 19:20:23 +01:00
Doron Behar
f211631c1c
Merge pull request #108690 from MetaDark/texlab
...
texlab: 2.2.0 -> 2.2.1
2021-01-07 19:50:35 +02:00
Kira Bruneau
5383c549b7
texlab: 2.2.0 -> 2.2.1
2021-01-07 11:09:48 -05:00
Norbert Melzer
701ece608b
lttng-ust: python2 => python3
...
whitespace cleanup
2021-01-07 16:13:07 +01:00
github-actions[bot]
a544214cae
Merge master into staging-next
2021-01-07 12:27:10 +00:00
Jan Tojnar
f19eb635b4
Merge branch 'master' into staging-next
...
b04fc593e7
seems to have accidentally changed mkDerivation function for dfilemanager and solarus-quest-editor so I have reverted that here.
2021-01-07 13:04:31 +01:00
Sandro
31eeb468ed
Merge pull request #108621 from onsails/tabnine
...
tabnine: 3.1.1 -> 3.2.63
2021-01-07 12:42:02 +01:00
Sandro
8803216aa0
Merge pull request #108658 from marsam/update-timescaledb-tune
...
timescaledb-tune: 0.9.0 -> 0.10.0
2021-01-07 12:41:38 +01:00
Sandro
7087244dff
Merge pull request #108655 from marsam/update-buildkit
2021-01-07 12:32:31 +01:00
Sandro
e3dc56f40c
Merge pull request #108630 from Chili-Man/kustomize-3.9.1-update
...
kustomize: 3.8.7 -> 3.9.1
2021-01-07 12:20:12 +01:00
Sandro
e246b90ad2
Merge pull request #108620 from tckmn/pry-0.13.1
...
pry: 0.12.2 -> 0.13.1
2021-01-07 11:23:38 +01:00
Sandro
7c3f3c70c4
Merge pull request #108599 from yusdacra/add-tug
2021-01-07 11:15:55 +01:00
Andrey Kuznetsov
daf463b576
tabnine: 3.1.1 -> 3.2.63
2021-01-07 09:27:03 +00:00
Mario Rodas
a853e00e9d
rubocop: 1.1.0 -> 1.8.0
2021-01-07 04:20:00 +00:00
Mario Rodas
24b589bbcd
timescaledb-tune: 0.9.0 -> 0.10.0
2021-01-07 04:20:00 +00:00
Mario Rodas
e9b490b47d
buildkit: 0.8.0 -> 0.8.1
...
https://github.com/moby/buildkit/releases/tag/v0.8.1
2021-01-07 04:20:00 +00:00
Diego Rodriguez
1d7a4ea45f
kustomize: 3.8.7 -> 3.9.1
2021-01-06 18:49:39 -07:00
Sandro
0cfa3979b4
Merge pull request #108596 from oxalica/rust-analyzer
2021-01-07 02:48:11 +01:00
(cdep)illabout
be17beade1
spago: 0.18 -> 0.19
2021-01-07 10:17:52 +09:00
Andy Tockman
35eb8b7b9b
pry: 0.12.2 -> 0.13.1
2021-01-06 16:38:32 -06:00
Yusuf Bera Ertan
c6ff52406f
turbogit: init at v1.2.0
2021-01-06 23:48:18 +03:00
oxalica
4c247d7729
rust-analyzer: 2020-11-09 -> 2021-01-04
2021-01-07 03:16:02 +08:00
Timo Kaufmann
313816590b
Merge pull request #108328 from ericdallo/bump-clojure-lsp
...
clojure-lsp: 20201228T020543 -> 2021.01.03-00.42.23
2021-01-06 17:58:13 +01:00
Sandro
0425b4c1d1
Merge pull request #108549 from marsam/update-tflint
...
tflint: 0.22.0 -> 0.23.0
2021-01-06 12:09:30 +01:00
Sandro
fd0c2add78
Merge pull request #108555 from Enzime/remove/maintainer-status
...
treewide: stop maintaining most packages
2021-01-06 11:42:54 +01:00
Michael Hoang
31f9051cf6
treewide: stop maintaining most packages
2021-01-06 17:06:03 +11:00
Orivej Desh
de753c64f9
hydraUnstable: patch to support nixUnstable 2.4pre20201205_a5d85d0
...
Upstream PR: https://github.com/NixOS/hydra/pull/840
2021-01-06 06:05:52 +00:00
Mario Rodas
2e7968e494
tflint: 0.22.0 -> 0.23.0
...
https://github.com/terraform-linters/tflint/releases/tag/v0.23.0
2021-01-05 22:39:45 -05:00
Vincent Laporte
6b0396351e
ocamlPackages.lambdaTerm: 2.0.3 → 3.1.0
...
ocamlPackages.utop: 2.4.3 → 2.6.0
2021-01-05 18:23:20 +01:00
Doron Behar
d9dba88d08
Merge pull request #106742 from freezeboy/migrate-qt515
2021-01-05 19:05:55 +02:00
oxalica
44a8cf19b1
rust-analyzer: fix update script
2021-01-05 23:37:09 +08:00
github-actions[bot]
0e4e47512d
Merge master into staging-next
2021-01-05 00:56:58 +00:00
Maximilian Bosch
61b8a2c720
rustracer: 2.1.35 -> 2.1.40, fix build
...
Failing build: https://hydra.nixos.org/build/134175791
ChangeLog: https://github.com/racer-rust/racer/blob/v2.1.40/CHANGELOG.md
A few more things are worth noting:
* It's not possible to update to latest version (2.1.42) at the time of
committing since this requires a newer `rustc` (1.51 to be precise) to
compile.
* For proper completion, `rustLibSrc` rather than `rustcSrc` must be
used now. The two were separated here previously[1].
* Dropped the `checkPhase` and replaced it with a list of `checkFlags`.
This has the benefit that the default `checkPhase` from
`buildRustPackage` can be used which properly configures parallelism
and which target to use (i.e. `release` in this case which reduces
build time).
[1] 68060f6f6f
2021-01-04 21:20:42 +01:00
Frederik Rietdijk
b20838eb4a
Merge staging-next into staging
2021-01-04 20:51:32 +01:00
freezeboy
7aaadab55c
solarus,solarus-quest-editor: migrate to Qt5.15
2021-01-04 16:24:05 +01:00
Anderson Torres
a5c848382c
Merge pull request #108261 from AndersonTorres/updates
...
Misc updates
2021-01-04 10:17:22 -03:00
Eelco Dolstra
f6e519f39e
Merge pull request #96495 from Mindavi/lcov-1.15
...
lcov: 1.14 -> 1.15
2021-01-04 13:51:49 +01:00
github-actions[bot]
f0187a2cf3
Merge staging-next into staging
2021-01-04 12:26:43 +00:00
Sandro
63750b466a
Merge pull request #107533 from sternenseemann/fix-sourcetrail
2021-01-04 12:38:51 +01:00
AndersonTorres
5ccb5d4ca3
dialog: 1.3-20190211 -> 1.3-20201126
2021-01-03 23:16:18 -03:00
github-actions[bot]
581059aed4
Merge staging-next into staging
2021-01-04 00:57:38 +00:00
Rick van Schijndel
08b12f6385
lcov: 1.14 -> 1.15
2021-01-03 22:16:33 +01:00
John Ericson
b3f29f3817
Merge pull request #107238 from Ericson2314/no-static-overlay
...
treewide: Start to break up static overlay
2021-01-03 15:15:49 -05:00
John Ericson
f52263ced0
treewide: Start to break up static overlay
...
We can use use `stdenv.hostPlatform.isStatic` instead, and move the
logic per package. The least opionated benefit of this is that it makes
it much easier to replace packages with modified ones, as there is no
longer any issue of overlay order.
CC @FRidh @matthewbauer
2021-01-03 19:18:16 +00:00
github-actions[bot]
07165c7226
Merge staging-next into staging
2021-01-03 18:38:32 +00:00
John Ericson
b03fdcc7f9
Merge pull request #108300 from siraben/parallel-cmake
...
treewide: remove enableParallelBuilding = true if using cmake
2021-01-03 13:22:09 -05:00
Maximilian Bosch
0d9e4d223f
Merge pull request #108064 from oxalica/bump/cargo-flamegraph
...
cargo-flamegraph: 0.3.0 -> 0.4.0 and clean up
2021-01-03 19:17:54 +01:00
Eric Dallo
b12b7f96ad
clojure-lsp: 20201228T020543 -> 2021.01.03-00.42.23
2021-01-03 12:52:48 -03:00
06kellyjac
418f4e11d6
tokei: 12.0.4 -> 12.1.1
2021-01-03 15:26:03 +00:00
Maximilian Bosch
2e811acdce
Merge pull request #108279 from otavio/new-pkgs/cargo-wipe
...
cargo-wipe: init at 0.3.0
2021-01-03 14:56:12 +01:00
github-actions[bot]
0649757570
Merge staging-next into staging
2021-01-03 12:24:59 +00:00
Austin Seipp
b7c5fe8741
trellis: 2020.11.25 -> 2021.01.02
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-03 06:06:33 -06:00
Austin Seipp
9a3b4e19bb
icestorm: 2020.08.19 -> 2020.12.04
...
Adds I2C/SPI support for iCE40 u4k devices (iCE5LP4K?)
PyPy3 is apparently broken for now in the wake of the gcc/glibc upgrade,
so just skip it for now.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-03 06:06:33 -06:00
Ben Siraphob
3ae5e6ce03
treewide: remove enableParallelBuilding = true if using cmake
2021-01-03 18:37:40 +07:00
Joe Hermaszewski
cbc4bd9971
vulkan: 1.2.141 -> 1.2.162
...
Also improve metadata for vulkan-validation-layers
2021-01-03 11:03:42 +00:00
zowoq
fb2311d430
Merge staging-next into staging
2021-01-03 16:33:28 +10:00
Otavio Salvador
95d7fc7530
cargo-wipe: init at 0.3.0
...
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2021-01-02 22:26:17 -03:00
github-actions[bot]
ec161d2240
Merge master into staging-next
2021-01-02 12:24:09 +00:00
Attila Koszo
2320652792
electron: fix tray icon in wayland
2021-01-02 12:28:30 +01:00
Doron Behar
d4a76b1f5f
Merge pull request #106688 from alyssais/autoconf-license
...
autoconf: license is GPLv3+
2021-01-01 10:02:57 +02:00
Ben Siraphob
b04fc593e7
treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
2021-01-01 11:52:33 +07:00
github-actions[bot]
999c670119
Merge master into staging-next
2021-01-01 00:56:14 +00:00
Lassulus
3c3901b242
Merge pull request #107312 from Tomahna/metals
...
metals: 0.9.7 -> 0.9.8
2021-01-01 00:16:41 +01:00
Sandro
e79ddcf8c9
Merge pull request #108078 from svrana/wire
...
wire: init at v0.4.0
2020-12-31 23:12:37 +01:00
Shaw Vrana
9e4e26d922
wire: init at v0.4.0
2020-12-31 12:52:10 -08:00
Sandro
30ec6cf329
Merge pull request #107979 from Lassulus/yarn2nix_codeload
2020-12-31 20:31:22 +01:00
github-actions[bot]
5dffe03f30
Merge master into staging-next
2020-12-31 18:42:41 +00:00
oxalica
9555996b1d
cargo-flamegraph: 0.3.0 -> 0.4.0 and clean up
2021-01-01 01:25:03 +08:00
Martin Weinelt
f1079ad898
Merge pull request #92531 from mmilata/mpfshell-2020-04-11
...
mpfshell: 0.8.1 -> unstable-2020-04-11
2020-12-31 15:52:34 +01:00
Pavol Rusnak
93f3602ebc
Merge pull request #108016 from thiagokokada/bump-hover
...
hover: 0.43.0 -> 0.46.1
2020-12-31 13:37:32 +01:00
Frederik Rietdijk
e823016e66
Merge master into staging-next
2020-12-31 13:29:32 +01:00
Vincent Laporte
d9c71767bd
ocamlPackages.merlin: 3.4.0 → 3.4.2
2020-12-31 08:17:21 +01:00
Sandro
cb3972bc3b
Merge pull request #108014 from evils/openocd
...
openocd: unstable-2020-11-11 -> 0.11.0-rc1
2020-12-31 05:58:49 +01:00
Thiago Kenji Okada
7002108e07
hover: 0.43.0 -> 0.46.1
2020-12-31 00:25:31 -03:00
Evils
f7c194204d
openocd: unstable-2020-11-11 -> 0.11.0-rc1
2020-12-31 03:38:55 +01:00
github-actions[bot]
e75c8744cb
Merge master into staging-next
2020-12-30 18:40:45 +00:00
lassulus
32c9918ba6
yarn2nix: Handle codeload.github.com tarballs
...
This was submitted originally in https://github.com/nix-community/yarn2nix/pull/130
2020-12-30 19:01:48 +01:00
Vincent Laporte
ac02f26980
ocamlPackages.cppo: 1.6.{5,6} → 1.6.7
...
ocamlPackages.cppo_ocamlbuild: init at 1.6.7
2020-12-30 15:04:11 +01:00
github-actions[bot]
099a83caba
Merge master into staging-next
2020-12-30 12:24:47 +00:00
Profpatsch
d5deb8c9a9
Merge pull request #107514 from Profpatsch/tree-sitter-fetch-all-grammars
...
Tree sitter fetch all grammars
2020-12-30 12:00:39 +01:00
github-actions[bot]
056304189c
Merge master into staging-next
2020-12-30 06:22:20 +00:00
Anderson Torres
2518b486ef
Merge pull request #107809 from thiagokokada/bump-clojure-lsp
...
clojure-lsp: 20201207T142850 -> 20201228T020543
2020-12-30 01:15:30 -03:00
github-actions[bot]
31fc475812
Merge master into staging-next
2020-12-30 00:53:01 +00:00
Daniel Nagy
dff920b89c
sqlitebrowser: 3.12.0 -> 3.12.1
2020-12-29 22:30:31 +01:00
Matthias Beyer
4b987925cf
cargo-deny: Disable tests
...
Because nobody told me how to add the missing cargo-metadata command to
the test environment and the PR for updating this package is almost
half a year old, disable tests now.
Hopefully someone will step up and fix this, but I doubt it.
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-29 21:13:40 +01:00
Matthias Beyer
9a550661a7
cargo-deny: 0.8.4 -> 0.8.5
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-29 21:13:40 +01:00
Matthias Beyer
5f9b236728
Cargo-deny: 0.8.2 -> 0.8.4
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-29 21:13:40 +01:00
Matthias Beyer
4689c606e7
cargo-deny: 0.7.3 -> 0.8.2
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-29 21:13:40 +01:00
Matthias Beyer
9cd2b88942
cargo-deny: 0.7.2 -> 0.7.3
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-29 21:13:39 +01:00
Matthias Beyer
e0eca243bd
cargo-deny: 0.7.0 -> 0.7.2
2020-12-29 21:13:39 +01:00
Profpatsch
00359f25e2
tree-sitter: test building of grammars
2020-12-29 13:54:29 +01:00
Profpatsch
0181e103b3
tree-sitter: update grammars again with new update script
2020-12-29 13:06:41 +01:00
Profpatsch
5f0ace20af
tree-sitter/update: allow grammars to be fetched from other orgas
...
Some of the grammars are not in the official orga, like
tree-sitter-lua, so we make sure the updater knows how to fetch them.
2020-12-29 13:02:39 +01:00
Profpatsch
b4ff78a45b
tree-sitter/update: pull repo argument into the nix code
2020-12-29 13:02:39 +01:00
Profpatsch
0b1bfd7d14
tree-sitter/update: make the repo check into a boolean test
2020-12-29 13:02:38 +01:00
Profpatsch
d2988dac8e
tree-sitter/update: factor repo list into nix
...
We want the ability to add different orga repos as well, and that is a
lot easier on the nix level.
2020-12-29 13:02:38 +01:00
Profpatsch
a32c5d90e7
tree-sitter: update grammars
...
The new update scripts gives us a bunch of new grammars!
2020-12-29 12:46:30 +01:00
Profpatsch
c0a4b41afe
tree-sitter: improve update script to fetch all available grammars
...
The update script would only fetch the few grammars listed in the
tree-sitter repository previously. But the tree-sitter github orga has
a rather large amount of officially supported grammars.
Thus we change the script to query the github APIs for repositories
instead (up to 100 this is supported without paging).
Since the repository list also contains some that are not grammars,
there is a bash script which lists all repos we are aware of and the
ones we want to ignore. It will make sure we don’t forget any
repositories in the future, by comparing to the actual list with jq.
2020-12-29 12:46:30 +01:00
Profpatsch
a629257ec5
tree-sitter: rename library.nix to grammar.nix
2020-12-29 12:46:30 +01:00
Ben Siraphob
8b4c20215a
impl: unstable-2019-11-19 -> 1.0.0
2020-12-29 18:31:14 +07:00
github-actions[bot]
0984deb2b8
Merge master into staging-next
2020-12-29 06:22:28 +00:00
Mario Rodas
b460856e72
flow: 0.139.0 -> 0.141.0
2020-12-29 04:20:00 +00:00
Sandro
dcd375d236
Merge pull request #105269 from dukc/dubUpdate
...
dub: 1.14.0 -> 1.23.0
2020-12-29 04:41:50 +01:00
github-actions[bot]
c86ce50258
Merge master into staging-next
2020-12-29 00:51:31 +00:00
Sandro
2fc9a0d021
Merge pull request #107823 from freezeboy/update-quicktemplate
...
quicktemplate: unstable-2019-07-08 -> 1.6.3
2020-12-29 01:05:03 +01:00
Sandro
405d762a1a
Merge pull request #107738 from pacien/mdctags-init
...
mdctags: init at unstable-2020-06-11
2020-12-29 00:53:26 +01:00
freezeboy
69b69f4a82
statik: unstable-2019-07-31 -> 0.1.7
2020-12-28 21:47:12 +01:00
github-actions[bot]
ac03278035
Merge master into staging-next
2020-12-28 18:34:55 +00:00
freezeboy
e1798efbdb
quicktemplate: unstable-2019-07-08 -> 1.6.3
2020-12-28 19:20:36 +01:00
Martin Milata
a931ec9cdf
mpfshell: 0.8.1 -> unstable-2020-04-11
2020-12-28 18:15:24 +01:00
Thiago Kenji Okada
7923d595e8
clojure-lsp: 20201207T142850 -> 20201228T020543
...
Also, switch to packaging uberjar instead of rewriting the lein-bin
file.
2020-12-28 13:01:28 -03:00
Tim Steinbach
d7a66c7d4d
sbt-extras: 2020-12-17 → 2020-12-26
2020-12-28 10:48:03 -05:00
github-actions[bot]
d5506c4c59
Merge master into staging-next
2020-12-28 12:24:08 +00:00
Peter Hoeg
7505046458
shards: minor cleanups
2020-12-28 16:21:23 +08:00
luc65r
968805c37b
Revert "Revert "Revert "Revert "libbfd: fix build""""
...
This reverts commit 5c2b59d63a
.
2020-12-28 08:43:32 +01:00
luc65r
dde943e535
Revert "Revert "Merge pull request #86954 from lovesegfault/binutils-2.34""
...
This reverts commit 24c96b9259
.
2020-12-28 08:43:32 +01:00
luc65r
3205b32bf6
Revert commits on binutils for OpenRISC 1000
...
This reverts commits
ebd89f6de1
c6f6db77ac
257fb62387
dbe556af9c
2020-12-28 08:43:31 +01:00
github-actions[bot]
9ddbef87ec
Merge staging-next into staging
2020-12-28 00:51:04 +00:00
Mario Rodas
076afb51b2
Merge pull request #107743 from freezeboy/update-circleci-cli
...
circleci-cli: 0.1.11508 -> 0.1.11540
2020-12-27 19:19:26 -05:00