system: Add skeleton '.gdbinit'.

* gnu/system.scm (default-skeletons): Add .gdbinit.
This commit is contained in:
Ludovic Courtès 2014-05-13 19:04:27 +02:00
parent 5b527256ee
commit 1a389e8d21

View file

@ -253,10 +253,14 @@ (define copy-guile-wm
'((guix build utils))))
(xdefaults (text-file "Xdefaults" "\
XTerm*utf8: always
XTerm*metaSendsEscape: true\n")))
XTerm*metaSendsEscape: true\n"))
(gdbinit (text-file "gdbinit" "\
# Tell GDB where to look for separate debugging files.
set debug-file-directory ~/.guix-profile/lib/debug\n")))
(return `((".bashrc" ,bashrc)
(".Xdefaults" ,xdefaults)
(".guile-wm" ,guile-wm)))))
(".guile-wm" ,guile-wm)
(".gdbinit" ,gdbinit)))))
(define (skeleton-directory skeletons)
"Return a directory containing SKELETONS, a list of name/derivation pairs."