about summary refs log blame commit diff stats
path: root/sys/nixpkgs/pkgs/yt/ytc.nix
blob: dff5bcf86803c0a737bd7cd1916085a634a56b31 (plain) (tree)
1
2
3
4
5
6
7
 
      


               
              




                               

                            

                                
 
                       
    



                                                     
 
{
  lib,
  rustPlatform,
  ytcc,
  yt-dlp,
  mpv,
  makeWrapper,
}:
rustPlatform.buildRustPackage {
  pname = "ytc";
  version = "0.1.0";

  src = ./.;
  cargoLock = {
    lockFile = ./Cargo.lock;
  };

  buildNoDefaultFeatures = true;
  buildFeatures = ["ytc"];

  nativeBuildInputs = [
    makeWrapper
  ];

  postInstall = ''
    wrapProgram $out/bin/ytc \
      --set PATH ${lib.makeBinPath [mpv yt-dlp ytcc]}
  '';
}