From fc292e2cd67d9cb896c06a072e9e85aadc7a68b8 Mon Sep 17 00:00:00 2001 From: Olga Pilipenco <70717429+olga-mcbfe@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:33:00 -0600 Subject: [PATCH] Update Nixpkgs version in packaging tutorial (#1024) --- source/tutorials/packaging-existing-software.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tutorials/packaging-existing-software.md b/source/tutorials/packaging-existing-software.md index 94b6982d9..cc56acdf6 100644 --- a/source/tutorials/packaging-existing-software.md +++ b/source/tutorials/packaging-existing-software.md @@ -129,7 +129,7 @@ The recommended way to do this is to create a `default.nix` file in the same dir ```nix # default.nix let - nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-22.11"; + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; pkgs = import nixpkgs { config = {}; overlays = []; }; in { @@ -237,7 +237,7 @@ Change the `default.nix` from the previous section by adding a new attribute for ```nix # default.nix let - nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-22.11"; + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; pkgs = import nixpkgs { config = {}; overlays = []; }; in {