diff options
author | Mark H Weaver <mhw@netris.org> | 2017-07-23 17:04:51 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-07-23 17:04:51 -0400 |
commit | c67d80563fc7021484602889454de534469f2785 (patch) | |
tree | 06c66c31b6d0e22fcac7f1ca1f7ac2c384fbf808 /gnu/packages/linux.scm | |
parent | fd900d68a519938e4a5064fcede5da81728d32b1 (diff) | |
download | guix-c67d80563fc7021484602889454de534469f2785.tar guix-c67d80563fc7021484602889454de534469f2785.tar.gz |
gnu: ncurses/gpm: Move to (gnu packages ncurses).
This is needed to avoid compilation problems caused by the cyclic dependency
between (gnu packages ncurses) and (gnu packages linux).
* gnu/packages/linux.scm (ncurses/gpm): Move to ...
* gnu/packages/ncurses.scm (ncurses/gpm): ... here. Fix misleading
indentation. Add (gnu packages linux) to the module imports.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c116716e6e..456909a940 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3013,18 +3013,6 @@ applications running on the Linux console. It allows users to select items and copy/paste text in the console and in xterm.") (license license:gpl2+))) -(define-public ncurses/gpm - (package/inherit ncurses - (name "ncurses-with-gpm") - (arguments - (substitute-keyword-arguments (package-arguments ncurses) - ((#:configure-flags cf) - `(cons (string-append "--with-gpm=" - (assoc-ref %build-inputs "gpm") - "/lib/libgpm.so.2") ,cf)))) - (inputs - `(("gpm" ,gpm))))) - (define-public btrfs-progs (package (name "btrfs-progs") |