2020-03-27 07:33:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-11-25 23:00:00 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "git-subtrac";
|
2020-05-05 10:20:00 +01:00
|
|
|
version = "0.02";
|
2019-11-25 23:00:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apenwarr";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-05-05 10:20:00 +01:00
|
|
|
sha256 = "1nj950r38sxzrgw69m1xphm7a4km2g29iw2897gfx4wx57jl957k";
|
2019-11-25 23:00:00 +00:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "1ccwbhzwys8sl3m2rs2lp70snzsi2a0ahnnq8kn15rrlvsv5qahf";
|
2019-11-25 23:00:00 +00:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-11-25 23:00:00 +00:00
|
|
|
description = "Keep the content for your git submodules all in one place: the parent repo";
|
|
|
|
homepage = "https://github.com/apenwarr/git-subtrac";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
2020-05-01 02:59:00 +01:00
|
|
|
}
|