Skip to content

Commit

Permalink
Remove version in buildGoModule
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
  • Loading branch information
vdemeester committed Oct 15, 2024
1 parent c32118f commit 177b0f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
pkgs = nixpkgsFor.${system};
in
{
buildkit-tekton = pkgs.buildGo120Module {
buildkit-tekton = pkgs.buildGoModule {
pname = "buildkit-tekton";
inherit version;
# In 'nix develop', we don't need a copy of the source tree
Expand All @@ -36,7 +36,7 @@
# We use vendor, no need for vendorHash
vendorHash = null;
};
tkn-local = pkgs.buildGo121Module {
tkn-local = pkgs.buildGoModule {
pname = "tkn-local";
inherit version;
# In 'nix develop', we don't need a copy of the source tree
Expand Down

0 comments on commit 177b0f0

Please sign in to comment.