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.

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-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}";
2020-09-07 04:20:00 +00:00
sha256 = "0p1n29k2a2rpznwxlwzkmx38ic6g041k9vx7msvick7cydn417fx";
2019-11-25 23:00:00 +00:00
};
2020-09-07 04:20:00 +00:00
vendorSha256 = "0m64grnmhjvfsw7a56474s894sgd24rvcp5kamhzzyc4q556hqny";
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
}