tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mu: fix build of webkit support and re-enable it
Gabriel Ebner
9 years ago
ad41b8fa
85a895d6
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
mu
default.nix
+3
-3
pkgs/tools/networking/mu/default.nix
···
1
1
{ fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook
2
2
, xapian, glib, gmime, texinfo , emacs, guile
3
3
-
, gtk3, webkit, libsoup, icu, withMug ? false /* doesn't build with current gtk3 */ }:
3
3
+
, gtk3, webkitgtk24x, libsoup, icu }:
4
4
5
5
stdenv.mkDerivation rec {
6
6
version = "0.9.16";
···
14
14
buildInputs = [
15
15
sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu
16
16
autoreconfHook
17
17
-
] ++ stdenv.lib.optionals withMug [ gtk3 webkit ];
17
17
+
gtk3 webkitgtk24x ];
18
18
19
19
preBuild = ''
20
20
# Fix mu4e-builddir (set it to $out)
···
27
27
'';
28
28
29
29
# Install mug and msg2pdf
30
30
-
postInstall = stdenv.lib.optionalString withMug ''
30
30
+
postInstall = ''
31
31
cp -v toys/msg2pdf/msg2pdf $out/bin/
32
32
cp -v toys/mug/mug $out/bin/
33
33
'';