Unverified Commit d604c4a9 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #259527 from fabaff/stressapptest-bump

stressapptest: 1.0.9 -> 1.0.11
parents 2de1be5b 28fe04d6
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -6,22 +6,25 @@

stdenv.mkDerivation rec {
  pname = "stressapptest";
  version = "1.0.9";
  version = "1.0.11";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "v${version}";
    sha256 = "1qzj6h6adx042rb9aiz916jna269whibvj5ys4p5nwdp17fqh922";
    rev = "refs/tags/v${version}";
    hash = "sha256-lZpF7PdUwKnV0ha6xkLvi7XYFZQ4Avy0ltlXxukuWjM=";
  };

  buildInputs = [ libaio ];
  buildInputs = [
    libaio
  ];

  meta = with lib; {
    description = "Userspace memory and IO stress test tool";
    homepage = "https://github.com/stressapptest/stressapptest";
    changelog = "https://github.com/stressapptest/stressapptest/releases/tag/v${version}";
    license = with licenses; [ asl20 ];
    maintainers = with lib.maintainers; [ fab ];
    maintainers = with maintainers; [ fab ];
    platforms = platforms.unix;
  };
}