reattach-to-user-namespace: 2.5 -> 2.6

This commit is contained in:
Daiderd Jordan 2017-09-26 00:57:48 +02:00
parent 26d51b4797
commit b196241f42
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -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";
@ -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;
};
}