📦 add gopls to nix shell

This commit is contained in:
James Walker 2022-05-17 22:03:31 -04:00
parent c3cd9fac3f
commit 31012ecc47
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 7 additions and 7 deletions

View File

@ -2,11 +2,11 @@
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1638122382,
"narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=",
"lastModified": 1652776076,
"narHash": "sha256-gzTw/v1vj4dOVbpBSJX4J0DwUR6LIyXo7/SuuTJp1kM=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "74f7e4319258e287b0f9cb95426c9853b282730b",
"rev": "04c1b180862888302ddfb2e3ad9eaa63afc60cf8",
"type": "github"
},
"original": {
@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1638977084,
"narHash": "sha256-3mZa8Fainrqisb3JP0Wcjt/+cspZU802AEYLkA/qpkI=",
"lastModified": 1652838862,
"narHash": "sha256-xUprYS+7/lHZhmdJRhwhEI/QbBrxJ0bjt399RWlb+P0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ef9a8ddc6da42e5ea67367b60a3ddce0de0dd9fc",
"rev": "1e46397e1a963f4793438481c7ea933e2940d10b",
"type": "github"
},
"original": {

View File

@ -21,7 +21,7 @@
devShell = pkgs.mkShell {
name = "workon";
buildInputs = with pkgs; [ go ];
buildInputs = with pkgs; [ go gopls ];
};
}
);