strace: 4.10 -> 4.11

This commit is contained in:
Robin Gloster 2015-12-27 19:55:44 +00:00
parent e5057ef8de
commit 0cfa4fdbd4

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, perl, libunwind }: { stdenv, fetchurl, perl, libunwind }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "strace-4.10"; name = "strace-4.11";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz"; url = "mirror://sourceforge/strace/${name}.tar.xz";
sha256 = "1qhfwijxvblwdvvm70f8bhzs4fpbzqmwwbkfp636brzrds30s676"; sha256 = "0ll1rpjs441jac2689nga74qb49x1zkg8a2b7rzzchgrv1n5ysp8";
}; };
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ perl ];
@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
description = "A system call tracer for Linux"; description = "A system call tracer for Linux";
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ mornfall jgeerds ]; maintainers = with maintainers; [ mornfall jgeerds globin ];
}; };
} }