Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 26 lines 581 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "goa"; 8 version = "3.11.3"; 9 10 src = fetchFromGitHub { 11 owner = "goadesign"; 12 repo = "goa"; 13 rev = "v${version}"; 14 sha256 = "sha256-Po5i6pb7Qu6kYLO7rdW9SJFDf42rPx8mvSfNxtW3Qcg="; 15 }; 16 vendorHash = "sha256-vND29xb5bG+MnBiOCP9PWC+VGqIwdUO0uVOcP5Wc4zA="; 17 18 subPackages = [ "cmd/goa" ]; 19 20 meta = with lib; { 21 description = "Design-based APIs and microservices in Go"; 22 homepage = "https://goa.design"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ rushmorem ]; 25 }; 26}