Commit graph

309927 commits

Author SHA1 Message Date
Diego Rodriguez 5a2fd66948
terraform_1_0: 1.0.4 -> 1.0.5 # 2021-08-18 14:22:19 -06:00
R. RyanTM bbc3fbf67c python38Packages.webdavclient3: 3.14.5 -> 3.14.6 2021-08-18 13:18:00 -07:00
Sandro e5415f2538
Merge pull request #134697 from bbigras/anytype
anytype: init at 0.18.59
2021-08-18 22:17:02 +02:00
R. RyanTM 560a55a735 python38Packages.jellyfish: 0.8.2 -> 0.8.8 2021-08-18 13:14:20 -07:00
R. RyanTM cd94f4b26b python38Packages.micawber: 0.5.3 -> 0.5.4 2021-08-18 13:14:12 -07:00
Fabian Affolter 893473a318 python3Packages.ujson: enable tests 2021-08-18 13:11:35 -07:00
Fabian Affolter 7fc097dab8 python3Packages.ujson: 4.0.2 -> 4.1.0 2021-08-18 13:11:35 -07:00
Alyssa Ross 6e6c8b7338 s6-rc: fix cross builds that run s6-rc-compile
The reason for this change is explained in the long comment I added.

Here's a simple example of the problem:

	let
	  pkgs = import <nixpkgs> { crossSystem.system = "aarch64-linux"; };
	in

	pkgs.callPackage ({ stdenv, s6-rc }: stdenv.mkDerivation {
	  name = "s6-rc-compiled";

	  nativeBuildInputs = [ s6-rc ];

	  buildCommand = ''
	    mkdir in
	    s6-rc-compile $out in
	  '';
	}) {}

We're cross compiling for aarch64 here, so we'd expect the scripts
generated by this derivation to be things we could run on aarch64.
But when I build this on my x86_64 machine, without this change
applied, $out/servicedirs/s6rc-oneshot-runner/run gets generated full
of references to x86_64 non-cross store paths for execline, s6, and
s6-rc.

With this change applied, the scripts generated by the above
expression now refer to the cross-compiled aarch64 store paths for
execline, s6, and s6-rc.
2021-08-18 20:09:19 +00:00
Michael Weiss 8a4a84c83a
signal-desktop: 5.13.1 -> 5.14.0 2021-08-18 22:08:52 +02:00
Sandro 158d92cbb2
Merge pull request #134683 from alyssais/s6-rc 2021-08-18 22:08:51 +02:00
Sandro cb2871a6cf
Merge pull request #134689 from fabaff/bump-versioneer 2021-08-18 21:48:00 +02:00
Sandro ef86d4bf65
Merge pull request #134691 from bachp/openapi-core-mock
python3Packages.openapi-core: add missing mock dependency
2021-08-18 21:40:41 +02:00
Bruno Bigras 385b85ef36 anytype: init at 0.18.59 2021-08-18 15:39:15 -04:00
Martin Weinelt 6b029eba84
Merge pull request #134685 from r-ryantm/auto-update/python3.8-pygit2
python38Packages.pygit2: 1.6.0 -> 1.6.1
2021-08-18 21:13:42 +02:00
Martin Weinelt c808ab8b3d
Merge pull request #134688 from r-ryantm/auto-update/python3.8-pyscreenshot
python38Packages.pyscreenshot: 2.3 -> 3.0
2021-08-18 21:04:19 +02:00
Martin Weinelt e130bfeddd
Merge pull request #134681 from Kloenk/fix-moodle 2021-08-18 21:02:29 +02:00
Martin Weinelt d4f5bd1cd3
Merge pull request #134687 from r-ryantm/auto-update/python3.8-pyro-ppl
python38Packages.pyro-ppl: 1.6.0 -> 1.7.0
2021-08-18 20:58:41 +02:00
Pascal Bach 9f85f9201a pythonPackages3.openapi-core: add missing mock dependency
Without the mock packages the tests fail.

