dialog: init at 1.2-20150225, closes #8457

Generate ncurses dialogs from shell scripts.
This commit is contained in:
Michael Raitza
2015-06-22 14:40:55 +02:00
committed by Rok Garbas
parent f10c6bef56
commit 7907a8bcba
3 changed files with 47 additions and 1 deletions

View File

@@ -160,5 +160,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ wkennington ];
};
passthru.ldflags = if unicode then "-lncursesw" else "-lncurses";
passthru = {
ldflags = if unicode then "-lncursesw" else "-lncurses";
inherit unicode abiVersion;
};
}