From 6822c954a40268359c76778de497108e1dc75087 Mon Sep 17 00:00:00 2001 From: Lorin Werthen-Brabants Date: Thu, 26 Sep 2024 09:59:48 +0200 Subject: [PATCH] try to update the nixpkgs commit --- packages.nix | 4 ++-- shell.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.nix b/packages.nix index 2fb7f9d5..22aadd72 100644 --- a/packages.nix +++ b/packages.nix @@ -1,8 +1,8 @@ let - rev = "70904d4a9927a4d6e05c72c4aaac4370e05107f3"; + rev = "759537f06e6999e141588ff1c9be7f3a5c060106"; nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz"; pkgs = import nixpkgs {}; - ruby = pkgs.ruby_3_0; + ruby = pkgs.ruby_3_3; gems = pkgs.bundlerEnv { name = "zeus.ugent.be"; inherit ruby; diff --git a/shell.nix b/shell.nix index c055eb4e..b9939d3d 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,6 @@ let build-deps = import ./packages.nix; - rev = "70904d4a9927a4d6e05c72c4aaac4370e05107f3"; + rev = "759537f06e6999e141588ff1c9be7f3a5c060106"; nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz"; pkgs = import nixpkgs {}; in