Skip to content

Commit

Permalink
Updater dfault nix
Browse files Browse the repository at this point in the history
  • Loading branch information
nguni52 committed Feb 24, 2025
1 parent 0684c93 commit 3c83d09
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ui-tests/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Want to update dependencies? Go to https://github.com/NixOS/nixpkgs/tree/nixpkgs-unstable and
# replace the commit ref in the following line with the one you're interested in (probably the
# latest).
{ nixpkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/08ef0f28e3a41424b92ba1d203de64257a9fca6a.tar.gz) { config = { allowUnfree = true; }; } }:
{ nixpkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/refs/tags/23.11.tar.gz) { config = { allowUnfree = true; }; } }:

let
k3d = nixpkgs.stdenv.mkDerivation rec {
version = "4.4.1";
version = "5.4.6"; # Updated version
pname = "k3d";

src = builtins.fetchurl {
url = "https://github.com/rancher/k3d/releases/download/v4.4.1/k3d-linux-amd64";
sha256 = "1bjmyhf0zbi6lfq71h6vazmlkxg0b46wky5vqv1dqbkr2bdr2s24";
url = "https://github.com/rancher/k3d/releases/download/v5.4.6/k3d-linux-amd64"; # Updated URL
sha256 = "0v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z"; # Replace with the correct SHA256
};

dontUnpack = true;
Expand All @@ -25,11 +25,11 @@ let
};

skaffold = nixpkgs.stdenv.mkDerivation rec {
version = "1.28.0";
version = "1.35.0"; # Updated version
pname = "skaffold";
src = builtins.fetchurl {
url = "https://github.com/GoogleContainerTools/skaffold/releases/download/v1.28.0/skaffold-linux-amd64";
sha256 = "1aiggw0b8655mzzf57xv079vzgfj4k3xwlr7l48y2pvbzy46f0mg";
url = "https://github.com/GoogleContainerTools/skaffold/releases/download/v1.35.0/skaffold-linux-amd64"; # Updated URL
sha256 = "0v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z6v8x4k5z"; # Replace with the correct SHA256
};
dontUnpack = true;
installPhase = ''
Expand Down

0 comments on commit 3c83d09

Please sign in to comment.