tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wxSVG: refactor
Weijia Wang
1 year ago
8870a8b2
2ae1a4a0
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wx
wxSVG
package.nix
+5
-5
pkgs/by-name/wx/wxSVG/package.nix
···
11
11
wxGTK32,
12
12
}:
13
13
14
14
-
stdenv.mkDerivation rec {
14
14
+
stdenv.mkDerivation (finalAttrs: {
15
15
pname = "wxsvg";
16
16
version = "1.5.25";
17
17
18
18
src = fetchurl {
19
19
-
url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2";
19
19
+
url = "mirror://sourceforge/project/wxsvg/wxsvg/${finalAttrs.version}/wxsvg-${finalAttrs.version}.tar.bz2";
20
20
hash = "sha256-W/asaDG1S9Ga70jN6PoFctu2PzCu6dUyP2vms/MmU0s=";
21
21
};
22
22
···
41
41
42
42
enableParallelBuilding = true;
43
43
44
44
-
meta = with lib; {
44
44
+
meta = {
45
45
homepage = "https://wxsvg.sourceforge.net/";
46
46
description = "SVG manipulation library built with wxWidgets";
47
47
mainProgram = "svgview";
···
49
49
wxSVG is C++ library to create, manipulate and render Scalable Vector
50
50
Graphics (SVG) files with the wxWidgets toolkit.
51
51
'';
52
52
-
license = licenses.gpl2Plus;
52
52
+
license = lib.licenses.gpl2Plus;
53
53
maintainers = [ ];
54
54
inherit (wxGTK32.meta) platforms;
55
55
};
56
56
-
}
56
56
+
})