From 6ef0ada2261bc1fd72465c256ef63736c07c3ba8 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Wed, 1 May 2024 14:48:19 -0300 Subject: [PATCH 1/3] Use FlakeHub links in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 001e478..d5360ac 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ With Nix installed, you can [realise] a Nix [derivation]: nix build --print-build-logs # Or without cloning this repo -nix build --print-build-logs "github:DeterminateSystems/nuenv" +nix build --print-build-logs "https://flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz" ``` You should see build output like this: @@ -73,8 +73,8 @@ Here's a straightforward example: ```nix { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; - nuenv.url = "github:DeterminateSystems/nuenv"; + nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; + nuenv.url = "https://:flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; }; outputs = { self, nixpkgs, nuenv }: let @@ -121,8 +121,8 @@ Here's an example: # This example is only for x86_64-linux; adjust for your own platform { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs"; - nuenv.url = "github:DeterminateSystems/nuenv"; + nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; + nuenv.url = "https://:flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; }; outputs = { self, nixpkgs, nuenv }: let From 39c59a83b6200b9f7c5bc263c6ed8ee73b50ab05 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Fri, 3 May 2024 14:48:12 -0300 Subject: [PATCH 2/3] Fix link 1 Co-authored-by: Cole Helbling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5360ac..a743bcf 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Here's a straightforward example: { inputs = { nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; - nuenv.url = "https://:flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; + nuenv.url = "https://flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; }; outputs = { self, nixpkgs, nuenv }: let From 279be79b8fdf4e65266d8c83239bc55a2c68146b Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Fri, 3 May 2024 14:48:20 -0300 Subject: [PATCH 3/3] Fix link 2 Co-authored-by: Cole Helbling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a743bcf..ac86fc0 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Here's an example: { inputs = { nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; - nuenv.url = "https://:flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; + nuenv.url = "https://flakehub.com/f/DeterminateSystems/nuenv/*.tar.gz"; }; outputs = { self, nixpkgs, nuenv }: let