lol
0
fork

Configure Feed

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

at 23.05-pre 29 lines 617 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "viddy"; 5 version = "0.3.6"; 6 7 src = fetchFromGitHub { 8 owner = "sachaos"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-AcRfKu6P7b/HsuC6DTezbYLI9rQZwjklH/bs7mKITUk="; 12 }; 13 14 vendorSha256 = "sha256-QxYM4N3E/BqmeNaofLR1crwFLVaF3IigDXKlKA2Bkuw="; 15 16 ldflags = [ 17 "-s" 18 "-w" 19 "-X" 20 "main.version=${version}" 21 ]; 22 23 meta = with lib; { 24 description = "A modern watch command"; 25 homepage = "https://github.com/sachaos/viddy"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ j-hui ]; 28 }; 29}