nixpkgs-suyu/pkgs/tools/text/frangipanni/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
589 B
Nix
Raw Normal View History

2021-03-30 10:43:07 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frangipanni";
2021-04-15 02:25:10 +02:00
version = "0.5.0";
2021-03-30 10:43:07 +02:00
src = fetchFromGitHub {
owner = "birchb1024";
repo = "frangipanni";
rev = "v${version}";
2021-04-15 02:25:10 +02:00
sha256 = "sha256-jIXyqwZWfCBSDTTodHTct4V5rjYv7h4Vcw7cXOFk17w=";
2021-03-30 10:43:07 +02:00
};
vendorSha256 = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8=";
meta = with lib; {
description = "Convert lines of text into a tree structure";
homepage = "https://github.com/birchb1024/frangipanni";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}