nixpkgs/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
2017-01-10 11:51:03 -08:00

23 lines
498 B
Nix

{ stdenv, fetchgit }:
stdenv.mkDerivation {
name = "reattach-to-user-namespace-2.4";
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;
};
}