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:
|
2021-04-10 18:05:16 +02:00
|
|
|
{ pkgs, ... }:
|
2020-01-12 02:20:45 +01:00
|
|
|
|
2021-04-10 18:05:16 +02:00
|
|
|
(pkgs.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 = ''
|
2021-04-10 18:05:16 +02:00
|
|
|
${pkgs.autoconf}/bin/autoreconf -i
|
2020-01-12 02:20:45 +01:00
|
|
|
'';
|
|
|
|
})).override {
|
|
|
|
sendEmailSupport = true;
|
|
|
|
}
|