Toolchain: Use nixos-unstable instead of nixpkgs master in flake
This patch updates the flake to track the nixos-unstable branch instead of master for the nixpkgs flake input. This ensures that hydra.nixos.org (the NixOS CI) has built all packages, made them available in the cache.nixos.org binary cache without the risk of a definitions (evalulation) being broken on master.
This commit is contained in:
parent
b2a1130556
commit
20162874e0
Notes:
sideshowbarker
2024-07-16 22:17:03 +09:00
Author: https://github.com/networkException Commit: https://github.com/SerenityOS/serenity/commit/20162874e0 Pull-request: https://github.com/SerenityOS/serenity/pull/22154
2 changed files with 5 additions and 4 deletions
7
Toolchain/flake.lock
generated
7
Toolchain/flake.lock
generated
|
@ -20,15 +20,16 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1693485768,
|
||||
"narHash": "sha256-PxqYECiPBBbavaPjnf/v2rlzp2Xoe/JPA7rl1WxGe0A=",
|
||||
"lastModified": 1701253981,
|
||||
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "c106712dc7a447db0c8a654162c3a0557909dfd6",
|
||||
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
description = "Serenity OS";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
outputs = { self, flake-utils, nixpkgs }:
|
||||
|
|
Loading…
Add table
Reference in a new issue