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: b8b7428a815c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 70878270af4b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 5, 2017

  1. kitty 0.5.0 -> 0.5.1

    tex committed Dec 5, 2017
    Copy the full SHA
    69eb4db View commit details
  2. Merge pull request #32356 from tex/kitty

    kitty 0.5.0 -> 0.5.1
    FRidh authored Dec 5, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7087827 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/kitty/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/kitty/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

with python3Packages;
buildPythonApplication rec {
version = "0.5.0";
version = "0.5.1";
name = "kitty-${version}";
format = "other";

src = fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
rev = "v${version}";
sha256 = "1w202rsgswagb3kiqbwg4xixcglip2hhz6wj1qx9x2whi4zl1l68";
sha256 = "0zs5b1sxi2f1lgpjs1qvd15gz6m1wfpyqskyyr0vmm4ch3rgp5zz";
};

buildInputs = [ fontconfig glfw ncurses libunistring harfbuzz ];