lol
0
fork

Configure Feed

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

at master 23 lines 507 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "completely"; 9 10 gemdir = ./.; 11 exes = [ "completely" ]; 12 13 passthru.updateScript = bundlerUpdateScript "completely"; 14 15 meta = { 16 description = "Generate bash completion scripts using a simple configuration file"; 17 homepage = "https://github.com/DannyBen/completely"; 18 license = lib.licenses.mit; 19 platforms = lib.platforms.unix; 20 maintainers = with lib.maintainers; [ zendo ]; 21 mainProgram = "completely"; 22 }; 23}