From 385863a2a042e6454c3257277cc6f276bf9b978a Mon Sep 17 00:00:00 2001
From: Luc Perkins
Date: Wed, 8 Oct 2025 13:30:03 -0500
Subject: [PATCH 1/2] Update README and remove flake
---
.github/workflows/check.yml | 8 ++++----
README.md | 9 ++++++---
flake.lock | 25 -------------------------
flake.nix | 22 ----------------------
4 files changed, 10 insertions(+), 54 deletions(-)
delete mode 100644 flake.lock
delete mode 100644 flake.nix
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index fedcd63..f5b6509 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -17,6 +17,7 @@ jobs:
contents: read
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ NIXPKGS: https://flakehub.com/f/NixOS/nixpkgs/=0.2505.810859
steps:
- uses: actions/checkout@v4
@@ -30,7 +31,6 @@ jobs:
- name: Check README links
run: |
- nix develop --command \
- lychee \
- --github-token ${{ env.GITHUB_TOKEN }} \
- README.md
+ nix run "${{ env.NIXPKGS }}#lychee" -- \
+ --github-token ${{ env.GITHUB_TOKEN }} \
+ README.md
diff --git a/README.md b/README.md
index bdafb37..9e43161 100644
--- a/README.md
+++ b/README.md
@@ -9,11 +9,14 @@
-# ️❄️ Determinate Systems issues
+# ️❄️ File issues for Determinate Systems projects
-Use this repo's [issues] section if you need to report issues with [FlakeHub] or Determinate's official documentation at [docs.determinate.systems][docs].
+Use this repo's [issues] section if you need to report issues with:
-For our [open source][oss] projects, we recommend filing issues in the relevant repository.
+- [FlakeHub] or
+- Determinate's official documentation at [docs.determinate.systems][docs].
+
+For our [open source projects][oss], we recommend filing issues in the relevant repository.
| Project | Repository |
| :--------------------------- | :------------------------------------------------------- |
diff --git a/flake.lock b/flake.lock
deleted file mode 100644
index e527aac..0000000
--- a/flake.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "nodes": {
- "nixpkgs": {
- "locked": {
- "lastModified": 1747744144,
- "narHash": "sha256-W7lqHp0qZiENCDwUZ5EX/lNhxjMdNapFnbErcbnP11Q=",
- "rev": "2795c506fe8fb7b03c36ccb51f75b6df0ab2553f",
- "revCount": 803506,
- "type": "tarball",
- "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.803506%2Brev-2795c506fe8fb7b03c36ccb51f75b6df0ab2553f/0196f0ab-a5df-7f4a-ab77-08177eaa0159/source.tar.gz"
- },
- "original": {
- "type": "tarball",
- "url": "https://flakehub.com/f/NixOS/nixpkgs/0.1"
- }
- },
- "root": {
- "inputs": {
- "nixpkgs": "nixpkgs"
- }
- }
- },
- "root": "root",
- "version": 7
-}
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index 7ea6fa7..0000000
--- a/flake.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
-
- outputs = inputs:
- let
- supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
-
- forEachSupportedSystem = f: inputs.nixpkgs.lib.genAttrs supportedSystems (system: f {
- pkgs = import inputs.nixpkgs { inherit system; };
- });
- in
- {
-
- devShells = forEachSupportedSystem ({ pkgs }:
- {
- default = pkgs.mkShellNoCC {
- packages = with pkgs; [ lychee ];
- };
- });
- };
-}
-
From 08ba5c8cd023c27bc0063908732c1304bbc9e67a Mon Sep 17 00:00:00 2001
From: Luc Perkins
Date: Wed, 8 Oct 2025 13:30:24 -0500
Subject: [PATCH 2/2] Remove flake checker check
---
.github/workflows/check.yml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index f5b6509..7b6a20e 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -21,10 +21,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: DeterminateSystems/flake-checker-action@main
- with:
- fail-mode: false
-
- uses: DeterminateSystems/determinate-nix-action@main
- uses: DeterminateSystems/flakehub-cache-action@main