blob: fd847274e12935d06e42f2c39a5419968cbbc799 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Use the upstream git derivation (there's a lot of stuff happening in
# there!) and just override the source:
{ pkgs, ... }:
with pkgs.third_party;
(originals.git.overrideAttrs(_: {
version = "2.23.0";
src = ./.;
doInstallCheck = false;
preConfigure = ''
${autoconf}/bin/autoreconf -i
'';
})).override {
sendEmailSupport = true;
}
|