Skip to content

Commit

Permalink
Update Nixpkgs version in packaging tutorial (#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
olga-mcbfe authored Jul 19, 2024
1 parent d0c9ed4 commit fc292e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/tutorials/packaging-existing-software.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down

0 comments on commit fc292e2

Please sign in to comment.