Skip to content

Commit 37226cb

Browse files
authored
[devbox] Update to latest version of nixpkgs (#2488)
## Summary Update to latest version of nixpkgs. This will allow us to use the package for `go 1.19`. ## How was it tested? Compiled, used in sample project. ## Is this change backwards-compatible? Yes.
1 parent 150a256 commit 37226cb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tmpl/shell.nix.tmpl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
let
2-
pkgs = import (fetchTarball {
3-
url = "https://github.com/NixOS/nixpkgs/archive/refs/tags/22.05.tar.gz";
4-
sha256 = "0d643wp3l77hv2pmg2fi7vyxn4rwy0iyr8djcw1h5x72315ck9ik";
2+
pkgs = import (fetchGit {
3+
url = "https://github.com/nixos/nixpkgs/";
4+
ref = "refs/heads/nixos-unstable";
5+
# Commit hash as of 2022-08-16
6+
# `git ls-remote https://github.com/nixos/nixpkgs nixos-unstable`
7+
rev = "af9e00071d0971eb292fd5abef334e66eda3cb69";
58
}) {};
69
in with pkgs;
710
mkShell {

0 commit comments

Comments
 (0)