fasole: init at 1.2.3

This commit is contained in:
ProggerX 2024-05-05 23:50:08 +03:00
parent 408b2344bb
commit 80d00f1152
No known key found for this signature in database

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";
};
}