Commit graph

243698 commits

Author SHA1 Message Date
Jan Tojnar b828285933
maintainers/scripts/update.nix: support filling in auto-commit attributes
We can determine all of them when attrPath is present so we might jsut as well do it.
2020-09-20 20:11:46 +02:00
Jan Tojnar 4a161ddb3b
maintainers/scripts/update.nix: support auto-committing by passing attrPath
Instead of having the updateScript support returning JSON object,
it should be sufficient to specify attrPath in passthru.updateScript.
It is much easier to use.

The former is now considered experimental.
2020-09-20 20:11:46 +02:00
Jan Tojnar 01b9d5371c
maintainers/scripts/update.nix: switch to asyncio
This will make it cleaner and also better respect SIGTERM.
2020-09-20 20:11:45 +02:00
Jan Tojnar 17f89667b3
maintainers/scripts/update.nix: refactoring
Get rid of some globals, split main into smaller functions, rename some variables, add typehints.
2020-09-20 20:11:45 +02:00
Jan Tojnar 74c1b8deb2
gnome3.updateScript: implement commit feature 2020-09-20 20:11:45 +02:00
Jan Tojnar 1efc042d92
maintainers/scripts/update.nix: Add support for auto-commiting changes
Update scripts can now declare features using

	passthru.updateScript = {
	  command = [ ../../update.sh pname ];
	  supportedFeatures = [ "commit" ];
	};

A `commit` feature means that when the update script finishes successfully,
it will print a JSON list like the following:

	[
	  {
	    "attrPath": "volume_key",
	    "oldVersion": "0.3.11",
	    "newVersion": "0.3.12",
	    "files": [
	      "/path/to/nixpkgs/pkgs/development/libraries/volume-key/default.nix"
	    ]
	  }
	]

and data from that will be used when update.nix is run with --argstr commit true
to create commits.

We will create a new git worktree for each thread in the pool and run the update
script there. Then we will commit the change and cherry pick it in the main repo,
releasing the worktree for a next change.
2020-09-20 20:11:22 +02:00
Jan Tojnar d351cea9f3
common-updater-scripts: add --print-changes flag
Printing the changed file and new version can be used to commit the changes to git.
2020-09-19 17:02:54 +02:00
Jan Tojnar 5adbeb13c5
update.nix: use ThreadPoolExecutor
Not sure why I chose ProcessPoolExecutor in the first place.
2020-09-18 20:52:07 +02:00
ajs124 441a7da808
Merge pull request #95800 from oxzi/claws-mail-mailto
claws-mail: patch mailto handling
2020-09-15 04:11:02 +02:00
Benjamin Hipple dc622edc2e
Merge pull request #97978 from zimbatm/awscli2-2.0.48
awscli2: 2.0.46 -> 2.0.48
2020-09-14 22:07:05 -04:00
WORLDofPEACE 0026c20ea1
Merge pull request #98007 from neonfuz/akira
akira: 2020-05-01 -> 0.0.13
2020-09-14 20:53:02 -04:00
WORLDofPEACE d23f814eb3
Merge pull request #98004 from romildo/upd.nm-applet
nixos/nm-applet: starts the applet with Appindicator support
2020-09-14 20:44:51 -04:00
José Romildo Malaquias 0c6e1ddf61 nixos/pantheon: disable nm-applet indicator 2020-09-14 21:27:00 -03:00
José Romildo Malaquias 0d7a2f67df nixos/nm-applet: starts the applet with Appindicator support
As of version 1.18.0 Appindicator support is available in the official
network-manager-applet package. To use nm-applet in an Appindicator
environment the applet should be started  with the following command:

$ nm-applet --indicator

Without this option it does appear in the Enlightenment panel systray,
for instance.
2020-09-14 21:11:15 -03:00
Aaron Andersen 9f68287e3d
Merge pull request #97942 from aanderse/tomcat-native
tomcat-native: 1.2.24 -> 1.2.25
2020-09-14 19:55:51 -04:00
aszlig 7447bdc523
nixos/plasma5: Fix eval of colord-kde/wacomtablet
Regression introduced by 053b05d14d.

The commit in question essentially removed the "with pkgs;" from the
scope around the various packages added to environment.systemPackages.

Since services.colord.enable and services.xserver.wacom.enable are false
by default, the change above didn't directly result in an evaluation
error.

