Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9408f56ccb5f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7dba447c3588
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 5, 2020

  1. tmux: 3.1b -> 3.1c

    (cherry picked from commit 879dc6a)
    marsam authored and mweinelt committed Nov 5, 2020
    Copy the full SHA
    b480701 View commit details
  2. tmux: update completions

    (cherry picked from commit 5a2d63f)
    marsam authored and mweinelt committed Nov 5, 2020
    Copy the full SHA
    e3a6b9c View commit details
  3. Merge pull request #102940 from mweinelt/20.09/tmux

    [20.09] tmux: 3.1b -> 3.1c
    andir authored Nov 5, 2020
    Copy the full SHA
    7dba447 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/misc/tmux/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/misc/tmux/default.nix
Original file line number Diff line number Diff line change
@@ -13,23 +13,23 @@ let
bashCompletion = fetchFromGitHub {
owner = "imomaliev";
repo = "tmux-bash-completion";
rev = "fcda450d452f07d36d2f9f27e7e863ba5241200d";
sha256 = "092jpkhggjqspmknw7h3icm0154rg21mkhbc71j5bxfmfjdxmya8";
rev = "f5d53239f7658f8e8fbaf02535cc369009c436d6";
sha256 = "0sq2g3w0h3mkfa6qwqdw93chb5f1hgkz5vdl8yw8mxwdqwhsdprr";
};

in

stdenv.mkDerivation rec {
pname = "tmux";
version = "3.1b";
version = "3.1c";

outputs = [ "out" "man" ];

src = fetchFromGitHub {
owner = "tmux";
repo = "tmux";
rev = version;
sha256 = "0jvyq4r691bn0wsr8i6c0q0lzss25vm9nx8sv3fhw9cs63ncq04y";
sha256 = "1fqgpzfas85dn0sxlvvg6rj488jwgnxs8d3gqcm8lgs211m9qhcf";
};

nativeBuildInputs = [
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
'';

meta = {
homepage = "http://tmux.github.io/";
homepage = "https://tmux.github.io/";
description = "Terminal multiplexer";

longDescription =