Unverified Commit 9c3ef73f authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

redlib: Use the unstable git updater (#424795)

parents 3d5e03a5 91fa9215
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  nixosTests,
  rustPlatform,
  fetchFromGitHub,
  nix-update-script,
}:
rustPlatform.buildRustPackage rec {
  pname = "redlib";
@@ -61,8 +62,9 @@ rustPlatform.buildRustPackage rec {
    SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
  };

  passthru.tests = {
    inherit (nixosTests) redlib;
  passthru = {
    tests = nixosTests.redlib;
    updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
  };

  meta = {