mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: screen: Add libxcrypt dependency.
* gnu/packages/screen.scm (screen)[inputs]: Add libxcrypt. Change-Id: Ia8b7fce24603a038a52d57ef7177f588b66e006e
This commit is contained in:
parent
f48ecef7bd
commit
687751d0d8
1 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -34,6 +35,7 @@ (define-module (gnu packages screen)
|
|||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages crypto)
|
||||
#:use-module (gnu packages hurd)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
|
@ -56,7 +58,7 @@ (define-public screen
|
|||
(native-inputs
|
||||
(list autoconf automake texinfo))
|
||||
(inputs
|
||||
(list ncurses perl))
|
||||
(list libxcrypt ncurses perl))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
;; By default, screen supports 16 colors, but we want 256 when
|
||||
|
|
Loading…
Reference in a new issue