ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / dw / dwz / package.nix
blob852201cf71144c5e0dd215543029ed7c1e1f46f3
1 { lib, stdenv, fetchurl, elfutils }:
3 stdenv.mkDerivation rec {
4   pname = "dwz";
5   version = "0.14";
7   src = fetchurl {
8     url = "https://www.sourceware.org/ftp/${pname}/releases/${pname}-${version}.tar.gz";
9     sha256 = "07qdvzfk4mvbqj5z3aff7vc195dxqn1mi27w2dzs1w2zhymnw01k";
10   };
12   nativeBuildInputs = [ elfutils ];
14   makeFlags = [ "prefix=${placeholder "out"}" ];
16   meta = with lib; {
17     homepage = "https://sourceware.org/dwz/";
18     description = "DWARF optimization and duplicate removal tool";
19     mainProgram = "dwz";
20     license = licenses.gpl2Plus;
21     maintainers = with maintainers; [ jbcrail ];
22     platforms = platforms.linux;
23   };