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

View file

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