mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
20 lines
562 B
Nix
20 lines
562 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "filebench-${version}";
|
|
version = "1.4.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/filebench/${name}.tar.gz";
|
|
sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "File system and storage benchmark that can generate both micro and macro workloads";
|
|
homepage = https://sourceforge.net/projects/filebench/;
|
|
license = licenses.cddl;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|