mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
add reattach-to-user-namespace
This commit is contained in:
parent
4e8279b43b
commit
e5fe8aab74
@ -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/
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
@ -665,6 +665,8 @@ let
|
|||||||
derez = callPackage ../os-specific/darwin/derez { };
|
derez = callPackage ../os-specific/darwin/derez { };
|
||||||
rez = callPackage ../os-specific/darwin/rez { };
|
rez = callPackage ../os-specific/darwin/rez { };
|
||||||
|
|
||||||
|
reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {};
|
||||||
|
|
||||||
setfile = callPackage ../os-specific/darwin/setfile { };
|
setfile = callPackage ../os-specific/darwin/setfile { };
|
||||||
|
|
||||||
install_name_tool = callPackage ../os-specific/darwin/install_name_tool { };
|
install_name_tool = callPackage ../os-specific/darwin/install_name_tool { };
|
||||||
|
Loading…
Reference in New Issue
Block a user