2020-01-12 02:20:45 +01:00
|
|
|
# Use the upstream git derivation (there's a lot of stuff happening in
|
|
|
|
# there!) and just override the source:
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-12 02:20:45 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
with depot.third_party;
|
2020-01-12 02:20:45 +01:00
|
|
|
|
|
|
|
(originals.git.overrideAttrs(_: {
|
2020-11-21 19:20:35 +01:00
|
|
|
version = "2.29.2";
|
2020-01-12 02:20:45 +01:00
|
|
|
src = ./.;
|
|
|
|
doInstallCheck = false;
|
|
|
|
preConfigure = ''
|
|
|
|
${autoconf}/bin/autoreconf -i
|
|
|
|
'';
|
|
|
|
})).override {
|
|
|
|
sendEmailSupport = true;
|
|
|
|
}
|