tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gnome2.gtksourceview: unpin autotools
Weijia Wang
7 months ago
8bda549f
0382d0a2
+12
-11
2 changed files
expand all
collapse all
unified
split
pkgs
desktops
gnome-2
default.nix
desktop
gtksourceview
default.nix
+1
-3
pkgs/desktops/gnome-2/default.nix
···
33
33
34
34
#### DESKTOP
35
35
36
36
-
gtksourceview = callPackage ./desktop/gtksourceview {
37
37
-
autoreconfHook = pkgs.autoreconfHook269;
38
38
-
};
36
36
+
gtksourceview = callPackage ./desktop/gtksourceview { };
39
37
40
38
}
41
39
)
+11
-8
pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix
···
4
4
fetchpatch,
5
5
fetchurl,
6
6
autoreconfHook,
7
7
+
gtk-doc,
7
8
pkg-config,
8
9
atk,
9
10
cairo,
···
48
49
# Fix build with gcc 14
49
50
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
50
51
51
51
-
nativeBuildInputs = [
52
52
-
pkg-config
53
53
-
intltool
54
54
-
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ autoreconfHook ];
52
52
+
nativeBuildInputs =
53
53
+
[
54
54
+
pkg-config
55
55
+
intltool
56
56
+
]
57
57
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
58
58
+
autoreconfHook
59
59
+
gtk-doc
60
60
+
];
61
61
+
55
62
buildInputs =
56
63
[
57
64
atk
···
67
74
gnome-common
68
75
gtk-mac-integration-gtk2
69
76
];
70
70
-
71
71
-
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
72
72
-
intltoolize --force
73
73
-
'';
74
77
75
78
doCheck = false; # requires X11 daemon
76
79