about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/reattach-to-user-namespace
diff options
context:
space:
mode:
authorJude Taylor <me@jude.bio>2015-08-25 19:03:49 -0700
committerJude Taylor <me@jude.bio>2015-08-25 19:03:49 -0700
commite5fe8aab745687446b45679189610b1579d97b5f (patch)
tree82175d4ba3b48e431a700447ae3ae84fdc9bf771 /pkgs/os-specific/darwin/reattach-to-user-namespace
parent4e8279b43b30d119468e8ba76716c1d6bdcf67f5 (diff)
downloadnixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar.gz
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar.bz2
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar.lz
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar.xz
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.tar.zst
nixlib-e5fe8aab745687446b45679189610b1579d97b5f.zip
add reattach-to-user-namespace
Diffstat (limited to 'pkgs/os-specific/darwin/reattach-to-user-namespace')
-rw-r--r--pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
new file mode 100644
index 000000000000..0460c516d297
--- /dev/null
+++ b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
@@ -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/
+  '';
+}
+