diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2013-05-18 23:31:14 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2013-05-18 23:31:14 +0200 |
| commit | d8482ad0d613758b85fdff90c5d6d6d2785564bf (patch) | |
| tree | 7598d3824c97a1497888296e6b08fc4731d85dab /gnu | |
| parent | 35ec07c758f4343417e14f71defc7789c9c093d5 (diff) | |
gnu: Add strace.
* gnu/packages/linux.scm (strace): New variable.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/linux.scm | 20 |
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 | ||
| 430 | trace of all the system calls made by a another process/program.") | ||
| 431 | (license bsd-3))) | ||
