blob: f42f5745785e2fd1eb5f2cfda66c942c5ab8592e (
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.1";
src = fetchFromGitHub {
owner = "nsfisis";
repo = "git-helpers";
rev = "v${version}";
hash = "sha256-6aRPjED6yarVobMGAfCNC5pWkNHoz7Il0DUt9Wwja/0=";
};
vendorHash = null;
meta = {
description = "My git helpers";
homepage = "https://github.com/nsfisis/git-helpers";
license = lib.licenses.mit;
};
}
|