about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/msr-tools/default.nix
blob: 128f3eac263564ceb9ece12f049edd33d06a4c8c (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
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "msr-tools-${version}";
  version = "1.3";

  src = fetchurl {
    url = "https://01.org/sites/default/files/downloads/msr-tools/${name}.zip";
    sha256 = "07hxmddg0l31kjfmaq84ni142lbbvgq6391r8bd79wpm819pnigr";
  };

  buildInputs = [ unzip ];

  preInstall = ''
    mkdir -p $out/bin
    substituteInPlace Makefile \
      --replace /usr/sbin $out/bin
  '';

  meta = with stdenv.lib; {
    description = "Tool to read/write from/to MSR CPU registers on Linux";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ peterhoeg ];
  };
}