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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
651 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-11-25 23:00:00 +00:00
buildGoModule rec {
pname = "git-subtrac";
2020-09-07 04:20:00 +00:00
version = "0.04";
2019-11-25 23:00:00 +00:00
src = fetchFromGitHub {
owner = "apenwarr";
repo = pname;
rev = "v${version}";
2023-09-21 14:23:40 +00:00
hash = "sha256-3Z1AbPPsTBa3rqfvNAMBz7CIRq/zc9q5/TcLJWYSNlw=";
2019-11-25 23:00:00 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-3mJoSsGE+f9hVbNctjMR7WmSkCaHmKIO125LWG1+xFQ=";
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "git-subtrac";
2019-11-25 23:00:00 +00:00
};
2020-06-15 09:20:00 +00:00
}