mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
mailutils: fix for sendmail path
This commit is contained in:
parent
610f31fe92
commit
23da6f9ca4
@ -68,6 +68,7 @@
|
||||
modulistic = "Pablo Costa <modulistic@gmail.com>";
|
||||
mornfall = "Petr Ročkai <me@mornfall.net>";
|
||||
msackman = "Matthew Sackman <matthew@wellquite.org>";
|
||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
|
||||
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
|
||||
offline = "Jaka Hudoklin <jakahudoklin@gmail.com>";
|
||||
|
4
pkgs/tools/networking/mailutils/default.nix
Normal file → Executable file
4
pkgs/tools/networking/mailutils/default.nix
Normal file → Executable file
@ -1,5 +1,5 @@
|
||||
{ fetchurl, stdenv, gettext, gdbm, libtool, pam, readline
|
||||
, ncurses, gnutls, mysql, guile, texinfo, gnum4, dejagnu }:
|
||||
, ncurses, gnutls, mysql, guile, texinfo, gnum4, dejagnu, sendmailPath ? "/var/setuid-wrappers/sendmail" }:
|
||||
|
||||
/* TODO: Add GNU SASL, GNU GSSAPI, and FreeBidi. */
|
||||
|
||||
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = [ ./path-to-cat.patch ./no-gets.patch ];
|
||||
|
||||
configureFlags = "--with-path-sendmail=${sendmailPath}";
|
||||
|
||||
buildInputs =
|
||||
[ gettext gdbm libtool pam readline ncurses
|
||||
gnutls mysql guile texinfo gnum4 ]
|
||||
|
Loading…
Reference in New Issue
Block a user