nixpkgs/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix

26 lines
659 B
Nix
Raw Normal View History

2017-09-25 23:57:48 +01:00
{ stdenv, fetchurl }:
2015-08-26 03:03:49 +01:00
2017-09-25 23:57:48 +01:00
stdenv.mkDerivation rec {
pname = "reattach-to-user-namespace";
version = "2.8";
2017-09-25 23:57:48 +01:00
src = fetchurl {
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/archive/v${version}.tar.gz";
sha256 = "0xxxdd26rcplhpvi2vy6crxadk3d1qkq4xry10lwq6dyya2jf6wb";
2015-08-26 03:03:49 +01:00
};
buildFlags = [ "ARCHES=x86_64" ];
2015-08-26 03:03:49 +01:00
installPhase = ''
mkdir -p $out/bin
cp reattach-to-user-namespace $out/bin/
'';
2017-09-25 23:57:48 +01:00
meta = with stdenv.lib; {
description = "A wrapper that provides access to the Mac OS X pasteboard service";
license = licenses.bsd2;
maintainers = with maintainers; [ lnl7 ];
platforms = platforms.darwin;
};
}