diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-12-27 15:38:33 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-12-27 15:41:34 +0100 |
commit | 035f91611444333db6a3bea5680277c0c469a4b4 (patch) | |
tree | c7f99b1ffe3b2d491efc4f29d1e7311b5dfa966c /gnu/packages/linux.scm | |
parent | b130354999bf37ae5f155dbea1a9c57a0861b707 (diff) | |
download | patches-035f91611444333db6a3bea5680277c0c469a4b4.tar patches-035f91611444333db6a3bea5680277c0c469a4b4.tar.gz |
gnu: strace: Update to 4.26.
* gnu/packages/linux.scm (strace): Update to 4.26.
[license]: Change to LGPL2.1+.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8920cb3711..f21a6760b9 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -937,7 +937,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.") (define-public strace (package (name "strace") - (version "4.25") + (version "4.26") (home-page "https://strace.io") (source (origin (method url-fetch) @@ -945,7 +945,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.") "/strace-" version ".tar.xz")) (sha256 (base32 - "00f7zagfh3np5gwi0z7hi7zjd7s5nixcaq7z78n87dvhakkgi1fn")))) + "070yz8xii8gnb4psiz628zwm5srh266sfb06f7f1qzagxzz2ykbw")))) (build-system gnu-build-system) (arguments '(#:phases @@ -964,7 +964,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.") (description "strace is a system call tracer, i.e. a debugging tool which prints out a trace of all the system calls made by a another process/program.") - (license license:bsd-3))) + (license license:lgpl2.1+))) (define-public ltrace (package |