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-09-07 05:20:00 +01:00
|
|
|
version = "0.04";
|
2019-11-25 23:00:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apenwarr";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-09-07 05:20:00 +01:00
|
|
|
sha256 = "0p1n29k2a2rpznwxlwzkmx38ic6g041k9vx7msvick7cydn417fx";
|
2019-11-25 23:00:00 +00:00
|
|
|
};
|
|
|
|
|
2020-09-07 05:20:00 +01:00
|
|
|
vendorSha256 = "0m64grnmhjvfsw7a56474s894sgd24rvcp5kamhzzyc4q556hqny";
|
2019-11-25 23:00:00 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
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-06-15 10:20:00 +01:00
|
|
|
}
|