aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/linux-initrd.scm
diff options
context:
space:
mode:
authorBrett Gilio <brettg@posteo.net>2019-11-22 22:32:46 -0600
committerLudovic Courtès <ludo@gnu.org>2019-12-02 10:19:30 +0100
commitf45968cbabc476862532b9d92122db3555440cee (patch)
tree6413caec0e7ffb973db4c754be81c86e19caae83 /gnu/build/linux-initrd.scm
parentbdc11c0f3ae0027ce9f3d2c9a01876fa33a8582e (diff)
downloadguix-f45968cbabc476862532b9d92122db3555440cee.tar.gz
guix-f45968cbabc476862532b9d92122db3555440cee.zip
gnu: Add emacs-org-present.
* gnu/packages/emacs-xyz.scm (emacs-org-present): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/build/linux-initrd.scm')
0 files changed, 0 insertions, 0 deletions
ce (origin (method url-fetch) (uri (string-append "http://valgrind.org/downloads/valgrind-" version ".tar.bz2")) (sha256 (base32 "0hiv871b9bk689mv42mkhp76za78l5773glszfkdbpf1m1qn4fbc")) (patches (search-patches "valgrind-enable-arm.patch")))) (build-system gnu-build-system) (arguments '(#:phases (alist-cons-after 'install 'patch-suppression-files (lambda* (#:key outputs #:allow-other-keys) ;; Don't assume the FHS. (let* ((out (assoc-ref outputs "out")) (dir (string-append out "/lib/valgrind"))) (substitute* (find-files dir "\\.supp$") (("obj:/lib") "obj:*/lib") (("obj:/usr/X11R6/lib") "obj:*/lib") (("obj:/usr/lib") "obj:*/lib")) #t)) %standard-phases))) (inputs `(;; GDB is needed to provide a sane default for `--db-command'. ("gdb" ,gdb))) (native-inputs `(("perl" ,perl))) (home-page "http://www.valgrind.org/") (synopsis "Debugging and profiling tool suite") (description "Valgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. You can also use Valgrind to build new tools.") (license gpl2+) ;; Building VEX on mips64el-linux fails with "opcode not supported on this ;; processor: mips3". (supported-systems (delete "mips64el-linux" %supported-systems))))