mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #104021 from dotkrnl/patch-1
reattach-to-user-namespace: 2.8 -> 2.9
This commit is contained in:
commit
d4b8b0adab
@ -1,12 +1,14 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "reattach-to-user-namespace";
|
||||
version = "2.8";
|
||||
version = "2.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/archive/v${version}.tar.gz";
|
||||
sha256 = "0xxxdd26rcplhpvi2vy6crxadk3d1qkq4xry10lwq6dyya2jf6wb";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ChrisJohnsen";
|
||||
repo = "tmux-MacOSX-pasteboard";
|
||||
rev = "v${version}";
|
||||
sha256 = "1qgimh58hcx5f646gj2kpd36ayvrdkw616ad8cb3lcm11kg0ag79";
|
||||
};
|
||||
|
||||
buildFlags = [ "ARCHES=x86_64" ];
|
||||
|
Loading…
Reference in New Issue
Block a user