255886 Commits

Author SHA1 Message Date
Sandro
e3ae6bac49
Merge pull request #105043 from r-ryantm/auto-update/ostree
ostree: 2020.7 -> 2020.8
2020-11-26 18:46:17 +01:00
Sandro
0e7fb7d77d
Merge pull request #104999 from r-ryantm/auto-update/kotlin
kotlin: 1.4.0 -> 1.4.20
2020-11-26 18:45:05 +01:00
R. RyanTM
6e10f43c6b pt2-clone: 1.24 -> 1.25_fix 2020-11-26 17:26:49 +00:00
Pavol Rusnak
8aa1ee34b9
Merge pull request #103838 from braunse/batik-1.13
batik: 1.6 -> 1.13
2020-11-26 17:56:43 +01:00
Pavol Rusnak
b8bc039a13
Merge pull request #99381 from fgaz/ft2-pt2-clone/endianness
pt2-clone,ft2-clone: only build on little-endian systems
2020-11-26 17:52:32 +01:00
Pavol Rusnak
73ec4085c9
Merge pull request #104208 from freezeboy/unbreak-unicon-lang
unicon-lang: unbreak adding libnsl
2020-11-26 17:44:32 +01:00
Pavol Rusnak
b431a2bf0c
Merge pull request #103682 from evils/elvis
fix some dead meta.homepage entries
2020-11-26 17:35:38 +01:00
R. RyanTM
3799d5ae21 procs: 0.10.7 -> 0.10.9 2020-11-26 16:32:35 +00:00
Pavol Rusnak
e6e85c4a95
Merge pull request #105000 from SamirHafez/plex-enable-aarch64
plex: Add aarch64 platform
2020-11-26 17:29:34 +01:00
Pavol Rusnak
f1f38c91c9
Merge pull request #105008 from mudrii/NewMaintainer
maintainers: add mudrii
2020-11-26 17:21:04 +01:00
José Romildo Malaquias
cbb73cdd2f
Merge pull request #105019 from r-ryantm/auto-update/matcha-gtk-theme
matcha-gtk-theme: 2020-11-11-0 -> 2020-11-23
2020-11-26 13:03:01 -03:00
StigP
def8244a38
Merge pull request #105018 from SuperSandro2000/nixpkgs-review-2.5.0
nixpkgs-review: 2.4.2 -> 2.5.0
2020-11-26 16:54:00 +01:00
R. RyanTM
bf4d75a6e3 pdfsam-basic: 4.2.0 -> 4.2.1 2020-11-26 15:49:47 +00:00
R. RyanTM
2c3ab49b29 page: 2.3.4 -> 2.3.5 2020-11-26 15:32:13 +00:00
Ryan Mulligan
39704246ea
Merge pull request #105041 from r-ryantm/auto-update/onefetch
onefetch: 2.7.1 -> 2.7.3
2020-11-26 07:30:50 -08:00
Raghav Sood
fb0e77191d
Merge pull request #105032 from xwvvvvwx/turbo-geth-2020.11.04
turbo-geth: 2020.11.03 -> 2020.11.04
2020-11-26 15:11:12 +00:00
sternenseemann
f8bab20f01
ocamlPackages.ocaml-migrate-parsetree: 1.7.3 -> 1.8.0 2020-11-26 16:07:18 +01:00
R. RyanTM
f7c6165890 ostree: 2020.7 -> 2020.8 2020-11-26 15:04:20 +00:00
Dmitry Kalinkin
a97cb19b38
Merge pull request #104593 from siriobalmelli-foss/fix/ghostscript
ghostscript: fix broken rpath on Darwin
2020-11-26 10:01:38 -05:00
Doron Behar
8023e3c42a openjdk*: Add gtk3 to passthru of all versions 2020-11-26 09:55:32 -05:00
Doron Behar
3e48a6db49 openjdk: Merge passthrus
Fixes #104680.
2020-11-26 09:55:32 -05:00
Sandro
8766210d9d
Merge pull request #105033 from kampka/execline
execline: cleanup dependencies
2020-11-26 15:38:42 +01:00
Sandro
952a6261d6
Merge pull request #104998 from r-ryantm/auto-update/jsonnet
jsonnet: 0.16.0 -> 0.17.0
2020-11-26 15:34:15 +01:00
R. RyanTM
8f4677e222 onefetch: 2.7.1 -> 2.7.3 2020-11-26 14:33:44 +00:00
Silvan Mosberger
86f4de6ee9
release-lib: Don't use tryEval for packagePlatforms
This use of tryEval causes hydra to fully ignore evaluation failures of
packages that occur while trying to evaluate the hydra platforms it should be
built on. This includes failures that occur during evaluation of:
- The `.type` attribute value
- The `.meta.hydraPlatforms` or `.meta.platforms` attribute value
  - The `.version` attribute, since this can determine whether
    `.meta.position` is set
