{ stdenv, fetchurl, perl, libunwind }: stdenv.mkDerivation rec { name = "strace-4.11"; src = fetchurl { url = "mirror://sourceforge/strace/${name}.tar.xz"; sha256 = "0ll1rpjs441jac2689nga74qb49x1zkg8a2b7rzzchgrv1n5ysp8"; }; nativeBuildInputs = [ perl ]; buildInputs = [ libunwind ]; # support -k meta = with stdenv.lib; { homepage = http://strace.sourceforge.net/; description = "A system call tracer for Linux"; license = licenses.bsd3; platforms = platforms.linux; maintainers = with maintainers; [ mornfall jgeerds globin ]; }; }