Merge pull request #42309 from Infinisil/fix/tasknc

tasknc: fix
This commit is contained in:
Jörg Thalheim
2018-06-20 22:32:06 +01:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses, taskwarrior }:
{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses5, taskwarrior }:
stdenv.mkDerivation rec {
version = "2017-05-15";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
perl # For generating the man pages with pod2man
];
buildInputs = [ ncurses ];
buildInputs = [ ncurses5 ];
hardeningDisable = [ "format" ];