rops: init at 0.1.4 (#364869)
[NixPkgs.git] / pkgs / tools / filesystems / kdiskmark / default.nix
blobe094f6ce5ee8a6d133e609af14dc77e544d5520b
2   stdenv,
3   lib,
4   wrapQtAppsHook,
5   qtbase,
6   qttools,
7   fio,
8   cmake,
9   polkit-qt,
10   extra-cmake-modules,
11   fetchFromGitHub,
13 stdenv.mkDerivation rec {
14   pname = "kdiskmark";
15   version = "3.1.4";
17   src = fetchFromGitHub {
18     owner = "jonmagon";
19     repo = "kdiskmark";
20     rev = version;
21     hash = "sha256-JueY7zw9PIo9ETi7pQLpw8FGRhNXYXeXEvTzZGz9lbw=";
22     fetchSubmodules = true;
23   };
25   nativeBuildInputs = [
26     cmake
27     wrapQtAppsHook
28   ];
30   buildInputs = [
31     qtbase
32     qttools
33     extra-cmake-modules
34     polkit-qt
35   ];
37   preConfigure = ''
38     substituteInPlace CMakeLists.txt \
39       --replace \$\{POLKITQT-1_POLICY_FILES_INSTALL_DIR\} $out/share/polkit-1/actions
40   '';
42   qtWrapperArgs = [
43     "--prefix"
44     "PATH"
45     ":"
46     (lib.makeBinPath [ fio ])
47   ];
49   meta = with lib; {
50     description = "HDD and SSD benchmark tool with a friendly graphical user interface";
51     longDescription = ''
52       If kdiskmark is not run as root it can rely on polkit to get the necessary
53       privileges. In this case you must install it with `environment.systemPackages`
54       on NixOS, nix-env will not work.
55     '';
56     homepage = "https://github.com/JonMagon/KDiskMark";
57     maintainers = [ maintainers.symphorien ];
58     license = licenses.gpl3Only;
59     platforms = platforms.linux;
60     mainProgram = "kdiskmark";
61   };