Merge pull request #309366 from ProggerX/add-fasole

fasole: init at 1.2.3
This commit is contained in:
Aleksana 2024-05-07 20:17:59 +08:00 committed by GitHub
commit 93b671be0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

View File

@ -16266,6 +16266,12 @@
githubId = 3153638;
name = "Profpatsch";
};
proggerx = {
email = "x@proggers.ru";
github = "ProggerX";
githubId = 88623613;
name = "ProggerX";
};
proglodyte = {
email = "proglodyte23@gmail.com";
github = "proglodyte";

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "fasole";
version = "1.2.3";
src = fetchFromGitHub {
owner = "ProggerX";
repo = "fasole";
rev = "v${version}";
hash = "sha256-qcCJgz/YXfd8+9ST1U4YFxLLd25D8HrfZzsDGpKgCdM=";
};
vendorHash = "sha256-V5jqsNy4Pu1AKikIZqEXERdggwBe3gXKMJVmgivVT6A=";
meta = {
description = "Minimalist's todo-list";
homepage = "https://github.com/ProggerX/fasole";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ proggerx ];
mainProgram = "fasole";
};
}