environment-gdb.scm 425 B

12345678910111213
  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
  9. (inherit gdb)
  10. (native-inputs (modify-inputs (package-native-inputs gdb)
  11. (prepend autoconf-2.64 automake texinfo))))