Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 72243f6

Browse files
authored
fix: use fork of oapi-codegen with fixes (#49)
### **PR Type** Bug fix ___ ### **Description** - Switch to fork of oapi-codegen with fixes - Update version from 2.5.0 to 2.6.0-beta0 - Change repository owner from oapi-codegen to dbarrosop - Update source hash and revision commit ___ ### Diagram Walkthrough ```mermaid flowchart LR A["oapi-codegen v2.5.0"] -- "switch to fork" --> B["dbarrosop/oapi-codegen v2.6.0-beta0"] B -- "contains fixes" --> C["Updated dependency"] ``` <details> <summary><h3> File Walkthrough</h3></summary> <table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table> <tr> <td> <details> <summary><strong>go.nix</strong><dd><code>Switch to forked oapi-codegen dependency</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> overlays/go.nix <ul><li>Switch oapi-codegen dependency to dbarrosop fork<br> <li> Update version from 2.5.0 to 2.6.0-beta0<br> <li> Change repository owner and update source hash<br> <li> Update revision to specific commit hash</ul> </details> </td> <td><a href="https://github.com/nhost/nixops/pull/49/files#diff-46da9fc0b23a2984c1ff57bfd4063ad81fccffcc8403f6902d186d679b4e52bd">+4/-4</a>&nbsp; &nbsp; &nbsp; </td> </tr> </table></td></tr></tr></tbody></table> </details> ___
1 parent 67f3247 commit 72243f6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

overlays/go.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ final: prev: rec {
9393
};
9494

9595
oapi-codegen = prev.oapi-codegen.overrideAttrs (oldAttrs: rec {
96-
version = "2.5.0";
96+
version = "2.6.0-beta0";
9797
src = final.fetchFromGitHub {
98-
owner = "oapi-codegen";
98+
owner = "dbarrosop";
9999
repo = "oapi-codegen";
100-
rev = "v${version}";
101-
hash = "sha256-Z10rJMancQLefyW0wXWaODIKfSY+4b3T+TAro//xsAQ=";
100+
rev = "6225e75bb76ba1fa15113a7fc6aace55ad12862c";
101+
hash = "sha256-sXmHVIFKxnogdr9qULZ2Io7cQGG6sMMx0ZLskjz1mOc=";
102102
};
103103
vendorHash = "sha256-obpY7ZATebI/7bkPMidC83xnN60P0lZsJhSuKr2A5T4=";
104104
});

0 commit comments

Comments
 (0)