summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a66bdae150c..734997ae57e 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -409,3 +409,23 @@ slabtop, and skill.")
409 (license (list gpl2 ; programs 409 (license (list gpl2 ; programs
410 lgpl2.0 ; libext2fs 410 lgpl2.0 ; libext2fs
411 x11)))) ; libuuid 411 x11)))) ; libuuid
412
413(define-public strace
414 (package
415 (name "strace")
416 (version "4.7")
417 (source (origin
418 (method url-fetch)
419 (uri (string-append "mirror://sourceforge/strace/strace-"
420 version ".tar.xz"))
421 (sha256
422 (base32
423 "158iwk0pl2mfw93m1843xb7a2zb8p6lh0qim07rca6f1ff4dk764"))))
424 (build-system gnu-build-system)
425 (inputs `(("perl" ,perl)))
426 (home-page "http://strace.sourceforge.net/")
427 (synopsis "System call tracer for Linux")
428 (description
429 "strace is a system call tracer, i.e. a debugging tool which prints out a
430trace of all the system calls made by a another process/program.")
431 (license bsd-3)))