- For non-derivations, `.recurseForDerivations` or `.recurseForRelease`

Here's a minimal `release.nix` file, showcasing how a `.version` failure
is ignored:

  let
    packages = pkgs: {
      success = pkgs.stdenv.mkDerivation {
        name = "success";
      };
      ignoredFailure = pkgs.stdenv.mkDerivation {
        pname = "ignored-failure";
        version = throw "version error";
      };
      caughtFailure = pkgs.stdenv.mkDerivation {
        name = "caught-failure";
        src = throw "src error";
      };
    };

    releaseLib = import <nixpkgs/pkgs/top-level/release-lib.nix> {
      packageSet = args: packages (import <nixpkgs> args);
      supportedSystems = [ "x86_64-linux" ];
    };
  in
  releaseLib.mapTestOn (releaseLib.packagePlatforms releaseLib.pkgs)

Evaluating this with `hydra-eval-jobs` before this change yields:

  $ hydra-eval-jobs release.nix -I nixpkgs=/path/to/nixpkgs
  warning: `--gc-roots-dir' not specified
  error: "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
  {
    "caughtFailure.x86_64-linux": {
      "error": "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
    },
    "success.x86_64-linux": {
      "description": "",
      "drvPath": "/nix/store/q1sw933xd9bxfx6rcp0kqksbprj1wmwj-success.drv",
      "homepage": "",
      "isChannel": false,
      "license": "",
      "maintainers": "",
      "maxSilent": 7200,
      "nixName": "success",
      "outputs": {
        "out": "/nix/store/7awrz6hss4jjxvgbwi4wlyikncmslb7a-success"
      },
      "schedulingPriority": 100,
      "system": "x86_64-linux",
      "timeout": 36000
    }
  }

Where you can see that there is no job for the `ignoredFailure`
derivation. Compare this to after this change:

  $ hydra-eval-jobs release.nix -I nixpkgs=/path/to/nixpkgs
  warning: `--gc-roots-dir' not specified
  error: "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
  error: "error: --- ThrownError --- hydra-eval-jobs\nversion error"
  {
    "caughtFailure.x86_64-linux": {
      "error": "error: --- ThrownError --- hydra-eval-jobs\nsrc error"
    },
    "ignoredFailure": {
      "error": "error: --- ThrownError --- hydra-eval-jobs\nversion error"
    },
    "success.x86_64-linux": {
      "description": "",
      "drvPath": "/nix/store/q1sw933xd9bxfx6rcp0kqksbprj1wmwj-success.drv",
      "homepage": "",
      "isChannel": false,
      "license": "",
      "maintainers": "",
      "maxSilent": 7200,
      "nixName": "success",
      "outputs": {
        "out": "/nix/store/7awrz6hss4jjxvgbwi4wlyikncmslb7a-success"
      },
      "schedulingPriority": 100,
      "system": "x86_64-linux",
      "timeout": 36000
    }
  }

