diff options
Diffstat (limited to 'doc/environment-gdb.scm')
-rw-r--r-- | doc/environment-gdb.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/environment-gdb.scm b/doc/environment-gdb.scm new file mode 100644 index 0000000000..040a8637f8 --- /dev/null +++ b/doc/environment-gdb.scm @@ -0,0 +1,13 @@ +(use-modules (guix) + (gnu packages gdb) + (gnu packages autotools) + (gnu packages texinfo)) + +;; Augment the package definition of GDB with the build tools +;; needed when developing GDB (and which are not needed when +;; simply installing it.) +(package (inherit gdb) + (native-inputs `(("autoconf" ,autoconf-2.64) + ("automake" ,automake) + ("texinfo" ,texinfo) + ,@(package-native-inputs gdb)))) |