Skip to content

Commit

Permalink
Add opc 1.13.0
Browse files Browse the repository at this point in the history
Closes #61

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed Nov 13, 2023
1 parent 85e3811 commit 3108e61
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions overlays/openshift.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ in
# operator-tool(ing) = …
# opc
inherit (super.callPackage ../packages/opc.nix { })
opc_1_13
opc_1_12
opc_1_11
opc_1_10
Expand Down
8 changes: 6 additions & 2 deletions packages/opc.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, buildGo119Module, fetchFromGitHub }:
{ stdenv, lib, buildGo120Module, fetchFromGitHub }:

with lib;
rec {
Expand All @@ -7,7 +7,7 @@ rec {
, sha256
, rev ? "v${version}"
}:
buildGo119Module rec {
buildGo120Module rec {
pname = "opc";
name = "${pname}-${version}";

Expand Down Expand Up @@ -37,6 +37,10 @@ rec {
};
};

opc_1_13 = makeOverridable opcGen {
version = "1.13.0";
sha256 = "sha256-yeJV6hSs6T19xThqDibbbuWvpz1uU8/lpDE1mMZmVHA=";
};
opc_1_12 = makeOverridable opcGen {
version = "1.12.1";
sha256 = "sha256-irOv4GuFl+LQw3p47szpP5+B0Mfo5sTuA6ynRN6FwKI=";
Expand Down

0 comments on commit 3108e61

Please sign in to comment.