Nix expr: Bump pinned Nixpkgs to 24.05

This commit is contained in:
YoshiRulz 2024-06-01 11:26:29 +10:00
parent d2fe532f6d
commit e2ece89fd5
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ system ? builtins.currentSystem
, pkgs ? import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/23.11.tar.gz";
sha256 = "1ndiv385w1qyb3b18vw13991fzb9wg4cl21wglk89grsfsnra41k";
url = "https://github.com/NixOS/nixpkgs/archive/24.05.tar.gz";
sha256 = "1lr1h35prqkd1mkmzriwlpvxcb34kmhc9dnr48gkm8hh089hifmx";
}) { inherit system; }
, lib ? pkgs.lib
, stdenv ? pkgs.stdenvNoCC