lol

wxSVG: refactor

+5 -5
+5 -5
pkgs/by-name/wx/wxSVG/package.nix
··· 11 wxGTK32, 12 }: 13 14 - stdenv.mkDerivation rec { 15 pname = "wxsvg"; 16 version = "1.5.25"; 17 18 src = fetchurl { 19 - url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2"; 20 hash = "sha256-W/asaDG1S9Ga70jN6PoFctu2PzCu6dUyP2vms/MmU0s="; 21 }; 22 ··· 41 42 enableParallelBuilding = true; 43 44 - meta = with lib; { 45 homepage = "https://wxsvg.sourceforge.net/"; 46 description = "SVG manipulation library built with wxWidgets"; 47 mainProgram = "svgview"; ··· 49 wxSVG is C++ library to create, manipulate and render Scalable Vector 50 Graphics (SVG) files with the wxWidgets toolkit. 51 ''; 52 - license = licenses.gpl2Plus; 53 maintainers = [ ]; 54 inherit (wxGTK32.meta) platforms; 55 }; 56 - }
··· 11 wxGTK32, 12 }: 13 14 + stdenv.mkDerivation (finalAttrs: { 15 pname = "wxsvg"; 16 version = "1.5.25"; 17 18 src = fetchurl { 19 + url = "mirror://sourceforge/project/wxsvg/wxsvg/${finalAttrs.version}/wxsvg-${finalAttrs.version}.tar.bz2"; 20 hash = "sha256-W/asaDG1S9Ga70jN6PoFctu2PzCu6dUyP2vms/MmU0s="; 21 }; 22 ··· 41 42 enableParallelBuilding = true; 43 44 + meta = { 45 homepage = "https://wxsvg.sourceforge.net/"; 46 description = "SVG manipulation library built with wxWidgets"; 47 mainProgram = "svgview"; ··· 49 wxSVG is C++ library to create, manipulate and render Scalable Vector 50 Graphics (SVG) files with the wxWidgets toolkit. 51 ''; 52 + license = lib.licenses.gpl2Plus; 53 maintainers = [ ]; 54 inherit (wxGTK32.meta) platforms; 55 }; 56 + })