223586 Commits

Author SHA1 Message Date
Damien Cassou
a7971df962
perlPackages.GitAutofixup: init at 0.002007 2020-04-26 21:26:47 +02:00
Sebastien Bariteau
35b8193352 maintainers: add numkem 2020-04-26 15:20:24 -04:00
Damien Cassou
5eb2125cb4
Merge pull request #86058 from vbgl/coq-coqhammer-1.2
coqPackages.coqhammer: 1.1.1 → 1.2
2020-04-26 21:02:09 +02:00
adisbladis
8c65a2f1de
melpa-packages: 2020-04-26 2020-04-26 19:48:16 +01:00
adisbladis
5adfa39a99
elpa-packages: 2020-04-26 2020-04-26 19:48:16 +01:00
Damien Cassou
5fec592421
Merge pull request #85543 from DamienCassou/damien/ledger-autosync
ledger-autosync: 1.0.1 -> 1.0.2
2020-04-26 20:47:54 +02:00
Sam Hug
59087de17b vimPlugins.coc-rust-analyzer: init at 2020-04-24 2020-04-26 11:34:23 -07:00
Sam Hug
c0872bfc28 nodePackages.coc-rust-analyzer: init at 0.5.5 2020-04-26 11:34:23 -07:00
Sam Hug
2901db8e35 vimPlugins: update 2020-04-26 11:34:23 -07:00
Damien Cassou
d19994b58e
Merge pull request #85872 from vbgl/coq-equations-1.2.1
coqPackages.equations: 1.2 → 1.2.1
2020-04-26 20:29:34 +02:00
worldofpeace
ac57a6c0b3
Merge pull request #85594 from mkg20001/jetbrains-update
jetbrains: 2019.3.5 -> 2020.1
2020-04-26 14:28:44 -04:00
Evils
b80bd001e2
kicad-unstable: 2020-02-10 -> 2020-04-25
cc #82634
2020-04-26 13:38:37 -04:00
Evils
75963b9160
kicad: update.sh: set -e
and some more suggestions from veprbl

warn if an empty item gets through anyway

and use UTC time

cc #82634
2020-04-26 13:38:13 -04:00
davidak
9c32e5c495 CONTRIBUTING.md: Improve backport instructions 2020-04-26 19:35:13 +02:00
Andreas Stührk
0f20af8bd3 skaffold: 1.6.0 -> 1.8.0 2020-04-26 10:00:28 -07:00
Damien Cassou
6c1201aa8c
ledger-autosync: 1.0.1 -> 1.0.2 2020-04-26 18:37:04 +02:00
Damien Cassou
25e4c9db67
cypress: 4.3.0 -> 4.4.1 2020-04-26 18:36:11 +02:00
Tim Steinbach
a9fa6028ad
linux/hardened-patches/4.19: 4.19.117.a -> 4.19.118.a 2020-04-26 12:23:07 -04:00
Tim Steinbach
4af476e2b3
linux/hardened-patches/5.4: 5.4.34.a -> 5.4.35.a 2020-04-26 12:23:05 -04:00
Tim Steinbach
334627d92f
linux/hardened-patches/5.6: 5.6.6.a -> 5.6.7.a 2020-04-26 12:23:03 -04:00
Tim Steinbach
be48bf2ba8
linux/hardened-patches/4.14: 4.14.176.a -> 4.14.177.a 2020-04-26 12:23:01 -04:00
Tim Steinbach
4883dde6b7
linux: 4.9.219 -> 4.9.220 2020-04-26 12:22:41 -04:00
Tim Steinbach
6efb2ba2bf
linux: 4.4.219 -> 4.4.220 2020-04-26 12:22:05 -04:00
Tim Steinbach
6617a79ba3
linux: 4.14.176 -> 4.14.177 2020-04-26 12:21:32 -04:00
talyz
d61040716e
php.buildEnv: Automatically include extension dependencies
Some extensions depend on other extensions. Previously, these had to
be added manually to the list of included extensions, or we got a
cryptic error message pointing to strings-with-deps.nix, which wasn't
very helpful. This makes sure all required extensions are included in
the set from which textClosureList chooses its snippets.
2020-04-26 16:43:29 +02:00
talyz
72636bc2f6
php: Get rid of all config.php parameters
Since all options controlled by the config.php parameters can now be
overridden directly, there's no reason to keep them around.
2020-04-26 16:43:23 +02:00
talyz
2ba7926959
php.buildEnv: Provide a list of currently enabled extensions
Rework withExtensions / buildEnv to handle currently enabled
extensions better and make them compatible with override. They now
accept a function with the named arguments enabled and all, where
enabled is a list of currently enabled extensions and all is the set
of all extensions. This gives us several nice properties:

 - You always get the right version of the list of currently enabled
   extensions

 - Invocations chain

 - It works well with overridden PHP packages - you always get the
   correct versions of extensions

As a contrived example of what's possible, you can add ImageMagick,
then override the version and disable fpm, then disable cgi, and
lastly remove the zip extension like this:

{ pkgs ? (import <nixpkgs>) {} }:
with pkgs;

