From 27bcf151d1bbf1eab0da82d441c5b39fc58d2c79 Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sat, 27 Jun 2020 11:08:26 +0200 Subject: [PATCH] gnu: gdb-minimal: Include guile. * gnu/packages/gdb.scm (gdb-minimal): Do not remove guile, as it is a cheap and very useful dependency. --- gnu/packages/gdb.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 38e45b14e5..830121751f 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -164,5 +164,4 @@ written in C, C++, Ada, Objective-C, Pascal and more.") gdb-9.2 (name "gdb-minimal") (inputs (fold alist-delete (package-inputs gdb) - '("guile" "libxml2" "ncurses" "python-wrapper" - "source-highlight"))))) + '("libxml2" "ncurses" "python-wrapper" "source-highlight")))))