add reattach-to-user-namespace

This commit is contained in:
Jude Taylor 2015-08-25 19:03:49 -07:00
parent 4e8279b43b
commit e5fe8aab74
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation {
name = "reattach-to-user-namespace-2.4";
src = fetchgit {
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard.git";
sha256 = "1f9q1wxq764zidnx5hbdkbbyxxzfih0l0cjpgr0pxzwbmd2q6cvv";
rev = "2765aeab8f337c29e260a912bf4267a2732d8640";
};
buildFlags = "ARCHES=x86_64";
installPhase = ''
mkdir -p $out/bin
cp reattach-to-user-namespace $out/bin/
'';
}

View file

@ -665,6 +665,8 @@ let
derez = callPackage ../os-specific/darwin/derez { };
rez = callPackage ../os-specific/darwin/rez { };
reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {};
setfile = callPackage ../os-specific/darwin/setfile { };
install_name_tool = callPackage ../os-specific/darwin/install_name_tool { };