Unverified Commit 93b671be authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #309366 from ProggerX/add-fasole

fasole: init at 1.2.3
parents 2616f8ed 80d00f11
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+23 −0
Original line number Diff line number Diff line
{ 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";
  };
}