summary refs log tree commit diff
path: root/pkgs/development/tools/misc/go-repo-root/default.nix
blob: 16520ee0457fb4431536c5702d31e21a3b9235b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, goPackages, fetchFromGitHub }:

let
  version = "0.0.1";
in

with lib; with goPackages;
buildGoPackage rec {
  name = "go-repo-root-${version}";
  goPackagePath = "github.com/cstrahan/go-repo-root";
  src = fetchFromGitHub {
    owner = "cstrahan";
    repo = "go-repo-root";
    rev = "90041e5c7dc634651549f96814a452f4e0e680f9";
    sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4";
  };

  buildInputs = [ tools ];

  meta = with lib; {
    homepage    = "https://github.com/cstrahan/go-repo-root";
    maintainers = with maintainers; [ cstrahan ];
    license     = licenses.mit;
    platforms   = platforms.all;
  };
}