Skip to content

Commit

Permalink
reattach-to-user-namespace: 2.5 -> 2.6
Browse files Browse the repository at this point in the history
(cherry picked from commit b196241)
  • Loading branch information
LnL7 committed Sep 25, 2017
1 parent e5a864f commit e19b5ef
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchgit }:
{ stdenv, fetchurl }:

stdenv.mkDerivation {
name = "reattach-to-user-namespace-2.5";
stdenv.mkDerivation rec {
name = "reattach-to-user-namespace-${version}";
version = "2.6";

src = fetchgit {
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard.git";
sha256 = "0kv11vi54g6waf9941hy1pwmwyab0y7hbmbkcgwhzb5ja21ysc2a";
rev = "3689998acce9990726c8a68a85298ab693a62458";
src = fetchurl {
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/archive/v2.6.tar.gz";
sha256 = "1d8ynzkdlxyyky9f88f7z50g9lwdydkpb2n7gkw3jgl2ac569xc0";
};

buildFlags = "ARCHES=x86_64";
Expand All @@ -16,7 +16,10 @@ stdenv.mkDerivation {
cp reattach-to-user-namespace $out/bin/
'';

meta = {
platforms = stdenv.lib.platforms.darwin;
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;
};
}

0 comments on commit e19b5ef

Please sign in to comment.