Skip to content

Commit 4010ca1

Browse files
committed
nix: upgrade nixpkgs to latest nixos-22.11
Notable upgrades: * Go `1.18.6` to `1.18.9` * NodeJS `16.17.1` to `16.18.1` * Python `2.x.x` to `3.10.x` * Clojure `1.11.1.1165` to `1.11.1.1200` * Bundler `2.3.22` to `2.3.26` * Git `2.37.3` to `2.38.3` * Curl `7.85.0` to `7.86.0` * OpenSSL `3.0.5` to `3.0.7` Signed-off-by: Jakub Sokołowski <jakub@status.im>
1 parent 9538017 commit 4010ca1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

nix/pkgs.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ let
1111
# We follow the master branch of official nixpkgs.
1212
nixpkgsSrc = fetchFromGitHub {
1313
name = "nixpkgs-source";
14-
owner = "NixOS";
14+
owner = "status-im";
1515
repo = "nixpkgs";
16-
rev = "579238da5f431b7833a9f0681663900aaf0dd1e8";
17-
sha256 = "sha256-cDwASlAf/h0fsHtDm9yNBHEHK0uq6do+mIUEgh1i5yg=";
16+
rev = "8d4c18d605225ddb3d313363e3b4207e3db84200";
17+
sha256 = "sha256-pwf+PvH8sFPGm+BITikN0XoFiqGGWbfhh046Og5GP/I=";
1818
# To get the compressed Nix sha256, use:
1919
# nix-prefetch-url --unpack https://github.com/${ORG}/nixpkgs/archive/${REV}.tar.gz
2020
};

nix/pkgs/android-sdk/compose.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# by setting android_sdk.accept_license = true.
1010
androidenv.composeAndroidPackages {
1111
toolsVersion = "26.1.1";
12-
platformToolsVersion = "33.0.2";
12+
platformToolsVersion = "33.0.3";
1313
buildToolsVersions = [ "31.0.0" ];
1414
platformVersions = [ "31" ];
1515
cmakeVersions = [ "3.18.1" ];

nix/shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ in mkShell {
2020
# lint specific utilities
2121
clj-kondo zprint
2222
# other nice to have stuff
23-
yarn nodejs python27
23+
yarn nodejs python310
2424
] # and some special cases
2525
++ lib.optionals stdenv.isDarwin [ cocoapods clang ]
2626
++ lib.optionals (!stdenv.isDarwin) [ gcc8 ]

0 commit comments

Comments
 (0)