aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs/git-helpers/default.nix
blob: 94b4121202fecad1d890616fe0fa6e89515e863c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "git-helpers";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "nsfisis";
    repo = "git-helpers";
    rev = "v${version}";
    hash = "sha256-iK3P91PwKgQz4WIQBJVGjDP65dZSB0LL/NGItMj/wzQ=";
  };
  vendorHash = null;

  meta = {
    description = "My git helpers";
    homepage = "https://github.com/nsfisis/git-helpers";
    license = lib.licenses.mit;
  };
}