This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  stdenv,
 | 
						|
  fetchFromGitHub,
 | 
						|
  kernel,
 | 
						|
  # See the official readme for a list of optional flags:
 | 
						|
  # https://github.com/cyring/CoreFreq/blob/master/README.md
 | 
						|
  extraFlags ? [ ],
 | 
						|
}:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "corefreq";
 | 
						|
  version = "2.0.1";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "cyring";
 | 
						|
    repo = "CoreFreq";
 | 
						|
    rev = version;
 | 
						|
    hash = "sha256-gdJ3yaE/Q10NV9TTbBUwzlF2wogiXFNy8gA36Fr/S7o=";
 | 
						|
  };
 | 
						|
 | 
						|
  nativeBuildInputs = kernel.moduleBuildDependencies;
 | 
						|
 | 
						|
  env.NIX_CFLAGS_COMPILE = "-I${src}/${stdenv.hostPlatform.qemuArch}";
 | 
						|
  makeFlags = [
 | 
						|
    "KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
 | 
						|
    "INSTALL_MOD_PATH=$(out)"
 | 
						|
  ] ++ extraFlags;
 | 
						|
 | 
						|
  preInstall = ''
 | 
						|
    mkdir -p $out/bin
 | 
						|
  '';
 | 
						|
 | 
						|
  installFlags = [ "PREFIX=$(out)" ];
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "CPU monitoring and tuning software designed for 64-bit processors";
 | 
						|
    homepage = "https://github.com/cyring/CoreFreq";
 | 
						|
    license = lib.licenses.gpl2Only;
 | 
						|
    maintainers = with lib.maintainers; [ mrene ];
 | 
						|
    mainProgram = "corefreq-cli";
 | 
						|
    platforms = [
 | 
						|
      "x86_64-linux"
 | 
						|
      "aarch64-linux"
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |