From 31012ecc47c3113bd773c3d9f6f59a6295f08ab8 Mon Sep 17 00:00:00 2001 From: James Walker Date: Tue, 17 May 2022 22:03:31 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20add=20gopls=20to=20nix=20shell?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flake.lock | 12 ++++++------ flake.nix | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index b418465..f3b8535 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/flake.nix b/flake.nix index 1be7357..5151c36 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ devShell = pkgs.mkShell { name = "workon"; - buildInputs = with pkgs; [ go ]; + buildInputs = with pkgs; [ go gopls ]; }; } );