33 lines
807 B
Nix
33 lines
807 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, nix-update-script
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "gickup";
|
||
|
version = "0.10.21";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cooperspencer";
|
||
|
repo = "gickup";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-o8uLdkk0aZWIj+mKsp/XGKcwpV0rGFcZnmV4MuHKlUg=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-NAYkQsCt32mtHFXZC0g3OrlrOceUaeGH4bKWF7B08po=";
|
||
|
|
||
|
ldflags = ["-X main.version=${version}"];
|
||
|
|
||
|
passthru.updateScript = nix-update-script { };
|
||
|
|
||
|
meta = {
|
||
|
description = "Tool to backup repositories";
|
||
|
homepage = "https://github.com/cooperspencer/gickup";
|
||
|
changelog = "https://github.com/cooperspencer/gickup/releases/tag/v${version}";
|
||
|
maintainers = with lib.maintainers; [ adamcstephens ];
|
||
|
mainProgram = "gickup";
|
||
|
license = lib.licenses.asl20;
|
||
|
};
|
||
|
}
|