Notice how `ignoredFailure` is now part of the result.
2020-11-26 15:32:08 +01:00
ajs124
eec6063cc4 php73: 7.3.24 -> 7.3.25
https://www.php.net/ChangeLog-7.php#7.3.25
2020-11-26 15:31:25 +01:00
Martin Weinelt
de7d93f62d
Merge pull request #105039 from mvnetbiz/zigpy-zigate
python3Packages.zigpy-zigate: propagate build inputs
2020-11-26 15:30:43 +01:00
David Terry
e620b76ee8
turbo-geth: 2020.11.03 -> 2020.11.04 2020-11-26 15:16:09 +01:00
Matt Votava
0e2730ba72 python3Packages.zigpy-zigate: propagate build inputs 2020-11-26 06:14:22 -08:00
R. RyanTM
a77fa8d94c nushell: 0.22.0 -> 0.23.0 2020-11-26 14:09:58 +00:00
Sandro
9c6a75e379
Merge pull request #103037 from lightdiscord/package-update/protonmail-bridge 2020-11-26 15:05:23 +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
Sandro
300966468e
Merge pull request #104954 from r-ryantm/auto-update/doctl
doctl: 1.52.0 -> 1.53.0
2020-11-26 14:57:24 +01:00
Sandro
bdf504b1ea
Merge pull request #105031 from r-ryantm/auto-update/nextdns
nextdns: 1.8.8 -> 1.9.4
2020-11-26 14:55:08 +01:00
Sandro Jäckel
d6d6dd1a68
FormEncode: 1.3.1 -> 2.0.0 2020-11-26 14:52:46 +01:00
Sandro
bd49a29dbd
Merge pull request #105029 from r-ryantm/auto-update/mlkit
mlkit: 4.5.1 -> 4.5.2
2020-11-26 14:42:12 +01:00
Martin Weinelt
abd9ef1607
Merge pull request #105006 from ymarkus/fix-postfixMySQL
postfix: fix "cant find <mysql.h>" when building with "withMySQL = true"
2020-11-26 14:32:25 +01:00
Sandro
af6ebad51c
Merge pull request #102775 from SuperSandro2000/patch-3
eureka-editor: mark broken on darwin
2020-11-26 14:31:23 +01:00
Christian Kampka
a6f770465e
execline: cleanup dependencies 2020-11-26 14:30:31 +01:00
Milan Pässler
81aff9f411 nixos/gitlab: use bindsTo instead of requires for gitaly 2020-11-26 14:12:14 +01:00
Milan Pässler
72ba4fce76 gitaly: build with system libgit2 2020-11-26 14:12:14 +01:00
Milan Pässler
c1c2ff4a97 gitlab: 13.6.0 -> 13.6.1 2020-11-26 14:12:14 +01:00
Milan Pässler
844eddf330 gitlab-workhorse: use buildGoModule 2020-11-26 14:12:13 +01:00
Milan Pässler
2e4862d3ba gitlab-shell: use buildGoModule 2020-11-26 14:12:13 +01:00
Milan Pässler
0f344cc0db gitaly: use buildGoModule 2020-11-26 14:12:06 +01:00
Kevin Cox
a5da6e5215
Merge pull request #99563 from 06kellyjac/kube3d_discoverability
kube3d: increase discoverability
2020-11-26 08:06:05 -05:00
Sandro
2924683301
Merge pull request #104956 from r-ryantm/auto-update/doppler
doppler: 3.17.0 -> 3.19.0
2020-11-26 13:40:25 +01:00
06kellyjac
cdfa9b0c26 kube3d: re-order the derivation and general cleanup
Moved k3sVersion to be a variable.
Converted buildFlagsArray to an array
Moved vendorSha256 closer to src
Moved doCheck between build and install related bits (like where the
phase happens)
Replaced stdenv.lib with lib
2020-11-26 12:37:37 +00:00
06kellyjac
168df5f4ff kube3d: mention k3d in the short description
While I was able to find `deno` by searching for "executable" from it's
longDescription on search.nixos.org, I couldn't find it using `nix search`

`nix search` seems to only look at the short description so it's worth
including there too.
2020-11-26 12:36:32 +00:00
06kellyjac
7a03c0f5fe kube3d: add a longDescription to provide detail and help searches
search.nixos.org was able to show me `deno` when searching for
"executable" which was in the longDescription
2020-11-26 12:36:31 +00:00