Closes #134632
2021-08-18 20:54:20 +02:00
Fabian Affolter 2f9cbba251 python3Packages.versioneer: add pythonImportsCheck 2021-08-18 20:53:40 +02:00
Fabian Affolter 656343a753 python3Packages.versioneer: 0.19 -> 0.20 2021-08-18 20:44:14 +02:00
R. RyanTM 9fc4bf504c python38Packages.pyscreenshot: 2.3 -> 3.0 2021-08-18 18:16:19 +00:00
R. RyanTM 755bda4230 python38Packages.pyro-ppl: 1.6.0 -> 1.7.0 2021-08-18 18:11:55 +00:00
github-actions[bot] 57cedea2a2
Merge master into staging-next 2021-08-18 18:01:03 +00:00
Daniel Nagy 896be09342
zathura-pdf-mupdf: 0.3.6 -> 0.3.7 2021-08-18 19:39:11 +02:00
Alyssa Ross 1f099b87f9
s6-rc: broaden platforms 2021-08-18 17:33:31 +00:00
Ryan Mulligan 34142f1d9a
Merge pull request #134595 from r-ryantm/auto-update/stern
stern: 1.19.0 -> 1.20.0
2021-08-18 10:27:19 -07:00
John Ericson b4cc2a2479 pkgs/stdenv/make-derivation: Reindent
We previously make it just be the function, not a single-item attrset,
without deindenting to make a readable diff. No we deindent.
2021-08-18 17:22:52 +00:00
John Ericson f110a182a6 stdenv: Fix overriding + overrideAttrs
The old stdenv adapters were subtly wrong in two ways:

 - `overrideAttrs` leaked the original, unoverridden `mkDerivation`.

 - `stdenv.override` would throw away any manually-set `mkDerivation`
   from a stdenv reverting to the original.

Now, `mkDerivation` is controlled (nearly directly) via an argument, and
always correctly closes over the final ("self") stdenv. This means the
adapters can work entirely via `.override` without any manual `stdenv //
...`, and both those issues are fixed.

Note hashes are changed, because stdenvs no previously overridden like
`stdenvNoCC` and `crossLibcStdenv` now are. I had to add some
`dontDisableStatic = true` accordingly. The flip side however is that
since the overrides compose, we no longer need to override anything but
the default `stdenv` from which all the others are created.
2021-08-18 17:22:50 +00:00
R. RyanTM 4a2482b353 python38Packages.pygit2: 1.6.0 -> 1.6.1 2021-08-18 17:16:06 +00:00
Finn Behrens c93e318747 moodle: update to 3.11.2 2021-08-18 19:12:43 +02:00
happysalada dcaab31c8d aws-c-common: disable flaky test 2021-08-19 02:11:52 +09:00
Finn Behrens cc927c650b nixos/moodle: revert to php74 for xmlrpc extension 2021-08-18 19:05:48 +02:00
Ryan Mulligan d66e050644
Merge pull request #134422 from r-ryantm/auto-update/osu-lazer
osu-lazer: 2021.720.0 -> 2021.815.0
2021-08-18 09:53:29 -07:00
Fabian Affolter 15d4912e50 python3Packages.softlayer: cleanup 2021-08-18 18:50:44 +02:00
Thomas 0457e3dbd1 python3Packages.gym: 0.18.3 -> 0.19.0 2021-08-18 11:37:39 -05:00
Fabian Affolter b3bf4ccae1 python3Packages.softlayer: 5.8.4 -> 5.9.7 2021-08-18 18:27:37 +02:00
figsoda 7849715e22 luaformatter: add meta.mainProgram 2021-08-18 12:21:17 -04:00
figsoda 1c2c9ea158 taplo-cli: add meta.mainProgram 2021-08-18 12:14:46 -04:00
R. RyanTM aa045621af python38Packages.ipyvuetify: 1.7.0 -> 1.8.1 2021-08-18 08:32:33 -07:00
Sean Buckley 7852294f1b postman: 8.4.0 -> 8.10.0 2021-08-18 11:27:40 -04:00
Ryan Mulligan 06290f024a
Merge pull request #134483 from r-ryantm/auto-update/qrcodegen
qrcodegen: 1.6.0 -> 1.7.0
2021-08-18 08:05:07 -07:00
Fabian Affolter 062d47f93e python3Packages.webtest: add pythonImportsCheck 2021-08-18 16:44:47 +02:00
R. RyanTM e05fd1a5e1 python38Packages.hvplot: 0.7.2 -> 0.7.3 2021-08-18 07:38:51 -07:00
Fabian Affolter d9a8be0ac6 python3Packages.pyfronius: 0.5.3 -> 0.6.0 2021-08-18 07:36:28 -07:00
R. RyanTM 4f885fe507 python38Packages.icecream: 2.1.0 -> 2.1.1 2021-08-18 07:36:18 -07:00
R. RyanTM 393d3ddd39 python38Packages.dpkt: 1.9.6 -> 1.9.7.1 2021-08-18 07:34:03 -07:00
R. RyanTM 994157221a python38Packages.geoalchemy2: 0.9.0 -> 0.9.3 2021-08-18 07:33:39 -07:00
R. RyanTM 5e888a4e57 python38Packages.django-ipware: 3.0.2 -> 3.0.7 2021-08-18 07:31:16 -07:00
Fabian Affolter fb4eb88d39 python3Packages.webtest: 2.0.32 -> 2.0.35 2021-08-18 16:25:35 +02:00
Daniël de Kok 39225716cf
Merge pull request #134560 from r-ryantm/auto-update/sentencepiece
sentencepiece: 0.1.95 -> 0.1.96
2021-08-18 16:24:42 +02:00