summary refs log blame commit diff
path: root/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
blob: e2776475432fa5ebef23ad51cff25e244faf9a75 (plain) (tree)
1
2
3
4
5
6
7
8
9


                     
                                          
 

                                                                       

                                                                    
    
 
                               
 



                                           
 



                                            
{ stdenv, fetchgit }:

stdenv.mkDerivation {
  name = "reattach-to-user-namespace-2.5";

  src = fetchgit {
    url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard.git";
    sha256 = "0kv11vi54g6waf9941hy1pwmwyab0y7hbmbkcgwhzb5ja21ysc2a";
    rev = "3689998acce9990726c8a68a85298ab693a62458";
  };

  buildFlags = "ARCHES=x86_64";

  installPhase = ''
    mkdir -p $out/bin
    cp reattach-to-user-namespace $out/bin/
  '';

  meta = {
    platforms = stdenv.lib.platforms.darwin;
  };
}