1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "git-subtrac";
9 version = "0.04";
10
11 src = fetchFromGitHub {
12 owner = "apenwarr";
13 repo = "git-subtrac";
14 rev = "v${version}";
15 hash = "sha256-3Z1AbPPsTBa3rqfvNAMBz7CIRq/zc9q5/TcLJWYSNlw=";
16 };
17
18 vendorHash = "sha256-3mJoSsGE+f9hVbNctjMR7WmSkCaHmKIO125LWG1+xFQ=";
19
20 doCheck = false;
21
22 meta = with lib; {
23 description = "Keep the content for your git submodules all in one place: the parent repo";
24 homepage = "https://github.com/apenwarr/git-subtrac";
25 license = licenses.asl20;
26 maintainers = [ ];
27 mainProgram = "git-subtrac";
28 };
29}