lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 27 lines 627 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "frangipanni"; 9 version = "0.5.0"; 10 11 src = fetchFromGitHub { 12 owner = "birchb1024"; 13 repo = "frangipanni"; 14 rev = "v${version}"; 15 sha256 = "sha256-jIXyqwZWfCBSDTTodHTct4V5rjYv7h4Vcw7cXOFk17w="; 16 }; 17 18 vendorHash = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8="; 19 20 meta = with lib; { 21 description = "Convert lines of text into a tree structure"; 22 mainProgram = "frangipanni"; 23 homepage = "https://github.com/birchb1024/frangipanni"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ siraben ]; 26 }; 27}