gitAndTools.git-subtrac: init at 0.01
This commit is contained in:
parent
0bf622a06b
commit
ebde7664eb
@ -129,6 +129,8 @@ let
|
|||||||
|
|
||||||
git-subrepo = callPackage ./git-subrepo { };
|
git-subrepo = callPackage ./git-subrepo { };
|
||||||
|
|
||||||
|
git-subtrac = callPackage ./git-subtrac { };
|
||||||
|
|
||||||
git-sync = callPackage ./git-sync { };
|
git-sync = callPackage ./git-sync { };
|
||||||
|
|
||||||
git-test = callPackage ./git-test { };
|
git-test = callPackage ./git-test { };
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "git-subtrac";
|
||||||
|
version = "0.01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "apenwarr";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1w6gd0x1902lzpqr74gsdrnxq36f6v14bv8h0vhlrfhbwbsih7n6";
|
||||||
|
};
|
||||||
|
|
||||||
|
modSha256 = "147vzllp1gydk2156hif313vwykagrj35vaiqy1swqczxs7p9hhs";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user