1 { lib, stdenv, fetchurl, elfutils }:
3 stdenv.mkDerivation rec {
8 url = "https://www.sourceware.org/ftp/${pname}/releases/${pname}-${version}.tar.gz";
9 sha256 = "07qdvzfk4mvbqj5z3aff7vc195dxqn1mi27w2dzs1w2zhymnw01k";
12 nativeBuildInputs = [ elfutils ];
14 makeFlags = [ "prefix=${placeholder "out"}" ];
17 homepage = "https://sourceware.org/dwz/";
18 description = "DWARF optimization and duplicate removal tool";
20 license = licenses.gpl2Plus;
21 maintainers = with maintainers; [ jbcrail ];
22 platforms = platforms.linux;