let
  phpWithImagick = php74.withExtensions ({ all, enabled }: enabled ++ [ all.imagick ]);

  phpWithImagickWithoutFpm743 = phpWithImagick.override {
    version = "7.4.3";
    sha256 = "wVF7pJV4+y3MZMc6Ptx21PxQfEp6xjmYFYTMfTtMbRQ=";
    fpmSupport = false;
  };

  phpWithImagickWithoutFpmZip743 = phpWithImagickWithoutFpm743.withExtensions (
    { enabled, all }:
      lib.filter (e: e != all.zip) enabled);

  phpWithImagickWithoutFpmZipCgi743 = phpWithImagickWithoutFpmZip743.override {
    cgiSupport = false;
  };
in
  phpWithImagickWithoutFpmZipCgi743
2020-04-26 16:43:05 +02:00
Frederik Rietdijk
ca2fd28d83 Revert "docs/python: document builders using doInstallCheck and not doCheck (#86051)"
For disabling tests when overriding, use `.overridePythonAttrs`.

Discussion about aliasing `.overridePythonAttrs` to `.overrideAttrs`.
https://github.com/NixOS/nixpkgs/pull/82772

This reverts commit 35812875a4455e2636eb24ddaf702faa4767fafa.
2020-04-26 16:22:33 +02:00
Graham Christensen
fadb044579
Merge pull request #86059 from AmineChikhaoui/20.03-amis
ec2-amis.nix: add NixOS 20.03 images
2020-04-26 10:01:56 -04:00
AmineChikhaoui
9cf9e66e6f
ec2-amis.nix: add NixOS 20.03 images
Fixes #85857.
2020-04-26 09:54:10 -04:00
Vincent Laporte
ef964a801e
coqPackages.coqhammer: 1.1.1 → 1.2
Add support for Coq 8.11
2020-04-26 15:51:20 +02:00
Aaron Andersen
6b3506458e tomcat-native: init at 1.2.23 2020-04-26 09:12:41 -04:00
Maxine Aubrey
5e4abf76c7
yaru-theme: 20.04.1 -> 20.04.6 (#86019) 2020-04-26 12:13:22 +00:00
davidak
579e56fb9e
Update commit policy for stable release branches (#86026)
only very few people followed the strict policy in the last 5 years. the 
maintainers accept backports without reason when it's obvious, so i 
updated the policy to reflect that
2020-04-26 12:12:55 +00:00
Nikolay Korotkiy
73f3469c76
azpainter: 2.1.5 -> 2.1.6 (#86028) 2020-04-26 12:11:09 +00:00
Nikolay Korotkiy
f56459f7ec
gpxsee: 7.28 -> 7.29 (#86050) 2020-04-26 11:53:44 +00:00
Doron Behar
35812875a4
docs/python: document builders using doInstallCheck and not doCheck (#86051) 2020-04-26 11:53:06 +00:00
Jaakko Luttinen
9d7f94a3f0
rofi-file-browser: init at 1.1.1 (#86052)
Co-authored-by: zimbatm <zimbatm@zimbatm.com>
2020-04-26 11:51:34 +00:00
zimbatm
018aadcfa1
terraform-providers.vpsadmin: init at 0.1.0 2020-04-26 13:35:16 +02:00
zimbatm
442f76893c
terraform-providers.sops: init at 0.5.0 2020-04-26 13:21:15 +02:00
Benjamin Andresen
f6ee88f41e babashka: increase java heap space max to 4500
3g has very long build times and also doesn't build 100% of the time
it's also the new default since:
7fc33dcb21
2020-04-26 13:17:52 +02:00
zimbatm
20f55a9fc0
terraform-providers.ibm: move to update-all script 2020-04-26 13:07:04 +02:00
zimbatm
bb858898b1
terraform-providers: update-all 2020-04-26 12:56:28 +02:00
José Romildo Malaquias
47cc163dfc
Merge pull request #85671 from romildo/upd.yaru-theme
yaru-theme: 20.04.1 -> 20.04.6, unmark as broken
2020-04-26 07:29:07 -03:00
Jörg Thalheim
ef959a1d9b
Merge pull request #85984 from Mic92/wireguard 2020-04-26 11:28:55 +01:00
Vladyslav M
2cd8c35c1f
Merge pull request #86031 from marsam/update-bat 2020-04-26 11:48:54 +03:00
Colin
3e0aa4af2d
Get rid of go 1.13 (#86036)
Kubernetes builds with go1.14.
Terraform has an upstream patch which fixes the macos mojave issues -
it's a bug in terraform, not go.
2020-04-26 08:37:59 +00:00
rizary
7c399a4ee0 nixpkgs-fmt: 0.7.0 -> 0.8.0 2020-04-25 22:57:02 -07:00
Dmitry Kalinkin
f0da3b5e94
Merge pull request #85952 from LnL7/darwin-lapack
lapack: fix darwin library identifiers
2020-04-26 00:39:26 -04:00
zowoq
7a40eb5763 docker-machine: use installShellFiles 2020-04-26 13:36:15 +10:00