3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix

28 lines
666 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-08-26 03:03:49 +01:00
2017-09-25 23:57:48 +01:00
stdenv.mkDerivation rec {
pname = "reattach-to-user-namespace";
2020-11-17 04:32:28 +00:00
version = "2.9";
2020-11-17 04:32:28 +00:00
src = fetchFromGitHub {
owner = "ChrisJohnsen";
repo = "tmux-MacOSX-pasteboard";
rev = "v${version}";
sha256 = "1qgimh58hcx5f646gj2kpd36ayvrdkw616ad8cb3lcm11kg0ag79";
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/
'';
meta = with lib; {
2017-09-25 23:57:48 +01:00
description = "A wrapper that provides access to the Mac OS X pasteboard service";
license = licenses.bsd2;
maintainers = with maintainers; [ lnl7 ];
platforms = platforms.darwin;
};
}