summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/reattach-to-user-namespace
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-09-26 00:57:48 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-09-26 00:58:51 +0200
commitb196241f42a328b4f293887aa8a75c0a02e386c2 (patch)
tree4371a5f6f3b22a9f4a74954ef60261ede8a13989 /pkgs/os-specific/darwin/reattach-to-user-namespace
parent26d51b479753ea1429c466ab62bd255456659ce9 (diff)
downloadnixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar.gz
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar.bz2
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar.lz
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar.xz
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.tar.zst
nixpkgs-b196241f42a328b4f293887aa8a75c0a02e386c2.zip
reattach-to-user-namespace: 2.5 -> 2.6
Diffstat (limited to 'pkgs/os-specific/darwin/reattach-to-user-namespace')
-rw-r--r--pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix21
1 files changed, 12 insertions, 9 deletions
diff --git a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
index e2776475432..b14008e11f1 100644
--- a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix
+++ b/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";
@@ -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;
   };
 }