blob: 9bdefef94db96b897d4318027675bd35a9beda5f [file] [log] [blame]
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001{ pkgs ? import <nixpkgs> {} }:
2
3let
4 unstable = import (builtins.fetchTarball {
5 name = "nixos-unstable-2021-09-12";
6 url = "https://github.com/nixos/nixpkgs/archive/2ce4d21663113020195f1d953e360213954645b3.tar.gz";
7 sha256 = "15pnbmm702a4ni8dm2jdwl46b20qw7gfm5chlrvn7w54cm3h9p0c";
8 }) {};
9in pkgs.mkShell {
10 buildInputs = with unstable; [
11 go_1_16
12 gopls
13 ];
14}