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: 8da81465c19f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b2f6aa631edc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 14, 2020

  1. Copy the full SHA
    b2f6aa6 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/libvterm-neovim/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/libvterm-neovim/default.nix
Original file line number Diff line number Diff line change
@@ -6,13 +6,14 @@

stdenv.mkDerivation {
pname = "libvterm-neovim";
version = "2019-10-08";
# Releases are not tagged, look at commit history to find latest release
version = "0.1.3";

src = fetchFromGitHub {
owner = "neovim";
repo = "libvterm";
rev = "7c72294d84ce20da4c27362dbd7fa4b08cfc91da";
sha256 = "111qyxq33x74dwdnqcnzlv9j0n8hxyribd6ppwcsxmyrniyw9qrk";
rev = "65dbda3ed214f036ee799d18b2e693a833a0e591";
sha256 = "0r6yimzbkgrsi9aaxwvxahai2lzgjd1ysblr6m6by5w459853q3n";
};

buildInputs = [ perl ];