ior: 3.3.0 -> 4.0.0

Diff: https://github.com/hpc/ior/compare/3.3.0...4.0.0

emaryn 201515be cbc25865

+15 -10
+15 -10
pkgs/by-name/io/ior/package.nix
··· 5 5 mpi, 6 6 perl, 7 7 autoreconfHook, 8 + pkg-config, 8 9 }: 9 10 10 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 11 12 pname = "ior"; 12 - version = "3.3.0"; 13 + version = "4.0.0"; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "hpc"; 16 17 repo = "ior"; 17 - rev = version; 18 - sha256 = "sha256-pSjptDfiPlaToXe1yHyk9MQMC9PqcVSjqAmWLD11iOM="; 18 + tag = finalAttrs.version; 19 + hash = "sha256-WsfJWHHfkiHZ+rPk6ck6mDErTXwt6Dhgm+yqOtw4Fvo="; 19 20 }; 20 21 21 - nativeBuildInputs = [ autoreconfHook ]; 22 + nativeBuildInputs = [ 23 + autoreconfHook 24 + pkg-config 25 + ]; 26 + 22 27 buildInputs = [ 23 28 mpi 24 29 perl ··· 26 31 27 32 enableParallelBuilding = true; 28 33 29 - meta = with lib; { 34 + meta = { 30 35 homepage = "https://ior.readthedocs.io/en/latest/"; 31 36 description = "Parallel file system I/O performance test"; 32 - license = licenses.gpl2Only; 33 - platforms = platforms.linux; 34 - maintainers = with maintainers; [ bzizou ]; 37 + license = lib.licenses.gpl2Only; 38 + platforms = lib.platforms.linux; 39 + maintainers = with lib.maintainers; [ bzizou ]; 35 40 }; 36 - } 41 + })