Regenerate dist

This commit is contained in:
Luc Perkins
2025-10-28 12:01:12 -03:00
6 changed files with 37 additions and 29 deletions

View File

@@ -12,7 +12,7 @@ jobs:
id-token: write id-token: write
contents: read contents: read
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Check Nixpkgs - name: Check Nixpkgs

View File

@@ -14,7 +14,7 @@ jobs:
pull-requests: write pull-requests: write
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: DeterminateSystems/determinate-nix-action@v3 - uses: DeterminateSystems/determinate-nix-action@v3
- uses: DeterminateSystems/update-flake-lock@main - uses: DeterminateSystems/update-flake-lock@main
with: with:

View File

@@ -9,7 +9,7 @@ jobs:
validate: validate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Validate YAML - name: Validate YAML

12
flake.lock generated
View File

@@ -2,16 +2,16 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1754498491, "lastModified": 1757487488,
"narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=",
"rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0",
"revCount": 840654, "revCount": 859555,
"type": "tarball", "type": "tarball",
"url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.840654%2Brev-c2ae88e026f9525daf89587f3cbee584b92b6134/019885a0-3e57-7dd9-84e4-9d98e043e35c/source.tar.gz" "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.859555%2Brev-ab0f3607a6c7486ea22229b92ed2d355f1482ee0/01993860-4c2b-73a3-9c67-955d87cd3025/source.tar.gz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",
"url": "https://flakehub.com/f/NixOS/nixpkgs/0.1.%2A.tar.gz" "url": "https://flakehub.com/f/NixOS/nixpkgs/0.1"
} }
}, },
"root": { "root": {

View File

@@ -1,23 +1,37 @@
{ {
description = "update-flake-lock"; description = "update-flake-lock";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz"; inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
outputs = { self, nixpkgs }: outputs =
{ self, nixpkgs }:
let let
supportedSystems = [ "x86_64-linux" "aarch64-darwin" "aarch64-linux" "x86_64-darwin" ]; supportedSystems = [
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { "x86_64-linux"
pkgs = import nixpkgs { inherit system; }; "aarch64-darwin"
}); "aarch64-linux"
"x86_64-darwin"
];
forEachSupportedSystem =
f:
nixpkgs.lib.genAttrs supportedSystems (
system:
f {
pkgs = import nixpkgs { inherit system; };
}
);
in in
{ {
devShells = forEachSupportedSystem ({ pkgs }: { devShells = forEachSupportedSystem (
default = pkgs.mkShell { { pkgs }:
packages = with pkgs; [ {
nodejs_latest default = pkgs.mkShell {
nodePackages_latest.pnpm packages = with pkgs; [
]; nodejs_latest
}; nodePackages_latest.pnpm
}); ];
};
}
);
}; };
} }

View File

@@ -1,6 +0,0 @@
(import
(fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
})
{ src = ./.; }).shellNix