tasknc: fix

This commit is contained in:
Silvan Mosberger 2018-06-20 23:18:14 +02:00
parent ec3957591f
commit 2f407c43b0
No known key found for this signature in database
GPG Key ID: 9424360B4B85C9E7

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" ];