chore(3p): bump NixOS channels to 2021-11-24

* The API for gradleGen changed which makes our override a bit simpler
  at least.

Change-Id: Ib5d7bc33d30a4545235a8a74eadbb418cd76d1d0
This commit is contained in:
sterni 2021-11-25 12:17:35 +01:00
parent 750ef6c693
commit 397c3e70b3
2 changed files with 11 additions and 16 deletions

View file

@ -13,16 +13,16 @@ let
# nixos-unstable, and the current stable channel of the latest NixOS # nixos-unstable, and the current stable channel of the latest NixOS
# release. # release.
# Tracking nixos-unstable as of 2021-11-16. # Tracking nixos-unstable as of 2021-11-24.
unstableHashes = { unstableHashes = {
commit = "931ab058daa7e4cd539533963f95e2bb0dbd41e6"; commit = "39cb89ef2ffcbef8d2ac2d52267ac69121a6becb";
sha256 = "079925kw711k8agg17kxq36ininpacfjjhgydjy0pqbkhk59v6gm"; sha256 = "1x9vzpay56ap4hgfq1giz00050crdngv5jkxgkxzx276mzhw93na";
}; };
# Tracking nixos-21.05 as of 2021-11-15. # Tracking nixos-21.05 as of 2021-11-24.
stableHashes = { stableHashes = {
commit = "46251a79f752ae1d46ef733e8e9760b6d3429da4"; commit = "09650059d7f5ae59a7f0fb2dd3bfc6d2042a74de";
sha256 = "1xsp0xyrf8arjkf4wi09n96kbg0r8igsmzx8bhc1nj4nr078p0pg"; sha256 = "0f06zcc8mh934fya0hwzklmga238yxiyfp183y48vyzkdsg7xgn0";
}; };
# import the nixos-unstable package set, or optionally use the # import the nixos-unstable package set, or optionally use the

View file

@ -9,17 +9,12 @@ self: super: {
# Required for apereo-cas # Required for apereo-cas
# TODO(lukegb): Document why? # TODO(lukegb): Document why?
gradle_6 = (super.gradleGen.override { gradle_6 = self.callPackage (super.gradleGen {
java = self.jdk11; version = "6.5.1";
jdk = self.jdk11;
}).gradleGen rec {
name = "gradle-6.5.1";
nativeVersion = "0.22-milestone-3"; nativeVersion = "0.22-milestone-3";
sha256 = "0jmmipjh4fbsn92zpifa5cqg5ws2a4ha0s4jzqhrg4zs542x79sh";
src = builtins.fetchurl { }) {
url = "https://services.gradle.org/distributions/${name}-bin.zip"; java = self.jdk11;
sha256 = "0jmmipjh4fbsn92zpifa5cqg5ws2a4ha0s4jzqhrg4zs542x79sh";
};
}; };
clang-tools_11 = self.clang-tools.override { clang-tools_11 = self.clang-tools.override {