2023-08-27 02:57:10 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "harsh";
|
2024-02-06 07:39:46 +00:00
|
|
|
version = "0.9.0";
|
2023-08-27 02:57:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wakatara";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-02-06 07:39:46 +00:00
|
|
|
hash = "sha256-7QU3vbJNapMyjnCJrvK+jjUJDHE0+GaP7GKUu7UJcvU=";
|
2023-08-27 02:57:10 +00:00
|
|
|
};
|
|
|
|
|
2024-01-27 14:48:08 +00:00
|
|
|
vendorHash = "sha256-zjLXq64uC5iRm9uxUGDW5127z25gNSVV2qhVVXuYqY0=";
|
2023-08-27 02:57:10 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "CLI habit tracking for geeks";
|
|
|
|
homepage = "https://github.com/wakatara/harsh";
|
|
|
|
changelog = "https://github.com/wakatara/harsh/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ laurailway ];
|
|
|
|
};
|
|
|
|
}
|