about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix
blob: 0d94f6cf6e22f5cb7250111229df13e76ca8ba48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "github.com/mitchellh/go-homedir";

  src = pkgs.third_party.fetchFromGitHub {
    owner = "mitchellh";
    repo = "go-homedir";
    rev = "af06845cf3004701891bf4fdb884bfe4920b3727";
    sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1";
  };
}