go-homedir: init at v1.1.0

This commit is contained in:
Luke Granger-Brown 2022-12-04 21:57:17 +00:00
parent 754afefc78
commit af135ff815

View file

@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.external {
path = "github.com/mitchellh/go-homedir";
src = depot.third_party.nixpkgs.fetchFromGitHub {
owner = "mitchellh";
repo = "go-homedir";
rev = "v1.1.0";
hash = "sha256:0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1";
};
}