environment-gdb.scm 481 B

1234567891011121314
  1. (use-modules (guix)
  2. (gnu packages gdb)
  3. (gnu packages autotools)
  4. (gnu packages texinfo))
  5. ;; Augment the package definition of GDB with the build tools
  6. ;; needed when developing GDB (and which are not needed when
  7. ;; simply installing it.)
  8. (package (inherit gdb)
  9. (native-inputs `(("autoconf" ,autoconf-2.64)
  10. ("automake" ,automake)
  11. ("texinfo" ,texinfo)
  12. ,@(package-native-inputs gdb))))