lol

ncurses: 6.1-20190112 -> 6.2

https://invisible-island.net/ncurses/announce-6.2.html

authored by

zowoq and committed by
Frederik Rietdijk
bb0d0360 efc1e245

+3 -3
+3 -3
pkgs/development/libraries/ncurses/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 # Note the revision needs to be adjusted. 17 - version = "6.1-20190112"; 17 + version = "6.2"; 18 18 name = "ncurses-${version}" + lib.optionalString (abiVersion == "5") "-abi5-compat"; 19 19 20 20 # We cannot use fetchFromGitHub (which calls fetchzip) 21 21 # because we need to be able to use fetchurlBoot. 22 22 src = let 23 23 # Note the version needs to be adjusted. 24 - rev = "acb4184f8f69fddd052a3daa8c8675f4bf8ce369"; 24 + rev = "v${version}"; 25 25 in fetchurl { 26 26 url = "https://github.com/mirror/ncurses/archive/${rev}.tar.gz"; 27 - sha256 = "1z8v63cj2y7dxf4m1api8cvk0ns9frif9c60m2sxhibs06pjy4q0"; 27 + sha256 = "15r2456g0mlq2q7gh2z52vl6zv6y0z8sdchrs80kg4idqd8sm8fd"; 28 28 }; 29 29 30 30 patches = lib.optional (!stdenv.cc.isClang) ./clang.patch;