tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
claws-mail: 4.1.1 -> 4.2.0
ajs124
2 years ago
e3888fd7
ecad114d
+4
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
mailreaders
claws-mail
default.nix
+4
-6
pkgs/applications/networking/mailreaders/claws-mail/default.nix
···
31
, enablePluginBsfilter ? true
32
, enablePluginClamd ? true
33
, enablePluginDillo ? true
34
-
, enablePluginFancy ? true, libsoup, webkitgtk
35
, enablePluginFetchInfo ? true
36
, enablePluginKeywordWarner ? true
37
, enablePluginLibravatar ? enablePluginRavatar
···
67
{ flags = [ "dbus" ]; enabled = enableDbus; deps = [ dbus dbus-glib ]; }
68
{ flags = [ "dillo-plugin" ]; enabled = enablePluginDillo; }
69
{ flags = [ "enchant" ]; enabled = enableEnchant; deps = [ enchant ]; }
70
-
{ flags = [ "fancy-plugin" ]; enabled = enablePluginFancy; deps = [ libsoup webkitgtk ]; }
71
{ flags = [ "fetchinfo-plugin" ]; enabled = enablePluginFetchInfo; }
72
{ flags = [ "keyword_warner-plugin" ]; enabled = enablePluginKeywordWarner; }
73
{ flags = [ "gnutls" ]; enabled = enableGnuTLS; deps = [ gnutls ]; }
···
96
];
97
in stdenv.mkDerivation rec {
98
pname = "claws-mail";
99
-
version = "4.1.1";
100
101
src = fetchurl {
102
url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz";
103
-
hash = "sha256-sYnnAMGJb14N6wt21L+oIOt6wZNe4Qqpr7raPPU6A0Q=";
104
};
105
106
outputs = [ "out" "dev" ];
···
136
"--disable-manual" # Missing docbook-tools, e.g., docbook2html
137
"--disable-compface" # Missing compface library
138
"--disable-jpilot" # Missing jpilot library
139
-
140
-
"--disable-gdata-plugin" # Complains about missing libgdata, even when provided
141
] ++
142
(map (feature: map (flag: lib.strings.enableFeature feature.enabled flag) feature.flags) features);
143
···
31
, enablePluginBsfilter ? true
32
, enablePluginClamd ? true
33
, enablePluginDillo ? true
34
+
, enablePluginFancy ? true, webkitgtk
35
, enablePluginFetchInfo ? true
36
, enablePluginKeywordWarner ? true
37
, enablePluginLibravatar ? enablePluginRavatar
···
67
{ flags = [ "dbus" ]; enabled = enableDbus; deps = [ dbus dbus-glib ]; }
68
{ flags = [ "dillo-plugin" ]; enabled = enablePluginDillo; }
69
{ flags = [ "enchant" ]; enabled = enableEnchant; deps = [ enchant ]; }
70
+
{ flags = [ "fancy-plugin" ]; enabled = enablePluginFancy; deps = [ webkitgtk ]; }
71
{ flags = [ "fetchinfo-plugin" ]; enabled = enablePluginFetchInfo; }
72
{ flags = [ "keyword_warner-plugin" ]; enabled = enablePluginKeywordWarner; }
73
{ flags = [ "gnutls" ]; enabled = enableGnuTLS; deps = [ gnutls ]; }
···
96
];
97
in stdenv.mkDerivation rec {
98
pname = "claws-mail";
99
+
version = "4.2.0";
100
101
src = fetchurl {
102
url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz";
103
+
hash = "sha256-fIqxcy10GX3wbWGmt+vHxYDs9ukuse9q5bAQdTPxrwc=";
104
};
105
106
outputs = [ "out" "dev" ];
···
136
"--disable-manual" # Missing docbook-tools, e.g., docbook2html
137
"--disable-compface" # Missing compface library
138
"--disable-jpilot" # Missing jpilot library
0
0
139
] ++
140
(map (feature: map (flag: lib.strings.enableFeature feature.enabled flag) feature.flags) features);
141