Unverified Commit 925c5c97 authored by Luna Nova's avatar Luna Nova
Browse files

sif: fix updateScript to pick a 0-unstable-… version

had to swap to rev
parent 7c13b202
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ buildGoModule {
  src = fetchFromGitHub {
    owner = "vmfunc";
    repo = "sif";
    tag = "automated-release-af53185";
    rev = "af531850dc7fa37bcff2de4d88c4254776ba4afe";
    hash = "sha256-hXFWqAAhkfTiiel5JKi0GOcY+Q1TLhJWZIJTaWlGthk=";
  };

@@ -30,7 +30,12 @@ buildGoModule {
  # network-dependent tests
  doCheck = false;

  passthru.updateScript = nix-update-script { };
  passthru.updateScript = nix-update-script {
    extraArgs = [
      "--version=branch"
      "--version-regex=(0-unstable-.*)"
    ];
  };

  meta = {
    description = "Modular pentesting toolkit written in Go";