summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iomelt/default.nix
blob: 0084a397d075d9534887ac872eb67383d229a1e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, lib, fetchurl }:

let version = "0.7";
in stdenv.mkDerivation {
  pname = "iomelt";
  inherit version;
  src = fetchurl {
    url = "http://iomelt.com/s/iomelt-${version}.tar.gz";
    sha256 = "1jhrdm5b7f1bcbrdwcc4yzg26790jxl4d2ndqiwd9brl2g5537im";
  };

  preBuild = ''
    mkdir -p $out/bin
    mkdir -p $out/share/man/man1

    substituteInPlace Makefile \
      --replace /usr $out
  '';

  meta = with lib; {
    description = "A simple yet effective way to benchmark disk IO in Linux systems";
    homepage    = "http://www.iomelt.com";
    maintainers = with maintainers; [ ];
    license = licenses.artistic2;
    platforms   = platforms.linux;
  };
}