Skip to content

Commit 6b39bd7

Browse files
committed
Convert templates to Nixpkgs stable
1 parent bd88b83 commit 6b39bd7

27 files changed

+133
-185
lines changed

nix/templates/dev/cpp/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/cpp/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs

nix/templates/dev/golang/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/golang/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs

nix/templates/dev/haskell/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/haskell/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs

nix/templates/dev/javascript/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/javascript/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs

nix/templates/dev/python/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/python/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs

nix/templates/dev/rust/flake.lock

+14-49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/rust/flake.nix

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
7-
rust-overlay.url = "github:oxalica/rust-overlay"; # A helper for Rust + Nix
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
8+
# A helper library for Rust + Nix
9+
rust-overlay.url = "https://flakehub.com/f/oxalica/rust-overlay/*";
810
};
911

1012
# Flake outputs
@@ -16,8 +18,8 @@
1618
(import rust-overlay)
1719
# Provides a `rustToolchain` attribute for Nixpkgs that we can use to
1820
# create a Rust environment
19-
(self: super: {
20-
rustToolchain = super.rust-bin.stable.latest.default;
21+
(final: prev: {
22+
rustToolchain = prev.rust-bin.stable.latest.default;
2123
})
2224
];
2325

nix/templates/dev/scala/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/dev/scala/flake.nix

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33

44
# Flake inputs
55
inputs = {
6-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
6+
# Latest stable Nixpkgs
7+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
78
};
89

910
# Flake outputs
1011
outputs = { self, nixpkgs }:
1112
let
1213
# Overlays enable you to customize the Nixpkgs attribute set
1314
overlays = [
14-
(self: super:
15-
let jdk = super.openjdk17; in
15+
(final: prev:
16+
let jdk = prev.openjdk17; in
1617
# sets jre/jdk overrides that use the openjdk17 package
1718
{
1819
jre = jdk;

nix/templates/pkg/cpp/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/pkg/cpp/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
description = "C++ example flake for Zero to Nix";
33

44
inputs = {
5-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
5+
# Latest stable Nixpkgs
6+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
67
};
78

89
outputs = { self, nixpkgs }:

nix/templates/pkg/golang/flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
description = "Go example flake for Zero to Nix";
33

44
inputs = {
5+
# Latest stable Nixpkgs
56
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
67
};
78

nix/templates/pkg/haskell/flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/templates/pkg/haskell/flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
description = "Haskell example flake for Zero to Nix";
33

44
inputs = {
5-
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz";
5+
# Latest stable Nixpkgs
6+
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0";
67
};
78

89
outputs = { self, nixpkgs }:

0 commit comments

Comments
 (0)