Tested evaluation before and after this change via:

  for cfg in hardware.bluetooth.enable \
             networking.networkmanager.enable \
             hardware.pulseaudio.enable \
             powerManagement.enable \
             services.colord.enable \
             services.samba.enable \
             services.xserver.wacom.enable; do
    nix-instantiate --eval nixos --arg configuration '{
      services.xserver.desktopManager.plasma5.enable = true;
      '"$cfg"' = true;
    }' -A config.environment.systemPackages > /dev/null
  done

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @ttuegel
2020-09-15 01:19:15 +02:00
Ryan Mulligan 8cdf9c95c4
Merge pull request #97280 from tex/airscan
airscan: 0.99.8 -> 0.99.16
2020-09-14 14:52:55 -07:00
Sage Raflik de248c05cf akira: 2020-05-01 -> 0.0.13 2020-09-14 16:31:11 -05:00
Robert Scott 58802bec5f
Merge pull request #97845 from risicle/ris-holidays-fix
pythonPackages.holidays: fix build by adding korean-lunar-calendar dependency
2020-09-14 22:28:14 +01:00
Henri Menke 9d60354fae nixos/shadowsocks: add test without plugin 2020-09-14 22:35:05 +02:00
Henri Menke e587b5a8a8 nixos/shadowsocks: add extraConfig 2020-09-14 22:35:05 +02:00
Daniël de Kok 0023908b4e
Merge pull request #97983 from Flakebi/rgp
rgp: 1.7.0.29 -> 1.8
2020-09-14 21:54:08 +02:00
Robert Scott 9743a383cc
Merge pull request #97927 from NieDzejkob/chez-fix
chez-modules: Fix path to csv-site.
2020-09-14 20:51:04 +01:00
Vincent Laporte cc4a33d78c ott: 0.30 → 0.31 2020-09-14 21:42:22 +02:00
Robert Scott 9fb14d899d pythonPackages.holidays: fix build by adding korean-lunar-calendar dependency 2020-09-14 20:37:59 +01:00
pancho horrillo c814b0ef24
caddy1: fix build (#97988)
main.go gets overwritten in order to build caddy with telemetry
disabled, but the global variable `run` got neglected, and this in turn
broke the test in caddy/main_test.go.

This commit fixes that, and build can now complete.
2020-09-14 19:31:08 +00:00
Sebastian Neubauer 26c23c01a6
rgp: 1.7.0.29 -> 1.8 2020-09-14 20:03:38 +02:00
Jonathan Ringer 10e2e5be30 vimPlugins.asyncomplete-vim: init at 2020-08-09 2020-09-14 10:37:50 -07:00
Jonathan Ringer 258cbe62f7 vimPlugins: resolve github repository redirects 2020-09-14 10:37:50 -07:00
Jonathan Ringer b92f79e128 vimPlugins: update 2020-09-14 10:37:50 -07:00
Viacheslav Lotsmanov 68896cd397 vimPlugins.nerdtree-git-plugin: init at 2020-09-11 2020-09-14 10:15:43 -07:00
Maximilian Bosch 441818c4ff
element-desktop: 1.7.5 -> 1.7.7
https://github.com/vector-im/element-desktop/releases/tag/v1.7.6
https://github.com/vector-im/element-desktop/releases/tag/v1.7.7
2020-09-14 18:56:48 +02:00
Maximilian Bosch 33d02b3396
element-web: 1.7.5 -> 1.7.7
https://github.com/vector-im/element-web/releases/tag/v1.7.6
https://github.com/vector-im/element-web/releases/tag/v1.7.7
2020-09-14 18:56:15 +02:00
Lancelot SIX 79b9007c94
Merge pull request #97961 from sikmir/timezonefinder
pythonPackages.timezonefinder: fix build
2020-09-14 17:12:57 +01:00
Daniël de Kok 04e9c9b0a3
Merge pull request #97976 from Flakebi/amdvlk
amdvlk: 2020.Q3.4 -> 2020.Q3.5 and add 32-bit build
2020-09-14 17:55:44 +02:00
Sebastian Neubauer 50733da4b0 amdvlk: 2020.Q3.4 -> 2020.Q3.5 2020-09-14 17:41:24 +02:00
Sebastian Neubauer 0dca8d5b1e nixos/manual: add 32-bit amdvlk usage 2020-09-14 17:41:23 +02:00
Sébastien Maret 234b39a6d4
gildas: 20200601_b -> 20200901_a (#97968) 2020-09-14 11:18:06 -04:00
Théo Zimmermann 1074c0a37f ocamlPackages.graphql_ppx: 0.7.1 -> 1.0.1 2020-09-14 16:23:28 +02:00
Anderson Torres a5931fa6e3
Merge pull request #95409 from utdemir/stream_layered_image_fix
dockerTools.streamLayeredImage: Store the customisation layer as a tarball
2020-09-14 11:05:48 -03:00
Stig P 0d82843d16
Merge pull request #84559 from deshaw/contrib/perl-rpm2
perlPackages.RPM2: init at 1.4
2020-09-14 13:53:04 +00:00
Tim Steinbach 8822778094
netatop: 2.0 -> 3.1 (#97779)
linuxPackages_hardkernel_4_14.netatop linuxPackages_hardkernel_latest.netatop remain broken. 
linuxPackages-libre.netatop linuxPackages.netatop linuxPackages_4_14.netatop linuxPackages_4_19.netatop linuxPackages_4_4.netatop linuxPackages_4_9.netatop linuxPackages_5_7.netatop linuxPackages_5_8.netatop linuxPackages_hardened.netatop linuxPackages_latest-libre.netatop linuxPackages_latest_hardened.netatop linuxPackages_latest_xen_dom0.netatop linuxPackages_latest_xen_dom0_hardened.netatop linuxPackages_testing_bcachefs.netatop linuxPackages_xen_dom0.netatop linuxPackages_xen_dom0_hardened.netatop linuxPackages_zen.netatop are good
2020-09-14 15:34:32 +02:00
zimbatm 60d443d0cd
awscli2: 2.0.46 -> 2.0.48 2020-09-14 15:14:28 +02:00
Tim Steinbach 7f52b1f339
awscli: 1.18.128 -> 1.18.137 2020-09-14 09:11:08 -04:00
Tim Steinbach 8bf7fe69c5
boto3: 1.14.51 -> 1.14.60 2020-09-14 09:11:08 -04:00
Tim Steinbach 8ec1cb8b7a
botocore: 1.17.51 -> 1.17.60 2020-09-14 09:11:08 -04:00
Sebastian Neubauer 13beb432fb amdvlk: Add i686-linux platform 2020-09-14 15:04:57 +02:00
Daniël de Kok d2098f90e3
Merge pull request #97852 from danieldk/1password-gui-0.8.5
_1password-gui: 0.8.4 -> 0.8.5-1
2020-09-14 15:01:20 +02:00
Tim Steinbach 7699e31abb
oh-my-zsh: 2020-09-09 -> 2020-09-12 2020-09-14 08:42:05 -04:00
Tim Steinbach 37149b8bfe
linux: 5.8.8 -> 5.8.9 2020-09-14 08:42:04 -04:00