They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  stdenv,
 | 
						|
  fetchFromGitHub,
 | 
						|
  rustPlatform,
 | 
						|
  protobuf,
 | 
						|
  installShellFiles,
 | 
						|
}:
 | 
						|
 | 
						|
rustPlatform.buildRustPackage rec {
 | 
						|
  pname = "clipcat";
 | 
						|
  version = "0.21.0";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "xrelkd";
 | 
						|
    repo = "clipcat";
 | 
						|
    tag = "v${version}";
 | 
						|
    hash = "sha256-CIqV5V7NN2zsqBwheJrcBnOTOBEncIwqqXdsZ9DLAog=";
 | 
						|
  };
 | 
						|
 | 
						|
  useFetchCargoVendor = true;
 | 
						|
  cargoHash = "sha256-UA+NTtZ2qffUPUmvCidnTHwFzD3WOPTlxHR2e2vKwPQ=";
 | 
						|
 | 
						|
  nativeBuildInputs = [
 | 
						|
    protobuf
 | 
						|
    installShellFiles
 | 
						|
  ];
 | 
						|
 | 
						|
  checkFlags = [
 | 
						|
    # Some test cases interact with X11, skip them
 | 
						|
    "--skip=test_x11_clipboard"
 | 
						|
    "--skip=test_x11_primary"
 | 
						|
  ];
 | 
						|
 | 
						|
  postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
 | 
						|
    for cmd in clipcatd clipcatctl clipcat-menu clipcat-notify; do
 | 
						|
      installShellCompletion --cmd $cmd \
 | 
						|
        --bash <($out/bin/$cmd completions bash) \
 | 
						|
        --fish <($out/bin/$cmd completions fish) \
 | 
						|
        --zsh  <($out/bin/$cmd completions zsh)
 | 
						|
    done
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Clipboard Manager written in Rust Programming Language";
 | 
						|
    homepage = "https://github.com/xrelkd/clipcat";
 | 
						|
    license = lib.licenses.gpl3Only;
 | 
						|
    platforms = lib.platforms.linux ++ lib.platforms.darwin;
 | 
						|
    maintainers = with lib.maintainers; [
 | 
						|
      xrelkd
 | 
						|
      bot-wxt1221
 | 
						|
    ];
 | 
						|
    mainProgram = "clipcatd";
 | 
						|
  };
 | 
						|
}
 |