From e529cdb3fbca2c6bbebc16bcdbcaf5d1072be546 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 27 Dec 2018 22:36:57 -0600 Subject: [PATCH 1/2] strace: 4.25 -> 4.26 https://github.com/strace/strace/releases/tag/v4.26 --- pkgs/development/tools/misc/strace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index e2022156870d3e..f77d959814ff3c 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "strace-${version}"; - version = "4.25"; + version = "4.26"; src = fetchurl { url = "https://strace.io/files/${version}/${name}.tar.xz"; - sha256 = "00f7zagfh3np5gwi0z7hi7zjd7s5nixcaq7z78n87dvhakkgi1fn"; + sha256 = "070yz8xii8gnb4psiz628zwm5srh266sfb06f7f1qzagxzz2ykbw"; }; depsBuildBuild = [ buildPackages.stdenv.cc ]; From dfc35f1203ad73da62a2174d242db035209da0d1 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 28 Dec 2018 22:27:32 -0500 Subject: [PATCH 2/2] strace: change licenses "The test suite is now provided under the terms of the GNU General Public License version 2 or later." "All the rest of strace is now provided under the terms of the GNU Lesser General Public License version 2.1 or later." > https://github.com/strace/strace/blob/27739ebccc96c0f70cd2aeb37fd7b0ecfef21724/NEWS#L4 --- pkgs/development/tools/misc/strace/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index f77d959814ff3c..4b6dc50a931197 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://strace.io/; description = "A system call tracer for Linux"; - license = licenses.bsd3; + license = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite platforms = platforms.linux; maintainers = with maintainers; [ jgeerds globin ]; };