nixpkgs/pkgs/tools/filesystems/bonnie/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
557 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchurl, perl }:
2017-04-10 00:15:36 +02:00
stdenv.mkDerivation rec {
pname = "bonnie++";
2023-05-03 12:47:30 +02:00
version = "2.00a";
src = fetchurl {
url = "https://www.coker.com.au/bonnie++/bonnie++-${version}.tgz";
2023-05-03 12:47:30 +02:00
sha256 = "sha256-qNM7vYG8frVZzlv25YS5tT+uo5zPtK6S5Y8nJX5Gjw4=";
};
enableParallelBuilding = true;
buildInputs = [ perl ];
meta = {
homepage = "http://www.coker.com.au/bonnie++/";
description = "Hard drive and file system benchmark suite";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl2;
2021-01-15 14:21:58 +01:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}