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

Commits on Jun 9, 2019

  1. Copy the full SHA
    74e40dc View commit details
Showing with 2 additions and 17 deletions.
  1. +2 −17 pkgs/development/libraries/editline/default.nix
19 changes: 2 additions & 17 deletions pkgs/development/libraries/editline/default.nix
Original file line number Diff line number Diff line change
@@ -2,29 +2,14 @@

stdenv.mkDerivation rec {
name = "editline-${version}";
version = "1.16.0";
version = "1.16.1";
src = fetchFromGitHub {
owner = "troglobit";
repo = "editline";
rev = version;
sha256 = "0a751dp34mk9hwv59ss447csknpm5i5cgd607m3fqf24rszyhbf2";
sha256 = "192valxbvkxh47dszrnahv7xiccarjw9y84g4zaw5y0lxfc54dir";
};

patches = [
# will be in 1.17.0
(fetchpatch {
name = "redisplay-clear-screen.patch";
url = "https://github.com/troglobit/editline/commit/a4b67d226829a55bc8501f36708d5e104a52fbe4.patch";
sha256 = "0dbgdqxa4x9wgr9kx89ql74np4qq6fzdbph9j9c65ns3gnaanjkw";
})
# PR24
(fetchpatch {
name = "fix-narrow-term-crash.patch";
url = https://github.com/troglobit/editline/pull/24/commits/8660aef4b795fbd46a86dca804f067a81757c5df.patch;
sha256 = "0pcz1f141qv78xbq09yh0zfcjiqyavr66snz1hvxzvi8x0vixc4i";
})
];

nativeBuildInputs = [ autoreconfHook ];

outputs = [ "out" "dev" "man" "doc" ];