reattach-to-user-namespace: 2.5 -> 2.6
This commit is contained in:
parent
26d51b4797
commit
b196241f42
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchgit }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "reattach-to-user-namespace-2.5";
|
name = "reattach-to-user-namespace-${version}";
|
||||||
|
version = "2.6";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard.git";
|
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/archive/v2.6.tar.gz";
|
||||||
sha256 = "0kv11vi54g6waf9941hy1pwmwyab0y7hbmbkcgwhzb5ja21ysc2a";
|
sha256 = "1d8ynzkdlxyyky9f88f7z50g9lwdydkpb2n7gkw3jgl2ac569xc0";
|
||||||
rev = "3689998acce9990726c8a68a85298ab693a62458";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildFlags = "ARCHES=x86_64";
|
buildFlags = "ARCHES=x86_64";
|
||||||
@ -16,7 +16,10 @@ stdenv.mkDerivation {
|
|||||||
cp reattach-to-user-namespace $out/bin/
|
cp reattach-to-user-namespace $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.darwin;
|
description = "A wrapper that provides access to the Mac OS X pasteboard service";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ lnl7 ];
|
||||||
|
platforms = platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user