mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
41 lines
866 B
Nix
41 lines
866 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchzip
|
||
|
, installShellFiles
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "msr";
|
||
|
version = "20060208";
|
||
|
|
||
|
src = fetchzip {
|
||
|
name = "${pname}-${version}";
|
||
|
url = "http://www.etallen.com/msr/${pname}-${version}.src.tar.gz";
|
||
|
hash = "sha256-e01qYWbOALkXp5NpexuVodMxA3EBySejJ6ZBpZjyT+E=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
installShellFiles
|
||
|
];
|
||
|
|
||
|
patches = [
|
||
|
./000-include-sysmacros.patch
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
mkdir -p $out/bin/
|
||
|
cp msr $out/bin/
|
||
|
installManPage msr.man
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "http://www.etallen.com/msr.html";
|
||
|
description = "Linux tool to display or modify x86 model-specific registers (MSRs)";
|
||
|
license = licenses.bsd0;
|
||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
||
|
};
|
||
|
}
|