flake update

This commit is contained in:
Robin Appelman 2025-10-10 02:07:55 +02:00
commit 9b92af732a
2 changed files with 46 additions and 27 deletions

60
flake.lock generated
View file

@ -1,22 +1,43 @@
{
"nodes": {
"flakelight": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1759818365,
"narHash": "sha256-N8jwqZ9T1ZBznv4gJ6aaHV3FZiYyErbIqeY3cxNQ07E=",
"owner": "nix-community",
"repo": "flakelight",
"rev": "eda172d7ead89292cb7f9e136a482e97e00873a4",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "flakelight",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1709315803,
"narHash": "sha256-/hHKlXR/w2Q1CgNfMPlbu68/0kGXG6py08hzhWuA5jI=",
"lastModified": 1760048741,
"narHash": "sha256-Jj+2qvTpPwU+KD2y2QSiqg4J3vsA3as6YsPl/s/6EzQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "01c6ad6d0b29988f30b8526b64775e02aba126d0",
"rev": "86aeb8a48968515e7e5625252e79137ccee0af8f",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "release-23.11",
"ref": "release-25.05",
"type": "indirect"
}
},
"root": {
"inputs": {
"flakelight": "flakelight",
"nixpkgs": "nixpkgs",
"spire": "spire",
"utils": "utils"
@ -24,25 +45,22 @@
},
"spire": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"utils": [
"utils"
"flakelight": [
"flakelight"
]
},
"locked": {
"lastModified": 1709332559,
"narHash": "sha256-EnXWdOvUSmHWHjFfZBUVZK15o6wjNuTck415KxRrzi0=",
"owner": "spiretf",
"repo": "nix",
"rev": "60cac34d4db8db2c0f832b0aa68916db4838f16a",
"type": "github"
"lastModified": 1750433696,
"narHash": "sha256-UVtSgRUzgHKUWcjsVQQM/6J8x35ly/7+P9/xbXeGLtc=",
"ref": "refs/heads/main",
"rev": "f3b763c6b9c0c31924ac2ba1b6541c2b08ed9852",
"revCount": 33,
"type": "git",
"url": "https://codeberg.org/spire/nix"
},
"original": {
"owner": "spiretf",
"repo": "nix",
"type": "github"
"type": "git",
"url": "https://codeberg.org/spire/nix"
}
},
"systems": {
@ -65,11 +83,11 @@
"systems": "systems"
},
"locked": {
"lastModified": 1709126324,
"narHash": "sha256-q6EQdSeUZOG26WelxqkmR7kArjgWCdw5sfJVHPH/7j8=",
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "d465f4819400de7c8d874d50b982301f28a84605",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {

View file

@ -1,10 +1,11 @@
{
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/release-23.11";
spire.url = "github:spiretf/nix";
spire.inputs.nixpkgs.follows = "nixpkgs";
spire.inputs.utils.follows = "utils";
nixpkgs.url = "nixpkgs/release-25.05";
flakelight.url = "github:nix-community/flakelight";
spire.url = "git+https://codeberg.org/spire/nix";
flakelight.inputs.nixpkgs.follows = "nixpkgs";
spire.inputs.flakelight.follows = "flakelight";
};
outputs = {
@ -12,13 +13,13 @@
nixpkgs,
utils,
spire,
...
}:
utils.lib.eachSystem spire.systems (system: let
utils.lib.eachSystem ["x86_64-linux" "i686-linux"] (system: let
overlays = [spire.overlays.default];
pkgs = (import nixpkgs) {
inherit system overlays;
};
inherit (pkgs) lib;
spEnv = pkgs.sourcepawn.buildEnv (with pkgs.sourcepawn.includes; [sourcemod]);
in rec {
packages = rec {