Skip to content

Commit

Permalink
ncurses: 6.0-20170729 -> 6.0-20170902
Browse files Browse the repository at this point in the history
Fixes issues with xterm terminfo.
  • Loading branch information
fpletz committed Sep 5, 2017
1 parent bbeeee2 commit fea02e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/ncurses/default.nix
Expand Up @@ -11,15 +11,15 @@
}:

stdenv.mkDerivation rec {
version = if abiVersion == "5" then "5.9" else "6.0-20170729";
version = if abiVersion == "5" then "5.9" else "6.0-20170902";
name = "ncurses-${version}";

src = fetchurl (if abiVersion == "5" then {
url = "mirror://gnu/ncurses/${name}.tar.gz";
sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
} else {
url = "ftp://ftp.invisible-island.net/ncurses/current/${name}.tgz";
sha256 = "1cfdpl2gnj8szw28jmzrw47va0yqn16g03ywyzz3bjmaqxxmmwga";
sha256 = "1cks4gsz4148jw6wpqia4w5jx7cfxr29g2kmpvp0ssmvwczh8dr4";
});

patches = [ ./clang.patch ] ++ lib.optional (abiVersion == "5" && stdenv.cc.isGNU) ./gcc-5.patch;
Expand Down

0 comments on commit fea02e3

Please sign in to comment.