Commit graph

3789 commits

Author SHA1 Message Date
Sandro 81e3b9d15b
Merge pull request #110670 from siraben/double-quotes-fix
treewide: fix double quoted strings in one-liners
2021-01-24 16:17:14 +01:00
volth bc0d605cf1 treewide: fix double quoted strings in meta.description
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2021-01-24 19:56:59 +07:00
Ning Zhang 7b358c6e7a grpc-tools: init at 1.10.0 2021-01-24 20:36:46 +11:00
Sandro c58219fff6
Merge pull request #110467 from teto/luarocks-update 2021-01-24 03:18:07 +01:00
Ben Siraphob c522fec274 pkgs/development/tools: stdenv.lib -> lib 2021-01-23 20:30:03 +07:00
Doron Behar f9c6e07c67 treewide: Remove usages of stdenv.lib by @doronbehar
Per: https://github.com/NixOS/nixpkgs/issues/108938
2021-01-23 10:52:19 +02:00
Matthieu Coudron 2db2a966ea luarocks-nix: update 20190907 -> 20210122
rebased on top of luarocks 3.5
2021-01-22 22:47:26 +01:00
Sandro 9a92886922
Merge pull request #110395 from zowoq/gemset 2021-01-22 09:31:07 +01:00
Dmitry Kalinkin 55e8a35caf
Merge pull request #109422 from veprbl/pr/binutils_use_gold_darwin_cross
binutils: enable gold when cross compiling on darwin
2021-01-21 18:47:25 -05:00
zowoq 59b83c43e0 treewide: add final newline 2021-01-22 07:18:04 +10:00
R. RyanTM afc9f15172
circleci-cli: 0.1.11756 -> 0.1.11924 (#110333) 2021-01-21 09:49:57 -08:00
R. RyanTM 303ccb9760 clojure-lsp: 2021.01.16-03.28.20 -> 2021.01.20-01.39.32 2021-01-21 13:31:34 +00:00
zowoq 932941b79c treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-21 13:29:54 +10:00
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
R. RyanTM 366bfd5cac cproto: 4.7q -> 4.7r 2021-01-19 09:36:21 +00:00
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ryan Mulligan 5f9ed9811f
Merge pull request #109752 from r-ryantm/auto-update/clojure-lsp
clojure-lsp: 2021.01.03-00.42.23 -> 2021.01.16-03.28.20
2021-01-18 06:15:06 -08:00
Sandro 9b12ed9f01
Merge pull request #109750 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.11540 -> 0.1.11756
2021-01-18 14:29:32 +01:00
R. RyanTM a6e22e0655 clojure-lsp: 2021.01.03-00.42.23 -> 2021.01.16-03.28.20 2021-01-18 13:17:03 +00:00
R. RyanTM 844cf3ad1a circleci-cli: 0.1.11540 -> 0.1.11756 2021-01-18 13:01:07 +00:00
R. RyanTM e3fd71aebc ccls: 0.20201025 -> 0.20201219 2021-01-18 12:37:57 +00:00
Sandro 20b4edc772
Merge pull request #109715 from zakame/updates/act-0.2.18
act: 0.2.17 -> 0.2.18
2021-01-18 10:54:09 +01:00
Zak B. Elep c6aab40c9d act: 0.2.17 -> 0.2.18 2021-01-18 16:42:56 +08:00
Jörg Thalheim 1279bf812c
Merge remote-tracking branch 'upstream/master' into HEAD 2021-01-17 18:08:59 +01:00
Guillaume Girol 47d121591c
Merge pull request #97093 from kampka/texi2html
texi2html: Fix cross-platform build
2021-01-17 15:41:34 +00:00
github-actions[bot] 9f69dadafd
Merge master into staging-next 2021-01-15 01:16:33 +00:00
Dmitry Kalinkin 9120da4c4a
binutils: enable gold when cross compiling on darwin
This basically reverts:
 - 3c5188cc ('binutils: disable gold when building on darwin')
 - 457b48cc ('binutils: apply patch when cross compiling from darwin')

Tested by building:
 - nix build -f . pkgsCross.i686-embedded.buildPackages.binutils
 - nix build -f . pkgsCross.aarch64-embedded.buildPackages.binutils
2021-01-14 19:06:22 -05:00
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
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
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
06kellyjac 859a64428d tokei: 12.1.1 -> 12.1.2 2021-01-13 11:26:09 +00: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
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
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
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
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 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
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
Denis Bueno d5eb22ffe3 cflow: include darwin
cflow no longer errors out on darwin
2021-01-09 10:24:46 -07:00
github-actions[bot] ecebf82121
Merge master into staging-next 2021-01-08 12:29:36 +00: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
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
github-actions[bot] 5c072a088d
Merge master into staging-next 2021-01-07 18:40:50 +00: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
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
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
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
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
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
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
Ben Siraphob 3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07: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
Frederik Rietdijk e823016e66 Merge master into staging-next 2020-12-31 13:29:32 +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
Evils f7c194204d openocd: unstable-2020-11-11 -> 0.11.0-rc1 2020-12-31 03:38:55 +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] c86ce50258
Merge master into staging-next 2020-12-29 00:51:31 +00: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
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
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
Mario Rodas 69a194eafe
Merge pull request #107691 from marsam/update-terracognita
terracognita: 0.5.1 -> 0.6.0
2020-12-27 19:04:19 -05:00
Sandro a1e8f892a6
Merge pull request #101431 from djanatyn/pkg/rtss
rtss: init at 0.6.1
2020-12-27 23:31:57 +01:00
freezeboy 0abd5d719e circleci-cli: 0.1.11508 -> 0.1.11540 2020-12-27 19:06:42 +01:00
pacien d5cf453947 mdctags: init at unstable-2020-06-11 2020-12-27 18:24:15 +01:00
github-actions[bot] 9c87ad5a33
Merge staging-next into staging 2020-12-27 00:51:02 +00:00
kvwu 0efeb2e100 sccache: 0.2.13 -> 0.2.14 2020-12-25 23:39:41 -08:00
Mario Rodas cca9e98828 terracognita: 0.5.1 -> 0.6.0
https://github.com/cycloidio/terracognita/releases/tag/v0.6.0
2020-12-26 04:20:00 +00:00
github-actions[bot] 1f4fb62fda
Merge staging-next into staging 2020-12-23 00:48:34 +00:00
Aaron Andersen 1e6e7c2bef
Merge pull request #106994 from aanderse/sqitch
sqitch: package cleanup
2020-12-22 16:10:26 -05:00
Frederik Rietdijk 736dd028ca Merge staging-next into staging 2020-12-22 19:43:32 +01:00
Sandro 39fe2fc4dc
Merge pull request #106917 from con-f-use/gocli_docopts 2020-12-22 17:34:58 +01:00
Luke Worth 160ba18da6 unused: init at 0.2.1 2020-12-22 14:52:34 +08:00
con-f-use b5d9be6aa2 docopts: build only necessary binaries 2020-12-20 15:50:58 +01:00
Alyssa Ross fc08002774
Merge pull request #106663 from alyssais/autoconf
autoconf: 2.69 -> 2.70
2020-12-19 22:26:50 +00:00
Alyssa Ross 1ef5ea3cc3 fswatch: enableParallelBuilding
Worked fine for me at -j4.
2020-12-19 01:39:45 +00:00
Alyssa Ross 3f42dfe7d9
autoconf: 2.69 -> 2.70 2020-12-17 12:52:51 +00:00
Alyssa Ross c434c60b39
autoconf270: init at 2.70
Fixes: https://github.com/NixOS/nixpkgs/pull/106642
 ("autoconf: 2.69 -> 2.70")
