Skip to content

Commit

Permalink
Fix comments about the version of nixpkgs used
Browse files Browse the repository at this point in the history
  • Loading branch information
avdv committed May 3, 2022
1 parent 5e8eb30 commit 6380e6c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/cc/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/cc_with_deps/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/go/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/java/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-21
# nixpkgs as of 2022-02-21
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/python/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion examples/toolchains/rust/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
# nixpkgs-unstable as of 2021-02-19
# nixpkgs 21.11
spec = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
Expand Down

0 comments on commit 6380e6c

Please sign in to comment.