nixpkgs/pkgs/tools/misc/grit/default.nix

24 lines
581 B
Nix
Raw Normal View History

2021-04-05 23:46:53 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "grit";
2021-04-15 01:13:22 +00:00
version = "0.3.0";
2021-04-05 23:46:53 +00:00
src = fetchFromGitHub {
owner = "climech";
repo = "grit";
rev = "v${version}";
2021-04-15 01:13:22 +00:00
sha256 = "sha256-c8wBwmXFjpst6UxL5zmTxMR4bhzpHYljQHiJFKiNDms=";
2021-04-05 23:46:53 +00:00
};
2021-04-15 01:13:22 +00:00
vendorSha256 = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg=";
2021-04-05 23:46:53 +00:00
meta = with lib; {
description = "A multitree-based personal task manager";
homepage = "https://github.com/climech/grit";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.ivar ];
};
}