2020-12-17 12:52:44 +00:00
zowoq 4782aa4a4a terraform-ls: remove goPackagePath 2020-12-17 16:38:13 +10:00
Aaron Andersen 3557bb49b0 sqitch: package cleanup 2020-12-15 21:12:03 -05:00
Rouven Czerwinski af2ab76515 usbsdmux: init at 0.1.8
Add the usbsdmux utility which is used to control the USB-SD-Mux
developed by the Linux Automation GmBH.
2020-12-14 21:49:37 +01:00
con-f-use 38349e453e docopts: init at 0.6.3-rc2 2020-12-14 19:36:24 +01:00
Maximilian Bosch b7a29b2f71
strace: 5.9 -> 5.10
https://github.com/strace/strace/releases/tag/v5.10
2020-12-14 12:06:11 +01:00
Mario Rodas 418d56e960
Merge pull request #100478 from thefloweringash/cli11-meta
cli11: fix license and platforms
2020-12-13 15:53:19 -05:00
Alyssa Ross bbaed0d6d5
autoconf: license is GPLv3+
2.64 was the last GPLv2+ release.
2020-12-11 21:57:18 +00:00
Sandro e68a4f856e
Merge pull request #102136 from siraben/remarkable-which 2020-12-11 09:25:15 +01:00
Ben Siraphob 12d1b76db8 remarkable-toolchain: use which instead of patching with sed 2020-12-11 14:50:49 +07:00
Sandro a6947a5761
Merge pull request #102563 from onsails/terraform-ls
terraform-ls: 0.7.0 -> 0.11.0, switch to buildGoModule
2020-12-11 08:19:52 +01:00
Sandro e0b40003cb
Merge pull request #106357 from siraben/mfgtools-1.4.43
nxpmicro-mfgtools: 1.3.191 -> 1.4.43
2020-12-11 04:56:46 +01:00
R. RyanTM e0d253916a clojure-lsp: 20201205T230541 -> 20201207T142850 2020-12-10 13:47:40 +00:00
Andrey Kuznetsov 401ab9f095
terraform-ls: 0.7.0 -> 0.10.0, switch to buildGoModule 2020-12-10 05:31:27 +04:00
Ben Siraphob 7d3a211c24 nxpmicro-mfgtools: 1.3.191 -> 1.4.43 2020-12-09 11:03:06 +07:00
Mario Rodas afdd7b51e7
Merge pull request #106327 from r-ryantm/auto-update/svls
svls: 0.1.17 -> 0.1.18
2020-12-08 04:04:27 -05:00
R. RyanTM 3c50d74f50 svls: 0.1.17 -> 0.1.18 2020-12-08 06:38:07 +00:00
Sandro b18d45b41c
Merge pull request #97823 from KAction/perfect-hash
perfect-hash: init at 0.4.1
2020-12-08 04:48:40 +01:00
R. RyanTM 90dd4c4f96 clojure-lsp: 20201009T224414 -> 20201205T230541 2020-12-07 13:09:18 +00:00
github-actions[bot] 55b348fe1b
Merge master into staging-next 2020-12-05 06:16:24 +00:00
R. RyanTM f78c7fbb27 terraformer: 0.8.9 -> 0.8.10 2020-12-05 03:21:20 +00:00
github-actions[bot] cb36dd7449
Merge master into staging-next 2020-12-04 18:14:51 +00:00
Michal Sojka 9928e07c0f stlink: Correct comment about the use of services.udev.packages
services.udev.pkgs does not exists, but services.udev.packages does.
2020-12-04 13:57:58 +01:00
github-actions[bot] 89e8bf0f2a
Merge master into staging-next 2020-12-02 12:30:55 +00:00
Joachim Breitner fb063991b2
macdylibbundler: Should propagate dependency on otool (#103163)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-12-01 19:11:45 +01:00
Frederik Rietdijk ff90abd5dd Merge staging-next into staging 2020-12-01 14:23:10 +01:00
Jan Tojnar c2f1e7b1b0
php.extensions.blackfire: 1.44.0 → 1.46.4 2020-12-01 11:02:52 +01:00
Jonathan Strickland 4004ed98f5 rtss: init at 0.6.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-11-29 08:59:45 -05:00
John Ericson 73425f6c3b Merge remote-tracking branch 'upstream/master' into staging 2020-11-28 21:33:03 -05:00
Joe Hermaszewski b3640e024f binutils: patch to fix https://sourceware.org/bugzilla/show_bug.cgi?id=16177
This bug was preventing one compiling Haskell programs from `pkgsMusl` for
armv7.

`nix-build --argstr crossSystem "armv7l-linux" -A pkgsMusl.haskellPackages.hello`
succeeds with this patch.

The patch is Nick Clifton's one, rebased by @ericson2314 here
https://sourceware.org/bugzilla/show_bug.cgi?id=16177#c6

Although there was some talk about the efficacy of the binutils patch
(https://sourceware.org/bugzilla/show_bug.cgi?id=16177#c9) the resulting
binary seems to run without issue on the target platform. Jessica's
patch there caused ld to fail linking some programs. Nick's proposed
patch has worked well in my testing so far (a Haskell project of some
small complexity cross compiled with musl to armv7).
2020-11-28 20:19:05 +08:00
Frederik Rietdijk 9e062723b2 Merge master into staging-next 2020-11-28 08:53:47 +01:00
Dmitry Bogatov f825a02eb1 perfect-hash: init at 0.4.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-11-28 00:00:00 -05:00
Sandro 0e69505dee
Merge pull request #105150 from r-ryantm/auto-update/dfu-util
dfu-util: 0.9 -> 0.10
2020-11-28 04:14:14 +01:00
Matthew Piziak c0d38133dd mdl: 0.5.0 -> 0.11.0 2020-11-27 19:13:42 -05:00
R. RyanTM 6ad593d6d3 dfu-util: 0.9 -> 0.10 2020-11-27 14:14:05 +00:00
Frederik Rietdijk ce9c513856 Merge staging-next into staging 2020-11-27 15:09:41 +01:00
Frederik Rietdijk b2a3891e12 Merge master into staging-next 2020-11-27 15:09:19 +01:00
Sandro 1b9ff5f96c
Merge pull request #105027 from r-ryantm/auto-update/mkcert
mkcert: 1.4.2 -> 1.4.3
2020-11-26 15:00:59 +01:00
R. RyanTM 7d3209b8ea mkcert: 1.4.2 -> 1.4.3 2020-11-26 11:41:55 +00:00
R. RyanTM db70ecb5f8 automake: 1.16.2 -> 1.16.3 2020-11-25 10:10:57 -08:00
Graham Christensen d9c3f13df3
Merge pull request #104776 from grahamc/utillinux
utillinux: rename to util-linux
2020-11-24 15:14:36 -05:00
Benjamin Hipple 9c4072af40
Merge pull request #104497 from r-ryantm/auto-update/abi-dumper
abi-dumper: 1.1 -> 1.2
2020-11-24 14:20:18 -05:00
Graham Christensen bc49a0815a
utillinux: rename to util-linux 2020-11-24 12:42:06 -05:00
Frederik Rietdijk 587538d087 Merge staging-next into staging 2020-11-23 18:10:33 +01:00
Jonathan Ringer 31b7ef797a gengetopt: fix tests 2020-11-23 08:33:04 -08:00
Mario Rodas 69ce64f1d5
Merge pull request #104512 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.11458 -> 0.1.11508
2020-11-23 07:48:50 -05:00
Kira Bruneau b61ca0219b ccache: 4.0 -> 4.1 2020-11-22 23:16:23 -05:00
Michael Raskin 5edcf11a0c
Merge pull request #104425 from MetaDark/ccache
ccache: 3.7.12 -> 4.0
2020-11-22 16:30:57 +00:00
Kira Bruneau 82ca111efb ccache: 3.7.12 -> 4.0
Additional changes:
- Added myself as a maintainer
- Generalized ccacheStdenv to allow overriding stdenv
2020-11-21 22:21:43 -05:00
R. RyanTM 86b1a89d82 circleci-cli: 0.1.11458 -> 0.1.11508 2020-11-21 17:59:39 +00:00
R. RyanTM b2e70a9aea abi-dumper: 1.1 -> 1.2 2020-11-21 14:50:32 +00:00
Jan Tojnar f6105d21e3
Merge branch 'master' into staging-next 2020-11-20 01:38:32 +01:00
R. RyanTM af787d41a5 php73Extensions.blackfire: 1.43.0 -> 1.44.0 2020-11-20 00:12:26 +01:00
Frederik Rietdijk da12fc6838 Merge staging-next into staging 2020-11-18 15:36:56 +01:00
Oleksii Filonenko 512c3c0a05 maintainers: rename filalex77 -> Br1ght0ne 2020-11-17 13:09:31 +02:00
Basile Henry edd3e40f91 Make autogen.man reproducible
Keep the date format similar to what it is when we are not using the
MAN_PAGE_DATE env var. The man pages scripts seem to use different
formats in different pages, so we use the most common format for all.
2020-11-16 17:20:23 +00:00
Frederik Rietdijk 36b27ccf77
Merge pull request #103462 from NixOS/staging-next
Staging next
2020-11-16 15:23:47 +01:00
Frederik Rietdijk 986c2d36da Merge master into staging-next 2020-11-16 09:01:53 +01:00
Antoine Eiche 4e46afa069 hydra-cli: 0.2.0 -> 0.3.0 2020-11-15 09:42:29 +01:00
Pavol Rusnak 5e76b77ff6 openocd: unstable-2020-09-02 -> unstable-2020-11-11
fix build failure with hidapi 0.10.0
2020-11-14 08:33:57 +01:00
Ryan Mulligan 888703c026
Merge pull request #96732 from r-ryantm/auto-update/stm32cubemx
stm32cubemx: 5.6.1 -> 6.0.1
2020-11-13 16:31:56 -08:00
Frederik Rietdijk 463f738cc6 Merge master into staging-next 2020-11-13 20:58:35 +01:00
Mario Rodas 813833921a
Merge pull request #103567 from r-ryantm/auto-update/terraformer
terraformer: 0.8.8 -> 0.8.9
2020-11-12 08:09:47 -05:00
R. RyanTM b1dc6b0a29 terraformer: 0.8.8 -> 0.8.9 2020-11-12 07:37:06 +00:00
Mario Rodas 906e557841
Merge pull request #103463 from r-ryantm/auto-update/lsof
lsof: 4.93.2 -> 4.94.0
2020-11-11 21:26:53 -05:00
R. RyanTM c360d971a2 nix-build-uncached: 1.0.2 -> 1.1.0 2020-11-11 17:54:09 +00:00
Frederik Rietdijk 4076ffe580 Merge staging-next into staging 2020-11-11 16:00:34 +01:00
R. RyanTM 0251996c69 lsof: 4.93.2 -> 4.94.0 2020-11-11 14:36:05 +00:00
Mario Rodas 78c2e29c5c
Merge pull request #103341 from r-ryantm/auto-update/act
act: 0.2.16 -> 0.2.17
2020-11-11 04:16:35 -05:00
John Ericson 493f8b2ea2
Merge pull request #93368 from samueldr/feature/or1k-toolchain
Initial support for OpenRISC 1000
2020-11-10 21:36:43 -05:00
R. RyanTM 4c438d109e circleci-cli: 0.1.11146 -> 0.1.11458 2020-11-11 00:40:18 +00:00
R. RyanTM 8a9d29cdea act: 0.2.16 -> 0.2.17 2020-11-10 20:43:51 +00:00
Frederik Rietdijk 379aaa1e0c Merge master into staging-next 2020-11-10 10:11:08 +01:00
Samuel Dionne-Riel ebd89f6de1 binutils: Use 2.34 for OpenRISC 1000 2020-11-09 22:32:12 -05:00
Samuel Dionne-Riel c6f6db77ac binutils: Prepare for concurrent versions 2020-11-09 22:32:12 -05:00
Samuel Dionne-Riel 257fb62387 binutils: Add patches for 2.34
From #89793
2020-11-09 22:32:12 -05:00
Samuel Dionne-Riel dbe556af9c binutils: Move patches in versioned dir
We'll have multiple binutils to contend with.
2020-11-09 22:32:12 -05:00
Phillip Cloud 2472122bf3
arcanist: copy directly from $PWD to pick up any applied patches (#95879) 2020-11-09 20:43:52 +01:00
Frederik Rietdijk 20f001c01e Merge master into staging-next 2020-11-09 14:33:52 +01:00
Samuel Gräfenstein 22b73d1282 pkgs/*: add final newline to .nix files 2020-11-09 11:39:28 +00:00
Jan Tojnar f76171b0db
blackfire: 1.44.1 → 1.44.2 2020-11-04 08:02:51 +01:00
R. RyanTM 1581e7ed74 php73Extensions.blackfire: 1.41.0 -> 1.43.0 2020-11-04 05:36:45 +00:00
Frederik Rietdijk 470f05cb5d Merge staging-next into staging 2020-11-03 12:06:41 +01:00
Mario Rodas 66e6171514
Merge pull request #101356 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.10993 -> 0.1.11146
2020-11-02 18:15:02 -05:00
R. RyanTM 0b8ca5644a cproto: 4.7p -> 4.7q 2020-11-02 07:53:24 -08:00
Jörg Thalheim 3f1cd94a24 nix-build-uncached: 1.0.1 -> 1.0.2 2020-11-02 07:50:10 -08:00
R. RyanTM 4a8bbb98b4 nix-build-uncached: 1.0.0 -> 1.0.1 2020-11-02 07:50:10 -08:00
Pavol Rusnak 2c931312ce treewide: simplify rev/repo arguments in src
+ use fetchFromGithub where possible
2020-11-01 23:02:24 -08:00
Mario Rodas dc2e926ba3 mkcert: 1.4.1 -> 1.4.2
https://github.com/FiloSottile/mkcert/releases/tag/v1.4.2
2020-11-01 04:20:00 +00:00
zimbatm 6cc483b6c2
autogen: make reproducible (#102280) 2020-10-31 23:27:12 +01:00
Vladimír Čunát 0b32140b34
Merge branch 'staging-next' into staging 2020-10-28 18:48:56 +01:00
Andreas Rammhold db0fe5c3eb
Merge branch master into staging to fix eval error
This fixes the eval error of the small (and "big"?) NixOS test set that
was fixed in 1088f05 & eba8f542.
2020-10-28 03:03:27 +01:00
Bernardo Meurer d29ad75a5c
ccls: 0.20190823 -> 0.20201025 2020-10-27 13:54:39 -07:00
Ben Siraphob db74029e3e treewide: remove package names from prefix of descriptions 2020-10-27 09:15:07 -07:00
Vladimír Čunát 336bc8283b
Re-Revert "Merge #101508: libraw: 0.20.0 -> 0.20.2"
This reverts commit c778945806.

I believe this is exactly what brings the staging branch into
the right shape after the last merge from master (through staging-next);
otherwise part of staging changes would be lost
(due to being already reachable from master but reverted).
2020-10-26 08:19:17 +01:00
Vladimír Čunát 2f6b00b15e
Merge branch 'staging-next' into staging 2020-10-25 09:47:04 +01:00
Vladimír Čunát c778945806
Revert "Merge #101508: libraw: 0.20.0 -> 0.20.2"
I'm sorry; I didn't notice it contained staging commits.

This reverts commit 17f5305b6c, reversing
changes made to a8a018ddc0.
2020-10-25 09:41:51 +01:00
Vladimír Čunát 17f5305b6c
Merge #101508: libraw: 0.20.0 -> 0.20.2 2020-10-25 09:28:53 +01:00
Mario Rodas 46ddb141aa reviewdog: 0.10.2 -> 0.11.0 2020-10-25 04:20:00 +00:00
Lancelot SIX 6d2cad8a4e
gdb: 9.2 -> 10.1
See https://lists.gnu.org/archive/html/info-gnu/2020-10/msg00009.html
for release announcement
2020-10-24 19:22:36 +01:00
makefu 647b71cfa9
iozone: 3.471 -> 3.490
generate url instead of hardcoding the version in the url
this should make auto-updating possible via nixpkgs-update
2020-10-23 22:14:56 +02:00
Jan Tojnar 3e01d383ee
Merge branch 'staging-next' into staging 2020-10-22 21:20:32 +02:00
R. RyanTM 501cffe2f9 circleci-cli: 0.1.10993 -> 0.1.11146 2020-10-22 11:28:57 +00:00
Daiderd Jordan bb0b872b61
Merge pull request #100388 from thefloweringash/darwin-dylib-names-hook
treewide: move fixDarwinDylibNames to nativeBuildInputs
2020-10-21 19:25:48 +02:00
Maximilian Bosch 1308817e05
nixos/hydra: remove hydra-migration upgrade path
This should NOT be backported to 20.09!

When 21.03 is released, the DB changes are about a year old and
operators had two release cycles for the upgrade. At this point it
should be fair to remove the compat layer to reduce the complexity of
the module itself.
2020-10-21 18:03:04 +02:00
Maximilian Bosch 1bb8808e1a
hydra-unstable: 2020-09-02 -> 2020-10-20 2020-10-21 18:03:04 +02:00
Andrew Childs 722d02a720 treewide: move fixDarwinDylibNames to nativeBuildInputs
This hook runs at build time and depends on executing
install_name_tool from binutils.
2020-10-21 13:26:53 +09:00
zowoq f73f6abab4 editorconfig-checker: 2.1.0 -> 2.2.0
https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/2.2.0
2020-10-21 10:50:22 +10:00
Ryan Mulligan b2fc4d9f4a
Merge pull request #100844 from r-ryantm/auto-update/asls
asls: 0.5.0 -> 0.5.1
2020-10-18 12:30:14 -07:00
Mario Rodas 9b3e35d991
Merge pull request #100890 from r-ryantm/auto-update/ccache
ccache: 3.7.11 -> 3.7.12
2020-10-18 09:00:15 -05:00
Mario Rodas 93c5c61908
Merge pull request #100897 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.9454 -> 0.1.10993
2020-10-18 08:39:50 -05:00
Ryan Mulligan a5f89fc71d
Merge pull request #100899 from r-ryantm/auto-update/clojure-lsp
clojure-lsp: 20200828T065654 -> 20201009T224414
2020-10-17 16:18:03 -07:00
R. RyanTM e32e589d7d clojure-lsp: 20200828T065654 -> 20201009T224414 2020-10-17 22:50:38 +00:00
R. RyanTM 72e8737f64 circleci-cli: 0.1.9454 -> 0.1.10993 2020-10-17 22:28:35 +00:00
R. RyanTM 83bf88fc66 ccache: 3.7.11 -> 3.7.12 2020-10-17 21:33:44 +00:00
R. RyanTM 3442125e41 asls: 0.5.0 -> 0.5.1 2020-10-17 16:14:12 +00:00
Benjamin Hipple ff894538ea
Merge pull request #100830 from r-ryantm/auto-update/act
act: 0.2.15 -> 0.2.16
2020-10-17 11:52:42 -04:00
Ben Siraphob 683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
R. RyanTM d379080aa7 act: 0.2.15 -> 0.2.16 2020-10-17 14:33:24 +00:00
Andrew Childs a8dbeb2601 cli11: fix license and platforms 2020-10-14 15:53:06 +09:00
Frederik Rietdijk 9e1943edc0 Merge master into staging-next 2020-10-13 19:34:34 +02:00
Tom Repetti 6db853ec6f fujprog: 4.6 -> 4.8 2020-10-12 15:28:56 -04:00
Tom Repetti eeb3c1f726 fujprog: fix MacOS build by adding IOKit dependency and add changelog 2020-10-12 15:28:36 -04:00
Frederik Rietdijk ec28e32c9e Merge master into staging-next 2020-10-08 21:47:26 +02:00
Jonathan Ringer 93e135517a Revert "Revert "texinfo: revert to version 6.5 on Darwin""
This reverts commit 578b2b92de
2020-10-07 22:29:27 -07:00
Jan Tojnar 956a43990e
phpExtensions.blackfire: init at 1.40.0 2020-10-07 10:44:54 +02:00
Jan Tojnar 9ce350cdcc
blackfire: init at 1.44.0 2020-10-07 10:44:53 +02:00
Frederik Rietdijk 692d219a93 Merge staging-next into staging 2020-10-06 10:25:58 +02:00
Christian Kampka 578b2b92de Revert "texinfo: revert to version 6.5 on Darwin"
This reverts commit b23940e514.
2020-10-06 09:43:42 +02:00
Christian Kampka e389e24efc texinfo: Depend on gettext on Darwin
texinfo version 6.7 requires libintl.h which on Linux is provided
by the libc. On Darwin, this lib is provided by gettext instead.
2020-10-06 09:43:42 +02:00
Vladyslav M 3f01bf51e7
strace: 5.8 -> 5.9 2020-10-03 22:57:28 +03:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
TANIGUCHI Kohei ec0f69b0a9 chruby-fish: init at 0.8.2 2020-09-30 22:49:35 +09:00
Jan Tojnar 32b4375f10
Merge branch 'staging-next' into staging 2020-09-29 00:12:29 +02:00
Mario Rodas 3b1f5dc50f act: 0.2.13 -> 0.2.15 2020-09-28 04:20:00 +00:00
R. RyanTM 047484d772
argbash: 2.9.0 -> 2.10.0 (#98669) 2020-09-24 21:58:51 +00:00
Jan Tojnar d471c5d1f3
Merge branch 'staging-next' into staging 2020-09-24 23:09:00 +02:00
R. RyanTM 442cbdd9ac global: 6.6.4 -> 6.6.5 2020-09-23 04:17:51 +00:00
WORLDofPEACE 34aaac6d7c Merge branch 'staging-next' into staging 2020-09-20 18:41:15 -04:00
Lassulus b19f6797f6
Merge pull request #97018 from evils/openocd
openocd: 0.10.0 -> 2020-09-02
2020-09-17 21:49:02 +02:00
Maximilian Bosch 73277d313e
dbench: fix build w/glibc-2.32 2020-09-12 23:04:47 +02:00
Doron Behar c69187375f
Merge pull request #97089 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.9321 -> 0.1.9454
2020-09-11 12:31:04 +03:00
zowoq dfb0dff86c hound:use upstream vendor 2020-09-08 16:32:39 +10:00
Vladimír Čunát c1c85b9bad
Merge #97146: 'staging-next' branch
This is the last planned iteration before forking 20.09.
2020-09-07 15:43:36 +02:00
zowoq 02e6ed4b62 scc: 2.12.0 -> 2.13.0
https://github.com/boyter/scc/releases/tag/v2.13.0
2020-09-07 15:19:22 +10:00
Mario Rodas 68a551e194
Merge pull request #97315 from r-ryantm/auto-update/terraform-ls
terraform-ls: 0.6.1 -> 0.7.0
2020-09-06 23:17:52 -05:00
Frederik Rietdijk d362c0e54e Merge master into staging-next 2020-09-06 18:14:23 +02:00
Vladimír Čunát b23940e514
texinfo: revert to version 6.5 on Darwin
It's basically a partial revert of PR #95910.
I chose a temporar-ish solution, maximizing likelihood of fixing
this while minimizing rebuilds.  (20.09 process is being blocked)
2020-09-06 09:43:32 +02:00
Daniël de Kok 53a3f7aba7
Merge pull request #97013 from siraben/knightos-tools
Move KnightOS packages into pkgs/tools/knightos
2020-09-06 08:41:36 +02:00
Ben Siraphob abedb5c42f Move KnightOS packages into folder 2020-09-06 08:37:49 +02:00
Ryan Mulligan 4b4ba51af8
Merge pull request #97094 from r-ryantm/auto-update/clojure-lsp
clojure-lsp: 20200819T134828 -> 20200828T065654
2020-09-05 14:29:39 -07:00
R. RyanTM 436b3a435c terraform-ls: 0.6.1 -> 0.7.0 2020-09-05 19:26:24 +00:00