oha 1.1.0 -> 1.3.0 https://repology.org/project/oha/versions attrpath: oha Checking auto update branch... No auto update branch exists Old version 1.1.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , stdenv , pkg-config , openssl , darwin }: rustPlatform.buildRustPackage rec { pname = "oha"; version = "1.3.0"; src = fetchFromGitHub { owner = "hatoo"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-UZPC1Arp7/u8XafBvupAAwVu7lx5/F1Ahp944pfe2gw="; }; cargoHash = "sha256-6uGJ6cuMXFLJ6vvUNmUwc+r/4jRHEH5jiOTNb6Fkf6Y="; nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; buildInputs = lib.optionals stdenv.isLinux [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; # tests don't work inside the sandbox doCheck = false; meta = with lib; { description = "HTTP load generator inspired by rakyll/hey with tui animation"; homepage = "https://github.com/hatoo/oha"; changelog = "https://github.com/hatoo/oha/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; }; }