lol
0
fork

Configure Feed

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

at master 28 lines 730 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6buildGoModule (finalAttrs: { 7 pname = "copygen"; 8 version = "0.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "switchupcb"; 12 repo = "copygen"; 13 tag = "v${finalAttrs.version}"; 14 hash = "sha256-gdoUvTla+fRoYayUeuRha8Dkix9ACxlt0tkac0CRqwA="; 15 }; 16 17 vendorHash = "sha256-dOIGGZWtr8F82YJRXibdw3MvohLFBQxD+Y4OkZIJc2s="; 18 subPackages = [ "." ]; 19 proxyVendor = true; 20 21 meta = { 22 description = "Command-line and programmatic Go code generator that generates custom type-based code"; 23 homepage = "https://github.com/switchupcb/copygen"; 24 license = lib.licenses.agpl3Only; 25 mainProgram = "copygen"; 26 maintainers = with lib.maintainers; [ connerohnesorge ]; 27 }; 28})