Unverified Commit 1a69f03f authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #330596 from GaetanLepage/speedtest-rs

speedtest-rs: 0.1.5 -> 0.2.0
parents 2c5b3047 15f01135
Loading
Loading
Loading
Loading
+21 −7
Original line number Diff line number Diff line
@@ -5,17 +5,20 @@
, pkg-config
, stdenv
, darwin
, nix-update-script
, testers
, speedtest-rs
}:

rustPlatform.buildRustPackage rec {
  pname = "speedtest-rs";
  version = "0.1.5";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "nelsonjchen";
    repo = pname;
    repo = "speedtest-rs";
    rev = "refs/tags/v${version}";
    hash = "sha256-JKthXrosqDZh6CWEqT08h3ySPZulitDol7lX3Eo7orM=";
    hash = "sha256-1FAFYiWDD/KG/7/UTv/EW6Nj2GnU0GZFFq6ouMc0URA=";
  };

  buildInputs = [ openssl ] ++
@@ -26,14 +29,25 @@ rustPlatform.buildRustPackage rec {

  nativeBuildInputs = [ pkg-config ];

  cargoHash = "sha256-kUXHC/qXgukaUqaBykXB2ZWmfQEjzJuIyemr1ogVX1U=";
  cargoHash = "sha256-0YPCBzidE1+LgIYk457eSoerLvQuuZs9cTd7uUt1Lr8=";

  meta = with lib; {
  # Fail for unclear reasons (only on darwin)
  checkFlags = lib.optionals stdenv.isDarwin [
    "--skip=speedtest::tests::test_get_configuration"
    "--skip=speedtest::tests::test_get_server_list_with_config"
  ];

  passthru = {
    updateScript = nix-update-script { };
    tests.version = testers.testVersion { package = speedtest-rs; };
  };

  meta = {
    description = "Command line internet speedtest tool written in rust";
    homepage = "https://github.com/nelsonjchen/speedtest-rs";
    changelog = "https://github.com/nelsonjchen/speedtest-rs/blob/v${version}/CHANGELOG.md";
    license = with licenses; [ mit asl20 ];
    maintainers = with maintainers; [ GaetanLepage ];
    license = with lib.licenses; [ mit asl20 ];
    maintainers = with lib.maintainers; [ GaetanLepage ];
    mainProgram = "speedtest-rs";
  };
}