nixpkgs/pkgs/applications/version-management/git-and-tools/git-subtrac/default.nix

25 lines
624 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-11-25 23:00:00 +00:00
buildGoModule rec {
pname = "git-subtrac";
2020-06-15 09:20:00 +00:00
version = "0.03";
2019-11-25 23:00:00 +00:00
src = fetchFromGitHub {
owner = "apenwarr";
repo = pname;
rev = "v${version}";
2020-06-15 09:20:00 +00:00
sha256 = "1ky04h18vg1yl9lykbhkmf25qslg0z2qzziy8c7afmvzvvvhm2v5";
2019-11-25 23:00:00 +00:00
};
vendorSha256 = "1ccwbhzwys8sl3m2rs2lp70snzsi2a0ahnnq8kn15rrlvsv5qahf";
2019-11-25 23:00:00 +00:00
doCheck = false;
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 09:20:00 +00:00
}